/* ============================================================
   Hive — variant-2 "RISE TOGETHER"
   Bold poster/magazine challenger brand
   ============================================================ */

:root {
  --orange: #FF4A2E;
  --orange-deep: #D63A22;
  --tint: #FFEFEA;
  --tint-mid: #FFD4C8;
  --cream: #FFF7F0;
  --offwhite: #FDFBF8;
  --honey: #F0BD8B;
  --ink: #1A1714;
  --pine: #0E3330;
  --white: #FFFFFF;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  --maxw: 1280px;
  --gutter: 32px;

  --shadow-card: 0 12px 32px rgba(214,58,34,0.10);
  --radius-card: 16px;
  --radius-img: 12px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- A11Y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 8px 0; font-family: var(--sans); font-weight: 600;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn-on-orange:focus-visible, .btn-ghost-white:focus-visible,
.eyebrow-white ~ * a:focus-visible { outline-color: var(--white); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: 120px 0; position: relative; }
.section-slim { padding: 72px 0; position: relative; }
.section-altwhite { background: var(--offwhite); }
.problem, .howitworks, .sectors { background: var(--cream); }
.center { text-align: center; }

/* ---------- TYPE PRIMITIVES ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.eyebrow-orange { color: var(--orange); }
.eyebrow-pine { color: var(--pine); }
.eyebrow-white { color: var(--white); }

.h2-poster {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.h3-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
}
.body {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 56ch;
}
.center .body, .center.body { margin-left: auto; margin-right: auto; }

.hl-italic {
  font-style: italic;
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--honey);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.hero-title .hl-italic { color: var(--white); }
.problem .hl-italic, .h2-poster .hl-italic { color: var(--orange); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-deep); transform: scale(1.02); }

.btn-ghost-ink { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ghost-ink:hover { background: var(--ink); color: var(--white); transform: scale(1.02); }

.btn-ghost-white { border: 1.5px solid var(--white); color: var(--white); background: transparent; }
.btn-ghost-white:hover { background: var(--white); color: var(--orange); transform: scale(1.02); }

.btn-on-orange { background: var(--white); color: var(--orange); }
.btn-on-orange:hover { background: var(--cream); transform: scale(1.02); }

.text-link {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  color: var(--white);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color .18s ease;
}
.text-link:hover { border-color: var(--white); }

/* ---------- HEX DECORATION ---------- */
.hex {
  display: inline-block;
  width: 40px; height: 46px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-stroke { background: var(--honey); position: relative; }
.hex-stroke::after {
  content: ""; position: absolute; inset: 2px; background: inherit;
  clip-path: inherit;
}
/* hollow hex via border trick using svg-like layering */
.hex-stroke {
  background: transparent;
  border: 2px solid var(--honey);
  -webkit-mask: none;
}
.hex-fill-tint { background: var(--tint-mid); }
.hex-fill-honey { background: var(--honey); }
.hex-stroke-white { border: 2px solid rgba(255,255,255,0.55); background: transparent; }

/* CSS hexagon outlines are imperfect with clip-path+border; use box rotated approach */
.hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-stroke, .hex-stroke-white { border: none; }
.hex-stroke { background: var(--honey); }
.hex-stroke::before {
  content: ""; position: absolute; inset: 3px;
  background: var(--cream);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-stroke { position: relative; }
.hex-stroke-white { background: rgba(255,255,255,0.55); position: relative; }
.hex-stroke-white::before {
  content: ""; position: absolute; inset: 3px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-cluster { position: absolute; z-index: 3; }
.hero-hexes { top: 110px; right: 48px; display: flex; gap: 14px; }
.hero-hexes .hex { width: 54px; height: 60px; }
.hero-hexes .hex-stroke::before { background: transparent; }
.hero-hexes .hex { background: transparent; border: 2px solid rgba(240,189,139,0.85);
  clip-path: none; border-radius: 4px; }
.hero-hexes .hex { /* true hex via mask */
  border: none;
  background:
    linear-gradient(rgba(240,189,139,0.9),rgba(240,189,139,0.9)) padding-box;
}
/* Cleaner: redefine hero hex as mask-based ring */
.hero-hexes .hex {
  -webkit-mask:
    polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ---------- HONEYCOMB TEXTURE ---------- */
.honeycomb-texture, .honeycomb-texture-white {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23FF4A2E' stroke-width='2'%3E%3Cpolygon points='28,2 54,17 54,49 28,64 2,49 2,17'/%3E%3Cpolygon points='28,52 54,67 54,99 28,114 2,99 2,67'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.honeycomb-texture.corner-tr { left: auto; bottom: auto; width: 420px; height: 420px; right: 0; top: 0; }
.honeycomb-texture-white {
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='2'%3E%3Cpolygon points='28,2 54,17 54,49 28,64 2,49 2,17'/%3E%3Cpolygon points='28,52 54,67 54,99 28,114 2,99 2,67'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================================
   0. HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 76px;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 28px; width: auto; transition: filter .3s ease; }

.primary-nav { display: flex; gap: 32px; margin-left: 40px; }
.primary-nav a {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: auto; }
.header-cta .btn { padding: 11px 24px; }

/* Over-hero state: white logo + white nav */
.site-header[data-over-hero="true"] { background: transparent; }
.site-header[data-over-hero="true"] .brand-logo {
  filter: brightness(0) invert(1);
}
.site-header[data-over-hero="true"] .primary-nav a { color: var(--white); }
.site-header[data-over-hero="true"] .primary-nav a::after { background: var(--white); }
.site-header[data-over-hero="true"] .header-cta .btn-primary { background: var(--orange); color: var(--white); }

/* Solid state */
.site-header.solid {
  background: var(--cream);
  border-bottom-color: var(--tint-mid);
}
.site-header.solid .brand-logo { filter: none; }
.site-header.solid .primary-nav a { color: var(--ink); }
.site-header.solid .primary-nav a::after { background: var(--orange); }

/* Hamburger */
.hamburger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.site-header[data-over-hero="true"] .hamburger span { background: var(--white); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px;
  transform: translateY(-100%); transition: transform .35s ease;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-nav a { font-family: var(--serif); font-size: 36px; color: var(--ink); }
.mobile-cta { display: flex; flex-direction: column; gap: 16px; width: 280px; }
.mobile-cta .btn { width: 100%; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  height: max(100vh, 720px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transform-origin: center;
  transition: transform 1.2s ease-out;
}
.hero.in-view .hero-photo { transform: scale(1.0); }
.hero-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,23,20,0.78) 0%, rgba(26,23,20,0.45) 28%, rgba(26,23,20,0) 55%);
}
.hero-overlay {
  position: relative; z-index: 2;
  max-width: 1100px;
  padding: 0 var(--gutter) 120px;
  margin-left: max(0px, calc((100% - var(--maxw)) / 2));
  width: 100%;
}
.hero-title {
  font-family: var(--serif); font-weight: 400; color: var(--white);
  font-size: clamp(56px, 9.5vw, 120px);
  line-height: 0.95; letter-spacing: -1px;
  max-width: 14ch; margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--body); color: var(--white);
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5;
  max-width: 640px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,0.7); animation: bob 2.4s ease-in-out infinite; }
.scroll-cap { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: lowercase; color: rgba(255,255,255,0.85); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   2. MARQUEE
   ============================================================ */
.marquee-band {
  background: var(--orange);
  height: 84px; display: flex; align-items: center; overflow: hidden;
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--sans); font-weight: 800; color: var(--white);
  font-size: clamp(22px, 2.6vw, 28px); text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap; padding-right: 0;
}
.hexbullet { color: var(--honey); margin: 0 18px; font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   3. PROBLEM
   ============================================================ */
.problem-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.framed-photo {
  border-radius: var(--radius-img); overflow: hidden; position: relative;
}
.framed-photo img { width: 100%; height: 100%; object-fit: cover; }
.problem-media .framed-photo { aspect-ratio: 4/5; }
.hex-corner::before {
  content: ""; position: absolute; top: -18px; right: -18px; z-index: 2;
  width: 64px; height: 72px;
  background: var(--honey);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-mask:
    polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) exclude,
    radial-gradient(white 0 0);
}
.hex-corner::before {
  background: transparent;
  border: 2px solid var(--honey);
  -webkit-mask: none;
}
/* proper hollow honey hex outline */
.hex-corner::before {
  content:""; position:absolute; top:-20px; right:-20px; z-index:2;
  width:70px; height:78px; background: var(--honey); border: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-corner::after {
  content:""; position:absolute; top:-16px; right:-16px; z-index:3;
  width:62px; height:70px; background: var(--cream);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.section-altwhite .hex-corner::after { background: var(--offwhite); }

.pullquote {
  margin-top: 40px; padding: 28px 32px;
  border-left: 3px solid var(--orange);
  background: var(--tint);
  border-radius: 0 12px 12px 0;
}
.pullquote blockquote {
  font-family: var(--serif); font-style: italic; color: var(--orange);
  font-size: clamp(24px, 3vw, 30px); line-height: 1.15;
}
.pullquote figcaption {
  font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink);
  margin-top: 14px;
}

/* ============================================================
   4. COMPARISON
   ============================================================ */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 48px 0 32px;
}
.compare-card {
  border-radius: var(--radius-card); padding: 40px;
}
.compare-bonus { background: var(--offwhite); border: 1px solid var(--honey); color: var(--ink); }
.problem .compare-bonus, .comparison .compare-bonus { background: var(--cream); }
.compare-own { background: var(--orange); color: var(--white); }
.compare-label {
  font-family: var(--sans); font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 16px; margin-bottom: 24px;
}
.compare-label-muted { color: rgba(26,23,20,0.55); }
.compare-label-white { color: var(--white); }
.compare-list li {
  font-family: var(--body); font-size: 18px; line-height: 1.5;
  padding: 12px 0 12px 32px; position: relative;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.compare-own .compare-list li { border-bottom-color: rgba(255,255,255,0.18); }
.compare-list li:last-child { border-bottom: none; }
.compare-list-dash li::before {
  content: "—"; position: absolute; left: 0; color: rgba(26,23,20,0.4);
}
.compare-list-hex li::before {
  content: "\2B21"; position: absolute; left: 0; color: var(--honey); font-size: 14px; top: 14px;
}
.compare-footnote {
  font-family: var(--body); font-size: 14px; color: var(--ink);
  max-width: 760px; margin: 0 auto; line-height: 1.6;
}

/* ============================================================
   5. HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px; position: relative;
}
.step-line {
  position: absolute; top: 56px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(to right, var(--honey) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step-card {
  background: var(--offwhite); border: 1px solid var(--tint-mid);
  border-radius: var(--radius-card); padding: 40px 32px;
  position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.step-num {
  font-family: var(--serif); font-size: 88px; line-height: 0.9; color: var(--orange);
  display: block; margin-bottom: 8px;
}
.step-hex { width: 30px; height: 34px; margin-bottom: 16px; }
.step-card .h3-section { margin-bottom: 14px; }
.step-card .body { margin-bottom: 0; }

/* ============================================================
   6 & 13. ORANGE POSTER BLOCKS
   ============================================================ */
.stat-poster, .final-cta {
  background: var(--orange); color: var(--white);
  position: relative; overflow: hidden;
}
.stat-poster { padding: 120px 0; }
.final-cta { padding: 140px 0; }

.poster-hex { position: absolute; width: 90px; height: 100px; z-index: 0; }
.ph-tl { top: 36px; left: 48px; }
.ph-br { bottom: 36px; right: 48px; }

.stat-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0; position: relative; z-index: 1;
}
.stat-callout { text-align: center; padding: 0 24px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(88px, 12vw, 160px); line-height: 0.9;
  display: inline-block; position: relative; margin-bottom: 20px;
}
.stat-num::after {
  content: ""; display: block; height: 4px; width: 70%; margin: 8px auto 0;
  background: var(--honey);
}
.stat-label {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 16px; display: block; max-width: 18ch; margin: 0 auto;
}
.stat-rule { width: 1px; height: 160px; background: rgba(255,255,255,0.3); }

/* Final CTA */
.cta-title {
  font-family: var(--serif); font-weight: 400; color: var(--white);
  font-size: clamp(48px, 8vw, 96px); line-height: 1.0; letter-spacing: -1px;
  max-width: 16ch; margin: 0 auto 28px;
}
.cta-sub {
  font-family: var(--body); color: var(--white); font-size: 22px; line-height: 1.5;
  max-width: 620px; margin: 0 auto 36px;
}
.cta-actions {
  display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================================================
   7. INNOVATOR PROGRAM
   ============================================================ */
.program-grid { display: grid; grid-template-columns: 55% 45%; align-items: stretch; }
.program-text { padding: 120px max(48px, calc((100vw - var(--maxw))/2 + var(--gutter))); }
.program-media { position: relative; min-height: 520px; }
.program-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge {
  display: inline-block; background: var(--honey); color: var(--ink);
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 20px;
}
.inclusion-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
  margin: 8px 0 32px;
}
.inclusion-list li {
  font-family: var(--body); font-size: 16px; padding-left: 28px; position: relative;
}
.inclusion-list li::before {
  content: "\2B21"; position: absolute; left: 0; color: var(--orange); font-size: 13px;
}
.program-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.micro-line { font-family: var(--body); font-size: 14px; }
.micro-pine { color: var(--pine); font-weight: 500; }

/* ============================================================
   8. BY SECTOR
   ============================================================ */
.sector-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}
.sector-grid .sector-card:nth-child(4),
.sector-grid .sector-card:nth-child(5) { grid-column: span 1; }
.sector-card {
  background: var(--offwhite); border: 1px solid var(--tint-mid);
  border-radius: var(--radius-card); padding: 0 0 28px; overflow: hidden;
  position: relative; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); background: var(--tint); }
.sector-thumb { aspect-ratio: 16/10; overflow: hidden; }
.sector-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sector-card:hover .sector-thumb img { transform: scale(1.04); }
.sector-hex {
  width: 34px; height: 38px; margin: -28px 0 14px 28px; position: relative; z-index: 2;
  display: block; background: var(--honey);
  transition: background-color .25s ease;
}
.sector-hex::before { background: var(--offwhite); transition: background-color .25s ease; }
.sector-card:hover .sector-hex { background: var(--orange); }
.sector-card:hover .sector-hex::before { background: var(--tint); }
.sector-name {
  font-family: var(--sans); font-weight: 700; font-size: 22px; padding: 0 28px; margin-bottom: 6px;
}
.sector-desc { font-family: var(--body); font-size: 14px; color: rgba(26,23,20,0.7); padding: 0 28px; line-height: 1.5; }

.sector-strip {
  margin-top: 48px; padding: 28px 36px; border-radius: var(--radius-card);
  background: var(--cream); border-left: 4px solid var(--pine);
}
.sectors .sector-strip { background: var(--offwhite); }
.sector-strip p { font-family: var(--body); font-size: 18px; color: var(--ink); margin: 0; }
.sector-strip a { color: var(--pine); font-weight: 600; }
.sector-strip a:hover { color: var(--orange); }

/* ============================================================
   9. FOUNDER QUOTE
   ============================================================ */
.founder-quote {
  position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden;
}
.fq-media { position: absolute; inset: 0; z-index: 0; }
.fq-media img { width: 100%; height: 100%; object-fit: cover; }
.fq-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(14,51,48,0.82) 0%, rgba(14,51,48,0.5) 38%, rgba(14,51,48,0) 70%);
}
.fq-inner { position: relative; z-index: 2; }
.fq-quote {
  font-family: var(--serif); font-weight: 400; color: var(--white);
  font-size: clamp(34px, 5.6vw, 72px); line-height: 1.0; letter-spacing: -0.5px;
  max-width: 16ch; margin-bottom: 28px;
}
.fq-attr { font-family: var(--sans); font-weight: 600; color: var(--white); font-size: 16px; }
.fq-hex { position: absolute; top: -48px; left: var(--gutter); width: 48px; height: 54px; }

/* ============================================================
   10. TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.team-card { text-align: left; position: relative; }
.team-photo { aspect-ratio: 4/5; margin-bottom: 24px; }
.team-name { font-family: var(--serif); font-size: 30px; line-height: 1.05; margin-bottom: 4px; }
.team-role {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 13px; color: var(--orange); margin-bottom: 10px;
}
.team-note { font-family: var(--body); font-size: 14px; color: rgba(26,23,20,0.7); margin-bottom: 12px; }
.team-li { display: inline-flex; opacity: 0.7; transition: opacity .2s ease; }
.team-li:hover { opacity: 1; }
.team-tagline {
  font-family: var(--serif); font-size: 30px; text-align: center; color: var(--ink);
  margin-top: 64px;
}

/* ============================================================
   11. INVESTORS
   ============================================================ */
.investor-row {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-top: 32px;
}
.investor-item { display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.7; filter: grayscale(1); transition: opacity .25s ease, filter .25s ease; }
.investor-item:hover { opacity: 1; filter: grayscale(0); }
.investor-techstars img { height: 40px; width: auto; }
.investor-caption { font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--ink); }
.investor-text { font-family: var(--sans); font-weight: 700; font-size: 28px; color: var(--ink); letter-spacing: 0.5px; }
.investor-rule { width: 1px; height: 48px; background: var(--tint-mid); }

/* ============================================================
   12. FAQ
   ============================================================ */
.accordion { max-width: 860px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 18px; text-align: left;
  background: var(--tint); padding: 22px 28px;
  font-family: var(--sans); font-weight: 600; font-size: 18px; color: var(--ink);
}
.faq-hex { width: 22px; height: 25px; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-hex { transform: rotate(60deg); }
.faq-q-text { flex: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--tint); }
.faq-a-inner { padding: 0 28px 24px 68px; }
.faq-a-inner p { font-family: var(--body); font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer { background: var(--pine); color: var(--cream); padding: 80px 0 32px; position: relative; }
.footer-hex-edge {
  position: absolute; top: 0; left: 0; right: 0; height: 14px; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='14' viewBox='0 0 40 14'%3E%3Cpath d='M10 0L20 5.8V13M20 5.8L30 0M0 13L10 7.2' fill='none' stroke='%23F0BD8B' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 40px 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-tagline { font-family: var(--body); font-size: 14px; color: var(--cream); opacity: 0.85; margin-bottom: 20px; max-width: 22ch; }
.footer-social { display: flex; gap: 14px; }
.footer-social a img { filter: brightness(0) invert(1); opacity: 0.85; transition: opacity .2s ease; width: 22px; height: 22px; }
.footer-social a:hover img { opacity: 1; filter: brightness(0) saturate(100%) invert(36%) sepia(75%) saturate(3500%) hue-rotate(345deg) brightness(101%) contrast(101%); }
.footer-heading { font-family: var(--sans); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--honey); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-family: var(--body); font-size: 14px; color: var(--cream); opacity: 0.85; transition: color .2s ease, opacity .2s ease; }
.footer-col a:hover { color: var(--orange); opacity: 1; }
.footer-btn { margin-bottom: 20px; }
.footer-contact li { margin-bottom: 8px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(240,189,139,0.2);
  font-family: var(--body); font-size: 13px; color: rgba(255,247,240,0.7);
}
.footer-bottom a { color: rgba(255,247,240,0.7); }
.footer-bottom a:hover { color: var(--orange); }
.footer-dot { opacity: 0.4; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.visible { opacity: 1; transform: none; }

/* float animations */
.float-a { animation: float 9s ease-in-out infinite; }
.float-b { animation: float 11s ease-in-out infinite; }
.float-c { animation: float 13s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-text { padding: 96px var(--gutter); }
  .program-media { min-height: 360px; order: -1; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .section-slim { padding: 56px 0; }
  .stat-poster { padding: 72px 0; }
  .final-cta { padding: 96px 0; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-media { order: -1; max-width: 420px; }
  .compare-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .step-num { font-size: 72px; }

  .stat-row { grid-template-columns: 1fr; gap: 48px; }
  .stat-rule { display: none; }
  .stat-poster .container { padding: 0 var(--gutter); }

  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .inclusion-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* sectors horizontal scroll */
  .sector-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 18px; padding-bottom: 12px; -webkit-overflow-scrolling: touch;
  }
  .sector-card { flex: 0 0 78%; scroll-snap-align: start; }
  .cta-actions { flex-direction: column; }
  .hero-hexes { right: 20px; top: 96px; }
  .hero-hexes .hex { width: 40px; height: 46px; }
  .poster-hex { display: none; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-overlay { padding-bottom: 96px; }
  .program-actions, .hero-actions { flex-direction: column; align-items: stretch; }
  .program-actions .btn, .hero-actions .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-photo { transform: scale(1.0) !important; }
  .marquee-track { animation: none !important; }
}
