:root {
  --navy: #0D1F3C;
  --amber: #D4A853;
  --cream: #F5F0E8;
  --light: #FAFAF8;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E5E0D8;
  --card-bg: #FFFFFF;
  --radius: 4px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  background: var(--navy);
  padding: 20px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 96px 40px 80px;
}
.hero-content { max-width: 1100px; margin: 0 auto; }
.hero-label {
  display: inline-block;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 52px;
  font-weight: 300;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
}
.hero-stat {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 24px;
}
.hero-stat:first-child { border-left: none; padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* DEAL ALERT */
.deal-alert-section {
  background: var(--cream);
  padding: 64px 40px;
}
.deal-alert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
.live-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.deal-card {
  max-width: 600px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(13,31,60,0.08);
}
.deal-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.deal-property {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
}
.deal-tag {
  background: var(--navy);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.deal-address {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 400;
}
.deal-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 20px;
}
.deal-metric { display: flex; flex-direction: column; gap: 4px; }
.deal-metric-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); font-weight: 500; }
.deal-metric-value { font-size: 16px; font-weight: 600; color: var(--navy); font-family: var(--font-display); }
.deal-memo {
  background: #FAFAF8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 16px;
}
.deal-memo-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--amber); font-weight: 600; margin-bottom: 8px; }
.deal-memo-text { font-size: 13px; color: var(--text); line-height: 1.6; }
.deal-footer { display: flex; justify-content: space-between; align-items: center; }
.deal-score { font-size: 12px; font-weight: 600; color: var(--navy); }
.deal-time { font-size: 11px; color: var(--muted); }

/* FEATURES */
.features {
  background: var(--light);
  padding: 96px 40px;
}
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  max-width: 480px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--light);
  padding: 40px 36px;
}
.feature-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  background: var(--navy);
  padding: 80px 40px;
}
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 36px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 700px;
  font-style: normal;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 300;
}

/* CLOSING */
.closing {
  background: var(--cream);
  padding: 96px 40px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-weight: 300;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
  .hero-stat:first-child { border-top: none; padding-top: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .deal-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero, .features, .manifesto, .closing { padding-left: 24px; padding-right: 24px; }
  .deal-alert-section { padding: 48px 24px; }
  .deal-card { padding: 20px; }
}