:root {
  /* Telegram palette */
  --tg-blue: #2aabee;
  --tg-blue-2: #229ed9;
  --tg-blue-dark: #0088cc;
  --tg-ink: #0f2233;

  --bg: #f4f9fd;
  --bg-2: #eaf3fb;
  --surface: #ffffff;
  --text: #0f2233;
  --muted: #4a5b6b;
  --hairline: #dbe7f2;
  --accent: var(--tg-blue-2);
  --accent-strong: var(--tg-blue-dark);
  --gradient: linear-gradient(135deg, #2aabee 0%, #229ed9 55%, #0088cc 100%);
  --shadow-sm:
    0 1px 2px rgba(15, 34, 51, 0.04), 0 2px 8px rgba(15, 34, 51, 0.04);
  --shadow-md:
    0 6px 24px rgba(34, 158, 217, 0.1), 0 2px 6px rgba(15, 34, 51, 0.05);
  --shadow-lg:
    0 20px 50px rgba(34, 158, 217, 0.18), 0 8px 24px rgba(15, 34, 51, 0.08);

  /* Precious-metal accents (used only in the Gold & Silver section) */
  --gold: #c99a2e;
  --silver: #9aa4b2;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Decorative background — fills side gutters so wide screens don't feel empty */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.bg-blob-1 {
  top: -160px;
  left: -180px;
  background: radial-gradient(circle at 30% 30%, #2aabee, transparent 60%);
}
.bg-blob-2 {
  top: 40%;
  right: -220px;
  background: radial-gradient(circle at 60% 40%, #0088cc, transparent 60%);
  opacity: 0.28;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(34, 158, 217, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 158, 217, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 20%,
    black 30%,
    transparent 75%
  );
}

h1,
h2,
h3 {
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}
h2 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 0.4em;
}
h3 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 0.25em;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
  max-width: 64ch;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--accent-strong);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Eyebrow / section tags */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 158, 217, 0.1);
  border: 1px solid rgba(34, 158, 217, 0.2);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tg-blue);
  box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(42, 171, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0);
  }
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  margin-bottom: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 249, 253, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.wordmark:hover {
  color: var(--text);
}
.wordmark-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 3px 8px;
  border-radius: 9px;
  overflow: hidden;
  background: #0a0e13;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 158, 217, 0.35);
}
.wordmark-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.wordmark-logo {
  height: 68px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--text);
}
.site-nav .nav-cta {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.35);
}
.site-nav .nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}
.site-nav .nav-cta-soon {
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px dashed var(--hairline);
  color: var(--muted);
  font-weight: 600;
  cursor: default;
  box-shadow: none;
}
.site-nav .nav-cta-soon:hover {
  color: var(--muted);
  transform: none;
}

/* Sections */
main section {
  position: relative;
}
main > section:not(.hero) {
  padding-top: 45px;
  padding-bottom: 55px;
}
main > section.section-tinted {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(234, 243, 251, 0.5)
  );
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.subhead {
  color: var(--muted);
  font-size: 20px;
  max-width: 58ch;
  line-height: 1.6;
}
.section-lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 64ch;
  margin-bottom: 40px;
}
.prose p {
  color: var(--muted);
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hairline);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
  cursor: pointer;
}
.btn:hover {
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: #c9dbec;
}
.btn-primary {
  border-color: transparent;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.32);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 158, 217, 0.42);
}
.btn-large {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.btn + .btn {
  margin-left: 12px;
}

/* Hero */
.hero {
  padding-top: 88px;
  padding-bottom: 96px;
  text-align: left;
}
.hero .actions {
  margin-top: 36px;
}
.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Noise stats */
.noise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.noise-stats > div {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
  display: block;
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c9dbec;
}
.feature:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(42, 171, 238, 0.15),
    rgba(0, 136, 204, 0.1)
  );
  font-size: 22px;
  margin-bottom: 16px;
}
.feature h3 {
  color: var(--text);
}
.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Gold & Silver — matches the plain sections; accent lives on the cards only */
.features-metals .feature-gold {
  border-left: 3px solid var(--gold);
}
.features-metals .feature-silver {
  border-left: 3px solid var(--silver);
}
.feature-gold .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(201, 154, 46, 0.2),
    rgba(201, 154, 46, 0.07)
  );
}
.feature-silver .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(154, 164, 178, 0.24),
    rgba(154, 164, 178, 0.08)
  );
}
.feature-gold::before {
  background: linear-gradient(135deg, #e6c15a, #c99a2e);
}
.feature-silver::before {
  background: linear-gradient(135deg, #c8d0dc, #9aa4b2);
}
.feature-gold:hover {
  border-color: rgba(201, 154, 46, 0.45);
}
.feature-silver:hover {
  border-color: rgba(154, 164, 178, 0.5);
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.audience > div {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--tg-blue);
  border-radius: 10px;
}
.audience strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 4px;
}
.audience span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: step;
  padding: 22px 24px 22px 68px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  color: var(--text);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(34, 158, 217, 0.35);
}
.steps li strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.steps li span {
  color: var(--muted);
  font-size: 15px;
}

/* Sources */
.sources p {
  color: var(--muted);
}

/* Final CTA */
.final-cta-wrap {
  padding: 0;
  margin: 0;
}
.final-cta-wrap > .container {
  background: var(--gradient);
  color: #fff;
  padding: 64px 48px;
  border-radius: 24px;
  margin: 64px auto;
  max-width: 1120px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.final-cta-wrap > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 15% 90%,
      rgba(255, 255, 255, 0.12),
      transparent 40%
    );
  pointer-events: none;
}
.final-cta {
  text-align: center;
  position: relative;
}
.final-cta .lead {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
  max-width: none;
}
.final-cta .lead-sub {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 28px;
  max-width: 52ch;
}
.final-cta .lead-sub a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}
.final-cta .lead-sub a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.final-cta .btn-primary {
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.final-cta .btn-primary:hover {
  color: var(--tg-ink);
  background: #fff;
}

/* Legal — dark band, small white text */
.legal {
  padding: 56px 0;
  background: var(--tg-ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.legal h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin-bottom: 28px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.legal article {
  margin: 0;
}
.legal article h3 {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.legal article p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  max-width: none;
}
.legal a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.legal a:hover {
  color: var(--tg-blue);
  text-decoration-color: var(--tg-blue);
}
.legal-disclaimer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  max-width: none;
}

/* Footer */
.site-footer {
  background: #0a1826;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 28px;
  font-size: 13px;
  border-top: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cols li {
  margin-bottom: 6px;
}
.footer-cols a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-cols a:hover {
  color: var(--tg-blue);
}
.footer-cols .wordmark {
  color: #fff;
  display: inline-flex;
  margin-bottom: 8px;
}
.footer-cols .wordmark:hover {
  color: #fff;
}
.footer-cols .wordmark-footer {
  padding: 0;
  margin-bottom: 12px;
  align-items: center;
  line-height: 0;
}
.footer-cols .wordmark-footer img {
  display: block;
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.footer-cols .wordmark-footer:hover img {
  opacity: 1;
}
.footer-cols .tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}
.footer-fine {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* 404 */
.notfound {
  padding: 120px 0;
  text-align: center;
}
.notfound h1 {
  font-size: 80px;
  margin-bottom: 0.25em;
}
.notfound p {
  margin: 0 auto 24px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .waitlist-grid {
    grid-template-columns: 1fr;
  }
  .audience {
    grid-template-columns: 1fr;
  }
  .noise-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  body {
    font-size: 16px;
  }
  main > section:not(.hero) {
    padding-top: 45px;
    padding-bottom: 55px;
  }
  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn + .btn {
    margin-left: 0;
    margin-top: 12px;
  }
  .actions .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .site-header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .site-nav a:not(.nav-cta) {
    display: none;
  }
  .final-cta-wrap > .container {
    padding: 44px 24px;
    margin: 32px 16px;
    border-radius: 20px;
  }
  .final-cta .lead {
    font-size: 26px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn.is-disabled {
  opacity: 0.75;
  cursor: default;
  filter: grayscale(0.15);
  pointer-events: none;
}
.muted {
  color: var(--muted);
}

/* ---------- Revamp additions ---------- */

.hero-fineprint {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  max-width: 62ch;
  font-style: italic;
}

/* "What it is not" grid */
.not-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.not-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid #d94f4f;
  border-radius: 10px;
}
.not-card p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.not-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(217, 79, 79, 0.12);
  color: #d94f4f;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.prose-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  max-width: none;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
  max-width: 780px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.is-featured {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  outline: 2px solid var(--tg-blue);
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(34, 158, 217, 0.35);
}
.price-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  margin-bottom: 12px;
}
.price-amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.price-amount .price-per {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.price-eff {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}
.price-features li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn {
  margin-top: auto;
  justify-content: center;
}
.pricing-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  max-width: none;
}

/* Legal / long-form pages */
.page {
  padding: 60px 0 40px;
}
.page-header {
  margin-bottom: 32px;
}
.page-header h1 {
  font-size: 44px;
  margin-bottom: 8px;
}
.page-header .updated {
  color: var(--muted);
  font-size: 13px;
}
.legal-page h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 10px;
}
.legal-page h3 {
  font-size: 17px;
  margin-top: 22px;
  margin-bottom: 6px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-page ul {
  padding-left: 22px;
}
.legal-page a {
  color: var(--accent);
}
.legal-page strong {
  color: var(--text);
}
.callout {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(34, 158, 217, 0.06);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
}

/* Waitlist */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Honeypot: kept off-screen (not display:none) so bots still fill it. */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.waitlist-hero {
  padding-top: 72px;
  padding-bottom: 96px;
}
.waitlist-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.waitlist-hero-copy h1 {
  margin-bottom: 18px;
}
.waitlist-hero-copy .subhead {
  margin-bottom: 32px;
}
.waitlist-inline-form {
  display: block;
  max-width: 520px;
}
.waitlist-inline {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.waitlist-inline:focus-within {
  border-color: #9dc8e3;
  box-shadow: 0 0 0 4px rgba(34, 158, 217, 0.18), var(--shadow-md);
}
.waitlist-inline input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  outline: none;
}
.waitlist-inline input[type="email"]::placeholder {
  color: #9fb1c2;
}
.waitlist-inline .btn {
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 10px;
  white-space: nowrap;
}
.waitlist-inline-form .form-help {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.waitlist-inline-form .form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 600;
}
.waitlist-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 14px;
}
.waitlist-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.waitlist-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 158, 217, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.waitlist-countdown-card {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(42, 171, 238, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.waitlist-countdown-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}
.waitlist-countdown-card .section-tag {
  margin-bottom: 8px;
}
.waitlist-countdown-card h2 {
  margin: 0 0 20px;
  font-size: 24px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}
.countdown-unit {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.countdown-unit strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.countdown-unit span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.waitlist-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .waitlist-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .waitlist-hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
@media (max-width: 560px) {
  .waitlist-inline {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }
  .waitlist-inline input[type="email"] {
    padding: 12px 14px;
  }
  .waitlist-inline .btn {
    justify-content: center;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
  .countdown-unit strong {
    font-size: 34px;
  }
}

/* FAQ accordion */
.faq-section .faq-header {
  margin-bottom: 32px;
}
.faq-groups {
  display: grid;
  gap: 40px;
  max-width: 820px;
}
.faq-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.faq-group-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 158, 217, 0.1);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.faq-help {
  margin-top: 40px;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 243, 251, 0.55));
  box-shadow: var(--shadow-sm);
}
.faq-help-title {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}
.faq-help-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 46ch;
}
.faq-help-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.faq-help-address {
  flex-basis: 100%;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.faq-help-address-link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(34, 158, 217, 0.4);
  text-underline-offset: 3px;
}
.faq-help-address-link:hover {
  text-decoration-color: var(--accent-strong);
}
@media (max-width: 640px) {
  .faq-help {
    padding: 22px;
  }
  .faq-help-actions {
    width: 100%;
  }
  .faq-help-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: #c9dbec;
  box-shadow: var(--shadow-md);
}
.faq-item + .faq-item {
  margin-top: 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--accent-strong);
}
.faq-item summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(34, 158, 217, 0.35);
  border-radius: 14px;
}
.faq-q {
  flex: 1;
  min-width: 0;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 158, 217, 0.1);
  transition: background 0.2s ease, transform 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--accent-strong);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq-icon::before {
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-icon {
  background: rgba(34, 158, 217, 0.18);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq-a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--hairline);
}
.faq-a p {
  margin: 16px 0 0;
  max-width: 68ch;
}
.faq-a a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(34, 158, 217, 0.4);
  text-underline-offset: 3px;
}
.faq-a a:hover {
  text-decoration-color: var(--accent-strong);
}
@media (max-width: 560px) {
  .faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }
  .faq-a {
    padding: 0 18px 18px;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}
.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .not-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 32px;
  }
}

