/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF8F5;
  --cream-alt: #F2EDE6;
  --charcoal: #111010;
  --charcoal-mid: #2D2A27;
  --orange: #E8633A;
  --orange-dark: #C94F29;
  --warm-gray: #6B6560;
  --warm-gray-light: #A8A29D;
  --border: rgba(17,16,16,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.nav-tagline {
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.01em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,99,58,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,99,58,0.12) 0%, transparent 70%);
  bottom: -50px; left: 20%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-agents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 100px;
  width: fit-content;
}

.agent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* ===== AGENT PANEL ===== */
.agent-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.agent-panel-header {
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.panel-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.panel-dots span:first-child { background: #FF5F57; }
.panel-dots span:nth-child(2) { background: #FFBD2E; }
.panel-dots span:last-child { background: #28C840; }

.panel-title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.panel-body { padding: 20px; }

.panel-section { margin-bottom: 20px; }
.panel-section:last-child { margin-bottom: 0; }

.panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 13px;
}

.panel-row-success { background: rgba(74,222,128,0.08); color: rgba(255,255,255,0.75); }
.panel-row-pending { background: rgba(232,99,58,0.1); color: rgba(255,255,255,0.75); }

.row-icon {
  font-size: 14px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.panel-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
}

.metric-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===== SECTIONS COMMON ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 56px;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 40px;
  background: var(--cream);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--cream-alt); }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--charcoal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--warm-gray);
}

/* ===== HOW ===== */
.how {
  padding: 120px 40px;
  background: var(--charcoal);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how .section-eyebrow { color: var(--orange); }
.how .section-heading { color: #FFFFFF; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(232,99,58,0.3);
  letter-spacing: -0.04em;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.how-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 48px;
}

.how-quote blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-style: normal;
}

.how-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

/* ===== CLOSER ===== */
.closer {
  padding: 140px 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.closer::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,99,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closer-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closer-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.closer-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 40px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 500px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 36px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .how { padding: 80px 24px; }
  .closer { padding: 80px 24px; }
  .how-quote { padding: 28px 28px; }
  .how-quote blockquote { font-size: 18px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .feature-card { padding: 28px 24px; }
}