/* =========================================================
   Sirius Ascent
   Design system + full single-page structure
    Aesthetic: Audi-grade restraint — obsidian, silver, white,
   serif display, mono precision labels.
   (Structure pass — refined per-section polish to follow.)
   ========================================================= */

/* ----- Design tokens ----- */
:root {
  /* Color — monochrome: matte black, white, silver, grey */
  --obsidian: #070708;
  --obsidian-soft: #0e0e10;
  --panel: #16161a;
  --panel-2: #1c1c21;
  --border: rgba(244, 244, 244, 0.10);
  --border-strong: rgba(244, 244, 244, 0.20);

  --cream: #f5f5f6;
  --muted: #9a9da3;
  --muted-deep: #84868c;

  --accent: #c7cad0;
  --accent-soft: #ffffff;
  --on-accent: #070708;

  --success: #27ae60;
  --danger: #e0654f;

  /* Surfaces — the only two "glass" intensities used across the site */
  --surface-1: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border-on-media: rgba(255, 255, 255, 0.16);

  /* Elevation — two families: dark shadow for cards/photos, soft glow for
     light/accent surfaces. Each is a pair: a tight, dark "contact" shadow
     (where the element actually meets the surface) plus a long, soft throw
     — a single shadow reads flat; the two together read as an object
     genuinely sitting above the page. */
  --shadow-card: 0 1px 2px -1px rgba(0, 0, 0, 0.5), 0 22px 44px -26px rgba(0, 0, 0, 0.65);
  --shadow-card-hover: 0 2px 3px -1px rgba(0, 0, 0, 0.55), 0 30px 58px -24px rgba(0, 0, 0, 0.75);
  --shadow-media: 0 2px 4px -2px rgba(0, 0, 0, 0.55), 0 30px 60px -34px rgba(0, 0, 0, 0.75);
  --shadow-media-hover: 0 3px 6px -2px rgba(0, 0, 0, 0.6), 0 40px 76px -32px rgba(0, 0, 0, 0.85);
  --glow-light: 0 1px 2px rgba(255, 255, 255, 0.15), 0 14px 34px -16px rgba(255, 255, 255, 0.28);
  --glow-light-hover: 0 1px 2px rgba(255, 255, 255, 0.2), 0 20px 46px -16px rgba(255, 255, 255, 0.38);

  /* A faint top catch-light + bottom edge-darkening inside a card — implies
     a single consistent light source overhead, without adding any visible
     "thing" to the page. */
  --inset-light: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  /* Hover physics — every card lifts identically; only its material (glass/border/shadow) differs */
  --lift-card: translateY(-4px) scale(1.012);
  --lift-media: translateY(-8px);

  --tracking-label: 0.16em;

  /* Typography */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-h1: clamp(2.75rem, 1.6rem + 4.9vw, 5.5rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-h3-lg: clamp(1.55rem, 1.25rem + 1.5vw, 2.2rem);
  --fs-h3: clamp(1.3rem, 1.15rem + 0.6vw, 1.5rem);
  --fs-h4: 1rem;
  /* Always clearly larger than --fs-body, at every viewport width. */
  --fs-lead: clamp(1.1875rem, 1.1rem + 0.5vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-label: 0.75rem;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-py: clamp(5rem, 3rem + 8vw, 9rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ----- Reset / base ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* While the hero intro plays, real page scroll is frozen — script.js drives
   the reveal directly from wheel/touch/key input instead. */
html.hero-locked,
html.hero-locked body {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* A faint film-grain over the entire page. Flat colour fields look like
   vector art; a whisper of noise is what makes dark UI read as a physical
   surface rather than a digital one — most premium dark-mode sites carry
   this even though it's never consciously noticed. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; }
.mono {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ----- Shared section primitives ----- */
.section { padding-block: var(--section-py); position: relative; }

/* Seam glow — a soft light wash that straddles a section boundary so two
   sections read as one continuous surface instead of a hard cut. Lives on
   the LATER section (so it paints over the tail of the one before it) at
   z-index:-1 (so it stays behind that section's own content — this only
   works because the section establishes its own stacking context via
   isolation, same pattern as .hero/.process). */
.results::before,
.work::before,
.audit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -190px;
  left: 50%;
  transform: translateX(-50%) translateY(var(--seam-shift, 0px));
  width: min(1100px, 92vw);
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: seamBreathe 11s var(--ease) infinite;
}
/* A slow breathe, independent of scroll — the glow is never perfectly
   static, which is what keeps it feeling like light rather than a sticker. */
@keyframes seamBreathe {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) translateY(var(--seam-shift, 0px)) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) translateY(var(--seam-shift, 0px)) scale(1.1); }
}

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__label {
  display: inline-block;
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
}

.section__title {
  font-size: var(--fs-h2);
  line-height: 1.08;
  margin: 0;
  color: var(--cream);
}
.section__title em {
  font-style: italic;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-soft) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  margin: 1.6rem 0 0;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}
.section__head--center .section__lead { margin-inline: auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

/* ----- Accessibility helpers ----- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--accent-soft);
  color: var(--on-accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- Buttons ----- */
.btn {
  --btn-py: 0.78rem;
  --btn-px: 1.5rem;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { --btn-py: 1.05rem; --btn-px: 2.1rem; font-size: 1rem; }

.btn--primary {
  background-color: var(--accent-soft);
  color: var(--on-accent);
  font-weight: 600;
  box-shadow: var(--glow-light);
}
.btn--primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--glow-light-hover);
}
/* A fill sweeps in from the left on hover rather than the button just
   snapping to a new colour — the small signature move that tells a button
   apart from a default template pill. */
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-strong);
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.btn--ghost:hover {
  color: var(--on-accent);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--ghost:hover::before { transform: scaleX(1); }

/* ============================ HEADER ============================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.15rem;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease), padding-block 0.35s var(--ease);
}
.site-header.is-scrolled {
  padding-block: 0.75rem;
  background-color: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand__mark {
  width: 26px; height: 26px;
  object-fit: contain;
}
.brand__accent { color: var(--accent); }

.site-nav__list { display: flex; gap: 2rem; font-size: 0.95rem; color: var(--muted); }
.site-nav__list a { position: relative; transition: color 0.2s var(--ease); }
.site-nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--accent-soft); transition: width 0.25s var(--ease);
}
.site-nav__list a:hover { color: var(--cream); }
.site-nav__list a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block; width: 18px; height: 1.5px; margin-inline: auto;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem var(--gutter) 2rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; font-size: 1.25rem; }
.mobile-menu__list a { display: block; padding: 0.6rem 0; color: var(--cream); border-bottom: 1px solid var(--border); }
.mobile-menu__cta { margin-top: 1.5rem; width: 100%; }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 10rem 7rem;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2) contrast(1.05) brightness(0.95);
  transform: scale(1);
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0.28;
  will-change: opacity;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(110% 90% at 50% 35%, #000 30%, transparent 80%);
  mask-image: radial-gradient(110% 90% at 50% 35%, #000 30%, transparent 80%);
}

/* Seamless blend into the next section — no harsh visual break */
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 22vh;
  background: linear-gradient(180deg, transparent, var(--obsidian));
  pointer-events: none;
}

.hero__inner { max-width: 900px; }
.hero .eyebrow { color: var(--accent); }
.hero__title {
  margin: 0;
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--accent-soft);
}
.hero__subtitle {
  margin: 1.85rem 0 0;
  max-width: 54ch;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.85rem; }

.hero .btn--primary {
  background-color: var(--accent-soft);
  color: #000;
  font-weight: 600;
  box-shadow: var(--glow-light);
}
.hero .btn--primary:hover {
  background-color: var(--accent);
  box-shadow: var(--glow-light-hover);
}
.hero .btn--ghost { color: var(--accent-soft); border-color: rgba(255, 255, 255, 0.3); }
.hero .btn--ghost::before { background: var(--accent-soft); }
.hero .btn--ghost:hover { border-color: var(--accent-soft); color: #000; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--accent-soft), transparent);
  transform-origin: top; animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.85; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

/* ============================ PROBLEM ============================ */
.problem { position: relative; isolation: isolate; background: var(--obsidian); }
.problem::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 80vw);
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.045) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.problem__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 46vw, 480px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-media);
  transition: transform 0.6s var(--ease), border-color 0.4s var(--ease), box-shadow 0.6s var(--ease);
}
.problem__panel:hover {
  transform: var(--lift-media);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-media-hover);
}

/* Staggered entrance — one continuous reveal rather than three separate cards */
.is-ready .problem__panel:nth-child(2) { transition-delay: 0.12s; }
.is-ready .problem__panel:nth-child(3) { transition-delay: 0.24s; }

.problem__panel-num {
  position: absolute; top: 1.5rem; left: 1.75rem; z-index: 2;
  font-size: 0.75rem; letter-spacing: 0.12em; color: rgba(245, 245, 246, 0.55);
}

.problem__panel--photo .problem__panel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08) brightness(0.85);
  transform: scale(1.1);
  transition: transform 1.2s var(--ease), filter 0.7s var(--ease);
}
.problem__panel.is-visible .problem__panel-img { transform: scale(1); }
.problem__panel--photo:hover .problem__panel-img {
  transform: scale(1.04);
  filter: grayscale(0.3) contrast(1.1) brightness(0.9);
}
.problem__panel--photo .problem__panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.25) 0%, rgba(7, 7, 8, 0.35) 40%, rgba(7, 7, 8, 0.92) 100%);
}

.problem__panel--icon {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--panel-2);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2.5rem 2rem;
}
.problem__panel-glow {
  position: absolute; top: 28%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.problem__panel-icon {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 0 1.75rem;
  color: var(--accent-soft);
}
.problem__panel-icon svg,
.problem__panel-icon img { width: 40px; height: 40px; object-fit: contain; }

.problem__panel-body { position: relative; z-index: 2; padding: 2rem 1.85rem; }
.problem__panel--icon .problem__panel-body { padding: 0; }
.problem__panel-title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
.problem__panel-text { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.problem__panel-proof {
  margin: 1.1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--muted-deep);
}
.problem__panel--icon .problem__panel-proof { border-top: none; padding-top: 0; }

/* ============================ RESULTS ============================ */
.results { position: relative; isolation: isolate; background: linear-gradient(180deg, var(--obsidian), var(--obsidian-soft)); }
.results__accent {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-soft) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* One continuous case-study, broken into labelled beats rather than cards */
.results__block {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
}
.results__block-label {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.results__block-title {
  font-size: var(--fs-h3-lg);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.results__block-body { margin: 0; max-width: 62ch; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }

/* Before / After — a real drag-to-compare slider, not two static tiles.
   The handle position is read from --compare-pos (set by script.js on
   pointer drag / arrow keys), clip-path on the "before" layer reveals
   only as much of it as the handle position allows. */
.results__slider-intro { margin: 0 0 1.25rem; color: var(--muted-deep); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.results__slider {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-media);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.results__slider:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }
.results__slider-layer { position: absolute; inset: 0; }
.results__slider-layer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.results__slider-layer--before { clip-path: inset(0 50% 0 0); }
.results__media-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem; text-transform: uppercase;
  background: rgba(7, 7, 8, 0.6); border: 1px solid var(--border); border-radius: 999px; color: var(--muted);
}
.results__media-tag--after { left: auto; right: 1rem; color: var(--success); border-color: rgba(39, 174, 96, 0.35); }
.results__slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}
.results__slider-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--on-accent);
  box-shadow: var(--shadow-card-hover);
}
.results__slider-grip svg { width: 18px; height: 18px; }

.results__compare-captions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: 1.25rem;
}
.results__state { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.results__state--good { color: var(--success); }
.results__caption-why { margin: 0; color: var(--muted-deep); font-size: 0.9rem; line-height: 1.6; }

/* On-site photography gallery */
.results__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.results__gallery-item {
  margin: 0; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.results__gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.5) contrast(1.05) brightness(0.92);
  transform: scale(1.1);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.results__block.is-visible .results__gallery-item img { transform: scale(1); }
.results__gallery-item:hover img { transform: scale(1.04); filter: grayscale(0.25) contrast(1.08) brightness(0.96); }

/* Performance stats */
.results__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
  margin: 0; margin-top: clamp(2rem, 4vw, 3rem);
}
.results__stat { margin: 0; }
.results__stat-label { display: block; font-size: 0.7rem; text-transform: uppercase; color: var(--muted-deep); margin-bottom: 0.6rem; }
.results__stat-figure { margin: 0; font-family: var(--display); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--accent-soft); line-height: 1; }
.results__stat-figure--percent::after { content: "%"; }
.results__stat-why { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.results__disclaimer {
  margin: 1.4rem 0 2.25rem;
  max-width: 60ch;
  color: var(--muted-deep);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================ PROCESS ============================ */
.process {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--obsidian-soft);
  /* The one cinematic, video-backed moment on the page — it earns more
     room than the uniform section rhythm gives everything else. */
  padding-block: clamp(6.5rem, 4rem + 10vw, 11rem);
}
.process__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.process__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.55) contrast(1.05);
}
/* The video should emerge from and sink back into the page colour, not read
   as a hard-edged box — top/bottom thirds bias toward --obsidian-soft, which
   is exactly the colour the Results and Work sections meet it at. */
.process__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    var(--obsidian-soft) 0%,
    rgba(14, 14, 16, 0.4) 16%,
    rgba(7, 7, 8, 0.4) 50%,
    rgba(14, 14, 16, 0.4) 84%,
    var(--obsidian-soft) 100%
  );
}

.process .section__lead { color: var(--cream); opacity: 0.78; }

/* An opening pair (Discover/Visit) runs large across the top, the four
   operational steps follow smaller underneath — a lede-then-detail mosaic
   rather than six identical boxes in a uniform grid. */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.process__step--featured { grid-column: span 2; }

/* Floating glass cards — must read as a separate layer from the video */
.process__step {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: rgba(20, 20, 23, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-on-media);
  box-shadow: var(--shadow-card), var(--inset-light);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.process__step:hover {
  transform: var(--lift-card);
  background: rgba(26, 26, 30, 0.72);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-card-hover), var(--inset-light);
}

/* Oversized ghost numeral — replaces the small "01 ·" label as the card's
   primary identifier, the way an editorial spread numbers its sections. */
.process__step-num {
  position: absolute;
  top: -0.4rem; right: 0.75rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 3rem + 2vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

.process__icon-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-on-media);
  color: var(--accent-soft);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}
.process__step--featured .process__icon-wrap { width: 64px; height: 64px; }
.process__step--featured .process__icon { width: 30px; height: 30px; }
.process__step:hover .process__icon-wrap { transform: scale(1.08); background: rgba(255, 255, 255, 0.12); }
.process__icon { width: 26px; height: 26px; object-fit: contain; filter: grayscale(1) brightness(1.6) contrast(1.05); }
.process__icon-wrap svg.process__icon { filter: none; }

.process__step--featured .process__heading { font-size: var(--fs-h3-lg); }

.process__num {
  position: relative; z-index: 1;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.process__heading { position: relative; z-index: 1; font-family: var(--display); font-size: var(--fs-h3); font-weight: 400; line-height: 1.2; margin: 0 0 0.65rem; color: var(--cream); }
.process__step p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: var(--fs-sm); line-height: 1.65; }
.process__time {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--surface-2);
  border: 1px solid var(--border-on-media);
  border-radius: 999px;
}

.process__transition {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background-image: linear-gradient(90deg, transparent, var(--border-on-media) 20%, var(--border-on-media) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  color: var(--cream);
}

/* ============================ WORK ============================ */
.work { position: relative; isolation: isolate; background: linear-gradient(180deg, var(--obsidian-soft), var(--obsidian)); }

/* Brand showcase — one premium card per brand, each holding its own
   native-scroll carousel (CSS scroll-snap, not a JS-transform slider, so
   touch swipe/momentum is the browser's own and there's nothing to break). */
.showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.showcase__card {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
}
.showcase__card:first-child { padding-top: 0; background-image: none; }

.showcase__head { max-width: 640px; margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem); text-align: center; }
.showcase__brand {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
}
.showcase__tagline {
  margin: 0.85rem 0 0;
  font-style: italic;
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--accent);
}
.showcase__caption {
  margin: 1.1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--muted-deep);
}

.showcase__carousel { position: relative; }
.showcase__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-media);
  cursor: grab;
  /* Native scrollbar hidden — the dots are the visible position indicator */
  scrollbar-width: none;
}
.showcase__track::-webkit-scrollbar { display: none; }
.showcase__track:active { cursor: grabbing; }
.showcase__track.is-dragging { scroll-snap-type: none; }

.showcase__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.showcase__slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(1.06) brightness(0.94);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  pointer-events: none;
  -webkit-user-drag: none;
}
@media (pointer: fine) {
  .showcase__track:hover .showcase__slide img { transform: scale(1.045); filter: grayscale(0.15) contrast(1.08) brightness(1); }
}

/* Arrows — desktop only; touch devices already have native swipe */
.showcase__arrow {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-on-media);
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(10px);
  color: var(--cream);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.showcase__arrow svg { width: 20px; height: 20px; }
.showcase__arrow--prev { left: 1rem; }
.showcase__arrow--next { right: 1rem; }
.showcase__arrow:hover { background: rgba(20, 20, 23, 0.85); border-color: var(--border-strong); }
.showcase__arrow:active { transform: translateY(-50%) scale(0.94); }
.showcase__arrow[disabled] { opacity: 0; pointer-events: none; }
@media (pointer: fine) {
  .showcase__arrow { display: inline-flex; }
}

.showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.showcase__dots button {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.showcase__dots button.is-active { background: var(--accent-soft); transform: scale(1.3); }

/* Why authentic content matters */
.work__why {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
  text-align: center;
}
.work__why-title { font-size: var(--fs-h3-lg); font-weight: 400; line-height: 1.2; color: var(--cream); margin: 0 0 1.75rem; }
.work__why-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 760px; margin: 0 auto;
}
.work__why-list li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: 0.95rem; }
.work__why-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ============================ FOUNDER ============================ */
/* The personal section — slightly tighter than the standard rhythm, so it
   reads as closer/quieter rather than another grand showcase. */
.founder {
  position: relative;
  isolation: isolate;
  background: var(--obsidian);
  padding-block: clamp(4rem, 2.5rem + 6vw, 7rem);
}
.founder::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4%;
  left: 8%;
  width: min(640px, 70vw);
  height: 640px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.founder__inner {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}

/* Editorial portrait — natural framing, the workshop stays visible */
.founder__media { margin: 0; }
.founder__photo {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-media);
  transform: scale(1.08);
  transition: transform 1.2s var(--ease);
}
.founder__media.is-visible .founder__photo { transform: scale(1); }

.founder__body { margin: 1.4rem 0 0; color: var(--muted); max-width: 54ch; }
.founder__sign { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 2rem; }
.founder__name { font-family: var(--display); font-size: var(--fs-h3); line-height: 1.2; color: var(--cream); }
.founder__role { font-size: 0.75rem; text-transform: uppercase; color: var(--accent); }

/* Story beats — same rhythm as the Results case study */
.founder__block {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
}
.founder__block-label {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.founder__block-title {
  font-size: var(--fs-h3-lg);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.founder__block-body { margin: 0 0 1.4rem; max-width: 62ch; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.founder__block-body:last-child { margin-bottom: 0; }

/* Philosophy — a manifesto, not a values grid. One column, large outlined
   numerals, hairline rules between lines instead of six bordered boxes. */
.founder__principles { max-width: 640px; }
.founder__principle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 1.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease), background-color 0.4s var(--ease);
}
.founder__principles li:last-child { border-bottom: 1px solid var(--border); }
.founder__principle:hover { padding-left: 0.5rem; background: var(--surface-1); }
.founder__principle-num {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--accent);
}
.founder__principle-text {
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
}

/* ============================ PRICING ============================ */
.pricing { position: relative; isolation: isolate; background: linear-gradient(180deg, var(--obsidian), var(--obsidian-soft)); }
.pricing::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 85vw);
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.045) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.pricing__fee {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.pricing__block-label {
  display: block; text-align: center;
  font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--accent); margin: 0 0 1rem;
}
.pricing__block-title {
  text-align: center; font-weight: 400; line-height: 1.2;
  font-size: var(--fs-h3-lg);
  color: var(--cream); margin: 0 0 2.5rem;
}

/* The journey */
.pricing__journey {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.pricing__journey-step {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem) clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--surface-1);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card), var(--inset-light);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing__journey-step:hover {
  transform: var(--lift-card);
  border-color: var(--border-strong);
  background: var(--surface-2);
  box-shadow: var(--shadow-card-hover), var(--inset-light);
}
.pricing__journey-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 0.7rem; color: var(--accent);
}
.pricing__journey-title { font-family: var(--display); font-size: var(--fs-h3); font-weight: 400; line-height: 1.2; margin: 0 0 0.65rem; color: var(--cream); }
.pricing__journey-text { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* What's included — an unboxed ledger rather than a grid of feature cards.
   Each line is a row separated by a hairline rule, icon inline-left; reads
   like a manifest, not the generic "everything included" card grid. */
.pricing__included { margin-top: clamp(4rem, 7vw, 6rem); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 4vw, 3.5rem);
}
.pricing__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  align-items: baseline;
  padding-block: 1.4rem;
  border-top: 1px solid var(--border);
  transition: background-color 0.3s var(--ease);
}
.pricing__grid .pricing__feature:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
.pricing__feature:hover { background: var(--surface-1); }
.pricing__feature-icon {
  grid-row: 1 / 3;
  align-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: var(--accent-soft);
  transition: transform 0.4s var(--ease);
}
.pricing__feature:hover .pricing__feature-icon { transform: scale(1.1); }
.pricing__feature-icon img { width: 20px; height: 20px; object-fit: contain; filter: grayscale(1) brightness(1.6) contrast(1.05); }
.pricing__feature-icon svg { width: 20px; height: 20px; }
.pricing__feature-title { font-size: var(--fs-h4); font-weight: 600; line-height: 1.3; color: var(--cream); margin: 0; }
.pricing__feature-text { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* Interactive feature explorer */
.pricing__explorer { margin-top: clamp(4rem, 7vw, 6rem); }
.pricing__explorer-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.pricing__explorer-tabs { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing__explorer-tab {
  text-align: left;
  padding: 0.95rem 1.25rem;
  font-family: var(--body); font-size: 0.95rem; color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.pricing__explorer-tab:hover { color: var(--cream); border-color: var(--border-strong); }
.pricing__explorer-tab.is-active {
  color: var(--cream);
  border-color: var(--accent);
  background: var(--surface-1);
}

.pricing__explorer-stage {
  position: relative;
  min-height: 320px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--inset-light);
}
.pricing__explorer-panel { display: none; }
.pricing__explorer-panel.is-active { display: block; animation: explorerFade 0.4s var(--ease); }
@keyframes explorerFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.pricing__explorer-art {
  width: 100%; max-width: 280px; margin: 0 auto 1.75rem;
  color: var(--accent-soft);
}
.pricing__explorer-explain { margin: 0 0 0.85rem; color: var(--cream); font-size: 1.02rem; line-height: 1.6; text-align: center; }
.pricing__explorer-why { margin: 0; color: var(--muted-deep); font-size: 0.78rem; line-height: 1.6; text-align: center; }

.pricing__transition {
  margin: clamp(4rem, 7vw, 6rem) 0 0;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  color: var(--cream);
}
.pricing__cta-wrap { text-align: center; margin-top: 2rem; }
.pricing__note { text-align: center; font-size: 0.72rem; color: var(--muted-deep); margin: 1rem 0 0; text-transform: uppercase; }

/* ============================ AUDIT ============================ */
.audit {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, var(--obsidian-soft), var(--obsidian) 35%);
}
.audit__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: stretch; }
.audit__form-panel { display: flex; flex-direction: column; }

.audit__block-label {
  display: block;
  font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.1rem;
}
.audit__next { margin-bottom: 2.25rem; }
.audit__next-list { display: grid; gap: 0.75rem; }
.audit__next-list li {
  display: flex; align-items: center; gap: 0.9rem;
  color: var(--cream); font-size: 0.95rem;
}
.audit__next-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 0.7rem; color: var(--accent);
}
.audit__fear-removal {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 48ch;
}

/* Proof callout — real numbers, placed right before the ask */
.audit__proof {
  display: block;
  margin-bottom: 2.25rem;
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-1);
  box-shadow: var(--shadow-card), var(--inset-light);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
    transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.audit__proof:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: var(--lift-card);
  box-shadow: var(--shadow-card-hover), var(--inset-light);
}
.audit__proof-label {
  font-size: var(--fs-label); letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.1rem;
}
.audit__proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; }
.audit__proof-stats dt { margin: 0 0 0.6rem; font-size: 0.74rem; color: var(--muted); line-height: 1.4; }
.audit__proof-stats dd { margin: 0; font-family: var(--display); font-size: 1.6rem; color: var(--accent-soft); line-height: 1; }
.audit__proof-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.82rem; color: var(--cream);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  width: 100%;
}
.audit__proof:hover .audit__proof-link { color: var(--accent-soft); }

/* Free profile review */
.audit__review {
  display: flex; gap: 1.1rem; align-items: flex-start;
  margin: 2.25rem 0 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--inset-light);
}
.audit__review-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--accent-soft);
}
.audit__review-icon svg { width: 20px; height: 20px; }
.audit__review-title { margin: 0 0 0.5rem; font-size: var(--fs-h4); font-weight: 600; line-height: 1.3; color: var(--cream); }
.audit__review-text { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; max-width: 42ch; }

/* Contact method cards */
.audit__methods { display: grid; gap: 0.9rem; }
.audit__method {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.2rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-1);
  box-shadow: var(--shadow-card), var(--inset-light);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease),
    transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.audit__method:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: var(--lift-card);
  box-shadow: var(--glow-light-hover), var(--inset-light);
}
.audit__method-icon {
  grid-row: 1 / 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  color: var(--accent-soft);
  transition: transform 0.35s var(--ease);
  /* Own compositing layer — WebKit can otherwise fail to repaint an SVG
     nested inside a [data-reveal] parent once its blur-filter transition
     finishes, leaving the icon stuck invisible. */
  transform: translateZ(0);
}
.audit__method-icon svg,
.audit__method-icon img { width: 26px; height: 26px; object-fit: contain; }
.audit__method:hover .audit__method-icon { transform: translateZ(0) scale(1.1); }
.audit__method-title { font-size: var(--fs-h4); font-weight: 600; line-height: 1.3; color: var(--cream); }
.audit__method-text { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }

.audit__form { display: flex; justify-content: center; }

/* ----- Multi-step enquiry wizard -----
   One question at a time inside a floating glass card. Steps stay in the
   DOM always (never `display: none` mid-transition) so opacity/transform
   can animate both directions — same reasoning as the dropdown menus. */
.wizard {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 22px;
  background: rgba(18, 18, 21, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card-hover), var(--inset-light), 0 0 60px -20px rgba(255, 255, 255, 0.12);
}

.wizard__bar { height: 3px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.wizard__bar-fill {
  height: 100%; width: 0%;
  background: var(--accent-soft);
  border-radius: 999px;
  transition: width 0.35s var(--ease), box-shadow 0.3s var(--ease);
}
.wizard__bar-fill.is-pulsing { box-shadow: 0 0 14px 2px rgba(255, 255, 255, 0.55); }
.wizard__count {
  margin: 0.85rem 0 0;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-deep);
  min-height: 1em;
}
.wizard[data-current="welcome"] .wizard__bar,
.wizard[data-current="welcome"] .wizard__count { opacity: 0; }

.wizard__viewport { position: relative; margin-top: 1.5rem; min-height: 60px; }

.wizard__step { display: none; }
.wizard__step.is-active {
  display: block;
  opacity: 1;
  /* `none`, not translateX(0) scale(1) — an identity transform still opens
     a new stacking context, which was trapping the dropdown menu's
     z-index below the nav row sitting right after it in the DOM. */
  transform: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.wizard__step.is-active.wizard__step--enter-right,
.wizard__step.is-active.wizard__step--exit-right { opacity: 0; transform: translateX(28px) scale(0.98); }
.wizard__step.is-active.wizard__step--enter-left,
.wizard__step.is-active.wizard__step--exit-left { opacity: 0; transform: translateX(-28px) scale(0.98); }
.no-js .wizard__step { display: block; opacity: 1; transform: none; }

.wizard__title { font-size: var(--fs-h3-lg); font-weight: 400; line-height: 1.2; color: var(--cream); margin: 0 0 0.9rem; }
.wizard__body { margin: 0 0 1.4rem; color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.wizard__meta { margin: 0 0 1.75rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-deep); }
.wizard__start { width: 100%; }

.wizard__question { display: block; font-size: var(--fs-h4-lg, 1.3rem); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); font-weight: 400; line-height: 1.3; color: var(--cream); margin: 0 0 1.25rem; }
.wizard__input {
  width: 100%;
  font-family: var(--body); font-size: 1.05rem; color: var(--cream);
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.wizard__input:focus { outline: none; border-color: var(--accent); background: var(--panel-2); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07); }
.wizard__textarea { resize: vertical; }
.wizard__step .dropdown__trigger { padding: 1rem 1.1rem; font-size: 1.05rem; }

.wizard__input.is-invalid,
.dropdown.is-invalid .dropdown__trigger { border-color: var(--danger); background: rgba(224, 101, 79, 0.07); }
.wizard__input.is-invalid:focus { border-color: var(--danger); }
.is-shake { animation: fieldShake 0.4s var(--ease); }
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}
.wizard__field-error {
  margin: 0; color: #f3a392; font-size: 0.82rem;
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: opacity 0.25s var(--ease), max-height 0.25s var(--ease), margin-top 0.25s var(--ease);
}
.wizard__field-error.is-visible { max-height: 60px; opacity: 1; margin-top: 0.65rem; }

.wizard__summary { margin: 0; }
.wizard__summary.is-hidden { display: none; }
.wizard__summary-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--border);
}
.wizard__summary-row:last-child { border-bottom: 1px solid var(--border); }
.wizard__summary-row dt { font-size: 0.78rem; color: var(--muted); flex-shrink: 0; }
.wizard__summary-row dd { margin: 0; color: var(--cream); font-size: 0.9rem; text-align: right; }

.wizard__success {
  display: none;
  flex-direction: column; align-items: center; gap: 0.85rem;
  text-align: center; color: var(--cream); font-size: 0.95rem;
  padding-block: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.wizard__success.is-active { display: flex; opacity: 1; }
.wizard__success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  color: var(--accent-soft);
  transform: scale(0.6);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wizard__success.is-active .wizard__success-icon { transform: scale(1); }
.wizard__success-icon svg { width: 22px; height: 22px; }

.wizard__nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.wizard[data-current="welcome"] .wizard__nav { display: none; }
.wizard__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-1); border: 1px solid var(--border-strong);
  color: var(--cream);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.wizard__arrow svg { width: 18px; height: 18px; }
.wizard__arrow:hover { transform: scale(1.08); border-color: var(--accent); }
.wizard__arrow:disabled { opacity: 0.3; cursor: default; transform: none; }
.wizard[data-current="name"] .wizard__arrow--prev { visibility: hidden; }
.wizard__arrow--edit,
.wizard__arrow--send {
  width: auto; height: auto; border-radius: 999px;
  padding: 0.95rem 1.6rem; font-family: var(--body); font-size: 0.95rem; font-weight: 500;
  gap: 0.5rem;
}
.wizard__arrow--edit svg, .wizard__arrow--send svg { width: 16px; height: 16px; }
.wizard__arrow--send { background: var(--accent-soft); color: var(--on-accent); border-color: transparent; box-shadow: var(--glow-light); }
.wizard__arrow--send:hover { background: var(--accent); box-shadow: var(--glow-light-hover); transform: translateY(-2px); }
.wizard__arrow--edit:hover { transform: none; border-color: var(--accent); }

/* ----- Custom dropdowns (Industry / biggest challenge / timeline) -----
   A native <select>'s popup can't be styled — wrong tool for a "feels
   custom-built" requirement. This is the standard ARIA listbox pattern:
   a button toggles a list of options; a hidden input carries the actual
   form value. The menu stays in the DOM at all times (never `display:
   none`) so opacity/transform can transition both ways — toggling via
   the `hidden` attribute would make the close animation invisible. */
.dropdown { position: relative; }
.dropdown__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--body); font-size: 1rem; color: var(--cream);
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  cursor: pointer; text-align: left;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.dropdown__trigger span { color: var(--cream); }
.dropdown__trigger[data-placeholder] span { color: var(--muted); }
.dropdown__trigger:hover { border-color: var(--border-strong); }
.dropdown__trigger:focus-visible { outline: none; border-color: var(--accent); }
.dropdown.is-open .dropdown__trigger {
  border-color: var(--accent);
  background: var(--panel-2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.dropdown__chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.dropdown.is-open .dropdown__chevron { transform: rotate(180deg); color: var(--accent-soft); }

.dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0; right: 0;
  z-index: 20;
  margin: 0; padding: 0.4rem;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card-hover), var(--inset-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s linear 0.22s;
}
.dropdown.is-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dropdown__menu [role="option"] {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: calc(var(--radius-sm) - 4px);
  font-size: 0.92rem; color: var(--cream);
  cursor: pointer;
  transition: background-color 0.15s var(--ease);
}
.dropdown__menu [role="option"].is-highlighted { background: var(--surface-2); }
.dropdown__menu [role="option"][aria-selected="true"] { color: var(--accent-soft); font-weight: 500; }
.dropdown__check {
  display: inline-flex; width: 16px; height: 16px; flex-shrink: 0;
  color: var(--accent-soft);
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.dropdown__menu [role="option"][aria-selected="true"] .dropdown__check { opacity: 1; transform: scale(1); }
.dropdown__check svg { width: 100%; height: 100%; }

.audit__closing {
  margin: clamp(4rem, 7vw, 6rem) auto 0;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--gutter) 0;
  background-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  font-weight: 400;
  color: var(--cream);
  max-width: 56ch;
}
.audit__closing span { display: block; margin-top: 0.85rem; font-size: 0.9rem; color: var(--muted); font-family: var(--body); }

/* ============================ FOOTER ============================ */
.site-footer { padding-block: clamp(3rem, 5vw, 4.5rem); border-top: 1px solid var(--border); background: var(--obsidian); }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start; }
.site-footer__tagline { font-size: 1.05rem; color: var(--muted); margin: 1rem 0 0; font-style: italic; max-width: 30ch; }
.site-footer__social { display: flex; flex-direction: column; gap: 0.6rem; color: var(--muted); }
.site-footer__social a { display: inline-flex; align-items: center; gap: 0.55rem; }
.site-footer__social-icon { display: inline-flex; width: 16px; height: 16px; }
.site-footer__social-icon svg { width: 100%; height: 100%; }
.site-footer__social a:hover { color: var(--accent-soft); }
.site-footer__legal { font-size: 0.72rem; color: var(--muted-deep); line-height: 1.8; }

/* ============================ REVEAL ANIMATION ============================ */
/* A slight blur-to-sharp "focus pull" alongside the fade/rise — the same
   move Linear and Stripe use so content feels like it's settling into
   focus rather than just sliding into place. */
[data-reveal] { opacity: 0; transform: translateY(22px); filter: blur(6px); }
.is-ready [data-reveal] {
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), filter var(--dur) var(--ease);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

/* No-JS fallback: everything visible */
.no-js [data-reveal] { opacity: 1; transform: none; filter: none; }

/* ----- Staggered entrance for card grids -----
   Each group reveals as a sequence rather than a single block — every item
   already carries its own [data-reveal] (added per component), this just
   offsets when each one starts. */
.is-ready .process__step:nth-child(2)   { transition-delay: 0.08s; }
.is-ready .process__step:nth-child(3)   { transition-delay: 0.16s; }
.is-ready .process__step:nth-child(4)   { transition-delay: 0.24s; }
.is-ready .process__step:nth-child(5)   { transition-delay: 0.32s; }
.is-ready .process__step:nth-child(6)   { transition-delay: 0.4s; }

.pricing__journey-step:nth-child(2)     { transition-delay: 0.1s; }
.pricing__journey-step:nth-child(3)     { transition-delay: 0.2s; }

.founder__principle:nth-child(2)        { transition-delay: 0.06s; }
.founder__principle:nth-child(3)        { transition-delay: 0.12s; }
.founder__principle:nth-child(4)        { transition-delay: 0.18s; }
.founder__principle:nth-child(5)        { transition-delay: 0.24s; }
.founder__principle:nth-child(6)        { transition-delay: 0.3s; }

.results__stat:nth-child(2)             { transition-delay: 0.05s; }
.results__stat:nth-child(3)             { transition-delay: 0.1s; }
.results__stat:nth-child(4)             { transition-delay: 0.15s; }
.results__stat:nth-child(5)             { transition-delay: 0.2s; }
.results__stat:nth-child(6)             { transition-delay: 0.25s; }
.results__stat:nth-child(7)             { transition-delay: 0.3s; }
.results__stat:nth-child(8)             { transition-delay: 0.35s; }

.pricing__feature:nth-child(2)          { transition-delay: 0.04s; }
.pricing__feature:nth-child(3)          { transition-delay: 0.08s; }
.pricing__feature:nth-child(4)          { transition-delay: 0.12s; }
.pricing__feature:nth-child(5)          { transition-delay: 0.16s; }
.pricing__feature:nth-child(6)          { transition-delay: 0.2s; }
.pricing__feature:nth-child(7)          { transition-delay: 0.24s; }
.pricing__feature:nth-child(8)          { transition-delay: 0.28s; }
.pricing__feature:nth-child(9)          { transition-delay: 0.32s; }
.pricing__feature:nth-child(10)         { transition-delay: 0.36s; }

.audit__methods li:nth-child(2) .audit__method { transition-delay: 0.06s; }
.audit__methods li:nth-child(3) .audit__method { transition-delay: 0.12s; }
.audit__methods li:nth-child(4) .audit__method { transition-delay: 0.18s; }
.audit__methods li:nth-child(5) .audit__method { transition-delay: 0.24s; }

/* ============================ HERO CINEMATIC INTRO ============================ */
/* Driven directly by scroll position in script.js — opacity/transform are set
   per-frame from an eased scroll progress, so no CSS transition is declared
   here (a transition would fight the scroll-linked values and feel laggy). */
.hero [data-hero-reveal] {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.no-js .hero [data-hero-reveal] { opacity: 1; transform: none; }

/* ============================ FLOATING ENQUIRY ============================ */
/* Sitewide, independent of every section's own layout — fixed to the
   viewport, not the page flow, so nothing above could ever push on it. */
/* Locking scroll mid-page is handled via JS pinning body to a fixed
   offset (see script.js) rather than overflow:hidden — that combination
   resets scrollTop to 0 in most browsers when applied below the top of
   the page, which is exactly the bug this avoids. */
html.fab-locked { overflow: hidden; }

.fab {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 18, 21, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card-hover), 0 0 0 0 rgba(255, 255, 255, 0.18);
  color: var(--cream);
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
  animation: fabBreathe 9s var(--ease) infinite;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.fab:hover {
  transform: translateY(-4px);
  background: rgba(26, 26, 30, 0.95);
  box-shadow: var(--shadow-card-hover), 0 0 28px 4px rgba(255, 255, 255, 0.16);
}
.fab:active { transform: translateY(-2px) scale(0.97); }
@keyframes fabBreathe {
  0%, 100% { box-shadow: var(--shadow-card-hover), 0 0 0 0 rgba(255, 255, 255, 0.18); }
  50% { box-shadow: var(--shadow-card-hover), 0 0 22px 3px rgba(255, 255, 255, 0.22); }
}

/* Click ripple — a soft expanding ring, not a filled Material disc, to stay
   in keeping with the rest of the site's restraint. */
.fab__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}
.fab__ring.is-rippling {
  animation: fabRipple 0.6s var(--ease);
}
@keyframes fabRipple {
  from { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); opacity: 1; }
  to { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); opacity: 0; }
}

.fab__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-on-media);
  color: var(--accent-soft);
}
.fab__icon svg { width: 17px; height: 17px; }

.fab__text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; white-space: nowrap; }
.fab__eyebrow { font-size: 0.62rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.fab__label { font-size: 0.85rem; font-weight: 500; color: var(--cream); }

.fab__hint {
  display: none;
  font-size: 0.85rem; font-weight: 500; color: var(--cream);
  white-space: nowrap;
}
.fab.is-hinting .fab__text { display: none; }
.fab.is-hinting .fab__hint { display: inline-flex; align-items: center; }

/* ----- Panel ----- */
.fab-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 7, 8, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.fab-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s var(--ease);
}

.fab-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: 22px;
  background: rgba(18, 18, 21, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card-hover), var(--inset-light), 0 0 70px -20px rgba(255, 255, 255, 0.14);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.fab-overlay.is-open .fab-panel { transform: translateY(0) scale(1); opacity: 1; }

.fab-panel__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  color: var(--cream);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.fab-panel__close:hover { transform: scale(1.08) rotate(90deg); border-color: var(--accent); }
.fab-panel__close svg { width: 15px; height: 15px; }

.fab-panel__header { padding-right: 2.5rem; margin-bottom: 1.5rem; }
.fab-panel__title { font-size: var(--fs-h3-lg); font-weight: 400; line-height: 1.2; color: var(--cream); margin: 0 0 0.75rem; }
.fab-panel__subtitle { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.fab-panel__meta { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-deep); }

.fab-panel__slot .wizard { max-width: none; padding: 0; background: none; backdrop-filter: none; border: none; box-shadow: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .problem__grid,
  .process__steps { grid-template-columns: 1fr 1fr; }
  .problem__panel:nth-child(3) { grid-column: 1 / -1; }
  .founder__inner,
  .audit__inner { grid-template-columns: 1fr; }
  .founder__media { max-width: 420px; }
  .results__stats,
  .results__gallery { grid-template-columns: 1fr 1fr; }
  .pricing__explorer-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-nav,
  .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 620px) {
  .problem__grid,
  .process__steps,
  .results__compare-captions,
  .results__stats,
  .results__gallery { grid-template-columns: 1fr; }
  .process__step--featured { grid-column: 1; }
  .wizard { padding: 1.5rem; }
  .wizard__arrow:not(.wizard__arrow--edit):not(.wizard__arrow--send) { width: 52px; height: 52px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__scroll { display: none; }
  .pricing__journey { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid .pricing__feature:nth-last-child(-n+2) { border-bottom: none; }
  .pricing__grid .pricing__feature:last-child { border-bottom: 1px solid var(--border); }
  .audit__proof-stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .fab { right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); padding: 0.65rem 0.9rem 0.65rem 0.65rem; }
  .fab__eyebrow { font-size: 0.58rem; }
  .fab__label { font-size: 0.8rem; }
  .fab-overlay { padding: 0; align-items: flex-end; }
  .fab-panel { max-width: none; max-height: 92vh; border-radius: 22px 22px 0 0; padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px)); }
  .fab-overlay.is-open .fab-panel { transform: translateY(0); }
}

/* ============================ MOTION PREFERENCES ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  [data-hero-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__video { transform: scale(1) !important; }
  .hero__overlay { opacity: 0.45 !important; }
  .problem__panel-img,
  .showcase__slide img,
  .results__gallery-item img,
  .founder__photo {
    transform: none !important;
  }
  .showcase__track { scroll-behavior: auto !important; }
}
