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

:root {
  --navy: #1E293B;
  --teal: #14B8A6;
  --teal-dark: #0D9488;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
  --radius: 12px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
}

.section-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: var(--navy);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  color: #FFFFFF;
  margin-bottom: 24px;
  font-style: normal;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
}

/* Hero Card */
.hero-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.card-row:last-of-type { border-bottom: none; }

.card-icon { flex-shrink: 0; margin-top: 2px; }

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.card-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.card-stat {}

.card-stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.card-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero BG Art */
.hero-bg-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  background: var(--teal);
  bottom: -200px;
  right: -100px;
}

.bg-circle-2 {
  width: 400px;
  height: 400px;
  background: #0EA5E9;
  top: -100px;
  left: 10%;
}

.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  position: relative;
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-style: normal;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== VERIFICATION STANDARDS ===== */
.verification-standards {
  padding: 96px 0;
  background: var(--surface);
}

.vs-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.vs-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vs-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vs-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 10px;
}

.vs-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-style: normal;
}

.vs-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CSS Art - Document Stack */
.vs-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.doc-stack {
  position: relative;
  width: 240px;
  height: 300px;
}

.doc-card {
  position: absolute;
  width: 220px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.doc-card-back {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  border-color: var(--border);
  opacity: 0.5;
}

.doc-card-mid {
  top: 20px;
  left: 20px;
  transform: rotate(-3deg);
  border-color: var(--border);
  opacity: 0.7;
}

.doc-card-front {
  top: 40px;
  left: 40px;
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15);
}

.doc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 12px;
}

.doc-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}

.doc-line-short { width: 60%; }

.doc-seal {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ===== WHO IT'S FOR ===== */
.who-its-for {
  padding: 96px 0;
  background: var(--navy);
}

.who-its-for .section-eyebrow { color: var(--teal); }
.who-its-for .section-heading { color: #FFFFFF; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}

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

.audience-icon {
  margin-bottom: 24px;
}

.audience-title {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-style: normal;
}

.audience-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.audience-list li svg { flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing-model {
  padding: 96px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 800px;
}

.price-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.price-card-tenant {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.12);
}

.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.price-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.price-features li svg { flex-shrink: 0; }

.pricing-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 56px;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.closing-stat { text-align: center; }

.closing-stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.closing-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vs-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vs-art { display: none; }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .closing-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .closing-stat-value { font-size: 36px; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-number { font-size: 36px; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .closing-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing-stat-value { font-size: 48px; }
}