/* ============================================================
   ROXU · Kink Education & Consulting, style.css
   Direction A (Atelier): Saira Condensed + Hanken Grotesk
   Warm near-black canvas · teal accent · film grain
   ============================================================ */

:root {
  --bg:         #0e0d0b;
  --bg-raise:   #161410;
  --field:      #ffffff0a;

  --bone:       #f6f4ec;
  --bone-dim:   #cfcabd;
  --graphite:   #8f897c;
  --ash:        #3a352d;
  --ash-soft:   #2a261f;

  --accent:     #3f9d86;
  --accent-ink: #07120f;

  --font-body:    'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Saira Condensed', ui-sans-serif, sans-serif;

  --s-8: 8px; --s-16: 16px; --s-24: 24px; --s-32: 32px;
  --s-48: 48px; --s-64: 64px; --s-80: 80px; --s-112: 112px;

  --gutter:      clamp(20px, 5vw, 64px);
  --section-gap: clamp(72px, 11vw, 144px);
  --radius-pill: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; overflow-x: hidden; } /* Lenis handles smoothness */

body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

::selection { background: var(--accent); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Layout ─────────────────────────────────────────────── */
.wrap { width: 100%; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.divider { height: 1px; background: var(--ash-soft); border: 0; margin: 0; }

.two-col { display: grid; gap: clamp(32px, 6vw, 80px); }
@media (min-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}

/* ─── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 var(--s-24);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--accent); display: inline-block;
  transform-origin: left;
}
.eyebrow--plain::before { display: none; }

.statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 5.2vw, 56px);
  line-height: 1.04; letter-spacing: -0.025em;
  color: var(--bone); margin: 0; max-width: 18ch;
  text-wrap: balance;
}

.lead {
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.45; font-weight: 300;
  color: var(--bone-dim); max-width: 34ch;
  letter-spacing: -0.015em; margin: 0;
}

.body-copy {
  font-size: 17px; line-height: 1.62;
  color: var(--graphite); max-width: 60ch; margin: 0;
}
.body-copy strong { color: var(--bone); font-weight: 500; }
.body-copy + .body-copy { margin-top: var(--s-16); }

.micro {
  font-size: 12px; color: var(--graphite);
  letter-spacing: 0.04em;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-24); padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom-color: var(--ash-soft);
}
.brandmark {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; letter-spacing: 0.02em;
}
.brandmark .dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--bone);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.brandmark:hover .dot { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.brandmark .label { font-size: 14px; white-space: nowrap; }
.brandmark .label .sub { color: var(--graphite); }
.header-meta {
  display: none;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--graphite);
}
@media (min-width: 900px) { .header-meta { display: block; } }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1),
              background 0.25s, color 0.25s, border-color 0.25s,
              box-shadow 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.35s cubic-bezier(.2,.7,.3,1); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { background: var(--bone); color: var(--bg); }
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 32px color-mix(in srgb, var(--accent) 30%, transparent); }

.btn--ghost { background: transparent; color: var(--bone); border-color: var(--ash); }
.btn--ghost:hover { border-color: var(--bone-dim); }

.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { box-shadow: 0 8px 32px color-mix(in srgb, var(--accent) 40%, transparent); filter: brightness(1.08); }

.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 18px 38px; font-size: 17px; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(48px, 9vw, 120px) clamp(56px, 9vw, 112px);
  overflow: hidden;
}

/* Hero background image with slow Ken Burns drift */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  opacity: 0.55;
  transform-origin: 65% 40%;
  animation: kenburns 36s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.12) translateX(-2%); }
}
/* Scrim: keep the left side dark so the wordmark stays readable */
.hero-scrim {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, var(--bg) 18%, color-mix(in srgb, var(--bg) 55%, transparent) 55%, color-mix(in srgb, var(--bg) 25%, transparent) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 70%, transparent) 0%, transparent 30%, transparent 62%, var(--bg) 100%);
}

/* Ambient accent glow drifting behind the hero type */
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--accent) 14%, transparent) 0%,
    transparent 62%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero > *:not(.hero-glow):not(.hero-bg):not(.hero-scrim) { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: var(--s-32); }

/* Hero headline, Saira Condensed, huge */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(58px, 13vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
}

/* Clip container for line reveal animation */
.clip {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em; /* prevent descender clipping */
}
.clip-i {
  display: block;
  will-change: transform;
}

/* Accent line, lowercase with a different weight */
.hero-h1 .h1-accent {
  display: block;
  font-style: normal;
  font-weight: 300;
  text-transform: none;
  color: var(--accent);
  font-size: clamp(44px, 9vw, 128px);
  will-change: transform, opacity;
}

.hero-foot {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: var(--s-32);
  margin-top: clamp(40px, 7vw, 80px);
}
.hero-foot .lead { max-width: 36ch; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.section-cta { margin-top: var(--s-32); }

/* ─── Ticker ─────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ash-soft);
  border-bottom: 1px solid var(--ash-soft);
  padding: 16px 0;
  position: relative;
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-roll 28s linear infinite;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--graphite);
}
.ticker-track .sep { color: var(--accent); opacity: 0.7; }
@keyframes ticker-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ─── Topics list ────────────────────────────────────────── */
.topics { border-top: 1px solid var(--ash); }
.topic {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: baseline;
  gap: var(--s-24);
  padding: var(--s-24) 0;
  border-bottom: 1px solid var(--ash);
  cursor: default;
  transition: padding-left 0.4s cubic-bezier(.2,.7,.3,1);
}
.topic .num {
  font-size: 13px; color: var(--graphite);
  font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.topic .name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--bone);
  transition: color 0.3s;
}
.topic .desc {
  font-size: 14px; color: var(--graphite);
  max-width: 30ch; justify-self: end; text-align: right;
  transition: color 0.3s;
}
.topic:hover { padding-left: 18px; }
.topic:hover .name { color: var(--accent); }
.topic:hover .num { color: var(--accent); }

/* ─── How it works ───────────────────────────────────────── */
.facts {
  display: grid; gap: 1px;
  background: var(--ash); border: 1px solid var(--ash);
}
@media (min-width: 900px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact { background: var(--bg); padding: var(--s-24); }
.fact .k {
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--graphite); margin-bottom: 8px;
}
.fact .v {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -0.02em;
}

.path { display: grid; gap: 1px; background: var(--ash); border: 1px solid var(--ash); }
@media (min-width: 900px) { .path { grid-template-columns: repeat(3, 1fr); } }
.path-step {
  background: var(--bg); padding: var(--s-32);
  display: flex; flex-direction: column; gap: var(--s-16);
  transition: background 0.3s;
}
.path-step:hover { background: var(--bg-raise); }
.path-step .step-no {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.path-step h3 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(22px, 2.6vw, 28px); margin: 0; letter-spacing: -0.02em;
}
.path-step p { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.55; }

/* ─── Is this you (mirror) ───────────────────────────────── */
.mirror-head { margin-bottom: clamp(32px, 5vw, 56px); }
.mirror { border-top: 1px solid var(--ash); }
.mirror-item {
  padding: var(--s-24) 0;
  border-bottom: 1px solid var(--ash-soft);
  transition: padding-left 0.35s cubic-bezier(.2,.7,.3,1);
}
.mirror-item:hover { padding-left: 12px; }
.mirror-item .txt {
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 300;
  color: var(--bone);
  line-height: 1.4;
}
.mirror-item .txt span { color: var(--graphite); display: block; font-size: clamp(15px, 1.8vw, 17px); margin-top: 4px; }
.mirror-close { margin-top: var(--s-32); max-width: 52ch; }
.mirror-close { color: var(--bone-dim); }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing-head { margin-bottom: clamp(32px, 5vw, 56px); }
.price-grid { display: grid; gap: 1px; background: var(--ash); border: 1px solid var(--ash); }
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  background: var(--bg);
  padding: var(--s-32);
  display: flex; flex-direction: column; gap: var(--s-16);
  transition: background 0.3s;
}
.price-card:hover { background: var(--bg-raise); }
.price-card--hl {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 7%, var(--bg)),
    var(--bg));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
  animation: card-breathe 5s ease-in-out infinite;
}
@keyframes card-breathe {
  0%, 100% { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent); }
  50%      { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent),
                         0 0 32px -12px color-mix(in srgb, var(--accent) 35%, transparent); }
}
.price-tag {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.price-k {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--graphite);
}
.price-v {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(44px, 6vw, 72px); line-height: 0.95;
  letter-spacing: -0.02em; color: var(--bone);
}
.price-card--hl .price-v { color: var(--accent); }
.price-d { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.55; }
.price-note { display: block; margin-top: var(--s-24); }

/* ─── Texture band with pull-quote ───────────────────────── */
.band {
  position: relative;
  min-height: clamp(320px, 48vh, 520px);
  display: grid; place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--ash-soft);
  border-bottom: 1px solid var(--ash-soft);
}
.band-img { position: absolute; inset: -18% 0; }
.band-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  will-change: transform;
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--bg) 0%, transparent 28%, transparent 72%, var(--bg) 100%);
}
.band-quote {
  position: relative; z-index: 1;
  margin: 0; padding-inline: var(--gutter);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(30px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--bone);
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.band-quote-accent { color: var(--accent); }

/* ─── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ash-soft);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 700px) {
  .sticky-cta { display: block; }
}

/* ─── Scroll progress hairline ───────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 300; pointer-events: none;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ─── What this is not ───────────────────────────────────── */
.not-grid { display: grid; gap: var(--s-8); }
.not-item {
  display: flex; align-items: baseline; gap: var(--s-16);
  padding: var(--s-24) 0; border-bottom: 1px solid var(--ash-soft);
  transition: padding-left 0.35s cubic-bezier(.2,.7,.3,1);
}
.not-item:hover { padding-left: 10px; }
.not-item .mark {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(20px, 2.2vw, 24px); color: var(--graphite);
  flex: none; width: 2.4ch;
  transition: color 0.3s;
}
.not-item:hover .mark { color: var(--accent); }
.not-item .txt { font-size: clamp(18px, 2.1vw, 22px); font-weight: 300; color: var(--bone); }
.not-item .txt span { color: var(--graphite); }

/* ─── Who I am ───────────────────────────────────────────── */
.who-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (min-width: 900px) {
  .who-grid { grid-template-columns: 0.8fr 1.2fr; }
}
.who-portrait {
  aspect-ratio: 3/4;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--ash);
  background: #0a0908;
}
.who-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  filter: contrast(1.03);
}
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--ash); }
.faq-item { border-bottom: 1px solid var(--ash); overflow: hidden; }
.faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: var(--s-24) 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-24); text-align: left;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(19px, 2.4vw, 26px); letter-spacing: -0.018em;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.faq-trigger:hover,
.faq-trigger.is-open { color: var(--bone); }
.faq-trigger.is-open { color: var(--accent); }

.faq-icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--ash);
  display: grid; place-items: center; position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.faq-trigger.is-open .faq-icon { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.i-h, .i-v {
  position: absolute; background: var(--bone-dim);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), opacity 0.3s;
}
.i-h { width: 11px; height: 1px; }
.i-v { width: 1px; height: 11px; }
.faq-trigger.is-open .i-v { transform: scaleY(0); opacity: 0; }
.faq-trigger.is-open .i-h, .faq-trigger.is-open .i-v { background: var(--accent); }

.faq-body { overflow: hidden; }
.faq-answer {
  padding-bottom: var(--s-32);
}
.faq-answer p {
  margin: 0; max-width: 56ch;
  color: var(--graphite); font-size: 16px; line-height: 1.65;
}

/* ─── Final CTA ───────────────────────────────────────────── */
.finalcta { text-align: left; }
.finalcta-h2 {
  font-family: var(--font-display); font-weight: 200;
  text-transform: uppercase;
  font-size: clamp(52px, 12vw, 150px);
  line-height: 0.88; letter-spacing: -0.03em;
  margin: 0 0 var(--s-32);
  color: var(--bone);
}
.finalcta-h2 .h1-accent {
  text-transform: none;
  font-weight: 300;
  font-size: clamp(44px, 9vw, 128px);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--ash);
  padding-block: var(--s-64) var(--s-48);
}
.footer-top {
  display: flex; flex-wrap: wrap;
  gap: var(--s-48); justify-content: space-between;
  margin-bottom: var(--s-64);
}
.footer-mark {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(40px, 9vw, 96px); line-height: 0.9;
  letter-spacing: -0.04em; color: var(--bone);
}
.footer-cols { display: flex; flex-wrap: wrap; gap: var(--s-48); }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.footer-col .h {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--graphite);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px; color: var(--bone-dim);
  transition: color 0.2s; width: max-content;
}
.footer-col a:hover { color: var(--accent); }
.footer-base {
  display: flex; flex-wrap: wrap; gap: var(--s-16);
  justify-content: space-between;
  padding-top: var(--s-24); border-top: 1px solid var(--ash-soft);
  font-size: 12px; color: var(--graphite);
}

/* ─── Image placeholders ──────────────────────────────────── */
.tex {
  position: relative; overflow: hidden;
  background: var(--bg-raise); border-radius: 2px;
}
.tex::after {
  content: attr(data-label);
  position: absolute; left: 16px; bottom: 14px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--graphite);
}
.tex--smoke {
  background:
    radial-gradient(90% 120% at 70% 20%, #ffffff10, transparent 55%),
    radial-gradient(70% 90% at 10% 90%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 60%),
    linear-gradient(180deg, #15120e, #0a0908);
}

/* ─── Custom Cursor ───────────────────────────────────────── */
.cur {
  width: 36px; height: 36px;
  border: 1px solid color-mix(in srgb, var(--bone) 40%, transparent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  display: none;
  mix-blend-mode: difference;
}
.cur-dot {
  width: 5px; height: 5px;
  background: var(--bone);
  border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}
.has-cursor .cur,
.has-cursor .cur-dot { display: block; }
.has-cursor * { cursor: none !important; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .topic { grid-template-columns: 40px 1fr; }
  .topic .desc { display: none; }
  .site-header { gap: 12px; padding-inline: 20px; }
  .brandmark .sub { display: none; }
  .footer-top { gap: var(--s-32); }
  .not-item { gap: var(--s-8); }
}

/* compact header CTA */
.cta-short { display: none; }
@media (max-width: 600px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }
}

/* ─── Narrow screens: keep the hero wordmark inside the viewport ─── */
@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(42px, 14.5vw, 56px); }
  .hero-h1 .h1-accent { font-size: clamp(32px, 11vw, 44px); }
  .finalcta-h2 { font-size: clamp(42px, 13vw, 56px); }
  .finalcta-h2 .h1-accent { font-size: clamp(32px, 10vw, 44px); }
}

/* ─── Draw-in lines (eyebrows + dividers), JS adds .drawn ── */
body.anim .eyebrow:not(.eyebrow--plain)::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(.2,.7,.3,1);
}
body.anim .eyebrow.drawn::before { transform: scaleX(1); }
body.anim .divider {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(.2,.7,.3,1);
}
body.anim .divider.drawn { transform: scaleX(1); }

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  body::after { display: none; }
  .topic, .not-item, .btn, .faq-trigger { transition: none; }
  .price-card--hl { animation: none; }
  .hero-bg img { animation: none; }
  body.anim .eyebrow:not(.eyebrow--plain)::before,
  body.anim .divider { transform: none; transition: none; }
}
