/* === DEALBRIDGE BRAND TOKENS === */
:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-alt: #222222;
  --fg: #F5F2ED;
  --fg-muted: #8A8580;
  --accent: #D4A847;
  --verified: #7A9E7E;
  --warn: #D4A847;
  --error: #C4533A;
  --border: #2E2E2E;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-alt); border-radius: 3px; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 32px 96px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212,168,71,0.3);
  padding: 5px 12px;
  border-radius: 100px;
}

/* === TRUST WIDGET === */
.trust-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.widget-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.widget-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--verified);
  display: flex;
  align-items: center;
  gap: 5px;
}
.widget-deal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--surface-alt);
  border-radius: 10px;
  margin-bottom: 24px;
}
.widget-deal-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.widget-deal-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.widget-deal-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--fg-muted);
}
.score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.score-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.score-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.score-bar-track {
  width: 100%;
  height: 6px;
  background: var(--surface-alt);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--verified) 100%);
  border-radius: 100px;
  transition: width 1s ease;
}
.score-range {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.signal {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: var(--surface-alt);
  border-radius: 7px;
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.signal-ok { color: var(--verified); }
.signal-warn { color: var(--warn); }
.widget-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  text-align: center;
}
.widget-footer-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

/* === PROOF STRIP === */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 32px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof-stat { flex: 1; }
.proof-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* === SECTION SHARED === */
.section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === FEATURES === */
.features {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(212,168,71,0.4); }
.feature-icon { margin-bottom: 24px; }
.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-tags span {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
}

/* === HOW === */
.how {
  padding: 96px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding-right: 24px;
}
.step-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  flex-shrink: 0;
}

/* === WHY === */
.why {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.quote-mark { margin-bottom: 24px; }
.quote-text {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 32px;
}
.quote-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}
.quote-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { display: none; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 20px 64px; }
  .features, .how, .why, .closing { padding: 64px 20px; }
  .proof { padding: 48px 20px; }
  .nav-inner { padding: 14px 20px; }
  .trust-widget { padding: 18px; }
}