
:root {
  --bg: #08070b;
  --bg-2: #11070d;
  --panel: rgba(21, 15, 24, 0.72);
  --panel-solid: #151019;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #fff8ec;
  --muted: #c8b8ad;
  --dim: #8f817a;
  --ruby: #ff284c;
  --ruby-2: #9b0618;
  --gold: #f5c35f;
  --gold-2: #9f6721;
  --cyan: #15f1de;
  --green: #1bd47a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(245, 195, 95, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 34px));
  --ease: cubic-bezier(.2,.85,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 40, 76, 0.18), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(21, 241, 222, 0.1), transparent 22rem),
    linear-gradient(135deg, #06050a 0%, #12050b 48%, #05070d 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 14%, black, transparent 70%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select { font: inherit; }
::selection { background: var(--ruby); color: white; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-130%);
  background: var(--gold);
  color: #12080b;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.ambient {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .28;
  pointer-events: none;
  z-index: -1;
}
.ambient--red { left: -10vw; top: 22vh; background: var(--ruby); }
.ambient--cyan { right: -12vw; top: 4vh; background: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 7, 11, 0.72);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.header-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img, .footer-logo img { height: auto; filter: drop-shadow(0 0 18px rgba(255, 40, 76, .18)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
}
.nav-links a, .mobile-panel a, .footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.age-pill, .soft-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  background: rgba(245, 195, 95, .07);
  font-weight: 800;
  font-size: 13px;
}
.soft-cta { color: var(--text); font-weight: 750; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 20px;
}
.mobile-panel {
  display: none;
  width: var(--container);
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 8, 14, .92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.mobile-panel a { display: block; padding: 13px 10px; border-radius: 12px; }
.mobile-panel a:hover { background: rgba(255,255,255,.07); color: var(--text); }

.hero {
  width: var(--container);
  margin: 18px auto 0;
  padding: clamp(24px, 4vw, 54px) 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--ruby), var(--gold));
  border-radius: 99px;
}
h1, h2, h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 780px;
  text-wrap: balance;
}
h2 { font-size: clamp(30px, 4.2vw, 62px); text-wrap: balance; }
h3 { font-size: clamp(21px, 2.2vw, 31px); letter-spacing: -.03em; }
.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 24px 0 0;
}
.hero-buttons, .final-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.primary-cta, .ghost-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
.primary-cta {
  color: #17070b;
  background: linear-gradient(135deg, #fff0ad, var(--gold) 42%, #ff3155 140%);
  box-shadow: 0 15px 42px rgba(255, 40, 76, .24), inset 0 1px 0 rgba(255,255,255,.55);
}
.ghost-cta {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.primary-cta:hover, .ghost-cta:hover { transform: translateY(-3px); }
.primary-cta:hover { box-shadow: 0 22px 52px rgba(255, 40, 76, .34), inset 0 1px 0 rgba(255,255,255,.62); }
.ghost-cta:hover { border-color: var(--line-strong); }
.hero-buttons { margin-top: 30px; }
.session-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 241, 222, .24);
  border-radius: 999px;
  background: rgba(21, 241, 222, .045);
  color: var(--muted);
}
.session-timer strong { color: var(--cyan); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  border-radius: clamp(24px, 4vw, 46px);
  padding: 10px;
  background: linear-gradient(135deg, rgba(245,195,95,.55), rgba(255,40,76,.38), rgba(21,241,222,.24));
  box-shadow: var(--shadow), 0 0 90px rgba(255, 40, 76, .19);
  transform: rotate(1deg);
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  pointer-events: none;
}
.visual-frame img {
  border-radius: calc(clamp(24px, 4vw, 46px) - 8px);
  aspect-ratio: 1672/941;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 8, 12, .74);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,.38);
}
.floating-card span { color: var(--dim); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.floating-card strong { color: var(--text); font-size: 20px; }
.floating-card--top { right: 4%; top: -18px; }
.floating-card--bottom { left: -2%; bottom: 7%; }
.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat-ribbon div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.stat-ribbon strong { display: block; font-size: clamp(30px, 3vw, 48px); color: var(--gold); line-height: 1; }
.stat-ribbon span { display: block; margin-top: 10px; color: var(--muted); line-height: 1.35; }

.intro-panel, .decision-desk, .chapter, .final-cta, .site-footer {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.intro-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.intro-label {
  position: sticky;
  top: 110px;
  height: max-content;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 40, 76, .08);
  border: 1px solid rgba(255, 40, 76, .22);
}
.intro-label span { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 850; font-size: 12px; }
.intro-label strong { display: block; margin-top: 10px; font-size: 30px; letter-spacing: -.03em; line-height: 1; }

.rich-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.rich-copy p, .rich-copy ul, .rich-copy ol, .rich-copy table, .rich-copy figure { margin-top: 0; margin-bottom: 22px; }
.rich-copy p:last-child, .rich-copy ul:last-child, .rich-copy ol:last-child, .rich-copy table:last-child, .rich-copy figure:last-child { margin-bottom: 0; }
.rich-copy strong { color: var(--text); }
.rich-copy h3 { color: var(--text); margin: 30px 0 16px; }
.rich-copy ul, .rich-copy ol { padding-left: 1.15rem; }
.rich-copy li { margin: 10px 0; padding-left: 4px; }
.rich-copy figure {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 64px rgba(0,0,0,.3);
}
.rich-copy figure img {
  width: 100%;
  min-height: 280px;
  max-height: 520px;
  object-fit: cover;
}
.rich-copy figcaption {
  position: relative;
  margin: 0;
  padding: 16px 18px;
  color: #f0dfd5;
  font-size: 14px;
  background: rgba(9, 7, 10, .74);
  border-top: 1px solid var(--line);
}
.rich-copy table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  display: block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}
.rich-copy thead, .rich-copy tbody, .rich-copy tr { width: 100%; }
.rich-copy th, .rich-copy td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.rich-copy th {
  color: #17070b;
  background: linear-gradient(135deg, var(--gold), #fff1b6);
  font-weight: 900;
}
.rich-copy td:first-child { color: var(--text); font-weight: 800; min-width: 190px; }
.rich-copy tr:last-child td { border-bottom: 0; }

.decision-desk {
  margin-top: 46px;
  display: grid;
  grid-template-columns: .95fr 1.15fr .76fr;
  gap: 18px;
  align-items: stretch;
}
.desk-head, .tabs, .country-widget {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.desk-head { padding: 26px; }
.tabs { padding: 16px; }
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  background: rgba(0,0,0,.2);
  border-radius: 18px;
}
.tab-button {
  border: 0;
  cursor: pointer;
  color: var(--muted);
  min-height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  background: transparent;
  font-weight: 900;
  transition: background .22s ease, color .22s ease;
}
.tab-button.is-active { background: linear-gradient(135deg, var(--ruby), var(--gold)); color: white; }
.tab-panel { display: none; padding: 24px 8px 8px; }
.tab-panel.is-active { display: block; }
.tab-panel p { color: var(--muted); line-height: 1.65; }
.country-widget { padding: 22px; }
.country-widget label { display: block; color: var(--gold); font-weight: 900; margin-bottom: 10px; }
.country-widget select {
  width: 100%;
  color: var(--text);
  background: rgba(0,0,0,.36);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  outline: 0;
}
.country-widget p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }

.content-lattice { margin-top: 52px; }
.chapter {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.chapter-marker {
  position: sticky;
  top: 116px;
  height: max-content;
  padding-top: 4px;
}
.chapter-marker span {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.14), rgba(245,195,95,.08));
  color: var(--gold);
  font-weight: 950;
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
}
.chapter-body {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.068), rgba(255,255,255,.026));
  box-shadow: var(--shadow);
}
.chapter-body::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,40,76,.18), transparent 70%);
  pointer-events: none;
}
.chapter-body h2 { margin-bottom: 24px; }
.chapter--snap .chapter-body::before,
.chapter--payments .chapter-body::before,
.chapter--security .chapter-body::before { background: radial-gradient(circle, rgba(21,241,222,.13), transparent 70%); }
.chapter--responsible .chapter-body { border-color: rgba(27, 212, 122, .28); background: linear-gradient(145deg, rgba(27,212,122,.09), rgba(255,255,255,.026)); }
.chapter--final .chapter-body, .final-cta { border-color: rgba(245,195,95,.28); background: linear-gradient(135deg, rgba(245,195,95,.13), rgba(255,40,76,.06)); }

.faq-stack { display: grid; gap: 12px; }
.faq-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0,0,0,.16);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
  font-size: 18px;
}
.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateY(-50%) rotate(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .28s ease;
}
.faq-answer p { margin: 0; padding: 0 20px 20px; }

.final-cta {
  margin-top: 38px;
  margin-bottom: 52px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.final-cta h2 { max-width: 850px; }
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #15080b;
  background: linear-gradient(135deg, var(--gold), #fff1b1);
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(0,0,0,.42), 0 0 30px rgba(245,195,95,.24);
  transition: transform .2s ease;
}
.floating-cta:hover { transform: translateY(-4px) scale(1.03); }
.cookie-note {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 410px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 8, 13, .88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.cookie-note p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.cookie-note button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  background: var(--gold);
  color: #16080b;
  font-weight: 900;
}
.cookie-note.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease; }
.site-footer {
  margin-top: 24px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
}
.site-footer p { color: var(--muted); line-height: 1.55; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.footer-links a { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; }
.footer-links a:hover { color: var(--text); border-color: var(--line-strong); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-panel.is-open { display: block; }
  .hero-grid, .decision-desk { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .stat-ribbon { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 24px, 1180px); }
  .header-shell { min-height: 70px; }
  .brand img, .footer-logo img { width: 172px; }
  .soft-cta { display: none; }
  .hero { padding-top: 12px; }
  h1 { font-size: clamp(40px, 12vw, 62px); }
  .hero-lede { font-size: 17px; }
  .visual-frame { transform: none; border-radius: 26px; padding: 7px; }
  .floating-card { position: static; margin-top: 10px; width: 100%; }
  .stat-ribbon, .intro-panel { grid-template-columns: 1fr; }
  .intro-label, .chapter-marker { position: static; }
  .chapter { grid-template-columns: 1fr; gap: 10px; }
  .chapter-marker span { width: auto; height: 46px; padding: 0 18px; border-radius: 999px; }
  .chapter-body { padding: 22px 16px; border-radius: 26px; }
  .rich-copy { font-size: 16px; }
  .rich-copy table { overflow-x: auto; }
  .rich-copy th, .rich-copy td { min-width: 180px; padding: 13px 12px; }
  .rich-copy figure img { min-height: 210px; }
  .tab-buttons { grid-template-columns: 1fr; }
  .cookie-note { left: 12px; right: 12px; bottom: 84px; grid-template-columns: 1fr; }
  .floating-cta { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
