/* ============================================
   SpendLens — style.css
   Clean, crisp light-mode redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --surface:    #f0f2f6;
  --border:     #e2e5eb;
  --border-dark:#c8cdd8;
  --text:       #0d1117;
  --text-2:     #4a5568;
  --text-3:     #8a96a8;
  --accent:     #2563eb;
  --accent-light:#eff4ff;
  --accent-mid: #bfcffe;
  --success:    #059669;
  --warn:       #d97706;
  --danger:     #dc2626;
  --serif:      'Instrument Serif', Georgia, serif;
  --sans:       'Geist', system-ui, sans-serif;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--border-dark);
}

h2.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h2.section-heading em {
  font-style: italic;
  color: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent-mid);
}
.btn-outline:hover {
  background: var(--accent-light);
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-2);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 9rem 0 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge { margin-bottom: 2rem; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 54ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-item {
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.825rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ============================================
   DASHBOARD PREVIEW
   ============================================ */
.dashboard-preview {
  padding: 5rem 0 6rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.preview-header {
  text-align: center;
  margin-bottom: 3rem;
}
.preview-header p {
  color: var(--text-2);
  margin-top: 0.75rem;
  font-size: 1rem;
}

.dashboard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.dash-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #fc5f56; }
.dash-dots span:nth-child(2) { background: #fdbc2d; }
.dash-dots span:nth-child(3) { background: #27c840; }

.dash-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--sans);
  text-align: center;
}

.dash-body {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.dash-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.dash-kpi-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.dash-kpi-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.dash-kpi-delta {
  font-size: 0.775rem;
  margin-top: 0.4rem;
  font-weight: 500;
}
.delta-up   { color: var(--warn); }
.delta-down { color: var(--success); }
.delta-alert{ color: var(--danger); }

.dash-feature-table {
  grid-column: 1 / 3;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.dash-table-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.825rem;
}
.dash-row:last-child { border-bottom: none; }
.dash-row-name { font-weight: 500; color: var(--text); }
.dash-row-cost { color: var(--text-2); font-size: 0.775rem; }
.dash-row-margin {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}
.margin-pos { background: #ecfdf5; color: #047857; }
.margin-neg { background: #fef2f2; color: #b91c1c; }

.dash-tier-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.tier-row {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.tier-row:last-child { border-bottom: none; }
.tier-name { font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.tier-cost { color: var(--text-2); font-size: 0.75rem; }
.tier-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  margin-top: 0.3rem;
  display: inline-block;
}
.status-profit  { background: #ecfdf5; color: #047857; }
.status-neg     { background: #fef2f2; color: #b91c1c; }
.status-high    { background: #eff4ff; color: #1d4ed8; }

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  padding: 7rem 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.problem-intro {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
}
.problem-intro p + p { margin-top: 1rem; }

.problem-cards { display: flex; flex-direction: column; gap: 1rem; }

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.problem-card-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.problem-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }
.problem-card ul { margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.3rem; }
.problem-card ul li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 1rem;
  position: relative;
}
.problem-card ul li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Stats inline */
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pstat {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pstat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pstat-label { font-size: 0.8rem; color: var(--text-2); line-height: 1.45; }

/* ============================================
   SOLUTION / PILLARS
   ============================================ */
.solution {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solution-header {
  max-width: 680px;
  margin-bottom: 4rem;
}
.solution-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.pillar:hover::before { opacity: 1; }

.pillar-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.pillar-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.pillar p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; }

.pillar-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.pillar-tag-list span {
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 99px;
  border: 1px solid var(--accent-mid);
  font-weight: 500;
}

.pillar-feature-list { display: flex; flex-direction: column; gap: 0.4rem; }
.pillar-feature-list li {
  font-size: 0.825rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar-feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 7rem 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-mid) 0%, var(--accent-mid) 100%);
  background-size: 12px 1px;
  background-image: repeating-linear-gradient(90deg, var(--accent-mid) 0, var(--accent-mid) 6px, transparent 6px, transparent 12px);
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--accent-light);
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header p { color: var(--text-2); margin-top: 0.75rem; font-size: 1rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  position: relative;
}

.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.price-tier {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.price-dollar {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.price-period {
  font-size: 0.85rem;
  color: var(--text-3);
}

.price-spend {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.price-card .btn { width: 100%; justify-content: center; }

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  padding: 7rem 0;
  background: var(--white);
}

.roadmap-header { margin-bottom: 4rem; }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.roadmap-phase {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.roadmap-phase.current {
  background: var(--accent-light);
  border-color: var(--accent-mid);
}

.phase-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}
.phase-tag.now  { background: var(--accent); color: var(--white); }
.phase-tag.soon { background: var(--surface); color: var(--text-2); }
.phase-tag.future { background: var(--surface); color: var(--text-2); }

.roadmap-phase h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.roadmap-phase ul { display: flex; flex-direction: column; gap: 0.5rem; }
.roadmap-phase ul li {
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.roadmap-phase ul li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-header { margin-bottom: 4rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border: 2px solid var(--accent-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.team-title {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  font-weight: 400;
}
.team-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

.team-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.75rem;
}
.team-card ul li {
  font-size: 0.825rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.team-card ul li::before {
  content: '·';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 7rem 0;
  background: var(--white);
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-banner h2 em { font-style: italic; color: var(--accent); }
.cta-banner p { font-size: 1.05rem; color: var(--text-2); margin-bottom: 2.5rem; line-height: 1.7; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--accent); }

.footer-copy { font-size: 0.825rem; color: var(--text-3); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 62px 0 0 0;
  background: var(--white);
  z-index: 190;
  flex-direction: column;
  padding: 2rem;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-2);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: var(--surface); color: var(--text); }
.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .problem-stats { grid-template-columns: 1fr 1fr 1fr; }

  .pillars { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .steps::before { display: none; }

  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-feature-table { grid-column: 1; }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr; }

  nav { padding: 0; }
  .nav-inner { padding: 0 1.25rem; }

  .problem-stats { grid-template-columns: 1fr; }
}