:root {
  color-scheme: dark;
  --bg: #0d0d0f;
  --surface: #171719;
  --surface-strong: #222225;
  --text: #f4f2ea;
  --muted: #b8b3a7;
  --gold: #f1bf55;
  --green: #1fd185;
  --red: #ff5a5f;
  --ruby: #f0445e;
  --cyan: #36d6ff;
  --violet: #9d65ff;
  --line: rgba(244, 242, 234, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(241, 191, 85, 0.13), transparent 32%),
    linear-gradient(220deg, rgba(31, 209, 133, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(240, 68, 94, 0.06), transparent 520px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: #fff8df;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(241, 191, 85, 0.08), rgba(31, 209, 133, 0.06), rgba(240, 68, 94, 0.07)),
    rgba(13, 13, 15, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 132px;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 168px;
  max-height: 44px;
  object-fit: contain;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-fallback[hidden] {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta,
.button,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold), #ffdd7a);
  color: #171103;
  box-shadow: 0 10px 30px rgba(241, 191, 85, 0.22);
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #ffdf7a);
  color: #171103;
  box-shadow: 0 14px 36px rgba(241, 191, 85, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.large {
  min-width: 220px;
}

.inline-cta {
  margin-top: 8px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #04150d;
}

.nav-cta:hover,
.button:hover,
.inline-cta:hover {
  transform: translateY(-2px);
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(58px, 9vw, 110px) 0 clamp(44px, 7vw, 78px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 74px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 191, 85, 0.7), rgba(31, 209, 133, 0.55), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: #fff6dc;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 191, 85, 0.14), rgba(31, 209, 133, 0.08), rgba(18, 18, 20, 0.96)),
    rgba(18, 18, 20, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-panel strong {
  display: block;
  font-size: 1.1rem;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(241, 191, 85, 0.12), rgba(54, 214, 255, 0.08), rgba(240, 68, 94, 0.1)),
    #121214;
}

.ticker span {
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: #fff7df;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:nth-child(2) {
  color: #ddfff0;
}

.ticker span:nth-child(3) {
  color: #ffe3e7;
}

.ticker span:nth-child(4) {
  color: #e7f8ff;
}

.ticker span:last-child {
  border-right: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(64px, 9vw, 112px) 0;
}

.content-grid.reverse {
  grid-template-columns: 0.72fr 1.28fr;
}

.section-intro {
  position: sticky;
  top: 108px;
  align-self: start;
}

.section-intro.compact {
  position: static;
  max-width: 760px;
  margin-bottom: 28px;
}

.rich-text {
  color: var(--muted);
  font-size: 1.03rem;
}

.rich-text p {
  margin-bottom: 18px;
}

.section-band {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 68, 94, 0.08), transparent 40%),
    linear-gradient(225deg, rgba(54, 214, 255, 0.07), transparent 42%),
    #151514;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(241, 191, 85, 0.04)),
    var(--surface);
}

.feature-card.accent {
  border-color: rgba(31, 209, 133, 0.24);
  background:
    linear-gradient(145deg, rgba(31, 209, 133, 0.09), rgba(240, 68, 94, 0.06)),
    var(--surface);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tv-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.tv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.tv-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.tv-copy p {
  margin-bottom: 18px;
}

.score-board {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(241, 191, 85, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 191, 85, 0.13), rgba(54, 214, 255, 0.08), rgba(240, 68, 94, 0.08)),
    #181819;
  box-shadow: var(--shadow);
}

.score-board div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.score-board span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #140907;
  font-weight: 900;
}

.score-board strong {
  color: #fff8df;
  line-height: 1.25;
}

.trust-band {
  background:
    linear-gradient(135deg, rgba(31, 209, 133, 0.12), transparent 42%),
    linear-gradient(225deg, rgba(241, 191, 85, 0.1), transparent 45%),
    #121212;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.trust-layout p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 5px rgba(31, 209, 133, 0.14);
}

.faq-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

details {
  min-height: 200px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(54, 214, 255, 0.035)),
    var(--surface);
}

summary {
  cursor: pointer;
  color: #fff6dc;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 86px);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(241, 191, 85, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 191, 85, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(240, 68, 94, 0.12), transparent 48%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #09090a;
}

.site-footer p {
  max-width: 820px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .content-grid,
  .content-grid.reverse,
  .tv-layout,
  .trust-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-intro {
    position: static;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    max-width: 138px;
    max-height: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.1;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions,
  .final-cta .button {
    width: 100%;
  }

  .button,
  .inline-cta {
    width: 100%;
    text-align: center;
  }

  .ticker {
    grid-template-columns: 1fr 1fr;
  }

  .ticker span {
    min-height: 58px;
    font-size: 0.84rem;
  }

  .content-grid,
  .section-band,
  .tv-section,
  .faq-section {
    padding: 52px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-flex;
    margin-top: 14px;
  }
}
