:root {
  --page-bg: #0b0b0b;
  --body-bg: var(--page-bg);
  --page-color: #f5f4ef;
  --surface: #181818;
  --surface-raised: #242424;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --ink: var(--page-color);
  --ink-soft: rgba(245, 244, 239, 0.72);
  --ink-faint: rgba(245, 244, 239, 0.56);
  --line: rgba(255, 255, 255, 0.12);
  --brand: #e50914;
  --brand-deep: #8f0010;
  --green: #18c95f;
  --gold: #f3b84d;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --wrap: 1160px;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;

  --header-bg: rgba(11, 11, 11, 0.88);
  --header-color: var(--ink);
  --header-hover: var(--ink);
  --header-border: var(--line);
  --footer-bg: #101010;
  --footer-color: var(--ink-soft);
  --footer-hover: var(--green);
  --link-color: var(--brand);
  --list-mark: var(--green);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent 30%),
    linear-gradient(315deg, color-mix(in srgb, var(--list-mark) 12%, transparent), transparent 28%),
    radial-gradient(circle at 76% 10%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 24%),
    var(--body-bg);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.text-panel a,
.legal-copy a,
.content-inject a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
button, a { -webkit-tap-highlight-color: transparent; }

.page-shell {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--header-border);
  color: var(--header-color);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}

.topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
}

.brand-lockup {
  display: inline-grid;
  grid-template-columns: 46px auto;
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.brand-lockup__sign {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.34);
}

.brand-lockup__logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.34);
}

.brand-lockup__name {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-lockup__name strong {
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-lockup__name span {
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-nav {
  display: none;
  justify-content: center;
  gap: 22px;
  color: color-mix(in srgb, var(--header-color) 72%, transparent);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-nav a {
  position: relative;
  padding: 8px 0;
}

.section-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--header-hover);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-nav a:hover { color: var(--header-hover); }
.section-nav a:hover::after { opacity: 1; transform: scaleX(1); }

.topbar__actions {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: end;
}

.pill-link,
.solid-link,
.ghost-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pill-link {
  min-width: 118px;
  padding-inline: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), #ff3d48);
  box-shadow: 0 16px 38px rgba(229, 9, 20, 0.28);
}

.solid-link {
  padding-inline: 20px;
  color: #111218;
  background: linear-gradient(145deg, var(--green), #78ed9f);
  box-shadow: 0 16px 38px rgba(24, 201, 95, 0.18);
}

.ghost-link {
  min-width: 106px;
  padding-inline: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.pill-link:hover,
.solid-link:hover,
.ghost-link:hover {
  transform: translateY(-1px);
}

.hero-zone { padding: 34px 0 18px; }

.hero-stage {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(145deg, #191919 0%, #111111 58%, #251011 100%);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.28), transparent 64%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: -110px auto auto 32%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 201, 95, 0.13), transparent 64%);
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.small-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 201, 95, 0.24);
  border-radius: 999px;
  color: #c9ffd8;
  background: rgba(24, 201, 95, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.small-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(24, 201, 95, 0.8);
}

h1, h2, h3, p { margin: 0; }

h1 {
  max-width: 18ch;
  font-size: clamp(2.15rem, 6.7vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 60ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions .solid-link,
.hero-actions .ghost-link {
  min-height: 52px;
  border-radius: var(--radius-md);
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-content: end;
}

.score-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.score-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.score-card__top strong { font-size: 1.2rem; }
.score-card__top span {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.metric {
  min-height: 84px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.16);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--ink-faint);
  font-size: 0.75rem;
}

.age-note {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(243, 184, 77, 0.22);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(243, 184, 77, 0.07);
  font-size: 0.88rem;
}

.age-note strong {
  display: inline-grid;
  width: 34px;
  height: 34px;
  min-width: 34px;
  place-items: center;
  border-radius: 50%;
  color: #15120b;
  background: var(--gold);
}

.content-section { padding: 24px 0; }

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.editorial-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.text-panel {
  display: grid;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.12), rgba(24, 201, 95, 0.06)),
    var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.media-frame a { display: block; }

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 12px 14px 14px;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.offer-row {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.offer-ticket,
.info-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--surface-raised));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.offer-ticket::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.14);
  pointer-events: none;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(24, 201, 95, 0.28);
  border-radius: 999px;
  color: #c9ffd8;
  background: rgba(24, 201, 95, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-ticket h3,
.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.offer-ticket p,
.info-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.quick-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  overflow: hidden;
  color: var(--ink-soft);
  background: var(--surface);
}

.table-scroll {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  -webkit-overflow-scrolling: touch;
}

.quick-table th,
.quick-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.quick-table th {
  color: #fff;
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.2), rgba(24, 201, 95, 0.12));
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.quick-table tr:nth-child(even) td { background: rgba(255, 255, 255, 0.03); }
.quick-table tr:last-child td { border-bottom: 0; }

.feature-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.feature-stack li {
  position: relative;
  min-height: 64px;
  padding: 14px 14px 14px 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.055);
}

.feature-stack li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--link-color), var(--list-mark));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--list-mark) 28%, transparent);
}

.feature-stack li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 22px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.split-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cta-band {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(229, 9, 20, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.16), rgba(24, 201, 95, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.cta-band__inner {
  display: grid;
  gap: 12px;
  align-items: center;
}

.cta-band p { color: var(--ink-soft); }

.footer { padding: 28px 0 36px; }

.footer-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  color: var(--footer-color);
  background: var(--footer-bg);
  box-shadow: var(--shadow);
}

.footer-columns {
  display: grid;
  gap: 18px;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
  color: var(--footer-color);
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
}

.footer a:hover { color: var(--footer-hover); }

.content-inject {
  color: var(--ink-soft);
}

.content-inject ul li::marker,
.content-inject ol li::marker {
  color: var(--list-mark);
}

.legal-copy {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.83rem;
}

.dock-cta {
  position: sticky;
  bottom: 12px;
  z-index: 40;
  padding: 10px 0;
  pointer-events: none;
}

.dock-cta__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 11, 11, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.dock-cta p {
  padding-left: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.dock-cta .pill-link {
  min-width: 0;
  min-height: 46px;
  padding-inline: 16px;
}

.disclosure {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 201, 95, 0.22);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(24, 201, 95, 0.065);
  font-size: 0.88rem;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .page-shell { width: min(100% - 24px, var(--wrap)); }

  .topbar__row {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .brand-lockup {
    grid-template-columns: 40px auto;
    gap: 9px;
  }

  .brand-lockup__sign,
  .brand-lockup__logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-lockup__name strong { font-size: 0.94rem; }
  .brand-lockup__name span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-stage {
    padding: 20px 16px;
    border-radius: 22px;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 10.8vw, 2.85rem);
  }

  .hero-copy > p { font-size: 0.96rem; }
  .metric { min-height: auto; text-align: left; }

  .dock-cta__panel { grid-template-columns: 1fr; }
  .dock-cta p { padding-left: 4px; }
}

@media (min-width: 700px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }

  .offer-row,
  .split-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-band__inner {
    grid-template-columns: 1fr auto;
  }

  .footer-columns {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .section-nav { display: flex; }

  .hero-stage {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
    padding: 34px;
    min-height: 520px;
  }

  .hero-panel { align-self: end; }

  .editorial-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.64fr);
  }

  .editorial-grid--reverse {
    grid-template-columns: minmax(360px, 0.64fr) minmax(0, 0.96fr);
  }

  .editorial-grid--reverse .media-frame { order: -1; }
}

.topbar.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.section-nav a.is-active {
  color: var(--header-hover);
}

.section-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}
