:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1F3D;
  --amber: #E8A020;
  --amber-dim: #C98A10;
  --teal: #3A8FA0;
  --off-white: #F6F7FB;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E2E6F0;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  background: var(--navy);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,160,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  max-width: 100px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.phone-frame {
  width: 220px;
  background: #111;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 14px;
}
.screen-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.screen-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
}
.screen-lock-icon {
  width: 20px;
  height: 20px;
  background: rgba(232,160,32,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-status {
  text-align: center;
  margin-bottom: 14px;
}
.status-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--amber);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.status-zone {
  font-size: 0.6rem;
  color: var(--muted);
}
.screen-calls {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.call-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  background: var(--off-white);
  cursor: default;
}
.call-emergency {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.25);
}
.call-blocked {
  opacity: 0.45;
  background: #F0F0F0;
}
.call-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-911 {
  background: rgba(232,160,32,0.12);
}
.call-info {
  flex: 1;
}
.call-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text);
}
.blocked-text {
  color: var(--muted);
}
.call-status {
  font-size: 0.55rem;
  color: var(--muted);
}
.call-arrow {
  flex-shrink: 0;
}
.screen-geo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 8px;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.55rem;
  color: var(--teal);
  font-weight: 500;
}
.geo-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* SECTION LABELS */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

/* HOW IT WORKS */
.hiw {
  padding: 96px 0;
  background: #fff;
}
.hiw-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.hiw-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 500px;
}
.hiw-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 56px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { }
.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: rgba(27,42,74,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.hiw-footnote {
  margin-top: 40px;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* COMPLIANCE */
.compliance {
  padding: 96px 0;
  background: var(--off-white);
}
.compliance-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.compliance-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.2;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compliance-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.comp-flag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--navy);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-law {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.comp-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.compliance-note {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* NUMBERS */
.numbers {
  padding: 96px 0;
  background: var(--navy);
}
.numbers-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.num-block {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.num-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.num-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.numbers-cta {
  margin-top: 48px;
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.numbers-cta-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--amber);
  text-align: center;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: #fff;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}
.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.08em;
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: block;
}
.footer-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 180px; }
  .hero-headline { font-size: 1.8rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-label { max-width: 80px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .compliance-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
}