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

:root {
  --bg: #050B14;
  --bg-2: #08101E;
  --bg-3: #0B1628;
  --fg: #E8E2F0;
  --fg-muted: rgba(232,226,240,0.55);
  --accent: #E8B84B;
  --accent-dim: rgba(232,184,75,0.15);
  --accent-glow: rgba(232,184,75,0.3);
  --border: rgba(232,226,240,0.08);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-weight: 400; line-height: 1.6; overflow-x: hidden; }

/* ===== NAV ===== */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px; position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,11,20,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 32px; height: 32px; background: var(--accent); color: var(--bg); font-family: var(--font-head); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.nav-name { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--fg); letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 120px 48px 80px; gap: 60px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,184,75,0.08) 0%, transparent 70%); top: -100px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(100,140,255,0.05) 0%, transparent 70%); bottom: -100px; right: -100px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,184,75,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,184,75,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--accent); }
.hero-headline { font-family: var(--font-head); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.1; color: var(--fg); margin-bottom: 24px; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 440px; line-height: 1.7; }

/* ===== SCORE CARD ===== */
.hero-score { position: relative; z-index: 1; }
.score-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; max-width: 460px; margin-left: auto;
  box-shadow: 0 0 60px rgba(232,184,75,0.06);
}
.score-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.score-number { font-family: var(--font-head); font-size: 72px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 28px; }
.score-dimensions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.dim-row { display: grid; grid-template-columns: 180px 1fr 50px; align-items: center; gap: 12px; }
.dim-name { font-size: 13px; color: var(--fg-muted); }
.dim-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dim-fill { height: 100%; width: var(--w); background: linear-gradient(90deg, var(--accent) 0%, rgba(232,184,75,0.5) 100%); border-radius: 2px; }
.dim-val { font-size: 13px; font-weight: 600; color: var(--accent); text-align: right; }
.score-meta { font-size: 13px; color: var(--fg-muted); padding-top: 16px; border-top: 1px solid var(--border); }
.score-meta .sep { margin: 0 8px; color: var(--border); }

/* ===== DEALMATCH SECTION ===== */
.dealmatch { padding: 120px 48px; background: var(--bg-2); }
.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-dim); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--fg); margin-bottom: 16px; line-height: 1.2; }
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }
.score-visual { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; max-width: 700px; margin: 0 auto; }
.radar-wrap { display: flex; align-items: center; justify-content: center; }
.radar-svg { width: 300px; height: 300px; }
.score-legend { padding-top: 20px; }
.legend-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 20px; }
.legend-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--fg-muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.threshold-note { max-width: 700px; margin: 48px auto 0; display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--accent-dim); border: 1px solid rgba(232,184,75,0.2); border-radius: 10px; }
.threshold-note p { font-size: 14px; color: var(--fg-muted); }
.threshold-note strong { color: var(--accent); font-weight: 600; }
.threshold-icon { flex-shrink: 0; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 120px 48px; background: var(--bg); }
.how-it-works .section-header { margin-bottom: 80px; }
.steps { display: flex; align-items: flex-start; gap: 0; max-width: 1100px; margin: 0 auto; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--accent); margin-bottom: 20px; }
.step-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.step h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.step-connector { width: 80px; flex-shrink: 0; padding-top: 40px; display: flex; align-items: center; justify-content: center; }
.step-connector::after { content: ''; display: block; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-dim), transparent); }

/* ===== AUDIENCES ===== */
.audiences { padding: 120px 48px; background: var(--bg-2); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.audience-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; position: relative; transition: border-color 0.3s, box-shadow 0.3s; }
.audience-card:hover { border-color: rgba(232,184,75,0.3); box-shadow: 0 0 40px rgba(232,184,75,0.05); }
.audience-card--featured { border-color: rgba(232,184,75,0.25); box-shadow: 0 0 60px rgba(232,184,75,0.04); }
.audience-badge-tag { position: absolute; top: -1px; right: 32px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 0 0 8px 8px; }
.audience-icon { margin-bottom: 24px; }
.audience-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.audience-card > p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 24px; }
.audience-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.audience-features li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.audience-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.audience-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-dim); padding: 6px 14px; border-radius: 100px; }

/* ===== PLATFORM ===== */
.platform { padding: 120px 48px; background: var(--bg); }
.pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto 48px; }
.pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.pillar-icon { width: 56px; height: 56px; border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--bg-3); }
.pillar h4 { font-size: 13px; font-weight: 500; color: var(--fg-muted); line-height: 1.4; }
.security-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: 0 auto 32px; }
.badge { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--fg-muted); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; text-transform: uppercase; }
.disclosure { font-size: 12px; color: rgba(232,226,240,0.3); max-width: 640px; margin: 0 auto; text-align: center; line-height: 1.7; }

/* ===== CLOSING ===== */
.closing { padding: 120px 48px; background: var(--bg); text-align: center; position: relative; overflow: hidden; }
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(232,184,75,0.06) 0%, transparent 70%); pointer-events: none; }
.closing h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 50px); font-weight: 800; color: var(--fg); margin: 20px 0 20px; line-height: 1.2; }
.closing-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 40px; }
.closing-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary { background: var(--accent); color: var(--bg); padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--fg); padding: 14px 32px; border-radius: 8px; border: 1px solid var(--border); font-weight: 500; font-size: 15px; text-decoration: none; transition: border-color 0.2s; }
.btn-secondary:hover { border-color: rgba(232,226,240,0.3); }
.closing-note { font-size: 13px; color: var(--fg-muted); }

/* ===== FOOTER ===== */
footer { padding: 48px; background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 28px; height: 28px; background: var(--accent); color: var(--bg); font-family: var(--font-head); font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; border-radius: 5px; }
.footer-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--fg-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom p { font-size: 13px; color: var(--fg-muted); margin-bottom: 6px; }
.footer-bottom a { color: var(--fg-muted); text-decoration: none; border-bottom: 1px solid rgba(232,226,240,0.1); }
.footer-bottom a:hover { color: var(--fg); }
.footer-legal { font-size: 12px; color: rgba(232,226,240,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-sub { max-width: 100%; }
  .score-card { max-width: 100%; margin: 0; }
  .score-visual { grid-template-columns: 1fr; }
  .radar-wrap { display: none; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .nav { padding: 16px 24px; }
  .dealmatch, .how-it-works, .audiences, .platform, .closing { padding: 80px 24px; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .dim-row { grid-template-columns: 1fr 40px; }
  .dim-name { font-size: 12px; }
}
