/* ============================================================
   Beyond200 — design system
   Palette pulled from the brand mark: near-black + navy #0d3664 + teal #4cc0d5
   ============================================================ */
:root {
  --black: #0a0f17;
  --black-2: #0f1623;
  --black-3: #182234;
  --accent: #4cc0d5;
  --accent-dim: #2f8fa2;
  --navy: #0d3664;
  --cream: #f2f5f8;
  --grey: #97a3b0;
  --line: rgba(242, 245, 248, 0.12);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --section-gap: clamp(6rem, 14vh, 11rem);
}

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

html { scroll-behavior: auto; background: var(--black); }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--black); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__mark { width: 56px; margin: 0 auto 1.5rem; border-radius: 14px; }
.preloader__count {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700; line-height: 1; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.preloader__count::after { content: "+"; color: var(--cream); }
.preloader__tag { margin-top: 1.25rem; color: var(--grey); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ============ Cursor ============ */
.cursor, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed; z-index: 999; top: 0; left: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    display: block; position: fixed; z-index: 998; top: 0; left: 0;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(76, 192, 213, 0.5); pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  }
  .cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(76, 192, 213, 0.08); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: 99px;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.35s ease; }
.btn:hover svg { transform: translate(3px, -3px); }
.btn--solid { background: var(--accent); color: var(--black); }
.btn--solid::before {
  content: ""; position: absolute; inset: 0; border-radius: 99px;
  background: var(--cream); transform: translateY(101%); transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn--solid:hover::before { transform: translateY(0); }
.btn--outline { border: 1px solid var(--line); color: var(--cream); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn--xl { padding: 1.3rem 3rem; font-size: 1.15rem; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(10, 15, 23, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__mark { width: 36px; border-radius: 9px; }
.nav__wordmark { height: 18px; width: auto; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.9rem; color: var(--grey); position: relative;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 70% 20%, rgba(76, 192, 213, 0.10), transparent 60%),
    radial-gradient(ellipse 90% 70% at 30% 80%, rgba(13, 54, 100, 0.35), transparent 65%),
    linear-gradient(to bottom, rgba(10,15,23,0.25), rgba(10,15,23,0) 35%, rgba(10,15,23,0.9) 92%);
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey);
  margin-bottom: clamp(1rem, 3vh, 2rem);
}
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 192, 213, 0.5); }
  60% { box-shadow: 0 0 0 10px rgba(76, 192, 213, 0); }
}
.hero__title {
  font-size: clamp(3.2rem, 11.5vw, 11rem);
  line-height: 0.94; font-weight: 700; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero__title em { text-transform: none; color: var(--accent); letter-spacing: -0.01em; }
/* padding + negative margin give italic descenders room inside the reveal mask */
.hero__line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-top: clamp(2rem, 5vh, 3.5rem);
}
.hero__sub { max-width: 34ch; color: var(--grey); font-size: clamp(0.95rem, 1.6vw, 1.1rem); }
.hero__scrollhint {
  position: absolute; right: var(--pad); top: 50%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: var(--grey); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scrollline { width: 1px; height: 64px; background: var(--line); position: relative; overflow: hidden; }
.hero__scrollline::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--accent); animation: scrolldrop 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes scrolldrop { to { top: 110%; } }

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.2rem 0; overflow: hidden; background: var(--black-2);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2rem; padding-right: 2rem;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap;
}
.marquee__item em { color: var(--accent); text-transform: none; }
.marquee__sep { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ============ Sections ============ */
.section { padding: var(--section-gap) var(--pad) 0; }
.section__head { margin-bottom: clamp(3rem, 7vh, 5rem); max-width: 1100px; }
.section__index {
  font-size: 0.8rem; color: var(--accent); letter-spacing: 0.25em;
  margin-bottom: 1.2rem; font-variant-numeric: tabular-nums;
}
.section__index::before { content: "("; color: var(--grey); }
.section__index::after { content: ")"; color: var(--grey); }
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.02em;
}
.section__title em { color: var(--accent); }
.section__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.section__title .word > span { display: inline-block; will-change: transform; }
.section__lede {
  margin-top: 1.8rem; max-width: 56ch;
  color: var(--grey); font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.6;
}
.section__lede strong { color: var(--accent); font-weight: 600; }

/* ============ Why — sticky card stack ============ */
.why__stack { display: flex; flex-direction: column; gap: 1.2rem; }
.why-card {
  position: sticky; top: 14vh;
  background: var(--black-2);
  border: 1px solid var(--line); border-radius: 24px;
  min-height: 60vh; display: flex; overflow: hidden;
  will-change: transform;
}
.why-card--teal { background: var(--accent); color: var(--black); border-color: transparent; }
.why-card--teal .why-card__kicker { color: rgba(10, 15, 23, 0.6); }
.why-card--teal .why-card__text { color: var(--black); }
.why-card__inner {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(1.6rem, 4vw, 3.5rem); gap: 2rem;
}
.why-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.why-card__kicker {
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  padding-top: 0.4rem;
}
.why-card__num {
  font-size: clamp(3.4rem, 9vw, 8rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.why-card__num small { font-size: 0.38em; font-weight: 600; letter-spacing: 0; }
.why-card__text {
  font-size: clamp(1.25rem, 2.6vw, 2rem); line-height: 1.3; font-weight: 500;
  max-width: 24ch; color: var(--cream);
}
.why-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28;
}

/* ============ Quote ============ */
.quote { display: flex; justify-content: center; }
.quote__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.8rem, 5vw, 4rem); line-height: 1.25;
  max-width: 22ch; text-align: center;
}
.quote__text .w { opacity: 0.12; transition: none; }

/* ============ Process ============ */
.process__list { list-style: none; max-width: 1100px; }
.process__item {
  display: flex; gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vh, 2.8rem) 0;
  border-top: 1px solid var(--line);
}
.process__item:last-child { border-bottom: 1px solid var(--line); }
.process__num {
  font-size: 1rem; color: var(--accent); font-weight: 600;
  width: 3rem; height: 3rem; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process__body h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; margin-bottom: 0.5rem; }
.process__body p { color: var(--grey); font-size: clamp(1rem, 1.8vw, 1.15rem); max-width: 52ch; }
.process__item--cta .btn { margin-top: 1.4rem; }

/* ============ Curriculum ============ */
.curriculum { position: relative; }
.curr { max-width: 1200px; }
.curr__row {
  display: flex; align-items: baseline; gap: clamp(1.2rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 3.5vh, 2.6rem) 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  cursor: default;
}
.curr__row:last-child { border-bottom: 1px solid var(--line); }
@media (pointer: fine) {
  .curr__row:hover { padding-left: 1.5rem; }
}
.curr__index { font-size: 0.95rem; color: var(--accent); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.curr__title {
  font-size: clamp(1.5rem, 3.6vw, 2.8rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1;
}
.curr__desc { margin-top: 0.6rem; color: var(--grey); font-size: clamp(0.95rem, 1.7vw, 1.1rem); }
.curr__sub { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.curr__sub li { color: var(--grey); font-size: clamp(0.95rem, 1.7vw, 1.1rem); padding-left: 1.2rem; position: relative; }
.curr__sub li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.curr__sub strong { color: var(--cream); font-weight: 600; }
.curr__float {
  position: fixed; z-index: 50; top: 0; left: 0;
  width: 260px; height: 340px; border-radius: 16px; overflow: hidden;
  pointer-events: none; opacity: 0;
  transform: translate(-50%, -50%);
}
.curr__float img { width: 100%; height: 100%; object-fit: cover; }

/* ============ Facilitator ============ */
.fac {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem); align-items: center; max-width: 1300px;
}
.fac__media { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; }
.fac__media > img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.fac__badge {
  position: absolute; right: 1.2rem; bottom: 1.2rem;
  width: clamp(90px, 22%, 140px); border-radius: 16px; overflow: hidden;
  border: 2px solid var(--accent); rotate: 3deg;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.fac__name { font-size: clamp(2rem, 4.6vw, 3.8rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.fac__name .word { display: inline-block; overflow: hidden; vertical-align: top; }
.fac__name .word > span { display: inline-block; }
.fac__role { margin-top: 1rem; color: var(--accent); font-size: clamp(0.95rem, 1.7vw, 1.1rem); letter-spacing: 0.04em; }
.fac__quote {
  margin-top: 2rem; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--cream);
}
.fac__quote .w { opacity: 0.12; }
.fac .btn { margin-top: 2.2rem; }

/* ============ Pricing ============ */
.pricing { position: relative; overflow: hidden; padding-bottom: clamp(3rem, 6vh, 5rem); }
.pricing__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pricing__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(13, 54, 100, 0.45), transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 40%, rgba(76, 192, 213, 0.10), transparent 60%);
}
.pricing__inner { position: relative; z-index: 1; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

.pricing__toggle {
  position: relative; display: flex; width: max-content;
  margin: 0 auto clamp(2.5rem, 6vh, 4rem);
  border: 1px solid var(--line); border-radius: 99px; padding: 5px;
  background: rgba(10, 15, 23, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pricing__thumb {
  position: absolute; top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px); border-radius: 99px; background: var(--accent);
  will-change: transform;
}
.pricing__cur {
  flex: 1 1 0; text-align: center; white-space: nowrap;
  position: relative; z-index: 1; appearance: none; border: 0; background: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--grey); padding: 0.65rem 1.8rem; border-radius: 99px;
  transition: color 0.3s ease;
}
.pricing__cur.is-active { color: var(--black); }
.pricing__cur:not(.is-active):hover { color: var(--cream); }

.pricing__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1000px; margin: 0 auto;
}
.price-card {
  display: flex; flex-direction: column;
  background: rgba(15, 22, 35, 0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), border-color 0.35s ease;
}
@media (pointer: fine) {
  .price-card:hover { transform: translateY(-8px); border-color: rgba(76, 192, 213, 0.45); }
}
.price-card--featured {
  border-color: rgba(76, 192, 213, 0.55);
  background:
    radial-gradient(ellipse 120% 90% at 50% -20%, rgba(76, 192, 213, 0.14), transparent 60%),
    rgba(15, 22, 35, 0.85);
  box-shadow: 0 30px 80px rgba(13, 54, 100, 0.35);
}
.price-card__badge {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(76, 192, 213, 0.4);
  padding: 0.4rem 0.9rem; border-radius: 99px; margin-bottom: 1.6rem;
}
.price-card--featured .price-card__badge { background: var(--accent); color: var(--black); border-color: transparent; }
.price-card__name { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; margin-bottom: 0.8rem; }
.price-card__price {
  display: flex; align-items: baseline; gap: 0.2rem;
  margin-bottom: 1.8rem; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card__symbol { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; color: var(--accent); }
.price-card__amount { font-size: clamp(3rem, 6.5vw, 5rem); font-weight: 700; letter-spacing: -0.03em; }
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.2rem; }
.price-card__list li {
  position: relative; padding-left: 1.7rem;
  color: var(--grey); font-size: 0.98rem; line-height: 1.5;
}
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.32em;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(76, 192, 213, 0.15);
  border: 1px solid rgba(76, 192, 213, 0.5);
}
.price-card__list li::after {
  content: ""; position: absolute; left: 5px; top: calc(0.32em + 5px);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.price-card__cta { margin-top: auto; justify-content: center; }
.pricing__note { text-align: center; margin-top: 2rem; color: var(--grey); font-size: 0.85rem; }

/* ============ FAQ ============ */
.faq__list { max-width: 900px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: clamp(1.4rem, 3vh, 2rem) 0; cursor: pointer;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600;
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon { position: relative; width: 34px; height: 34px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s ease, border-color 0.3s ease; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; transition: opacity 0.25s ease; }
.faq__item[open] .faq__icon { transform: rotate(135deg); background: var(--accent); border-color: var(--accent); color: var(--black); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 0 1.8rem; color: var(--grey); max-width: 60ch; font-size: clamp(0.98rem, 1.8vw, 1.15rem); line-height: 1.65; }

/* ============ CTA ============ */
.cta { padding-bottom: var(--section-gap); }
.cta__inner {
  background:
    radial-gradient(ellipse 90% 120% at 50% 130%, rgba(76, 192, 213, 0.28), transparent 60%),
    radial-gradient(ellipse 120% 100% at 50% 120%, rgba(13, 54, 100, 0.85), transparent 75%),
    var(--black-2);
  border: 1px solid var(--line); border-radius: 32px;
  padding: clamp(3.5rem, 10vh, 7rem) var(--pad);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
}
.cta__kicker { font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); }
.cta__title { font-size: clamp(2.4rem, 7vw, 6rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; max-width: 14ch; }
.cta__title em { color: var(--accent); }
.cta__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.cta__title .word > span { display: inline-block; }
.cta .btn { margin-top: 0.6rem; }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem, 8vh, 5rem) var(--pad) 1.5rem; overflow: hidden; }
.footer__top {
  display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.footer__label { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); margin-bottom: 1.2rem; }
.footer__big {
  display: block; font-size: clamp(1.3rem, 3.4vw, 2.4rem); font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 0.4rem; transition: color 0.25s ease;
}
.footer__big:hover { color: var(--accent); }
.footer__socials { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer__socials a { color: var(--grey); font-size: 1rem; transition: color 0.25s ease, transform 0.25s ease; }
.footer__socials a:hover { color: var(--accent); transform: translateX(6px); }
.footer__wordmark { width: 100%; height: auto; opacity: 0.95; margin-bottom: 2rem; will-change: transform; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--grey); font-size: 0.85rem;
}
.footer__bottom a { transition: color 0.25s ease; }
.footer__bottom a:hover { color: var(--accent); }

/* ============ Reveal helpers (JS adds motion) ============ */
[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-hero-fade] { opacity: 0; }
.no-js [data-reveal], .no-js [data-hero-fade] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  .hero__dot, .hero__scrollline::after { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .fac { grid-template-columns: 1fr; }
  .why-card { min-height: 55vh; top: 12vh; }
}
@media (max-width: 600px) {
  /* lift the eyebrow into the dark area above the wave crest */
  .hero__content {
    flex: 1;
    display: flex; flex-direction: column; align-items: flex-start;
    padding-top: clamp(6rem, 16vh, 9rem);
  }
  .hero__eyebrow { margin-bottom: 0; font-size: 0.63rem; }
  .hero__title { margin-top: auto; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scrollhint { display: none; }
  .nav__wordmark { display: none; }
  .why-card { min-height: auto; }
  .why-card__inner { gap: 3rem; }
  .why-card__text { font-size: 1.25rem; max-width: none; }
  .curr__row { flex-direction: column; gap: 0.6rem; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__big { font-size: 1.25rem; }
}
