:root {
  --bg: #08091a;
  --surface: #0f1125;
  --surface2: #161832;
  --teal: #00e5a8;
  --teal-dim: rgba(0,229,168,0.12);
  --teal-glow: rgba(0,229,168,0.08);
  --text: #e8ecf4;
  --text-muted: #8892a4;
  --text-dim: #4a5266;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.teal { color: var(--teal); }

.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Section Base ── */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 64px;
  letter-spacing: -1px;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,168,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,168,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.proof-item {
  flex: 1;
  padding: 0 24px 0 0;
}

.proof-divider {
  width: 1px;
  background: var(--border);
  margin: 0 24px 0 0;
}

.proof-stat {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Agent Widget ── */
.hero-visual { position: relative; z-index: 1; }

.agent-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,168,0.08);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.widget-dots { display: flex; gap: 6px; }

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

.widget-label {
  flex: 1;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
}

.status-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.widget-body { padding: 20px; }

.conversation { display: flex; flex-direction: column; gap: 12px; }

.msg { display: flex; flex-direction: column; }

.caller-msg { align-items: flex-start; }
.agent-msg { align-items: flex-end; }

.msg-bubble {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  max-width: 90%;
}

.teal-bubble {
  background: var(--teal-dim);
  border-color: rgba(0,229,168,0.2);
  color: var(--text);
}

.agent-msg .msg-bubble {
  border-radius: 12px 12px 4px 12px;
}

.msg-time {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
  padding: 0 4px;
}

.agent-time { text-align: right; }

.widget-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.action-chip {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.action-chip.completed {
  background: var(--teal-dim);
  border-color: rgba(0,229,168,0.25);
  color: var(--teal);
}

.check-icon { margin-right: 3px; }

.widget-ticker {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(0,229,168,0.04);
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.ticker-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Problem ── */
.problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
}

.problem-icon {
  color: var(--teal);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.problem-stat {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.problem-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

.problem-callout {
  border-left: 3px solid var(--teal);
  padding-left: 24px;
}

.problem-callout p {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.callout-attr {
  font-style: normal;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Solutions ── */
.solutions { background: var(--surface); }

.solutions-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.solution-col { display: flex; flex-direction: column; gap: 24px; }

.solution-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}

.solution-card:hover {
  border-color: rgba(0,229,168,0.2);
}

.solution-card.large { padding: 40px; }

.solution-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.solution-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  margin-bottom: 24px;
}

.solution-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.solution-pricing {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.price-block {}

.price-amount {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.price-label {
  font-size: 12px;
  color: var(--text-dim);
}

.industries-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.industries-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.industry-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.ind-tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,168,0.15);
  color: var(--teal);
  font-weight: 500;
}

/* ── Results ── */
.results { background: var(--bg); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 64px;
}

.result-card {
  background: var(--surface);
  padding: 36px 28px;
}

.result-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.result-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.result-detail {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  background: var(--surface);
}

.timeline-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.timeline-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.timeline-phase {
  flex: 1;
  padding: 0 32px 0 0;
}

.timeline-arrow {
  font-size: 20px;
  color: var(--teal);
  display: flex;
  align-items: center;
  padding: 0 16px 0 0;
}

.phase-num {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}

.phase-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.phase-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--surface);
  text-align: center;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,168,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; padding: 0 48px; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-vision {
  display: inline-block;
  text-align: left;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  max-width: 560px;
}

.vision-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}

.closing-vision p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

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

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-meta { text-align: right; }

.footer-contact {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-note {
  font-size: 11px;
  color: var(--text-dim);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 72px; }
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .proof-divider { width: 100%; height: 1px; margin: 0; }
  .section-inner { padding: 64px 24px; }
  .section-headline { font-size: 28px; letter-spacing: -0.5px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .timeline-row { flex-direction: column; gap: 24px; }
  .timeline-arrow { display: none; }
  .closing { padding: 80px 0; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { text-align: center; }
}