
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanLight.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanLightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanRegular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanItalic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanSemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothicPaneuropeanBold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: block;
}

/* ── TOKENS ── */
:root {
  --bg:         #04080F;
  --bg2:        #080E1A;
  --surface:    #0D1525;
  --gold:       #3CB043;
  --gold-l:     #3CB043;
  --gold-d:     #2A7B2F;
  --gold-xd:    rgba(60,176,67,.08);
  --text:       #EEF0F4;
  --text2:      #8A95A3;
  --text3:      #4A5568;
  --border:     rgba(255,255,255,.06);
  --border2:    rgba(60,176,67,.18);
  --ease:       cubic-bezier(0.22,1,0.36,1);
  --ease-in:    cubic-bezier(0.4,0,1,1);
  --nav-h:      72px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip }
body {
  font-family: 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}
body.no-cursor { cursor: auto }
::selection { background: var(--gold); color: var(--bg) }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent }
img { display: block; max-width: 100%; height: auto }
button { cursor: none; font-family: inherit; border: none; background: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation }

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
  top: 0; left: 0;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(60,176,67,.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .5s var(--ease), height .5s var(--ease), opacity .3s;
  top: 0; left: 0;
}
body:hover #cursor { opacity: 1 }
.cursor-grow #cursor { width: 48px; height: 48px; background: rgba(60,176,67,.15) }
.cursor-grow #cursor-ring { width: 64px; height: 64px; border-color: rgba(60,176,67,.3) }

/* ── SKIP ── */
.skip { position:absolute;left:-100%;top:16px;background:var(--gold);color:var(--bg);font:600 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost';letter-spacing:.08em;text-transform:uppercase;padding:10px 20px;z-index:9999 }
.skip:focus { left:16px }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(4,8,15,.45);
  backdrop-filter: blur(16px);
  transition: background .5s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}
#nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}
#nav.scrolled { background: rgba(4,8,15,.96); backdrop-filter: blur(24px) }
#nav.scrolled::after { transform: scaleX(1) }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1360px; margin: 0 auto; padding: 0 48px; width: 100%;
}
.nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
  line-height: 1;
}
.nav-logo img {
  height: 28px; width: auto; display: block;
}
.nav-logo em { font-style: normal; color: var(--gold) }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none }
.nav-links a {
  font: 400 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text2); transition: color .25s;
  display: flex; align-items: center; gap: 8px;
  min-height: 44px; position: relative;
}
.nav-links a .n-num {
  font: 400 13px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--gold); letter-spacing: .06em;
}
.nav-links a:hover { color: var(--text) }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1) }
.nav-links a.active { color: var(--text) }
.nav-links a.active::after { transform: scaleX(1) }
.nav-cta {
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bg);
  background: var(--gold); border: none;
  padding: 11px 22px; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px) }
.ham { display: none; flex-direction: column; gap: 5px; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s var(--ease) }
.ham.open span:nth-child(1) { transform: translateY(6px) rotate(45deg) }
.ham.open span:nth-child(2) { opacity: 0 }
.ham.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg) }

/* mobile menu */
.mob { display: none; position: fixed; inset: 0; z-index: 899; background: var(--bg); transform: translateX(100%); transition: transform .5s var(--ease); padding: calc(var(--nav-h) + 40px) 40px 40px; flex-direction: column; gap: 2px }
.mob.open { transform: translateX(0) }
.mob a, .mob-btn { display: flex; align-items: center; padding: 18px 0; font: 400 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .08em; text-transform: uppercase; color: var(--text2); border-bottom: 1px solid var(--border); transition: color .2s; min-height: 56px; background: none; border-top: none; border-left: none; border-right: none; text-align: left; width: 100% }
.mob a:hover, .mob-btn:hover { color: var(--text) }
.mob-cta { margin-top: 32px; background: var(--gold); color: var(--bg); font: 600 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase; padding: 16px; text-align: center; border: none; width: 100%; transition: background .2s; display: block }

/* ── HERO ── */
#hero {
  min-height: 100vh; min-height: 100svh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
  filter: grayscale(30%) brightness(.9);
}
/* animated grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(60,176,67,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,176,67,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 80%);
}
/* gradient vignette */
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(60,176,67,.04) 0%, transparent 70%),
    linear-gradient(to right, var(--bg) 0%, transparent 50%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1360px; margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold) }
.hero-h1 {
  font-family: 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 40px;
  }
.hero-h1 .line {
  display: block; overflow: hidden;
  padding-bottom: 0.3em; margin-bottom: -0.3em;
}
.hero-h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: slideUp .9s var(--ease) forwards;
}
.hero-h1 .line:nth-child(1) { margin-bottom: 20px }
.hero-h1 .line:nth-child(1) span { animation-delay: .2s }
.hero-h1 .line:nth-child(2) span { animation-delay: .35s }
.hero-h1 .line:nth-child(3) span { animation-delay: .5s }
.hero-h1 em { font-style: italic; color: var(--gold-l) }
.hero-sub {
  font: 300 17px/1.8 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 52px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .9s var(--ease) .85s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; background: var(--gold); color: var(--bg);
  transition: background .2s, transform .2s, gap .2s;
  min-height: 48px;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); gap: 18px }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text2); border-bottom: 1px solid var(--text3);
  padding-bottom: 2px; transition: color .2s, border-color .2s, gap .2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text); gap: 16px }

/* ── SECTION SHARED ── */
.section-pad { padding: 120px 0 }
.section-pad-lg { padding: 160px 0 }
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px }

.tag {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.tag::before { content: ''; width: 24px; height: 1px; background: var(--gold) }


/* ── V-TAG ── */
.v-tag { font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-l) }

/* ── SECTION H2 (unified across all pages) ── */
.thesis-h2,
.verticals-h2,
.engine-h2,
.partners-h2,
.news-h2,
.s3-intro-h2,
.hub-text-h2,
.section-h2,
.page-cta-h2 {
  font: 300 clamp(2rem, 3.5vw, 3.25rem)/1.1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: 0;
  color: var(--text);
}
/* em/span inside section h2s inherit the weight, keep their colour */
.thesis-h2 em, .thesis-h2 span,
.verticals-h2 em, .verticals-h2 span,
.section-h2 em, .section-h2 span,
.page-cta-h2 em, .page-cta-h2 span,
.cta-h2 em, .cta-h2 span { font-weight: 300; font-style: normal }

/* ── CTA BAND ── */
#cta-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-inner {
  max-width: 1360px; margin: 0 auto; padding: 120px 48px;
  position: relative; z-index: 1;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.cta-h2 {
  font: 300 clamp(2.5rem,4.5vw,5rem)/1.0 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: -.03em; color: var(--text);
}
.cta-h2 em { font-style: italic; color: var(--gold-l) }
.cta-right { display: flex; flex-direction: column; gap: 32px }
.cta-right p { font: 300 16px/1.8 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2) }
.cta-note { font: 400 11px/1.5 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3) }
.cta-form { display: flex; align-items: stretch }
.cta-email {
  flex: 1; background: transparent;
  border: 1px solid var(--border); border-right: none;
  color: var(--text);
  font: 300 14px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  padding: 0 20px; outline: none; min-height: 52px;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.cta-email::placeholder { color: var(--text3) }
.cta-email:focus { border-color: var(--border2) }
.cta-send {
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: 0 28px; white-space: nowrap; min-height: 52px;
  border: 1px solid var(--gold);
  transition: background .2s; cursor: pointer;
}
.cta-send:hover { background: var(--gold-l) }
/* Background decoration */
#cta-band::before {
  content: '';
  position: absolute; right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(60,176,67,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PORTAL OVERLAY ── */
#portal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4,8,15,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: env(safe-area-inset-top, 20px) 20px env(safe-area-inset-bottom, 20px);
  backdrop-filter: blur(8px);
}
#portal.active { opacity: 1; pointer-events: all }
.portal-box {
  width: 100%; max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transform: translateY(24px) scale(.97);
  transition: transform .4s var(--ease);
}
#portal.active .portal-box { transform: none }
.pb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.pb-head-label {
  font: 500 9px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text3);
}
.pb-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--text3); border: 1px solid var(--border);
  transition: color .2s, border-color .2s; font-size: 16px;
}
.pb-close:hover { color: var(--text); border-color: var(--text3) }
.pb-body { padding: 48px 40px }
.pb-logo {
  font: 600 1.5rem/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  text-align: center; margin-bottom: 4px;
}
.pb-logo em { font-style: normal; color: var(--gold) }
.pb-sub {
  font: 400 9px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text3);
  text-align: center; margin-bottom: 40px;
}
.pb-rule { width: 32px; height: 1px; background: var(--gold-d); margin: 0 auto 40px }
.pb-h { font: 300 1.25rem/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif; margin-bottom: 6px }
.pb-p { font: 400 13px/1.6 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2); margin-bottom: 24px }
.pb-err {
  background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2);
  padding: 10px 14px; font: 400 12px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: #E07070;
  margin-bottom: 16px; display: none;
}
.pb-err.show { display: block }
.pb-label { font: 600 9px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; display: block }
.pb-input {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font: 400 14px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; padding: 13px 16px;
  margin-bottom: 12px; outline: none; transition: border-color .2s;
}
.pb-input:focus { border-color: var(--gold-d) }
.pb-submit {
  width: 100%; background: var(--gold); color: var(--bg);
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px; min-height: 48px; position: relative; overflow: hidden;
  transition: background .2s;
}
.pb-submit:hover:not(:disabled) { background: var(--gold-l) }
.pb-submit:disabled { opacity: .55 }
.pb-submit .sl { transition: opacity .15s }
.pb-submit .sp { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .15s }
.pb-submit .sp svg { animation: spin .8s linear infinite }
.pb-submit.loading .sl { opacity: 0 }
.pb-submit.loading .sp { opacity: 1 }
.pb-note { font: 400 11px/1.55 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3); margin-top: 12px; text-align: center }
/* dashboard */
.pb-dash { padding: 40px; display: none }
.pb-dash-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px }
.pb-dash-top h4 { font: 300 1.25rem/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif }
.pb-logout { font: 400 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .08em; text-transform: uppercase; color: var(--text3); transition: color .2s; min-height: 44px; display: flex; align-items: center }
.pb-logout:hover { color: var(--gold-l) }
.pb-dash-sub { font: 400 13px/1.6 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2); margin-bottom: 24px }
.pb-folders { display: flex; flex-direction: column; gap: 1px; background: var(--border) }
.pb-folder-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--surface); border: none;
  font: 500 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2); text-align: left;
  transition: background .2s, color .2s; min-height: 48px;
}
.pb-folder-btn:hover { background: rgba(60,176,67,.04); color: var(--text) }
.pb-folder.open .pb-folder-btn { color: var(--text); background: rgba(60,176,67,.04) }
.pf-name { flex: 1 }
.pf-count { font: 400 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3); margin: 0 12px }
.pf-chev { font-size: 10px; color: var(--text3); transition: transform .3s var(--ease) }
.pb-folder.open .pf-chev { transform: rotate(180deg) }
.pb-folder-files { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease) }
.pb-folder.open .pb-folder-files { max-height: 300px }
.pb-file {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 10px 28px; border-top: 1px solid var(--border);
  font: 400 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3);
}
.pb-file-tag { font: 400 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--gold-d) }
.pb-dash-note { margin-top: 20px; font: 400 11px/1.55 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3); text-align: center }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1360px; margin: 0 auto; padding: 72px 48px 48px;
  display: grid; grid-template-columns: 240px 1fr 1fr; gap: 64px;
}
.ft-logo { display: block; margin-bottom: 10px; }
.ft-logo img { height: 24px; width: auto; display: block; }
.ft-logo em { font-style: normal; color: var(--gold) }
.ft-tagline { font: 400 13px/1.4 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .03em; color: var(--text3); margin-bottom: 8px }
.ft-social { margin-top: 20px }
.ft-social a { display: inline-flex; align-items: center; gap: 8px; font: 400 13px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .06em; color: var(--text3); transition: color .2s }
.ft-social a:hover { color: var(--text) }
.ft-entity { font: 400 12px/1.4 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3) }
.ft-nav h4 { font: 600 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 20px }
.ft-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px }
.ft-nav a { font: 400 13px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3); transition: color .2s }
.ft-nav a:hover { color: var(--text) }
.footer-bottom {
  max-width: 1360px; margin: 0 auto;
  padding: 24px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font: 400 13px/1.7 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text3) }
.footer-bottom p+p { margin-top: 6px }

/* ── FADE ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease) }
.reveal.in { opacity: 1; transform: none }
.reveal.d1 { transition-delay: 0ms }
.reveal.d2 { transition-delay: 80ms }
.reveal.d3 { transition-delay: 160ms }
.reveal.d4 { transition-delay: 240ms }
.reveal.d5 { transition-delay: 320ms }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }
@keyframes slideUp { from { transform: translateY(110%) } to { transform: translateY(0) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top } 50% { opacity: 1; transform: scaleY(1) } }
@keyframes spin { to { transform: rotate(360deg) } }

/* ── ADVISORY CARD ── */
.advisory-card { display: flex; flex-direction: column }
.advisory-card p:not([style*="gold"]) { flex: 1 }

/* ── HERO DETAIL ── */
.hero-detail {
  font: 300 16px/1.85 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--text2); max-width: 640px; margin-bottom: 40px;
}

/* ── SECTION BODY PARAGRAPH ── */
.section-body p,
.thesis-body p,
.s3-intro p,
.hub-text p {
  font: 300 16px/1.85 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--text2); margin-bottom: 16px;
}
.section-body p:last-child,
.s3-intro p:last-child,
.hub-text p:last-child { margin-bottom: 0 }
/* thesis body has slightly more spacing */
.thesis-body p { margin-bottom: 20px }

/* ── THESIS LAYOUT ── */
.thesis-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.thesis-aside {
  padding-top: 72px;
  display: flex; flex-direction: column; gap: 1px;
}

/* ── STAT ROWS ── */
.stat-row {
  display: flex; align-items: baseline; gap: 20px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  transition: background .3s, border-color .3s;
}
.stat-row:last-child { border-bottom: 1px solid var(--border) }
.stat-row:hover { background: rgba(60,176,67,.04); border-color: var(--border2) }
.stat-val {
  font: 300 2.5rem/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--gold-l); flex-shrink: 0; letter-spacing: 0;
}
.stat-desc { font: 400 13px/1.6 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2) }

/* ── ENGINE / STEPS ── */
#engine { background: var(--bg); border-top: 1px solid var(--border) }
.engine-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 80px; align-items: start;
}
.engine-sticky { position: sticky; top: calc(var(--nav-h) + 40px); min-width: 0; overflow: hidden }
.engine-sub { font: 400 15px/1.8 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2) }
.engine-steps { display: flex; flex-direction: column }
.e-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 36px 0;
  border-bottom: 1px solid var(--border);
  cursor: default; transition: background .3s;
}
.e-step:first-child { border-top: 1px solid var(--border) }
.e-step:hover { background: rgba(255,255,255,.01) }
.e-n {
  font: 300 2.25rem/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--gold-d); letter-spacing: 0; padding-top: 4px; transition: color .3s;
}
.e-step:hover .e-n { color: var(--gold-l) }
.e-title {
  font: 600 11px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .10em;
  text-transform: uppercase; color: var(--text); margin-bottom: 12px;
}
.e-desc { font: 400 14px/1.75 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; color: var(--text2) }

/* ── NEWSROOM / INSIGHT CARDS ── */
.nr-header { padding: calc(var(--nav-h) + 80px) 48px 64px; max-width: 1360px; margin: 0 auto }
.nr-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.nr-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold) }
.nr-h2 {
  font: 300 clamp(2rem,4vw,3.75rem)/1.05 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: 0; color: var(--text);
}
.nr-grid {
  max-width: 1360px; margin: 0 auto; padding: 0 48px 120px;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2px;
}
.n-card {
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .3s var(--ease);
}
.n-card:hover { border-color: var(--border2) }
.n-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2) }
.n-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) brightness(.85); transition: transform .6s var(--ease), filter .4s;
}
.n-card:hover .n-card-img img { transform: scale(1.03); filter: grayscale(0%) brightness(.9) }
.n-card-body { padding: 40px; flex: 1; display: flex; flex-direction: column }
.n-card-label {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 9px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.n-card-label::before { content: ''; width: 20px; height: 1px; background: var(--gold) }
.n-card h3 {
  font: 300 1.625rem/1.1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  letter-spacing: 0; color: var(--text); margin-bottom: 16px; flex: 1;
}
.n-card-date {
  font: 400 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost';
  letter-spacing: .10em; color: var(--text3); margin-bottom: 28px;
}
.n-card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost'; letter-spacing: .10em;
  text-transform: uppercase; color: var(--gold-l); transition: gap .2s var(--ease), color .2s;
}
.n-card:hover .n-card-cta { gap: 16px; color: var(--text) }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .thesis-layout,.engine-layout,.cta-grid,.hub-layout { grid-template-columns: 1fr }
  .thesis-aside { padding-top: 0 }
  .engine-sticky { position: static }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px }
}

@media(max-width:1100px) {
  .nav-links { gap: 20px }
  .nav-inner { padding: 0 32px }
}
@media(max-width:768px) {
  .nav-links { display: none }
  .nav-cta { display: none }
  .ham { display: flex }
  .mob { display: flex }
  .wrap { padding: 0 24px }
  .nav-inner,.hero-inner { padding-left: 24px; padding-right: 24px }
  .v-scroll { padding: 0 24px 2px }
  .v-scroll-outer { margin: 0 }
  .hero-scroll { left: 24px }
  .news-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr; gap: 32px }
  .footer-top,.footer-bottom { padding-left: 24px; padding-right: 24px }
  .cta-form { flex-direction: column }
  .cta-inner { padding: 80px 24px }
  .cta-email { border-right: 1px solid var(--border); border-bottom: none }
  .cta-send { width: 100%; min-height: 52px }
  /* insights grid */
  .nr-grid { grid-template-columns: 1fr; padding: 0 24px 80px }
  .n-card-body { padding: 24px 20px 28px }
  .n-card h3 { font-size: 1.25rem }
  /* stat rows */
  .stat-row { padding: 20px 24px; gap: 16px }
  .stat-val { font-size: 1.875rem }
}
@media(max-width:600px) {
  .hero-h1 { font-size: clamp(2.2rem, 7vw, 2.8rem) }
  .section-pad { padding: 80px 0 }
  .footer-top { display: flex; flex-direction: column }
  #cursor, #cursor-ring { display: none }
  body { cursor: auto }
  button { cursor: pointer }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 48px env(safe-area-inset-bottom, 20px) 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(0.22,1,0.36,1);
}
#cookie-banner.visible { transform: translateY(0) }
.cb-text {
  font: 300 13px/1.7 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif;
  color: var(--text2);
  max-width: 680px;
}
.cb-text a { color: var(--gold-l); border-bottom: 1px solid rgba(212,169,74,.3); transition: border-color .2s }
.cb-text a:hover { border-color: var(--gold-l) }
.cb-actions { display: flex; gap: 12px; flex-shrink: 0 }
.cb-accept {
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: 11px 22px; border: none; transition: background .2s; white-space: nowrap;
}
.cb-accept:hover { background: var(--gold-l) }
.cb-reject {
  font: 600 10px/1 'Century Gothic', 'Gill Sans', 'Gill Sans MT', 'Jost', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  background: none; color: var(--text3); border: 1px solid var(--border);
  padding: 11px 22px; transition: color .2s, border-color .2s; white-space: nowrap;
}
.cb-reject:hover { color: var(--text); border-color: var(--text3) }
@media(max-width:768px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px }
  .cb-actions { width: 100% }
  .cb-accept, .cb-reject { flex: 1; text-align: center }
}

/* iOS zoom fix — inputs must be ≥16px to prevent auto-zoom on focus */
@media(max-width:768px) {
  input, textarea, select { font-size: 16px !important }
}

/* Disable custom cursor on touch devices */
@media (pointer: coarse) {
  body { cursor: auto !important }
  #cursor, #cursor-ring { display: none !important }
  button { cursor: pointer !important }
}

@media(max-width:768px) {
  .advisory-grid { grid-template-columns: 1fr !important }
}
