@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Impact'), local('Arial Narrow Bold');
}

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

:root {
  --ink: #0d0d0d;
  --paper: #f5f0e8;
  --gold: #c8a84b;
  --gold-light: #e8d08a;
  --red: #c0392b;
  --green: #1a6b3a;
  --mid: #5a5248;
  --border: rgba(13,13,13,0.12);
  --mono: 'DM Mono', 'Courier New', monospace;
  --display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  padding: 7rem 3rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  color: var(--ink);
}

h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 2.2rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--ink);
}

.btn-primary:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn-ghost {
  color: var(--ink);
  padding: 1rem 1.8rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: var(--ink); }

.hero-right {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.03) 39px,
    rgba(255,255,255,0.03) 40px
  );
}

.call-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 1.8rem 2rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s ease both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.call-time {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.call-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.call-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}

.call-info-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.call-info-sub {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.call-status {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.call-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.msg {
  display: flex;
  gap: 0.75rem;
  animation: fadeIn 0.4s ease both;
}

.msg:nth-child(2) { animation-delay: 0.3s; }
.msg:nth-child(3) { animation-delay: 0.6s; }
.msg:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.msg-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
  width: 46px;
}

.msg.caller .msg-label { color: rgba(255,255,255,0.3); }
.msg.agent .msg-label { color: var(--gold); }

.msg-bubble {
  font-size: 0.82rem;
  line-height: 1.55;
}

.msg.caller .msg-bubble { color: rgba(255,255,255,0.65); }
.msg.agent .msg-bubble { color: rgba(255,255,255,0.92); }

.call-footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-footer-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.intake-badge {
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: 380px;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s 0.3s ease both;
}

.hero-stat {
  background: rgba(0,0,0,0.3);
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

section { padding: 7rem 5rem; }

.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.problem {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.problem h2 { color: var(--paper); }
.problem .section-label { color: var(--gold); }

.problem-body {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

.problem-body strong { color: var(--paper); font-weight: 500; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

.stat-box {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.8rem;
}

.stat-num {
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.how { border-bottom: 1px solid var(--border); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.how-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.how-step:last-child { border-right: none; }
.how-step:hover { background: rgba(200,168,75,0.04); }

.step-num {
  font-family: var(--display);
  font-size: 4.5rem;
  color: rgba(13,13,13,0.06);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  letter-spacing: 0.02em;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--ink);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg { width: 18px; height: 18px; fill: var(--gold); }

.how-step h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.features {
  display: block;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.feature-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.feature-item {
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background 0.15s;
  cursor: default;
}

.feature-item:last-child { border-bottom: none; }
.feature-item:hover { background: rgba(200,168,75,0.05); }

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

.pricing {
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing h2 { margin-bottom: 0.75rem; }

.pricing-sub {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 4rem;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  position: relative;
}

.pricing-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.pricing-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.pricing-card:not(.featured) .pricing-tag {
  background: rgba(13,13,13,0.06);
  color: var(--mid);
}

.pricing-card.featured .pricing-tag {
  background: rgba(200,168,75,0.2);
  color: var(--gold-light);
}

.price {
  font-family: var(--display);
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}

.pricing-card:not(.featured) .price { color: var(--ink); }
.pricing-card.featured .price { color: var(--gold); }

.price-period {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.pricing-card.featured .price-period { color: rgba(245,240,232,0.45); }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.08); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  font-size: 0.875rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pricing-card:not(.featured) .pricing-features li { color: var(--mid); }
.pricing-card.featured .pricing-features li { color: rgba(245,240,232,0.7); }

.pricing-features li::before {
  content: '\2014';
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.75rem;
}

.pricing-cta {
  margin-top: 2rem;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.9rem;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.pricing-card:not(.featured) .pricing-cta {
  border: 2px solid var(--border);
  color: var(--ink);
}

.pricing-card:not(.featured) .pricing-cta:hover { border-color: var(--ink); }

.pricing-card.featured .pricing-cta {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}

.pricing-card.featured .pricing-cta:hover { background: var(--gold-light); }

.objections {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.objections h2 { color: var(--paper); }
.objections .section-label { color: var(--gold); }

.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.obj-item {
  background: rgba(255,255,255,0.02);
  padding: 2rem 1.8rem;
}

.obj-q {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.obj-q::before {
  content: 'Q';
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.obj-a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-left: 2rem;
}

.states-banner {
  background: var(--gold);
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.states-banner span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
}

.states-banner .divider { color: rgba(13,13,13,0.3); }

footer {
  background: var(--ink);
  color: rgba(245,240,232,0.4);
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-logo span { color: var(--gold); }

footer p { font-size: 0.8rem; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1.2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 6rem 2rem 3rem; }
  .hero-right { padding: 3rem 2rem; }
  section { padding: 4rem 2rem; }
  .problem { grid-template-columns: 1fr; gap: 3rem; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .features { grid-template-columns: 1fr; gap: 3rem; }
  .obj-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
