:root {
  --ink: #09090b;
  --surface: #101014;
  --surface-raised: #17171d;
  --paper: #f5f2eb;
  --muted: #a9a8af;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #ff315b;
  --action: #d91648;
  --action-hover: #bd0f3b;
  --accent-soft: rgba(255, 49, 91, 0.16);
  --promo: #d9ff4a;
  --content: 1320px;
  --page-gutter: 64px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Inter, ui-sans-serif, Arial, sans-serif;
  --radius-pill: 999px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-soft: 0 20px 64px rgba(0, 0, 0, 0.28);
  --shadow-accent: 0 24px 72px rgba(217, 22, 72, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a,
summary {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: white;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  background: white;
  border-radius: var(--radius-sm);
  color: #09090b;
  text-decoration: none;
  transform: translateY(-160%);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--promo);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

main:focus {
  outline: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: #08080a;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.04) contrast(1.03) brightness(0.98);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.99) 0%, rgba(9, 9, 11, 0.96) 34%, rgba(9, 9, 11, 0.7) 57%, rgba(9, 9, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 9, 11, 0.98) 0%, transparent 28%, rgba(9, 9, 11, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.nav {
  position: relative;
  z-index: 3;
  width: min(var(--content), calc(100% - var(--page-gutter)));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 49, 91, 0.2));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-name {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: normal;
  letter-spacing: -0.025em;
}

.brand-name b {
  color: var(--paper);
}

.brand-name em {
  color: var(--accent);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  padding: 14px 4px;
  color: #c7c6cb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: white;
}

.nav-promo {
  justify-self: end;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--promo);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  border: 1px solid rgba(217, 255, 74, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(9, 9, 11, 0.44);
  backdrop-filter: blur(12px);
}

.nav-promo small {
  color: #9e9ca3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - var(--page-gutter)));
  min-height: 704px;
  margin: 0 auto;
  padding: 42px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(260px, 1fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
}

.hero-copy {
  max-width: 770px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 7px;
  color: var(--promo);
}

h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 0.72em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(245, 242, 235, 0.88);
  paint-order: stroke fill;
}

.lead {
  max-width: 640px;
  margin: 24px 0 20px;
  color: #d0cfd3;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.benefits span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(12, 12, 15, 0.62);
  color: #d8d6db;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.promo-inline {
  width: min(100%, 560px);
  min-height: 57px;
  margin-bottom: 12px;
  padding: 8px 9px 8px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(217, 255, 74, 0.36);
  border-radius: var(--radius-md);
  background: rgba(17, 20, 13, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.promo-inline > span {
  color: #b7b6bb;
  font-size: 12px;
}

.promo-inline strong {
  color: var(--promo);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.copy-code {
  min-height: 44px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.copy-code.is-copied {
  background: var(--promo);
  color: var(--ink);
}

.primary-cta {
  width: min(100%, 560px);
  min-height: 72px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--action);
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: var(--shadow-accent);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-cta .cta-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  border-radius: var(--radius-sm);
  color: var(--promo);
  font-size: 25px;
  transition: transform 180ms ease;
}

.arrow-up-right {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  clip-path: polygon(34% 0, 100% 0, 100% 66%, 82% 66%, 82% 31%, 17% 96%, 4% 83%, 69% 18%, 34% 18%);
}

.cta-note {
  margin: 13px 0 0;
  color: #97959d;
  font-size: 11px;
  line-height: 1.55;
}

.cta-note strong {
  color: #cbc9cf;
}

.scene-card {
  justify-self: end;
  align-self: end;
  width: min(100%, 315px);
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 49, 91, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(9, 9, 11, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.scene-index {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.scene-card .scene-metrics {
  display: grid;
  gap: 4px;
  font-size: clamp(33px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.scene-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
}

.scene-metric > [data-fact] {
  flex: 0 0 auto;
}

.scene-card p {
  margin: 23px 0 0;
  color: var(--promo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-trust {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - var(--page-gutter)));
  min-height: 70px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(9, 9, 11, 0.46);
  backdrop-filter: blur(14px);
  color: #aaa8af;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-trust span {
  padding: 0 22px;
  text-align: center;
}

.hero-trust span + span {
  border-left: 1px solid var(--line);
}

.section {
  width: min(var(--content), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 104px 0;
}

.section--tight {
  padding-top: 0;
  padding-bottom: 78px;
}

.start-chapter {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 32%, rgba(217, 255, 74, 0.055), transparent 28%),
    #09090b;
}

.story-chapter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 11%, rgba(255, 49, 91, 0.13), transparent 25%),
    linear-gradient(180deg, #111116 0%, #09090b 38%);
}

.story-chapter::before {
  content: "02";
  position: absolute;
  top: 32px;
  right: -12px;
  color: rgba(255, 255, 255, 0.025);
  font-size: min(38vw, 520px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.chapter-head {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(300px, 470px);
  gap: 46px;
  align-items: end;
}

.chapter-number {
  margin: 0;
  padding-bottom: 8px;
  color: var(--promo);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter-head .section-kicker {
  margin-bottom: 17px;
}

.chapter-head h2,
.section-heading h2,
.promo-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.story-chapter .chapter-head h2 {
  line-height: 1.02;
}

.chapter-head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 54%);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.steps li::after {
  content: "";
  position: absolute;
  inset: auto -32px -70px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.steps li > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-icon {
  align-self: center;
  justify-self: end;
  color: var(--promo);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.8;
}

.steps h3,
.world-fact h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.steps p,
.world-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.steps p strong,
.chapter-head > p:last-child strong {
  color: var(--paper);
  font-weight: 800;
}

.world-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.world-fact {
  min-height: 215px;
  padding: 28px 30px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.world-fact > span {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.world-fact h3 {
  margin-bottom: 10px;
}

.world-fact p {
  max-width: 34ch;
}

.role-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.role-card summary {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  list-style: none;
}

.role-card summary::-webkit-details-marker {
  display: none;
}

.role-card summary:focus-visible {
  outline-offset: -4px;
}

.role-card picture,
.role-card picture img,
.role-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.role-card picture img {
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.002);
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.role-overlay {
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.04) 32%, rgba(9, 9, 11, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 49, 91, 0.1), transparent 55%);
}

.role-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 7px;
}

.role-label small {
  color: var(--promo);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.role-label strong {
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.role-toggle {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(9, 9, 11, 0.55);
  color: white;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background 220ms ease;
}

.role-card[data-expanded="true"] .role-toggle,
html:not(.js) .role-card[open] .role-toggle {
  background: var(--accent);
  transform: rotate(45deg);
}

.role-card[data-expanded="true"],
html:not(.js) .role-card[open] {
  border-color: rgba(217, 255, 74, 0.34);
}

.role-card .accordion-content {
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 130ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.role-card[data-expanded="true"] .accordion-content,
html:not(.js) .role-card[open] .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.role-card .accordion-content p {
  margin: 0;
  padding: 20px 0 24px;
  color: #b9b7be;
  font-size: 14px;
  line-height: 1.6;
}

.role-note {
  margin-top: -52px;
  color: #85838b;
  font-size: 11px;
  line-height: 1.5;
}

.promo-panel {
  margin-bottom: 0;
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 49, 91, 0.4);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 44%, rgba(255, 49, 91, 0.26), transparent 29%),
    linear-gradient(125deg, #16161b, #0d0d10);
  box-shadow: var(--shadow-soft);
}

.promo-panel h2 {
  display: grid;
  gap: 8px;
  color: var(--promo);
  font-size: clamp(54px, 7.5vw, 108px);
  line-height: 0.88;
}

.promo-panel h2 > span,
.promo-panel h2 > small {
  display: block;
}

.promo-panel h2 > small {
  color: var(--paper);
  font-size: 0.39em;
  letter-spacing: -0.035em;
}

.promo-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #b9b7be;
  line-height: 1.55;
}

.premium-perks {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.premium-perks > span {
  min-height: 90px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(84px, auto) 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: #bbb9c0;
  font-size: 13px;
  line-height: 1.4;
}

.premium-perks strong {
  min-width: 0;
  color: var(--promo);
  font-size: 25px;
  line-height: 1;
}

.promo-fineprint {
  max-width: 690px;
  margin: 18px 0 0;
  color: #77757d;
  font-size: 11px;
  line-height: 1.55;
}

.promo-actions {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.promo-code-card {
  min-height: 118px;
  padding: 21px 22px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(217, 255, 74, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(16, 20, 11, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.promo-code-card span {
  color: #9b999f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.promo-code-card strong {
  color: var(--promo);
  font-size: 34px;
  letter-spacing: 0.11em;
}

.secondary-button {
  min-height: 58px;
  padding: 0 22px;
  background: var(--paper);
  border-radius: var(--radius-md);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.secondary-button.is-copied {
  background: var(--promo);
}

.text-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  color: #bbb9c0;
  font-size: 13px;
  text-align: center;
  text-underline-offset: 4px;
}

.text-link .arrow-up-right {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--promo);
}

.faq {
  padding-top: 96px;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading--compact {
  display: grid;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
}

.faq-list summary {
  position: relative;
  min-height: 78px;
  padding: 26px 72px 26px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list .faq-toggle {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 31px;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq-list details[data-expanded="true"] .faq-toggle,
html:not(.js) .faq-list details[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-list details[data-expanded="true"],
html:not(.js) .faq-list details[open] {
  border-color: rgba(255, 49, 91, 0.34);
  background: rgba(255, 49, 91, 0.035);
}

.faq-list .accordion-content {
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 130ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[data-expanded="true"] .accordion-content,
html:not(.js) .faq-list details[open] .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-list .accordion-content p {
  max-width: 820px;
  margin: 0;
  padding: 0 22px 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.faq-list .accordion-content a {
  color: var(--promo);
  text-underline-offset: 3px;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding: 116px 32px 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(rgba(9, 9, 11, 0.42), rgba(9, 9, 11, 0.92)),
    radial-gradient(circle at center, var(--accent-soft), transparent 55%);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 38px;
  font-size: clamp(48px, 7vw, 94px);
}

.primary-cta--center {
  width: min(100%, 610px);
  text-align: left;
}

.final-bonus-line {
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  color: #c0bec5;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 650;
}

.final-bonus-line strong {
  color: var(--promo);
  font-size: 1.12em;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.final-bonus-line b {
  color: var(--paper);
  font-weight: 800;
}

.footer {
  width: min(var(--content), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 50px 0 56px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  align-self: start;
}

.footer-brand > div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand strong b {
  color: var(--accent);
}

.footer-brand small {
  color: #96949c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 790px;
  color: #9f9da5;
  font-size: 12px;
  line-height: 1.58;
}

.operator-details {
  margin-bottom: 22px;
  padding: 17px 19px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.operator-details > span:first-child {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.operator-details strong {
  color: var(--paper);
  font-size: 14px;
}

.operator-details > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: #c2c0c7;
  font-variant-numeric: tabular-nums;
}

.footer-copy p {
  margin: 0 0 9px;
}

.footer-copy a {
  color: #cfccd3;
  text-underline-offset: 3px;
}

.back-to-top {
  position: fixed;
  z-index: 45;
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 242, 235, 0.22);
  border-radius: 50%;
  background: rgba(15, 15, 19, 0.9);
  color: var(--paper);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.arrow-up {
  position: relative;
  width: 20px;
  height: 22px;
  display: block;
}

.arrow-up::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.arrow-up::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 16px;
  background: currentColor;
}

.copy-toast {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 14px 18px;
  background: var(--promo);
  border-radius: var(--radius-md);
  color: #0b0c09;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  transition: bottom 180ms ease;
}

.has-back-to-top .copy-toast {
  bottom: calc(84px + env(safe-area-inset-bottom));
}

.noscript {
  position: fixed;
  z-index: 60;
  inset: auto 16px 16px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-md);
  color: #07090c;
  font-size: 14px;
}

.noscript a {
  color: #4b6100;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-mark {
    filter: drop-shadow(0 10px 24px rgba(255, 49, 91, 0.35));
    transform: rotate(-4deg) scale(1.05);
  }

  .copy-code:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .primary-cta:hover {
    background: var(--action-hover);
    transform: translateY(-2px);
    box-shadow: 0 28px 80px rgba(217, 22, 72, 0.34);
  }

  .primary-cta:hover .cta-icon {
    transform: rotate(8deg);
  }

  .steps li:hover,
  .world-fact:hover,
  .role-card:hover,
  .faq-list details:hover {
    border-color: rgba(255, 255, 255, 0.24);
  }

  .role-card summary:hover picture img {
    filter: saturate(1) contrast(1.06);
    transform: scale(1.035);
  }

  .secondary-button:hover {
    background: var(--promo);
    transform: translateY(-2px);
  }

  .back-to-top:hover {
    border-color: rgba(217, 255, 74, 0.56);
    background: rgba(28, 29, 24, 0.96);
    color: var(--promo);
  }
}

@media (min-width: 2000px) {
  :root {
    --content: 1560px;
    --page-gutter: 96px;
  }

  .hero {
    min-height: min(100svh, 1200px);
  }

  .hero-grid {
    min-height: calc(min(100svh, 1200px) - 178px);
    grid-template-columns: minmax(0, 900px) minmax(320px, 1fr);
    gap: 120px;
  }

  .hero-copy,
  h1 {
    max-width: 900px;
  }

  h1 {
    font-size: clamp(96px, 4.4vw, 116px);
  }

  .lead {
    max-width: 700px;
    font-size: 21px;
  }

  .scene-card {
    width: min(100%, 350px);
  }

  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section--tight {
    padding-top: 0;
    padding-bottom: 88px;
  }

  .chapter-head h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(70px, 3.6vw, 84px);
  }

  .promo-panel {
    padding: 68px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
    gap: 88px;
  }

  .premium-perks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .premium-perks > span {
    min-height: 116px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 10px;
  }

  .primary-cta {
    width: min(100%, 620px);
    min-height: 78px;
    font-size: 18px;
  }

  .primary-cta--center {
    width: min(100%, 680px);
  }
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 9, 11, 0.99) 0%, rgba(9, 9, 11, 0.88) 64%, rgba(9, 9, 11, 0.45) 100%),
      linear-gradient(0deg, rgba(9, 9, 11, 0.98) 0%, transparent 34%, rgba(9, 9, 11, 0.25) 100%);
  }

  .hero-grid {
    min-height: 735px;
    grid-template-columns: minmax(0, 760px);
  }

  .scene-card {
    display: none;
  }

  .chapter-head {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .chapter-head > p:last-child {
    grid-column: 2;
  }

  .world-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .promo-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .promo-actions {
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 36px;
  }

  .nav {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
    height: 36px;
  }

  .brand-name {
    font-size: 15px;
  }

  .nav-promo {
    font-size: 13px;
  }

  .nav-promo small {
    display: none;
  }

  .hero-media img {
    object-position: 68% center;
    filter: saturate(1.12) contrast(1.06) brightness(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.77) 58%, rgba(9, 9, 11, 0.38) 100%),
      linear-gradient(180deg, rgba(9, 9, 11, 0.1) 0%, rgba(9, 9, 11, 0.22) 38%, rgba(9, 9, 11, 0.78) 76%, #09090b 100%);
  }

  .hero-grid {
    min-height: 0;
    padding: 58px 0 66px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(43px, 13vw, 67px);
    line-height: 0.93;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.72);
  }

  h1 span {
    margin-top: 6px;
    font-size: 0.7em;
  }

  .lead {
    margin-top: 21px;
    font-size: 16px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
  }

  .benefits {
    margin-bottom: 20px;
  }

  .promo-inline {
    grid-template-columns: 1fr auto;
  }

  .promo-inline > span {
    grid-column: 1 / -1;
  }

  .primary-cta {
    min-height: 66px;
    font-size: 15px;
  }

  .primary-cta .cta-icon {
    width: 50px;
    height: 50px;
  }

  .hero-trust {
    min-height: 0;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .hero-trust span {
    padding: 0;
    font-size: 9.5px;
  }

  .hero-trust span + span {
    border: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section--tight {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .chapter-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chapter-head > p:last-child {
    grid-column: auto;
    font-size: 14px;
  }

  .chapter-head h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .story-chapter .chapter-head h2 {
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .steps,
  .world-facts {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
    padding: 24px;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .steps li > span {
    grid-row: 1 / 3;
    padding-top: 4px;
  }

  .step-icon {
    display: none;
  }

  .world-fact {
    min-height: 0;
    padding: 24px;
  }

  .world-fact > span {
    margin-bottom: 14px;
  }

  .role-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .role-label {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .role-label strong {
    font-size: clamp(18px, 4.6vw, 27px);
  }

  .role-label small {
    font-size: 8px;
  }

  .role-toggle {
    top: 12px;
    right: 12px;
  }

  .role-note {
    margin-top: -32px;
  }

  .promo-panel {
    margin: 18px auto 0;
    padding: 34px 26px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .promo-panel h2 {
    font-size: clamp(58px, 17vw, 92px);
  }

  .promo-actions {
    min-width: 0;
  }

  .faq {
    padding-top: 76px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .faq-list summary {
    padding: 23px 58px 23px 18px;
    font-size: 17px;
    line-height: 1.35;
  }

  .faq-list .faq-toggle {
    top: 14px;
    right: 8px;
  }

  .final-cta {
    width: 100%;
    padding: 82px 18px 92px;
  }

  .footer {
    padding: 38px 0 45px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 40px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-trust {
    min-height: 58px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
  }

  .hero-trust span {
    min-width: 0;
    min-height: 58px;
    padding: 10px 7px;
    display: grid;
    place-items: center;
    font-size: clamp(7px, 2.35vw, 8px);
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .hero-trust span + span {
    border-left: 1px solid var(--line);
  }

  .hero-grid {
    padding-top: 48px;
  }

  .hero-media img {
    object-position: 69% center;
    filter: saturate(1.14) contrast(1.07) brightness(1.12);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 9, 11, 0.86) 0%, rgba(9, 9, 11, 0.66) 62%, rgba(9, 9, 11, 0.3) 100%),
      linear-gradient(180deg, rgba(9, 9, 11, 0.12) 0%, rgba(9, 9, 11, 0.26) 46%, rgba(9, 9, 11, 0.92) 88%, #09090b 100%);
  }

  h1 span {
    white-space: normal;
  }

  .benefits span {
    font-size: 9px;
  }

  .promo-inline {
    padding-left: 12px;
  }

  .primary-cta {
    padding-left: 17px;
    font-size: 13px;
  }

  .role-gallery {
    gap: 8px;
  }

  .role-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .role-label small {
    display: none;
  }

  .role-label strong {
    font-size: clamp(13px, 4vw, 17px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .role-toggle {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .role-card .accordion-content {
    padding: 0 14px;
  }

  .role-card .accordion-content p {
    font-size: 12px;
  }

  .promo-panel {
    padding: 30px 21px;
  }

  .promo-actions {
    width: 100%;
  }

  .premium-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-perks > span {
    min-height: 112px;
    padding: 15px 12px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 9px;
    text-align: center;
    font-size: 11px;
  }

  .premium-perks strong {
    white-space: nowrap;
    font-size: 22px;
  }

  .promo-code-card {
    min-height: 98px;
  }

  .copy-toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 340px) {
  :root {
    --page-gutter: 32px;
  }

  .role-gallery {
    grid-template-columns: 1fr;
  }

  .role-card summary {
    aspect-ratio: 16 / 11;
  }

  .role-label small {
    display: block;
  }

  .role-label strong {
    font-size: 24px;
  }

  .premium-perks {
    grid-template-columns: 1fr;
  }

  .premium-perks > span {
    min-height: 76px;
    grid-template-columns: 82px 1fr;
  }
}

@supports not (-webkit-text-stroke: 1px white) {
  h1 span {
    color: #d8d6db;
  }
}

@media (forced-colors: active) {
  h1 span {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal,
  .js .reveal.is-visible,
  .role-card picture img {
    opacity: 1;
    transform: none;
  }
}
