/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy-950: #060f0d;
  --navy-900: #0a1a17;
  --navy-800: #0f2621;
  --navy-700: #14332c;
  --green-600: #2d5a45;
  --green-500: #3f7a5c;
  --gold-300: #ecd9a8;
  --gold-400: #e2c584;
  --gold-500: #d4af7a;
  --gold-600: #b8925a;
  --cream: #f6f2e8;
  --cream-dim: #d8d3c4;
  --ink: #1a1e1c;
  --warn: #c9564b;
  --good: #4a9d72;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold-500); color: var(--navy-950); }

/* subtle grain texture overlay for premium feel */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 9999; transition: width .08s linear;
}

/* ============ TYPOGRAPHY HELPERS ============ */
.section-label {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section-dark .section-label,
.section-download .section-label { color: var(--gold-400); }

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  max-width: 18ch;
}
.section-dark .section-title,
.section-download .section-title { color: var(--cream); }

.section-lede {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  max-width: 62ch;
  color: #4a4f4b;
  font-weight: 400;
}
.section-dark .section-lede,
.section-download .section-lede { color: var(--cream-dim); }
.section-lede em { color: var(--gold-600); font-style: normal; font-weight: 600; }
.section-dark .section-lede em { color: var(--gold-400); }

/* ============ LAYOUT ============ */
.section { position: relative; padding: 7.5rem 0; background: var(--cream); overflow: hidden; }
.section-dark { background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-950)); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* leaf decorations */
.leaf-decor { position: absolute; width: 420px; height: 420px; pointer-events: none; opacity: .12; z-index: 1; background: radial-gradient(circle, var(--green-500), transparent 70%); filter: blur(10px); }
.leaf-tl { top: -120px; left: -120px; }
.leaf-br { bottom: -140px; right: -140px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(212,175,122,.25);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(212,175,122,.4); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(246,242,232,.35);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: var(--gold-400); }
.btn-large { padding: 1.15rem 2.4rem; font-size: 1.02rem; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.3rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  padding: .85rem 0;
  background: rgba(10,26,23,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: .5rem; font-family: var(--serif); color: var(--cream); }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); font-weight: 800; font-size: .78rem; font-family: var(--sans);
}
.logo-word { font-size: 1.25rem; font-weight: 700; letter-spacing: .01em; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-size: .86rem; font-weight: 500; color: var(--cream-dim);
  transition: color .3s; position: relative; white-space: nowrap; flex-shrink: 0;
}
.main-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold-400); transition: width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover { color: var(--cream); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950) !important;
  padding: .6rem 1.2rem; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { transform: translateY(-1px); }
.main-nav a.active:not(.nav-cta) { color: var(--gold-400); }
.main-nav a.active:not(.nav-cta)::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); transition: transform .3s, opacity .3s; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy-950);
}
.hero-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; z-index: 0; overflow: hidden; }
.hero-img-wrap { position: absolute; inset: 0; overflow: hidden; will-change: transform; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%;
  background: var(--navy-950);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,15,13,1) 0%, rgba(6,15,13,.65) 40%, rgba(6,15,13,.12) 82%, rgba(6,15,13,.35) 100%),
    linear-gradient(0deg, rgba(6,15,13,.55), transparent 35%, transparent 75%, rgba(6,15,13,.4));
}
.hero-content { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 8rem 2rem 4rem; width: 100%; }
.hero-content .eyebrow, .hero-content .hero-title, .hero-content .hero-sub, .hero-content .hero-actions { max-width: 62%; }
.eyebrow {
  color: var(--gold-400); font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.6rem; transition-delay: .05s;
}
.hero-title {
  font-family: var(--serif); font-weight: 700; color: var(--cream);
  font-size: clamp(2.6rem, 6.6vw, 5.2rem); line-height: 1.05; margin-bottom: 1.8rem;
}
.title-line { display: block; }
.title-gold {
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 50%, var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub { color: var(--cream-dim); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 46ch; margin-bottom: 2.6rem; transition-delay: .1s; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; transition-delay: .15s; }

.scroll-cue {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(246,242,232,.45); border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 2px; background: var(--gold-400);
  margin: 7px auto 0; animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============ STATS (Problem section) ============ */
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin: 3rem 0 4rem; }
.stat-block {
  flex: 1; min-width: 180px;
  padding: 1.8rem 1.6rem; border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(246,242,232,.1);
}
.stat-block-warn { border-color: rgba(201,86,75,.35); background: linear-gradient(160deg, rgba(201,86,75,.14), rgba(201,86,75,.03)); }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: var(--gold-400); line-height: 1; }
.stat-block-warn .stat-num { color: #e2857a; }
.stat-label { display: block; margin-top: .6rem; color: var(--cream-dim); font-size: .92rem; }

/* leak diagram */
.leak-diagram {
  background: rgba(255,255,255,.03); border: 1px solid rgba(246,242,232,.09);
  border-radius: 20px; padding: 3rem 2rem; text-align: center;
}
.leak-top { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-bottom: 2.2rem; }
.leak-bill {
  font-family: var(--serif); font-weight: 700; font-size: 1.8rem; color: var(--gold-300);
  border: 2px solid var(--gold-500); border-radius: 10px; padding: .5rem 1.4rem;
}
.leak-arrow-down { width: 2px; height: 26px; background: linear-gradient(var(--gold-500), transparent); }
.leak-node { color: var(--cream); font-weight: 600; background: rgba(255,255,255,.06); padding: .7rem 1.4rem; border-radius: 10px; }
.leak-node .leak-node-sub { display: block; font-weight: 400; font-size: .82rem; color: var(--cream-dim); }
.leak-split { display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.leak-path { display: flex; flex-direction: column; align-items: center; }
.leak-line { width: 2px; height: 60px; background: rgba(246,242,232,.15); position: relative; overflow: hidden; }
.leak-line::after { content:''; position: absolute; inset: 0; background: var(--green-500); transform: scaleY(0); transform-origin: top; transition: transform 1.1s var(--ease); }
.leak-path-offshore .leak-line::after { background: var(--warn); }
.leak-line.line-drawn::after { transform: scaleY(1); }
.leak-result { display: flex; flex-direction: column; padding-top: .8rem; }
.leak-result strong { font-family: var(--serif); font-size: 2rem; color: var(--good); }
.leak-result-warn strong { color: #e2857a; }
.leak-result span { font-size: .82rem; color: var(--cream-dim); }
.leak-callout {
  font-family: var(--display); font-style: italic; font-size: 1.35rem; color: var(--gold-300);
  border-top: 1px solid rgba(246,242,232,.12); padding-top: 1.6rem; margin-top: .6rem;
}

/* ============ SHIFT / VISION SPLIT ============ */
.shift-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; margin: 3rem 0 2.5rem; }
.shift-card {
  padding: 2.4rem 2rem; border-radius: 20px; text-align: center;
  border: 1px solid rgba(0,0,0,.06);
}
.shift-today { background: linear-gradient(160deg, #eef3ee, #e4ebe4); }
.shift-vision { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--cream); }
.shift-kicker { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--gold-600); margin-bottom: 1rem; }
.shift-vision .shift-kicker { color: var(--gold-400); }
.shift-figure { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; margin-bottom: .2rem; }
.shift-figure-sm { font-size: 1.3rem; margin-top: 1.1rem; font-weight: 500; }
.shift-figure-sm .shift-sub-value { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--gold-600); }
.shift-vision .shift-figure-sm .shift-sub-value { color: var(--gold-400); }
.shift-card p { color: #5a6058; font-size: .95rem; }
.shift-vision p { color: var(--cream-dim); }
.shift-infinity svg { width: 90px; height: 46px; }
.shift-infinity path { fill: none; stroke: var(--gold-500); stroke-width: 3; }
.shift-quote { text-align: center; font-family: var(--display); font-style: italic; font-size: 1.4rem; color: #3a3f3b; max-width: 46ch; margin: 0 auto; }

/* ============ CARD SECTION ============ */
.card-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.card-visual { display: flex; justify-content: center; perspective: 1200px; }
.card-3d-wrap { width: 100%; max-width: 380px; }
.credit-card {
  position: relative; aspect-ratio: 1.586/1; border-radius: 20px; padding: 1.8rem;
  background: linear-gradient(135deg, #1b2b26, #0a1613 55%, #14211d);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
  transform-style: preserve-3d; transition: transform .15s ease-out;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(212,175,122,.25);
  overflow: hidden;
}
.credit-card-shine {
  position: absolute; inset: -50%; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: translateX(-30%); pointer-events: none;
}
.credit-card-leaf {
  position: absolute; right: -30px; top: -30px; width: 180px; height: 180px; opacity: .15;
  background: radial-gradient(circle, var(--green-500), transparent 70%);
}
.credit-card-top { display: flex; align-items: center; gap: 1rem; }
.credit-chip { width: 40px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); }
.credit-wave { color: var(--gold-400); font-size: 1.1rem; letter-spacing: -2px; opacity: .8; }
.credit-card-number { color: var(--cream-dim); letter-spacing: .12em; font-size: 1.05rem; font-family: var(--sans); }
.credit-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.credit-card-label { color: var(--cream-dim); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.credit-card-logo { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--gold-300); }

.card-callouts {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.callout-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(246,242,232,.09);
  border-radius: 14px; padding: 1.6rem; transition: transform .35s var(--ease), border-color .35s;
}
.callout-item:hover { transform: translateY(-4px); border-color: rgba(212,175,122,.4); }
.callout-item h3 { font-family: var(--serif); color: var(--gold-300); font-size: 1.05rem; margin-bottom: .6rem; }
.callout-item p { color: var(--cream-dim); font-size: .9rem; }
.callout-item strong { color: var(--cream); }

/* ============ FLOW DIAGRAM ============ */
.flow-diagram { display: flex; align-items: stretch; gap: .6rem; margin: 3rem 0; flex-wrap: wrap; }
.flow-step {
  flex: 1; min-width: 150px; background: #fff; border: 1px solid #e7e2d4; border-radius: 16px;
  padding: 1.5rem 1.2rem; text-align: center; box-shadow: 0 10px 30px -18px rgba(0,0,0,.25);
}
.flow-step-final { background: linear-gradient(160deg, var(--gold-300), var(--gold-500)); border-color: transparent; }
.flow-amount { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--navy-800); }
.flow-amount .flow-sub { display: block; font-family: var(--sans); font-weight: 500; font-size: .72rem; color: #8a8578; margin-top: .2rem; }
.flow-step-final .flow-amount { color: var(--navy-950); }
.flow-caption { font-size: .82rem; color: #6b6a5f; margin-top: .5rem; }
.flow-step-final .flow-caption { color: var(--navy-800); font-weight: 600; }
.flow-arrow { align-self: center; width: 28px; height: 2px; background: var(--gold-500); position: relative; flex-shrink: 0; }
.flow-arrow::after { content:''; position: absolute; right: -1px; top: -3px; border: 4px solid transparent; border-left-color: var(--gold-500); }

.compare-row { display: flex; align-items: center; gap: 1.6rem; margin: 3rem 0 2.2rem; flex-wrap: wrap; }
.compare-card { flex: 1; min-width: 220px; border-radius: 18px; padding: 2rem; text-align: center; }
.compare-bad { background: linear-gradient(160deg, #fbeeed, #f7e4e2); border: 1px solid #f0d3d0; }
.compare-good { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.compare-label { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #a9564a; margin-bottom: .6rem; }
.compare-good .compare-label { color: var(--gold-400); }
.compare-value { display: block; font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: #b6473a; }
.compare-good .compare-value { color: var(--gold-300); }
.compare-sub { display: block; font-size: .85rem; color: #8a6a66; margin-top: .4rem; }
.compare-good .compare-sub { color: var(--cream-dim); }
.compare-vs { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: #a8a394; }
.model-note { color: #5a5f5a; max-width: 62ch; }
.model-note strong { color: var(--gold-600); }

/* ============ SPONSOR GRID ============ */
.sponsor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.sponsor-card {
  background: rgba(255,255,255,.035); border: 1px solid rgba(246,242,232,.1); border-radius: 18px;
  padding: 2rem 1.6rem; transition: transform .4s var(--ease), background .4s;
}
.sponsor-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); }
.sponsor-icon { font-size: 2rem; margin-bottom: 1rem; }
.sponsor-card h3 { font-family: var(--serif); color: var(--cream); font-size: 1.15rem; margin-bottom: 1rem; }
.sponsor-give, .sponsor-get { font-size: .88rem; color: var(--cream-dim); margin-bottom: .5rem; }
.sponsor-give .tag, .sponsor-get .tag { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-500); font-weight: 700; margin-bottom: .15rem; }

/* ============ TIMELINE (3 Silos) ============ */
.timeline { position: relative; margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.timeline-line { position: absolute; top: 8px; left: calc(16.66% ); right: calc(16.66%); height: 2px; background: #e7e2d4; z-index: 0; }
.timeline-line-fill { height: 100%; width: 0%; background: var(--gold-500); transition: width 1.4s var(--ease); }
.timeline-line-fill.line-drawn { width: 100%; }
.timeline-item { position: relative; padding-top: 2.4rem; }
.timeline-dot {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: var(--cream);
  border: 3px solid var(--gold-500); z-index: 1;
}
.timeline-item:first-child .timeline-dot { left: 0; transform: none; }
.timeline-item:last-child .timeline-dot { left: auto; right: 0; }
.timeline-item:first-child { text-align: left; }
.timeline-item:nth-child(2) { text-align: center; }
.timeline-item:last-child { text-align: right; }
.timeline-tag { display: inline-block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--gold-600); background: #f3ead2; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem; }
.timeline-item h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: .6rem; }
.timeline-item h3 em { color: var(--gold-600); font-style: normal; font-weight: 400; font-size: .9em; }
.timeline-item p { color: #5a5f5a; font-size: .92rem; }

/* ============ PHOTO SECTIONS ============ */
.photo-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: center; }
.photo-grid-reverse { grid-template-columns: 1.15fr .85fr; }
.photo-grid-reverse .photo-copy { order: 1; }
.photo-grid-reverse .photo-stack { order: 2; }
.photo-stack { position: relative; }
.photo-main { border-radius: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-accent {
  position: absolute; width: 46%; bottom: -12%; left: -12%;
  border-radius: 14px; border: 5px solid var(--navy-950); box-shadow: 0 20px 40px -15px rgba(0,0,0,.6);
  aspect-ratio: 4/5; object-fit: cover;
}
.photo-stack-single .photo-main { aspect-ratio: 1/1; }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: .92rem; }
.compare-table th { text-align: left; padding: .8rem 1rem; font-family: var(--serif); color: var(--gold-300); border-bottom: 1px solid rgba(246,242,232,.2); }
.compare-table td { padding: .8rem 1rem; border-bottom: 1px solid rgba(246,242,232,.08); color: var(--cream-dim); }
.compare-table tr td:first-child { color: #9a9488; }
.compare-table tr td:last-child { color: var(--cream); }

.pillar-list { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.pillar { display: flex; gap: 1.2rem; align-items: flex-start; }
.pillar-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.pillar h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .3rem; }
.pillar p { color: #5a5f5a; font-size: .92rem; }
.pillar strong { color: var(--gold-600); }

/* ============ ENGINE / INFINITY ============ */
.engine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 3rem; }
.engine-loop { position: relative; display: flex; align-items: center; justify-content: center; }
.infinity-svg { width: 100%; max-width: 420px; }
.infinity-path-bg { fill: none; stroke: rgba(246,242,232,.1); stroke-width: 3; }
.infinity-path {
  fill: none; stroke: var(--gold-500); stroke-width: 3;
  stroke-dasharray: 700; stroke-dashoffset: 700;
  transition: stroke-dashoffset 2.4s var(--ease);
}
.infinity-path.line-drawn { stroke-dashoffset: 0; }
.engine-result { position: absolute; text-align: center; }
.engine-result strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--gold-300); }
.engine-result span { font-size: .78rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .06em; }
.engine-roles { display: flex; flex-direction: column; gap: 1.6rem; }
.engine-role { border-left: 2px solid var(--gold-500); padding-left: 1.4rem; }
.engine-role h3 { font-family: var(--serif); color: var(--cream); font-size: 1.1rem; margin-bottom: .3rem; }
.engine-role p { color: var(--cream-dim); font-size: .92rem; }
.engine-role strong { color: var(--gold-300); }

/* ============ GLOBAL VISION MAP ============ */
.globe-map { position: relative; margin: 3rem 0; background: linear-gradient(160deg, #0d211d, #14332c); border-radius: 20px; padding: 2rem; aspect-ratio: 800/340; max-width: 800px; }
.route-svg { width: 100%; height: 100%; }
.route-path { fill: none; stroke: var(--gold-500); stroke-width: 2; stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 2.2s var(--ease); }
.route-path.line-drawn { stroke-dashoffset: 0; }
.route-dot { fill: var(--gold-400); }
.route-label { position: absolute; transform: translate(-50%, -50%); color: var(--cream-dim); font-size: .82rem; font-weight: 600; white-space: nowrap; }
.route-label-main { color: var(--gold-300); font-family: var(--serif); font-size: 1rem; }

.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.5rem; }
.phase-card { background: #fff; border: 1px solid #e7e2d4; border-radius: 16px; padding: 1.8rem; box-shadow: 0 14px 34px -22px rgba(0,0,0,.25); }
.phase-tag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold-600); margin-bottom: .8rem; }
.phase-card h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: .5rem; }
.phase-card p { color: #5a5f5a; font-size: .9rem; }

/* ============ PARTNERS ============ */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.partner-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(246,242,232,.1); border-radius: 20px; padding: 2.4rem 2rem;
  text-align: center; transition: transform .4s var(--ease), border-color .4s;
}
.partner-card:hover { transform: translateY(-6px); border-color: var(--gold-500); }
.partner-icon { font-size: 2.4rem; margin-bottom: 1.2rem; }
.partner-card h3 { font-family: var(--serif); color: var(--cream); font-size: 1.2rem; margin-bottom: .8rem; }
.partner-card p { color: var(--cream-dim); font-size: .92rem; }

/* ============ DOWNLOAD ============ */
.section-download {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  text-align: center; padding: 8rem 0;
}
.download-inner { display: flex; flex-direction: column; align-items: center; }
.download-inner .section-title { max-width: 20ch; }
.download-inner .section-lede { margin-bottom: 2.4rem; }
.download-meta { margin-top: 1.4rem; color: var(--cream-dim); font-size: .88rem; font-style: italic; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-950); padding: 4rem 0 1.6rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem;
  border-bottom: 1px solid rgba(246,242,232,.08);
}
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; align-content: flex-start; }
.footer-brand .logo-word { color: var(--cream); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.footer-brand p { width: 100%; color: var(--cream-dim); font-size: .85rem; margin-top: .4rem; }
.footer-contact p, .footer-links a { color: var(--cream-dim); font-size: .9rem; margin-bottom: .6rem; display: block; }
.footer-contact a:hover, .footer-links a:hover { color: var(--gold-400); }
.footer-links { display: flex; flex-direction: column; }
.footer-fine { text-align: center; color: #5c6560; font-size: .78rem; margin-top: 1.6rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .card-section-inner, .engine-grid, .photo-grid, .photo-grid-reverse { grid-template-columns: 1fr; }
  .photo-grid-reverse .photo-copy, .photo-grid-reverse .photo-stack { order: initial; }
  .photo-stack { margin-bottom: 2rem; }
  .card-callouts { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid, .phase-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 2.6rem; }
  .timeline-line { display: none; }
  .timeline-item, .timeline-item:first-child, .timeline-item:nth-child(2), .timeline-item:last-child { text-align: left; }
  .timeline-item .timeline-dot, .timeline-item:first-child .timeline-dot, .timeline-item:last-child .timeline-dot { left: 0; transform: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: 78vw; max-width: 320px;
    background: var(--navy-950); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 2rem; transform: translateX(100%); transition: transform .4s var(--ease); z-index: 999; }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-infinity { transform: rotate(90deg); margin: .5rem auto; }
  .card-callouts { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .compare-row { flex-direction: column; }
  .section { padding: 5rem 0; }
  .hero-content { padding-top: 7rem; }
  .hero-bg { width: 100%; opacity: .35; }
  .hero-scrim { background: linear-gradient(180deg, rgba(6,15,13,.75), rgba(6,15,13,.96) 60%, var(--navy-950)); }
  .hero-content .eyebrow, .hero-content .hero-title, .hero-content .hero-sub, .hero-content .hero-actions { max-width: 100%; }
}
