
:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-2: rgba(40, 37, 34, 0.85);
  --sheet: rgba(44, 44, 46, 0.65);
  --text: #f5f5f5;
  --text-2: rgba(235, 235, 245, 0.62);
  --text-3: rgba(191, 191, 191, 0.9);
  --brand: #f9a005;
  --brand-2: #f3722c;
  --coin: #d8a800;
  --purple: #7b3fe4;
  --purple-deep: #2a0d52;
  --scroll: #ff383c;
  --good: #30d158;
  --stroke: rgba(255, 255, 255, 0.1);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 24px;
  --radius-xl: 34px;
  --max: 1080px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --header-h: 4.25rem;
  --font: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --section-purple:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(123, 63, 228, 0.38), transparent 52%),
    linear-gradient(180deg, #5c2da8 0%, #4b1e6b 22%, #321858 55%, #120620 82%, #000 100%);
  --section-ink:
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(40, 40, 48, 0.35), transparent 55%),
    linear-gradient(180deg, #000 0%, #101014 45%, #060608 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: #000;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background: #000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--brand);
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.skip:focus { top: 1rem; }

.wrap {
  width: min(var(--max), 100% - var(--pad) * 2);
  margin-inline: auto;
}

.section-head {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.section-head h2 {
  max-width: none;
  margin-inline: auto;
  text-wrap: balance;
}

.section-head .section-lead {
  margin-bottom: 0;
  margin-inline: auto;
}

.section-head-spaced {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: var(--stroke);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-2);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible { color: var(--text); }

.nav a.header-cta {
  color: #000;
}

.nav a.header-cta:hover,
.nav a.header-cta:focus-visible {
  color: #000;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-list summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--brand);
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(249, 160, 5, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn-store {
  background: #fff;
  color: #111;
  padding-inline: 1rem 1.15rem;
}

.btn-store svg { width: 18px; height: 22px; }

.btn-store .store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.btn-store small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-store strong { font-size: 1rem; }

/* Sections */
section { padding: clamp(2.25rem, 4.5vw, 3.25rem) 0; }
.section-purple { background: var(--section-purple); }
.section-ink { background: var(--section-ink); }

/* Liquid glass cards */
.glass-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 52%
  );
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card--section {
  border-radius: calc(var(--radius-xl) + 6px);
  padding: clamp(1.75rem, 4vw, 3rem);
}

h1, h2, h3 {
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0.7rem 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-kicker {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-lead {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

body.blog-page .site-header[data-header] {
  position: fixed;
  left: 0;
  right: 0;
}
/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 1.25rem 0 clamp(4rem, 8vw, 5rem);
  color: var(--text-2);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

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

/* Mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0 calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--stroke);
  z-index: 40;
}

.mobile-cta-inner .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .hero-grid,
  .problem-grid,
  .listen-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-copy,
  .problem-copy,
  .listen-copy {
    text-align: center;
    max-width: 40rem;
  }

  .hero-copy .lede,
  .listen-copy .section-lead,
  .problem-copy .section-lead {
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-meta,
  .listen-copy .btn {
    justify-content: center;
  }

  .hero-copy .eyebrow { display: inline-flex; }

  .problem-copy h2,
  .listen-copy h2 {
    max-width: none;
    margin-inline: auto;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 280px);
  }

  .hero-phone {
    width: min(230px, 100%);
  }

  .final-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(0, 0, 0, 0.94);
    flex-direction: column;
    padding: 1rem 1.25rem 1.4rem;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
    border-bottom: 1px solid var(--stroke);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle { display: grid; place-items: center; }
  .header-cta { display: none; }

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

  .mobile-cta { display: block; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links { justify-content: center; }
}

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

  