/* ─────────────────────────────────────────
   OUTPOST — Landing Page Theme
   Dark, warm-accent, Space Grotesk + DM Sans
   ───────────────────────────────────────── */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f18;
  --bg-card: #13131e;
  --bg-card-hover: #191928;
  --text-primary: #f0f0f5;
  --text-secondary: #9090a8;
  --text-muted: #5a5a72;
  --accent: #ff6b35;
  --accent-hover: #ff7a47;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --accent-subtle: rgba(255, 107, 53, 0.08);
  --accent-border: rgba(255, 107, 53, 0.2);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --max-width: 1080px;
  --section-pad: 96px 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* ─── Reusable ──────────────────────────── */

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.38);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ─── HERO ──────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 36px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(160deg, #ffffff 30%, #9090a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-proof-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.proof-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.proof-text strong { color: var(--text-primary); }

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hstat { display: flex; flex-direction: column; gap: 4px; }
.hstat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hstat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hstat-sep {
  width: 1px; height: 44px;
  background: var(--border);
}

/* Waitlist form — kept from existing */
.waitlist-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 20px;
}
.waitlist-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
}
.form-feedback { font-size: 0.88rem; margin-top: 4px; min-height: 20px; }
.form-error { color: #f87171; }
.form-success {
  color: #10b981;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
}
.hero-auth-link { font-size: 0.88rem; color: var(--text-muted); }
.hero-auth-link a { color: var(--accent); text-decoration: none; font-weight: 500; }
.hero-auth-link a:hover { text-decoration: underline; }

/* ─── LOGO BAR ──────────────────────────── */

.logobar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg-secondary);
}
.logobar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logobar-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.logobar-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.logo-name:hover { color: var(--text-secondary); }
.logo-sep { color: var(--text-muted); opacity: 0.3; font-size: 1.1rem; }

/* ─── PROBLEM ───────────────────────────── */

.problem {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}
.problem-inner { max-width: 920px; margin: 0 auto; }
.problem h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 48px;
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--bg-card-hover); }
.problem-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.problem-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.problem-punchline {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── HOW IT WORKS ──────────────────────── */

.how {
  padding: var(--section-pad);
  background: var(--bg-primary);
  position: relative;
}
.how-inner { max-width: var(--max-width); margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 72px; }
.how-header h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 16px; }
.how-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.how-steps-visual {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 48px;
}

.how-step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.how-step-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-step-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.how-step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.how-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 60px;
  flex-shrink: 0;
  gap: 4px;
}
.how-connector-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent-border) 100%);
}
.how-connector-arrow {
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-top: 4px;
}

.how-cta-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.how-note-icon { font-size: 1rem; }
.how-cta-note strong { color: var(--text-primary); }

/* ─── FEATURES ──────────────────────────── */

.features {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}
.features-inner { max-width: var(--max-width); margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.features-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
}

.feature-icon-badge {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── CASE STUDIES ──────────────────────── */

.casestudies {
  padding: var(--section-pad);
  background: var(--bg-primary);
}
.casestudies-inner { max-width: var(--max-width); margin: 0 auto; }
.casestudies-header { text-align: center; margin-bottom: 64px; }
.casestudies-header h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.casestudies-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.casestudies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.case-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
.case-card:hover::before { opacity: 1; }

.case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.case-client { display: flex; align-items: center; gap: 12px; }

.case-logo {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.case-info { display: flex; flex-direction: column; gap: 3px; }
.case-info strong { font-size: 0.95rem; font-family: var(--font-display); font-weight: 600; }
.case-industry {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.case-result-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.case-headline {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 24px;
  font-style: italic;
  opacity: 0.85;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.case-metric {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.case-metric.accent-metric {
  background: var(--accent-subtle);
  border-color: var(--accent-border);
}
.metric-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.accent-metric .metric-val { color: var(--accent); }
.metric-key {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.case-timeframe {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── PRICING ───────────────────────────── */

.pricing {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}
.pricing-inner { max-width: var(--max-width); margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 16px; }
.pricing-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9a6c);
}

.pricing-card-top { margin-bottom: 32px; }
.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  align-self: flex-end;
  padding-bottom: 10px;
}
.pricing-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.pf-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.pricing-compare {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.compare-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.compare-row:last-child { border-bottom: none; }
.compare-item { font-size: 0.9rem; color: var(--text-secondary); }
.compare-cost { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.compare-cost.bad { color: #f87171; }
.compare-cost.good { color: #10b981; font-size: 1.05rem; }
.compare-divider { height: 1px; background: var(--border); margin: 8px 0; }
.compare-total-row .compare-item,
.compare-total-row .compare-cost { font-size: 0.95rem; }
.compare-outpost-row { background: rgba(16, 185, 129, 0.04); border-radius: var(--radius-sm); padding: 10px 8px; }
.compare-outpost-row .compare-cost { font-size: 1.15rem; }

/* ─── TESTIMONIALS ──────────────────────── */

.testimonials {
  padding: var(--section-pad);
  background: var(--bg-primary);
}
.testimonials-inner { max-width: var(--max-width); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testi-card:hover { border-color: var(--border-strong); }

.testi-quote {
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  opacity: 0.9;
  flex: 1;
}
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-details { display: flex; flex-direction: column; gap: 2px; }
.testi-details strong { font-size: 0.95rem; font-family: var(--font-display); font-weight: 600; }
.testi-details span { font-size: 0.82rem; color: var(--text-muted); }

/* ─── CLOSING ───────────────────────────── */

.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--bg-secondary);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; }
.closing-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.closing-vision {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

/* ─── FOOTER ────────────────────────────── */

.footer {
  padding: 64px 24px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-left { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.footer-tagline { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--text-primary); }

/* ─── HERO PROOF / legacy ───────────────── */
.hero-proof { display: none; } /* replaced by hero-proof-line */

/* ─── MOBILE ────────────────────────────── */

@media (max-width: 900px) {
  .how-steps-visual { flex-direction: column; gap: 16px; }
  .how-connector { flex-direction: row; padding: 0; }
  .how-connector-line { width: 40px; height: 1px; }
  .how-connector-arrow { transform: rotate(90deg); margin-top: 0; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .casestudies-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card-wrap { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .hero { padding: 100px 20px 60px; }

  .hero-stat-bar { flex-direction: column; gap: 20px; padding: 20px 24px; }
  .hstat-sep { width: 40px; height: 1px; }

  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }

  .logobar-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .hero-cta-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .waitlist-form-wrapper { padding: 20px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .pricing-card { padding: 32px 24px; }
  .price-num { font-size: 3.5rem; }
}
