:root {
  color-scheme: dark;
  --ink: #050912;
  --navy: #07101f;
  --navy-2: #0b1830;
  --panel: rgba(12, 25, 47, 0.78);
  --panel-solid: #0c192f;
  --line: rgba(183, 204, 236, 0.15);
  --text: #f8efd9;
  --muted: #a9b8cf;
  --gold: #e8c66a;
  --gold-soft: #fff0b0;
  --blue: #55b8ff;
  --blue-deep: #2259a4;
  --red: #ff6471;
  --red-deep: #871f37;
  --green: #70e1ad;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(34, 89, 164, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 7%, rgba(135, 31, 55, 0.13), transparent 24rem),
    var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1240px);
  min-height: 70px;
  margin: 14px auto 0;
  padding: 0 22px;
  border: 1px solid rgba(232, 198, 106, 0.14);
  border-radius: 18px;
  background: rgba(5, 9, 18, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 18, 0.92);
  border-color: rgba(232, 198, 106, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-serif, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(232, 198, 106, 0.7);
  border-radius: 50%;
  color: var(--gold);
  box-shadow: 0 0 22px rgba(232, 198, 106, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-nav a { transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-soft); }

.nav-status {
  padding: 7px 12px;
  border: 1px solid rgba(85, 184, 255, 0.3);
  border-radius: 999px;
  color: #b9ddff;
  background: rgba(34, 89, 164, 0.15);
}

.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 920px;
  margin: 0 auto;
  padding: 150px 0 86px;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 760px;
  content: "";
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom, rgba(5, 9, 18, 0.16), var(--ink) 96%),
    url("/assets/hero-bg.png") center 32% / cover no-repeat;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
  pointer-events: none;
}

.hero-aura {
  position: absolute;
  top: 132px;
  right: -80px;
  width: 610px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 198, 106, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 60px rgba(232, 198, 106, 0.018),
    inset 0 0 0 61px rgba(232, 198, 106, 0.08),
    0 0 120px rgba(34, 89, 164, 0.13);
}

.hero-copy { position: relative; z-index: 4; padding-top: 28px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2 {
  margin: 0;
  font-family: ui-serif, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(44px, 5.6vw, 76px); }
h1 em { color: var(--red); font-style: normal; text-shadow: 0 0 35px rgba(255, 100, 113, 0.2); }
h2 { font-size: clamp(34px, 4.2vw, 56px); }
h3 { line-height: 1.5; }

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #c4cfdf;
  font-size: 16px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, summary:focus-visible, .site-nav a:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }

.button-primary {
  color: #07101f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 32px rgba(232, 198, 106, 0.18);
}

.button-primary:hover { box-shadow: 0 16px 42px rgba(232, 198, 106, 0.3); }

.button-ghost {
  border-color: rgba(183, 204, 236, 0.22);
  color: #d4dfef;
  background: rgba(8, 17, 34, 0.52);
}

.button-ghost:hover { border-color: rgba(232, 198, 106, 0.45); background: rgba(18, 32, 56, 0.7); }

.hero-facts {
  display: flex;
  gap: 0;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0;
  min-width: 122px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { color: var(--gold-soft); font-family: ui-serif, Georgia, serif; font-size: 23px; line-height: 1.4; }
.hero-facts span { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; }

.hero-stage { position: relative; z-index: 2; min-height: 680px; }

.phone {
  position: relative;
  overflow: hidden;
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(232, 198, 106, 0.3);
  border-radius: 38px;
  background: #02050a;
  box-shadow: var(--shadow), 0 0 70px rgba(34, 89, 164, 0.12);
}

.phone::after {
  position: absolute;
  inset: 8px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 30px;
}

.phone img { width: 100%; border-radius: 30px; }

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  width: 62px;
  height: 18px;
  border-radius: 999px;
  background: #02050a;
  transform: translateX(-50%);
}

.phone-hero { position: absolute; top: 8px; left: 50%; width: 332px; transform: translateX(-50%) rotate(1deg); }

.hero-character {
  position: absolute;
  z-index: -1;
  bottom: 12px;
  width: 250px;
  height: 590px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.5));
  mask-image: linear-gradient(to bottom, black 68%, transparent 98%);
}

.hero-character-left { left: -92px; transform: rotate(-4deg); }
.hero-character-right { right: -90px; transform: rotate(4deg); }

.hero-seal {
  position: absolute;
  z-index: -2;
  width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(1px);
}

.hero-seal::before, .hero-seal::after { position: absolute; inset: 15%; content: ""; border: 1px solid currentColor; transform: rotate(45deg); }
.hero-seal::after { inset: 28%; transform: rotate(0); }
.hero-seal-blue { top: 160px; left: -80px; border: 1px solid var(--blue); color: var(--blue); box-shadow: inset 0 0 50px rgba(85,184,255,0.14), 0 0 50px rgba(85,184,255,0.1); }
.hero-seal-red { top: 90px; right: -92px; border: 1px solid var(--red); color: var(--red); box-shadow: inset 0 0 50px rgba(255,100,113,0.12), 0 0 50px rgba(255,100,113,0.1); }

.development-note {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  width: 100%;
  margin: 0;
  color: #8292aa;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
}

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 128px 0; }

.section-heading { max-width: 720px; }
.section-heading > p:last-child, .information-copy > p { margin: 24px 0 0; color: var(--muted); }
.section-heading-centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading-centered .eyebrow { justify-content: center; }

.section-intro { border-top: 1px solid var(--line); }

.faction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.faction-card {
  position: relative;
  min-height: 330px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 30, 54, 0.9), rgba(7, 15, 29, 0.85));
}

.faction-card::after {
  position: absolute;
  right: -65px;
  bottom: -100px;
  width: 300px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.12;
  box-shadow: inset 0 0 60px currentColor;
}

.faction-hero { color: var(--blue); }
.faction-demon { color: var(--red); }
.faction-icon { width: 70px; margin-bottom: 24px; }
.card-kicker { margin: 0 0 5px; color: currentColor; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; }
.faction-card h3 { margin: 0; color: var(--text); font-family: ui-serif, "Yu Mincho", serif; font-size: 26px; }
.faction-card > p:last-child { max-width: 460px; margin: 18px 0 0; color: var(--muted); }

.section-flow { padding-top: 80px; }

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 64px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.flow-list li { min-height: 310px; padding: 30px 26px; background: var(--navy); }
.flow-number { color: var(--gold); font-family: ui-serif, Georgia, serif; font-size: 14px; letter-spacing: 0.12em; }
.flow-copy { margin-top: 95px; }
.flow-copy h3 { margin: 0; font-family: ui-serif, "Yu Mincho", serif; font-size: 22px; }
.flow-copy p { margin: 13px 0 0; color: var(--muted); font-size: 14px; }

.section-information {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.information-visual { position: relative; min-height: 650px; }
.phone-information { width: 310px; transform: rotate(-2deg); }
.information-effect { position: absolute; top: 50%; left: 50%; width: 500px; max-width: none; opacity: 0.38; filter: blur(1px); transform: translate(-50%, -50%); }
.information-copy { position: relative; z-index: 1; }

.check-list { display: grid; gap: 12px; margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #d3dceb; }
.check-list li::before { position: absolute; left: 0; color: var(--blue); content: "✦"; }

.section-screens {
  position: relative;
  width: min(calc(100% - 24px), 1380px);
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11,24,48,0.42), rgba(5,9,18,0.1));
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  align-items: end;
  gap: 30px;
  margin-top: 64px;
}

.screen-card { margin: 0; }
.screen-card .phone { width: 290px; }
.screen-card-tall { transform: translateY(-20px); }
.screen-card-tall .phone { width: 330px; }
.screen-card figcaption { display: grid; gap: 2px; margin-top: 22px; text-align: center; }
.screen-card figcaption strong { color: var(--gold-soft); font-family: ui-serif, "Yu Mincho", serif; font-size: 18px; }
.screen-card figcaption span, .screen-caption { color: var(--muted); font-size: 12px; }
.screen-caption { margin: 54px 0 0; text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.feature-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 22, 42, 0.62);
}

.feature-symbol {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232,198,106,0.32);
  border-radius: 15px;
  color: var(--gold);
  background: rgba(232,198,106,0.06);
  font-size: 24px;
}

.feature-grid h3 { margin: 0; font-size: 18px; }
.feature-grid p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

.section-fairness { padding-top: 60px; }
.fairness-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
  padding: 54px;
  border: 1px solid rgba(112,225,173,0.25);
  border-radius: var(--radius);
  background: radial-gradient(circle at 12% 50%, rgba(112,225,173,0.1), transparent 30%), rgba(9, 24, 35, 0.72);
}

.fairness-panel h2 { font-size: clamp(30px, 3.4vw, 46px); }
.fairness-panel > p { margin: 0; color: #bdcddd; }

.section-faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 80px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: rgba(10,22,42,0.58); }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 24px; color: var(--gold); content: "+"; font-size: 24px; font-weight: 400; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 14px; }

.closing {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  min-height: 680px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 70%, rgba(85,184,255,0.15), transparent 26rem),
    linear-gradient(to top, rgba(5,9,18,0), var(--navy));
}

.closing::after { position: absolute; right: -180px; bottom: -320px; width: 730px; aspect-ratio: 1; content: ""; border: 1px solid rgba(232,198,106,0.16); border-radius: 50%; box-shadow: inset 0 0 100px rgba(232,198,106,0.04); }
.closing-character { align-self: end; justify-self: end; width: 440px; height: 650px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.55)); mask-image: linear-gradient(to bottom, black 75%, transparent 100%); }
.closing-copy { position: relative; z-index: 1; align-self: center; max-width: 560px; padding: 90px 48px; }
.closing-copy p:not(.eyebrow) { margin: 24px 0 34px; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 150px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: #7f8ca0;
  font-size: 12px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { color: var(--text); font-family: ui-serif, "Yu Mincho", serif; font-size: 16px; }
.footer-brand > span:last-child { padding-left: 12px; border-left: 1px solid var(--line); }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a:hover { color: var(--gold-soft); }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.legal-shell {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 150px 0 100px;
}

.legal-shell h1 { font-size: clamp(38px, 7vw, 60px); }
.legal-shell h2 { margin-top: 48px; font-size: 25px; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 4px; }
.legal-meta { margin-top: 14px; color: #78879c; font-size: 12px; }
.legal-back { display: inline-flex; margin-top: 50px; }

.join-shell {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 30px;
  background: radial-gradient(circle at 50% 34%, rgba(34,89,164,0.24), transparent 23rem), var(--ink);
}

.join-card { width: min(100%, 520px); padding: 46px; border: 1px solid rgba(232,198,106,0.28); border-radius: 28px; background: rgba(10,22,42,0.82); box-shadow: var(--shadow); text-align: center; }
.join-card .brand-mark { margin: 0 auto 22px; width: 50px; height: 50px; font-size: 22px; }
.join-card h1 { font-size: 34px; }
.join-card p { color: var(--muted); }
.invite-code { display: none; margin: 25px 0; padding: 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--gold-soft); background: rgba(0,0,0,0.25); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.08em; }
.invite-code.is-visible { display: block; }
.join-card .button { width: 100%; margin-top: 12px; }
.join-note { margin-top: 24px; font-size: 12px; }

.not-found { text-align: center; }
.not-found .brand-mark { margin: 0 auto 20px; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 160px; }
  .hero-copy { max-width: 760px; text-align: center; margin: 0 auto; }
  .hero-copy .eyebrow, .hero-actions, .hero-facts { justify-content: center; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-stage { width: min(100%, 680px); margin: 65px auto 0; }
  .development-note { bottom: 22px; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .section-information { gap: 30px; }
  .section-faq { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  body { line-height: 1.72; }
  .site-header { width: calc(100% - 24px); margin-top: 10px; padding: 0 16px; }
  .menu-button { display: grid; gap: 6px; width: 42px; height: 42px; padding: 12px; border: 0; border-radius: 10px; background: transparent; color: var(--text); cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform 160ms ease; }
  .menu-button[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: rgba(5,9,18,0.97); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a, .nav-status { padding: 12px; }
  .nav-status { margin-top: 5px; text-align: center; }
  .hero, .section, .site-footer { width: min(calc(100% - 32px), var(--max)); }
  .hero { padding-top: 132px; padding-bottom: 80px; }
  .hero::before { height: 520px; }
  .hero-aura { top: 500px; right: 50%; width: 500px; transform: translateX(50%); }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  h2 { font-size: clamp(31px, 9vw, 44px); }
  .hero-lead br { display: none; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { justify-content: space-between; }
  .hero-facts li { min-width: 0; padding: 0 13px; }
  .hero-facts strong { font-size: 19px; }
  .hero-stage { min-height: 555px; margin-top: 55px; }
  .phone-hero { width: 270px; }
  .hero-character { width: 190px; height: 470px; }
  .hero-character-left { left: -65px; }
  .hero-character-right { right: -65px; }
  .hero-seal { width: 220px; }
  .development-note { position: relative; bottom: auto; margin-top: 40px; }
  .section { padding: 92px 0; }
  .section-heading br { display: none; }
  .faction-grid, .feature-grid, .fairness-panel, .section-information, .closing { grid-template-columns: 1fr; }
  .faction-card { min-height: 0; padding: 30px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { display: grid; grid-template-columns: 46px 1fr; gap: 10px; min-height: 0; padding: 24px; }
  .flow-copy { margin-top: 0; }
  .information-visual { min-height: 560px; order: 2; }
  .phone-information { width: 270px; }
  .section-screens { width: 100%; padding-right: 16px; padding-left: 16px; }
  .screen-gallery { display: flex; gap: 18px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .screen-card { flex: 0 0 78vw; scroll-snap-align: center; }
  .screen-card-tall { transform: none; }
  .screen-card .phone, .screen-card-tall .phone { width: 270px; }
  .feature-grid article { grid-template-columns: 48px 1fr; padding: 24px; }
  .feature-symbol { width: 46px; height: 46px; }
  .fairness-panel { gap: 30px; padding: 30px; }
  .closing { min-height: 740px; }
  .closing-character { justify-self: center; width: 330px; height: 500px; order: 2; }
  .closing-copy { padding: 80px 24px 20px; text-align: center; }
  .closing-copy .eyebrow { justify-content: center; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; padding: 40px 0; text-align: center; }
  .footer-brand { justify-content: center; flex-wrap: wrap; }
  .footer-brand > span:last-child { width: 100%; padding: 0; border: 0; }
  .site-footer nav { justify-content: center; flex-wrap: wrap; }
  .join-card { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
