:root {
  --bg: #090909;
  --surface: #111111;
  --surface2: #1a1a1a;
  --fg: #f0ede8;
  --fg-muted: #888887;
  --fg-dim: #444443;
  --accent: #00e87a;
  --accent-dim: rgba(0,232,122,0.12);
  --border: rgba(240,237,232,0.08);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  text-decoration: none;
}

.logo-mark {
  color: var(--accent);
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.hero-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--surface);
}

/* SHIELD ORB */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
}

.orb-ring-1 { width: 320px; height: 320px; opacity: 0.15; }
.orb-ring-2 { width: 240px; height: 240px; opacity: 0.2; animation: pulse 3s ease-in-out infinite; }
.orb-ring-3 { width: 160px; height: 160px; opacity: 0.3; animation: pulse 3s ease-in-out infinite 0.5s; }

.orb-center {
  width: 96px;
  height: 96px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,122,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}

/* DIFFERENT SECTION */
.different {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col {
  background: var(--surface);
  padding: 40px;
}

.col-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.col-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.col-label-new {
  color: var(--accent);
}

.col-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.col-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.col-item-false { color: var(--fg-dim); }
.col-item-true { color: var(--fg); }

.item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 1px;
}

.col-item-false .item-icon {
  background: rgba(255,255,255,0.05);
  color: var(--fg-dim);
}

.col-item-true .item-icon {
  background: var(--accent-dim);
  color: var(--accent);
}

/* CHECKS SECTION */
.checks {
  padding: 0 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.checks-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin: 20px 0 56px;
  max-width: 600px;
}

.check-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.check-card {
  background: var(--surface);
  padding: 40px;
}

.check-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.check-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.check-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 0 40px 140px;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 60px;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }

  .hero-visual { display: none; }

  .different { padding: 80px 20px; }

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

  .checks { padding: 0 20px 80px; }

  .check-cards { grid-template-columns: 1fr; }

  .closing { padding: 0 20px 100px; }

  .footer { padding: 32px 20px; }

  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* NAV BUTTONS */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-btn-ghost:hover { color: var(--fg); border-color: rgba(240,237,232,0.2); }

.nav-btn-primary {
  font-size: 13px;
  font-weight: 600;
  color: #090909;
  text-decoration: none;
  padding: 8px 20px;
  background: var(--accent);
  border-radius: 8px;
  transition: opacity 0.15s;
}
.nav-btn-primary:hover { opacity: 0.9; }

/* HERO CTA — replace "Available soon" pill with live button */
.hero-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #090909;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.hero-cta .cta-btn:hover { opacity: 0.9; }
