/* =========================================
   ANSWERLY — Landing Page Stylesheet
   ========================================= */

:root {
  --bg-deep: #0f1419;
  --bg-card: #1a2332;
  --bg-surface: #212d3b;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --amber-glow: rgba(245, 166, 35, 0.06);
  --cream: #faf8f4;
  --cream-dim: rgba(250, 248, 244, 0.6);
  --cream-muted: rgba(250, 248, 244, 0.35);
  --border: rgba(250, 248, 244, 0.08);
  --border-amber: rgba(245, 166, 35, 0.25);
}

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

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 120px 80px 100px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, var(--amber-dim) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(30, 50, 80, 0.5) 0%, transparent 50%),
    var(--bg-deep);
}

/* Geometric accent shapes */
.hero-accent-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: 420px;
  height: 420px;
  border: 1px solid var(--border-amber);
  right: -100px;
  top: -80px;
  opacity: 0.5;
}
.hero-shape-2 {
  width: 280px;
  height: 280px;
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  right: 60px;
  top: 40px;
  opacity: 0.4;
}
.hero-shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(245, 166, 35, 0.08);
  right: 240px;
  top: 100px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}
.eyebrow-badge {
  display: inline-block;
  background: var(--amber-dim);
  border: 1px solid var(--border-amber);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-lede {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(12px);
  width: fit-content;
  overflow: hidden;
}
.stat {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  max-width: 130px;
}

/* ---- SECTION EYEBROW (shared) ---- */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* ---- MISSED CALLS ---- */
.missed-calls {
  padding: 120px 80px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.missed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.missed-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
  margin-bottom: 24px;
}
.missed-body {
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.missed-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-loop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.call-ring {
  width: 100px;
  height: 100px;
}
.loop-ring-1 svg {
  width: 100px;
  height: 100px;
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.call-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.call-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid;
}
.missed-label { border-color: rgba(239, 68, 68, 0.2); background: rgba(239, 68, 68, 0.06); color: var(--cream-muted); }
.missed-label-2 { border-color: rgba(239, 68, 68, 0.12); background: rgba(239, 68, 68, 0.03); color: var(--cream-muted); }
.won-label { border-color: rgba(34, 197, 94, 0.2); background: rgba(34, 197, 94, 0.06); color: rgba(34, 197, 94, 0.7); }
.missed-icon { color: rgba(239, 68, 68, 0.7); }
.won-icon { color: rgba(34, 197, 94, 0.7); }
.missed-amount {
  margin-left: auto;
  font-size: 12px;
  color: rgba(239, 68, 68, 0.6);
  font-weight: 500;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 120px 80px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.hiw-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.hiw-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
  margin-bottom: 16px;
}
.hiw-subhead {
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.7;
}
.hiw-steps {
  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: 56px;
}
.hiw-step {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.step-title {
  font-size: 20px;
  color: var(--cream);
  font-weight: 700;
}
.step-body {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.7;
}
.hiw-pricing-note {
  display: flex;
  justify-content: flex-start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pricing-from {
  font-size: 12px;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
}
.pricing-per {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream-muted);
}
.pricing-detail {
  font-size: 13px;
  color: var(--cream-muted);
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

/* ---- INDUSTRIES ---- */
.industries {
  padding: 120px 80px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.industries-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.industries-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.industry-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.industry-card:hover { background: rgba(33, 45, 59, 0.8); }
.industry-icon { margin-bottom: 4px; }
.industry-name {
  font-size: 18px;
  color: var(--cream);
  font-weight: 700;
}
.industry-desc {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.7;
  flex-grow: 1;
}
.industry-stat {
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 120px 80px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-eyebrow { margin-bottom: 32px; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
  border-left: 3px solid var(--amber);
  padding-left: 32px;
}
.manifesto-body {
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body-last { margin-bottom: 0; }

/* ---- FOOTER ---- */
.footer {
  padding: 48px 80px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--cream);
}
.footer-tagline {
  font-size: 13px;
  color: var(--cream-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--cream-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero, .missed-calls, .how-it-works, .industries, .manifesto, .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero-headline { font-size: 48px; }
  .missed-inner { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 100%; height: 1px; }
  .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .hero, .missed-calls, .how-it-works, .industries, .manifesto, .footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero { min-height: 70vh; padding-bottom: 72px; }
  .industry-grid { grid-template-columns: 1fr; }
  .pricing-card { flex-wrap: wrap; }
  .pricing-detail { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 12px; width: 100%; }
}