:root {
  --background: #090d21;
  --surface: #10172d;
  --elevated: #171d39;
  --overlay: rgba(5, 8, 21, .82);
  --text: #f8f6ff;
  --muted: #bdc4da;
  --subtle: #8991b2;
  --border: #3a4263;
  --accent: #ff4bd8;
  --accent-secondary: #36ddff;
  --accent-hover: #ff79e4;
  --cta: #050606;
  --cta-text: #fff;
  --link: #77e8ff;
  --focus: #ffe36f;
  --success: #67e7a5;
  --warning: #ffd066;
  --error: #ff7185;
  --header: rgba(9, 13, 33, .94);
  --footer: #050815;
  --form: #0f1630;
  --compliance-strip: #151b3a;
  --legal-background: #f4f3f8;
  --legal-text: #20243a;
  --max: 1180px;
  --read: 72ch;
  --line: 1.68;
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(rgba(54, 221, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 221, 255, .035) 1px, transparent 1px),
    var(--background);
  background-size: 52px 52px;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: var(--line);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--link); text-underline-offset: .2em; }
a:hover { color: #b2f4ff; }

h1, h2, h3 {
  margin: 0 0 .7em;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.07;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.55rem, 6vw, 5.15rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.02em; }
p, ul, ol { margin-top: 0; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

::selection { color: #07101a; background: var(--accent-secondary); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  background: var(--focus);
  color: #101324;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(119, 232, 255, .16);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 8px;
}

.brand-lockup span { display: grid; min-width: 0; line-height: 1.05; }
.brand-lockup strong { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .98rem; }
.brand-lockup small { margin-top: 6px; color: var(--subtle); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.age-mark {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 850;
  font-size: .83rem;
  letter-spacing: .03em;
  text-decoration: none;
}

.primary-nav { display: flex; justify-content: flex-end; align-items: center; gap: 5px; }
.primary-nav a {
  position: relative;
  min-height: 44px;
  padding: .62rem .68rem;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: .89rem;
  font-weight: 720;
  text-decoration: none;
}
.primary-nav a::after {
  position: absolute;
  right: .7rem;
  bottom: .25rem;
  left: .7rem;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent-secondary);
  transition: transform .2s ease;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: #fff; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 11px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: currentColor; }

.play-badge {
  width: min(100%, 224px);
  display: inline-grid;
  gap: 7px;
  color: var(--link);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.play-badge img { width: 100%; height: auto; }
.play-badge__label { font-size: .75rem; font-weight: 800; letter-spacing: .01em; }
.play-badge:hover .play-badge__label { color: #b2f4ff; text-decoration: underline; text-underline-offset: .22em; }
.play-badge:hover { filter: brightness(1.08); transform: translateY(-1px); }
.play-badge--header { width: 152px; }
.play-badge--header .play-badge__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.play-badge--large { width: 238px; }

main { min-height: 60vh; }

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 75, 216, .21), transparent 28%),
    radial-gradient(circle at 62% 58%, rgba(54, 221, 255, .13), transparent 31%),
    linear-gradient(135deg, #080b1b 0 48%, #121835 48% 100%);
}
.hero::after {
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -8vw;
  width: 54vw;
  height: 54vw;
  max-width: 820px;
  max-height: 820px;
  border: 1px solid rgba(255, 75, 216, .24);
  content: "";
  transform: rotate(16deg);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 710px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.hero-copy { max-width: 650px; }
.hero-copy h1 { margin-bottom: .28em; }
.hero-copy h1 span { display: block; color: var(--accent-secondary); font-size: .47em; letter-spacing: .02em; text-transform: uppercase; }
.hero-lead { max-width: 59ch; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.text-action { min-height: 44px; display: inline-flex; align-items: center; gap: .5em; color: #fff; font-weight: 800; }
.text-action::after { content: "↘"; color: var(--accent); }

.hero-disclosure {
  max-width: 690px;
  margin-top: 26px;
  padding: 13px 15px;
  border-left: 3px solid var(--accent-secondary);
  background: rgba(20, 27, 58, .82);
  color: #d6dbec;
  font-size: .88rem;
  line-height: 1.55;
}
.hero-disclosure strong { color: #fff; }

.hero-visual { position: relative; min-height: 510px; }
.feature-poster {
  position: absolute;
  top: 35px;
  right: 0;
  width: min(100%, 620px);
  margin: 0;
  filter: drop-shadow(0 32px 40px rgba(0, 0, 0, .46));
}
.feature-poster::before {
  position: absolute;
  z-index: -1;
  inset: -12px 18px 16px -14px;
  border: 1px solid rgba(54, 221, 255, .55);
  content: "";
  clip-path: polygon(0 0, 95% 0, 100% 16%, 100% 100%, 6% 100%, 0 82%);
}
.feature-poster img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .15);
  clip-path: polygon(0 0, 95% 0, 100% 16%, 100% 100%, 6% 100%, 0 82%);
}
.feature-poster figcaption { margin: 15px 0 0 34px; color: var(--subtle); font-size: .78rem; }
.hero-icon {
  position: absolute;
  z-index: 2;
  right: clamp(5px, 3vw, 42px);
  bottom: 0;
  width: clamp(130px, 18vw, 190px);
  border: 5px solid #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.visual-index {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: -8px;
  width: 132px;
  padding: 13px 12px;
  border-top: 1px solid var(--accent);
  background: var(--overlay);
  color: var(--muted);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.visual-index strong { display: block; color: #fff; font-size: 2.25rem; line-height: 1; }

.eyebrow {
  margin-bottom: .85rem;
  color: var(--accent-secondary);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section--surface { background: var(--surface); }
.section--light { background: var(--legal-background); color: var(--legal-text); }
.section--light .eyebrow { color: #7b1bbd; }
.section--light a { color: #005d72; }
.section--light .editorial-copy p, .section--light .editorial-copy li { color: #4e556d; }
.section--light .button {
  border-color: #747c95;
  background: #fff;
  color: #171b2f;
}
.section--light .button:hover {
  border-color: #00627a;
  background: #e2f6fa;
  color: #101429;
}
.section--light .play-badge:hover .play-badge__label { color: #00485b; }
.section-inner { width: min(calc(100% - 40px), var(--max)); min-width: 0; margin: 0 auto; }
.section-heading { max-width: 820px; margin-bottom: clamp(42px, 6vw, 72px); }
.section-heading > p:not(.eyebrow) { max-width: 65ch; color: var(--muted); font-size: 1.08rem; }
.section--light .section-heading > p:not(.eyebrow) { color: #545b72; }

.chapter-grid {
  display: grid;
  grid-template-columns: .54fr 1.46fr;
  gap: 42px;
}
.chapter-rail { position: sticky; top: 112px; align-self: start; }
.chapter-rail p { max-width: 30ch; color: var(--muted); }
.chapter-list { border-top: 1px solid var(--border); }
.chapter {
  position: relative;
  padding: 34px 0 38px 98px;
  border-bottom: 1px solid var(--border);
}
.chapter-number { position: absolute; top: 34px; left: 0; color: var(--accent); font-family: "Trebuchet MS", sans-serif; font-size: 2.45rem; font-weight: 800; line-height: 1; }
.chapter h3 { margin-bottom: .55rem; }
.chapter p { max-width: 68ch; color: var(--muted); }
.chapter-links { display: flex; gap: 18px; flex-wrap: wrap; }
.chapter-links a { font-weight: 750; }

.proof-strip {
  width: min(calc(100% - 40px), 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}
.proof-strip figure { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--border); }
.proof-strip figure:first-child { clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 0 100%); }
.proof-strip img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.proof-strip figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(4, 7, 18, .94));
  color: #fff;
  font-weight: 720;
}

.currency-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: start;
  gap: clamp(40px, 8vw, 94px);
}
.currency-layout > div:first-child { max-width: 660px; }
.plain-facts { margin: 28px 0 0; border-top: 1px solid #c9c9d4; }
.plain-facts div { padding: 17px 0; display: grid; grid-template-columns: 150px 1fr; gap: 22px; border-bottom: 1px solid #d8d7e0; }
.plain-facts dt { font-weight: 850; }
.plain-facts dd { margin: 0; color: #52586f; }
.currency-visual { position: relative; margin: 0; }
.currency-visual img { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%); }
.currency-visual figcaption { margin-top: 13px; color: #5b6177; font-size: .82rem; }

.responsible-callout {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: 40px;
  padding: clamp(36px, 6vw, 68px);
  border-top: 1px solid rgba(54, 221, 255, .48);
  border-bottom: 1px solid rgba(255, 75, 216, .42);
  background: linear-gradient(100deg, rgba(54, 221, 255, .08), rgba(255, 75, 216, .08));
}
.responsible-callout .signal { color: var(--accent-secondary); font-size: clamp(4rem, 9vw, 7rem); font-weight: 900; letter-spacing: -.08em; line-height: .85; }
.responsible-callout p { max-width: 68ch; color: var(--muted); }

.button {
  min-height: 48px;
  padding: .72rem 1.08rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { border-color: var(--accent-secondary); background: rgba(54, 221, 255, .06); color: #fff; }
.button--accent { border-color: var(--accent); background: var(--accent); color: #160d20; }
.button--accent:hover { border-color: var(--accent-hover); background: var(--accent-hover); color: #160d20; }
.button--quiet { background: var(--surface); }
.button-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.breadcrumbs {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0 0;
  font-size: .82rem;
}
.breadcrumbs ol { margin: 0; padding: 0; display: flex; gap: 9px; flex-wrap: wrap; list-style: none; }
.breadcrumbs li + li::before { margin-right: 9px; color: var(--subtle); content: "/"; }
.breadcrumbs a { color: var(--muted); }

.page-hero { padding: clamp(64px, 9vw, 110px) 0 clamp(58px, 8vw, 94px); }
.page-hero__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(44px, 8vw, 105px);
  align-items: end;
}
.page-hero h1 { max-width: 900px; }
.page-hero__aside { padding: 22px 0 8px 24px; border-left: 1px solid var(--accent-secondary); color: var(--muted); }
.page-hero__aside strong { color: #fff; }

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}
.editorial-split--reverse > :first-child { order: 2; }
.editorial-copy { max-width: 670px; }
.editorial-copy p, .editorial-copy li { color: var(--muted); }
.media-frame { position: relative; margin: 0; }
.media-frame::after { position: absolute; z-index: -1; inset: 14px -14px -14px 14px; border: 1px solid rgba(255, 75, 216, .45); content: ""; }
.media-frame img { width: 100%; height: auto; border: 1px solid rgba(255, 255, 255, .14); }
.media-frame figcaption { margin-top: 13px; color: var(--subtle); font-size: .83rem; }

.fact-index { border-top: 1px solid var(--border); }
.fact-index div { padding: 22px 0; display: grid; grid-template-columns: minmax(180px, .5fr) minmax(0, 1.5fr); gap: 30px; border-bottom: 1px solid var(--border); }
.fact-index dt { font-weight: 850; color: #fff; }
.fact-index dd { min-width: 0; margin: 0; overflow-wrap: anywhere; color: var(--muted); }

.carousel { position: relative; width: 100%; max-width: 100%; min-width: 0; }
.carousel-head { margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.carousel-controls { display: flex; align-items: center; gap: 10px; }
.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}
.carousel-controls button:hover { border-color: var(--accent-secondary); }
.carousel-position { min-width: 78px; color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.carousel-track {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 0 20px;
  display: grid;
  grid-auto-columns: min(100%, 850px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--accent) var(--surface);
  touch-action: pan-x pan-y;
  list-style: none;
}
.carousel-slide { max-width: 100%; min-width: 0; scroll-snap-align: start; }
.carousel-slide figure { height: 100%; margin: 0; display: flex; flex-direction: column; }
.gallery-open {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #050817;
  color: #fff;
  cursor: zoom-in;
}
.gallery-open img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.gallery-open:hover img { transform: scale(1.018); }
.carousel-slide figcaption { padding: 15px 3px 0; color: var(--muted); font-size: .9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-grid figure { margin: 0; grid-column: span 7; }
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(5), .gallery-grid figure:nth-child(7) { grid-column: span 5; }
.gallery-grid figure:nth-child(4) { grid-column: span 5; }
.gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(6), .gallery-grid figure:nth-child(8) { grid-column: span 7; }
.gallery-grid .gallery-item--square .gallery-open { aspect-ratio: 1 / 1; }
.gallery-grid .gallery-open img { width: 100%; height: 100%; object-fit: contain; }
.gallery-grid figcaption { padding: 12px 0 22px; color: var(--muted); font-size: .88rem; }

.lightbox { width: min(94vw, 1180px); max-height: 92vh; padding: 0; border: 1px solid var(--border); background: #070a18; color: #fff; box-shadow: var(--shadow); }
.lightbox::backdrop, .settings-dialog::backdrop { background: rgba(2, 4, 12, .82); backdrop-filter: blur(5px); }
.lightbox-shell { padding: 18px; }
.lightbox-head { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.lightbox-count { color: var(--muted); }
.lightbox figure { margin: 0; }
.lightbox img { width: auto; height: auto; max-width: 100%; max-height: 68vh; margin-inline: auto; object-fit: contain; background: #02040b; }
.lightbox figcaption { padding: 14px 0 2px; color: var(--muted); }
.lightbox-controls { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; }
.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
}

.video-panel { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 36px; align-items: center; }
.video-panel video { width: 100%; border: 1px solid var(--border); background: #000; }
.video-panel p { color: var(--muted); }

.faq-list { max-width: 900px; border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  min-height: 72px;
  padding: 20px 54px 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 830;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 10px; content: "+"; color: var(--accent-secondary); font-size: 1.55rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { max-width: 72ch; padding: 0 54px 24px 0; color: var(--muted); }

.legal-shell {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto clamp(70px, 9vw, 120px);
  padding: clamp(34px, 6vw, 72px);
  border-top: 6px solid #7520ae;
  background: var(--legal-background);
  color: var(--legal-text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}
.legal-shell h2 { margin-top: 1.65em; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.legal-shell h3 { margin-top: 1.55em; }
.legal-shell p, .legal-shell li, .legal-shell dd { max-width: var(--read); }
.legal-shell a { color: #00627a; }
.legal-shell strong { color: #171a2a; }
.legal-updated { margin-bottom: 34px; color: #626980; font-size: .9rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 24px 0 34px; font-size: .94rem; }
.legal-table th, .legal-table td { padding: 13px 12px; border: 1px solid #cacbd7; text-align: left; vertical-align: top; }
.legal-table th { background: #e8e7ef; }
.legal-note { padding: 18px 20px; border-left: 4px solid #7520ae; background: #e9e8f0; }

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: start;
}
.support-aside { position: sticky; top: 112px; }
.support-aside p, .support-aside li { color: var(--muted); }
.support-aside ul { padding-left: 1.2em; }
.support-form { padding: clamp(26px, 5vw, 48px); border: 1px solid var(--border); background: var(--form); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label, .field legend { margin-bottom: 7px; display: block; color: #fff; font-weight: 780; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .7rem .8rem;
  border: 1px solid #525a7d;
  border-radius: 5px;
  background: #090f26;
  color: #fff;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-secondary); }
.field-help { margin-top: 7px; color: var(--subtle); font-size: .82rem; }
.checkbox-field { display: flex; align-items: flex-start; gap: 11px; }
.checkbox-field input { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px; accent-color: var(--accent); }
.checkbox-field label { color: var(--muted); }
.error-summary { margin-bottom: 25px; padding: 18px 20px; border-left: 4px solid var(--error); background: rgba(255, 113, 133, .1); }
.error-summary h2 { margin-bottom: .5rem; font-size: 1.35rem; }
.error-summary a { color: #fff; }
.field-error { margin-top: 7px; color: #ff9bab; font-size: .85rem; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.status-panel { width: min(calc(100% - 40px), 760px); margin: clamp(80px, 12vw, 150px) auto; padding: clamp(38px, 7vw, 70px); border: 1px solid var(--border); background: var(--surface); text-align: center; }
.status-symbol { width: 74px; height: 74px; margin: 0 auto 25px; display: grid; place-items: center; border: 2px solid var(--success); border-radius: 50%; color: var(--success); font-size: 2.3rem; }

.final-action {
  width: min(calc(100% - 40px), var(--max));
  margin: clamp(70px, 10vw, 130px) auto 0;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  border-top: 1px solid var(--accent-secondary);
  border-right: 1px solid rgba(255, 75, 216, .55);
  background: linear-gradient(110deg, rgba(54, 221, 255, .08), rgba(255, 75, 216, .09));
}
.final-action__visual img { border: 4px solid #fff; border-radius: 18px; box-shadow: var(--shadow); transform: rotate(-3deg); }
.final-action h2 { max-width: 780px; }
.final-action p:not(.eyebrow, .cta-note) { max-width: 68ch; color: var(--muted); }
.cta-note { margin-top: 9px; color: var(--subtle); font-size: .8rem; }

.site-footer { margin-top: 70px; padding: 68px 0 28px; background: var(--footer); border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid, .operator-strip, .copyright { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 46px; }
.footer-grid h2 { margin-bottom: 18px; font-size: .84rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: 9px 0; }
.footer-grid a, .footer-link { color: var(--muted); font-size: .9rem; }
.footer-grid a:hover, .footer-link:hover { color: #fff; }
.footer-link { padding: 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: .2em; cursor: pointer; }
.footer-brand p { margin-top: 20px; color: var(--subtle); font-size: .88rem; }
.operator-strip { margin-top: 50px; padding: 28px 0; display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; border-top: 1px solid #252b47; border-bottom: 1px solid #252b47; color: var(--subtle); font-size: .83rem; }
.operator-strip strong { color: #fff; }
.operator-strip a { color: var(--muted); }
.footer-disclosure { max-width: 70ch; }
.copyright { padding-top: 24px; display: flex; justify-content: space-between; color: var(--subtle); font-size: .75rem; }

.cookie-banner {
  position: fixed;
  z-index: 400;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid #59627f;
  background: #0b1027;
  box-shadow: 0 24px 80px rgba(0,0,0,.58);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: .45rem; font-size: 1.35rem; }
.cookie-banner p { max-width: 74ch; margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.cookie-banner .eyebrow { margin-bottom: .35rem; font-size: .65rem; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.settings-dialog { width: min(calc(100% - 30px), 760px); max-height: 90vh; padding: 0; border: 1px solid #59627f; background: #0b1027; color: #fff; box-shadow: var(--shadow); }
.dialog-shell { padding: clamp(24px, 5vw, 40px); }
.dialog-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.dialog-head h2 { font-size: 2rem; }
.dialog-shell > p { color: var(--muted); }
.consent-option { padding: 20px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; border-top: 1px solid var(--border); }
.consent-option strong, .consent-option span { display: block; }
.consent-option > div > span { color: var(--muted); font-size: .85rem; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch > span:not(.sr-only) { position: relative; width: 54px; height: 30px; border: 1px solid #6e7696; border-radius: 99px; background: #252b45; cursor: pointer; }
.switch > span:not(.sr-only)::after { position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: #c7cbda; content: ""; transition: transform .2s ease; }
.switch input:checked + span { border-color: var(--accent); background: rgba(255,75,216,.32); }
.switch input:checked + span::after { transform: translateX(24px); background: #fff; }
.switch input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 4px; }
.switch input:disabled + span { cursor: not-allowed; opacity: .72; }
.dialog-actions { margin-top: 22px; display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .play-badge--header { display: none; }
  .primary-nav a { padding-inline: .5rem; font-size: .83rem; }
  .hero-inner { grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr); }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 14px 20px 20px;
    display: none;
    align-items: stretch;
    background: #090d21;
    border-bottom: 1px solid var(--border);
  }
  .primary-nav[data-open="true"] { display: grid; }
  .primary-nav a { padding: .75rem; }
  .hero { min-height: 0; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { min-height: 470px; order: -1; }
  .feature-poster { top: 0; width: 92%; }
  .hero-icon { width: 140px; }
  .visual-index { bottom: 12px; left: 0; }
  .chapter-grid, .currency-layout, .responsible-callout, .editorial-split, .video-panel, .support-layout, .page-hero__inner { grid-template-columns: 1fr; }
  .chapter-rail, .support-aside { position: static; }
  .editorial-split--reverse > :first-child { order: initial; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip figure:last-child { display: none; }
  .proof-strip img { min-height: 280px; }
  .responsible-callout .signal { font-size: 5rem; }
  .page-hero__aside { padding-top: 0; }
  .gallery-grid figure, .gallery-grid figure:nth-child(n) { grid-column: span 6; }
  .gallery-grid { grid-template-columns: repeat(12, 1fr); }
  .carousel-track { grid-auto-columns: min(100%, 730px); }
  .support-aside { max-width: 700px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .operator-strip { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .button { flex: 1 1 150px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-inner { width: min(calc(100% - 24px), var(--max)); min-height: 70px; gap: 10px; }
  .brand-lockup strong { max-width: 155px; }
  .brand-lockup small { display: none; }
  .brand-lockup img { width: 42px; height: 42px; }
  .age-mark { width: 38px; height: 32px; }
  .hero-inner, .section-inner, .breadcrumbs, .page-hero__inner, .final-action, .footer-grid, .operator-strip, .copyright { width: min(calc(100% - 28px), var(--max)); }
  .hero-inner { padding-top: 42px; gap: 38px; }
  .hero-visual { min-height: 310px; }
  .hero-icon { right: 3px; width: 105px; border-width: 3px; border-radius: 14px; }
  .feature-poster figcaption { margin-left: 12px; }
  .visual-index { width: 105px; padding: 9px; }
  .visual-index strong { font-size: 1.8rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .section { padding-block: 72px; }
  .chapter { padding: 28px 0 30px 66px; }
  .chapter-number { top: 28px; font-size: 1.8rem; }
  .proof-strip { width: 100%; }
  .proof-strip figure:first-child { clip-path: none; }
  .proof-strip img { min-height: 240px; }
  .plain-facts div, .fact-index div { grid-template-columns: 1fr; gap: 5px; }
  .responsible-callout { padding: 30px 0; border-inline: 0; background: transparent; }
  .responsible-callout .signal { font-size: 4.5rem; }
  .page-hero { padding-top: 45px; }
  .gallery-grid { display: block; }
  .gallery-grid figure { margin-bottom: 20px; }
  .carousel-head { align-items: flex-end; }
  .carousel-track { grid-auto-columns: 100%; }
  .carousel-slide figcaption { font-size: .82rem; }
  .legal-shell { width: calc(100% - 20px); padding: 28px 18px; }
  .legal-table { display: block; overflow-x: auto; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .support-form { padding: 24px 16px; }
  .final-action { grid-template-columns: 82px 1fr; padding: 28px 20px; gap: 20px; }
  .final-action .play-badge, .final-action .cta-note, .final-action p:not(.eyebrow, .cta-note) { grid-column: 1 / -1; }
  .final-action > div:last-child { display: contents; }
  .final-action .eyebrow, .final-action h2 { grid-column: 2; }
  .final-action h2 { font-size: 1.75rem; align-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; gap: 7px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: auto; max-height: calc(100vh - 20px); overflow-y: auto; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .dialog-actions { display: grid; }
  .lightbox-shell { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gallery-open:hover img, .play-badge:hover { transform: none; }
}

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
