:root {
  --bg: #0b1120;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --accent: #10b981;
  --accent-dim: rgba(16,185,129,0.12);
  --accent-border: rgba(16,185,129,0.3);
  --text: #f9fafb;
  --muted: #9ca3af;
  --subtle: #6b7280;
  --panel: rgba(12,16,28,0.7);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ── Util ── */
.container {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.brand-logo {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo img { display: block; width: 45px; height: 45px; object-fit: contain; }
.brand-dot { color: var(--accent); }
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-signin:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── Hero ── */
.hero {
  background: radial-gradient(circle at 15% 30%, rgba(16,185,129,0.08), transparent 45%),
              radial-gradient(circle at 85% 10%, rgba(59,130,246,0.07), transparent 45%);
  padding: 96px 24px 80px;
  text-align: center;
}
.hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.hero h1 {
  margin: 0 0 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.hero .lede strong { color: var(--text); font-weight: 600; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: linear-gradient(120deg, #059669, var(--accent));
  color: #022c22;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(16,185,129,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16,185,129,0.42);
}
.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--subtle);
}

/* ── Trust strip ── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--surface);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}
.trust-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item .check {
  width: 18px;
  height: 18px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Section shared ── */
section {
  padding: 80px 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 48px;
  max-width: 560px;
  line-height: 1.6;
}

/* ── How it works ── */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how .container { text-align: center; }
.how .section-sub { margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step h3 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; }
.step code { color: var(--accent); font-size: 13px; }

/* ── Why Bwak (differentiators) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.why-card .icon {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}
.why-card h3 {
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.why-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; }
.why-card p strong { color: var(--text); font-weight: 600; }

/* ── Pricing ── */
.pricing-grid {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, rgba(16,185,129,0.05), var(--surface));
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #022c22;
  background: var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
}
.price-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 600;
}
.price-period {
  font-size: 13px;
  color: var(--subtle);
  margin-bottom: 8px;
}
.price-annual {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li strong { color: var(--text); font-weight: 600; }
.price-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.price-cta.primary {
  background: linear-gradient(120deg, #059669, var(--accent));
  color: #022c22;
  box-shadow: 0 6px 20px rgba(16,185,129,0.28);
}
.price-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(16,185,129,0.4);
}
.price-cta.secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.price-cta.secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--subtle);
  max-width: 720px;
}
.pricing-note strong { color: var(--muted); }

/* ── Founder note ── */
.founder {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.founder-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-avatar img { display: block; width: 90px; height: 90px; object-fit: contain; }
blockquote.founder-quote {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}
blockquote.founder-quote em { font-style: normal; color: var(--accent); }
.founder-byline {
  font-size: 14px;
  color: var(--subtle);
}

/* ── Final CTA band ── */
.cta-band {
  background: radial-gradient(circle at 50% 50%, rgba(16,185,129,0.08), transparent 70%);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta-band p { font-size: 16px; color: var(--muted); margin: 0 0 32px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  font-size: 13px;
  color: var(--subtle);
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--subtle); text-decoration: none; }
footer a:hover { color: var(--muted); }
.footer-links { display: flex; gap: 20px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .steps         { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .trust-inner   { gap: 16px; justify-content: flex-start; }
  .hero          { padding: 64px 20px 56px; }
  section        { padding: 56px 20px; }
}
