:root {
  --bg: #0b0f17;
  --surface: #131927;
  --surface-2: #1a2235;
  --border: #2a3450;
  --text: #e6ebf5;
  --muted: #9aa6c0;
  --accent: #6ee7b7;
  --accent-2: #60a5fa;
  --danger: #f87171;
  --radius: 10px;
  --max-width: 1100px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

/* Disclaimer banner */
.disclaimer-bar {
  background: #2a1f0a;
  color: #f0c674;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  border-bottom: 1px solid #4a3a1a;
}
.disclaimer-bar strong { color: #ffd07a; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  text-decoration: none;
}
.nav-cta {
  background: var(--accent);
  color: #062017;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { text-decoration: none; opacity: 0.9; }

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 16px;
}
.btn-primary {
  background: var(--accent);
  color: #062017;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--surface); text-decoration: none; }
.btn-primary:hover { opacity: 0.9; text-decoration: none; }

/* Page header */
.page-header {
  padding: 64px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: 44px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.page-header p {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Section */
section.block {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
section.block:last-of-type { border-bottom: none; }
section.block h2 {
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
section.block .section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 17px;
}

/* Grid of cards */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .page-header h1 { font-size: 32px; }
  section.block { padding: 48px 0; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 14px;
  opacity: 0.9;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.06), var(--surface));
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #062017;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.price-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.price-card .tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
  min-height: 40px;
}
.price-card .amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-card .amount .per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.price-card .amount-note {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 20px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.price-card li {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}
.price-card .btn { text-align: center; }

/* Logos strip */
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  padding: 24px 0;
}
.logo-pill {
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 16px;
}

/* Testimonial */
.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 0;
}
.quote p {
  font-size: 18px;
  margin: 0 0 12px;
}
.quote .who {
  color: var(--muted);
  font-size: 14px;
}

/* About page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  margin-bottom: 14px;
}
.team-card h3 { margin: 0 0 2px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: 13px; margin: 0 0 10px; }
.team-card p { color: var(--muted); margin: 0; font-size: 14px; }

.timeline {
  border-left: 2px solid var(--border);
  padding-left: 24px;
  margin: 20px 0;
}
.timeline-item {
  margin-bottom: 28px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline-item .year {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.timeline-item h4 { margin: 4px 0 4px; font-size: 17px; }
.timeline-item p { color: var(--muted); margin: 0; }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Utility */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat .label {
  color: var(--muted);
  font-size: 14px;
}

.callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0 0;
}
.callout h2 { margin: 0 0 12px; font-size: 28px; }
.callout p { color: var(--muted); margin: 0 0 20px; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
table.compare th, table.compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
table.compare th {
  background: var(--surface-2);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 600;
}
table.compare td:first-child { color: var(--text); font-weight: 500; }
table.compare tr:last-child td { border-bottom: none; }
