:root {
  color-scheme: light;
  --bg: #ede7df;
  --paper: #fffdfa;
  --ink: #201c19;
  --muted: #746a61;
  --line: #ded2c7;
  --soft: #f4eee8;
  --black: #0d0c0b;
  --rose: #c97991;
  --rose-dark: #8d4356;
  --gold: #a98353;
  --blue: #5097b8;
  --green: #6fa68c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #171311 0%, var(--bg) 36%, #f8f3ee 100%);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
}

.lp-shell {
  width: 100%;
  max-width: 390px;
  margin: 0;
  background: var(--paper);
  min-height: 100vh;
  box-shadow: 0 0 32px rgba(0, 0, 0, .18);
}

@media (min-width: 700px) {
  .lp-shell {
    margin: 0 auto;
  }
}

.brand-label {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(255, 253, 250, .94);
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero {
  padding: 30px 20px 24px;
  background: var(--black);
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-all;
}

h2 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.lead {
  margin-bottom: 20px;
  color: #eee4dc;
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.cta-light {
  background: #fff;
  color: var(--rose-dark);
}

.brand-visual {
  background: #070707;
  border-bottom: 1px solid #1f1d1c;
}

.brand-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.manga-panels {
  display: grid;
  gap: 18px;
  padding: 18px 10px 26px;
  background: linear-gradient(180deg, #141110 0%, #efe6dc 10%, #f7f2ec 100%);
}

.panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 23, 19, .12);
}

.panel img {
  display: block;
  width: 100%;
  height: auto;
  background: #eee;
}

.info-block,
.benefit-block,
.lineup-block,
.cta-block,
.notes,
.company {
  padding: 28px 20px;
}

.info-block,
.lineup-block,
.notes,
.company {
  border-top: 1px solid var(--line);
}

.benefit-block {
  background: #f4eee8;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 11px 12px;
  border-left: 4px solid var(--rose);
  background: #fff;
  border-radius: 6px;
  font-weight: 700;
}

.lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.lineup-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.lineup-grid span:nth-child(1) {
  color: var(--blue);
}

.lineup-grid span:nth-child(2) {
  color: var(--green);
}

.lineup-grid span:nth-child(3) {
  color: var(--gold);
}

.lineup-grid span:nth-child(4) {
  color: var(--rose-dark);
}

.cta-block {
  background: var(--rose-dark);
  color: #fff;
}

.cta-block p {
  margin-bottom: 16px;
  font-weight: 700;
}

.notes,
.company {
  color: var(--muted);
  font-size: 13px;
}

.notes h2 {
  font-size: 16px;
}
