:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --panel: rgba(20, 20, 21, 0.78);
  --panel-strong: rgba(10, 10, 11, 0.9);
  --gold: #f2b632;
  --gold-2: #ffd36f;
  --gold-dark: #936915;
  --text: #f8f8f8;
  --muted: #b8b8b8;
  --line: rgba(242, 182, 50, 0.32);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 6%, rgba(242, 182, 50, 0.2), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #030303 0%, #090909 55%, #020202 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #090909;
  background: var(--gold-2);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    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: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.1));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.1));
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

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

section[id],
main[id] { scroll-margin-top: 110px; }

.site-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 56px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand img { width: 40px; height: 40px; border-radius: 999px; }
.brand.small img { width: 36px; height: 36px; }

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover, .footer a:hover { color: var(--gold-2); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-cta,
.button-primary {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, #cc8d18);
  box-shadow: 0 14px 34px rgba(242, 182, 50, 0.28);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 140px);
  padding-bottom: 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1.01;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 650px;
  color: #d7d7d7;
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
  box-shadow: var(--shadow), inset 0 0 60px rgba(242, 182, 50, .08);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 211, 111, .22), transparent 38%);
}

.hero-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.problem,
.section-block,
.audience,
.faq {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}
.section-heading.compact { max-width: 640px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

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

.problem-grid article,
.step-card,
.feature-card,
.summary-card,
.faq details {
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.problem-grid article,
.step-card,
.feature-card {
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.problem-grid span,
.step-number,
.feature-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold-2);
  background: rgba(242, 182, 50, .08);
  font-weight: 900;
}

.problem-grid p,
.step-card p,
.feature-card p,
.summary-section p,
.faq p { color: var(--muted); }

.features {
  position: relative;
}

.feature-card {
  min-height: 245px;
}

.example {
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  padding: 90px 0;
}

.summary-card {
  padding: 28px;
  border-color: var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(242, 182, 50, .11), transparent 26%),
    rgba(12, 12, 13, .9);
}

.summary-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 18px var(--gold-2);
}

.summary-section {
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

.summary-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-section li {
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #eeeeee;
  background: rgba(255,255,255,.045);
}

.warning h3 { color: #ffd36f; }
.action h3 { color: #ffffff; }

.audience {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f3f3f3;
  background: rgba(242, 182, 50, .07);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 90px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.final-cta div { max-width: 720px; }
.final-cta h2 { margin-bottom: 12px; font-size: clamp(34px, 4vw, 52px); }
.final-cta p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: 18px; }
.final-cta .button { flex: 0 0 auto; }

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

.faq details {
  padding: 20px 24px;
  border-radius: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.faq p { margin: 14px 0 0; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer p { margin: 0; }
.footer a { color: #f2f2f2; font-weight: 800; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav { display: none; }
  .section-grid,
  .example {
    grid-template-columns: 1fr;
  }
  .hero { min-height: unset; padding-bottom: 50px; }
  .hero-card img { min-height: auto; }
  .problem-grid,
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-shell { width: min(100% - 22px, var(--max-width)); }
  .header {
    top: 8px;
    margin-bottom: 38px;
  }
  .brand span { display: none; }
  .nav-cta { min-height: 40px; padding: 0 14px; }
  h1 { font-size: clamp(44px, 15vw, 62px); }
  .lead { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .problem,
  .section-block,
  .audience,
  .faq { padding: 62px 0; }
  .example { padding: 62px 0; }
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 62px 0;
    padding: 24px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
