:root {
  --ink: #f8f5ff;
  --muted: #b8afc9;
  --faint: #82798f;
  --bg: #07050b;
  --panel: #100c17;
  --panel-2: #171020;
  --line: rgba(255,255,255,.12);
  --pink: #ff5fa2;
  --violet: #a67cff;
  --cyan: #64e9dc;
  --cream: #f3eee8;
  --dark: #17121c;
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 620px;
  background: radial-gradient(circle at 76% 12%, rgba(166,124,255,.18), transparent 34%), radial-gradient(circle at 18% 20%, rgba(255,95,162,.12), transparent 30%);
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #fff500;
  outline-offset: 4px;
}
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 100; padding: 11px 16px; background: white; color: #111; border-radius: 8px; }
.skip-link:focus { top: 14px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  display: flex;
  align-items: center;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7,5,11,.82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.brand-orbit { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; color: #100a18; background: linear-gradient(135deg, var(--pink), var(--violet)); box-shadow: 0 0 28px rgba(255,95,162,.35); }
.brand small { color: var(--pink); font-size: 9px; letter-spacing: .13em; margin-left: 3px; }
.desktop-nav { display: flex; gap: 24px; margin-left: auto; font-size: 12px; color: #d5cee1; }
.desktop-nav a:hover, .footer-links a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 15px; margin-left: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink), #d45cff 70%, var(--violet));
  color: white;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 38px rgba(255,95,162,.2);
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255,95,162,.3); }
.button-ghost { background: transparent; border-color: var(--line); box-shadow: none; }
.button-small { min-height: 39px; padding-inline: 17px; }
.menu-button { display: none; background: transparent; color: white; border: 1px solid var(--line); border-radius: 99px; padding: 8px 13px; cursor: pointer; }
.mobile-nav { display: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800; color: var(--cyan); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.hero { min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; padding-block: 70px 92px; }
.hero-copy h1, .page-hero h1, .display {
  margin: 18px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 6.2vw, 90px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
}
.hero-copy h1 em, .page-hero h1 em, .display em { color: var(--pink); font-weight: inherit; }
.hero-copy > p { color: var(--muted); font-size: 17px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.microcopy { margin-top: 18px; color: var(--faint); font-size: 10px; }
.hero-stage { min-height: 600px; position: relative; }
.hero-card { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: var(--panel); box-shadow: 0 35px 85px rgba(0,0,0,.46); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(7,5,11,.9)); }
.hero-card-main { width: 58%; height: 90%; left: 21%; top: 2%; border-radius: 180px 180px 28px 28px; z-index: 2; }
.hero-card-left { width: 37%; height: 58%; left: 0; top: 27%; border-radius: 24px; transform: rotate(-4deg); }
.hero-card-right { width: 37%; height: 58%; right: 0; top: 17%; border-radius: 24px; transform: rotate(5deg); z-index: 3; }
.hero-label { position: absolute; z-index: 4; left: 21px; right: 21px; bottom: 20px; }
.hero-label strong, .hero-label span { display: block; }
.hero-label strong { font-family: Georgia, serif; font-size: 24px; }
.hero-label span { font-size: 10px; color: #d8d0df; }
.float-pill { position: absolute; z-index: 6; right: 3%; bottom: 2%; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(16,12,23,.86); backdrop-filter: blur(15px); font-size: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.float-pill b { color: var(--cyan); font-size: 16px; }
.notice-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.notice-inner { width: var(--shell); margin: auto; display: flex; justify-content: space-between; gap: 30px; padding-block: 13px; color: #bdb4c8; font-size: 10px; letter-spacing: .05em; }
.notice-inner strong { color: white; }
.section { padding-block: 105px; }
.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.section-heading h2, .content-split h2, .faq-title, .cta-panel h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 400;
}
.section-heading p { color: var(--muted); max-width: 680px; margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.feature-card .num { color: var(--pink); font-size: 10px; letter-spacing: .13em; }
.feature-card h3 { font-family: Georgia, serif; font-size: 29px; line-height: 1.1; font-weight: 400; margin: 72px 0 14px; }
.feature-card p { color: var(--muted); font-size: 13px; }
.character-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.character-card { position: relative; height: 470px; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: var(--panel); }
.character-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.character-card:hover img { transform: scale(1.03); }
.character-card::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(7,5,11,.96)); }
.character-copy { position: absolute; z-index: 2; bottom: 20px; left: 20px; right: 20px; }
.character-copy h3 { font-family: Georgia, serif; font-size: 26px; font-weight: 400; margin: 0 0 5px; }
.character-copy p { margin: 0; font-size: 11px; color: #d0c7d7; }
.light-section { background: var(--cream); color: var(--dark); }
.content-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.content-split .eyebrow { color: #8c4e84; }
.prose { color: #574e5c; font-size: 16px; line-height: 1.82; }
.prose p:first-child { margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; }
.check-list li { padding: 15px 0 15px 30px; border-top: 1px solid rgba(23,18,28,.15); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #7b36a3; font-weight: 800; }
.source-note { margin-top: 28px; padding: 17px 19px; border-left: 3px solid #9750b0; background: rgba(23,18,28,.05); font-size: 12px; }
.source-note a { color: #6f238f; text-decoration: underline; }
.faq-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { list-style: none; cursor: pointer; font-size: 14px; font-weight: 700; position: relative; padding-right: 35px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--pink); position: absolute; right: 4px; top: -5px; font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); font-size: 13px; max-width: 720px; }
.cta-panel { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; padding: 55px; margin-bottom: 100px; }
.cta-panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.cta-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,5,11,.97), rgba(7,5,11,.82) 52%, rgba(7,5,11,.18)); }
.cta-panel-copy { position: relative; z-index: 2; max-width: 620px; }
.cta-panel p { color: #c8bfd0; }
.site-footer { border-top: 1px solid var(--line); padding-block: 60px 25px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 40px; }
.footer-grid p { color: var(--faint); max-width: 360px; font-size: 11px; }
.affiliate-disclosure { display: block; margin-top: 9px; font-size: 11px; line-height: 1.55; opacity: .85; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { color: #fff; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 5px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--faint); font-size: 10px; }
.page-hero { padding-block: 100px 74px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 980px; }
.page-hero > p { max-width: 800px; font-size: 18px; color: var(--muted); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; }
.page-portrait { height: 530px; overflow: hidden; border: 1px solid var(--line); border-radius: 160px 160px 24px 24px; }
.page-portrait img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 45px; }
.stat-row div { padding: 22px; border-right: 1px solid var(--line); }
.stat-row div:last-child { border: 0; }
.stat-row strong, .stat-row span { display: block; }
.stat-row strong { font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.stat-row span { color: var(--faint); font-size: 10px; margin-top: 3px; }
.article-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; }
.article-card { padding: 30px; min-height: 250px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.article-card span { color: var(--cyan); font-size: 10px; letter-spacing: .12em; }
.article-card h2, .article-card h3 { font-family: Georgia, serif; font-size: 29px; font-weight: 400; line-height: 1.12; margin: 38px 0 12px; }
.article-card p { color: var(--muted); font-size: 13px; }
.contact-note { padding: 28px; border: 1px solid rgba(100,233,220,.28); border-radius: 18px; background: rgba(100,233,220,.045); }
.legal { width: min(820px, calc(100% - 40px)); margin: auto; padding-block: 85px 110px; }
.legal h1 { font-family: Georgia, serif; font-size: clamp(52px, 7vw, 78px); font-weight: 400; letter-spacing: -.045em; margin: 12px 0; }
.legal .updated { color: var(--faint); padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal h2 { font-family: Georgia, serif; font-size: 29px; font-weight: 400; margin-top: 40px; }
.legal h3 { font-size: 15px; margin-top: 26px; }
.legal p, .legal li { color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal a { color: var(--pink); text-decoration: underline; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: var(--panel); border-radius: 18px; }
.contact-card span { color: var(--pink); font-size: 10px; letter-spacing: .12em; }
.contact-card h2, .contact-card h3 { font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.contact-card p { color: var(--muted); font-size: 12px; }
.contact-card a { color: var(--cyan); font-size: 12px; }
.callout { padding: 25px; border-radius: 17px; border: 1px solid var(--line); background: var(--panel); margin-block: 30px; }
.callout strong { color: white; }
.callout p { margin-bottom: 0; }
@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-block; }
  .mobile-nav { position: fixed; z-index: 29; top: 76px; left: 0; right: 0; padding: 22px; background: #0e0a14; border-bottom: 1px solid var(--line); flex-direction: column; gap: 14px; }
  .mobile-nav.open { display: flex; }
  .hero, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 590px; }
  .section-heading, .content-split, .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .character-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { display: none; }
  .page-portrait { max-width: 520px; }
}
@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { height: 68px; padding-inline: 14px; }
  .header-actions .button { display: none; }
  .mobile-nav { top: 68px; }
  .hero { min-height: auto; padding-block: 58px 70px; gap: 20px; }
  .hero-copy h1, .page-hero h1 { font-size: 52px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-stage { min-height: 430px; }
  .hero-card-main { width: 70%; left: 15%; }
  .hero-card-left, .hero-card-right { width: 38%; height: 50%; }
  .notice-inner { flex-direction: column; gap: 4px; }
  .section { padding-block: 75px; }
  .card-grid, .character-strip, .article-cards, .contact-grid { grid-template-columns: 1fr; }
  .character-card { height: 510px; }
  .cta-panel { min-height: 570px; padding: 30px 24px; align-items: flex-start; }
  .cta-panel::after { background: linear-gradient(180deg, rgba(7,5,11,.96), rgba(7,5,11,.75) 68%, rgba(7,5,11,.25)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-block: 70px 55px; }
  .page-portrait { height: 470px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row div { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Home — playful Muah-inspired discovery experience */
.home {
  --home-cyan: #48c2cd;
  --home-blue: #7faed4;
  --home-yellow: #fff500;
  --home-orange: #ffad0b;
  --home-pink: #ff367c;
  --home-purple: #8f2ce7;
  --home-green: #02bd8d;
  --home-ink: #201a2b;
  --home-paper: #fffaf2;
  --home-shell: min(1240px, calc(100% - 40px));
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
}
.home::before { display: none; }
.home-shell { width: var(--home-shell); margin-inline: auto; }
.home-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 max(22px, calc((100vw - 1240px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.home-brand {
  flex: 0 0 auto;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.055em;
}
.home-brand span { color: var(--home-yellow); }
.home-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: 12px; font-weight: 800; }
.home-nav a { padding-block: 10px; }
.home-nav a:hover { color: var(--home-yellow); }
.home-header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  background: #fff;
  color: #185c65;
  box-shadow: 0 7px 20px rgba(8,68,79,.16);
  font-size: 11px;
  font-weight: 900;
}
.home-menu-button { border-color: rgba(255,255,255,.55); color: #fff; }
.home-mobile-nav { background: #319fab; color: #fff; }
.playful-hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 115px 20px 90px;
  color: #fff;
  background: linear-gradient(116deg, var(--home-blue) 0%, #62b6ce 38%, var(--home-cyan) 100%);
  border-radius: 0 0 24px 24px;
  isolation: isolate;
}
.playful-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.16), transparent 38%);
}
.hero-center {
  position: relative;
  z-index: 8;
  width: min(700px, 72vw);
  text-align: center;
  margin-top: -20px;
}
.hero-kicker {
  margin: 0 0 12px;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-center h1 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(105px, 14vw, 214px);
  line-height: .84;
  letter-spacing: -.085em;
  font-weight: 900;
  filter: drop-shadow(0 8px 0 rgba(15,117,133,.13));
}
.hero-center h1 span {
  color: var(--home-orange);
  background: linear-gradient(120deg, #ff9f08 4%, #fff000 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-center h1 b {
  color: #d7ff16;
  font-weight: inherit;
}
.hero-subtitle {
  margin: 34px auto 24px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.45;
  text-shadow: 0 2px 5px rgba(15,89,104,.2);
}
.hero-subtitle strong { font-size: 20px; }
.hero-button-stack { width: min(460px, 100%); margin: 0 auto; }
.hero-action {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 6px;
  color: #fff;
  box-shadow: 0 9px 0 rgba(20,89,102,.14), 0 13px 24px rgba(20,89,102,.16);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .18s, box-shadow .18s;
}
.hero-action:hover { transform: translateY(-3px); box-shadow: 0 12px 0 rgba(20,89,102,.12), 0 17px 27px rgba(20,89,102,.2); }
.hero-action-primary { background: #2d79f5; }
.hero-action-pink { background: var(--home-pink); }
.hero-action-purple { background: var(--home-purple); }
.hero-action-green { background: var(--home-green); }
.hero-action-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-disclosure { margin: 20px auto 0; color: rgba(255,255,255,.8); font-size: 9px; letter-spacing: .04em; }
.orbit-card {
  position: absolute;
  z-index: 3;
  width: clamp(150px, 15vw, 240px);
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.93);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 55px rgba(27,91,110,.23);
}
.orbit-card img { width: 100%; height: 100%; object-fit: cover; }
.orbit-1 { left: 3%; top: 15%; transform: rotate(-8deg); }
.orbit-2 { left: 8%; top: 52%; transform: rotate(7deg); }
.orbit-3 { left: 1%; bottom: -9%; transform: rotate(-9deg); }
.orbit-4 { left: 18%; bottom: -19%; transform: rotate(6deg); }
.orbit-5 { right: 3%; top: 14%; transform: rotate(8deg); }
.orbit-6 { right: 8%; top: 51%; transform: rotate(-7deg); }
.orbit-7 { right: 1%; bottom: -12%; transform: rotate(8deg); }
.orbit-8 { right: 18%; bottom: -20%; transform: rotate(-5deg); }
.hero-bottom-links {
  position: absolute;
  z-index: 9;
  left: 4%;
  right: 4%;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255,255,255,.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}
.hero-bottom-links a:hover { color: var(--home-yellow); }
.home-intro { padding: 110px 0; background: #fffaf2; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.home-label { color: #725f82; font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.home-intro h2, .home-section-head h2, .how-heading h2, .home-faq h2, .home-final-copy h2 {
  margin: 12px 0 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(46px, 5.5vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}
.intro-copy > p {
  margin: 0;
  color: #5f5668;
  font-size: 18px;
  line-height: 1.75;
}
.fact-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.fact-chips span { padding: 9px 14px; border: 1px solid #d8cfdd; border-radius: 999px; background: #fff; color: #5d5365; font-size: 11px; font-weight: 800; }
.character-world { padding: 110px 0 125px; background: #f2f8ff; }
.home-section-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; margin-bottom: 38px; }
.home-section-head p { margin: 0; color: #655b6b; font-size: 14px; line-height: 1.75; }
.role-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.role-filter {
  padding: 10px 16px;
  border: 1px solid #cbd8e5;
  border-radius: 7px;
  background: #fff;
  color: #5f5770;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}
.role-filter:hover, .role-filter.active { border-color: #282035; background: #282035; color: #fff; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 14px; }
.role-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 14px;
  background: #17131d;
  box-shadow: 0 14px 40px rgba(45,65,91,.09);
}
.role-card[hidden] { display: none; }
.role-card-wide { grid-column: span 2; }
.role-card-tall { grid-row: span 2; min-height: 874px; }
.role-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.role-card:hover img { transform: scale(1.035); }
.role-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(16,12,19,.97)); pointer-events: none; }
.role-card-copy {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
}
.role-card-copy span { color: #8cf2e8; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.role-card-copy h3 { margin: 3px 0 8px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 25px; line-height: 1; }
.role-card-copy p { max-width: 370px; margin: 0; color: #d8d1df; font-size: 11px; line-height: 1.55; }
.role-card-copy a { display: inline-block; margin-top: 14px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.65); font-size: 10px; font-weight: 900; }
.experience-section { padding: 115px 0 125px; background: #fffaf2; }
.experience-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.experience-panel { position: relative; min-height: 420px; overflow: hidden; border-radius: 18px; }
.experience-panel span { font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.experience-panel h3 { margin: 11px 0 14px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 37px; line-height: 1; letter-spacing: -.045em; }
.experience-panel p { font-size: 13px; line-height: 1.7; }
.experience-panel a { display: inline-block; margin-top: 17px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 900; }
.experience-chat { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: center; padding: 38px; background: #ffe470; color: #34282a; }
.experience-copy p { color: #64554f; }
.chat-scene { padding: 20px; border-radius: 18px; background: #fffdf5; box-shadow: 0 22px 45px rgba(117,85,27,.12); }
.chat-person { display: grid; grid-template-columns: 36px 1fr auto; gap: 10px; align-items: center; padding-bottom: 13px; border-bottom: 1px solid #e9e1d1; font-size: 11px; font-weight: 900; }
.chat-person img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.chat-person b { color: #00a27e; font-size: 8px; text-transform: uppercase; }
.message { max-width: 85%; margin: 12px 0 0; padding: 11px 13px; border-radius: 14px; font-size: 10px !important; line-height: 1.45 !important; }
.message-in { border-bottom-left-radius: 4px; background: #efe8f0; }
.message-out { margin-left: auto; border-bottom-right-radius: 4px; background: #387ef4; color: #fff; }
.experience-photo { min-height: 530px; background: #222; color: #fff; }
.experience-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.experience-photo::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(16,12,18,.93)); }
.experience-photo-copy { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; }
.experience-photo-copy p { color: #ded5df; }
.experience-voice { padding: 38px; background: #9d66e8; color: #fff; }
.experience-voice p { max-width: 520px; color: #efe6fb; }
.voice-bars { display: flex; align-items: center; gap: 7px; height: 90px; margin: 28px 0 0; }
.voice-bars i { width: 7px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.85); }
.voice-bars i:nth-child(2n) { height: 55px; }
.voice-bars i:nth-child(3n) { height: 74px; }
.voice-bars i:nth-child(5n) { height: 42px; }
.experience-create { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; padding: 38px 20px 0 38px; background: #4bcab1; color: #15352f; }
.experience-create p { color: #285a50; }
.experience-create a { margin-right: 15px; }
.experience-create img { width: 100%; height: 350px; object-fit: cover; object-position: top; border-radius: 130px 130px 0 0; }
.how-section { padding: 120px 0; background: #20202d; color: #fff; }
.how-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.how-heading .home-label { color: #78e5db; }
.how-heading p { color: #aaa5b5; max-width: 490px; }
.how-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.16); }
.how-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.how-steps > li > span { color: #f1e45f; font-size: 11px; font-weight: 900; }
.how-steps h3 { margin: 0 0 7px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 28px; }
.how-steps p { margin: 0; color: #aaa5b5; font-size: 12px; }
.home-faq { padding: 120px 0; background: #fffaf2; }
.home-faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.home-faq-grid > div:first-child > p { color: #665d6e; max-width: 430px; }
.home-faq-list { border-color: #d7cedb; }
.home-faq-list details { border-color: #d7cedb; }
.home-faq-list summary { color: #28212f; }
.home-faq-list p { color: #62596a; }
.home-final-cta { position: relative; min-height: 610px; overflow: hidden; display: grid; place-items: center; padding: 80px 20px; background: linear-gradient(120deg, #f75f9b, #9b51e9); color: #fff; }
.home-final-copy { position: relative; z-index: 2; max-width: 760px; text-align: center; }
.home-final-copy .home-label { color: #fff4a6; }
.home-final-copy p { max-width: 600px; margin: 22px auto; color: #f4eefa; }
.home-final-copy > a { display: inline-flex; min-height: 58px; align-items: center; padding: 0 27px; border-radius: 7px; background: #fff; color: #6d2e88; box-shadow: 0 11px 25px rgba(85,31,99,.18); font-size: 13px; font-weight: 900; }
.home-final-portraits img { position: absolute; z-index: 1; width: 220px; height: 310px; object-fit: cover; border: 7px solid #fff; border-radius: 16px; box-shadow: 0 22px 50px rgba(85,31,99,.25); }
.home-final-portraits img:nth-child(1) { left: 2%; top: 10%; transform: rotate(-8deg); }
.home-final-portraits img:nth-child(2) { right: 2%; top: 9%; transform: rotate(8deg); }
.home-final-portraits img:nth-child(3) { right: 12%; bottom: -28%; transform: rotate(-4deg); }
.home-footer { padding: 65px 0 25px; background: #17141d; color: #fff; }
.home-footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 45px; }
.footer-brand { font-size: 31px; }
.home-footer-grid p { max-width: 380px; color: #8f8897; font-size: 10px; line-height: 1.65; }
.home-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.home-footer-grid strong { margin-bottom: 6px; color: #fff; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.home-footer-grid a { color: #aaa3b1; font-size: 11px; }
.home-footer-grid a:hover { color: #fff; }
.home-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #77717d; font-size: 9px; }
@media (max-width: 1060px) {
  .home-nav { display: none; }
  .home-menu-button { display: block; margin-left: auto; }
  .home-header-cta { display: none; }
  .playful-hero { min-height: 880px; }
  .orbit-card { width: 170px; }
  .orbit-1, .orbit-2 { left: 2%; }
  .orbit-5, .orbit-6 { right: 2%; }
  .orbit-4, .orbit-8 { display: none; }
  .hero-center { width: min(650px, 76vw); }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-photo { min-height: 500px; }
}
@media (max-width: 760px) {
  .home { --home-shell: min(100% - 28px, 1240px); }
  .home-header { min-height: 66px; padding-inline: 15px; }
  .home-brand { font-size: 22px; }
  .playful-hero { min-height: 780px; padding-top: 96px; }
  .hero-center { width: min(100%, 560px); }
  .hero-kicker { font-size: 8px; }
  .hero-center h1 { font-size: clamp(78px, 23vw, 132px); }
  .hero-subtitle { max-width: 420px; margin-top: 24px; font-size: 13px; }
  .hero-subtitle strong { font-size: 16px; }
  .hero-button-stack { width: min(360px, calc(100vw - 80px)); }
  .hero-action { min-height: 52px; font-size: 12px; }
  .orbit-card { width: 112px; border-width: 4px; border-radius: 10px; }
  .orbit-1 { top: 12%; left: -3%; }
  .orbit-2 { top: auto; bottom: 7%; left: -3%; }
  .orbit-3 { display: none; }
  .orbit-5 { top: 12%; right: -3%; }
  .orbit-6 { top: auto; bottom: 7%; right: -3%; }
  .orbit-7 { display: none; }
  .hero-bottom-links { display: none; }
  .intro-grid, .home-section-head, .how-grid, .home-faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .home-intro, .character-world, .experience-section, .how-section, .home-faq { padding-block: 80px; }
  .intro-copy > p { font-size: 15px; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .role-card, .role-card-tall { min-height: 430px; grid-column: auto; grid-row: auto; }
  .role-card-wide { grid-column: span 2; }
  .experience-chat { grid-template-columns: 1fr; }
  .experience-create { grid-template-columns: 1fr; padding-right: 38px; }
  .experience-create img { width: 65%; justify-self: end; }
  .home-final-portraits img { width: 135px; height: 210px; opacity: .5; }
  .home-final-portraits img:nth-child(3) { display: none; }
  .home-footer-grid { grid-template-columns: 1fr 1fr; }
  .home-footer-grid > div:first-child { grid-column: 1/-1; }
}
@media (max-width: 460px) {
  .playful-hero { min-height: 730px; }
  .hero-center h1 { font-size: 78px; }
  .hero-action-pair { grid-template-columns: 1fr; }
  .orbit-card { width: 92px; }
  .hero-disclosure { font-size: 8px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card-wide { grid-column: auto; }
  .role-card { min-height: 500px; }
  .experience-panel { min-height: 0; }
  .experience-chat, .experience-voice { padding: 28px; }
  .experience-panel h3 { font-size: 31px; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-footer-grid > div:first-child { grid-column: auto; }
  .home-footer-bottom { flex-direction: column; }
}

/* Bright inner-page system — shares the home page's playful visual language */
.inner-page {
  --page-accent: #387ef4;
  --page-accent-2: #8f2ce7;
  --page-soft: #dcecff;
  --page-ink: #251e2d;
  --page-muted: #645b6c;
  --page-paper: #fffaf2;
  --page-shell: min(1180px, calc(100% - 40px));
  background: var(--page-paper);
  color: var(--page-ink);
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
}
.inner-page::before { display: none; }
.app-page { --page-accent: #387ef4; --page-accent-2: #02bd8d; --page-soft: #dcecff; }
.chat-page { --page-accent: #f13f79; --page-accent-2: #8f2ce7; --page-soft: #fff0a8; }
.girlfriend-page { --page-accent: #ef3f7b; --page-accent-2: #9a42df; --page-soft: #ffe2ed; }
.boyfriend-page { --page-accent: #6b5ee8; --page-accent-2: #387ef4; --page-soft: #e8e3ff; }
.about-page { --page-accent: #00a982; --page-accent-2: #387ef4; --page-soft: #d9f6ee; }
.contact-page { --page-accent: #f08a22; --page-accent-2: #ef3f7b; --page-soft: #ffebc8; }
.legal-page { --page-accent: #387ef4; --page-accent-2: #00a982; --page-soft: #e5f5ff; }

.inner-page .site-header {
  position: sticky;
  height: 74px;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(100deg, #82add1 0%, #48c3cd 100%);
  color: #fff;
  backdrop-filter: blur(16px);
}
.inner-page .brand-orbit { display: none; }
.inner-page .brand {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.055em;
}
.inner-page .brand small { color: #fff500; font-size: 8px; letter-spacing: .12em; }
.inner-page .desktop-nav { color: rgba(255,255,255,.9); font-weight: 800; }
.inner-page .desktop-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.inner-page .desktop-nav a:hover,
.inner-page .desktop-nav a[aria-current="page"] { color: #fff; border-color: #fff500; }
.inner-page .menu-button { border-color: rgba(255,255,255,.55); color: #fff; }
.inner-page .mobile-nav {
  background: #39b9c6;
  color: #fff;
  border-bottom-color: rgba(255,255,255,.25);
  font-weight: 800;
}
.inner-page .button {
  min-height: 50px;
  border-radius: 7px;
  background: var(--page-accent);
  box-shadow: 0 11px 24px color-mix(in srgb, var(--page-accent) 28%, transparent);
  font-size: 12px;
}
.inner-page .header-actions .button { min-height: 40px; background: #fff; color: #23717a; box-shadow: 0 8px 18px rgba(25,113,122,.14); }
.inner-page .button-ghost { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); box-shadow: none; }

.inner-page .page-hero {
  width: 100%;
  min-height: 620px;
  margin: 0;
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255,255,255,.23), transparent 25%),
    linear-gradient(125deg, #82add1 0%, #48c3cd 72%, #43c3b6 100%);
  color: #fff;
}
.inner-page .page-hero-grid { width: min(1180px, 100%); margin: 0 auto; grid-template-columns: 1.1fr .72fr; gap: 8vw; }
.inner-page .page-hero .eyebrow { color: #fff8a0; }
.inner-page .page-hero h1 {
  max-width: 940px;
  margin: 18px 0 24px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 900;
}
.inner-page .page-hero h1 em { color: #f7ff13; font-style: normal; }
.inner-page .page-hero p { max-width: 740px; color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.75; }
.inner-page .page-portrait {
  height: 500px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(30,83,103,.2);
  transform: rotate(3.5deg);
}
.inner-page .page-portrait img { width: 100%; height: 100%; object-fit: cover; }
.inner-page .hero-actions { gap: 12px; margin-top: 32px; }
.about-page .page-hero > *,
.contact-page .page-hero > * { max-width: 990px; }

.inner-page .section { padding-block: 96px; }
.inner-page .section-heading { gap: 7vw; margin-bottom: 45px; }
.inner-page .section-heading h2,
.inner-page .content-split h2,
.inner-page .faq-title,
.inner-page .cta-panel h2 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
}
.inner-page .section-heading p,
.inner-page .prose,
.inner-page .faq-list p { color: var(--page-muted); }
.inner-page .eyebrow { color: var(--page-accent); font-weight: 900; }
.inner-page .eyebrow::before { width: 28px; height: 3px; border-radius: 4px; }

.inner-page .feature-card {
  min-height: 330px;
  padding: 30px;
  border: 0;
  border-radius: 18px;
  color: #31252e;
  background: #ffe36e;
  box-shadow: 0 17px 35px rgba(68,64,87,.08);
}
.inner-page .feature-card:nth-child(2) { background: #9861e8; color: #fff; }
.inner-page .feature-card:nth-child(3) { background: #4bc8ac; color: #173b34; }
.inner-page .feature-card .num { color: currentColor; opacity: .7; font-weight: 900; }
.inner-page .feature-card h3 {
  margin: 70px 0 16px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.inner-page .feature-card p { color: currentColor; opacity: .8; font-size: 13px; }

.inner-page .light-section { background: var(--page-soft); color: var(--page-ink); }
.inner-page .light-section .eyebrow { color: var(--page-accent); }
.inner-page .prose { line-height: 1.85; }
.inner-page .check-list li { border-color: color-mix(in srgb, var(--page-accent) 20%, transparent); }
.inner-page .check-list li::before { color: var(--page-accent); }
.inner-page .callout {
  border: 0;
  border-left: 6px solid var(--page-accent);
  background: #fff;
  color: var(--page-ink);
  box-shadow: 0 14px 30px rgba(58,54,73,.07);
}
.inner-page .callout strong { color: var(--page-accent); }
.inner-page .callout p { color: var(--page-muted); }

.inner-page .article-card {
  min-height: 285px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--page-ink);
  box-shadow: 0 16px 34px rgba(60,55,72,.07);
}
.inner-page .article-card:nth-child(4n+1) { background: #fff0a8; }
.inner-page .article-card:nth-child(4n+2) { background: #e9ddff; }
.inner-page .article-card:nth-child(4n+3) { background: #daf5ee; }
.inner-page .article-card:nth-child(4n) { background: #ffe0eb; }
.inner-page .article-card span { color: var(--page-accent); font-weight: 900; }
.inner-page .article-card h2,
.inner-page .article-card h3 { font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-weight: 900; }
.inner-page .article-card p { color: var(--page-muted); }

.inner-page .faq-list { border-color: #d7cedb; }
.inner-page .faq-list details { border-color: #d7cedb; padding: 24px 0; }
.inner-page .faq-list summary { color: var(--page-ink); font-size: 15px; }
.inner-page .faq-list summary::after { color: var(--page-accent); }
.inner-page .source-note { border-left-color: var(--page-accent); background: var(--page-soft); color: var(--page-muted); }
.inner-page .source-note a { color: var(--page-accent); }

.inner-page .contact-card {
  min-height: 260px;
  border: 0;
  border-radius: 18px;
  background: #ffe36e;
  color: var(--page-ink);
  box-shadow: 0 16px 34px rgba(60,55,72,.08);
}
.inner-page .contact-card:nth-child(2) { background: #9861e8; color: #fff; }
.inner-page .contact-card:nth-child(3) { background: #4bc8ac; color: #173b34; }
.inner-page .contact-card span,
.inner-page .contact-card p,
.inner-page .contact-card a { color: currentColor; }
.inner-page .contact-card h2, .contact-card h3 { font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-weight: 900; }

.companion-showcase { background: #20202d; color: #fff; }
.companion-showcase .section-heading p { color: #aaa5b5; }
.companion-showcase .eyebrow { color: #78e5db; }
.companion-showcase .role-grid { grid-template-columns: repeat(3, 1fr); }
.companion-showcase .role-card,
.companion-showcase .role-card-tall { min-height: 560px; grid-column: auto; grid-row: auto; }
.companion-showcase .role-card { border: 6px solid #fff; border-radius: 18px; }
.companion-showcase .role-card-copy p { max-width: 430px; font-size: 12px; line-height: 1.55; }
.girlfriend-showcase { background: linear-gradient(135deg, #2a2130, #54284c); }
.boyfriend-showcase { background: linear-gradient(135deg, #20202d, #253b61); }

.home .role-card::after,
.companion-showcase .role-card::after { inset: 27% 0 0; }
.home .role-card-copy p { max-width: 390px; font-size: 11.5px; line-height: 1.5; }

.inner-page .cta-panel { border: 0; border-radius: 24px; }
.inner-page .cta-panel::after { background: linear-gradient(90deg, rgba(31,26,38,.94), rgba(31,26,38,.72) 55%, rgba(31,26,38,.12)); }

.inner-page .site-footer {
  padding: 65px 0 25px;
  border: 0;
  background: #17141d;
  color: #fff;
}
.inner-page .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 45px; }
.inner-page .footer-grid p { color: #8f8897; }
.inner-page .footer-links strong { color: #fff; }
.inner-page .footer-links a { color: #aaa3b1; }
.inner-page .footer-bottom { border-color: rgba(255,255,255,.1); color: #77717d; }

.legal-page {
  background: linear-gradient(180deg, #9bd4dd 0, #fffaf2 420px);
}
.inner-page .legal {
  width: min(940px, calc(100% - 40px));
  margin: 64px auto 100px;
  padding: 58px 64px 72px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(40,83,100,.12);
}
.inner-page .legal h1 {
  margin: 12px 0 18px;
  color: var(--page-accent);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(52px, 7vw, 78px);
  line-height: 1;
  font-weight: 900;
}
.inner-page .legal h2 {
  padding-top: 30px;
  border-top: 1px solid #e7e0e8;
  color: var(--page-ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-weight: 900;
}
.inner-page .legal p,
.inner-page .legal li { color: var(--page-muted); }
.inner-page .legal a { color: var(--page-accent); }

@media (max-width: 940px) {
  .inner-page .page-hero-grid { grid-template-columns: 1fr; }
  .inner-page .page-portrait { width: min(520px, 88%); height: 460px; margin: 20px auto 0; }
  .inner-page .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .companion-showcase .role-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .inner-page { --page-shell: min(100% - 28px, 1180px); }
  .inner-page .site-header { height: 68px; padding-inline: 14px; }
  .inner-page .brand { font-size: 21px; }
  .inner-page .mobile-nav { top: 68px; }
  .inner-page .page-hero { min-height: 0; padding: 68px 20px 76px; border-radius: 0 0 24px 24px; }
  .inner-page .page-hero h1 { font-size: 52px; }
  .inner-page .page-hero p { font-size: 15px; }
  .inner-page .page-portrait { width: 92%; height: 430px; }
  .inner-page .section { padding-block: 74px; }
  .inner-page .section-heading h2,
  .inner-page .content-split h2,
  .inner-page .faq-title,
  .inner-page .cta-panel h2 { font-size: 40px; }
  .inner-page .footer-grid { grid-template-columns: 1fr 1fr; }
  .inner-page .footer-grid > :first-child { grid-column: 1/-1; }
  .companion-showcase .role-grid { grid-template-columns: 1fr; }
  .companion-showcase .role-card,
  .companion-showcase .role-card-tall { min-height: 530px; }
  .inner-page .legal { width: calc(100% - 28px); margin: 28px auto 70px; padding: 38px 24px 50px; }
  .inner-page .legal h1 { font-size: 49px; }
}

/* Home character grid: preserve every portrait's natural proportions */
.home #characters .role-grid {
  grid-auto-flow: row;
  align-items: start;
}
.home #characters .role-card,
.home #characters .role-card-tall,
.home #characters .role-card-wide {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2 / 3;
  grid-column: auto;
  grid-row: auto;
}
.home #characters .role-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 22%;
}
.home #characters .role-card:nth-child(3) > img,
.home #characters .role-card:nth-child(7) > img,
.home #characters .role-card:nth-child(12) > img {
  object-position: center 12%;
}
