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

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --border: rgba(255,255,255,0.07);
  --text: #f0f0f5;
  --muted: #888899;
  --accent: #7c5cfc;
  --green: #5cfca2;
  --red: #fc5c7d;
  --grad: linear-gradient(135deg, #7c5cfc, #5cc8fc);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
  text-decoration: none;
}

nav a.cta-nav {
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  transition: opacity .2s;
}
nav a.cta-nav:hover { opacity: 0.85; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section { padding: 80px 24px; max-width: 800px; margin: 0 auto; }
.section-wide { max-width: 1100px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub, .prose { font-size: 17px; color: var(--muted); line-height: 1.75; }
.prose p { margin-bottom: 16px; }
.prose h2 { font-size: 22px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.prose h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 24px 0 8px; }
.prose ul { margin: 0 0 16px 20px; color: var(--muted); }
.prose ol { margin: 0 0 16px 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }

.prose .compare-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.prose table.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
  min-width: 560px;
}
.prose table.compare-table th,
.prose table.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.prose table.compare-table th {
  background: var(--bg2);
  color: var(--text);
  font-weight: 600;
}
.prose table.compare-table td { color: var(--muted); }
.prose table.compare-table tr:last-child td { border-bottom: none; }

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin: -4px 0 28px;
  text-align: center;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin: -8px 0 32px;
}

.form-note a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note a:hover { color: var(--text); }

.seo-hero {
  padding: 140px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.seo-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(124,92,252,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.seo-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.seo-hero h1 .highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.definition-block {
  background: var(--bg2);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
  text-align: left;
}
.definition-block strong { color: var(--text); }
.definition-block p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

.waitlist-box { width: 100%; max-width: 480px; margin: 32px auto 12px; }
.mc-placeholder { display: flex; gap: 10px; }
.mc-placeholder input[type="email"] {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
}
.mc-placeholder input[type="email"]:focus { border-color: rgba(124,92,252,0.6); }
.mc-placeholder button {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.form-note { font-size: 13px; color: var(--muted); text-align: center; }
.form-note span { color: var(--green); }

.signup-proof {
  margin: 0 auto 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}
.signup-proof strong {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cta-value {
  margin: 0 auto 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.wl-msg {
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
  text-align: center;
  line-height: 1.45;
}
.wl-msg.success,
.wl-msg.error {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.wl-msg.success {
  color: var(--green);
  background: rgba(92, 252, 162, 0.08);
  border-color: rgba(92, 252, 162, 0.25);
}
.wl-msg.error {
  color: var(--red);
  background: rgba(252, 92, 125, 0.08);
  border-color: rgba(252, 92, 125, 0.25);
}
.wl-form button[disabled],
.wl-form input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.benefit-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.benefit-card .icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.related-links a {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(124,92,252,0.3);
  border-radius: 100px;
  transition: background .2s;
}
.related-links a:hover { background: rgba(124,92,252,0.1); }

/* BLOG INDEX */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.blog-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover {
  border-color: rgba(124,92,252,0.35);
  transform: translateY(-2px);
}
.blog-card-body { flex: 1; min-width: 0; }
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124,92,252,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.blog-card-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 20px;
  margin-top: 4px;
}
.blog-card.soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.blog-card.soon .blog-tag { color: var(--muted); background: rgba(255,255,255,0.06); }

.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item.open { border-color: rgba(124,92,252,0.35); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(124,92,252,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.7; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

.cta-band {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
footer p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .mc-placeholder { flex-direction: column; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  nav.is-open .nav-links {
    display: flex;
  }
  .nav-links .nav-link,
  .nav-links .cta-nav {
    display: block;
    text-align: center;
    padding: 14px 16px;
  }
  .nav-links .cta-nav {
    margin-top: 8px;
  }
}
