/* ============================================================
   FluentOrg design system.

   The product's own look: a light, rounded, violet-and-navy system
   built for fluentorg.com and the learner portal. It is deliberately
   self-contained. The consultancy's site (caldermontmanagement.com)
   keeps the purple analyst-report system in assets/ds/ and
   assets/css/site.css; nothing here touches those files, and no
   product page loads them any more.

   Naming: every class is prefixed fo- except the buy-page components,
   which keep the names buy.js and its generated markup already use.
   ============================================================ */

/* ---------- Type: Inter, served from here ----------
   Self-hosted rather than fetched from Google Fonts, so no visitor's address
   goes to a third party the privacy policy does not name. One variable file,
   Latin, Greek, arrows, operators and shapes, weights 100 to 900; the
   licence sits beside it. */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --fo-violet: #5B3DF5;
  --fo-violet-2: #7B5CFF;
  --fo-violet-deep: #4A2ED9;
  --fo-blue: #4F86FF;
  --fo-navy: #1B1642;
  --fo-band: #1D1655;
  --fo-text: #47446A;
  --fo-muted: #66638A;
  --fo-line-mid: #8A86B3;
  --fo-line: #E6E4F5;
  --fo-line-strong: #D6D3EE;
  --fo-lav: #F6F5FF;
  --fo-lav-2: #EEEBFF;
  --fo-lav-3: #E4E0FF;
  --fo-page: #FFFFFF;
  --fo-ok: #1F8A5B;
  --fo-ok-fill: #E6F6EE;
  --fo-warn: #9A6200;
  --fo-warn-fill: #FFF3D6;
  --fo-danger: #C4302B;
  --fo-danger-fill: #FDEBEA;

  --fo-gradient: linear-gradient(135deg, #6A4BFF 0%, #5B3DF5 55%, #4F86FF 130%);
  --fo-gradient-soft: linear-gradient(180deg, #FBFBFF 0%, #F1F0FF 100%);

  --fo-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fo-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fo-radius: 18px;
  --fo-radius-sm: 12px;
  --fo-radius-xs: 8px;
  --fo-shadow: 0 1px 2px rgba(27, 22, 66, 0.04), 0 14px 36px rgba(76, 56, 200, 0.09);
  --fo-shadow-lift: 0 2px 4px rgba(27, 22, 66, 0.05), 0 24px 56px rgba(76, 56, 200, 0.16);
  --fo-maxw: 1160px;
  --fo-gutter: 32px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fo-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fo-text);
  background: var(--fo-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--fo-violet); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; color: var(--fo-navy); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
img, svg, video { max-width: 100%; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 88px; }
:focus-visible { outline: 3px solid var(--fo-violet); outline-offset: 3px; border-radius: 6px; }
.fo-band :focus-visible, .fo-footer :focus-visible, .fo-section--dark :focus-visible { outline-color: #fff; }

/* ---------- Type ---------- */
.fo-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fo-violet); margin: 0;
}
.fo-eyebrow b { color: var(--fo-violet-deep); }
.fo-h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.fo-h2 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-top: 14px; }
.fo-h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.fo-lead { font-size: 18px; line-height: 1.6; color: var(--fo-text); max-width: 62ch; }
.fo-lead--sm { font-size: 16.5px; }
.fo-muted { color: var(--fo-muted); }
.fo-small { font-size: 13.5px; }
.fo-center { text-align: center; }
.fo-center .fo-lead { margin-left: auto; margin-right: auto; }

/* ---------- Icons ---------- */
.fo-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.fo-icon--sm { width: 18px; height: 18px; }
.fo-icon--xs { width: 16px; height: 16px; stroke-width: 2; }

/* ---------- Buttons ---------- */
.fo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--fo-font); font-size: 15px; font-weight: 600; line-height: 1;
  padding: 15px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.fo-btn:hover { text-decoration: none; transform: translateY(-1px); }
.fo-btn:active { transform: translateY(0); }
.fo-btn .fo-icon { width: 18px; height: 18px; stroke-width: 2.2; }
.fo-btn--primary { background: var(--fo-gradient); color: #fff; box-shadow: 0 8px 22px rgba(91, 61, 245, 0.28); }
.fo-btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(91, 61, 245, 0.36); }
.fo-btn--ghost { background: #fff; color: var(--fo-violet); border-color: var(--fo-line-strong); }
.fo-btn--ghost:hover { border-color: var(--fo-violet); background: var(--fo-lav); }
.fo-btn--white { background: #fff; color: var(--fo-violet); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18); }
.fo-btn--white:hover { color: var(--fo-violet-deep); }
.fo-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.fo-btn--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.fo-btn--link { padding: 12px 6px; color: var(--fo-violet); background: none; border: 0; }
.fo-btn--link:hover { transform: none; text-decoration: underline; text-underline-offset: 4px; }
.fo-btn--sm { font-size: 14px; padding: 11px 18px; }
.fo-btn--block { display: flex; width: 100%; }
.fo-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.fo-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; color: var(--fo-violet); }
.fo-link .fo-icon { width: 16px; height: 16px; stroke-width: 2.2; transition: transform .15s ease; }
.fo-link:hover { text-decoration: none; }
.fo-link:hover .fo-icon { transform: translateX(3px); }

/* ---------- Brand lockup ---------- */
.fo-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fo-navy); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.fo-brand:hover { text-decoration: none; }
.fo-brand__mark { display: block; height: 30px; width: auto; }
.fo-brand--light { color: #fff; }

/* ---------- Top nav ---------- */
.fo-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(230, 228, 245, 0.9);
}
.fo-nav__inner {
  max-width: var(--fo-maxw); margin: 0 auto; padding: 0 var(--fo-gutter);
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.fo-nav__links { display: flex; align-items: center; gap: 34px; margin: 0 auto; }
.fo-nav__links a { color: var(--fo-navy); font-size: 15px; font-weight: 500; }
.fo-nav__links a:hover { color: var(--fo-violet); text-decoration: none; }
.fo-nav__cta { display: flex; align-items: center; gap: 12px; }
.fo-nav__cta .fo-btn { padding: 12px 20px; font-size: 14.5px; }
.fo-nav__signin { color: var(--fo-navy); font-weight: 600; font-size: 14.5px; }
.fo-nav__links .fo-nav__signin { display: none; }
.fo-nav__signin:hover { color: var(--fo-violet); text-decoration: none; }
.fo-nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--fo-line); background: #fff; color: var(--fo-navy); cursor: pointer;
}
.fo-nav__toggle .fo-icon--close { display: none; }
.fo-nav.is-open .fo-nav__toggle .fo-icon--menu { display: none; }
.fo-nav.is-open .fo-nav__toggle .fo-icon--close { display: block; }
@media (max-width: 960px) {
  .fo-nav__inner { height: 64px; }
  .fo-nav__toggle { display: inline-flex; }
  .fo-nav__links, .fo-nav__cta .fo-nav__signin { display: none; }
  .fo-nav__cta .fo-btn { padding: 10px 16px; font-size: 14px; }
  .fo-nav.is-open .fo-nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 64px;
    background: #fff; border-bottom: 1px solid var(--fo-line); box-shadow: var(--fo-shadow);
    padding: 8px 16px 16px; margin: 0;
  }
  .fo-nav.is-open .fo-nav__links a { padding: 14px 8px; border-bottom: 1px solid var(--fo-line); font-size: 16px; }
  .fo-nav.is-open .fo-nav__links a:last-child { border-bottom: 0; }
  .fo-nav.is-open .fo-nav__links .fo-nav__signin { display: block; }
}
@media (max-width: 420px) { .fo-brand { font-size: 19px; } .fo-brand__mark { height: 26px; } }

/* ---------- Hero ---------- */
.fo-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FBFBFF 0%, #F3F2FF 60%, #EEF0FF 100%);
}
.fo-hero::before, .fo-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); opacity: 0.55;
}
.fo-hero::before { width: 620px; height: 620px; right: -140px; top: -180px; background: radial-gradient(circle, rgba(140, 116, 255, 0.55) 0, rgba(140, 116, 255, 0) 70%); }
.fo-hero::after { width: 520px; height: 520px; left: -180px; bottom: -220px; background: radial-gradient(circle, rgba(79, 134, 255, 0.35) 0, rgba(79, 134, 255, 0) 70%); }
.fo-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--fo-maxw); margin: 0 auto; padding: 72px var(--fo-gutter) 84px;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 40px; align-items: center;
}
.fo-hero__copy .fo-h1 { margin-top: 18px; max-width: 14ch; font-size: clamp(36px, 4.6vw, 58px); }
.fo-hero__copy .fo-lead { margin-top: 22px; max-width: 46ch; }
.fo-hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 34px; }
.fo-hero__proof { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 30px; font-size: 14px; color: var(--fo-text); }
.fo-hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.fo-hero__proof .fo-icon { width: 16px; height: 16px; color: var(--fo-violet); stroke-width: 2.2; }
@media (max-width: 960px) {
  .fo-hero__inner { grid-template-columns: 1fr; padding: 48px var(--fo-gutter) 56px; gap: 32px; }
  .fo-hero__copy .fo-h1 { max-width: 16ch; }
}

/* The orbit: thirteen functions around one centre. Node positions are
   percentages precomputed for a circle of radius 42% about the centre,
   set on each node as --x and --y so the SVG connector lines and the HTML
   nodes share one geometry. */
.fo-orbit { position: relative; width: min(100%, 560px); aspect-ratio: 1 / 1; margin: 0 auto; }
.fo-orbit__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fo-orbit__lines line { stroke: rgba(91, 61, 245, 0.28); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.fo-orbit__lines circle { fill: var(--fo-violet); opacity: 0.55; }
.fo-orbit__ring { position: absolute; inset: 8%; border-radius: 50%; border: 1px dashed rgba(91, 61, 245, 0.16); }
.fo-orbit__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 24cqw; height: 24cqw; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: var(--fo-gradient); color: #fff; text-align: center;
  box-shadow: 0 0 0 10px rgba(91, 61, 245, 0.10), 0 0 0 22px rgba(91, 61, 245, 0.05), 0 20px 50px rgba(91, 61, 245, 0.45);
}
.fo-orbit__core .fo-icon { width: 5cqw; height: 5cqw; stroke-width: 1.6; margin-bottom: 0.6cqw; }
.fo-orbit__core b { font-size: 4.6cqw; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.fo-orbit__core span { font-size: max(12px, 2.2cqw); font-weight: 600; opacity: 0.92; }
.fo-orbit__node {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  width: 19cqw; height: 19cqw; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8cqw;
  background: #fff; color: var(--fo-navy);
  box-shadow: 0 1px 2px rgba(27, 22, 66, 0.06), 0 10px 26px rgba(76, 56, 200, 0.14);
  text-align: center; padding: 1.4cqw;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fo-orbit__node:hover { transform: translate(-50%, -50%) scale(1.06); box-shadow: var(--fo-shadow-lift); }
.fo-orbit__node .fo-icon { width: 4.6cqw; height: 4.6cqw; color: var(--fo-violet); stroke-width: 1.8; }
.fo-orbit__node span { font-size: max(11px, 2.15cqw); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.fo-orbit { container-type: inline-size; }
.fo-hero__art { padding: 14px 0; }
.fo-orbit__fallback { display: none; }
@media (max-width: 560px) {
  .fo-orbit { display: none; }
  .fo-orbit__fallback { display: flex; flex-wrap: wrap; gap: 8px; }
  .fo-orbit__fallback span {
    display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px;
    background: #fff; border: 1px solid var(--fo-line); font-size: 13px; font-weight: 600; color: var(--fo-navy);
  }
  .fo-orbit__fallback .fo-icon { width: 15px; height: 15px; color: var(--fo-violet); }
}

/* ---------- Stat strip ---------- */
.fo-strip { background: #fff; border-bottom: 1px solid var(--fo-line); }
.fo-strip__inner {
  max-width: var(--fo-maxw); margin: 0 auto; padding: 34px var(--fo-gutter);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.fo-stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--fo-navy); line-height: 1; }
.fo-stat b small { font-size: 16px; font-weight: 700; letter-spacing: 0; color: var(--fo-violet); margin-left: 4px; }
.fo-stat span { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.45; color: var(--fo-muted); }
@media (max-width: 960px) { .fo-strip__inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .fo-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; } }

/* ---------- Sections ---------- */
.fo-section { padding: 96px var(--fo-gutter); }
.fo-section--tight { padding-top: 72px; padding-bottom: 72px; }
.fo-section__inner { max-width: var(--fo-maxw); margin: 0 auto; }
.fo-section--lav { background: var(--fo-lav); }
.fo-section--grad { background: var(--fo-gradient-soft); }
.fo-section--dark { background: var(--fo-band); color: rgba(255, 255, 255, 0.82); }
.fo-section--dark h2, .fo-section--dark h3, .fo-section--dark h4 { color: #fff; }
.fo-section--dark .fo-eyebrow { color: #B9A8FF; }
.fo-section--dark .fo-lead { color: rgba(255, 255, 255, 0.82); }
.fo-head { max-width: 64ch; }
.fo-head .fo-lead { margin-top: 18px; }
.fo-head--center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 720px) { .fo-section { padding: 64px 20px; } :root { --fo-gutter: 20px; } }

/* ---------- Cards ---------- */
.fo-cards { display: grid; gap: 20px; margin-top: 44px; }
.fo-cards--5 { grid-template-columns: repeat(5, 1fr); }
.fo-cards--4 { grid-template-columns: repeat(4, 1fr); }
.fo-cards--3 { grid-template-columns: repeat(3, 1fr); }
.fo-cards--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1060px) { .fo-cards--5 { grid-template-columns: repeat(3, 1fr); } .fo-cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .fo-cards--3 { grid-template-columns: 1fr; } .fo-cards--2 { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .fo-cards--5 { grid-template-columns: 1fr; } .fo-cards--4 { grid-template-columns: 1fr; } }
.fo-card {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--fo-line); border-radius: var(--fo-radius);
  padding: 26px 24px; box-shadow: 0 1px 2px rgba(27, 22, 66, 0.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fo-card:hover { transform: translateY(-3px); box-shadow: var(--fo-shadow); border-color: var(--fo-lav-3); }
.fo-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--fo-lav-2); color: var(--fo-violet); margin-bottom: 6px;
}
.fo-card__icon .fo-icon { width: 26px; height: 26px; }
.fo-card h3 { font-size: 18px; }
.fo-card p { font-size: 14.5px; line-height: 1.55; color: var(--fo-muted); }
.fo-card .fo-link { margin-top: auto; padding-top: 6px; }
.fo-card--num { position: relative; }
.fo-card__num { font-size: 13px; font-weight: 800; letter-spacing: 0.12em; color: var(--fo-violet); }
.fo-card--dark { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.fo-card--dark:hover { box-shadow: none; border-color: rgba(255, 255, 255, 0.28); }
.fo-card--dark h3 { color: #fff; }
.fo-card--dark p { color: rgba(255, 255, 255, 0.72); }
.fo-card--lav { background: var(--fo-lav); border-color: transparent; }

/* ---------- Split (copy beside a visual) ---------- */
.fo-split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.fo-split--flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.fo-split--flip > :first-child { order: 2; }
.fo-split .fo-lead { margin-top: 18px; }
@media (max-width: 900px) { .fo-split, .fo-split--flip { grid-template-columns: 1fr; gap: 36px; } .fo-split--flip > :first-child { order: 0; } }
.fo-checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.fo-checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--fo-navy); font-weight: 500; line-height: 1.45; }
.fo-checks li small { display: block; font-weight: 400; color: var(--fo-muted); font-size: 14px; margin-top: 2px; }
.fo-checks .fo-icon { width: 22px; height: 22px; color: var(--fo-violet); stroke-width: 2; margin-top: 1px; }

/* ---------- Dashboard mockup ---------- */
.fo-mock {
  position: relative; border-radius: 20px; background: #fff; border: 1px solid var(--fo-line);
  box-shadow: var(--fo-shadow-lift); overflow: hidden; font-size: 11px; color: var(--fo-text);
  display: grid; grid-template-columns: 120px minmax(0, 1fr) 150px; min-height: 340px;
}
.fo-mock * { box-sizing: border-box; }
.fo-mock__side { background: var(--fo-lav); border-right: 1px solid var(--fo-line); padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.fo-mock__side .fo-brand { font-size: 12px; gap: 6px; margin: 0 4px 12px; }
.fo-mock__side .fo-brand__mark { height: 16px; }
.fo-mock__side span { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 8px; font-weight: 500; color: var(--fo-muted); }
.fo-mock__side span .fo-icon { width: 13px; height: 13px; }
.fo-mock__side span.is-on { background: #fff; color: var(--fo-violet); font-weight: 600; box-shadow: 0 1px 2px rgba(27, 22, 66, 0.06); }
.fo-mock__main { padding: 18px 16px; display: flex; flex-direction: column; gap: 12px; }
.fo-mock__main h4 { font-size: 15px; letter-spacing: -0.01em; }
.fo-mock__main .sub { color: var(--fo-muted); margin-top: 2px; }
.fo-mock__continue {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
  background: var(--fo-lav); border: 1px solid var(--fo-line);
}
.fo-mock__continue .fo-card__icon { width: 30px; height: 30px; border-radius: 9px; margin: 0; background: #fff; }
.fo-mock__continue .fo-card__icon .fo-icon { width: 15px; height: 15px; }
.fo-mock__continue b { display: block; font-size: 11.5px; color: var(--fo-navy); }
.fo-mock__continue small { color: var(--fo-muted); font-size: 10px; }
.fo-mock__continue .fo-icon--arrow { margin-left: auto; width: 14px; height: 14px; color: var(--fo-violet); }
.fo-mock__bar { height: 5px; border-radius: 999px; background: var(--fo-lav-3); overflow: hidden; margin-top: 5px; }
.fo-mock__bar span { display: block; height: 100%; width: 43%; background: var(--fo-gradient); border-radius: 999px; }
.fo-mock__label { font-size: 10.5px; font-weight: 600; color: var(--fo-navy); margin-top: 4px; }
.fo-mock__recs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.fo-mock__rec { border: 1px solid var(--fo-line); border-radius: 10px; padding: 10px 9px; display: flex; flex-direction: column; gap: 6px; }
.fo-mock__rec .fo-card__icon { width: 24px; height: 24px; border-radius: 7px; margin: 0; }
.fo-mock__rec .fo-card__icon .fo-icon { width: 12px; height: 12px; }
.fo-mock__rec b { font-size: 10.5px; line-height: 1.25; color: var(--fo-navy); }
.fo-mock__rec i { font-style: normal; font-size: 10px; color: var(--fo-violet); font-weight: 600; }
.fo-mock__aside { border-left: 1px solid var(--fo-line); padding: 16px 12px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.fo-mock__aside h5 { margin: 0; font-size: 11px; color: var(--fo-navy); }
.fo-mock__ring { position: relative; width: 84px; height: 84px; margin: 4px auto 0; display: grid; place-items: center; }
.fo-mock__ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.fo-mock__ring circle { fill: none; stroke-width: 9; }
.fo-mock__ring .track { stroke: var(--fo-lav-3); }
.fo-mock__ring .val { stroke: var(--fo-violet); stroke-linecap: round; }
.fo-mock__ring b { font-size: 16px; font-weight: 800; color: var(--fo-navy); letter-spacing: -0.02em; }
.fo-mock__kpi { font-size: 10px; color: var(--fo-muted); }
.fo-mock__kpi b { display: block; color: var(--fo-navy); font-size: 11px; }
.fo-mock__kpi em { font-style: normal; color: var(--fo-ok); font-weight: 600; }
.fo-mock__bars { display: flex; align-items: flex-end; gap: 5px; margin-top: 6px; }
.fo-mock__bars > span { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.fo-mock__bars i { display: block; width: 100%; border-radius: 3px 3px 2px 2px; background: var(--fo-lav-3); }
.fo-mock__bars i.on { background: var(--fo-violet); }
.fo-mock__bars small { font-size: 7.5px; color: var(--fo-muted); white-space: nowrap; }
@media (max-width: 640px) {
  .fo-mock { grid-template-columns: 96px minmax(0, 1fr); }
  .fo-mock__aside { display: none; }
  .fo-mock__recs { grid-template-columns: 1fr 1fr; }
  .fo-mock__rec:nth-child(3) { display: none; }
}
@media (max-width: 420px) { .fo-mock { grid-template-columns: 1fr; } .fo-mock__side { display: none; } }

/* ---------- Tracks (the program) ---------- */
.fo-track { gap: 10px; }
.fo-track__who { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fo-violet); }
.fo-track h3 { font-size: 22px; }
.fo-track > p { font-size: 15px; color: var(--fo-text); }
.fo-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 8px; }
.fo-list li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.5; color: var(--fo-text); }
.fo-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--fo-violet); opacity: 0.8; }
.fo-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.fo-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: var(--fo-lav-2); color: var(--fo-navy); font-size: 13px; font-weight: 600; }
.fo-shape { margin-top: 24px; padding: 28px 30px; border-radius: var(--fo-radius); background: #fff; border: 1px solid var(--fo-line); }
.fo-shape h3 { font-size: 19px; margin-bottom: 14px; }
.fo-shape ol { margin: 0; padding-left: 1.4em; columns: 2; column-gap: 44px; font-size: 15px; line-height: 1.6; color: var(--fo-text); }
.fo-shape ol li { break-inside: avoid; margin: 0.3em 0; padding-left: 4px; }
.fo-shape ol li::marker { color: var(--fo-violet); font-weight: 700; }
@media (max-width: 720px) { .fo-shape ol { columns: 1; } }
.fo-fineprint { font-size: 13.5px; color: var(--fo-muted); margin-top: 20px; max-width: 74ch; line-height: 1.55; }

/* ---------- Video ---------- */

/* ---------- Functions (13) ---------- */
.fo-functions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 1000px) { .fo-functions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fo-functions { grid-template-columns: 1fr; } }
.fo-function { display: flex; gap: 14px; align-items: flex-start; padding: 18px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--fo-line); }
.fo-function .fo-card__icon { width: 42px; height: 42px; border-radius: 12px; margin: 0; flex: none; }
.fo-function .fo-card__icon .fo-icon { width: 21px; height: 21px; }
.fo-function h3 { font-size: 15px; }
.fo-function p { font-size: 13.5px; line-height: 1.5; color: var(--fo-muted); margin-top: 4px; }

/* ---------- Timeline ---------- */
.fo-timeline { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; counter-reset: wk; }
@media (max-width: 1000px) { .fo-timeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .fo-timeline { grid-template-columns: 1fr; } }
.fo-timeline li { position: relative; padding: 20px 18px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--fo-line); }
.fo-timeline li::before { content: ""; position: absolute; left: 18px; right: 18px; top: 0; height: 3px; border-radius: 0 0 3px 3px; background: var(--fo-gradient); }
.fo-timeline .wk { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fo-violet); }
.fo-timeline h3 { font-size: 15.5px; margin: 8px 0 8px; line-height: 1.3; }
.fo-timeline p { font-size: 13.5px; line-height: 1.5; color: var(--fo-muted); }
.fo-timeline .out { margin-top: 10px; font-size: 13px; color: var(--fo-text); }
.fo-timeline .out b { color: var(--fo-navy); }
.fo-note { margin-top: 26px; padding: 20px 24px; border-radius: 14px; background: #fff; border: 1px solid var(--fo-line); font-size: 15px; line-height: 1.6; max-width: 84ch; }
.fo-note b { color: var(--fo-navy); }

/* ---------- Story (dark numbered list) ---------- */
.fo-story { counter-reset: step; list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 14px; max-width: 80ch; }
.fo-story li { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.78); }
.fo-story li::before { content: counter(step, decimal-leading-zero); font-weight: 800; font-size: 18px; color: #B9A8FF; line-height: 1.3; }
.fo-story li b { color: #fff; }

/* ---------- Pricing ---------- */
.fo-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; align-items: stretch; }
@media (max-width: 800px) { .fo-plans { grid-template-columns: 1fr; } }
.fo-plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--fo-line); border-radius: var(--fo-radius); padding: 28px 28px 24px; }
.fo-plan--featured { border-color: rgba(91, 61, 245, 0.45); box-shadow: var(--fo-shadow); position: relative; }
.fo-plan__tag { position: absolute; top: -13px; left: 28px; padding: 5px 12px; border-radius: 999px; background: var(--fo-gradient); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.fo-plan h3 { font-size: 24px; margin: 8px 0 6px; }
.fo-plan__tagline { color: var(--fo-muted); font-size: 14.5px; line-height: 1.5; margin-bottom: 18px; }
.fo-plan__price { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; color: var(--fo-navy); line-height: 1; }
.fo-plan__price--text { font-size: 30px; padding: 6px 0; }
.fo-plan__price small { font-size: 13.5px; font-weight: 500; letter-spacing: 0; color: var(--fo-muted); margin-left: 8px; }
.fo-plan__note { font-size: 13px; color: var(--fo-muted); margin: 10px 0 18px; }
.fo-plan .fo-list { margin: 0 0 22px; }
.fo-plan .fo-btn { align-self: flex-start; margin-top: auto; }
.fo-plan__fine { font-size: 13px; color: var(--fo-muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--fo-line); line-height: 1.5; }
.fo-plan__fine b { color: var(--fo-navy); }
.fo-tiers { max-width: 860px; margin: 40px auto 0; }
.fo-tiers__scroll { overflow-x: auto; border-radius: 14px; border: 1px solid var(--fo-line); background: #fff; }
.fo-tiers table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
.fo-tiers th { background: var(--fo-lav); color: var(--fo-navy); text-align: left; padding: 14px 16px; font-weight: 700; font-size: 14px; }
.fo-tiers th small { display: block; font-weight: 500; font-size: 12px; color: var(--fo-muted); margin-top: 2px; }
.fo-tiers td { padding: 13px 16px; border-top: 1px solid var(--fo-line); color: var(--fo-text); }
.fo-tiers td.num { font-weight: 700; color: var(--fo-navy); font-variant-numeric: tabular-nums; }
.fo-tiers .foot { font-size: 13px; color: var(--fo-muted); margin-top: 12px; line-height: 1.55; }

/* ---------- About ---------- */
.fo-about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; margin-top: 40px; align-items: start; }
@media (max-width: 880px) { .fo-about { grid-template-columns: 1fr; gap: 28px; } }
.fo-about__body p { font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.fo-about__body p:last-child { margin-bottom: 0; }
.fo-fact { background: #fff; border: 1px solid var(--fo-line); border-radius: var(--fo-radius); padding: 24px 26px; }
.fo-fact + .fo-fact { margin-top: 16px; }
.fo-fact .fo-eyebrow { margin-bottom: 12px; }
.fo-fact--lav { background: var(--fo-lav); border-color: transparent; }

/* ---------- FAQ ---------- */
.fo-faq { max-width: 840px; margin: 36px auto 0; display: grid; gap: 10px; }
.fo-faq details { border: 1px solid var(--fo-line); border-radius: 14px; background: #fff; padding: 0 22px; }
.fo-faq details[open] { border-color: var(--fo-lav-3); box-shadow: 0 1px 2px rgba(27, 22, 66, 0.03); }
.fo-faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 600; font-size: 16.5px; color: var(--fo-navy); position: relative; }
.fo-faq summary::-webkit-details-marker { display: none; }
.fo-faq summary::after { content: "+"; position: absolute; right: 2px; top: 14px; width: 26px; height: 26px; border-radius: 50%; background: var(--fo-lav-2); color: var(--fo-violet); font-size: 20px; line-height: 26px; text-align: center; font-weight: 500; }
.fo-faq details[open] summary::after { content: "\2013"; }
.fo-faq summary:hover { color: var(--fo-violet); }
.fo-faq .a { padding: 0 0 20px; font-size: 15.5px; line-height: 1.65; color: var(--fo-text); max-width: 72ch; }
.fo-faq .a p + p { margin-top: 0.7em; }

/* ---------- Dark call-to-action band ---------- */
.fo-band { position: relative; overflow: hidden; background: var(--fo-band); color: #fff; }
.fo-band::before, .fo-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6; pointer-events: none; }
.fo-band::before { width: 640px; height: 640px; right: -200px; top: -240px; background: radial-gradient(circle, rgba(123, 92, 255, 0.75) 0, rgba(123, 92, 255, 0) 70%); }
.fo-band::after { width: 480px; height: 480px; left: -160px; bottom: -260px; background: radial-gradient(circle, rgba(79, 134, 255, 0.45) 0, rgba(79, 134, 255, 0) 70%); }
.fo-band__inner {
  position: relative; z-index: 1; max-width: var(--fo-maxw); margin: 0 auto; padding: 84px var(--fo-gutter);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center;
}
.fo-band .fo-eyebrow { color: #C9BCFF; }
.fo-band h2 { color: #fff; font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-top: 14px; max-width: 18ch; }
.fo-band__side p { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); max-width: 44ch; }
.fo-band__side .fo-btn { margin-top: 24px; }
.fo-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) { .fo-band__inner { grid-template-columns: 1fr; padding: 64px var(--fo-gutter); } }

/* ---------- Footer ---------- */
.fo-footer { background: #120E33; color: rgba(255, 255, 255, 0.7); padding: 56px var(--fo-gutter) 36px; }
.fo-footer__inner { max-width: var(--fo-maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .fo-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fo-footer__inner { grid-template-columns: 1fr; } }
.fo-footer__about p { font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 34ch; }
.fo-footer h3 { color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.fo-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fo-footer a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }
.fo-footer a:hover { color: #fff; text-decoration: none; }
.fo-footer__bottom { max-width: var(--fo-maxw); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.fo-footer__bottom a { color: rgba(255, 255, 255, 0.7); font-size: 13px; }

/* ---------- Interior pages (404, notices) ---------- */
.fo-page-band { background: var(--fo-gradient-soft); border-bottom: 1px solid var(--fo-line); padding: 64px var(--fo-gutter) 56px; }
.fo-page-band__inner { max-width: var(--fo-maxw); margin: 0 auto; }
.fo-page-band h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.03em; margin-top: 12px; max-width: 22ch; }
.fo-page-band .fo-lead { margin-top: 16px; }
.fo-page-body { max-width: 760px; margin: 0 auto; padding: 56px var(--fo-gutter) 96px; }
.fo-page-body p { font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; }
.fo-page-body h2 { font-size: 24px; margin: 2em 0 0.6em; }
.fo-page-body .fo-btn { margin-top: 8px; }

/* ---------- Buy page ----------
   The class names below are the ones buy.js builds its markup with, so
   they are kept as they are; only their look changes. */
.buy .fo-head { margin-bottom: 32px; }
.buy-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr); gap: 28px; align-items: start; }
@media (max-width: 900px) { .buy-grid { grid-template-columns: 1fr; } }
.buy-items { display: flex; flex-direction: column; gap: 16px; }
.buy-item {
  display: grid; grid-template-columns: minmax(11rem, 1fr) max-content max-content max-content; gap: 14px 18px; align-items: start;
  padding: 24px 26px; background: #fff; border: 1px solid var(--fo-line); border-radius: var(--fo-radius);
}
@media (max-width: 1120px) { .buy-item { grid-template-columns: max-content max-content 1fr; } .buy-item__main { grid-column: 1 / -1; } .buy-item__price { width: auto; } }
@media (max-width: 520px) { .buy-item { grid-template-columns: 1fr 1fr; } .buy-item__total { grid-column: 1 / -1; text-align: left; } }
.buy-item__main h2 { font-size: 20px; margin: 0 0 8px; }
.buy-item__main p { font-size: 14.5px; line-height: 1.55; color: var(--fo-muted); margin: 0 0 6px; max-width: 46ch; }
.buy-item__tier { font-size: 13px; color: var(--fo-violet); font-weight: 600; }
.buy-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fo-muted); margin-bottom: 8px; }
.buy-item__price, .buy-item__qty, .buy-item__total { text-align: right; }
.buy-item__price { width: 6.5rem; }
.buy-item__total { min-width: 5.5rem; }
.buy-unit, .buy-item__total span:last-child { font-size: 17px; color: var(--fo-text); font-variant-numeric: tabular-nums; }
.buy-item__total span:last-child { font-weight: 800; font-size: 20px; color: var(--fo-navy); }
.stepper { display: inline-flex; border: 1px solid var(--fo-line-strong); border-radius: 999px; overflow: hidden; background: #fff; }
.stepper input { width: 3.6em; border: 0; text-align: center; font: inherit; font-size: 17px; font-weight: 600; padding: 8px 4px; color: var(--fo-navy); background: #fff; -moz-appearance: textfield; appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input:focus { outline: 2px solid var(--fo-violet); outline-offset: -2px; }
.stepper__btn { width: 40px; border: 0; background: var(--fo-lav-2); color: var(--fo-violet); font-size: 18px; line-height: 1; cursor: pointer; padding: 0; }
.stepper__btn:hover { background: var(--fo-lav-3); }
.stepper__btn:focus-visible { outline: 2px solid var(--fo-violet); outline-offset: -2px; }
.buy-note { font-size: 14px; color: var(--fo-muted); margin: 6px 2px 0; }
.buy-offering { border: 0; padding: 0; margin: 0; min-width: 0; }
.buy-offering > legend { padding: 0; margin-bottom: 10px; }
.buy-offering__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .buy-offering__opts { grid-template-columns: 1fr; } }
.buy-offering__opt { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; padding: 16px 18px; background: #fff; border: 1.5px solid var(--fo-line); border-radius: 14px; transition: border-color .15s ease, box-shadow .15s ease; }
.buy-offering__opt:hover { border-color: var(--fo-violet-2); }
.buy-offering__opt input { margin: 3px 0 0; accent-color: var(--fo-violet); }
.buy-offering__opt:has(input:checked) { border-color: var(--fo-violet); box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.12); }
.buy-offering__body b { display: block; font-size: 15.5px; color: var(--fo-navy); }
.buy-offering__body small { display: block; margin-top: 3px; font-size: 13px; line-height: 1.5; color: var(--fo-muted); }
.buy-item--picker { grid-template-columns: minmax(11rem, 1fr) max-content max-content; }
@media (max-width: 1120px) { .buy-item--picker { grid-template-columns: max-content 1fr; } }
@media (max-width: 520px) { .buy-item--picker { grid-template-columns: 1fr 1fr; } }
.buy-modules { grid-column: 1 / -1; display: grid; gap: 4px 20px; margin-top: 4px; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); border-top: 1px solid var(--fo-line); padding-top: 14px; }
.buy-modules__opt { display: flex; gap: 9px; align-items: baseline; font-size: 14.5px; color: var(--fo-text); cursor: pointer; padding: 3px 0; }
.buy-modules__opt input { accent-color: var(--fo-violet); }
.buy-link { border: 0; background: none; padding: 0; font: inherit; color: var(--fo-violet); text-decoration: underline; cursor: pointer; }
.buy-side { padding: 26px 26px 24px; background: var(--fo-lav); border: 1px solid var(--fo-lav-3); border-radius: var(--fo-radius); position: sticky; top: 92px; }
@media (max-width: 900px) { .buy-side { position: static; } }
.buy-side h2 { font-size: 20px; margin: 0 0 8px; }
.buy-side__note { font-size: 12.5px; line-height: 1.55; color: var(--fo-muted); margin: 0 0 18px; }
.buy-side label { display: block; font-size: 13px; font-weight: 600; color: var(--fo-navy); margin-bottom: 14px; }
.buy-side input { display: block; width: 100%; margin-top: 6px; padding: 11px 13px; font: inherit; font-weight: 400; color: var(--fo-text); background: #fff; border: 1.5px solid var(--fo-line-strong); border-radius: 10px; }
.buy-side input:focus { outline: none; border-color: var(--fo-violet); box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.14); }
.buy-side label small { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 400; color: var(--fo-danger); }
.buy-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.checkout-code__row { display: flex; gap: 8px; align-items: flex-start; margin-top: 6px; }
.checkout-code__row input { margin-top: 0; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--fo-mono); }
.checkout-code__row .fo-btn { flex: none; padding: 11px 16px; }
.buy-summary { margin: 20px 0 14px; padding-top: 16px; border-top: 1px solid var(--fo-lav-3); }
.buy-summary__list { margin: 0; }
.buy-summary__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin: 0 0 10px; }
.buy-summary__row dt { font-size: 14px; color: var(--fo-muted); margin: 0; }
.buy-summary__row dt small { display: block; font-size: 12px; }
.buy-summary__row dd { margin: 0; font-size: 15px; color: var(--fo-text); font-variant-numeric: tabular-nums; }
.buy-summary__discount dt, .buy-summary__discount dd { color: var(--fo-violet); }
.buy-summary__total { padding-top: 10px; border-top: 1px solid var(--fo-lav-3); }
.buy-summary__total dt { font-size: 16px; font-weight: 700; color: var(--fo-navy); }
.buy-summary__total dd { font-size: 24px; font-weight: 800; color: var(--fo-navy); }
.buy-summary__note { font-size: 12.5px; color: var(--fo-muted); margin: 4px 0 0; }
.buy-problem { font-size: 14px; color: var(--fo-danger); margin: 0; }
.buy-testmode { max-width: 72ch; margin: 0 0 24px; padding: 14px 18px; border: 2px dashed var(--fo-violet-2); border-radius: 14px; background: rgba(91, 61, 245, 0.05); }
.buy-testmode p { margin: 0; font-size: 15px; line-height: 1.55; }
.buy-testmode code { font-family: var(--fo-mono); font-size: 14px; padding: 1px 5px; border-radius: 4px; background: rgba(27, 22, 66, 0.08); white-space: nowrap; }
.buy-unavailable { max-width: 60ch; }
.buy-unavailable .fo-lead { color: var(--fo-navy); font-weight: 600; margin-bottom: 10px; }
.buy-unavailable p { margin-bottom: 10px; }
.buy-unavailable__fallback { font-size: 14px; color: var(--fo-muted); }
.checkout-message { margin: 0 0 14px; font-size: 14px; }
.checkout-message--error { color: var(--fo-danger); }
.checkout-message--ok { color: var(--fo-ok); font-size: 16px; }

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fo-btn, .fo-card, .fo-orbit__node { transition: none; }
}
