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

:root {
  --navy:   #0D1B2A;
  --navy-2: #152236;
  --amber:  #C9A84C;
  --amber-dim: rgba(201,168,76,0.12);
  --cream:  #F5F3EE;
  --cream-2: #EAE7DF;
  --text-1: #F5F3EE;
  --text-2: rgba(245,243,238,0.6);
  --text-3: rgba(245,243,238,0.35);
  --rule: rgba(201,168,76,0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1280px;
  --pad-x: clamp(24px, 5vw, 80px);
  --pad-y: clamp(64px, 10vh, 120px);
}

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

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

::selection { background: var(--amber); color: var(--navy); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Background geometric pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  pointer-events: none;
}

/* Subtle grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 0%, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

/* Left column */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-2);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--rule);
  margin: 0 32px;
}

/* Right column: deal flow viz */
.hero-right { }

.deal-flow-viz {
  background: rgba(21,34,54,0.8);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.viz-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.viz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

.viz-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.viz-list { display: flex; flex-direction: column; gap: 10px; }

.viz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}

.viz-row--hot { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.viz-row--warm { border-color: rgba(201,168,76,0.15); }

.viz-row-left { display: flex; flex-direction: column; gap: 3px; }
.viz-row-right { display: flex; align-items: center; gap: 10px; }

.viz-company {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
}

.viz-sector {
  font-size: 11px;
  color: var(--text-3);
}

.viz-score {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}
.viz-score--high { color: var(--amber); }
.viz-score--med  { color: rgba(245,243,238,0.6); }
.viz-score--low  { color: rgba(245,243,238,0.3); }

.viz-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--amber-dim);
  color: var(--amber);
}

.viz-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--text-3);
}

/* =====================
   MANIFESTO
   ===================== */
.manifesto {
  padding: 80px var(--pad-x);
  background: var(--navy-2);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.manifesto-rule {
  height: 1px;
  background: var(--rule);
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy);
}

.how-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 60px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.how-step { padding: 0 20px; }

.how-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.how-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.how-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
}

.how-body em { font-style: italic; color: var(--cream); }

.how-arrow {
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* =====================
   PILLARS
   ===================== */
.pillars {
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
}

.pillars-inner { max-width: var(--max-w); margin: 0 auto; }

.pillars .section-label { color: #9B7B2F; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.pillar-icon {
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-list li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--amber);
}

/* =====================
   SIGNALS
   ===================== */
.signals {
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy-2);
}

.signals-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.signals-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.signal-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

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

.signal-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 80px;
  flex-shrink: 0;
}

.signal-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Competitors box */
.competitors-box {
  background: var(--navy);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px;
}

.comp-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}

.comp-items { display: flex; flex-direction: column; gap: 16px; }

.comp-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comp-item:last-child { border-bottom: none; padding-bottom: 0; }

.comp-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.comp-issue {
  font-size: 13px;
  color: var(--text-3);
}

.comp-divider {
  height: 1px;
  background: var(--rule);
  margin: 20px 0;
}

.comp-vertix { }

.comp-vertix-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}

.comp-vertix-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 60px;
}

.closing-statement {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 15px;
  color: var(--text-3);
  font-style: italic;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px var(--pad-x);
  background: var(--navy-2);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  display: block;
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-3);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-arrow { display: none; }

  .pillar-grid { grid-template-columns: 1fr; }
  .signals-inner { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
  .hero-headline { font-size: 42px; }
  .pillar { padding: 28px; }
}
