:root {
  color-scheme: dark;
  --void: #080a0f;
  --surface: #10131a;
  --surface2: #181c27;
  --border: rgba(255, 255, 255, 0.1);
  --border-hi: rgba(123, 155, 255, 0.45);
  --text: #f7f8fc;
  --muted: #b4bbca;
  --dim: #7b8499;
  --indigo: #4f6bff;
  --purple: #7b9bff;
  --pink: #b4a0ff;
  --win: #34e39a;
  --loss: #ff7a84;
  --warn: #ffc14d;
  --radius: 16px;
  --max: 1100px;
  --nav-h: 64px;
  font-family: Inter, system-ui, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--void);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

::selection {
  background: rgba(123, 155, 255, 0.35);
  color: #fff;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(920px circle at 8% -8%, rgba(123, 155, 255, 0.2), transparent 52%),
    radial-gradient(700px circle at 95% 0%, rgba(180, 160, 255, 0.12), transparent 48%),
    radial-gradient(580px circle at 40% 110%, rgba(52, 227, 154, 0.06), transparent 42%);
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #fff;
}

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(8, 10, 15, 0.78);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: "Chakra Petch", Inter, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand img {
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--border-hi);
}
.brand:hover {
  color: #fff;
}

.nav-links {
  display: none;
  gap: 0.25rem 0.15rem;
  margin-left: auto;
  margin-right: 0.35rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover {
  border-color: var(--border-hi);
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 35;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(8, 10, 15, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-drawer.open {
  display: block;
}
.nav-drawer a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
}
.nav-drawer a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    margin-left: 0;
  }
  .nav-toggle,
  .nav-drawer {
    display: none !important;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.98);
}
.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--purple) 55%, var(--pink));
  box-shadow: 0 0 32px -8px rgba(123, 155, 255, 0.55);
}
.btn-primary:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 0 40px -6px rgba(123, 155, 255, 0.65);
}
.btn-ghost {
  color: var(--muted);
  background: var(--surface2);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: #fff;
  border-color: var(--border-hi);
}
.btn-block {
  width: 100%;
}

/* ─── Hero ─── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 2.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    padding-top: 4.25rem;
    padding-bottom: 3.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 155, 255, 0.35);
  background: rgba(123, 155, 255, 0.1);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--win);
  box-shadow: 0 0 0 3px rgba(52, 227, 154, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.grad {
  display: block;
  background: linear-gradient(90deg, var(--indigo), var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.lede strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--dim);
  font-size: 0.82rem;
}
.trust-row li {
  position: relative;
  padding-left: 0.9rem;
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}

/* Hero product mock */
.hero-card {
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(circle at 50% 40%, rgba(123, 155, 255, 0.22), transparent 62%);
  z-index: -1;
  filter: blur(8px);
}
.hero-card-inner {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-hi);
  background:
    linear-gradient(165deg, rgba(40, 46, 62, 0.95) 0%, rgba(16, 19, 26, 0.98) 100%);
  padding: 1.25rem;
  box-shadow:
    0 0 48px -10px rgba(123, 155, 255, 0.35),
    0 16px 44px -14px rgba(0, 0, 0, 0.75);
  animation: float-in 0.7s ease-out both;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.card-top img {
  border-radius: 12px;
}
.card-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.card-sub {
  color: var(--dim);
  font-size: 0.75rem;
}
.pill {
  margin-left: auto;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pill-win {
  color: var(--win);
  background: rgba(52, 227, 154, 0.12);
  border: 1px solid rgba(52, 227, 154, 0.3);
}
.pill-soon {
  color: var(--purple);
  background: rgba(123, 155, 255, 0.12);
  border: 1px solid rgba(123, 155, 255, 0.3);
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.card-stats > div {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.55rem 0.6rem;
}
.card-stats .label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.card-stats .value {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.card-stats .value.accent {
  color: var(--purple);
}

.card-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(52, 227, 154, 0.25);
  background: rgba(52, 227, 154, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--win);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 0 rgba(52, 227, 154, 0.4); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(52, 227, 154, 0); }
}

.card-bullets {
  margin: 0.9rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--dim);
  font-size: 0.8rem;
}
.card-bullets li {
  margin: 0.25rem 0;
}

.card-trail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--dim);
}
.card-trail .t-win {
  color: var(--win);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.card-trail .t-dim {
  color: var(--dim);
}

/* ─── Sections ─── */
.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 1.25rem;
}
/* Full-bleed band, content stays in the same centered column as other sections */
.section-alt {
  margin-top: 1rem;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  border-top: none;
  border-bottom: none;
  background: transparent;
}
.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(16, 19, 26, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: -1;
  pointer-events: none;
}

.section-head {
  margin-bottom: 1.65rem;
}
.section-head h2 {
  margin: 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.6;
}

/* ─── How it works ─── */
.steps {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 32, 44, 0.9), rgba(16, 19, 26, 0.95));
  padding: 1.25rem 1.2rem 1.2rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--purple);
}
.step h3 {
  margin: 0;
  font-size: 1rem;
}
.step p {
  margin: 0.4rem 0 0;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ─── Features ─── */
.grid-3 {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 32, 44, 0.9), rgba(16, 19, 26, 0.95));
  padding: 1.2rem 1.25rem;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  border-color: rgba(123, 155, 255, 0.35);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.04),
    0 12px 28px -16px rgba(123, 155, 255, 0.35);
}
.feature .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  background: rgba(123, 155, 255, 0.1);
  border: 1px solid rgba(123, 155, 255, 0.22);
  font-size: 1.05rem;
}
.feature h3 {
  margin: 0;
  font-size: 1rem;
}
.feature p {
  margin: 0.4rem 0 0;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ─── Safety ─── */
.safety-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.safety-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 15, 0.5);
  padding: 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s ease;
}
.safety-item:hover {
  border-color: rgba(52, 227, 154, 0.3);
}
.safety-item strong {
  color: var(--text);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.safety-item strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--win);
  box-shadow: 0 0 0 3px rgba(52, 227, 154, 0.15);
  flex-shrink: 0;
}
.safety-item span {
  color: var(--dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ─── Pricing tiers ─── */
.pricing-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 32, 44, 0.95), rgba(16, 19, 26, 0.98));
  padding: 1.5rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border-color: rgba(123, 155, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(79, 107, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(28, 32, 44, 0.98), rgba(16, 19, 26, 0.99));
  box-shadow: 0 0 48px -14px rgba(123, 155, 255, 0.4);
}
.price-badge {
  position: absolute;
  top: -0.55rem;
  right: 1.15rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  box-shadow: 0 4px 14px -4px rgba(79, 107, 255, 0.6);
}
.price-card h3 {
  margin: 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: 1.2rem;
}
.price-card .price-tag {
  margin: 0.65rem 0 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card .price-tag span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dim);
  font-family: Inter, sans-serif;
}
.price-card .price-desc {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.price-card ul {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.price-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.45;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--win);
  font-weight: 700;
  font-size: 0.8rem;
}
.price-card .price-actions {
  margin-top: 1.25rem;
}
.price-note {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ─── Waitlist / CTA band ─── */
.cta-band {
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border-hi);
  background:
    linear-gradient(145deg, rgba(79, 107, 255, 0.14), transparent 40%),
    linear-gradient(200deg, rgba(180, 160, 255, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(24, 28, 39, 0.95), rgba(16, 19, 26, 0.98));
  padding: 2.5rem 1.5rem;
  box-shadow: 0 0 48px -12px rgba(123, 155, 255, 0.3);
}
.cta-band img {
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--border-hi);
}
.cta-band h2 {
  margin: 0.9rem 0 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}
.cta-band > p {
  margin: 0.65rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cta-band .hero-actions {
  justify-content: center;
}
.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 155, 255, 0.3);
  background: rgba(123, 155, 255, 0.08);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waitlist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1.35rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.waitlist input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 15, 0.7);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.waitlist input[type="email"]::placeholder {
  color: var(--dim);
}
.waitlist input[type="email"]:focus {
  border-color: var(--border-hi);
  box-shadow: 0 0 0 3px rgba(123, 155, 255, 0.15);
}
.waitlist .btn {
  flex: 0 0 auto;
}

.fine {
  margin: 1.15rem auto 0 !important;
  max-width: 34rem;
  color: var(--dim) !important;
  font-size: 0.78rem !important;
  line-height: 1.5;
}
.fine code {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 0.85em;
  color: var(--purple);
  background: rgba(123, 155, 255, 0.1);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}

/* legacy download alias */
.download {
  padding-bottom: 1rem;
}
.download-card {
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border-hi);
  background:
    linear-gradient(145deg, rgba(79, 107, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(24, 28, 39, 0.95), rgba(16, 19, 26, 0.98));
  padding: 2.25rem 1.5rem;
  box-shadow: 0 0 48px -12px rgba(123, 155, 255, 0.3);
}
.download-card img {
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--border-hi);
}
.download-card h2 {
  margin: 0.9rem 0 0;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: 1.65rem;
}
.download-card > p {
  margin: 0.65rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.download-card .hero-actions {
  justify-content: center;
}

/* ─── FAQ ─── */
.faq-list {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(16, 19, 26, 0.7);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.15s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: rgba(123, 155, 255, 0.1);
  border-color: rgba(123, 155, 255, 0.3);
}
.faq-item .faq-body {
  padding: 0 1.15rem 1.05rem;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.6;
}
.faq-item .faq-body p {
  margin: 0;
}
.faq-item .faq-body p + p {
  margin-top: 0.55rem;
}

/* ─── Legal / risk ─── */
.inline-code {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 0.9em;
  color: var(--purple);
  background: rgba(123, 155, 255, 0.1);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}

.legal-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(28, 32, 44, 0.92), rgba(16, 19, 26, 0.96));
  padding: 1.15rem 1.2rem;
}
.legal-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}
.legal-card p {
  margin: 0 0 0.55rem;
  color: var(--dim);
  font-size: 0.84rem;
  line-height: 1.55;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  margin: 0.35rem 0 0.55rem;
  padding-left: 1.15rem;
  color: var(--dim);
  font-size: 0.84rem;
  line-height: 1.55;
}
.legal-card li {
  margin: 0.25rem 0;
}
.legal-card a {
  color: var(--purple);
}
.legal-card-primary {
  border-color: rgba(123, 155, 255, 0.35);
  background:
    linear-gradient(145deg, rgba(79, 107, 255, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(28, 32, 44, 0.95), rgba(16, 19, 26, 0.98));
}
.legal-card-warn {
  border-color: rgba(255, 193, 77, 0.28);
  background: rgba(255, 193, 77, 0.05);
}
.legal-card .callout {
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 193, 77, 0.3);
  background: rgba(255, 193, 77, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}
.risk-foot {
  margin: 1rem auto 0;
  max-width: 40rem;
  text-align: center;
  color: var(--dim);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ─── Stats strip ─── */
.stats-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
@media (min-width: 700px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-cell {
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 15, 0.4);
  padding: 1.1rem 0.9rem;
}
.stat-cell strong {
  display: block;
  font-family: "Chakra Petch", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--indigo), var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-cell span {
  display: block;
  margin-top: 0.3rem;
  color: var(--dim);
  font-size: 0.8rem;
}

/* ─── Footer ─── */
.footer {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1.25rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-brand img {
  border-radius: 8px;
}
.footer-brand strong {
  display: block;
  font-size: 0.9rem;
}
.footer-brand span {
  display: block;
  color: var(--dim);
  font-size: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}
.copy {
  margin: 0;
  color: var(--dim);
  font-size: 0.75rem;
  line-height: 1.55;
}
.copy a {
  color: var(--muted);
}
.copy a:hover {
  color: #fff;
}

/* ─── Form labels (account / success) ─── */
.serem-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .dot,
  .pulse,
  .hero-card-inner {
    animation: none;
  }
  .feature:hover,
  .btn:active {
    transform: none;
  }
}
