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

:root {
  --bg: #09090b;
  --surface: #111114;
  --surface2: #1a1a1f;
  --border: #232329;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --amber-glow: rgba(245, 158, 11, 0.06);
  --text: #f4f4f5;
  --text-dim: #71717a;
  --text-muted: #52525b;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  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: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.nav-cta { margin-left: auto; }

.nav-login-btn {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.15s;
}

.nav-login-btn:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 20%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
}

/* Dashboard frame */
.hero-visual { position: relative; }

.dash-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 64px rgba(0,0,0,0.4);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green { background: #28c840; }

.dash-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-left: 0.5rem;
}

.dash-body {
  display: flex;
  height: 320px;
}

.dash-sidebar {
  width: 160px;
  border-right: 1px solid var(--border);
  padding: 1rem 0;
  flex-shrink: 0;
}

.dash-nav-item {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  cursor: pointer;
  font-family: var(--font-body);
}

.dash-nav-item.active {
  color: var(--amber);
  background: var(--amber-dim);
  border-left: 2px solid var(--amber);
}

.dash-main { flex: 1; padding: 1.25rem; overflow: hidden; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  margin: 0.125rem 0;
}

.stat-change {
  font-size: 0.6875rem;
  font-family: var(--font-body);
}

.stat-change.up { color: #22c55e; }

.dash-chart {}

.chart-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  height: 80px;
}

.bar {
  flex: 1;
  background: var(--border);
  border-radius: 3px 3px 0 0;
  transition: background 0.2s;
}

.bar.active { background: var(--amber); }

/* ─── Section Shared ─── */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 2rem;
}

.manifesto-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.manifesto-solution { color: var(--amber); margin-top: 3rem; }

.manifesto-divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 3rem 0;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, var(--amber-glow) 50%, transparent);
}

.outcomes-inner { max-width: 1200px; margin: 0 auto; }

.outcomes-header {
  margin-bottom: 4rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.outcome-card:hover {
  border-color: var(--amber-dim);
  box-shadow: 0 0 0 1px var(--amber-dim);
}

.outcome-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.outcome-title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(245,158,11,0.05), var(--surface));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-per {
  font-size: 1.25rem;
  color: var(--text-dim);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.pricing-cta-btn {
  display: block;
  background: var(--amber);
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0.75rem;
  border-radius: 8px;
  transition: opacity 0.15s;
}

.pricing-cta-btn:hover { opacity: 0.85; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  text-align: center;
}

/* ─── Closing ─── */
.closing {
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }

.closing-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--text-dim);
  font-style: normal;
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.value-tag {
  font-size: 0.8125rem;
  font-family: var(--font-body);
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* ─── Footer ─── */
.footer {
  padding: 2.5rem 2.5rem;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .manifesto, .outcomes, .pricing, .closing { padding: 5rem 1.25rem; }
  .footer { padding: 2rem 1.25rem; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .closing-values { gap: 0.5rem; }
  .value-tag { font-size: 0.75rem; }
}