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

:root {
  --bg: #0F0F0F;
  --surface: #181818;
  --surface2: #222222;
  --fg: #F5F4F0;
  --fg-2: #A8A6A1;
  --fg-3: #6B6965;
  --accent: #D4A853;
  --accent-dim: #A8852F;
  --border: #2A2A2A;
  --green: #5BBF8A;
  --green-dim: #2A6647;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.15; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  font-weight: 300;
  max-width: 18em;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* ---- HERO ---- */
.hero {
  padding: 6rem 5% 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-3);
  max-width: 8em;
  line-height: 1.4;
}

/* ---- DASHBOARD CARD ---- */
.hero-visual { position: relative; }

.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,83,0.08);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.dash-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-2);
}

.dash-badge {
  font-size: 0.68rem;
  background: rgba(212,168,83,0.12);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(212,168,83,0.2);
}

.dash-rows { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.dash-row:hover { border-color: var(--border); }

.dash-row--hot {
  border-color: rgba(91,191,138,0.2);
  background: rgba(91,191,138,0.04);
}

.dash-row-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.deal-signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(91,191,138,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}

.deal-signal--med {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(212,168,83,0.5);
  animation: pulse-amber 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(91,191,138,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 12px rgba(91,191,138,0.9); }
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.deal-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-meta {
  font-size: 0.72rem;
  color: var(--fg-3);
  margin-top: 0.15rem;
}

.deal-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.score-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}

.score-label {
  font-size: 0.6rem;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
}

.ping-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--fg-3);
}

.ping-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-green 1.8s ease-in-out infinite;
}

/* ---- PROCESS ---- */
.process {
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  transition: border-color 0.25s;
}

.process-step:hover { border-color: rgba(212,168,83,0.3); }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(212,168,83,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.85rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ---- FEATURES ---- */
.features {
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface2); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.65rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.outcomes-header .section-headline { font-size: clamp(1.6rem, 3vw, 2.5rem); }

.outcomes-list { display: flex; flex-direction: column; gap: 0; }

.outcome-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.outcome-item:first-child { border-top: 1px solid var(--border); }

.outcome-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(212,168,83,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.1rem;
}

.outcome-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.outcome-item p {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 5%;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.footer {
  padding: 3.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-brand p {
  font-size: 0.8rem;
  color: var(--fg-3);
  line-height: 1.5;
}

.footer-links { display: flex; gap: 4rem; }

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-content { max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { flex-direction: column; gap: 2.5rem; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 5% 3rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}
