/* ======================================================================
   NEXUS REPORTING - BASE / LAYOUT / SECTIONS
   ====================================================================== */
:root {
  /* Colour system */
  --slate: #14171c;
  --slate-2: #1a1e24;
  --slate-3: #232831;
  --cream: #f7f5f0;
  --cream-2: #ede9de;
  --gold: #facf39;
  --gold-soft: #f5c419;
  --neg: #da8a66;

  /* Text on dark */
  --text-on-dark: #f7f5f0;
  --text-on-dark-2: rgba(247, 245, 240, 0.72);
  --text-on-dark-3: rgba(247, 245, 240, 0.48);
  --border-on-dark: rgba(247, 245, 240, 0.12);

  /* Text on cream */
  --text-on-cream: #14171c;
  --text-on-cream-2: rgba(20, 23, 28, 0.68);
  --text-on-cream-3: rgba(20, 23, 28, 0.42);
  --border-on-cream: rgba(20, 23, 28, 0.12);

  /* Typography */
  --font-display: 'General Sans', -apple-system, sans-serif;
  --font-body: 'General Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.82rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.06rem + 0.35vw, 1.3rem);
  --text-xl: clamp(1.375rem, 1.25rem + 0.6vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.5rem + 1.1vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.9rem + 1.7vw, 3.5rem);
  --text-4xl: clamp(2.75rem, 2.2rem + 2.8vw, 5rem);
  --text-hero: clamp(2.8rem, 2.1rem + 3.4vw, 5rem);

  /* Spacing */
  --section-py: clamp(5rem, 4rem + 4vw, 9rem);
  --gutter: clamp(1.25rem, 0.8rem + 2.5vw, 3rem);
  --max-w: 1440px;

  /* Motion */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--slate);
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--slate); }

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 em, h2 em, h3 em, .hero__title em, .section-title em,
.testimonial__quote em, .cta__title em, .individuals__title em,
.problem__headline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

p { text-wrap: pretty; max-width: 65ch; }
h1, h2, h3 { text-wrap: balance; }

/* ---- Layout --------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-py); position: relative; }
.bg-cream { background: var(--cream); color: var(--text-on-cream); }
.bg-slate { background: var(--slate); color: var(--text-on-dark); }

/* ---- Navigation ----------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease-expo), backdrop-filter 0.4s var(--ease-expo), padding 0.4s var(--ease-expo);
}
.nav.scrolled {
  background: rgba(20, 23, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-on-dark);
  padding-block: 0.85rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__links a { color: var(--text-on-dark-2); transition: color 0.3s var(--ease-expo); position: relative; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: var(--gold);
  transition: width 0.4s var(--ease-expo);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  color: var(--cream) !important;
  transition: background 0.3s var(--ease-expo), border-color 0.3s var(--ease-expo), color 0.3s var(--ease-expo) !important;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--slate) !important; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: inline-block; padding: 0.5rem 0.95rem; font-size: 0.82rem; }
}

/* ---- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.5s var(--ease-expo), background 0.3s var(--ease-expo), color 0.3s var(--ease-expo), border-color 0.3s var(--ease-expo);
  will-change: transform;
}
.btn--gold { background: var(--gold); color: var(--slate); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--cream); border: 1px solid var(--border-on-dark); }
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-light { background: transparent; color: var(--slate); border: 1px solid var(--border-on-cream); }
.btn--ghost-light:hover { border-color: var(--slate); }
.btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-expo); }
.btn:hover svg { transform: translateX(3px); }

/* ---- Hero ----------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: safe center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 80% 20%, rgba(250, 207, 57, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(250, 207, 57, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__bg-mark {
  position: absolute;
  top: 48%; right: -14%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
  will-change: transform;
  animation: spin 120s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.04fr 0.96fr; gap: 4.5rem; }
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-2);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.2s forwards;
}
.hero__label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero__title {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-top: 1.4rem;
}
.hero__title .word { display: inline-block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__title .word > span { display: inline-block; transform: translateY(110%); animation: slideUp 1.2s var(--ease-expo) forwards; }
.hero__title .word:nth-child(1) > span { animation-delay: 0.35s; }
.hero__title .word:nth-child(2) > span { animation-delay: 0.42s; }
.hero__title .word:nth-child(3) > span { animation-delay: 0.49s; }
.hero__title .word:nth-child(4) > span { animation-delay: 0.56s; }
.hero__title .word:nth-child(5) > span { animation-delay: 0.63s; }
.hero__title .word:nth-child(6) > span { animation-delay: 0.70s; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: var(--text-lg);
  color: var(--text-on-dark-2);
  max-width: 46ch;
  margin-top: 1.8rem;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.95s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 1.1s forwards;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-on-dark);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 1.25s forwards;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__meta-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-3);
  margin-top: 0.5rem;
}

.hero__visual {
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) 0.7s forwards;
}

@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Data-source ticker --------------------------------------------- */
.ticker {
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  background: var(--slate-2);
  overflow: hidden;
  padding-block: 0;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 42s linear infinite;
}
.ticker:hover .ticker__inner { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-2);
}
.ticker__item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.65; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Section labels ------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.bg-cream .eyebrow { color: var(--text-on-cream-2); }
.bg-slate .eyebrow { color: var(--text-on-dark-2); }

.section-title {
  font-size: var(--text-4xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 18ch;
}
.section-title em { font-style: normal; }
.bg-cream .section-title em { color: var(--slate); }
.bg-slate .section-title em { color: var(--gold); }

.section-intro { font-size: var(--text-lg); line-height: 1.55; max-width: 58ch; margin-top: 1.5rem; }
.bg-cream .section-intro { color: var(--text-on-cream-2); }
.bg-slate .section-intro { color: var(--text-on-dark-2); }

/* ---- Problem -------------------------------------------------------- */
.problem__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 4rem; align-items: start; }
@media (min-width: 900px) { .problem__grid { grid-template-columns: 5fr 6fr; gap: 6rem; } }
.problem__headline { font-size: var(--text-3xl); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.problem__headline em { font-style: normal; }
.problem__body { font-size: var(--text-lg); line-height: 1.65; color: var(--text-on-cream-2); }
.problem__body p + p { margin-top: 1.25rem; }
.problem__body strong { color: var(--slate); font-weight: 500; }

/* ---- Report explorer section --------------------------------------- */
.report-sec { position: relative; overflow: hidden; }
.report-sec__header { display: grid; gap: 2rem; margin-bottom: 3.5rem; }
@media (min-width: 900px) { .report-sec__header { grid-template-columns: 1fr 1fr; align-items: end; } }
.report-sec__hint {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--text-on-dark-3); margin-top: 1.5rem;
}
.report-sec__hint svg { width: 14px; height: 14px; }
.report-sec__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---- Process (sticky choreography) ---------------------------------- */
.process__header { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 900px) { .process__header { grid-template-columns: 1fr 1fr; align-items: end; } }

.process__layout { display: grid; gap: 2.5rem; }
@media (min-width: 920px) { .process__layout { grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; } }

.process__rail { position: relative; }
@media (min-width: 920px) { .process__rail { position: sticky; top: 24vh; align-self: start; } }
.process__rail-track { display: flex; flex-direction: column; gap: 0.25rem; }
.process__rail-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; cursor: default;
  border-bottom: 1px solid var(--border-on-dark);
  transition: opacity 0.4s var(--ease-expo);
  opacity: 0.4;
}
.process__rail-item.is-active { opacity: 1; }
.process__rail-num {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border-on-dark); color: var(--text-on-dark-3);
  transition: all 0.4s var(--ease-expo);
}
.process__rail-item.is-active .process__rail-num { background: var(--gold); color: var(--slate); border-color: var(--gold); }
.process__rail-label { font-family: var(--font-display); font-weight: 500; font-size: var(--text-base); color: var(--cream); letter-spacing: -0.01em; }

.process__steps { display: flex; flex-direction: column; gap: 1px; }
.process__step {
  padding: 0 0 3rem;
  scroll-margin-top: 18vh;
}
.process__step:not(:last-child) { border-bottom: 1px solid var(--border-on-dark); margin-bottom: 3rem; }
.process__num-lg {
  font-family: var(--font-display); font-size: clamp(3rem, 2rem + 3vw, 4.5rem); font-weight: 500;
  color: var(--slate-3); line-height: 1; letter-spacing: -0.03em; margin-bottom: 1.25rem;
  -webkit-text-stroke: 1px var(--border-on-dark); color: transparent;
}
.process__step.is-active .process__num-lg { color: var(--gold); -webkit-text-stroke: 0; }
.process__step-title {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500;
  letter-spacing: -0.02em; color: var(--cream); line-height: 1.1; margin-bottom: 1.25rem;
}
.process__step-body { color: var(--text-on-dark-2); line-height: 1.65; font-size: var(--text-base); max-width: 60ch; }
.process__step-body p + p { margin-top: 1rem; }
.process__step-body strong { color: var(--cream); font-weight: 500; }

.process__callout {
  margin-top: 3.5rem; padding: 2.5rem;
  border: 1px solid var(--border-on-dark); border-radius: 6px;
  display: grid; gap: 1.5rem; align-items: center;
  background: rgba(255,255,255,0.015);
}
@media (min-width: 800px) { .process__callout { grid-template-columns: 1fr auto; gap: 3rem; padding: 2.5rem 3rem; } }
.process__callout-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--cream); letter-spacing: -0.015em; line-height: 1.2; }
.process__callout-text { color: var(--text-on-dark-2); margin-top: 0.75rem; font-size: var(--text-base); }

/* ---- Proof ---------------------------------------------------------- */
.proof__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-on-cream); }
@media (min-width: 800px) { .proof__stats { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.proof__stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 1.9rem + 2.5vw, 4rem); font-weight: 500;
  line-height: 0.95; letter-spacing: -0.03em; color: var(--slate); font-variant-numeric: tabular-nums;
}
.proof__stat-label { font-size: var(--text-sm); color: var(--text-on-cream-2); margin-top: 0.85rem; line-height: 1.4; max-width: 22ch; }

.testimonial { margin-top: 6rem; padding: 3rem 0; border-top: 1px solid var(--border-on-cream); border-bottom: 1px solid var(--border-on-cream); }
.testimonial__quote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.3rem); font-weight: 500;
  line-height: 1.25; letter-spacing: -0.02em; color: var(--slate); max-width: 26ch;
}
.testimonial__quote em { font-style: normal; color: var(--slate); background: var(--gold); box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 0.08em 0.18em; }
.testimonial__attribution { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; font-size: var(--text-sm); color: var(--text-on-cream-2); }
.testimonial__attribution strong { color: var(--slate); font-weight: 500; }
.testimonial__link { color: var(--slate); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); text-decoration-thickness: 1.5px; transition: color 0.3s var(--ease-expo); }
.testimonial__link:hover { color: var(--text-on-cream-2); }
.testimonial__attribution::before { content: ''; width: 28px; height: 1px; background: var(--slate); flex-shrink: 0; }

/* ---- Services ------------------------------------------------------- */
.services__grid { display: grid; gap: 1.5rem; margin-top: 5rem; }
@media (min-width: 900px) { .services__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.service { padding: 3rem; border: 1px solid var(--border-on-dark); border-radius: 6px; transition: border-color 0.4s var(--ease-expo), background 0.4s var(--ease-expo); display: flex; flex-direction: column; gap: 1.5rem; }
.service:hover { border-color: rgba(250, 207, 57, 0.35); background: var(--slate-2); }
.service__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); font-weight: 500; }
.service__title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; line-height: 1.1; color: var(--cream); letter-spacing: -0.02em; }
.service__body { color: var(--text-on-dark-2); line-height: 1.65; font-size: var(--text-base); }
.service__body p + p { margin-top: 0.85rem; }
.service__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }
.service__list li { font-size: var(--text-sm); color: var(--text-on-dark-2); padding-left: 1.25rem; position: relative; }
.service__list li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 8px; height: 1px; background: var(--gold); }

/* ---- Pricing -------------------------------------------------------- */
.pricing__header { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 900px) { .pricing__header { grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; } }
.pricing__tiers { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .pricing__tiers { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.tier { background: var(--cream-2); padding: 2.5rem; border-radius: 6px; display: flex; flex-direction: column; gap: 1.5rem; position: relative; transition: transform 0.5s var(--ease-expo), background 0.4s var(--ease-expo); }
.tier--featured { background: var(--slate); color: var(--cream); }
.tier--featured .tier__name { color: var(--cream); }
.tier--featured .tier__price { color: var(--gold); }
.tier--featured .tier__features li { color: var(--text-on-dark-2); }
.tier--featured .tier__features li::before { background: var(--gold); }
.tier--featured .tier__meta { color: var(--text-on-dark-3); }
.tier:hover { transform: translateY(-4px); }
.tier__badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); background: var(--gold); padding: 0.3rem 0.6rem; border-radius: 999px; font-weight: 600;
}
.tier__name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--slate); letter-spacing: -0.015em; line-height: 1; }
.tier__price-row { display: flex; align-items: baseline; gap: 0.65rem; padding-block: 1rem 0.25rem; }
.tier__price { font-family: var(--font-display); font-size: clamp(2.5rem, 1.8rem + 2.5vw, 3.5rem); font-weight: 500; color: var(--slate); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.tier__meta { font-size: var(--text-xs); color: var(--text-on-cream-3); text-transform: uppercase; letter-spacing: 0.1em; }
.tier__features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border-on-cream); margin-top: 0.25rem; }
.tier--featured .tier__features { border-top-color: var(--border-on-dark); }
.tier__features li { font-size: var(--text-sm); color: var(--text-on-cream-2); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.tier__features li::before { content: ''; position: absolute; left: 0; top: 0.75em; width: 7px; height: 1px; background: var(--slate); }

.pricing__extras { margin-top: 3rem; padding: 2rem 2.25rem; border: 1px solid var(--border-on-cream); border-radius: 6px; display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .pricing__extras { grid-template-columns: 1fr 1fr; } }
.pricing__extra strong { display: block; font-family: var(--font-display); font-size: var(--text-base); font-weight: 500; color: var(--slate); margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.pricing__extra p { font-size: var(--text-sm); color: var(--text-on-cream-2); max-width: none; }
.pricing__footnote { margin-top: 2rem; font-size: var(--text-sm); color: var(--text-on-cream-3); }
.pricing__sample { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; padding: 0.85rem 1.25rem; border: 1px solid var(--border-on-cream); border-radius: 999px; font-size: var(--text-sm); font-weight: 500; transition: background 0.3s var(--ease-expo), border-color 0.3s var(--ease-expo), color 0.3s var(--ease-expo); }
.pricing__sample:hover { background: var(--slate); color: var(--cream); border-color: var(--slate); }
.pricing__sample svg { width: 14px; height: 14px; }

/* ---- Client experience ---------------------------------------------- */
.client-exp__header { max-width: 60ch; margin-bottom: 4rem; }
.client-exp__grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .client-exp__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.client-quote { padding: 2.25rem; border: 1px solid var(--border-on-dark); border-radius: 6px; display: flex; flex-direction: column; gap: 1.75rem; transition: border-color 0.4s var(--ease-expo), background 0.4s var(--ease-expo); }
.client-quote:hover { border-color: rgba(250, 207, 57, 0.3); background: var(--slate-2); }
.client-quote__text { font-family: var(--font-display); font-size: var(--text-base); font-weight: 500; line-height: 1.5; color: var(--cream); letter-spacing: -0.005em; }
.client-quote__who { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-on-dark-3); display: flex; align-items: center; gap: 0.65rem; margin-top: auto; }
.client-quote__who::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

/* ---- Founder -------------------------------------------------------- */
.founder__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 900px) { .founder__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.founder__meta { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-on-cream-2); padding-bottom: 2rem; border-bottom: 1px solid var(--border-on-cream); margin-bottom: 2rem; display: grid; gap: 0.8rem; }
.founder__meta-row { display: flex; justify-content: space-between; gap: 1rem; }
.founder__meta-row strong { color: var(--slate); font-weight: 500; }
.founder__body { font-size: var(--text-lg); line-height: 1.6; color: var(--text-on-cream-2); }
.founder__body p + p { margin-top: 1.25rem; }
.founder__body strong { color: var(--slate); font-weight: 500; }
.founder__name { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; color: var(--slate); letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.founder__role { font-size: var(--text-sm); color: var(--text-on-cream-3); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 2rem; }

/* ---- FAQ ------------------------------------------------------------ */
.faq__grid { margin-top: 4rem; }
.faq__item { border-top: 1px solid var(--border-on-dark); }
.faq__item:last-child { border-bottom: 1px solid var(--border-on-dark); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.75rem 2.5rem 1.75rem 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem;
  position: relative; transition: color 0.3s var(--ease-expo);
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--cream); letter-spacing: -0.01em; line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary::after {
  content: ''; position: absolute; right: 0; top: 2.1rem; width: 14px; height: 14px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 100% 1px, 1px 100%; background-position: center, center; background-repeat: no-repeat;
  transition: transform 0.5s var(--ease-expo);
}
.faq__item[open] summary { color: var(--gold); }
.faq__item[open] summary::after { transform: rotate(90deg); background-size: 100% 1px, 0 100%; }
.faq__answer { padding: 0 4rem 2rem 0; color: var(--text-on-dark-2); font-size: var(--text-base); line-height: 1.65; max-width: 70ch; animation: fadeIn 0.5s var(--ease-expo); }
.faq__answer p + p { margin-top: 1rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Individuals ---------------------------------------------------- */
.individuals { padding-block: clamp(4rem, 3rem + 3vw, 6rem); }
.individuals__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 800px) { .individuals__grid { grid-template-columns: 1fr auto; gap: 4rem; } }
.individuals__title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; color: var(--slate); }
.individuals__title em { font-style: normal; }
.individuals__body { font-size: var(--text-base); color: var(--text-on-cream-2); margin-top: 1rem; max-width: 55ch; line-height: 1.6; }

/* ---- Final CTA ------------------------------------------------------ */
.cta { text-align: left; position: relative; overflow: hidden; }
.cta__bg-mark { position: absolute; top: 50%; right: -8%; width: min(46vw, 560px); aspect-ratio: 1; transform: translateY(-50%); opacity: 0.05; pointer-events: none; animation: spin 140s linear infinite; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(250, 207, 57, 0.07), transparent 70%); pointer-events: none; }
.cta__inner { position: relative; z-index: 1; max-width: 900px; }
.cta__title { font-family: var(--font-display); font-size: clamp(2.75rem, 2rem + 3.5vw, 5.5rem); font-weight: 500; line-height: 0.95; letter-spacing: -0.035em; color: var(--cream); }
.cta__title em { font-style: normal; color: var(--gold); }
.cta__sub { font-size: var(--text-lg); color: var(--text-on-dark-2); max-width: 54ch; margin-top: 2rem; line-height: 1.55; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.75rem; }

.contact-form { margin-top: 4rem; padding-top: 3.5rem; border-top: 1px solid var(--border-on-dark); display: grid; gap: 1.5rem; max-width: 620px; }
.contact-form__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-on-dark-2); margin-bottom: 0.6rem; display: block; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.9rem 0; background: transparent; border: none; border-bottom: 1px solid var(--border-on-dark); color: var(--cream); font-family: var(--font-body); font-size: var(--text-base); transition: border-color 0.3s var(--ease-expo); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.contact-form__row { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .contact-form__row { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.contact-form__submit { justify-self: start; margin-top: 0.5rem; }
.contact-form__status { font-size: var(--text-sm); color: var(--text-on-dark-2); margin-top: 0.5rem; min-height: 1.25em; }
.contact-form__status.is-error { color: #ff9a8a; }
.contact-form__status.is-success { color: var(--gold); }
.contact-form__intro { font-size: var(--text-sm); color: var(--text-on-dark-3); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.25rem; font-weight: 500; }
/* Honeypot - visually & programmatically hidden, but not display:none (some bots skip those) */
.contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ---- Footer --------------------------------------------------------- */
.footer { padding: 4rem var(--gutter) 2.5rem; background: var(--slate); border-top: 1px solid var(--border-on-dark); }
.footer__inner { max-width: var(--max-w); margin-inline: auto; display: grid; gap: 3rem; }
.footer__top { display: grid; gap: 2.5rem; }
@media (min-width: 700px) { .footer__top { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer__brand { margin-bottom: 1rem; }
.footer__brand img { height: 30px; width: auto; }
.footer__tagline { color: var(--text-on-dark-2); font-size: var(--text-sm); max-width: 40ch; line-height: 1.55; }
.footer__col-title { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-on-dark-3); font-weight: 500; margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a { color: var(--text-on-dark-2); font-size: var(--text-sm); transition: color 0.3s var(--ease-expo); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border-on-dark); font-size: var(--text-xs); color: var(--text-on-dark-3); text-transform: uppercase; letter-spacing: 0.12em; }
.footer__disclaimer { max-width: 80ch; font-size: var(--text-xs); color: var(--text-on-dark-3); line-height: 1.6; text-transform: none; letter-spacing: 0; }

/* ---- Reveal on scroll ----------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .word > span { transform: none; }
  .hero__label, .hero__sub, .hero__actions, .hero__meta, .hero__visual { opacity: 1; animation: none; }
  .hero__bg-mark, .cta__bg-mark, .ticker__inner { animation: none; }
}
