/* ——— Base ——— */
:root {
  --bg: #111111;
  --bg-2: #191919;
  --bg-card: #202020;
  --fg: #F7F5F0;
  --fg-muted: #9E9B8E;
  --accent: #E8873A;
  --accent-dim: rgba(232, 135, 58, 0.12);
  --accent-border: rgba(232, 135, 58, 0.25);
  --radius: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--accent); }
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(232,135,58,0.07) 0%, transparent 65%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,135,58,0.06) 0%, transparent 70%);
  top: -100px;
  right: 10%;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,135,58,0.04) 0%, transparent 70%);
  bottom: 0;
  left: 20%;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.headline-accent {
  color: var(--accent);
  font-style: italic;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
}

/* AI Display */
.hero-visual {
  display: flex;
  justify-content: center;
}
.ai-display {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.display-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.call-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.call-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.call-incoming { border-left: 2px solid var(--accent); }
.call-qualified { border-left: 2px solid rgba(232,135,58,0.5); }
.call-booked { border-left: 2px solid #22c55e; }
.call-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,135,58,0.15);
  color: var(--accent);
  flex-shrink: 0;
}
.call-icon.qualified { background: rgba(232,135,58,0.08); color: rgba(232,135,58,0.7); }
.call-icon.booked { background: rgba(34,197,94,0.12); color: #22c55e; }
.call-info { flex: 1; min-width: 0; }
.call-label { font-size: 11px; font-weight: 600; color: var(--fg-muted); margin-bottom: 1px; }
.call-number { font-size: 13px; color: var(--fg); font-variant-numeric: tabular-nums; }
.call-detail { font-size: 11px; color: var(--fg-muted); }
.call-time { font-size: 11px; color: var(--fg-muted); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
  padding: 0 4px;
}
.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.4;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 100%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 80%; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 50%; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 70%; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 45%; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 60%; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 35%; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.display-footnote {
  text-align: center;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ——— Shared Section Styles ——— */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 60px;
}

/* ——— Who It's For ——— */
.whoforit {
  padding: 100px 40px;
  background: var(--bg);
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vertical-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.vertical-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.vertical-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.vertical-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.vertical-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.vertical-stat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  padding: 6px 10px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: inline-block;
}

/* ——— How It Works ——— */
.howitworks {
  padding: 100px 40px;
  background: var(--bg-2);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.step {
  flex: 1;
  padding-right: 24px;
}
.step-connector {
  padding-top: 16px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(232,135,58,0.2);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pricing-note {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
}
.pricing-badge {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.pound {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.price-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
}
.per-month {
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 2px;
}
.pricing-detail {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ——— Outcome ——— */
.outcome {
  padding: 100px 40px;
  background: var(--bg);
}
.outcome-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcome-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.outcome-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.outcome-item:nth-child(3n) { border-right: none; }
.outcome-item:nth-child(n+4) { border-bottom: none; }
.outcome-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}
.outcome-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.outcome-text strong {
  color: var(--fg);
  font-weight: 600;
}

/* ——— Manifesto ——— */
.manifesto {
  padding: 120px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  width: 1px;
  height: 48px;
  background: var(--accent);
  margin: 0 auto 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-footer-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
  letter-spacing: 0.05em;
}

/* ——— Footer ——— */
.footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-accent { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .vertical-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-item { border-right: none; }
  .outcome-item:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pricing-note { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-wrap: wrap; gap: 12px; }
  .footer-tagline { flex: unset; }
  .footer-note { width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 24px 60px; }
  .whoforit, .howitworks, .outcome, .manifesto { padding: 70px 24px; }
  .section-inner { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .footer { padding: 32px 24px; }
  .footer-note { display: none; }
  .outcome-item { padding: 16px; }
}