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

/* ── DESIGN TOKENS — Nightfall Brand Guide ── */
:root {
  --bg:         #ffffff;
  --ink:        #16181C;
  --panel:      #F4F3F1;
  --panel2:     #EAEAE8;
  --mut:        #767676;
  --faint:      #8A8A86;
  --line:       #E6E6E3;
  --orange:     #FF6116;
  --orange2:    #FF8A4D;
  --orangeSoft: #FFEBDF;
  --cream:      #FBF2E1;
  --maroon:     #7E1F1A;
  --grey:       #BDBDBB;
  --font-sans:  'Urbanist', system-ui, -apple-system, sans-serif;
  /* legacy aliases */
  --primary:        #16181C;
  --primary-hover:  #000000;
  --secondary:      #FF6116;
  --tertiary:       #FF6116;
  --accent:         #FF6116;
  --fill:           #F4F3F1;
  --sh:             0 1px 0 rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.05);
  --sh-lg:          0 2px 0 rgba(0,0,0,.04), 0 8px 28px rgba(0,0,0,.09);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

::selection { background: var(--orange); color: #fff; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -40px; left: 12px;
  z-index: 2000;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: .8rem;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── SCROLL PROGRESS ── */
#nf-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--orange);
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

.page-main {
  position: relative;
  z-index: 1;
  padding-top: 108px;
  min-height: 100vh;
  background: var(--bg);
}

/* ── LAYOUT ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { position: relative; z-index: 1; }

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 96px));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
  transition: top .55s cubic-bezier(.4,0,.2,1), width .55s cubic-bezier(.4,0,.2,1), background .55s, padding .55s;
}
.site-header > * { pointer-events: auto; }
.site-header.scrolled {
  top: 0;
  width: 100%;
  background: var(--orange);
  padding: 0 clamp(22px, 4vw, 48px);
  pointer-events: auto;
}
.site-header.scrolled .logo { color: #fff; }
.site-header.scrolled .logo-mark { filter: brightness(0) invert(1); }
.site-header.scrolled .nav-pill {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.scrolled .nav-pill:hover { background: rgba(0,0,0,.1); }
.site-header.scrolled .nav-links a { color: rgba(255,255,255,.85); }
.site-header.scrolled .nav-links a:hover { color: #fff; background: rgba(0,0,0,.1); }
.site-header.scrolled .nav-cta {
  background: #fff !important;
  color: var(--orange) !important;
  box-shadow: none !important;
}
.site-header.scrolled .nav-cta:hover {
  background: rgba(255,255,255,.88) !important;
  color: var(--orange) !important;
  box-shadow: none !important;
}
.site-header.scrolled .hbg span { background: #fff; }
.has-video-hero .site-header:not(.scrolled) .logo { color: #fff; }
.has-video-hero .site-header:not(.scrolled) .logo-mark { filter: brightness(0) invert(1); }
.has-video-hero .site-header:not(.scrolled) .hbg span { background: #fff; }
.site-logo { justify-self: auto; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .80rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.logo--inline { display: inline-flex; width: fit-content; }
.logo-mark { width: auto; height: 22px; flex-shrink: 0; display: block; }

/* Nav pill */
.nav-pill {
  width: 100%;
  border-radius: 999px;
}
.glass.nav-pill,
.nav-pill {
  position: relative;
  background: rgba(80,80,80,.3);
  border: none;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: none;
  overflow: hidden;
  transition: background .25s;
}
.nav-pill > * { position: relative; z-index: 1; }
.glass.nav-pill:hover,
.nav-pill:hover {
  background: rgba(80,80,80,.3);
  box-shadow: none;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
  white-space: nowrap;
}
.nav-left { display: flex; align-items: center; gap: 22px; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #000;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #000; background: var(--panel); }
.has-video-hero .site-header:not(.scrolled) .nav-links a { color: #fff; }
.has-video-hero .site-header:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.15); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255,97,22,.22);
}
.nav-cta:hover {
  background: #e85510 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(255,97,22,.30) !important;
}

/* Mobile hamburger */
.hbg {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  cursor: pointer;
  padding: 7px;
  background: transparent;
  border: 0;
}
.hbg span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; }

/* Mobile menu */
.mob {
  display: none;
  position: fixed; inset: 0; z-index: 950;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mob.open { display: flex; }
.mob a {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.mob a:hover { color: var(--orange); }
.mob-x {
  position: absolute; top: 22px; right: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: .9rem;
  color: var(--mut);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.mob-x:hover { background: var(--panel2); color: var(--ink); }

/* ── HERO ── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 170px 48px 92px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(22, 24, 28, .55);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}
.hero-head { padding-top: 10px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(80,80,80,.3);
  border: none;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  font-family: var(--font-sans);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  animation: riseIn .8s cubic-bezier(.16,1,.3,1) forwards .15s;
}

h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
  text-shadow: none;
  text-wrap: balance;
}
.hero h1 { opacity: 0; color: #fff; }
.hero h1.typing-active,
.hero h1.done-typing { opacity: 1; }
.hero h1.typing-active::after {
  content: '|';
  display: inline-block;
  margin-left: 1px;
  font-weight: 300;
  color: var(--orange);
  animation: cursor-blink .75s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-foot.is-revealed { animation: riseIn .9s cubic-bezier(.16,1,.3,1) forwards; }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0;
  line-height: 1.65;
  text-shadow: none;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.ctas { display: flex; align-items: center; justify-content: flex-end; gap: 11px; flex-wrap: wrap; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(80,80,80,.3);
  border: none;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(22,24,28,.15);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.hero-cta:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,24,28,.22);
}
.hero-cta-arrow {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── LABELS / TITLES ── */
.lbl {
  font-family: var(--font-sans);
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.lbl::before { content: ''; width: 26px; height: 1.5px; background: var(--orange); }

.ttl {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--orangeSoft);
  border: 1px solid rgba(255,97,22,.20);
  font-family: var(--font-sans);
  font-size: .70rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.bdot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; animation: p 2s ease-in-out infinite; }
@keyframes p { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: .83rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(22,24,28,.15);
  transition: background .2s, transform .2s;
}
.btn-p:hover { background: #000; transform: translateY(-2px); }

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-g:hover { background: var(--panel); border-color: var(--panel2); transform: translateY(-2px); }

/* ── GLASS ── */
.glass {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.glass:hover { background: #fff; box-shadow: var(--sh-lg); }

/* ── BELOW LANDING ── */
.below-landing {
  position: relative;
  z-index: 1;
  background: var(--bg);
  color: var(--ink);
}
.below-landing > * { position: relative; z-index: 1; }

/* ── STORY SECTIONS ── */
.story-section {
  min-height: min(72vh, 820px);
  display: flex;
  align-items: center;
  padding: 56px 48px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}
.story-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.story-text {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.38;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0;
}
.story-word { display: inline-block; overflow: hidden; vertical-align: baseline; }
.story-word-inner {
  display: inline-block;
  transform: translateY(118%);
  opacity: 0;
  transition: transform .78s cubic-bezier(.18,.82,.22,1), opacity .68s cubic-bezier(.22,.61,.24,1);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .story-word-inner { transform: none !important; opacity: 1 !important; transition: none !important; }
}

.story-alpha-cta {
  position: relative;
  z-index: 2;
  padding: 80px 48px 108px;
}
.story-alpha-cta__inner { max-width: 1140px; margin: 0 auto; }
.story-alpha-cta__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
  text-wrap: balance;
}
.story-alpha-cta__lede {
  font-size: clamp(.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--mut);
  margin: 0 0 28px;
  max-width: 42ch;
}
.story-alpha-cta__btn { display: inline-flex; width: fit-content; }

/* ── CLOSED LOOP SECTION ── */
.nf-loop {
  align-items: flex-start;
  min-height: 0;
  padding-top: 44px;
  padding-bottom: 52px;
  background: var(--panel);
}
.nf-loop__hd {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.nf-loop__hd .nf-ecosystem__tag { margin-bottom: 14px; }
.nf-loop__title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.nf-loop__sub {
  font-size: clamp(.92rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--mut);
  margin: 0 auto;
  max-width: 52ch;
}

.nf-loop__diagram {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 2 / 1;
  margin: 0 auto;
}

.nf-loop__arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
}
.nf-loop__infinity-track {
  fill: none;
  stroke: rgba(22,24,28,.16);
  stroke-width: 5px;
  vector-effect: non-scaling-stroke;
}
.nf-loop__infinity-flow {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 60 1950;
  animation: nf-loop-flow 5s linear infinite;
}
.nf-loop__infinity-flow--delay {
  animation-delay: -2.5s;
  opacity: .55;
}
@keyframes nf-loop-flow {
  to { stroke-dashoffset: -2010px; }
}
@media (prefers-reduced-motion: reduce) {
  .nf-loop__infinity-flow { animation: none; }
}

.nf-loop__node {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--sh);
  padding: 12px 22px;
  white-space: nowrap;
}
.nf-loop__node--a { top: 12%; left: 17%; }
.nf-loop__node--b { top: 88%; left: 17%; }
.nf-loop__node--c { top: 12%; left: 83%; }
.nf-loop__node--d { top: 88%; left: 83%; }

.nf-loop__node-title {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.nf-loop__center {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--orangeSoft);
  padding: 10px 18px;
  white-space: nowrap;
}
.nf-loop__center span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 768px) {
  .nf-loop { padding-top: 36px; padding-bottom: 40px; }
  .nf-loop__hd { margin-bottom: 28px; }
  .nf-loop__diagram {
    display: flex;
    flex-direction: column;
    gap: 12px;
    aspect-ratio: auto;
    width: 100%;
  }
  .nf-loop__arrows,
  .nf-loop__center { display: none; }
  .nf-loop__node {
    position: static;
    transform: none;
    width: 100%;
    text-align: left;
    border-radius: 16px;
    padding: 20px 22px;
  }
}

/* Flush wrap padding so content aligns with nav and story sections */
.nf-how .wrap,
.nf-founder__inner,
.nf-faq__inner { padding-left: 0; padding-right: 0; }

/* ── HOW IT WORKS ── */
.nf-how {
  border-bottom: 1px solid var(--line);
  padding: 88px 48px;
}
.nf-how__hd { margin-bottom: 44px; }
.nf-how__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 14px;
  max-width: 20ch;
  text-wrap: balance;
}
.nf-how__sub {
  font-size: clamp(.92rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--mut);
  margin: 0;
  max-width: 54ch;
}
.nf-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.nf-how__card {
  background: var(--panel);
  border-radius: 20px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
}
.nf-how__num {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 12px;
}
.nf-how__card-title {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.nf-how__card-body {
  font-size: clamp(.84rem, 1vw, .92rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--mut);
  margin: 0;
}
.nf-how__vis {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
}
.nf-how__vis > svg { width: 100%; display: block; }
/* Pillar bar animation */
.nf-pb {
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1) .4s;
}
.fi.on .nf-pb { transform: scaleY(1); }
.nf-pb-2 { transition-delay: .6s; }
.nf-pb-3 { transition-delay: .8s; }
.nf-pb-4 { transition-delay: 1s; }
.nf-pb-5 { transition-delay: 1.2s; }
/* Recommendation items */
.nf-how__recs { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.nf-how__rec {
  background: #fff;
  border-radius: 14px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.nf-how__rec-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nf-how__rec-name { font-size: .93rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.nf-how__rec-hint { font-size: .78rem; font-weight: 500; color: var(--mut); line-height: 1.3; }
@media (max-width: 900px) {
  .nf-how { padding: 56px 22px; }
  .nf-how__grid { grid-template-columns: 1fr; gap: 14px; }
  .nf-how__vis { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .nf-pb { transition: none; transform: scaleY(1); }
}

/* ── MONITOR (dark metrics marquee) ── */
.nf-monitor {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 96px 0 104px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nf-monitor__head {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto 44px;
  padding: 0 28px;
  text-align: center;
}
.nf-monitor__title {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.nf-monitor__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--orange2);
}
.nf-monitor__checks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin: 26px 0 0;
}
.nf-monitor__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
}
.nf-monitor__check-ico {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1;
}
.nf-monitor__stage {
  position: relative;
  height: 320px;
}
.nf-monitor__marquee {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nf-monitor__marquee--top { top: 68px; }
.nf-monitor__marquee--bottom { top: 132px; }
.nf-monitor__track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  will-change: transform;
  animation: nf-marquee-left 46s linear infinite;
}
.nf-monitor__marquee--bottom .nf-monitor__track {
  animation-name: nf-marquee-right;
}
.nf-monitor--paused .nf-monitor__track,
.nf-monitor--paused .nf-monitor__pulse {
  animation-play-state: paused;
}
@keyframes nf-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes nf-marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.nf-monitor__word {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(255,255,255,.26);
}
.nf-monitor__dot { color: rgba(255,255,255,.16); padding: 0 16px; }
.nf-monitor__card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 560px);
  background: #1E2127;
  border-radius: 20px;
  padding: 32px 30px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.nf-monitor__pulse {
  animation: nf-pulse 2.2s cubic-bezier(.16,1,.3,1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes nf-pulse {
  0%   { r: 5; opacity: .55; }
  100% { r: 16; opacity: 0; }
}

.nf-monitor__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 210;
}
.nf-monitor__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.nf-monitor__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.nf-monitor__slide svg { width: 100%; height: 100%; display: block; overflow: visible; }
.nf-monitor__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.nf-monitor__dots button {
  width: 7px;
  height: 7px;
  padding: 9px;
  background-clip: content-box;
  box-sizing: content-box;
  border: none;
  border-radius: 50%;
  background-color: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}
.nf-monitor__dots button.is-active {
  background-color: var(--orange);
  transform: scale(1.3);
}
@media (prefers-reduced-motion: reduce) {
  .nf-monitor__slide { transition: none; }
}
.nf-monitor__pause {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 0;
  background: none;
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.nf-monitor__pause:hover { color: rgba(255,255,255,.7); }
.nf-monitor__pause-ico { display: inline-flex; gap: 2px; }
.nf-monitor__pause-ico span { display: block; width: 2.5px; height: 10px; background: currentColor; border-radius: 1px; }
.nf-monitor--paused .nf-monitor__pause-ico span:first-child { display: none; }
.nf-monitor--paused .nf-monitor__pause-ico { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent currentColor; }
.nf-monitor--paused .nf-monitor__pause-ico span { display: none; }
@media (max-width: 640px) {
  .nf-monitor { padding: 72px 0 80px; }
  .nf-monitor__checks { gap: 10px 18px; }
  .nf-monitor__stage { height: 260px; }
  .nf-monitor__marquee--top { top: 54px; }
  .nf-monitor__marquee--bottom { top: 112px; }
  .nf-monitor__card { width: min(94vw, 420px); padding: 24px 20px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .nf-monitor__track, .nf-monitor__pulse { animation: none; }
}

/* ── INSIGHT PREVIEW ("what you get") ── */
.nf-prev {
  border-bottom: 1px solid var(--line);
  padding: 88px 48px;
  background: var(--panel);
}
.nf-prev__hd { margin-bottom: 40px; }
.nf-prev__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 14px;
  max-width: 24ch;
  text-wrap: balance;
}
.nf-prev__sub {
  font-size: clamp(.92rem, 1.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--mut);
  margin: 0 0 6px;
  max-width: 58ch;
}
.nf-prev__note {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
}
.nf-prev__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nf-prev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
}
.nf-prev-kicker {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.nf-prev-title {
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.nf-prev-body {
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mut);
  margin: 0;
}
.nf-prev-vis {
  margin-top: 20px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.nf-prev-vis > svg { width: 100%; display: block; }
.nf-prev-vis--ring { justify-content: center; }
.nf-prev-vis--ring > svg { width: 118px; height: 118px; }

/* Ring gauge (dash-offset reveal on scroll) */
.nf-ring-prog {
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 1.3s cubic-bezier(.16,1,.3,1) .25s;
}
.fi.on .nf-ring-prog { stroke-dashoffset: var(--nf-ring-off); }
.nf-ring-val { fill: var(--ink); font-size: 22px; font-weight: 700; }
.nf-ring-sub { fill: var(--faint); font-size: 8.5px; letter-spacing: .04em; }

/* Horizontal lever / ledger bars (scaleX reveal on scroll) */
.nf-hbar {
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.1s cubic-bezier(.16,1,.3,1) .2s;
}
.fi.on .nf-hbar { transform: scaleX(1); }
.nf-hbar-2 { transition-delay: .38s; }
.nf-hbar-3 { transition-delay: .56s; }
.nf-hbar-lbl { fill: var(--mut); font-size: 10px; font-weight: 600; }
.nf-hbar-val { fill: var(--ink); font-size: 10px; font-weight: 700; }

/* Trend / dose-response line (stroke draw-in reveal on scroll) */
.nf-trend-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.4s cubic-bezier(.16,1,.3,1) .2s;
}
.fi.on .nf-trend-line { stroke-dashoffset: 0; }
.nf-trend-dot {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.4);
  transition: opacity .5s ease .9s, transform .5s cubic-bezier(.16,1,.3,1) .9s;
}
.fi.on .nf-trend-dot { opacity: 1; transform: scale(1); }
.nf-trend-lbl { fill: var(--faint); font-size: 9px; }
.nf-trend-pt { fill: var(--ink); font-size: 10.5px; font-weight: 700; }

@media (max-width: 900px) {
  .nf-prev { padding: 56px 22px; }
  .nf-prev__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 600px) {
  .nf-prev__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .nf-ring-prog, .nf-hbar, .nf-trend-line, .nf-trend-dot { transition: none; }
  .fi.on .nf-ring-prog { stroke-dashoffset: var(--nf-ring-off); }
  .nf-hbar { transform: scaleX(1); }
  .nf-trend-line { stroke-dashoffset: 0; }
  .nf-trend-dot { opacity: 1; transform: scale(1); }
}

/* ── FOUNDER SECTION ── */
.nf-founder {
  border-bottom: 1px solid var(--line);
  padding: 96px 48px;
}
.nf-founder__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}
.nf-founder__text {
  display: flex;
  flex-direction: column;
}
.nf-founder__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.nf-founder__name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
}
.nf-founder__diplomat {
  display: inline-flex;
  width: fit-content;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,97,22,.35);
  margin: 0 0 24px;
  transition: border-color .2s;
}
.nf-founder__diplomat:hover { border-color: var(--orange); }
.nf-founder__credentials {
  font-size: clamp(.8rem, 1vw, .88rem);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.65;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 28px;
}
.nf-founder__bio {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--mut);
  max-width: 58ch;
  margin: 0;
}
.nf-founder__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.nf-founder__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}
.nf-founder__stat:first-child {
  padding-left: 0;
  border-left: none;
}
.nf-founder__stat-num {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.nf-founder__stat-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
}
.nf-founder__photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
}
.nf-founder__photo {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .nf-founder__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .nf-founder__photo-wrap {
    max-width: 340px;
    margin: 0 auto;
  }
  .nf-founder { padding: 64px 22px; }
}
@media (max-width: 480px) {
  .nf-founder__stats { gap: 22px; flex-wrap: wrap; }
  .nf-founder__stat { padding-left: 22px; }
}

/* ── BELOW-LANDING OVERRIDES ── */
.below-landing .lbl { color: var(--orange); }
.below-landing .lbl::before { background: var(--orange); }
.below-landing .ttl { color: var(--ink); }

.below-landing .jd,
.below-landing .fl,
.below-landing .fls a,
.below-landing .jm { color: var(--mut) !important; }
.below-landing .jt { color: var(--ink) !important; }

.below-landing .glass {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.03), 0 4px 16px rgba(0,0,0,.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.below-landing .glass:hover {
  background: var(--panel);
  border-color: var(--panel2);
  box-shadow: 0 2px 0 rgba(0,0,0,.03), 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.below-landing .badge {
  background: var(--orangeSoft);
  border-color: rgba(255,97,22,.20);
  color: var(--orange);
}
.below-landing .bdot { background: var(--orange); }

.below-landing .btn-g {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  backdrop-filter: none;
  box-shadow: none;
}
.below-landing .btn-g:hover {
  background: var(--panel);
  border-color: var(--panel2);
  color: var(--ink);
}
.below-landing .btn-g.land-alpha-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(255,97,22,.22);
  font-weight: 700;
}
.below-landing .btn-g.land-alpha-cta:hover {
  background: #e85510;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,97,22,.30);
}

/* ── LEGAL ── */
.below-landing .legal-page { padding: 96px 28px 100px; border-bottom: 1px solid var(--line); }
.below-landing .legal-inner { max-width: 680px; margin: 0 auto; }
.below-landing .legal-inner .lbl { margin-bottom: clamp(14px, 2.5vw, 22px); }
.below-landing .legal-inner > .ttl { margin-bottom: clamp(14px, 2vw, 18px); }
.below-landing .legal-sub {
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.below-landing .legal-led { font-size: 1.05rem; line-height: 1.75; color: var(--mut); max-width: 52ch; margin-bottom: 18px; }
.below-landing .legal-updated { font-size: .82rem; letter-spacing: .04em; color: var(--faint); margin-bottom: clamp(36px, 5vw, 48px); }
.below-landing .legal-block { margin-bottom: clamp(28px, 4vw, 40px); }
.below-landing .legal-block:last-of-type { margin-bottom: 0; }
.below-landing .legal-block h2 {
  font-size: clamp(1.02rem, 1.85vw, 1.14rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.35;
  margin-bottom: 12px;
}
.below-landing .legal-block p { font-size: 1.02rem; line-height: 1.76; color: var(--mut); }
.below-landing .legal-block p + p { margin-top: 12px; }
.below-landing .legal-block ul { list-style: none; padding: 0; margin: 12px 0 0; }
.below-landing .legal-block li {
  position: relative;
  padding-left: 1.15em;
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--mut);
}
.below-landing .legal-block li::before { content: '●'; position: absolute; left: 0; opacity: .4; font-size: .65em; top: .55em; }
.below-landing .legal-inner .legal-email { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.below-landing .legal-inner .legal-email:hover { color: #e85510; }

/* ── BETA / ALPHA ── */
.below-landing .beta-sec { padding: 96px 28px; border-bottom: 1px solid var(--line); }
.below-landing .beta-card {
  max-width: none; margin: 0; padding: 0;
  border-radius: 0; text-align: left;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.below-landing .beta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 56px;
  align-items: start;
}
.below-landing .beta-intro p { color: var(--mut) !important; }
.below-landing .tally-embed { grid-column: 1 / -1; width: 100%; }

/* ── CAREERS ── */
.jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.jc {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 28px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.jc:hover { transform: translateY(-3px); }
.jt { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.25; letter-spacing: -.01em; }
.jd { font-size: .84rem; color: var(--mut); line-height: 1.62; font-weight: 500; }
.jm { margin-top: 16px; font-size: .73rem; color: var(--faint); display: flex; align-items: center; gap: 7px; font-weight: 600; letter-spacing: .04em; }
.md { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.below-landing .jobs {
  grid-template-columns: 1fr;
  gap: 10px;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.below-landing .jc {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.below-landing .jc:last-child { border-bottom: 1px solid var(--line); }
.below-landing .jc:hover {
  background: var(--panel);
  border-color: var(--panel2);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

/* ── FOOTER ── */
footer {
  padding: 64px 28px 36px;
  position: relative;
  z-index: 1;
  background: var(--ink);
}
footer .logo { color: #fff !important; }
footer .logo-mark { filter: brightness(0) invert(1); }

.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.fl { color: rgba(255,255,255,.42); font-size: .82rem; line-height: 1.65; max-width: 250px; margin-top: 14px; }
.fc h4 { font-family: var(--font-sans); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 15px; font-weight: 700; }
.fls { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fls a { color: rgba(255,255,255,.42); text-decoration: none; font-size: .82rem; font-weight: 500; transition: color .2s; }
.fls a:hover { color: rgba(255,255,255,.92); }
.fb { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.26); font-size: .72rem; font-weight: 500; }
.fb-vip { color: inherit; text-decoration: none; transition: color .2s; }
.fb-vip:hover { color: rgba(255,255,255,.6); }

.below-landing footer {
  background: var(--ink);
  border-top: none;
  padding: 64px 28px 36px;
  margin-top: 0;
}
.below-landing footer .logo { color: #fff !important; }
.below-landing footer .logo-mark { filter: brightness(0) invert(1); }
.below-landing footer .fl,
.below-landing footer .fls a { color: rgba(255,255,255,.42) !important; }
.below-landing footer .fls a:hover { color: rgba(255,255,255,.92) !important; }
.below-landing footer .fb { border-top-color: rgba(255,255,255,.09); color: rgba(255,255,255,.26) !important; }
.below-landing footer .fc h4 { color: rgba(255,255,255,.32) !important; }
.below-landing footer .fg { margin-bottom: 44px; }

/* ── INNER PAGES ── */
body.inner { background: var(--bg); color: var(--ink); }
body.inner .page-main { background: var(--bg); }

/* ── SCROLL ANIMATIONS ── */
.fi { opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.fi.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .hero .hero-tag { animation: none; opacity: 1; }
  .hero .hero-foot.is-revealed { animation: none; opacity: 1; }
  .fi { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fg { grid-template-columns: 1fr 1fr; gap: 36px; }
  .below-landing .beta-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .site-header { top: 10px; width: calc(100% - 24px); }
  .nav-row { padding: 14px 16px; }
  .nav-links { display: none; }
  .hbg { display: flex; }
  .hero { padding: 110px 22px 64px; align-items: stretch; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-sub { max-width: 100%; }
  .ctas { justify-content: flex-start; }
  .jobs { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; gap: 30px; }
  .fb { flex-direction: column; gap: 9px; text-align: center; }
  .story-section { padding: 40px 22px; min-height: 0; }
  .story-alpha-cta { padding: 56px 22px 80px; }
}
@media (max-width: 480px) {
  .below-landing .beta-inner { grid-template-columns: 1fr; }
  .logo { font-size: .70rem; letter-spacing: .26em; }
}

/* ── FAQ SECTION ── */
.nf-faq {
  border-bottom: 1px solid var(--line);
  padding: 88px 48px;
}
.nf-faq__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.nf-faq__title {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
  position: sticky;
  top: 88px;
}
.nf-faq__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q:hover .faq-icon { border-color: var(--orange); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s, background .25s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-q[aria-expanded="true"] .faq-icon {
  border-color: var(--orange);
  background: var(--orangeSoft);
  color: var(--orange);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%,-50%) scaleY(0);
  opacity: 0;
}
.faq-a {
  overflow: hidden;
  height: 0;
  transition: height .38s cubic-bezier(.4,0,.2,1);
}
.faq-a p {
  padding: 0 0 22px;
  font-size: clamp(.88rem, 1.1vw, .97rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--mut);
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 768px) {
  .nf-faq { padding: 56px 22px; }
  .nf-faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .nf-faq__title { position: static; }
}

/* ── THIN INTERSTITIAL TEXT ── */
.story-section--thin {
  min-height: 0;
  padding: 44px 48px;
}
@media (max-width: 768px) {
  .story-section--thin { padding: 32px 22px; }
}

/* ── CIRCLE REVEAL (orange + dark variants) ── */
.js-circle-reveal {
  overflow: hidden;
}
.story-bg-circle {
  position: absolute;
  inset: 0;
  background: var(--orange);
  clip-path: circle(0% at 50% 50%);
  transition: none;
  z-index: 0;
  pointer-events: none;
  will-change: clip-path;
}
.story-section--orange.reveal-active .story-bg-circle {
  clip-path: circle(150% at 50% 50%);
}
.story-section--orange .story-inner {
  position: relative;
  z-index: 1;
}
.story-section--orange .story-word-inner {
  transition: transform .78s cubic-bezier(.18,.82,.22,1), opacity .68s cubic-bezier(.22,.61,.24,1);
  color: #ffffff;
}
.story-section--orange {
  border-bottom-color: rgba(255,255,255,.18);
}

/* ── PAIN SECTION (tracker vs. guidance) ── */
.story-pain__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 90px);
  flex-wrap: wrap;
}
.story-pain__copy {
  flex: 1 1 420px;
  max-width: 620px;
}
.story-pain__eyebrow,
.story-pain__title,
.story-pain__sub,
.story-pain__graphic {
  transition: color .6s ease, opacity .6s ease;
}
.story-pain__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mut);
}
.story-pain__title {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.story-pain__highlight {
  display: inline-block;
  margin: 0 0 22px;
  padding: clamp(16px, 2.2vw, 26px) clamp(20px, 3vw, 32px);
  border-radius: 20px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.story-pain__sub {
  margin: 0;
  max-width: 46ch;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--mut);
}
.story-section--orange.reveal-active .story-pain__eyebrow { color: rgba(255,255,255,.85); }
.story-section--orange.reveal-active .story-pain__title { color: #fff; }
.story-section--orange.reveal-active .story-pain__sub { color: rgba(255,255,255,.82); }

.story-pain__graphic {
  flex: 1 1 320px;
  max-width: 460px;
  aspect-ratio: 600 / 360;
  opacity: 0;
  overflow: visible;
}
.story-section--orange.reveal-active .story-pain__graphic {
  opacity: 1;
  animation: nf-wave-bob 6s ease-in-out infinite;
}
.story-pain__wave {
  stroke: rgba(255,255,255,.4);
  stroke-dasharray: 6 7;
  animation: nf-wave-flow 3.2s linear infinite;
}
.story-pain__wave--soft {
  stroke: rgba(255,255,255,.18);
  animation-duration: 4.6s;
  animation-direction: reverse;
}
@keyframes nf-wave-flow {
  to { stroke-dashoffset: -260; }
}
@keyframes nf-wave-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.story-pain__dot circle {
  fill: #fff;
  transform-box: fill-box;
  transform-origin: center;
  animation: nf-dot-pulse 2.4s ease-in-out infinite;
}
.story-pain__dot:nth-child(2) circle { animation-delay: .5s; }
.story-pain__dot:nth-child(3) circle { animation-delay: 1s; }
@keyframes nf-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}
.story-pain__dot text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 860px) {
  .story-pain__graphic { display: none; }
  .story-pain__copy { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .story-pain__wave,
  .story-section--orange.reveal-active .story-pain__graphic,
  .story-pain__dot circle {
    animation: none;
  }
}

/* Nightfall MD — dark reveal variant */
.nf-how--dark {
  position: relative;
}
.nf-how--dark .story-bg-circle { background: var(--ink); }
.nf-how--dark.reveal-active .story-bg-circle { clip-path: circle(150% at 50% 50%); }
.nf-how--dark .wrap { position: relative; z-index: 1; }
.nf-how--dark.reveal-active { border-bottom-color: rgba(255,255,255,.12); }
.nf-how--dark .nf-how__title,
.nf-how--dark .nf-how__sub,
.nf-how--dark .nf-how__card,
.nf-how--dark .nf-how__card-title,
.nf-how--dark .nf-how__card-body {
  transition: color .6s ease, background .6s ease, border-color .6s ease;
}
.nf-how--dark.reveal-active .nf-how__title { color: #fff; }
.nf-how--dark.reveal-active .nf-how__sub { color: rgba(255,255,255,.7); }
.nf-how--dark.reveal-active .nf-how__card {
  background: #2A2D34;
  border: 1px solid rgba(255,255,255,.07);
}
.nf-how--dark.reveal-active .nf-how__card-title { color: #fff; }
.nf-how--dark.reveal-active .nf-how__card-body { color: rgba(255,255,255,.62); }

@media (prefers-reduced-motion: reduce) {
  .story-bg-circle { transition: none; }
  .story-section--orange .story-word-inner { transition: none; }
}
