/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0e1a;
  --bg-2:        #0f1629;
  --bg-3:        #141d35;
  --surface:     #1a2540;
  --surface-2:   #1e2d4a;
  --border:      #243058;
  --green:       #00c851;
  --green-dim:   #00c85120;
  --green-glow:  #00c85140;
  --red:         #ff4757;
  --text:        #e8edf8;
  --text-muted:  #7a8aaa;
  --text-dim:    #4a5878;
  --accent:      #1e90ff;
  --font:        'Inter', system-ui, sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover { background: #00e05a; transform: translateY(-1px); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.btn-nav {
  background: var(--green);
  color: #000;
  padding: 9px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: #00e05a; text-decoration: none; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.logo-text { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.logo-accent { color: var(--green); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.nav-legal { color: var(--text); }
.nav-links a.nav-support {
  color: var(--green);
  font-weight: 600;
  border: 1px solid var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.nav-support:hover { background: var(--green); color: #000; }
.btn-support-nav {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-support-nav:hover { background: var(--green); color: #000; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 100px;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, #0d2a4a 0%, var(--bg) 70%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e2d4a' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px 60px;
}
.hero-badge {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--green-glow);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  font-style: italic;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  max-width: 420px;
  line-height: 1.5;
}
.hero-screens {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  background: var(--surface);
}
.screen-main {
  width: 220px;
  position: absolute;
  left: 60px;
  top: 20px;
  z-index: 2;
  transform: rotate(-3deg);
}
.screen-secondary {
  width: 200px;
  position: absolute;
  right: 40px;
  top: 60px;
  z-index: 1;
  transform: rotate(3deg);
  opacity: 0.85;
}

/* ── Ticker ───────────────────────────────────────────────────────────────── */
.hero-ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}
.ticker-track {
  display: inline-block;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  margin: 0 32px;
}
.ticker-track span::before {
  content: '|';
  margin-right: 32px;
  color: var(--border);
}
.green { color: var(--green); }
.muted { color: var(--text-muted); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--mono);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Security ─────────────────────────────────────────────────────────────── */
.security-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.security-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.security-check {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-list strong { display: block; margin-bottom: 4px; font-size: 15px; }
.security-list p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.security-screens { display: flex; justify-content: center; }
.security-screens .screen-frame { width: 260px; }

/* ── How It Works ─────────────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 48px 0 64px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 12px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: var(--text-dim);
  align-self: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.screens-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.screens-row .screen-frame { width: 200px; }
.screen-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-inner { text-align: center; }
.pricing-inner .section-desc { margin-left: auto; margin-right: auto; }
.pricing-card {
  max-width: 540px;
  margin: 0 auto 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-top {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--surface-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.pricing-rate {
  font-size: 72px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--mono);
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-basis {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
}
.pricing-features {
  list-style: none;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-example {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  text-align: left;
}
.pricing-example-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.pricing-example-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-example-row:last-child { border-bottom: none; }
.pricing-note {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.pricing-note a { color: var(--text-muted); }

/* ── Integrations ─────────────────────────────────────────────────────────── */
.integrations-inner { text-align: center; }
.integrations-inner .section-desc { margin-left: auto; margin-right: auto; }
.integrations-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.integration-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.integration-badge strong { font-size: 18px; }
.integration-badge span { font-size: 12px; color: var(--text-muted); }
.integration-coming {
  border-style: dashed;
  opacity: 0.5;
}
.integration-coming strong { color: var(--text-muted); font-size: 14px; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.section-cta {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #0d2a4a 0%, var(--bg) 70%);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  min-width: 200px;
  text-decoration: none;
  transition: border-color 0.2s;
  cursor: default;
}
.store-btn-soon { opacity: 0.6; }
.store-icon { font-size: 28px; }
.store-sub { font-size: 11px; color: var(--text-muted); }
.store-name { font-size: 17px; font-weight: 700; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand .logo-text { font-size: 20px; }
.footer-logo { width: 36px; height: 36px; border-radius: 8px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 4px;
}
.footer-links-group { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom span { font-size: 12px; color: var(--text-dim); }
.footer-disclaimer {
  max-width: 680px;
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-screens { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .security-inner { grid-template-columns: 1fr; }
  .security-screens { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links-group { gap: 32px; }
  .nav-links { display: none; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links-group { flex-direction: column; }
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.waitlist-input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  padding: 0 20px;
  height: 52px;
  width: 300px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--green); }
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-btn { height: 52px; padding: 0 28px; }
.waitlist-note {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.waitlist-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
