:root {
  --paper: #F4F0E6;
  --paper-2: #EBE5D4;
  --ink: #0E0F0C;
  --ink-soft: #3A3B34;
  --lime: #C6FF3D;
  --coral: #FF6B4A;
  --mist: #9AA39A;
  --plum: #3B1F2B;
  --line: rgba(14,15,12,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

/* Grainy texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.04 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.serif { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144; }
.mono  { font-family: 'DM Mono', monospace; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(244, 240, 230, 0.75);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

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

.badge {
  padding: 6px 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

/* ─── CONTAINER ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}

.hero h1 .highlight {
  background: var(--lime);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 48px;
}

.hero-lede {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: var(--paper-2);
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.stat-card .num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-card .lbl {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ─── TICKER ──────────────────────────────────────────── */
.ticker {
  margin-top: 100px;
  padding: 20px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 44px;
  letter-spacing: -0.02em;
}

.ticker-track span { margin: 0 40px; }
.ticker-track .dot { color: var(--lime); }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS ────────────────────────────────────────── */
section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 900px;
}

.section-title em { font-style: italic; color: var(--coral); }

.section-intro {
  max-width: 700px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 72px;
}

/* ─── LANDSCAPE GRID ──────────────────────────────────── */
.landscape {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.land-card {
  background: var(--paper-2);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.land-card:hover {
  transform: translateY(-4px);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.land-card.highlight {
  background: var(--ink);
  color: var(--paper);
}

.land-card.highlight .land-tag {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.land-card.highlight .land-sub { color: rgba(244, 240, 230, 0.7); }

.land-card.highlight:hover {
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
}

.land-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-bottom: 4px;
}

.land-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 20px 0 8px;
  letter-spacing: -0.02em;
}

.land-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ─── GTM PLAYBOOK ────────────────────────────────────── */
.playbook {
  background: var(--plum);
  color: var(--paper);
  margin: 80px -100vw;
  padding: 120px 100vw;
  position: relative;
  z-index: 2;
}

.playbook .section-label { color: rgba(244, 240, 230, 0.6); }
.playbook .section-label::before { background: rgba(244, 240, 230, 0.6); }
.playbook .section-title em { color: var(--lime); }
.playbook .section-intro { color: rgba(244, 240, 230, 0.7); }

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(244, 240, 230, 0.15);
  margin-top: 48px;
}

.phase {
  background: var(--plum);
  padding: 36px 28px;
  min-height: 320px;
  position: relative;
  transition: background 0.3s ease;
}

.phase:hover { background: #4d2a3a; }

.phase-num {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.03em;
}

.phase-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 240, 230, 0.5);
  margin: 16px 0 8px;
}

.phase-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.phase-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 240, 230, 0.85);
}

.phase-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(244, 240, 230, 0.12);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.phase-list li::before {
  content: "›";
  color: var(--lime);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── WEDGE / POSITIONING ─────────────────────────────── */
.wedge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wedge-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 1;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wedge-visual svg { width: 100%; height: 100%; }

.wedge-points > div {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.wedge-points > div:first-child { padding-top: 0; }

.wedge-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.wedge-h {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.wedge-p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── CHANNELS ────────────────────────────────────────── */
.channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}

.channel {
  background: var(--paper);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.channel:hover { background: var(--paper-2); }

.channel::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--coral);
  transition: height 0.4s ease;
}

.channel:hover::after { height: 100%; }

.channel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.channel-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.channel-cost {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 100px;
  font-weight: 500;
}

.channel-name {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.channel-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.channel-metric {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  margin-top: auto;
}

.channel-metric span { color: var(--coral); font-weight: 500; }

/* ─── INVESTOR NARRATIVE ──────────────────────────────── */
.investor {
  background: var(--paper-2);
  margin: 80px -100vw;
  padding: 120px 100vw;
  position: relative;
  z-index: 2;
}

.inv-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.inv-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.inv-quote .mark {
  color: var(--coral);
  font-size: 1.3em;
}

.inv-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inv-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.inv-row-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.inv-row-val {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.inv-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.pillar {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.pillar-mark {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--coral);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.pillar h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 16px 0 10px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.pillar p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── METRICS ─────────────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.metric {
  padding: 48px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}

.metric:hover { background: var(--paper-2); }
.metric:last-child { border-right: none; }

.metric-val {
  font-family: 'Fraunces', serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.metric-val em { font-style: italic; color: var(--coral); }

.metric-val .sm {
  font-size: 32px;
  vertical-align: top;
  margin-right: 2px;
  color: var(--ink-soft);
  font-weight: 300;
}

.metric-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.4;
}

/* ─── TIMELINE ────────────────────────────────────────── */
.timeline {
  margin-top: 48px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.t-item {
  position: relative;
  padding-top: 60px;
}

.t-dot {
  position: absolute;
  top: 24px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.t-item:hover .t-dot {
  transform: scale(1.4);
  background: var(--lime);
}

.t-item.active .t-dot { background: var(--coral); }

.t-month {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.t-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.t-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ─── CTA ─────────────────────────────────────────────── */
.cta-block {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 64px;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-h {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.cta-h em { font-style: italic; color: var(--lime); }

.cta-actions { display: flex; flex-direction: column; gap: 12px; }

.btn {
  padding: 18px 28px;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
  border: 2px solid var(--lime);
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
}

.btn:hover { background: transparent; color: var(--lime); }

.btn.ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fade 0.8s ease forwards;
}

.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.25s; }
.reveal-d3 { animation-delay: 0.4s; }

@keyframes fade {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .landscape { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid,
  .wedge-grid,
  .inv-hero,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  .landscape,
  .channels,
  .inv-pillars { grid-template-columns: 1fr; }

  .phases { grid-template-columns: 1fr 1fr; }

  .metrics { grid-template-columns: 1fr 1fr; }

  .metric {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .timeline::before { display: none; }

  .nav-links { display: none; }

  .cta-block { padding: 48px 28px; }

  .wedge-visual { position: static; }

  .hero h1 { font-size: clamp(44px, 12vw, 80px); }

  .playbook,
  .investor {
    margin: 40px -32px;
    padding: 80px 32px;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  nav { padding: 14px 20px; }

  .hero { padding: 120px 0 60px; }

  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .phases { grid-template-columns: 1fr; }

  .metrics { grid-template-columns: 1fr; }

  .timeline-grid { grid-template-columns: 1fr; }

  .ticker-track { font-size: 28px; }

  .playbook,
  .investor {
    margin: 40px -20px;
    padding: 60px 20px;
  }

  .cta-block { padding: 40px 20px; }

  .foot-grid { flex-direction: column; gap: 12px; text-align: center; }
}