/* =====================================================
   IMAGINE BETTER FUTURES — Main Stylesheet
   Design: IBF Brand System × Editorial × Behance inspo
   Fonts: Space Grotesk · Inter · Roboto Mono (all sans)
   ===================================================== */

:root {
  /* Core palette */
  --ink:        #0E0E12;
  --ink2:       #17171E;
  --paper:      #FAF6EE;
  --paper2:     #F1EAD8;
  --graphite:   #55565A;
  --graphite-l: #8A8A90;

  /* Possibility spectrum */
  --green:      #B4D335;
  --green-dk:   #5A7A0E;
  --teal:       #17C3A5;
  --cyan:       #12B5E5;
  --violet:     #7B5CE6;
  --magenta:    #ED2E8C;
  --coral:      #F53A3A;
  --orange:     #FB7A18;
  --gold:       #F5C518;

  --spectrum: linear-gradient(
    90deg,
    #17C3A5, #12B5E5, #7B5CE6,
    #ED2E8C, #F53A3A, #FB7A18, #F5C518
  );

  /* Typography */
  --display: 'Outfit', -apple-system, sans-serif;
  --body:    'DM Sans', -apple-system, sans-serif;
  --mono:    'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Layout */
  --mx: clamp(20px, 6vw, 110px);
  --section-pad: clamp(80px, 11vw, 160px);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
::selection { background: var(--green); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }


/* ─── Utilities ─── */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.spectrum-text {
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}


/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--mx);
  transition: background .3s, backdrop-filter .3s;
}

.nav.scrolled {
  background: rgba(14,14,18,.88);
  backdrop-filter: blur(12px);
}

.nav__brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  color: #fff;
  text-decoration: none;
}

.nav__brand span {
  color: var(--green);
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav__links a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
  border: 1px solid var(--green) !important;
  color: var(--green) !important;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background .2s, color .2s !important;
}

.nav__cta:hover {
  background: var(--green) !important;
  color: var(--ink) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}


/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px var(--mx) clamp(60px, 9vw, 120px);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__meta {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}

.hero__meta--tl { top: 90px; left: var(--mx); }
.hero__meta--tr { top: 90px; right: var(--mx); text-align: right; }

.hero__inner {
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 30px;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 8.5vw, 124px);
  line-height: .94;
  letter-spacing: -.025em;
  max-width: 14ch;
}

.hero__headline em {
  font-style: normal;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__body {
  margin-top: 36px;
  max-width: 44ch;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: var(--mx);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--green);
  animation: scrollline 2.4s ease-in-out infinite;
}

@keyframes scrollline {
  to { top: 48px; }
}


/* ─── Buttons ─── */
.btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: var(--ink);
}

.btn--primary:hover { background: #c5e448; }

.btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover { border-color: #fff; }

.btn--ghost-ink {
  border-color: rgba(14,14,18,.35);
  color: var(--ink);
  background: transparent;
}

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

.btn__arrow {
  display: inline-block;
  transition: transform .2s;
}

.btn:hover .btn__arrow { transform: translateX(4px); }


/* ─── Generic Section ─── */
.sec {
  padding: var(--section-pad) var(--mx);
  position: relative;
}

.sec--ink   { background: var(--ink); color: #fff; }
.sec--ink2  { background: var(--ink2); color: #fff; }
.sec--paper { background: var(--paper); }
.sec--warm  { background: var(--paper2); }

/* Section marker */
.sec__mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.sec__mark-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--green-dk);
  flex-none;
}

.sec--ink .sec__mark-num,
.sec--ink2 .sec__mark-num { color: var(--green); }

.sec__mark-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--graphite-l);
}

.sec--ink .sec__mark-label,
.sec--ink2 .sec__mark-label { color: rgba(255,255,255,.45); }

.sec__mark-rule {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
}

.sec--ink .sec__mark-rule,
.sec--ink2 .sec__mark-rule { background: rgba(255,255,255,.14); }

/* Display heading */
.sec__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.8vw, 66px);
  line-height: 1.02;
  letter-spacing: -.022em;
  max-width: 20ch;
}

.sec__heading--wide { max-width: none; }

/* Lede */
.sec__lede {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.68;
  color: var(--graphite);
  max-width: 54ch;
}

.sec--ink .sec__lede,
.sec--ink2 .sec__lede { color: rgba(255,255,255,.74); }

/* Two-col grid */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
}

.stack > * + * { margin-top: 22px; }


/* ─── THE MOMENT band ─── */
.moment { padding: var(--section-pad) var(--mx); background: var(--paper); }

.moment__oversize {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 10vw, 152px);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--ink);
  opacity: .07;
  position: absolute;
  top: 0; left: 0; right: 0;
  pointer-events: none;
  user-select: none;
  padding: 0 var(--mx);
}


/* ─── Reframe (spectrum banner) ─── */
.reframe {
  padding: clamp(90px, 13vw, 180px) var(--mx);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reframe__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.reframe__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 6.4vw, 92px);
  line-height: .97;
  letter-spacing: -.025em;
  max-width: 18ch;
}

.reframe__body {
  margin-top: 32px;
  max-width: 48ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.reframe__dots {
  display: flex;
  gap: 10px;
  margin-top: 56px;
}

.reframe__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.reframe__aside {
  position: absolute;
  right: var(--mx);
  bottom: clamp(40px, 6vw, 80px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.35);
  text-align: right;
  writing-mode: vertical-rl;
}


/* ─── THE WHAT — gap block ─── */
.gap-block {
  padding: var(--section-pad) var(--mx);
  background: var(--paper2);
  position: relative;
}

.gap-block__quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -.015em;
  max-width: 30ch;
}

.gap-block__rule {
  width: 2px;
  height: clamp(60px, 8vw, 100px);
  background: var(--green);
  margin: 36px 0;
}

.gap-block__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--graphite);
}


/* ─── Nervous System ─── */
.ns-card {
  border-top: 2px solid var(--green);
  padding-top: 24px;
}

.ns-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.ns-card__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ns-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}


/* ─── Three Moves ─── */
.move-item {
  display: grid;
  grid-template-columns: clamp(40px, 5vw, 72px) 1fr;
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 4vw, 50px) 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.move-item:first-child { padding-top: 0; }
.move-item:last-child { border-bottom: none; padding-bottom: 0; }

.move-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--graphite-l);
  padding-top: 6px;
}

.move-heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.move-body {
  font-size: 16px;
  line-height: 1.68;
  color: var(--graphite);
  max-width: 52ch;
}

.move-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--green);
  color: var(--green-dk);
  margin-top: 16px;
}


/* ─── Who I Work With ─── */
.audience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 48px;
}

.audience-card {
  background: var(--paper2);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 50px);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--spectrum);
}

.audience-card__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 16px;
}

.audience-card__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.012em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.audience-card__body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--graphite);
}


/* ─── Why Me ─── */
.why-me {
  padding: var(--section-pad) var(--mx);
  background: var(--ink);
  color: #fff;
}

.why-me__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.why-me__heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 72px);
  line-height: .97;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}

.why-me__body {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.68;
  color: rgba(255,255,255,.74);
  margin-bottom: 24px;
}

.why-me__sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.why-me__sig-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--green);
}

.why-me__sig-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}

/* Integration tags */
.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.itag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}

.itag--accent { border-color: var(--green); color: var(--green); }


/* ─── What becomes possible ─── */
.possible {
  padding: var(--section-pad) var(--mx);
  background: var(--paper);
  text-align: center;
  position: relative;
}

.possible__bg-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--paper2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.possible__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.possible__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.possible__body {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.68;
  color: var(--graphite);
  margin-bottom: 14px;
}

.possible__em {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  font-style: italic;
  color: var(--graphite);
}


/* ─── Invitation / CTA ─── */
.invitation {
  position: relative;
  padding: clamp(100px, 14vw, 200px) var(--mx);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

#invite-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.invitation__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.invitation__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.invitation__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 94px);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.invitation__body {
  font-size: clamp(16px, 1.55vw, 19px);
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  max-width: 44ch;
  margin: 0 auto 14px;
}

.invitation__sub {
  font-size: 15px;
  color: rgba(255,255,255,.48);
  margin-bottom: 44px;
}

.invitation__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.invitation__stay {
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
}

.invitation__stay a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
  text-underline-offset: 3px;
  transition: color .2s;
}

.invitation__stay a:hover { color: var(--green); }


/* ─── Footer ─── */
.footer {
  background: var(--ink2);
  color: rgba(255,255,255,.55);
  padding: clamp(48px, 7vw, 90px) var(--mx) clamp(30px, 4vw, 48px);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 36px;
}

.footer__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: -.015em;
  color: #fff;
  text-decoration: none;
}

.footer__brand em {
  font-style: normal;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__nav a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer__nav a:hover { color: var(--green); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__tagline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  color: rgba(255,255,255,.38);
  letter-spacing: -.01em;
}

.footer__legal {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
}

/* Spectrum bar at base of footer */
.footer__spectrum {
  height: 3px;
  background: var(--spectrum);
  margin-top: 36px;
}


/* ─── Scroll-reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal--delay-3 { transition-delay: .34s; }


/* ─── Responsive ─── */
@media (max-width: 860px) {
  .two-col, .why-me__grid, .audience-block {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 99;
  }

  .nav__links.open a {
    font-size: 14px;
    letter-spacing: .2em;
  }

  .hero__meta--tr { display: none; }

  .possible__bg-text { display: none; }

  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════
   IMAGE-DRIVEN LAYOUTS
═══════════════════════════════════════════════════ */

/* ── Hero: photo under type layer ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px var(--mx) clamp(60px,9vw,120px);
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,18,.15) 0%,
    rgba(14,14,18,.3) 40%,
    rgba(14,14,18,.82) 75%,
    rgba(14,14,18,.97) 100%
  );
}

/* Big word stamped behind/over — Haughty Avenue effect */
.hero__type-layer {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  padding: clamp(60px,8vw,100px) var(--mx) 0;
}

.hero__bg-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 260px);
  line-height: .88;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(180,211,53,.25);
  display: block;
}

.hero__meta {
  position: absolute;
  z-index: 3;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}

.hero__meta--tl { top: 86px; left: var(--mx); }
.hero__meta--tr { top: 86px; right: var(--mx); text-align: right; }

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px,7.5vw,108px);
  line-height: .95;
  letter-spacing: -.03em;
  max-width: 14ch;
}

.hero__headline em {
  font-style: normal;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__body {
  margin-top: 28px;
  max-width: 42ch;
  font-size: clamp(15px,1.45vw,18px);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--mx);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -48px; left: 0;
  width: 1px; height: 48px;
  background: var(--green);
  animation: scrollline 2.2s ease-in-out infinite;
}

@keyframes scrollline { to { top: 48px; } }


/* ── Photo + text split sections ── */
.photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--paper);
}

.photo-section--flip {
  background: var(--paper2);
}

.photo-section__img {
  position: relative;
  overflow: hidden;
}

.photo-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}

.photo-section:hover .photo-section__img img {
  transform: scale(1.02);
}

.photo-section__img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  bottom: auto;
  top: 20px;
  right: 16px;
  left: auto;
}

.photo-section__content {
  padding: clamp(48px,8vw,110px) clamp(32px,5vw,72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pull quote */
.pull-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 36px;
}

.pull-quote__rule {
  flex: none;
  width: 2px;
  height: 100%;
  min-height: 48px;
  background: var(--green);
  align-self: stretch;
}

.pull-quote p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px,1.8vw,22px);
  letter-spacing: -.012em;
  line-height: 1.25;
  color: var(--ink);
  font-style: italic;
}

/* Flatten flow */
.flatten-flow {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-radius: 12px;
  overflow: hidden;
  flex-wrap: wrap;
}

.flatten-flow__step {
  flex: 1;
  min-width: 120px;
  padding: 18px 20px;
}

.flatten-flow__step--a { background: var(--green); color: var(--ink); }
.flatten-flow__step--b { background: var(--teal); color: var(--ink); }
.flatten-flow__step--c { background: var(--graphite); color: #fff; }

.flatten-flow__label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 6px;
}

.flatten-flow__val {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(13px,1.4vw,17px);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.flatten-flow__arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  background: var(--paper2);
  color: var(--graphite);
  font-size: 18px;
  font-weight: 300;
}

/* ── Texture section (mind map bg) ── */
.texture-section {
  position: relative;
  overflow: hidden;
  background: var(--ink2);
}

.texture-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.texture-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .12;
  mix-blend-mode: luminosity;
}

.texture-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,18,.7) 0%, rgba(23,23,30,.6) 100%);
}

.texture-section__content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) var(--mx);
  color: #fff;
}

.ns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px,2.6vw,40px);
  margin-top: clamp(44px,6vw,80px);
}

.ns-card {
  border-top: 2px solid var(--green);
  padding-top: 24px;
}

.ns-card__label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.ns-card__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px,1.9vw,23px);
  letter-spacing: -.012em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.ns-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.66);
}


/* ── Portrait hero (Why Me) ── */
.portrait-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.portrait-hero__photo {
  position: relative;
  overflow: hidden;
}

.portrait-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,14,18,0) 50%,
    rgba(14,14,18,.9) 100%
  );
}

.portrait-hero__content {
  padding: clamp(60px,8vw,110px) clamp(36px,5vw,70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.portrait-hero__headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px,3.6vw,52px);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin-bottom: 24px;
}

.portrait-hero__headline em {
  font-style: normal;
  color: var(--green);
}

.portrait-hero__body {
  font-size: clamp(15px,1.45vw,17.5px);
  line-height: 1.68;
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}

.portrait-hero__sig {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.portrait-hero__sig-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--green);
}

.portrait-hero__sig-title {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* Audience cards overlaid at bottom */
.audience-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 3;
}

.audience-overlay .audience-card {
  background: rgba(14,14,18,.88);
  backdrop-filter: blur(10px);
  border-radius: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.08);
  padding: clamp(20px,3vw,36px);
}

.audience-overlay .audience-card::before {
  background: var(--spectrum);
}

.audience-overlay .audience-card__eyebrow { color: var(--green); }
.audience-overlay .audience-card__heading { color: #fff; font-size: clamp(14px,1.5vw,18px); }
.audience-overlay .audience-card__body { color: rgba(255,255,255,.6); font-size: 14px; }


/* ── Reframe (updated for no-canvas version) ── */
.reframe {
  padding: clamp(90px,13vw,180px) var(--mx);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reframe::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,211,53,.06) 0%, transparent 70%);
  pointer-events: none;
}

.reframe__kicker {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 26px;
}

.reframe__headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px,6.4vw,92px);
  line-height: .97;
  letter-spacing: -.03em;
  max-width: 18ch;
}

.reframe__body {
  margin-top: 28px;
  max-width: 50ch;
  font-size: clamp(16px,1.6vw,19px);
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.reframe__dots {
  display: flex;
  gap: 10px;
  margin-top: 52px;
}

.reframe__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

/* ── Responsive overrides ── */
@media (max-width: 900px) {
  .photo-section,
  .portrait-hero {
    grid-template-columns: 1fr;
  }

  .photo-section__img {
    height: 55vw;
    min-height: 260px;
    max-height: 420px;
  }

  .photo-section--flip .photo-section__img {
    order: -1;
  }

  .portrait-hero__photo {
    height: 70vw;
    min-height: 300px;
    max-height: 500px;
  }

  .portrait-hero__overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(14,14,18,.9) 100%);
  }

  .audience-overlay {
    position: static;
    right: auto;
    grid-template-columns: 1fr;
  }

  .ns-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__meta--tr,
  .hero__scroll { display: none; }

  .flatten-flow__arrow { display: none; }
  .flatten-flow { flex-direction: column; }
  .flatten-flow__step { min-width: 0; }
}


/* ═══════════════════════════════════════════════════
   THE QUESTION SECTION
═══════════════════════════════════════════════════ */

.question-section {
  padding: clamp(70px,9vw,145px) var(--mx);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

/* Subtle green glow top-right */
.question-section::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: 6vw;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,211,53,.2), rgba(180,211,53,0) 66%);
  pointer-events: none;
}

/* Eyebrow row */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(34px,4vw,52px);
  position: relative;
  z-index: 1;
}

.eyebrow__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--green-dk);
  flex: none;
}

.eyebrow__lab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--graphite);
  white-space: nowrap;
}

.eyebrow__rule {
  height: 1px;
  flex: 1;
  background: rgba(0,0,0,.14);
}

/* Two-col question grid */
.question-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px,5vw,76px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Giant headline */
.question {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .94;
  font-size: clamp(40px,7vw,98px);
  max-width: 13ch;
}

.question__line {
  display: block;
}

/* Definition column */
.question-def {
  max-width: 56ch;
  padding-top: .4vw;
}

.question-def__lead {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px,2vw,28px);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  color: var(--ink);
}

.question-def p {
  color: var(--graphite);
  font-size: clamp(15px,1.3vw,17.5px);
  line-height: 1.68;
  margin-bottom: 16px;
}

.question-def strong { color: var(--ink); font-weight: 600; }

/* Spectrum spark dots */
.spark-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

/* Quote panel */
.quote-panel {
  margin-top: clamp(54px,7vw,92px);
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(30px,5vw,58px);
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 70px rgba(14,14,18,.16);
}

.quote-panel__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 26px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: clamp(22px,3vw,38px);
}

.quote-spine {
  width: 4px;
  border-radius: 4px;
  background: var(--spectrum);
  align-self: stretch;
}

/* Quote text styles */
.q {
  font-family: var(--display);
  letter-spacing: -.022em;
  line-height: 1.15;
}

.q--small {
  font-weight: 600;
  font-size: clamp(20px,2.4vw,32px);
  color: rgba(255,255,255,.82);
}

.q--large {
  font-weight: 800;
  font-size: clamp(26px,4vw,54px);
  margin-top: 28px;
  color: #fff;
}

.q__occ {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  margin-top: 10px;
}

.q__divider {
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 28px 0 0;
}

.byline {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.byline__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.byline__name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}

.byline__note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

/* Responsive */
@media (max-width: 860px) {
  .question-grid {
    grid-template-columns: 1fr;
  }
  .question {
    max-width: 15ch;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-spine {
    width: 100%;
    height: 4px;
  }
  .eyebrow__lab {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════
   PRINT / PDF STYLES
   Target: Chrome File → Print → Save as PDF
═══════════════════════════════════════════════════ */

@media print {

  /* Force all content visible */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide non-content elements */
  .nav,
  .hero__scroll,
  canvas,
  .hero__type-layer {
    display: none !important;
  }

  /* Remove scroll/overflow clipping */
  body, html {
    overflow: visible !important;
    height: auto !important;
  }

  /* All sections full width, no overflow hidden */
  section, .photo-section, .portrait-hero,
  .texture-section, .reframe, .invitation,
  .question-section, .footer {
    overflow: visible !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Force reveal elements visible */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Photo sections: stack vertically in print */
  .photo-section,
  .portrait-hero {
    display: block !important;
  }

  .photo-section__img,
  .portrait-hero__photo {
    width: 100% !important;
    height: 340px !important;
    display: block !important;
  }

  .photo-section__img img,
  .portrait-hero__photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .photo-section__content,
  .portrait-hero__content {
    padding: 36px 48px !important;
  }

  /* Audience overlay — reflow into normal flow */
  .audience-overlay {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-top: 24px;
  }

  /* Three-col grids — keep or reduce */
  .ns-grid,
  .three-col {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Two-col grids */
  .two-col,
  .question-grid,
  .why-me__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Quote panel border-radius in print */
  .quote-panel {
    border-radius: 16px !important;
  }

  /* Invitation section — no canvas, just content */
  .invitation {
    background: var(--ink) !important;
    padding: 60px 48px !important;
  }

  /* Page breaks between major sections */
  .hero          { page-break-after: always; }
  .question-section { page-break-after: always; }
  .reframe       { page-break-after: always; }
  .texture-section { page-break-after: always; }
  .portrait-hero { page-break-after: always; }
  .invitation    { page-break-after: always; }

  /* Footer always on its own at end */
  .footer {
    page-break-before: always;
  }

  /* Flatten-flow stays horizontal */
  .flatten-flow {
    display: flex !important;
    flex-direction: row !important;
  }

  .flatten-flow__arrow {
    display: flex !important;
  }
}


/* ═══════════════════════════════════════════════════
   HERO SPLIT — Janine portrait version
═══════════════════════════════════════════════════ */

.hero--split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 100vh;
  padding: 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  align-items: stretch;
}

/* ── Left panel ── */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(90px,9vw,130px) clamp(40px,6vw,90px) clamp(50px,6vw,80px);
  position: relative;
  z-index: 2;
}

.hero__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(16px,1.6vw,22px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

.hero__sub-brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: clamp(24px,3.5vw,44px);
}

.hero__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.hero__headline--split {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px,3.8vw,58px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  max-width: 18ch;
}

.hero__headline--split em {
  font-style: normal;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub-head {
  display: block;
  font-size: clamp(16px,2vw,26px);
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  letter-spacing: -.02em;
  margin-top: 8px;
}

.hero__body {
  font-size: clamp(14px,1.2vw,16px);
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  max-width: 46ch;
  margin-top: 18px;
  margin-bottom: 30px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Right panel ── */
.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

/* Ghost IMAGINE word — very subtle, top area */
.hero__right-bg-word {
  position: absolute;
  top: 6%;
  left: -4%;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px,9vw,140px);
  letter-spacing: -.05em;
  color: rgba(255,255,255,.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Photo: contain so Janine isn't cropped */
.hero__right .hero__photo {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__right .hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}

/* Sidebar — bottom right corner, pill card */
.hero__sidebar {
  position: absolute;
  right: 16px;
  bottom: 24px;
  z-index: 3;
  text-align: right;
  background: rgba(14,14,18,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
}

.hero__sidebar-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 6px;
}

.hero__sidebar-list {
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .04em;
  line-height: 1.8;
  margin-bottom: 12px;
}

.hero__sidebar-rule {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 10px 0;
}

.hero__sidebar-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: #fff;
}

/* Scroll indicator */
.hero--split .hero__scroll {
  position: absolute;
  bottom: 24px;
  left: clamp(32px,5vw,80px);
  z-index: 4;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* Responsive */
@media (max-width: 860px) {
  .hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
  }
  .hero__left {
    padding-top: 90px;
  }
  .hero__right {
    min-height: 260px;
  }
  .hero__sidebar { display: none; }
  .hero__right-bg-word { font-size: 18vw; }
  .hero--split .hero__scroll { display: none; }
}

