:root {
  --slate: #1c2b3a;
  --slate-mid: #2e4158;
  --slate-light: #3d5a7a;
  --amber: #e8a838;
  --amber-dim: #c48a20;
  --cream: #faf6f0;
  --cream-dark: #f0ebe0;
  --ink: #0f1a24;
  --muted: #8a9db5;
  --border: #d8cfc2;
  --white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--slate);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.15s;
}

.nav-link:hover {
  background: var(--cream);
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  line-height: 1.1;
  color: var(--slate);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-light);
  line-height: 1.65;
  max-width: 440px;
  font-weight: 300;
}

/* Shield visualization */
.shield-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.shield-outer {
  width: 220px;
  height: 260px;
  background: linear-gradient(145deg, var(--amber), var(--amber-dim));
  border-radius: 110px 110px 40px 40px / 130px 130px 40px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(232,168,56,0.25);
}
.shield-inner {
  width: 160px;
  height: 190px;
  background: var(--amber);
  border-radius: 80px 80px 28px 28px / 95px 95px 28px 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.core-line {
  height: 3px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}
.l1 { width: 40px; }
.l2 { width: 55px; }
.l3 { width: 30px; }

.orbit {
  border: 1px solid rgba(28,43,58,0.12);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.o1 { width: 300px; height: 300px; }
.o2 { width: 340px; height: 340px; border-color: rgba(232,168,56,0.15); }
.orbit-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 0 3px var(--amber);
}
.od1 {
  top: calc(50% - 150px);
  left: calc(50% + 120px);
}
.od2 {
  top: calc(50% + 100px);
  left: calc(50% - 155px);
  background: var(--slate);
  box-shadow: 0 0 0 3px var(--slate);
}
.od3 {
  top: calc(50% + 50px);
  left: calc(50% + 145px);
  width: 7px;
  height: 7px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--slate);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  margin: 0 40px;
}

/* ── PROBLEM ── */
.problem {
  padding: 80px 48px;
  background: var(--slate);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem .section-label {
  color: var(--amber);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 56px;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.07);
}
.problem-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1.5px solid #ff4d4d;
  color: #ff4d4d;
  font-size: 14px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  margin-bottom: 16px;
  font-weight: 700;
}
.problem-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.problem-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.problem-quote {
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}
.problem-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}
.problem-quote span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── AGENT ── */
.agent {
  padding: 96px 48px;
  background: var(--cream);
}
.agent-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.agent-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--slate);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.agent-body {
  font-size: 18px;
  color: var(--slate-light);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.agent-visual {
  display: flex;
  align-items: center;
  gap: 0;
}
.av-block {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.av-1 { border-radius: 8px 0 0 8px; }
.av-3 { border-radius: 0 8px 8px 0; }
.av-arrow {
  width: 48px;
  text-align: center;
  color: var(--amber);
  font-size: 24px;
  flex-shrink: 0;
}
.av-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.av-block p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

/* ── FEATURES ── */
.features {
  padding: 80px 48px;
  background: var(--white);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}
.feature {
  background: var(--cream);
  padding: 40px 36px;
  border: 1px solid var(--border);
}
.feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: rgba(28,43,58,0.1);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.feature h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 48px;
  background: var(--cream);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--slate);
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 4px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-by {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tb-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}
.tb-role {
  font-size: 12px;
  color: var(--muted);
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--slate);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  padding: 28px 48px;
  background: var(--ink);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--white);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .agent-visual { flex-direction: column; }
  .av-1 { border-radius: 8px 8px 0 0; }
  .av-3 { border-radius: 0 0 8px 8px; }
  .av-arrow { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero, .problem, .agent, .features, .testimonials, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}