/* ==========================================================================
   AR AUTOMATION — "The Golden Thread"
   Editorial luxury. Matte black / warm cream flip / one continuous gold line.
   Fraunces (emotion) × Space Grotesk (structure).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0A0A;
  --cream: #F2EBDD;
  --ink: #141210;              /* near-black text on cream */
  --text: #F5F0E8;
  --muted: rgba(245, 240, 232, 0.55);
  --faint: rgba(245, 240, 232, 0.28);

  --gold: #F5A623;
  --gold-light: #FFD98A;
  --gold-deep: #8a5d10;
  --grad: linear-gradient(105deg, #F5A623 0%, #FFD98A 100%);
  --hairline: rgba(245, 166, 35, 0.16);

  --serif: "Fraunces", Georgia, serif;
  --grotesk: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --pad: clamp(1.25rem, 4vw, 5.5rem);

  /* custom cubic-beziers — no default eases anywhere */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-silk: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-yank: cubic-bezier(0.7, 0, 0.18, 1);
  --ease-drift: cubic-bezier(0.45, 0.05, 0.15, 0.95);
}

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

html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
}
html.is-locked { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--grotesk);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100svh;
}

html.cursor-on body,
html.cursor-on a,
html.cursor-on button { cursor: none; }

img, video, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #0A0A0A; }
::-moz-selection { background: var(--gold); color: #0A0A0A; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-light)); border-radius: 99px; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* ---------- Film grain + vignette ---------- */
.grain {
  position: fixed; inset: 0;
  z-index: 9990;
  pointer-events: none;
  overflow: hidden;
}
.grain::before {
  content: "";
  position: absolute; inset: -100%;
  width: 300%; height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grainShift 900ms steps(6) infinite;
}
.grain::after {
  /* subtle vignette */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 105% at 50% 45%, transparent 62%, rgba(0, 0, 0, 0.32) 100%);
}
@keyframes grainShift {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(-2%, -3%, 0); }
  50%  { transform: translate3d(2%, 1%, 0); }
  75%  { transform: translate3d(-1%, 3%, 0); }
  100% { transform: translate3d(3%, -2%, 0); }
}

/* ==========================================================================
   TYPE SYSTEM
   ========================================================================== */
.f-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
}
.gold-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em; /* italic overhang room */
}

.micro-label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--grotesk);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25em;
  letter-spacing: 0;
  color: var(--gold);
}

.edge-note {
  position: absolute;
  top: 50%;
  right: calc(var(--pad) * 0.35);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.ghost-num {
  position: absolute;
  left: -3vw;
  bottom: -9vw;
  font-family: var(--grotesk);
  font-size: 30vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.13);
  pointer-events: none;
  user-select: none;
}

/* masked line reveals */
.hl-mask {
  display: block;
  overflow: clip;
  padding: 0.13em 0.12em;
  margin: -0.13em -0.12em;
}
.hl-line {
  display: block;
  transform-origin: left bottom;
  will-change: transform;
}

/* thread-drawn underline on hover (wavy gold stitch) */
.stitch-link {
  position: relative;
  padding-bottom: 0.35em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux);
}
.stitch-link:hover { background-size: 100% 7px; color: var(--gold-light); }

/* ==========================================================================
   THE GOLDEN THREAD (SVG segments)
   ========================================================================== */
.thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.thread-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}
.thread-dark .thread-path { stroke: var(--ink); opacity: 0.85; }

/* mobile simplified thread: vertical line down the left edge */
.thread-mobile {
  display: none;
  position: fixed;
  top: 0; left: max(12px, 3.5vw);
  width: 1.5px;
  height: 100svh;
  z-index: 5;
  background: linear-gradient(var(--gold), var(--gold-light));
  transform-origin: top center;
  transform: scaleY(0);
  pointer-events: none;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0;
  z-index: 9980;
  background:
    radial-gradient(125% 90% at 50% 40%, rgba(245, 166, 35, 0.07), transparent 58%),
    var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.pre-inner {
  width: min(78vw, 440px);
  will-change: transform, opacity;
}
.pre-logo-wrap {
  position: relative;
  width: min(64vw, 330px);
  margin: 0 auto;
  aspect-ratio: 752 / 356;
}
.pre-logo {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 46px rgba(0, 0, 0, 0.55));
  clip-path: inset(0 100% 0 0);        /* JS wipes this open — logo "draws in" */
}
/* gold light streak, masked to the exact logo shape so it only catches the glyph */
.pre-sheen {
  position: absolute; inset: 0;
  -webkit-mask: url("logo-full.png") center / contain no-repeat;
          mask: url("logo-full.png") center / contain no-repeat;
  background: linear-gradient(105deg,
    transparent 42%, rgba(255, 246, 224, 0.9) 50%, transparent 58%);
  background-size: 260% 100%;
  background-repeat: no-repeat;
  background-position: -60% 0;
  opacity: 0;
  pointer-events: none;
}
.pre-line {
  position: relative;
  height: 1px;
  margin: clamp(1.9rem, 5vw, 2.6rem) auto 1.05rem;
  width: 100%;
  background: rgba(245, 240, 232, 0.11);
  overflow: hidden;
}
.pre-line i {
  position: absolute; inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), #FFD98A);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.6);
}
.pre-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--grotesk);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
}
.pre-count { color: var(--gold-light); font-variant-numeric: tabular-nums; }
.pre-count b { font-weight: 600; }
.pre-count em { font-style: normal; opacity: 0.55; margin-left: 0.15em; }

/* ==========================================================================
   CURSOR — canvas trail + label blob
   ========================================================================== */
#cursorCanvas {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 9995;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-lux);
}
html.cursor-on #cursorCanvas { opacity: 1; }

.cursor-blob {
  position: fixed; top: 0; left: 0;
  z-index: 9996;
  pointer-events: none;
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--gold-light), var(--gold));
  box-shadow: 0 0 44px rgba(245, 166, 35, 0.45);
  transform: scale(0);
  transition: transform 0.5s var(--ease-silk);
}
html.cursor-label-on .cursor-blob { transform: scale(1); }
.cursor-blob-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0A0A0A;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  transition: transform 0.7s var(--ease-lux), background-color 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom-color: var(--hairline);
}
.nav.nav-init, .nav.is-hidden { transform: translateY(-110%); }

.nav-logo { display: inline-flex; align-items: center; gap: 0.7rem; position: relative; overflow: hidden; }
.nav-logo-img {
  height: 30px; width: auto; display: block;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4));
}
/* golden shimmer sweep across the mark on hover */
.nav-logo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(245, 166, 35, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
@media (hover: hover) {
  .nav-logo:hover::after { transition: transform 0.9s var(--ease-lux); transform: translateX(120%); }
}
.nav-logo-word {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-clock {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.clock-sep { color: var(--gold); margin: 0 0.6em; }

/* circular CTA with rotating rim text */
.orbit-cta {
  position: relative;
  width: 92px; height: 92px;
  display: grid;
  place-items: center;
  flex: none;
  will-change: transform;
}
.orbit-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: orbitSpin 16s linear infinite;
}
.orbit-text {
  font-family: var(--grotesk);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  fill: var(--muted);
  transition: fill 0.4s var(--ease-lux);
}
.orbit-cta:hover .orbit-text { fill: var(--gold-light); }
.orbit-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.6);
  transition: transform 0.5s var(--ease-silk);
}
.orbit-cta:hover .orbit-dot { transform: scale(1.8); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* ==========================================================================
   01 · HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  /* poster paints instantly under the video — no black flash while it buffers */
  background-image:
    url("hero-poster.jpg"),
    radial-gradient(ellipse 80% 60% at 72% 18%, rgba(245, 166, 35, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #14100a 0%, #0A0A0A 55%, #0d0b07 100%);
  background-size: cover, auto, auto;
  background-position: center 38%, center, center;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  /* lifted presence: no brightness cut — legibility comes from the
     bottom gradient + vignette, not from dimming the frame */
  filter: contrast(1.06) saturate(1.05);
  opacity: 0;
  transition: opacity 0.9s var(--ease-lux);
}
.hero-video.is-ready { opacity: 1; }
.hero-grade {
  /* faint gold wash only — brand warmth, never darkness */
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 70% 25%, rgba(245, 166, 35, 0.16) 0%, transparent 60%),
    linear-gradient(160deg, rgba(138, 93, 16, 0.1) 0%, transparent 45%, rgba(245, 166, 35, 0.08) 100%);
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hero-shade {
  /* targeted legibility: bottom-up gradient behind the headline zone only */
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 50%,
    rgba(10, 10, 10, 0.5) 78%,
    rgba(10, 10, 10, 0.88) 100%);
}
.hero-shade::after {
  /* very subtle edge vignette — the center stays bright and crisp */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 130% 115% at 50% 42%, transparent 62%, rgba(0, 0, 0, 0.32) 100%);
}

#dust {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  top: clamp(6.5rem, 14vh, 9rem);
  right: var(--pad);
  max-width: 250px;
  font-size: 0.82rem;
  font-weight: 350;
  line-height: 1.7;
  color: var(--muted);
  text-align: left;
}
.hero-meta .micro-label { margin-bottom: 0.9rem; color: var(--gold); }

.hero-title {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: clamp(4rem, 10vh, 7rem);
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(3rem, 10.5vw, 12.5rem);
  line-height: 0.99;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}
.hero-title .gold-text {
  /* clipped-gradient text can't take text-shadow — drop-shadow the pixels instead */
  text-shadow: none;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.55));
}
/* staggered left offsets — deliberately uneven */
.hero-title .hl-mask:nth-child(2) { margin-left: 0.55em; }
.hero-title .hl-mask:nth-child(3) { margin-left: 1.2em; }
.hero-title .f-it { font-weight: 380; letter-spacing: -0.015em; }

#thread-hero { z-index: 2; }

/* ==========================================================================
   02 · MANIFESTO — the light flip
   ========================================================================== */
.manifesto {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  min-height: 130vh;
  padding: clamp(9rem, 18vh, 14rem) var(--pad) clamp(8rem, 16vh, 12rem);
  overflow: clip;
}
.manifesto-skew { will-change: transform; }

.manifesto-label {
  color: rgba(20, 18, 16, 0.55);
  margin-bottom: clamp(3rem, 7vh, 5.5rem);
  margin-left: 8%;
}
.manifesto-label .label-num { color: var(--gold-deep); }

.manifesto-text {
  position: relative;
  z-index: 3;
  margin-left: 8%;
  max-width: 17ch;
  font-family: var(--grotesk);
  font-weight: 480;
  font-size: clamp(2rem, 4.6vw, 4.9rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
}
.manifesto-text .f-it { font-weight: 420; }
.manifesto-text .mword { display: inline-block; }

/* hand-drawn gold circles around key phrases */
.circled { position: relative; white-space: nowrap; }
.circle-svg {
  position: absolute;
  inset: -0.28em -0.35em -0.32em -0.4em;
  width: calc(100% + 0.75em);
  height: calc(100% + 0.6em);
  overflow: visible;
  pointer-events: none;
}
.circle-svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2px;
  stroke-linecap: round;
  opacity: 0.9;
}

.manifesto-aside {
  position: relative;
  z-index: 3;
  margin: clamp(4rem, 9vh, 7rem) 12% 0 auto;
  width: fit-content;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: rgba(20, 18, 16, 0.72);
  text-align: right;
}

#thread-manifesto { z-index: 1; }

/* ==========================================================================
   03 · SERVICES — takeover deck
   ========================================================================== */
.services { position: relative; }
#thread-services { z-index: 30; }

.svc-deck { position: relative; }

.svc-slide {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
}
.svc-card {
  position: relative;
  height: 100%;
  background: var(--slide-bg, #0A0A0A);
  overflow: clip;
  will-change: transform;
  border-top: 1px solid var(--hairline);
}
.svc-veil {
  position: absolute; inset: 0;
  z-index: 6;
  background: #050505;
  opacity: 0;
  pointer-events: none;
}

.svc-body {
  position: absolute;
  z-index: 4;
  left: clamp(1.25rem, 8vw, 9rem);
  bottom: clamp(3.5rem, 13vh, 8rem);
  max-width: min(52vw, 780px);
}
.svc-title {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.2rem, 8vw, 9rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.svc-title .f-it {
  font-weight: 380;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}
.svc-desc {
  max-width: 40ch;
  margin: 1.6rem 0 1.8rem 22%;   /* offset right — asymmetric on purpose */
  font-size: 0.95rem;
  font-weight: 350;
  color: var(--muted);
}
.svc-link {
  margin-left: 22%;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-link { /* stitch underline */
  padding-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux), letter-spacing 0.5s var(--ease-lux);
}
.svc-link:hover { background-size: 100% 7px; color: var(--gold-light); letter-spacing: 0.26em; }

/* media window with clip reveal + hover scale/tint */
.svc-media {
  position: absolute;
  z-index: 3;
  right: clamp(1.25rem, 7vw, 8rem);
  top: clamp(5.5rem, 13vh, 9rem);
  width: clamp(240px, 30vw, 460px);
  aspect-ratio: 4 / 3;
  overflow: clip;
  border-radius: 3px;
  clip-path: inset(0 0 0 0);
}
.svc-media-fill {
  position: absolute; inset: 0;
  transform: scale(1.001);
  transition: transform 1.2s var(--ease-drift);
}
.svc-media::after {
  /* gold tint on hover */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.28), rgba(255, 217, 138, 0.08));
  opacity: 0;
  transition: opacity 0.7s var(--ease-lux);
}
.svc-media:hover::after { opacity: 1; }
.svc-media:hover .svc-media-fill { transform: scale(1.05); }
.svc-media-cap {
  position: absolute;
  left: 1rem; bottom: 0.8rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}
/* real service imagery — fills the 4/3 frame; inherits the deck's clip-wipe
   reveal (.svc-media clip-path) + the hover zoom from .svc-media-fill */
.svc-media-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* browser-chrome bar — desktop keeps the clean editorial window (hidden);
   it becomes a premium app-window header on mobile */
.svc-chrome { display: none; }

.svc-edge { color: rgba(245, 240, 232, 0.22); }

/* ==========================================================================
   04 · PROCESS — the thread becomes the path
   ========================================================================== */
.process {
  position: relative;
  background: var(--bg);
  overflow: clip;
}
.process-head {
  position: absolute;
  z-index: 5;
  top: clamp(5rem, 10vh, 7rem);
  left: var(--pad);
  pointer-events: none;
}
.process-head .micro-label { margin-bottom: 1.4rem; }
.process-title {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.process-stage { height: 100vh; height: 100svh; }

.process-track {
  position: relative;
  width: 360vw;
  height: 100%;
  will-change: transform;
}
.thread-track { z-index: 1; }

.process-node {
  position: absolute;
  z-index: 3;
  left: var(--nx);
  top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.75);
  transform: scale(0);
}

.process-card {
  position: absolute;
  z-index: 2;
  left: var(--nx);
  top: 55%;
  width: clamp(300px, 26vw, 430px);
  padding: 1.9rem 2rem 2.1rem;
  background: rgba(18, 15, 8, 0.72);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  transform-origin: top left;
  will-change: transform;
}
.pc-num {
  position: absolute;
  top: -0.62em;
  right: 0.35em;
  font-family: var(--grotesk);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.4);
  pointer-events: none;
}
.pc-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
  margin-bottom: 0.7rem;
}
.pc-desc {
  font-size: 0.88rem;
  font-weight: 350;
  color: var(--muted);
}

/* ==========================================================================
   05 · RESULTS
   ========================================================================== */
.results {
  position: relative;
  min-height: 125vh;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(9rem, 18vh, 14rem);
  overflow: clip;
}
#thread-results { z-index: 1; }
.results-label { margin-bottom: clamp(3rem, 7vh, 5rem); }

.results-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.stat-hero { grid-column: 1 / 8; }
.stat-hero-num {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(6rem, 19vw, 21rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  display: flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}
/* gradient lives on the digits themselves — a background-clip:text parent
   with transformed (rolling) children mis-clips in Chrome */
.stat-hero-num .slot-digit,
.stat-hero-num .slot-static,
.stat-hero-unit,
html.reduced-motion .stat-hero-num .slot,
html.no-js .stat-hero-num .slot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-hero-unit { font-size: 0.42em; margin-left: 0.04em; }
.stat-hero-cap {
  margin: 2.2rem 0 0 6%;
  max-width: 26ch;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 350;
  line-height: 1.6;
  color: var(--muted);
}
.stat-hero-cap .f-it { color: var(--gold-light); }

.stat-side {
  grid-column: 8 / 13;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vh, 4.5rem);
  margin-top: clamp(6rem, 16vh, 12rem);
}
.stat-side .stat:nth-child(2) { margin-left: 14%; }
.stat-side .stat:nth-child(3) { margin-left: 5%; }

.stat { border-left: 1px solid var(--hairline); padding-left: 1.5rem; }
.stat-num {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.stat-x { font-size: 0.6em; color: var(--gold); margin-left: 0.08em; }
.stat-cap {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.results-edge { color: var(--faint); }

/* slot-machine digit columns — fixed 1em windows, tabular digits,
   whole-step translation; mobile uses a count-up instead (script.js) */
.slot { display: inline-flex; align-items: baseline; font-variant-numeric: tabular-nums; line-height: 1; }
.slot-col {
  display: inline-block;
  overflow: clip;
  height: 1em;
  line-height: 1;
  vertical-align: bottom;
  contain: paint;
}
.slot-stack { display: block; will-change: transform; }
.slot-digit { display: block; height: 1em; line-height: 1; text-align: center; }
.slot-static { display: inline-block; height: 1em; line-height: 1; vertical-align: bottom; }

/* ==========================================================================
   06 · FINAL CTA — the knot
   ========================================================================== */
.cta {
  position: relative;
  min-height: 130vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(6rem, 12vh, 9rem);
  overflow: clip;
}
#thread-knot { z-index: 1; }
.knot-glow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(7px);
  opacity: 0;
}

.cta-title {
  position: relative;
  z-index: 3;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(3.2rem, 14vw, 17rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.cta-title .hl-mask:nth-child(2) { margin-left: 0.7em; }
.cta-title .f-it { font-weight: 380; }

.btn-mega {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 1;
  margin: clamp(2rem, 5vh, 4rem) clamp(4vw, 10vw, 14vw) 0 auto;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  transition: box-shadow 0.7s var(--ease-lux);
}
.btn-mega-fill {
  position: absolute; inset: -1px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold));
  transform: scale(0);
  transition: transform 0.7s var(--ease-yank);
}
.btn-mega-label {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  letter-spacing: 0.02em;
  transition: color 0.5s var(--ease-lux);
}
.btn-mega:hover { box-shadow: 0 0 100px rgba(245, 166, 35, 0.4); }
.btn-mega:hover .btn-mega-fill { transform: scale(1.02); }
.btn-mega:hover .btn-mega-label { color: #0A0A0A; }

.cta-contacts {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3rem, 8vh, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.contact-line {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--grotesk);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 450;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-lux);
}
.contact-line:hover { color: var(--gold-light); }
.contact-line .micro-label { color: var(--faint); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3rem, 6vh, 5rem);
  overflow: clip;
}
.footer-logo {
  display: block;
  width: clamp(120px, 16vw, 180px); height: auto;
  margin: 0 var(--pad) clamp(2.5rem, 5vh, 4rem);
  opacity: 0.92;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 0 var(--pad) clamp(3rem, 6vh, 5rem);
}
.f-col { display: flex; flex-direction: column; gap: 0.55rem; }
.f-col .micro-label { color: var(--gold); margin-bottom: 0.7rem; }
.f-col a {
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 350;
  color: var(--muted);
  padding-bottom: 0.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 6px;
  transition: background-size 0.6s var(--ease-silk), color 0.35s var(--ease-lux);
}
.f-col a:hover { background-size: 100% 6px; color: var(--text); }
.f-note {
  font-size: 0.74rem;
  font-weight: 350;
  line-height: 1.8;
  color: var(--faint);
}

/* giant outlined marquee that fills with gold at page end */
.footer-marquee { overflow: clip; padding: 1.5rem 0 0.5rem; }
.fm-track {
  display: flex;
  width: max-content;
  animation: fmMove 38s linear infinite;
  will-change: transform;
}
.fm-word {
  font-family: var(--grotesk);
  font-size: 20vw;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.5);
  /* bottom half of this 200%-tall background is gold — JS scrubs it up into view */
  background-image: linear-gradient(to top, #F5A623 0%, #FFD98A 49.9%, transparent 50%);
  background-size: 100% 200%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes fmMove {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 899px) {
  .thread { display: none; }
  .thread-mobile { display: block; }

  .nav-clock { display: none; }
  .orbit-cta { width: 72px; height: 72px; }
  .orbit-text { font-size: 12px; }

  .hero-title { font-size: 10.8vw; right: var(--pad); }
  .hero-title .hl-mask:nth-child(2) { margin-left: 0.3em; }
  .hero-title .hl-mask:nth-child(3) { margin-left: 0.6em; }
  .hero-meta { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7); }
  /* portrait crop: keep the subject above the headline zone */
  .hero-video { object-position: 50% 30%; }
  .hero-media { background-image:
    url("hero-poster-mobile.jpg"),
    radial-gradient(ellipse 80% 60% at 72% 18%, rgba(245, 166, 35, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #14100a 0%, #0A0A0A 55%, #0d0b07 100%);
    background-position: center 30%, center, center;
  }
  .hero-meta {
    position: static;
    margin: 7.5rem var(--pad) 0 auto;
    padding-left: 0;
    max-width: 66vw;          /* keep the caption inside the viewport — no right-edge clip */
    text-align: right;
    overflow-wrap: break-word;
  }
  .hero-meta .micro-label { display: block; letter-spacing: 0.22em; }
  /* the reveal wrapper is inline-block (hugs content) → force it to wrap so the
     long "WEBSITES · APPS · AI AUTOMATION" line can't push the caption off-screen */
  .hero-meta .ml-text { max-width: 100%; white-space: normal; }
  .hero { display: flex; flex-direction: column; }
  .edge-note { display: none; }

  .manifesto-text { max-width: none; margin-left: 6%; font-size: 7.2vw; }
  .manifesto-label { margin-left: 6%; }

  /* services deck → horizontal swipe cards */
  .svc-deck {
    display: flex;
    gap: 4vw;
    overflow-x: auto;
    padding: 10vh var(--pad);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .svc-slide {
    position: static;
    flex: none;
    width: 84vw;
    height: 74svh;
    scroll-snap-align: center;
  }
  /* premium "app window" service card — the media becomes a big framed
     16:9 laptop screen on top, headline + copy stacked below */
  .svc-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.25rem, 5vw, 1.9rem);
    padding: clamp(1.35rem, 5.5vw, 2.1rem);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    overflow: hidden;
    will-change: transform, opacity;
  }
  .svc-body {
    position: relative;
    left: auto; bottom: auto;
    order: 2;
    max-width: 100%;
  }
  .svc-title { font-size: clamp(1.75rem, 8vw, 2.9rem); }
  .svc-desc { margin: 1.05rem 0 1.35rem; max-width: 42ch; }
  .svc-desc, .svc-link { margin-left: 0; }

  .svc-media {
    position: relative;
    order: 1;
    right: auto; left: auto; top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 7px;
    background: linear-gradient(158deg, #16130d, #0a0908);
    border: 1px solid rgba(245, 205, 130, 0.18);
    border-radius: 14px;
    box-shadow:
      0 30px 64px -30px rgba(0, 0, 0, 0.95),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: visible;
    clip-path: none;
  }
  .svc-media::after { display: none; }           /* no hover-tint layer on touch */

  .svc-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 10px;
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
    border-bottom: 1px solid rgba(245, 205, 130, 0.1);
  }
  .svc-chrome i {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4c4842;
  }
  .svc-chrome i:nth-child(3) {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
  }
  .svc-chrome b {
    margin-left: auto;
    font-family: var(--grotesk);
    font-weight: 450;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 232, 0.44);
    white-space: nowrap;
  }
  .svc-media-fill {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    display: block;
    transform: none;
    transition: none;
  }

  .ghost-num { font-size: 40vw; bottom: auto; top: -7vw; left: -3vw; z-index: 0; }

  /* process → vertical cards */
  .process-head { position: static; padding: clamp(5rem, 12vh, 8rem) var(--pad) 3rem; }
  .process-stage { height: auto; }
  .process-track { width: auto; height: auto; display: flex; flex-direction: column; gap: 2.2rem; padding: 0 var(--pad) 6rem; }
  .thread-track, .process-node { display: none; }
  /* width only — position/offset reset live in the mobile process block below
     (they must beat the base left:var(--nx)/top:55% used for the desktop track) */
  .process-card { width: auto; }

  .results-grid { grid-template-columns: 1fr; }
  .stat-hero { grid-column: auto; }
  .stat-side { grid-column: auto; margin-top: 3rem; }
  .results { min-height: 0; }

  .cta { min-height: 100svh; }
  .cta-title { font-size: 15vw; }
  .btn-mega { margin-right: auto; margin-left: 0; }

  .footer-cols { grid-template-columns: 1fr 1fr; }

  .cursor-blob, #cursorCanvas, #dust { display: none; }
}

@media (max-width: 540px) {
  /* premium 2-column footer grid — compact + balanced, never a sparse
     left-hugging list. Groups pair up: build|company, social|colophon */
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem 1.5rem;
    padding-top: clamp(2.5rem, 6vh, 3.5rem);
    border-top: 1px solid var(--hairline);
  }
  .f-col { gap: 0.75rem; }
  .f-col .micro-label { margin-bottom: 0.9rem; }
  .f-col a { font-size: 0.82rem; overflow-wrap: break-word; }
  .f-col-note .f-note { font-size: 0.72rem; }
  .nav-logo-word { display: none; }
}

html.touch .cursor-blob,
html.touch #cursorCanvas { display: none; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
html.reduced-motion .nav { transform: none !important; }
html.reduced-motion .thread-path,
html.reduced-motion .circle-svg path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
html.reduced-motion .process-stage { height: auto; }
html.reduced-motion .process-track {
  width: auto; height: auto;
  display: flex; flex-direction: column; gap: 2.5rem;
  padding: 0 var(--pad) 6rem;
}
html.reduced-motion .thread-track,
html.reduced-motion .process-node { display: none; }
html.reduced-motion .process-card { position: static; width: auto; }
html.reduced-motion .process-head { position: static; padding: clamp(5rem, 12vh, 8rem) var(--pad) 3rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .grain::before, .orbit-ring, .fm-track, .ticker-track, .msg-dots i { animation: none !important; }
  #cursorCanvas, .cursor-blob, #dust, .preloader { display: none !important; }
  .nav { transform: none !important; }
  .fm-word { background-position: 0% 100%; }
}

/* ==========================================================================
   02b · WE BUILD EVERYTHING DIGITAL
   ========================================================================== */
.build {
  position: relative;
  min-height: 115vh;
  padding: clamp(7rem, 15vh, 11rem) var(--pad);
  overflow: clip;
  background-color: var(--bg);
  transition: background-color 1s var(--ease-lux);
}
/* temperature morphs — one per word */
.build.is-hot-0 { background-color: #0A0D12; }  /* apps → cool night */
.build.is-hot-1 { background-color: #150F06; }  /* websites → warm bronze */
.build.is-hot-2 { background-color: #181106; }  /* AI → deep gold */

.build-label { margin-left: 8%; margin-bottom: clamp(3rem, 7vh, 5rem); }

.build-lines { margin-left: 8%; position: relative; z-index: 3; }
.build-line {
  width: fit-content;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 11.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--muted);
  transition: color 0.6s var(--ease-lux), transform 0.8s var(--ease-lux);
}
.build-line:nth-child(2) { margin-left: 0.55em; }
.build-line:nth-child(3) { margin-left: 1.15em; }
.build-line:hover { color: var(--text); transform: translateX(1.4vw); }
.build-line .f-it {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}

.build-word { position: relative; display: inline-block; }
.build-stitch {
  position: absolute;
  left: 0; bottom: -0.06em;
  width: 100%; height: 0.14em;
  overflow: visible;
  pointer-events: none;
}
.build-stitch path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2px;
  stroke-linecap: round;
}

.build-caption {
  position: relative;
  z-index: 3;
  margin: clamp(3rem, 7vh, 5rem) 10% 0 auto;
  width: fit-content;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: var(--muted);
}
.build-caption .f-it { color: var(--gold-light); }

/* media window sliding in from the right edge */
.build-media {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 28vw, 460px);
  aspect-ratio: 4 / 3;
  pointer-events: none;
}
.build-pane {
  position: absolute; inset: 0;
  border-radius: 4px 0 0 4px;
  overflow: clip;
  transform: translateX(105%);
  transition: transform 0.9s var(--ease-yank);
  box-shadow: -20px 30px 80px rgba(0, 0, 0, 0.55);
}
.build-pane.is-in { transform: translateX(0); }
/* BUILD MEDIA gradient placeholders — visible, premium; swap per HTML comments */
.bp-1 { background:
    radial-gradient(120% 85% at 78% 12%, rgba(245, 166, 35, 0.30), transparent 62%),
    linear-gradient(135deg, #1c1406 0%, #6b4c0e 68%, #b98518 100%); }
.bp-2 { background:
    radial-gradient(120% 85% at 78% 12%, rgba(127, 178, 216, 0.28), transparent 62%),
    linear-gradient(135deg, #0b111c 0%, #274563 68%, #5988b3 100%); }
.bp-3 { background:
    radial-gradient(120% 85% at 78% 12%, rgba(255, 217, 138, 0.34), transparent 62%),
    linear-gradient(135deg, #1c1406 0%, #7a5410 68%, #d1a02c 100%); }
.build-pane-cap {
  position: absolute;
  z-index: 3;
  left: 1.1rem; bottom: 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ---- real work imagery: cinematic reveal inside each pane ---- */
.build-pane-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  /* the pane's crossfade/slide handles arrival; the image keeps drifting
     (slow Ken Burns) so the frame never feels like a static screenshot */
  transition: transform 6.5s var(--ease-lux), clip-path 1.1s var(--ease-silk);
  clip-path: inset(0 0 0 100%);            /* hidden — wipes open on activate */
}
.build-pane.is-in .build-pane-img {
  transform: scale(1);
  clip-path: inset(0 0 0 0%);              /* left→right reveal */
}
.build-pane::before {                       /* bottom shade → caption legibility */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8, 6, 3, 0.8) 0%, rgba(8, 6, 3, 0.14) 34%, transparent 56%);
  pointer-events: none;
}
.build-pane::after {                        /* gold sheen sweep on activation */
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 238, 196, 0.32) 50%, transparent 66%);
  transform: translateX(-130%);
  pointer-events: none;
}
.build-pane.is-in::after {
  transform: translateX(130%);
  transition: transform 1.25s var(--ease-silk) 0.25s;
}

/* ==========================================================================
   03 · INDUSTRIES
   ========================================================================== */
.industries {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(5rem, 10vh, 8rem);
  overflow: clip;
}
#thread-industries { z-index: 2; }

.ind-bgs { position: absolute; inset: 0; z-index: 0; }
.ind-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s var(--ease-lux), transform 6s var(--ease-drift);
  will-change: transform, opacity;
  background: linear-gradient(150deg, #151007 0%, #261c0d 100%);
  filter: saturate(1.05) contrast(1.04);
}
.ind-bg.is-active { opacity: 1; transform: scale(1.08); }
.ind-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.42) 40%, rgba(10,10,10,0.68) 100%);
}

.ind-inner { position: relative; z-index: 3; padding: 0 var(--pad); }
.ind-label { margin-bottom: clamp(2.5rem, 6vh, 4rem); }

.ind-row { border-top: 1px solid var(--hairline); }
.ind-row:last-child { border-bottom: 1px solid var(--hairline); }

.ind-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  padding: clamp(1.4rem, 3vh, 2.2rem) 0;
  text-align: left;
}
.ind-idx {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 2.2rem);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.35);
  flex: none;
}
.ind-title {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(1.6rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 0.7s var(--ease-lux);
}
.ind-row:hover .ind-title,
.ind-row.is-open .ind-title { transform: translateX(1vw); }
.ind-key { transition: color 0.4s var(--ease-lux); }
.ind-row:hover .ind-key,
.ind-row.is-open .ind-key {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 420;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}
.flag-tag {
  flex: none;
  align-self: center;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--grad);
  padding: 0.5em 1.1em;
  border-radius: 99px;
  box-shadow: 0 0 22px rgba(245, 166, 35, 0.35);
}
.ind-plus {
  margin-left: auto;
  flex: none;
  position: relative;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-lux), border-color 0.4s var(--ease-lux);
}
.ind-plus::before, .ind-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.ind-plus::before { width: 0.9rem; height: 1.5px; }
.ind-plus::after { width: 1.5px; height: 0.9rem; }
.ind-row:hover .ind-plus { border-color: var(--gold); }
.ind-row.is-open .ind-plus { transform: rotate(45deg); border-color: var(--gold); }

.ind-panel { height: 0; overflow: clip; }
.ind-stack {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding: 0.4rem 0 2rem calc(clamp(1.1rem, 2.2vw, 2.2rem) + clamp(1.2rem, 2.5vw, 2.5rem));
}
.ind-stack li {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.ind-stack li::before { content: "— "; color: var(--gold); }
.ind-cta {
  display: inline-block;
  margin: 0 0 2.2rem calc(clamp(1.1rem, 2.2vw, 2.2rem) + clamp(1.2rem, 2.5vw, 2.5rem));
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux);
}
.ind-cta:hover { background-size: 100% 7px; color: var(--gold-light); }

/* ==========================================================================
   04 · FLAGSHIP CASE STUDY — "The AI Receptionist"
   ========================================================================== */
.case {
  position: relative;
  background: linear-gradient(180deg, #0B0A07 0%, #0A0A0A 100%);
  overflow: clip;
}
#thread-case { z-index: 1; }

.case-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 44% 56%;
}

.case-left {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
/* grid items must be allowed to shrink below their content's min size,
   or the ticker/phone force the column wider than the viewport */
.case-right { min-width: 0; }

/* ---------- phone mockup ---------- */
.phone {
  position: relative;
  height: min(80vh, 720px);
  aspect-ratio: 9 / 19;
  background: #050505;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 44px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(245, 166, 35, 0.08),
    inset 0 0 0 2px #000;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 20px;
  background: #000;
  border: 1px solid #181818;
  border-radius: 99px;
  z-index: 6;
}
.phone-status {
  flex: none;
  display: flex;
  justify-content: space-between;
  padding: 12px 24px 4px;
  font-size: 0.64rem;
  font-weight: 550;
  color: rgba(245, 240, 232, 0.85);
  font-variant-numeric: tabular-nums;
}
.ps-icons { letter-spacing: 0.2em; font-size: 0.56rem; }

.wa-header {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.9rem;
  background: #10140F;
  border-bottom: 1px solid rgba(245, 166, 35, 0.14);
  border-radius: 18px 18px 0 0;
}
.wa-avatar {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #0A0A0A;
  font-size: 0.72rem;
  font-weight: 600;
}
.wa-id strong { display: block; font-size: 0.8rem; letter-spacing: 0.01em; }
.wa-id em { font-style: normal; font-size: 0.6rem; color: var(--gold); }
.wa-icons { margin-left: auto; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.5em; }

.chat-screen {
  flex: 1;
  /* CRITICAL: without min-height:0 the flex item refuses to shrink below
     its content — the chat list stretches the whole phone open */
  min-height: 0;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 166, 35, 0.04) 0%, transparent 40%),
    #0B0E0C;
}
.chat-thread { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.chat-thread path { fill: none; stroke: var(--gold); stroke-width: 1.3px; opacity: 0.4; stroke-linecap: round; }

.chat-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  will-change: transform;
}
.chat-day {
  align-self: center;
  font-size: 0.54rem;
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4em 1em;
  border-radius: 99px;
  margin: 6px 0 2px;
}
.msg {
  position: relative;
  max-width: 84%;
  padding: 0.5rem 0.65rem 0.35rem;
  border-radius: 11px;
  font-size: 0.76rem;
  line-height: 1.45;
}
.msg.in {
  align-self: flex-start;
  background: #1B211D;
  border-top-left-radius: 3px;
}
.msg.out {
  align-self: flex-end;
  background: #2A2210;
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-top-right-radius: 3px;
  min-height: 2em;
  min-width: 3.4em;
}
.msg-text { display: inline; white-space: pre-wrap; }
.msg-meta {
  display: block;
  text-align: right;
  font-size: 0.54rem;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.ticks { font-style: normal; letter-spacing: -0.14em; color: rgba(245, 240, 232, 0.4); }

.msg-dots {
  position: absolute;
  top: 0.62rem; left: 0.65rem;
  display: flex;
  gap: 3px;
  opacity: 0;
}
.msg-dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.55);
  animation: dotBounce 0.9s var(--ease-drift) infinite alternate;
}
.msg-dots i:nth-child(2) { animation-delay: 0.15s; }
.msg-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotBounce { from { transform: translateY(0); } to { transform: translateY(-3px); } }

.stars { display: flex; gap: 0.3rem; margin: 0.4rem 0 0.1rem; }
.stars i {
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.5));
}

.wa-input {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 6px 6px;
  padding: 0.55rem 1rem;
  background: #14181B;
  border-radius: 99px;
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ---------- right column ---------- */
.case-right { padding: 4vh var(--pad) 10vh clamp(1.5rem, 4vw, 4rem); }
.case-block {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.case-block .micro-label { margin-bottom: 1.6rem; }
.case-head {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.case-head .f-it {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}
.case-copy {
  max-width: 46ch;
  font-size: 0.95rem;
  font-weight: 350;
  color: var(--muted);
}
.case-shot {
  position: relative;
  margin-top: 2.4rem;
  aspect-ratio: 16 / 10;
  max-width: 520px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: clip;
}
/* dashboard placeholders use the .ph-luxe component (end of file) */
.case-shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.7s var(--ease-lux);
}
.case-shot:hover::after { opacity: 1; }
.case-shot figcaption {
  position: absolute;
  left: 1rem; bottom: 0.8rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.case-ticker {
  margin-top: 2.6rem;
  max-width: min(520px, 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 0.9rem 0;
  overflow: clip;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: tickerMove 18s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--grotesk);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.ticker-track i { font-style: normal; color: var(--gold); }
@keyframes tickerMove {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.case-cta { margin: 2.6rem 0 0 0; }

/* ==========================================================================
   06 · THE ARCHITECT
   ========================================================================== */
.arch {
  position: relative;
  min-height: 115vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(5rem, 12vh, 9rem);
  overflow: clip;
}
#thread-arch { z-index: 2; }

.arch-clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: clip-path;
}
.arch-media { position: absolute; inset: 0; overflow: clip; }
.arch-fallback {
  /* founder poster paints instantly under the video — no black flash */
  position: absolute; inset: 0;
  background-image:
    url("videos/founder-poster.jpg"),
    linear-gradient(165deg, #12100b 0%, #0A0A0A 60%, #0e0b06 100%);
  background-size: cover, auto;
  background-position: 50% 32%, center;
  will-change: transform;
}
.arch-video, .arch-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: contrast(1.05) saturate(0.96);
  will-change: transform;
}
.arch-duotone {
  /* golden duotone wash ~12% */
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(140deg, #F5A623 0%, #8a5d10 100%);
  mix-blend-mode: color;
  opacity: 0.12;
}
.arch-shade {
  position: absolute; inset: 0;
  z-index: 3;
  background: linear-gradient(200deg,
    rgba(10, 10, 10, 0.42) 0%,
    rgba(10, 10, 10, 0.12) 45%,
    rgba(10, 10, 10, 0.9) 96%);
}

.arch-content { position: relative; z-index: 3; padding: 0 var(--pad); }
.arch-label { margin-bottom: 1.8rem; }
.arch-name {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(3.2rem, 12vw, 14.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.arch-name .hl-mask:nth-child(2) {
  font-size: 0.4em;
  margin: 0.15em 0 0 0.4em;
}
/* brand mark stands in for the personal name — logo monogram + wordmark */
.arch-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-family: var(--grotesk);
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.arch-brand-mark {
  width: auto; height: 1.7em;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55));
}
.arch-link {
  display: inline-block;
  margin-top: clamp(1.8rem, 4vh, 3rem);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux);
}
.arch-link:hover { background-size: 100% 7px; color: var(--gold-light); }

/* ==========================================================================
   NEW SECTIONS — RESPONSIVE
   ========================================================================== */
@media (max-width: 899px) {
  .build { min-height: 0; }
  .build-lines, .build-label { margin-left: 2%; }
  .build-line { font-size: 12.5vw; }
  .build-line:nth-child(2) { margin-left: 0.3em; }
  .build-line:nth-child(3) { margin-left: 0.6em; }
  .build-media {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    margin-top: 3rem;
    pointer-events: auto;
  }
  .build-pane { position: absolute; border-radius: 4px; }
  .build-pane.bp-1 { transform: none; position: relative; }  /* show first pane statically */

  .ind-head { gap: 1rem; flex-wrap: wrap; }
  .ind-title { font-size: clamp(1.5rem, 7.5vw, 2.6rem); }
  .flag-tag { order: 5; margin-left: calc(1rem + 1.5em); }
  .ind-plus { width: 2.1rem; height: 2.1rem; }
  .ind-stack, .ind-cta { padding-left: 0; margin-left: 0; }

  .case-grid { grid-template-columns: 1fr; }
  .case-left { position: relative; height: auto; padding: 4rem 0 2rem; }
  .phone { height: min(72vh, 640px); }
  .case-right { padding: 2rem var(--pad) 4rem; }
  .case-block { min-height: 0; padding: 3.5rem 0; }

  /* architect: near-fullwidth rounded video window, name stacks below */
  .arch {
    min-height: 0;
    display: block;
    padding: clamp(4rem, 10vh, 6rem) 0 clamp(3.5rem, 8vh, 5rem);
  }
  .arch-clip {
    position: relative;
    inset: auto;
    width: calc(100% - 2 * var(--pad));
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }
  /* radius lives on the media layer — the animated clip-path on
     .arch-clip would override corner rounding */
  .arch-media { border-radius: 18px; overflow: clip; }
  .arch-video, .arch-img, .arch-fallback { object-position: 50% 34%; background-position: 50% 34%, center; }
  .arch-shade { background: linear-gradient(200deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.05) 50%, rgba(10,10,10,0.55) 100%); }
  .arch-content { padding: 2.4rem var(--pad) 0; }
  .arch-name { font-size: 12.5vw; }
}

/* reduced motion — new sections settle into their final states */
html.reduced-motion .build-pane.bp-1 { transform: translateX(0); }
html.reduced-motion .arch-clip { clip-path: none !important; }
html.reduced-motion .msg-dots { display: none; }
html.reduced-motion .ticks { color: var(--gold); }
html.reduced-motion .stars i { transform: none !important; }

/* ==========================================================================
   PLACEHOLDER-LUXE — premium stand-in for media that doesn't exist yet.
   Matte-black panel · 1px golden border · diagonal shimmer sweep (4s) ·
   faint thread motif in the corner · grain · gold micro-label.
   Frames are aspect-locked by their parents (.svc-media 4/3, .case-shot
   16/10), so swapping in the real <video>/<img> causes zero layout shift
   and inherits the exact same reveal animations.
   ========================================================================== */
.ph-luxe {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(150deg, #0E0D0A 0%, #0B0A08 55%, #131009 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  overflow: clip;
}
.ph-luxe::before {
  /* fine grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
}
.ph-shimmer {
  position: absolute;
  top: -25%; bottom: -25%;
  left: 0;
  width: 46%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(245, 166, 35, 0.06) 35%,
    rgba(255, 217, 138, 0.16) 50%,
    rgba(245, 166, 35, 0.06) 65%,
    transparent 100%);
  transform: translateX(-130%) skewX(-14deg);
  animation: phSweep 4s var(--ease-drift) infinite;
  will-change: transform;
}
@keyframes phSweep {
  0%        { transform: translateX(-130%) skewX(-14deg); }
  55%, 100% { transform: translateX(390%) skewX(-14deg); }
}
.ph-thread {
  position: absolute;
  right: 0; bottom: 6%;
  width: 64%; height: 34%;
  opacity: 0.4;
  overflow: visible;
}
.ph-thread path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5px;
  stroke-linecap: round;
}
.ph-label {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  padding: 0 1rem;
  font-family: var(--grotesk);
  font-style: normal;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* circular variant (testimonials / avatars): golden ring + breathing glow
   instead of the shimmer. Use inside any square parent:
   <span class="ph-luxe ph-luxe--round"><b class="ph-label">Client — 01</b></span> */
.ph-luxe--round {
  border-radius: 50%;
  border-color: rgba(245, 166, 35, 0.5);
}
.ph-luxe--round .ph-shimmer,
.ph-luxe--round .ph-thread { display: none; }
.ph-luxe--round::after {
  content: "";
  position: absolute; inset: -2%;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(245, 166, 35, 0.35), inset 0 0 18px rgba(245, 166, 35, 0.18);
  animation: phBreath 3.4s var(--ease-drift) infinite alternate;
}
@keyframes phBreath { from { opacity: 0.3; } to { opacity: 1; } }

/* placement hooks — hover behavior matches what the final media will do */
.case-shot .ph-luxe { transition: transform 1.2s var(--ease-drift); }
.case-shot:hover .ph-luxe { transform: scale(1.05); }

/* real dashboard imagery — fills the 16/10 frame, cinematic clip-wipe on reveal */
.case-shot-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-drift);
}
.case-shot:hover .case-shot-img { transform: scale(1.05); }

/* ==========================================================================
   MOBILE REPAIR PASS — final overrides (must stay last in the cascade)
   ========================================================================== */

/* compact nav CTA — hidden on desktop, replaces the orbit badge on mobile */
.nav-pill { display: none; }

/* pointer chrome can never exist on touch, regardless of JS timing */
@media (hover: none), (pointer: coarse) {
  #cursorCanvas, .cursor-blob { display: none !important; }
}

@media (max-width: 899px) {
  /* 8 · one consistent 24px gutter everywhere */
  :root { --pad: 24px; }

  /* 4 · nav: solid gold pill, 44px touch target; orbit is desktop-only */
  .orbit-cta { display: none; }
  .nav-pill {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--grad);
    color: #0A0A0A;
    font-family: var(--grotesk);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 24px rgba(245, 166, 35, 0.25);
  }
  .nav { padding-top: 0.7rem; padding-bottom: 0.7rem; }

  /* 1 · no desktop-scale voids: clamp section rhythm to 96–128px,
         no non-hero section may demand a full viewport */
  .manifesto { min-height: 0; padding: 7rem var(--pad) 6rem; }
  .manifesto-label, .manifesto-text { margin-left: 0; }
  .manifesto-aside { margin-top: 3.5rem; margin-right: 0; }
  .build { min-height: 0; padding: 6.5rem var(--pad) 7rem; }
  .build-label, .build-lines { margin-left: 0; }
  .build-caption { margin-top: 2.5rem; margin-right: 0; }
  .industries { min-height: 0; padding: 6.5rem 0 6rem; }
  .ind-label { margin-bottom: 2rem; }
  .svc-deck { padding: 4rem var(--pad); }
  .svc-slide { height: 68svh; }
  .process-head { padding: 6rem var(--pad) 2.5rem; }
  .process-track { padding-bottom: 5rem; }
  .results { min-height: 0; padding: 6.5rem var(--pad) 7rem; }
  .results-label { margin-bottom: 2rem; }
  .stat-side { margin-top: 2.5rem; gap: 2.25rem; }
  .cta { min-height: 0; padding: 7rem var(--pad) 5rem; }
  .cta-contacts { margin-top: 2.5rem; }
  .arch { padding-top: 6rem; padding-bottom: 3.5rem; }
  .case-left { padding: 3rem 0 1rem; }
  .case-right { padding-top: 1rem; }
  .case-block { padding: 3rem 0; }

  /* 5 · phone frame: aspect-locked, nothing escapes it */
  .phone {
    width: min(78vw, 320px);
    height: auto;
    aspect-ratio: 9 / 19;
    overflow: clip;
  }
  .chat-thread { display: none; }   /* no squiggle behind bubbles */

  /* 8 · titles must never clip */
  .ind-title { font-size: clamp(1.3rem, 6vw, 2.4rem); line-height: 1.15; flex: 1 1 auto; min-width: 0; }
  .ind-head { align-items: center; }
  .cta-title { font-size: 10.5vw; }
  .cta-title .hl-mask:nth-child(2) { margin-left: 0.4em; }

  /* 8 · footer marquee clear of the link columns */
  .footer-marquee { margin-top: 2.5rem; padding-top: 0; }
  .fm-word { line-height: 1.08; }

  /* 8 · the one continuous mobile thread hugs the left gutter */
  .thread-mobile { left: 11px; }

  /* 7 · count-up slots are plain text — gradient applies directly
         (safe here: no transformed children on mobile) */
  .stat-hero-num .slot {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* 8 · no horizontal scroll, ever */
  .build-media, .svc-card, .case-grid { max-width: 100%; }
}

/* ==========================================================================
   WORLD-CLASS PASS — cinematic industries, founder moment, living labels,
   dataviz results, contact tiles, footer crest. Mobile-first.
   ========================================================================== */

/* ---------- MICRO-LABELS come alive: number pops, text wipes, dash draws.
     States exist only once JS arms them (html.ml-anim), so no-JS/reduced
     users always see the final state. ---------- */
html.ml-anim .micro-label .label-num {
  display: inline-block;
  transition: transform 0.9s var(--ease-lux), opacity 0.5s var(--ease-lux);
}
html.ml-anim .micro-label .ml-text {
  display: inline-block;
  clip-path: inset(-20% -5% -20% 0);
  transition: clip-path 1s var(--ease-silk) 0.15s, transform 1s var(--ease-lux) 0.15s;
}
html.ml-anim .micro-label::after {
  transform-origin: left center;
  transition: transform 1.1s var(--ease-silk) 0.25s;
}
html.ml-anim .micro-label:not(.ml-on) .label-num { opacity: 0; transform: translateY(0.7em) rotate(8deg); }
html.ml-anim .micro-label:not(.ml-on) .ml-text { clip-path: inset(-20% 100% -20% 0); transform: translateX(-0.4em); }
html.ml-anim .micro-label:not(.ml-on)::after { transform: scaleX(0); }

/* ==========================================================================
   INDUSTRIES — six cinematic takeover scenes
   ========================================================================== */
.industries { min-height: 0 !important; padding: 0 !important; }
#thread-industries { z-index: 30; }

.ind-head-strip {
  padding: clamp(6rem, 12vh, 9rem) var(--pad) clamp(2.5rem, 6vh, 4rem);
}
.ind-intro {
  margin-top: 1.6rem;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.ind-intro .gold-text { padding-right: 0.07em; }

.ind-deck { position: relative; }

.ind-scene {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
}
.ind-media { position: absolute; inset: 0; }
.ind-film {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(0.98);
  will-change: transform;
}
.ind-grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 25%, rgba(245, 166, 35, 0.18) 0%, transparent 60%),
    linear-gradient(155deg, rgba(138, 93, 16, 0.12) 0%, transparent 45%, rgba(245, 166, 35, 0.08) 100%);
  mix-blend-mode: overlay;
}
.ind-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.05) 34%,
    rgba(10, 10, 10, 0.16) 55%,
    rgba(10, 10, 10, 0.9) 100%);
}
.ind-scene-veil {
  position: absolute; inset: 0;
  z-index: 6;
  background: #050505;
  opacity: 0;
  pointer-events: none;
}

.ind-ghost {
  position: absolute;
  z-index: 2;
  top: clamp(0.5rem, 4vh, 3rem);
  right: -0.04em;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(9rem, 26vw, 24rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.35);
  pointer-events: none;
}

.ind-content {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(2.5rem, 9vh, 6rem);
  max-width: 760px;
}
.ind-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.66rem;
  font-weight: 550;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 1.2rem;
}
.ind-kicker i {
  font-style: normal;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.ind-kicker .flag-tag { margin-left: 0.2rem; }

.ind-hook {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.4rem, 10.5vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}
.ind-hook .gold-text { text-shadow: none; filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.5)); }

.ind-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
}
.ind-chips li {
  font-size: 0.6rem;
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(10, 10, 10, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.55em 1em;
  border-radius: 99px;
  white-space: nowrap;
}
.ind-more {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 0.74rem;
  font-weight: 550;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux);
}
.ind-more:hover { background-size: 100% 7px; color: var(--gold-light); }

/* ==========================================================================
   BUILD — mobile scroll-activation (word lights up, film answers)
   ========================================================================== */
@media (max-width: 899px) {
  /* stack the section and pull the film window right under the words, so each
     word's picture is visible as it lights up — not buried at the section end */
  .build { display: flex; flex-direction: column; }
  .build-label   { order: 1; }
  .build-lines   { order: 2; }
  .build-media   { order: 3; }
  .build-caption { order: 4; }

  .build-line { transition: color 0.6s var(--ease-lux), transform 0.8s var(--ease-lux); }
  .build-line.is-live { color: var(--text); transform: translateX(10px); }

  .build-media {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    aspect-ratio: 5 / 4;          /* a touch shorter so words + film share the frame */
    margin-top: 2rem;
    border-radius: 8px;
    overflow: clip;
    border: 1px solid var(--hairline);
    pointer-events: none;
  }
  .build-pane {
    position: absolute !important;
    inset: 0;
    border-radius: 0;
    transform: scale(1.06);
    opacity: 0;
    transition: opacity 0.7s var(--ease-lux), transform 1.6s var(--ease-drift);
    box-shadow: none;
  }
  .build-pane.is-in { opacity: 1; transform: scale(1); }
  /* the caption label under the film */
  .build-pane-cap { font-size: 0.62rem; left: 0.9rem; bottom: 0.8rem; }
}

/* ==========================================================================
   ARCHITECT — the founder moment
   ========================================================================== */
.arch-sign {
  display: block;
  width: clamp(180px, 24vw, 320px);
  height: auto;
  margin: 0.6rem 0 1.4rem 0.3em;
  overflow: visible;
}
.arch-sign path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2px;
  stroke-linecap: round;
  opacity: 0.9;
}
.arch-quote {
  max-width: 30ch;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.arch-roles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  padding: 0;
  margin-bottom: 1.8rem;
}
.arch-roles li {
  font-size: 0.62rem;
  font-weight: 550;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.arch-roles li::before { content: "— "; color: var(--gold); }

/* ==========================================================================
   PROCESS — mobile: knots tied onto the left-gutter thread
   ========================================================================== */
@media (max-width: 899px) {
  /* knots on the left thread: relative (so ::before dot anchors) but with the
     desktop horizontal offset reset — this kills the staircase overflow */
  .process-card {
    position: relative;
    left: 0; top: 0;
    width: auto;
    transition: border-color 0.6s var(--ease-lux);
  }
  .process-card::before {
    content: "";
    position: absolute;
    left: -17.5px;
    top: 2.2rem;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.8);
    transform: scale(0);
    transition: transform 0.7s var(--ease-lux) 0.2s;
  }
  .process-card.is-on { border-color: rgba(245, 166, 35, 0.4); }
  .process-card.is-on::before { transform: scale(1); }
}

/* ==========================================================================
   RESULTS — dataviz gold: arc ring, proof bars, ghost word
   ========================================================================== */
.results-ghost {
  position: absolute;
  z-index: 0;
  top: clamp(2rem, 8vh, 6rem);
  right: -0.06em;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(7rem, 24vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.1);
  pointer-events: none;
  user-select: none;
}
.stat-hero { position: relative; }
.stat-ring {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: clamp(-2rem, -3vw, -1rem);
  width: clamp(180px, 30vw, 420px);
  height: auto;
  transform: translateY(-62%) rotate(-90deg);
  opacity: 0.9;
  pointer-events: none;
}
.stat-ring circle { fill: none; stroke-linecap: round; }
.stat-ring-track { stroke: rgba(245, 166, 35, 0.12); stroke-width: 1; }
.stat-ring-fill {
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-dasharray: 100;
  stroke-dashoffset: 100; /* JS draws to 40 = a 60% arc */
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5));
}
html.reduced-motion .stat-ring-fill, html.no-js .stat-ring-fill { stroke-dashoffset: 40; }
.stat-hero-num, .stat-hero-cap { position: relative; z-index: 1; }

.stat-bar {
  display: block;
  width: min(300px, 82%);
  height: 2px;
  margin: 0.8rem 0 0.7rem;
  background: rgba(245, 166, 35, 0.14);
  overflow: clip;
}
.stat-bar i {
  display: block;
  width: 100%; height: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.6);
}
html.reduced-motion .stat-bar i { transform: scaleX(var(--bw, 1)); }

/* ==========================================================================
   CTA — halo, spinning ring, contact tiles
   ========================================================================== */
.cta-halo {
  position: absolute;
  z-index: 0;
  top: 42%; left: 50%;
  width: min(120vw, 900px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.13) 0%, rgba(245, 166, 35, 0.04) 38%, transparent 65%);
  pointer-events: none;
  animation: haloBreath 4.5s var(--ease-drift) infinite alternate;
}
@keyframes haloBreath { from { opacity: 0.55; } to { opacity: 1; } }

.btn-mega-ring {
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(245, 166, 35, 0.85) 84%, rgba(255, 217, 138, 0.9) 90%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ringSpin 5.5s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.cta-contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 0;
}
.contact-line {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: rgba(18, 15, 8, 0.5);
  transition: border-color 0.5s var(--ease-lux), background-color 0.5s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.contact-line:hover {
  border-color: rgba(245, 166, 35, 0.55);
  background: rgba(30, 23, 9, 0.75);
  transform: translateY(-4px);
  color: var(--text);
}
.cl-icon {
  flex: none;
  width: 2.6rem; height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.05rem;
}
.cl-body { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; font-size: clamp(0.85rem, 1.1vw, 1.05rem); overflow-wrap: anywhere; }
.cl-arrow { margin-left: auto; color: var(--gold); transition: transform 0.5s var(--ease-lux); }
.contact-line:hover .cl-arrow { transform: translateX(6px); }

/* ==========================================================================
   FOOTER — crest row
   ========================================================================== */
/* ==========================================================================
   FOOTER — the finale: interactive gold orbs + giant CTA sign-off
   ========================================================================== */
.footer { padding-top: 0; }                 /* the finale owns the top spacing */

/* physics centerpiece — full-bleed over the finale, behind the text.
   pointer-events is off by default (scroll stays safe on touch); the desktop
   JS turns it on so orbs can be grabbed. */
.footer-orbs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-finale {
  position: relative;
  z-index: 2;
  min-height: min(76svh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.6rem, 4vh, 2.8rem);
  padding: clamp(4rem, 12vh, 8rem) var(--pad) clamp(3rem, 8vh, 5rem);
  border-top: 1px solid var(--hairline);
  /* transparent to the pointer so orb drags in empty space fall through to the
     canvas beneath; only the chips + buttons below re-enable clicks */
  pointer-events: none;
}
.footer-status, .footer-actions { pointer-events: auto; width: fit-content; max-width: 100%; }

/* live status chip */
.footer-status {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--grotesk);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6BCB77;
  box-shadow: 0 0 0 0 rgba(107, 203, 119, 0.55);
  animation: statusPulse 2.6s ease-in-out infinite;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(107, 203, 119, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(107, 203, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 203, 119, 0); }
}
.status-sep { opacity: 0.4; }
.status-time { color: var(--gold-light); letter-spacing: 0.1em; }

/* giant CTA headline (masked line reveal) */
.footer-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 8.5vw, 8.5rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--text);
}
.fh-mask { display: block; overflow: hidden; padding-bottom: 0.05em; }
.fh-line { display: block; }
.footer-headline .f-it { font-style: italic; }

/* actions: magnetic book button + copy-email */
.footer-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.footer-book {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1.05em 2em;
  border-radius: 99px;
  font-family: var(--grotesk);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 600; letter-spacing: 0.03em;
  color: #0A0A0A;
  background: var(--grad);
  overflow: hidden;
  isolation: isolate;
}
.footer-book .fb-arrow { transition: transform 0.5s var(--ease-lux); }
.footer-book::before {                      /* sheen sweep on hover */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.5) 50%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-silk);
}
.footer-book:hover .fb-arrow { transform: translateX(6px); }
.footer-book:hover::before { transform: translateX(120%); }

.footer-email {
  position: relative;
  display: inline-grid;                     /* stack the two faces in one cell */
  font-family: var(--grotesk);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  letter-spacing: 0.02em;
  color: var(--muted);
  padding-bottom: 0.35em;
  cursor: pointer;
  text-align: left;
}
.fe-face { grid-area: 1 / 1; transition: opacity 0.45s var(--ease-lux), transform 0.45s var(--ease-lux); }
.fe-text {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.4px;
  transition: background-size 0.5s var(--ease-silk), color 0.35s var(--ease-lux);
}
.footer-email:hover .fe-text { background-size: 100% 1.4px; color: var(--text); }
.fe-copied { color: var(--gold-light); opacity: 0; transform: translateY(0.45em); }
.footer-email.is-copied .fe-text { opacity: 0; transform: translateY(-0.45em); }
.footer-email.is-copied .fe-copied { opacity: 1; transform: translateY(0); }

/* base row: logo · back-to-top */
.footer-base {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: clamp(2rem, 5vh, 3rem) var(--pad);
  border-top: 1px solid var(--hairline);
}
.footer-base .footer-logo { width: clamp(118px, 14vw, 168px); height: auto; margin: 0; opacity: 0.9; }
.footer-top {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 99px;
  padding: 0.8em 1.5em;
  transition: background-color 0.5s var(--ease-lux), color 0.5s var(--ease-lux);
}
.footer-top:hover { background: var(--grad); color: #0A0A0A; }

/* ---------- phone ambience: soft gold pool behind the device ---------- */
.case-left::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: min(90vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 62%);
  pointer-events: none;
}

/* ---------- responsive for the new pieces ---------- */
@media (max-width: 899px) {
  .ind-head-strip { padding: 6rem var(--pad) 2.5rem; }
  .ind-content { bottom: max(4.5rem, 9svh); }
  .ind-hook { font-size: 11vw; }
  .ind-ghost { font-size: 34vw; top: 4.5rem; will-change: auto; }
  .ind-chips li { font-size: 0.56rem; padding: 0.5em 0.85em; }

  /* ---- INDUSTRIES: strip per-frame GPU cost so scrolling stays 60fps ----
     Every one of these composited over the PLAYING video each frame; on phones
     that's what tanked the framerate after a couple of scenes. */
  .ind-chips li {                       /* glass blur → solid pill (blur over video is the worst) */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(12, 11, 9, 0.72);
  }
  .ind-film {                           /* no per-frame filter / no layer churn on full-screen video */
    filter: none;
    transform: none;
    will-change: auto;
  }
  .ind-grade { display: none; }         /* blend-mode gold wash over video — drop it (shade keeps legibility) */
  .ind-scene { will-change: auto; }
  /* the huge hook was re-rastered over the video across all 6 sticky scenes —
     a blurred text-shadow + a drop-shadow filter. Drop them; .ind-shade keeps
     legibility. (The ghost number stops its parallax on mobile via JS, so its
     gold stroke now rasters just once instead of every scroll frame.) */
  .ind-hook { text-shadow: none; }
  .ind-hook .gold-text { filter: none; }

  /* ---- SITE-WIDE mobile scroll-cost killers ------------------------------
     blur/blend over MOVING pixels (a video, or the viewport behind a fixed
     bar) is recomposited every single frame. This was the real reason the
     whole page — worst in the video-heavy industries — felt heavy. */
  .nav.is-scrolled {                    /* fixed bar re-blurred the entire viewport each frame */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(10, 10, 10, 0.92);
  }
  .hero-grade {                         /* overlay-blend sat over the PLAYING hero video */
    mix-blend-mode: normal;
    opacity: 0.4;
  }
  .arch-duotone {                       /* color-blend recomposited over the founder image on scroll */
    mix-blend-mode: normal;
    opacity: 0.15;
  }

  .stat-ring { left: -8px; width: 220px; transform: translateY(-58%) rotate(-90deg); }
  .results-ghost { font-size: 30vw; top: 1.5rem; }

  .cta-contacts { grid-template-columns: 1fr; }

  .footer-finale { min-height: min(70svh, 560px); padding-top: clamp(3.5rem, 10vh, 6rem); }
  .footer-headline { font-size: clamp(2.2rem, 9vw, 3.2rem); line-height: 1.08; }
  .footer-status { font-size: 0.62rem; letter-spacing: 0.14em; flex-wrap: wrap; }
  .footer-actions { gap: 1.4rem; }
  .footer-book { width: 100%; justify-content: center; }
  .footer-email { justify-self: start; }
  .footer-base { gap: 1.2rem; }

  .arch-quote { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-halo, .btn-mega-ring { animation: none; }
  .ind-scene-veil { opacity: 0 !important; }
}

/* ==========================================================================
   CONTENT OVERHAUL — honest proof · dental-first · local moat · pricing · studio
   New components only; built from existing tokens. No visual redesign.
   ========================================================================== */

/* ---- WhatsApp 'demo' tag in the chat header ---- */
.wa-id { flex: 1 1 auto; min-width: 0; }
.wa-demo {
  flex: none;
  font-family: var(--grotesk);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 99px;
  padding: 0.25em 0.6em;
  white-space: nowrap;
}

/* ---- DPDP privacy / trust line in the flagship case ---- */
.case-privacy {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  max-width: 48ch;
  margin: 1.4rem 0 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--hairline);
  font-family: var(--grotesk);
  font-size: 0.82rem;
  line-height: 1.65;
  font-weight: 350;
  color: var(--muted);
}
.cp-lock { flex: none; opacity: 0.85; }

/* ---- PROOF (reworked results) ---- */
.proof-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: clamp(1.5rem, 4vw, 3rem) auto 0;
}
.proof-head {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.proof-lead {
  margin: 1.6rem 0 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  font-weight: 350;
  color: var(--muted);
}
.proof-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2.2rem 0 0;
  padding: 0;
}
.proof-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--grotesk);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--hairline);
  background: rgba(245, 166, 35, 0.04);
  border-radius: 99px;
  padding: 0.7em 1.15em;
}
.pb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.6);
}
.proof-quote {
  position: relative;
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  max-width: 42rem;
  padding: clamp(1.9rem, 4vw, 2.9rem) clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(245, 166, 35, 0.05), rgba(10, 10, 10, 0));
}
.pq-mark {
  position: absolute;
  top: -0.15em; left: 0.35em;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(245, 166, 35, 0.22);
  pointer-events: none;
}
.pq-text {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 350;
  line-height: 1.5;
  color: var(--text);
}
.pq-by { display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1.4rem; }
.pq-name {
  font-family: var(--grotesk);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-light);
}
.pq-role {
  font-family: var(--grotesk);
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
}

/* ---- ALSO SERVING (dental stays flagship; these are secondary) ---- */
.also {
  position: relative;
  background: var(--bg);
  padding: clamp(4rem, 10vh, 8rem) var(--pad);
  border-top: 1px solid var(--hairline);
}
.also-inner { max-width: 1100px; margin: 0 auto; }
.also-head {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 1.3rem;
}
.also-lead {
  margin: 1.2rem 0 2.6rem;
  max-width: 54ch;
  font-size: 1rem; line-height: 1.6; font-weight: 350;
  color: var(--muted);
}
.also-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
}
.also-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: var(--bg);
  transition: background 0.5s var(--ease-lux);
}
.also-card:hover { background: #100e0a; }
.ac-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
}
.ac-name {
  font-family: var(--grotesk);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--text);
}
.ac-note {
  font-family: var(--grotesk);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--faint);
}

/* ---- LOCAL MOAT ---- */
.local {
  position: relative;
  background:
    radial-gradient(120% 80% at 82% 0%, rgba(245, 166, 35, 0.06), transparent 55%),
    var(--bg);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  border-top: 1px solid var(--hairline);
}
.local-inner { max-width: 1000px; margin: 0 auto; }
.local-head {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: 1.3rem;
}
.local-lead {
  margin: 1.6rem 0 2rem;
  max-width: 48ch;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  font-weight: 350;
  color: var(--muted);
}
.local-langs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2.4rem;
  padding: 0;
}
.local-langs li {
  font-family: var(--grotesk);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 99px;
  padding: 0.5em 1.05em;
}
.local-moat {
  max-width: 56ch;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  font-weight: 350;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: clamp(1rem, 2vw, 1.6rem);
}

/* ---- CTA affordability / pricing framing ---- */
.cta-pricing {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 1.8rem auto 2.6rem;
  text-align: center;
}
.cp-line {
  display: block;
  font-family: var(--grotesk);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.cp-sub {
  display: block;
  margin-top: 0.9rem;
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  line-height: 1.65;
  font-weight: 350;
  color: var(--muted);
}

/* ---- studio creed line ---- */
.arch-creed {
  margin: 1.1rem 0 0;
  font-family: var(--grotesk);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ---- footer 'soon' placeholders (clean, not dead links) ---- */
.f-soon { color: var(--faint); cursor: default; }
.f-soon em {
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-left: 0.4em;
}

/* ---- responsive ---- */
@media (max-width: 899px) {
  .also-grid { grid-template-columns: 1fr 1fr; }
  .proof-quote { margin-top: 2.2rem; }
  .cta-pricing { margin: 1.4rem auto 2rem; }
}
@media (max-width: 560px) {
  .also-grid { grid-template-columns: 1fr; }
  .proof-badges { gap: 0.5rem; }
}

/* ==========================================================================
   PACKAGES (index) + SOLUTIONS PAGE — dark+gold system, editable via config.js
   ========================================================================== */

/* ---------- index · compact packages section ---------- */
.packages {
  position: relative;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(245, 166, 35, 0.05), transparent 55%),
    var(--bg);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  border-top: 1px solid var(--hairline);
}
.pk-inner { max-width: 1160px; margin: 0 auto; }
.pk-head {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 1.3rem;
}
.pk-sub {
  margin: 1.4rem 0 2.8rem;
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  font-weight: 350;
  color: var(--muted);
}
.pk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
  align-items: stretch;
}
.pk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.04), rgba(10, 10, 10, 0));
  transition: border-color 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.pk-card:hover { border-color: rgba(245, 166, 35, 0.4); transform: translateY(-4px); }
.pk-card.pk-pop {
  border-color: rgba(245, 166, 35, 0.55);
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.09), rgba(10, 10, 10, 0));
  box-shadow: 0 30px 70px -40px rgba(245, 166, 35, 0.35);
}
.pk-tag {
  position: absolute;
  top: -0.85em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--grotesk);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--grad);
  border-radius: 99px;
  padding: 0.5em 1.2em;
  white-space: nowrap;
}
.pk-name {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.01em;
}
.pk-promise {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--gold-light);
}
.pk-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--grotesk);
}
.pk-price b { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; color: var(--text); }
.pk-price span { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--faint); text-transform: uppercase; }
.pk-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.pk-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 350;
  color: var(--muted);
}
.pk-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.pk-cta {
  margin-top: 0.4rem;
  display: inline-block;
  text-align: center;
  font-family: var(--grotesk);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.95em 1.4em;
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--gold);
  transition: background 0.4s var(--ease-lux), color 0.4s var(--ease-lux);
}
.pk-cta:hover { background: rgba(245, 166, 35, 0.1); color: var(--gold-light); }
.pk-pop .pk-cta { background: var(--grad); color: #0A0A0A; border-color: transparent; }
.pk-pop .pk-cta:hover { filter: brightness(1.08); }
.pk-notes {
  margin: 2.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--faint);
  max-width: 72ch;
}
.pk-notes b { color: var(--muted); font-weight: 500; }
.pk-more {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--grotesk);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='7' viewBox='0 0 26 7'%3E%3Cpath d='M0 3.5 Q 6.5 0.5 13 3.5 T 26 3.5' fill='none' stroke='%23F5A623' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 0 7px;
  transition: background-size 0.7s var(--ease-silk), color 0.4s var(--ease-lux);
}
.pk-more:hover { background-size: 100% 7px; color: var(--gold-light); }

/* ==========================================================================
   SOLUTIONS PAGE — cinematic dark+gold experience (matches the main site:
   masked reveals, golden spine, ghost numerals, film panels, halo CTA)
   ========================================================================== */
.sol-body { background: var(--bg); }

.sol-nav-back {
  font-family: var(--grotesk);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease-lux);
}
.sol-nav-back:hover { color: var(--gold-light); }
.sol-body .nav-pill { display: inline-flex; }

/* ---- shared section shell: ghost numeral + gold atmosphere ---- */
.sol-sec, .sol-hero, .sol-final {
  position: relative;
  overflow: clip;
}
.sol-ghost {
  position: absolute;
  z-index: 0;
  top: clamp(0.5rem, 4vh, 3rem);
  right: -0.04em;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.18);
  pointer-events: none;
  user-select: none;
}

/* ---- premium gold CTAs (sheen sweep like the footer pill) ---- */
.sol-cta-gold, .sol-cta-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--grotesk);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 1.1em 2em;
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), background 0.4s var(--ease-lux), color 0.4s var(--ease-lux);
}
.sol-cta-gold {
  background: var(--grad);
  color: #0A0A0A;
  box-shadow: 0 18px 44px -18px rgba(245, 166, 35, 0.55);
}
.sol-cta-gold::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease-silk);
}
.sol-cta-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(245, 166, 35, 0.7); }
.sol-cta-gold:hover::before { transform: translateX(130%); }
.sol-cta-ghost { border: 1px solid rgba(245, 166, 35, 0.45); color: var(--gold); }
.sol-cta-ghost:hover { background: rgba(245, 166, 35, 0.1); color: var(--gold-light); transform: translateY(-3px); }
.sol-cta-big { font-size: 0.95rem; padding: 1.35em 2.8em; }

/* ---- HERO ---- */
.sol-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 16vh, 11rem) var(--pad) clamp(5rem, 10vh, 7rem);
}
.sol-hero-glow {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(95% 70% at 80% 6%, rgba(245, 166, 35, 0.12), transparent 55%),
    radial-gradient(70% 55% at 8% 92%, rgba(245, 166, 35, 0.07), transparent 60%);
  pointer-events: none;
}
.sol-hero > * { position: relative; z-index: 2; }
.sol-hero .sol-ghost { z-index: 1; top: 8vh; }
.sol-h1 {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.35rem, 6.6vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-top: 1.6rem;
  max-width: 21ch;
}
.sol-h1 .hl-mask { display: block; overflow: hidden; }
.sol-sub {
  margin: 1.8rem 0 0;
  max-width: 56ch;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  font-weight: 350;
  color: var(--muted);
}
.sol-sub strong { color: var(--gold-light); font-weight: 550; }
.sol-frame {
  margin: 1.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  color: var(--text);
}
.sol-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.sol-hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.6rem 0 0;
  padding: 0;
}
.sol-hero-tags li {
  font-family: var(--grotesk);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: rgba(12, 11, 9, 0.6);
  border-radius: 99px;
  padding: 0.6em 1.05em;
}

/* ---- section scaffolding ---- */
.sol-sec {
  padding: clamp(5.5rem, 13vh, 10rem) var(--pad);
  border-top: 1px solid var(--hairline);
}
.sol-sec-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; }
.sol-h2 {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 1.3rem;
  max-width: 20ch;
}
.sol-h2 .hl-mask { display: block; overflow: hidden; }
.sol-h3 {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  margin: 3.2rem 0 1.2rem;
}
.sol-lead {
  margin: 1.4rem 0 0;
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  font-weight: 350;
  color: var(--muted);
}
.sol-note { margin: 1.6rem 0 0; font-size: 0.82rem; color: var(--faint); max-width: 64ch; }

/* ---- 02 · THE NERVOUS SYSTEM (golden spine + blooming nodes) ---- */
.sol-os-wrap { position: relative; margin-top: clamp(3rem, 7vh, 5rem); }
.sol-spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 0;
  overflow: visible;
}
.sol-spine path { stroke: url(#spineGrad); stroke-width: 2; fill: none; }
.sol-os-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vh, 3.6rem) clamp(3rem, 8vw, 7rem);
  margin: 0; padding: 0;
}
.sol-os-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.05), rgba(10, 10, 10, 0.35));
  transition: border-color 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.sol-os-node:hover {
  border-color: rgba(245, 166, 35, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(245, 166, 35, 0.4);
}
.sol-os-node:nth-child(odd) { justify-self: end; text-align: right; align-items: flex-end; width: 100%; }
.sol-os-node:nth-child(even) { justify-self: start; text-align: left; width: 100%; }
/* node stitch: dot reaching toward the spine */
.sol-os-node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.7);
  transform: translateY(-50%) scale(0);
}
.sol-os-node.is-on::after { animation: nodeBloom 0.7s var(--ease-silk) forwards; }
.sol-os-node:nth-child(odd)::after { right: calc(clamp(1.5rem, 4vw, 3.5rem) * -1); }
.sol-os-node:nth-child(even)::after { left: calc(clamp(1.5rem, 4vw, 3.5rem) * -1); }
@keyframes nodeBloom { to { transform: translateY(-50%) scale(1); } }
.on-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.55);
  animation: statusPulse 2.6s ease-in-out infinite;
}
.sol-os-node b { font-family: var(--grotesk); font-weight: 550; font-size: clamp(0.98rem, 1.5vw, 1.15rem); color: var(--text); }
.sol-os-node span { font-size: 0.85rem; line-height: 1.6; font-weight: 350; color: var(--muted); max-width: 34ch; }

/* ---- 03 · INDUSTRY FILM PANELS ---- */
.sol-tabs { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 2.6rem 0 0; position: relative; z-index: 2; }
.sol-tab {
  font-family: var(--grotesk);
  font-size: 0.76rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(12, 11, 9, 0.6);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  padding: 0.8em 1.35em;
  cursor: pointer;
  transition: color 0.35s var(--ease-lux), border-color 0.35s var(--ease-lux), background 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}
.sol-tab:hover { color: var(--gold-light); border-color: rgba(245, 166, 35, 0.45); transform: translateY(-2px); }
.sol-tab.is-on { color: #0A0A0A; background: var(--grad); border-color: transparent; font-weight: 650; box-shadow: 0 12px 30px -12px rgba(245, 166, 35, 0.6); }

.sol-panel {
  position: relative;
  z-index: 1;
  margin-top: 2.2rem;
  padding: clamp(2rem, 5vw, 3.6rem);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: #0d0b08;
}
.sp-bg {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.5;
}
.sp-shade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10, 10, 10, 0.96) 38%, rgba(10, 10, 10, 0.72) 62%, rgba(10, 10, 10, 0.45) 100%),
    linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent 45%);
}
.sp-sheen {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 40%, rgba(245, 205, 130, 0.12) 50%, transparent 60%);
  transform: translateX(-130%);
  pointer-events: none;
}
.sol-panel > .sp-ghost {
  position: absolute;
  z-index: 2;
  top: -0.08em; right: 0.02em;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 166, 35, 0.3);
  pointer-events: none;
}
.sp-in { position: relative; z-index: 3; }
.sp-kicker {
  font-family: var(--grotesk);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sp-title {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.sp-pain { margin: 1.2rem 0 0; font-size: 0.95rem; line-height: 1.6; color: rgba(245, 240, 232, 0.75); max-width: 58ch; }
.sp-pain b, .sp-optional b { color: var(--gold-light); font-weight: 550; }
.sp-modules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.8rem;
  margin: 2rem 0 0;
  padding: 0;
}
.sp-modules li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 0 0.9rem 1.15rem;
  border-left: 2px solid rgba(245, 166, 35, 0.5);
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.5), transparent 80%);
  border-radius: 0 8px 8px 0;
}
.sp-modules b { font-family: var(--grotesk); font-weight: 550; font-size: 0.92rem; color: var(--text); }
.sp-modules span { font-size: 0.82rem; line-height: 1.5; font-weight: 350; color: rgba(245, 240, 232, 0.62); }
.sp-optional { margin: 1.6rem 0 0; font-size: 0.8rem; color: rgba(245, 240, 232, 0.5); }
.sp-outcome {
  margin: 1.8rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 166, 35, 0.25);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  color: var(--text);
  max-width: 30ch;
}
.sol-ind-cta { margin-top: 2.4rem; }

/* ---- 04 · PRICING (cinema cards) ---- */
.sol-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.7rem);
  margin: 3rem 0 0;
  align-items: stretch;
}
.sol-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.8rem, 3.2vw, 2.7rem);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: linear-gradient(168deg, rgba(245, 166, 35, 0.05), rgba(10, 10, 10, 0.2));
  overflow: hidden;
  transition: border-color 0.5s var(--ease-lux), transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.sol-tier:hover { border-color: rgba(245, 166, 35, 0.45); transform: translateY(-6px); }
.sol-tier::before {
  /* gold sheen that sweeps once on reveal + on hover */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(245, 205, 130, 0.1) 50%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 1.1s var(--ease-silk);
  pointer-events: none;
}
.sol-tier:hover::before { transform: translateX(130%); }
.sol-tier.st-pop {
  border-color: rgba(245, 166, 35, 0.6);
  background: linear-gradient(168deg, rgba(245, 166, 35, 0.11), rgba(10, 10, 10, 0.1));
  box-shadow: 0 40px 90px -50px rgba(245, 166, 35, 0.5);
}
.st-tag {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-family: var(--grotesk);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--grad);
  border-radius: 99px;
  padding: 0.55em 1.1em;
  box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.7);
}
.st-name { font-family: var(--grotesk); font-weight: 550; font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.01em; }
.st-promise { font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--gold-light); }
.st-price {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--grotesk);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--faint);
  text-transform: uppercase;
}
.st-price b {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-right: 0.35em;
}
.st-pop .st-price b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.st-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.st-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 350;
  color: var(--muted);
}
.st-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.sol-tier .sol-cta-gold, .sol-tier .sol-cta-ghost { justify-content: center; margin-top: 0.5rem; }
.sol-price-notes { margin: 2.6rem 0 0; display: flex; flex-direction: column; gap: 0.5rem; }
.sol-price-notes p { font-size: 0.82rem; line-height: 1.65; color: var(--faint); max-width: 78ch; }
.sol-price-notes b { color: var(--muted); font-weight: 550; }

/* ---- 05 · COMPARISON ---- */
.sol-swipe {
  display: none;
  margin: 2.2rem 0 -1.6rem;
  font-family: var(--grotesk);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.sol-tablewrap {
  margin: 2.6rem 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.03), rgba(10, 10, 10, 0));
}
.sol-table { width: 100%; min-width: 660px; border-collapse: collapse; font-family: var(--grotesk); }
.sol-table th, .sol-table td {
  padding: 1.05rem 1.3rem;
  text-align: center;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--hairline);
}
.sol-table tbody tr { transition: background 0.35s var(--ease-lux); }
.sol-table tbody tr:hover { background: rgba(245, 166, 35, 0.03); }
.sol-table tbody tr:last-child th, .sol-table tbody tr:last-child td { border-bottom: none; }
.sol-table thead th {
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: #0e0c09;
}
.sol-table thead th.stw-us { color: #0A0A0A; background: var(--grad); font-size: 0.7rem; }
.sol-table tbody th { text-align: left; font-weight: 450; color: var(--text); white-space: nowrap; }
.sol-table td { color: var(--faint); }
.sol-table td.yes { color: var(--gold); font-weight: 700; font-size: 1.1rem; text-shadow: 0 0 14px rgba(245, 166, 35, 0.5); }
.sol-table td.no { color: rgba(245, 240, 232, 0.2); }
.sol-table td:last-child { background: rgba(245, 166, 35, 0.06); border-left: 1px solid rgba(245, 166, 35, 0.25); }

/* ---- 06 · ROI ---- */
.sol-roi {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: 3rem 0 0;
  padding: clamp(2rem, 4.5vw, 3.4rem);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(90% 90% at 85% 20%, rgba(245, 166, 35, 0.08), transparent 55%),
    linear-gradient(168deg, rgba(245, 166, 35, 0.05), rgba(10, 10, 10, 0.2));
  overflow: hidden;
}
.roi-inputs { display: flex; flex-direction: column; gap: 1.7rem; }
.roi-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem 1rem;
  align-items: center;
  font-family: var(--grotesk);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.roi-field input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold) var(--fill, 30%), rgba(245, 240, 232, 0.12) var(--fill, 30%));
  cursor: pointer;
  outline-offset: 4px;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad);
  border: 2px solid #0A0A0A;
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.7);
  transition: transform 0.25s var(--ease-lux);
}
.roi-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
.roi-field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #F5A623;
  border: 2px solid #0A0A0A;
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.7);
}
.roi-field output { font-size: 1rem; font-weight: 650; color: var(--gold-light); justify-self: end; font-variant-numeric: tabular-nums; }
.roi-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  border-left: 1px solid rgba(245, 166, 35, 0.25);
  padding-left: clamp(1.5rem, 4vw, 3.4rem);
}
.roi-cap { font-family: var(--grotesk); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); }
.roi-num {
  font-family: var(--grotesk);
  font-weight: 650;
  font-size: clamp(2.2rem, 5.2vw, 3.9rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(245, 166, 35, 0.35));
  font-variant-numeric: tabular-nums;
}
.roi-num span { font-size: 0.4em; font-weight: 500; -webkit-text-fill-color: var(--muted); }
.roi-year { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--muted); }
.roi-result .sol-cta-gold { align-self: flex-start; margin-top: 1rem; }

/* ---- 07 · PROCESS (thread knots) ---- */
.sol-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
  margin: 3rem 0 0;
  padding: 0;
}
.sol-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.9rem 0 0;
  border-top: 1px solid var(--hairline);
}
.sol-step::before {
  /* the knot on the thread */
  content: "";
  position: absolute;
  top: -6px; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.7);
  transform: scale(0);
}
.sol-step.is-on::before { animation: nodeBloom2 0.7s var(--ease-silk) forwards; }
@keyframes nodeBloom2 { to { transform: scale(1); } }
.ss-num { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); }
.sol-step b { font-family: var(--grotesk); font-weight: 550; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--text); }
.sol-step span { font-size: 0.86rem; line-height: 1.65; font-weight: 350; color: var(--muted); }

/* ---- 08 · PROOF + EXTRAS ---- */
.sol-extras {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 0;
  padding: 0;
}
.sol-extras li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.04), transparent);
  transition: border-color 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
}
.sol-extras li:hover { border-color: rgba(245, 166, 35, 0.4); transform: translateY(-4px); }
.sol-extras b { font-family: var(--grotesk); font-weight: 550; font-size: 0.94rem; color: var(--gold-light); }
.sol-extras span { font-size: 0.8rem; line-height: 1.55; font-weight: 350; color: var(--muted); }
.sol-int-label {
  margin: 2.8rem 0 1rem;
  font-family: var(--grotesk);
  font-size: 0.64rem;
  font-weight: 550;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
}
.sol-integrations { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; }
.sol-integrations li {
  font-family: var(--grotesk);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  padding: 0.65em 1.15em;
  transition: color 0.35s var(--ease-lux), border-color 0.35s var(--ease-lux);
}
.sol-integrations li:hover { color: var(--gold-light); border-color: rgba(245, 166, 35, 0.4); }

/* ---- 09 · FAQ ---- */
.sol-faqs { margin: 2.6rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; max-width: 880px; }
.sol-faq {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.03), transparent);
  transition: border-color 0.4s var(--ease-lux);
}
.sol-faq[open] { border-color: rgba(245, 166, 35, 0.45); }
.sol-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.2rem 1.25rem 1.5rem;
  position: relative;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text);
  transition: color 0.3s var(--ease-lux);
}
.sol-faq summary:hover { color: var(--gold-light); }
.sol-faq summary::-webkit-details-marker { display: none; }
.sol-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease-lux);
}
.sol-faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.sol-faq p { padding: 0 1.5rem 1.4rem; font-size: 0.9rem; line-height: 1.75; font-weight: 350; color: var(--muted); max-width: 72ch; }
.sol-faq p span { color: var(--gold-light); }

/* ---- 10 · FINAL CTA (halo) ---- */
.sol-final {
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 16vh, 12rem) var(--pad);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.sol-halo {
  position: absolute;
  left: 50%; top: 55%;
  width: min(760px, 95vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.14) 0%, rgba(245, 166, 35, 0.05) 38%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  animation: solHalo 5s ease-in-out infinite;
}
@keyframes solHalo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
.sol-final > * { position: relative; z-index: 2; }
.sol-final .micro-label { justify-content: center; }
.sol-final .sol-h1 { max-width: none; }
.sol-final .sol-sub { margin-left: auto; margin-right: auto; }
.sol-final .sol-cta-big { margin-top: 2.6rem; }
.sol-contact { margin-top: 2rem; font-family: var(--grotesk); font-size: 0.84rem; color: var(--faint); }
.sol-contact b { color: var(--muted); font-weight: 500; }

.sol-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 3.5rem var(--pad) 4rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.sol-footer .footer-logo { width: min(150px, 40vw); height: auto; opacity: 0.9; }
.sol-footer p { font-family: var(--grotesk); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--faint); }
.sol-footer a { font-family: var(--grotesk); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ---- responsive ---- */
@media (max-width: 1023px) {
  .sol-extras, .sol-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 899px) {
  .pk-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pk-card.pk-pop { order: -1; }
  .sol-tiers { grid-template-columns: 1fr; max-width: 500px; }
  .sol-tier.st-pop { order: -1; }
  .sp-modules { grid-template-columns: 1fr; }
  .sol-roi { grid-template-columns: 1fr; }
  .roi-result { border-left: none; border-top: 1px solid rgba(245, 166, 35, 0.25); padding-left: 0; padding-top: 1.8rem; }
  .sol-hero { min-height: 92svh; }
  .sol-ghost { font-size: 30vw; top: 3.5rem; }
  /* nervous system → single column, spine on the left */
  .sol-spine { left: 11px; transform: none; }
  .sol-os-list { grid-template-columns: 1fr; padding-left: 2.1rem; }
  .sol-os-node:nth-child(odd) { justify-self: stretch; text-align: left; align-items: flex-start; }
  .sol-os-node:nth-child(odd)::after { right: auto; left: -1.75rem; }
  .sol-os-node:nth-child(even)::after { left: -1.75rem; }
  .sol-os-node span { max-width: none; }
}
@media (max-width: 700px) { .sol-swipe { display: block; } }
@media (max-width: 560px) {
  .sol-extras, .sol-steps { grid-template-columns: 1fr; }
  .sol-tab { font-size: 0.7rem; padding: 0.72em 1.05em; }
  .sp-bg { object-position: center; }
}

/* ==========================================================================
   V3 — price ranges, guide buttons, cream flip, INDUSTRY GUIDE PAGES
   ========================================================================== */

/* ---- price range timelines ---- */
.pk-time, .st-time {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--grotesk);
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0A0A0A !important;
  background: var(--grad);
  border-radius: 99px;
  padding: 0.45em 1em;
  align-self: flex-start;
}
.pk-price b, .st-price b { font-size: clamp(1.1rem, 1.9vw, 1.45rem); letter-spacing: -0.01em; }

/* ---- "Read the full guide" links (index scenes + solutions panels) ---- */
.ind-guide {
  display: inline-block;
  margin: 1.6rem 0 0 1.4rem;
  font-size: 0.74rem;
  font-weight: 550;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(245, 166, 35, 0.5);
  padding-bottom: 0.4em;
  transition: color 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
}
.ind-guide:hover { color: #fff; border-color: var(--gold-light); }
.sp-guide {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--grotesk);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 99px;
  padding: 0.85em 1.5em;
  transition: background 0.4s var(--ease-lux), color 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}
.sp-guide:hover { background: rgba(245, 166, 35, 0.12); color: var(--gold-light); transform: translateY(-2px); }
.sp-guide b { font-weight: 650; }

/* ---- cream colour flip for the OS section (real colour, clean, clear) ---- */
#sol-os.sol-sec--cream {
  background: var(--cream);
  border-top: none;
}
.sol-sec--cream .micro-label { color: rgba(20, 18, 16, 0.55); }
.sol-sec--cream .label-num { color: var(--gold-deep); }
.sol-sec--cream .sol-h2 { color: var(--ink); }
.sol-sec--cream .sol-h2 .gold-text {
  background: linear-gradient(105deg, #b07514, #8a5d10);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sol-sec--cream .sol-lead { color: rgba(20, 18, 16, 0.62); }
.sol-sec--cream .sol-ghost { -webkit-text-stroke-color: rgba(138, 93, 16, 0.22); }
.sol-sec--cream .sol-os-node {
  background: rgba(255, 253, 248, 0.75);
  border-color: rgba(20, 18, 16, 0.1);
  box-shadow: 0 10px 30px -18px rgba(20, 18, 16, 0.25);
}
.sol-sec--cream .sol-os-node:hover { border-color: rgba(176, 117, 20, 0.45); box-shadow: 0 24px 50px -28px rgba(138, 93, 16, 0.35); }
.sol-sec--cream .sol-os-node b { color: var(--ink); }
.sol-sec--cream .sol-os-node span { color: rgba(20, 18, 16, 0.6); }

/* ==========================================================================
   INDUSTRY GUIDE PAGES (guide-*.html) — cinematic per-niche deep dives
   ========================================================================== */
.gd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(7rem, 16vh, 11rem) var(--pad) clamp(4rem, 9vh, 6.5rem);
  overflow: clip;
}
.gd-hero-media { position: absolute; inset: 0; z-index: 0; }
.gd-hero-video, .gd-hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.gd-hero-video { opacity: 0; transition: opacity 0.9s var(--ease-lux); }
.gd-hero-video.is-ready { opacity: 1; }
.gd-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.15) 40%,
    rgba(10, 10, 10, 0.55) 70%,
    rgba(10, 10, 10, 0.96) 100%);
}
.gd-hero > *:not(.gd-hero-media) { position: relative; z-index: 2; }
.gd-kicker {
  font-family: var(--grotesk);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.gd-h1 {
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.gd-h1 .hl-mask { display: block; overflow: hidden; }
.gd-hero-sub {
  margin: 1.6rem 0 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  font-weight: 350;
  color: rgba(245, 240, 232, 0.85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.gd-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* ---- story: warm cream chapter ---- */
.gd-story {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(5.5rem, 13vh, 9.5rem) var(--pad);
  overflow: clip;
}
.gd-story .micro-label { color: rgba(20, 18, 16, 0.55); }
.gd-story .label-num { color: var(--gold-deep); }
.gd-story-text {
  margin-top: 2rem;
  max-width: 26ch;
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.6rem, 4.2vw, 3.1rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.gd-story-text b { font-weight: 550; color: #8a5d10; }
.gd-story-aside {
  margin-top: 2.2rem;
  max-width: 52ch;
  font-family: var(--grotesk);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: rgba(20, 18, 16, 0.65);
}

/* ---- before / after ---- */
.gd-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-top: 2.8rem;
}
.gd-ba-col {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 16px;
}
.gd-ba-before { border: 1px solid rgba(245, 240, 232, 0.12); background: rgba(245, 240, 232, 0.025); }
.gd-ba-after {
  border: 1px solid rgba(245, 166, 35, 0.45);
  background: linear-gradient(168deg, rgba(245, 166, 35, 0.1), rgba(10, 10, 10, 0.1));
  box-shadow: 0 34px 80px -50px rgba(245, 166, 35, 0.45);
}
.gd-ba-col h3 {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.gd-ba-before h3 { color: rgba(245, 240, 232, 0.45); }
.gd-ba-after h3 { color: var(--gold); }
.gd-ba-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.gd-ba-col li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 350;
  color: var(--muted);
}
.gd-ba-before li::before { content: "✗"; position: absolute; left: 0; color: rgba(245, 240, 232, 0.3); }
.gd-ba-after li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.gd-ba-after li { color: var(--text); }

/* ---- the journey (vertical golden thread + knots) ---- */
.gd-journey { position: relative; margin-top: 3rem; padding-left: clamp(2rem, 5vw, 3rem); }
.gd-journey::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(245, 166, 35, 0.15));
}
.gd-step { position: relative; padding: 0 0 clamp(2.2rem, 5vh, 3.2rem); }
.gd-step:last-child { padding-bottom: 0; }
.gd-step::before {
  content: "";
  position: absolute;
  left: calc(clamp(2rem, 5vw, 3rem) * -1 + 0px);
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.7);
  transform: scale(0);
}
.gd-step.is-on::before { animation: nodeBloom2 0.7s var(--ease-silk) forwards; }
.gd-step-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.gd-step h3 {
  font-family: var(--grotesk);
  font-weight: 550;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  margin: 0.3rem 0 0.55rem;
  color: var(--text);
}
.gd-step p { max-width: 56ch; font-size: 0.94rem; line-height: 1.7; font-weight: 350; color: var(--muted); }
.gd-step p b { color: var(--gold-light); font-weight: 550; }

/* ---- benefits ---- */
.gd-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 2.8rem 0 0;
  padding: 0;
}
.gd-benefits li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.05), transparent);
  transition: border-color 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
}
.gd-benefits li:hover { border-color: rgba(245, 166, 35, 0.45); transform: translateY(-4px); }
.gd-benefits b { font-family: var(--grotesk); font-weight: 550; font-size: 1rem; color: var(--gold-light); }
.gd-benefits span { font-size: 0.84rem; line-height: 1.6; font-weight: 350; color: var(--muted); }

/* ---- what customers feel ---- */
.gd-feel {
  margin: 3rem auto 0;
  max-width: 46rem;
  text-align: center;
}
.gd-feel-quote {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.45;
  color: var(--text);
}
.gd-feel-quote em { color: var(--gold-light); }
.gd-feel-cap {
  margin-top: 1.2rem;
  font-family: var(--grotesk);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---- investment rows ---- */
.gd-invest { margin-top: 2.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.gd-invest-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.4rem;
  padding: 1.25rem clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(245, 166, 35, 0.04), transparent);
  transition: border-color 0.45s var(--ease-lux);
}
.gd-invest-row:hover { border-color: rgba(245, 166, 35, 0.45); }
.gd-invest-row.is-pop { border-color: rgba(245, 166, 35, 0.55); background: linear-gradient(165deg, rgba(245, 166, 35, 0.1), transparent); }
.gd-invest-row b { font-family: var(--grotesk); font-weight: 600; font-size: 1.02rem; color: var(--text); min-width: 11ch; }
.gd-invest-row .gi-range { font-family: var(--grotesk); font-weight: 550; font-size: 0.95rem; color: var(--gold-light); }
.gd-invest-row .gi-mo { font-size: 0.8rem; color: var(--muted); }
.gd-invest-row .gi-time {
  margin-left: auto;
  font-family: var(--grotesk);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--grad);
  border-radius: 99px;
  padding: 0.45em 1em;
}
.gd-invest-note { margin-top: 1.2rem; font-size: 0.82rem; line-height: 1.65; color: var(--faint); max-width: 70ch; }
.gd-invest-note b { color: var(--muted); }

/* ---- media placeholder (owner will supply) ---- */
.gd-ph {
  margin-top: 3rem;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 40vw, 420px);
  border: 2px dashed rgba(245, 166, 35, 0.4);
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.03);
  text-align: center;
  padding: 2rem;
}
.gd-ph p {
  font-family: var(--grotesk);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 2;
}
.gd-ph p span { display: block; font-size: 0.66rem; color: var(--faint); letter-spacing: 0.12em; text-transform: none; }

/* ---- responsive ---- */
@media (max-width: 899px) {
  .gd-ba { grid-template-columns: 1fr; }
  .gd-benefits { grid-template-columns: 1fr 1fr; }
  .gd-h1 { font-size: clamp(2.1rem, 9.5vw, 3.4rem); }
  .gd-story-text { max-width: none; }
  .gd-invest-row .gi-time { margin-left: 0; }
}
@media (max-width: 560px) {
  .gd-benefits { grid-template-columns: 1fr; }
  .ind-guide { margin-left: 0; display: block; width: fit-content; }
}

/* ==========================================================================
   V4 — premium solutions banner, industry leak calculators, WhatsApp mocks
   ========================================================================== */

/* ---- index: big tappable "Solutions Studio" banner + industry chips ---- */
.pk-banner {
  position: relative;
  margin-top: 2.6rem;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 20px;
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(245, 166, 35, 0.14), transparent 55%),
    linear-gradient(168deg, rgba(245, 166, 35, 0.07), rgba(10, 10, 10, 0.2));
  overflow: hidden;
}
.pkb-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  overflow: hidden;
  transition: background 0.5s var(--ease-lux);
}
.pkb-main::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(245, 205, 130, 0.12) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease-silk);
}
.pkb-main:hover { background: rgba(245, 166, 35, 0.05); }
.pkb-main:hover::before { transform: translateX(130%); }
.pkb-copy b {
  display: block;
  font-family: var(--grotesk);
  font-weight: 550;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text);
}
.pkb-copy b em { font-family: var(--serif); font-style: italic; font-weight: 380; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pkb-copy span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 350;
  color: var(--muted);
}
.pkb-arrow {
  flex: none;
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #0A0A0A;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 16px 40px -14px rgba(245, 166, 35, 0.7);
  transition: transform 0.5s var(--ease-lux);
}
.pkb-main:hover .pkb-arrow { transform: translateX(6px); }
.pkb-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem clamp(1.7rem, 4vw, 2.8rem) 1.7rem;
  border-top: 1px solid rgba(245, 166, 35, 0.18);
}
.pkb-chips-label {
  flex-basis: 100%;
  font-family: var(--grotesk);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.pkb-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--grotesk);
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--text);
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: rgba(12, 11, 9, 0.6);
  border-radius: 99px;
  padding: 0.7em 1.2em;
  transition: background 0.35s var(--ease-lux), color 0.35s var(--ease-lux), transform 0.35s var(--ease-lux), border-color 0.35s var(--ease-lux);
}
.pkb-chip:hover { background: var(--grad); color: #0A0A0A; border-color: transparent; transform: translateY(-3px); }
.pkb-chip i { font-style: normal; }

/* ---- guide: THE LEAK — their numbers, their words ---- */
.gd-leak {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4.5vw, 3.4rem);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(100% 120% at 90% 10%, rgba(245, 166, 35, 0.09), transparent 55%),
    linear-gradient(168deg, rgba(245, 166, 35, 0.05), rgba(10, 10, 10, 0.25));
}
.gd-leak .roi-inputs { justify-content: center; }
.gd-leak-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.gd-leak-cap {
  font-family: var(--grotesk);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.gd-leak-num {
  font-family: var(--grotesk);
  font-weight: 650;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 26px rgba(245, 166, 35, 0.4));
  font-variant-numeric: tabular-nums;
}
.gd-leak-num span { font-size: 0.38em; font-weight: 500; -webkit-text-fill-color: var(--muted); }
/* the "show your working" line — makes the maths fully transparent */
.gd-leak-work {
  font-family: var(--grotesk);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 2px 0 4px;
  padding: 8px 12px;
  border-left: 2px solid rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.05);
  border-radius: 0 8px 8px 0;
  font-variant-numeric: tabular-nums;
  max-width: 34ch;
}
.gd-leak-work b { color: var(--gold-light); font-weight: 600; }
.gd-leak-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 26ch;
}
.gd-leak-line b { color: var(--gold-light); font-weight: 550; }
.gd-leak-year { font-family: var(--grotesk); font-size: 0.9rem; color: var(--muted); }
.gd-leak-year b { color: var(--gold-light); }
.gd-leak .sol-cta-gold { align-self: flex-start; margin-top: 1rem; }

/* ---- guide: WhatsApp demo mock ---- */
.gd-chat-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}
.gd-chat {
  max-width: 400px;
  width: 100%;
  justify-self: center;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 22px;
  background: #0d0f0c;
  overflow: hidden;
  box-shadow: 0 44px 90px -50px rgba(0, 0, 0, 0.9), 0 24px 60px -40px rgba(245, 166, 35, 0.35);
}
.gd-chat-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: #10140F;
  border-bottom: 1px solid rgba(245, 166, 35, 0.16);
}
.gd-chat-av {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #0A0A0A;
  font-family: var(--grotesk);
  font-size: 0.7rem;
  font-weight: 700;
}
.gd-chat-id { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.gd-chat-id strong { font-family: var(--grotesk); font-size: 0.88rem; font-weight: 550; color: var(--text); }
.gd-chat-id em { font-style: normal; font-family: var(--grotesk); font-size: 0.62rem; color: #7fbf7f; }
.gd-chat-demo {
  flex: none;
  font-family: var(--grotesk);
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 99px;
  padding: 0.3em 0.7em;
}
.gd-chat-body { padding: 1.1rem 0.9rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; }
.gd-msg {
  max-width: 84%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-family: var(--grotesk);
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text);
}
.gd-msg.in { align-self: flex-start; background: #1a1d18; border-bottom-left-radius: 4px; }
.gd-msg.out { align-self: flex-end; background: rgba(245, 166, 35, 0.14); border: 1px solid rgba(245, 166, 35, 0.22); border-bottom-right-radius: 4px; }
.gd-msg .gm-time { display: block; margin-top: 0.35rem; font-size: 0.58rem; letter-spacing: 0.06em; color: var(--faint); text-align: right; }
.gd-msg.out .gm-time { color: rgba(245, 205, 130, 0.6); }
.gd-chat-note {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 350;
  line-height: 1.45;
  color: var(--text);
  max-width: 24ch;
}
.gd-chat-note em { color: var(--gold-light); }
.gd-chat-sub { margin-top: 1.2rem; font-size: 0.92rem; line-height: 1.7; font-weight: 350; color: var(--muted); max-width: 44ch; }

@media (max-width: 899px) {
  .pkb-main { flex-direction: row; }
  .gd-leak { grid-template-columns: 1fr; }
  .gd-chat-wrap { grid-template-columns: 1fr; }
  .gd-chat-note { max-width: none; }
}

/* ==========================================================================
   V5 — button-ified guide links, final-CTA fix, System Pulse, feature matrix
   ========================================================================== */

/* guide links → real premium buttons (nobody misses a button) */
.ind-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 1.6rem 0 0 1.2rem;
  font-family: var(--grotesk);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--grad);
  border: none;
  border-radius: 99px;
  padding: 0.95em 1.6em;
  box-shadow: 0 14px 34px -14px rgba(245, 166, 35, 0.65);
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}
.ind-guide:hover { color: #0A0A0A; transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(245, 166, 35, 0.8); border: none; }
.sp-guide {
  background: var(--grad);
  color: #0A0A0A;
  border: none;
  box-shadow: 0 14px 34px -14px rgba(245, 166, 35, 0.65);
  font-weight: 650;
}
.sp-guide:hover { background: var(--grad); color: #0A0A0A; filter: brightness(1.08); }

/* final CTA — no more giant dead space */
.sol-final {
  min-height: 0;
  padding: clamp(5.5rem, 12vh, 9rem) var(--pad) clamp(6rem, 13vh, 10rem);
  justify-content: flex-start;
}
.sol-halo { top: 50%; width: min(560px, 90vw); }

/* SYSTEM PULSE — a live-demo ticker of the OS at work */
.pulse-feed {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  max-width: 100%;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(12, 11, 9, 0.7);
  border-radius: 99px;
  padding: 0.65rem 1.2rem 0.65rem 0.9rem;
}
.pulse-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.8);
  animation: statusPulse 1.8s ease-in-out infinite;
}
.pulse-label {
  flex: none;
  font-family: var(--grotesk);
  font-size: 0.54rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(245, 166, 35, 0.3);
  padding-right: 0.8rem;
}
.pulse-text {
  font-family: var(--grotesk);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
}
.pulse-text.is-swap { opacity: 0; transform: translateY(8px); }

/* feature matrix + add-ons */
.sol-matrix-note {
  margin: 2.6rem 0 0.9rem;
  font-family: var(--grotesk);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.sol-table td.tier-basic { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.sol-addons {
  margin-top: 2.6rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px dashed rgba(245, 166, 35, 0.45);
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.03);
}
.sol-addons h3 {
  font-family: var(--grotesk);
  font-weight: 550;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text);
}
.sol-addons h3 em { font-family: var(--serif); font-style: italic; font-weight: 380; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sol-addons p { margin: 0.7rem 0 1.2rem; font-size: 0.88rem; line-height: 1.65; color: var(--muted); max-width: 66ch; }
.sol-addons ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; }
.sol-addons li {
  font-family: var(--grotesk);
  font-size: 0.74rem;
  font-weight: 550;
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 99px;
  padding: 0.6em 1.1em;
  transition: background 0.35s var(--ease-lux), color 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}
.sol-addons li:hover { background: var(--grad); color: #0A0A0A; transform: translateY(-2px); }

@media (max-width: 560px) {
  .ind-guide { margin-left: 0; display: inline-flex; }
  .pulse-feed { border-radius: 14px; }
  .pulse-text { white-space: normal; font-size: 0.7rem; }
}

/* fix: `.sol-final > *` was overriding the halo back into the layout flow,
   leaving a ~350px invisible block above the final CTA. Pin it absolute. */
.sol-final .sol-halo { position: absolute; z-index: 0; }

/* ============================================================
   MASTER CHATBOT — "AR Assistant" (chatbot.js)
   Floating gold FAB + premium panel, matches the site's
   matte-black + gold language. Mobile: bottom sheet.
   ============================================================ */
.arc-root { position: fixed; right: 20px; bottom: 20px; z-index: 9997; font-family: var(--grotesk); }

/* --- the floating button --- */
.arc-fab {
  position: relative;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--grad);
  color: #0A0A0A;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0; transform: scale(0.6) translateY(16px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), box-shadow 0.3s;
}
.arc-root.is-ready .arc-fab { opacity: 1; transform: none; }
.arc-fab:hover { box-shadow: 0 10px 40px rgba(245, 166, 35, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4); }
.arc-fab svg { width: 27px; height: 27px; }
.arc-fab-dot {
  position: absolute; top: 3px; right: 3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #35d07f; border: 2px solid #0A0A0A;
  animation: arcPulse 2.4s var(--ease-silk) infinite;
}
@keyframes arcPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.arc-root.is-open .arc-fab { transform: scale(0.9); }

/* --- the panel --- */
.arc-panel {
  position: absolute; right: 0; bottom: 74px;
  width: min(390px, calc(100vw - 40px));
  height: min(600px, calc(100dvh - 120px));
  display: flex; flex-direction: column;
  background: #121110;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(245, 166, 35, 0.05);
  overflow: hidden;
  opacity: 0; transform: translateY(18px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.32s var(--ease-lux), transform 0.32s var(--ease-lux);
  pointer-events: none;
}
.arc-root.is-open .arc-panel { opacity: 1; transform: none; pointer-events: auto; }

.arc-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.1), rgba(245, 166, 35, 0.02));
  border-bottom: 1px solid var(--hairline);
}
.arc-av {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad); color: #0A0A0A;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 0.95rem;
}
.arc-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.arc-id strong { color: var(--text); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em; }
.arc-id em { display: flex; align-items: center; gap: 6px; font-style: normal; font-size: 0.72rem; color: var(--muted); }
.arc-live { width: 7px; height: 7px; border-radius: 50%; background: #35d07f; animation: arcPulse 2.4s infinite; }
.arc-close {
  margin-left: auto; width: 34px; height: 34px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(245, 240, 232, 0.06); color: var(--muted);
  font-size: 0.85rem; transition: background 0.25s, color 0.25s;
}
.arc-close:hover { background: rgba(245, 240, 232, 0.12); color: var(--text); }

.arc-body {
  flex: 1; overflow-y: auto;
  padding: 16px 14px 8px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin; scrollbar-color: rgba(245, 166, 35, 0.3) transparent;
  overscroll-behavior: contain;
}
.arc-msg {
  max-width: 84%;
  padding: 10px 14px;
  font-size: 0.88rem; line-height: 1.55;
  border-radius: 16px;
  animation: arcIn 0.35s var(--ease-lux) both;
  word-wrap: break-word;
}
@keyframes arcIn { from { opacity: 0; transform: translateY(10px) scale(0.96); } to { opacity: 1; transform: none; } }
.arc-msg--bot {
  align-self: flex-start;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.07);
  border-bottom-left-radius: 5px;
  color: var(--text);
}
.arc-msg--user {
  align-self: flex-end;
  background: linear-gradient(105deg, rgba(245, 166, 35, 0.22), rgba(255, 217, 138, 0.14));
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-bottom-right-radius: 5px;
  color: var(--text);
}
.arc-typing { display: inline-flex; gap: 5px; padding: 14px 16px; }
.arc-typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); opacity: 0.4;
  animation: arcDots 1.2s infinite;
}
.arc-typing i:nth-child(2) { animation-delay: 0.15s; }
.arc-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes arcDots { 0%,60%,100% { opacity: 0.35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

.arc-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 6px 14px 10px; }
.arc-chip {
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.07);
  color: var(--gold-light);
  font-family: var(--grotesk); font-size: 0.75rem;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.arc-chip:hover { background: rgba(245, 166, 35, 0.16); transform: translateY(-1px); }

.arc-form {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--hairline);
  background: rgba(245, 240, 232, 0.02);
}
.arc-input {
  flex: 1; min-width: 0;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background: rgba(245, 240, 232, 0.05);
  color: var(--text);
  font-family: var(--grotesk); font-size: 0.9rem;
  padding: 11px 14px; border-radius: 999px;
  outline: none; transition: border-color 0.25s;
}
.arc-input:focus { border-color: rgba(245, 166, 35, 0.5); }
.arc-input::placeholder { color: var(--faint); }
.arc-send {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: var(--grad); color: #0A0A0A;
  transition: transform 0.25s var(--ease-lux), opacity 0.25s;
}
.arc-send:hover { transform: scale(1.07); }
.arc-send:disabled { opacity: 0.45; cursor: default; transform: none; }
.arc-send svg { width: 18px; height: 18px; }

.arc-note { padding: 0 14px 10px; font-size: 0.66rem; color: var(--faint); text-align: center; }
.arc-note a { color: var(--gold-light); text-decoration: none; }

/* --- mobile: bottom sheet --- */
@media (max-width: 899px) {
  .arc-root { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .arc-fab { width: 54px; height: 54px; }
  .arc-panel {
    position: fixed; right: 12px; left: 12px; bottom: 84px;
    width: auto;
    height: min(72dvh, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .arc-fab, .arc-panel, .arc-msg { transition: none; animation: none; }
  .arc-root .arc-fab { opacity: 1; transform: none; }
}

/* --- build section: guide buttons under the three crafts --- */
.build-guides {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 28px 0 10px;
  position: relative; z-index: 3;
}
@media (max-width: 899px) {
  .build-guides { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* --- chatbot v9 polish: AR logo mark + gold-ring FAB --- */
.arc-fab {
  background: linear-gradient(#131110, #131110) padding-box, var(--grad) border-box;
  border: 2px solid transparent;
  color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.28), 0 2px 10px rgba(0, 0, 0, 0.5);
}
.arc-fab:hover { box-shadow: 0 10px 42px rgba(245, 166, 35, 0.45), 0 2px 10px rgba(0, 0, 0, 0.5); }
.arc-fab-logo { width: 32px; height: auto; display: block; pointer-events: none; }
.arc-av {
  background: linear-gradient(#131110, #131110) padding-box, var(--grad) border-box;
  border: 1.5px solid transparent;
}
.arc-av img { width: 24px; height: auto; display: block; }
/* gold hairline glow around the panel + subtle top sheen */
.arc-panel {
  border: 1px solid rgba(245, 166, 35, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 166, 35, 0.07);
}
.arc-head { position: relative; overflow: hidden; }
.arc-head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 217, 138, 0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: arcSheen 5.5s var(--ease-silk) infinite;
  pointer-events: none;
}
@keyframes arcSheen { 0%, 55% { transform: translateX(-100%); } 85%, 100% { transform: translateX(100%); } }

/* ============================================================
   V10 — bot page-buttons + floating BUSINESS NAVIGATOR
   ============================================================ */

/* --- gold page buttons inside bot replies --- */
.arc-pages { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.arc-page-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: linear-gradient(105deg, rgba(245, 166, 35, 0.16), rgba(255, 217, 138, 0.08));
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 11px;
  color: var(--gold-light); text-decoration: none;
  font-family: var(--grotesk); font-size: 0.82rem; font-weight: 600;
  transition: background 0.25s, transform 0.25s var(--ease-lux), box-shadow 0.25s;
}
.arc-page-btn i { font-style: normal; font-size: 1rem; }
.arc-page-btn span { flex: 1; }
.arc-page-btn b { font-weight: 600; transition: transform 0.25s var(--ease-lux); }
.arc-page-btn:hover {
  background: linear-gradient(105deg, rgba(245, 166, 35, 0.28), rgba(255, 217, 138, 0.14));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.2);
}
.arc-page-btn:hover b { transform: translateX(3px); }

/* --- floating business navigator (bottom-left, every page) --- */
.arb-root { position: fixed; left: 20px; bottom: 20px; z-index: 9996; font-family: var(--grotesk); }
.arb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 18px 0 14px;
  border-radius: 999px; cursor: pointer;
  background: linear-gradient(#131110, #131110) padding-box, var(--grad) border-box;
  border: 1.5px solid transparent;
  color: var(--text);
  font-family: var(--grotesk); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 166, 35, 0.12);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), box-shadow 0.3s;
}
.arb-root.is-ready .arb-pill { opacity: 1; transform: none; }
.arb-pill:hover { box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 166, 35, 0.25); }
.arb-pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  animation: arcPulse 2.4s var(--ease-silk) infinite;
}
.arb-pill-chev { font-weight: 400; color: var(--gold-light); transition: transform 0.3s var(--ease-lux); }
.arb-root.is-open .arb-pill-chev { transform: rotate(180deg); }

.arb-panel {
  position: absolute; left: 0; bottom: 60px;
  width: min(300px, calc(100vw - 40px));
  background: #121110;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 18px;
  padding: 14px 10px 10px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(245, 166, 35, 0.06);
  opacity: 0; transform: translateY(14px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
  pointer-events: none;
}
.arb-root.is-open .arb-panel { opacity: 1; transform: none; pointer-events: auto; }
.arb-head {
  padding: 0 10px 10px;
  font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--hairline); margin-bottom: 8px;
}
.arb-head span { display: block; font-family: var(--grotesk); font-size: 0.7rem; font-weight: 400; color: var(--muted); margin-top: 3px; }
.arb-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 11px;
  color: var(--text); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux), background 0.22s;
}
.arb-root.is-open .arb-item { opacity: 1; transform: none; }
.arb-root.is-open .arb-item:nth-child(2) { transition-delay: 0.04s; }
.arb-root.is-open .arb-item:nth-child(3) { transition-delay: 0.08s; }
.arb-root.is-open .arb-item:nth-child(4) { transition-delay: 0.12s; }
.arb-root.is-open .arb-item:nth-child(5) { transition-delay: 0.16s; }
.arb-root.is-open .arb-item:nth-child(6) { transition-delay: 0.20s; }
.arb-root.is-open .arb-item:nth-child(7) { transition-delay: 0.24s; }
.arb-root.is-open .arb-item:nth-child(8) { transition-delay: 0.28s; }
.arb-root.is-open .arb-item:nth-child(9) { transition-delay: 0.32s; }
.arb-item i { font-style: normal; font-size: 1.05rem; width: 24px; text-align: center; }
.arb-item span { flex: 1; }
.arb-item b { color: var(--gold-light); font-weight: 600; opacity: 0; transform: translateX(-4px); transition: opacity 0.22s, transform 0.22s var(--ease-lux); }
.arb-item:hover { background: rgba(245, 166, 35, 0.09); }
.arb-item:hover b { opacity: 1; transform: none; }
.arb-item.is-here { background: rgba(245, 166, 35, 0.12); }
.arb-item.is-here::after { content: "you're here"; font-size: 0.6rem; color: var(--gold-light); letter-spacing: 0.06em; }
.arb-all {
  display: block; margin: 8px 6px 2px; padding: 10px;
  text-align: center; border-radius: 11px;
  background: var(--grad); color: #0A0A0A;
  font-size: 0.8rem; font-weight: 650; text-decoration: none;
  transition: transform 0.25s var(--ease-lux), box-shadow 0.25s;
}
.arb-all:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(245, 166, 35, 0.3); }

@media (max-width: 899px) {
  .arb-root { left: 14px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .arb-pill { height: 44px; font-size: 0.76rem; }
  .arb-panel { bottom: 56px; max-height: min(64dvh, 480px); overflow-y: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .arb-pill, .arb-panel, .arb-item { transition: none; animation: none; }
  .arb-root .arb-pill { opacity: 1; transform: none; }
  .arb-root.is-open .arb-item { opacity: 1; transform: none; }
}

/* ============================================================
   V13 — PREMIUM IMAGE FRAME POLISH (new artwork placed)
   Elevates the build panes, service media & case shots with a
   brand-gold ambient glow that breathes in on reveal and lifts
   on hover — layered on top of the existing reveal choreography.
   ============================================================ */
.build-pane, .svc-media, .case-shot {
  transition: box-shadow 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
  will-change: box-shadow, transform;
}
/* build panes: settle with a soft gold rim once revealed */
.build-pane.is-in {
  box-shadow: -20px 30px 80px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(245, 166, 35, 0.12),
              0 0 46px -12px rgba(245, 166, 35, 0.16);
}
.build-pane.is-in:hover {
  transform: translateX(0) translateY(-4px);
  box-shadow: -22px 40px 100px rgba(0, 0, 0, 0.62),
              0 0 0 1px rgba(245, 166, 35, 0.30),
              0 0 64px -8px rgba(245, 166, 35, 0.34);
}
/* service media & case shots: gold glow-lift on hover */
.svc-media:hover, .case-shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 90px -28px rgba(0, 0, 0, 0.70),
              0 0 0 1px rgba(245, 166, 35, 0.24),
              0 0 52px -8px rgba(245, 166, 35, 0.30);
}
/* a fine gold hairline that draws across the top edge on hover */
.svc-media::before, .case-shot::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 138, 0.9), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s var(--ease-silk);
  pointer-events: none;
}
.svc-media:hover::before, .case-shot:hover::before { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .build-pane, .svc-media, .case-shot { transition: none; }
  .build-pane.is-in:hover, .svc-media:hover, .case-shot:hover { transform: none; }
  .svc-media::before, .case-shot::before { display: none; }
}

/* ============================================================
   V14 — filled guide showcase frame (replaces the dashed gd-ph
   placeholder on guide pages with a real premium image frame)
   ============================================================ */
.gd-shot {
  margin-top: 3rem; position: relative;
  border-radius: 16px; overflow: clip;
  border: 1px solid rgba(245, 166, 35, 0.22);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 46px -14px rgba(245, 166, 35, 0.16);
  transition: box-shadow 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
}
.gd-shot img { width: 100%; height: auto; display: block; transform: scale(1.04); transition: transform 1.4s var(--ease-lux); }
.gd-shot:hover { transform: translateY(-4px); box-shadow: 0 40px 100px -28px rgba(0, 0, 0, 0.78), 0 0 64px -10px rgba(245, 166, 35, 0.32); }
.gd-shot:hover img { transform: scale(1); }
.gd-shot::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 138, 0.9), transparent);
  transform: scaleX(0); transition: transform 0.9s var(--ease-silk); pointer-events: none;
}
.gd-shot:hover::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .gd-shot, .gd-shot img { transition: none; }
  .gd-shot:hover { transform: none; }
  .gd-shot:hover img { transform: scale(1.04); }
}

/* ============================================================
   PREMIUM UPGRADE v15  — appended; overrides the rules above
   · daylight-readable contrast   · precious-metals palette
   · living gold sheen            · de-numbered (no AI serials)
   ============================================================ */
:root{
  /* text now readable in daylight / low screen brightness */
  --muted: rgba(245,240,232,0.74);
  --faint: rgba(245,240,232,0.46);
  /* precious-metals palette — gold stays lead, warmed + a cool counterpoint */
  --gold: #F6B33C;
  --gold-light: #FFE1A6;
  --gold-deep: #9a6a12;
  --rose: #E7A987;                 /* rose-gold — warm secondary */
  --ice:  #9FC6D4;                 /* platinum-blue — cool accent */
  --grad:     linear-gradient(102deg,#FFE1A6 0%, #F5A623 44%, #E7A987 100%);
  --grad-ice: linear-gradient(102deg,#E7F0F4 0%, #9FC6D4 55%, #CDBE95 100%);
  --hairline: rgba(245,166,35,0.22);
}
/* living, dimensional gold display text (champagne → gold → rose sheen) */
.gold-text{
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldSheen 7s var(--ease-silk) infinite;
}
@keyframes goldSheen{ 0%,100%{ background-position:0% 50% } 50%{ background-position:100% 50% } }
/* cool platinum counterpoint in two premium spots — adds multi-tonal life */
.process-title .gold-text,
.local-head .gold-text{
  background: var(--grad-ice);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (prefers-reduced-motion: reduce){ .gold-text{ animation: none } }

/* ---- de-AI: remove every serial number ---- */
.label-num,
.pc-num,
.ghost-num,
.ind-ghost,
.ind-kicker i{ display: none !important; }

/* ============================================================
   ULTRA PREMIUM  v16  — appended last, overrides everything above
   Fixes the real complaints:
   · body copy was tiny + thin (350 wt) → now bigger, warmer, weightier
   · labels were 0.64rem afterthoughts → now designed, gradient, a metal tick
   · one flat gold everywhere → per-section precious-metal accents
   · reveals were a flat fade → richer type + a real blur-rise on scroll
   Daylight-readable throughout.
   ============================================================ */
:root{
  --text-soft:  rgba(247,242,234,0.94);   /* bright, confident body copy   */
  --text-quiet: rgba(247,242,234,0.80);   /* secondary copy, still readable */
  --grad-rose:  linear-gradient(102deg,#FCDCC2 0%, #E7A987 52%, #CE9070 100%);
  --grad-ice2:  linear-gradient(102deg,#EAF3F6 0%, #9FC6D4 55%, #BFD3B4 100%);
  --serif-num:  "Fraunces", Georgia, serif;
}

/* ---------- 1 · BODY COPY — the headline fix: size + weight + light ----------
   Every "small simple text" paragraph gets real presence. Sizes stay fluid so
   nothing breaks the pinned decks; weight 420 reads premium, not thin.        */
.svc-desc,
.case-copy{
  font-size: clamp(1.14rem, 1.4vw, 1.5rem) !important;
  line-height: 1.5;
  font-weight: 420;
  letter-spacing: -0.012em;
  color: var(--text-soft);
}
.pc-desc{
  font-size: clamp(1.02rem, 1.15vw, 1.2rem) !important;
  line-height: 1.55;
  font-weight: 420;
  color: var(--text-soft);
}
.pk-list li{
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 420;
  color: var(--text-soft);
}
.pk-list li::before{ font-size: 0.92em; }
.case-privacy{ font-size: 0.98rem; font-weight: 400; color: var(--text-quiet); }
.pk-sub,
.proof-lead,
.local-lead{
  font-size: clamp(1.14rem, 1.55vw, 1.42rem) !important;
  line-height: 1.58;
  font-weight: 400;
  color: var(--text-soft);
}
.pk-promise{ font-size: 1.12rem; }
.arch-quote{ font-weight: 400; color: var(--text-soft); }
.manifesto-aside,
.build-caption{ color: var(--text-quiet); }

/* ---------- 2 · MICRO-LABELS — from afterthought to design signature ----------
   Bigger, gradient-gold, with a drawn metal tick replacing the removed serial. */
.micro-label{
  font-size: clamp(0.72rem, 0.92vw, 0.8rem);
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--gold-light);
}
.micro-label::before{
  content: "";
  flex: none;
  align-self: center;
  width: clamp(1.6rem, 2.4vw, 2.6rem);
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  background-size: 220% 100%;
  animation: goldSheen 7s var(--ease-silk) infinite;
}
/* labels that are centred or purely utilitarian don't want the tick */
.sol-final .micro-label,
.footer-status .micro-label,
.contact-line .micro-label{ }
.contact-line .micro-label::before,
.cl-body .micro-label::before{ display: none; }
@media (prefers-reduced-motion: reduce){ .micro-label::before{ animation: none; } }

/* ---------- 3 · PREMIUM PILLS — chips read like jewellery, not tags ---------- */
.ind-chips li{
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 0.62em 1.15em;
  border-color: rgba(246,179,60,0.45);
  transition: transform 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux), color 0.5s var(--ease-lux);
}
.ind-chips li:hover{ transform: translateY(-3px); border-color: var(--gold-light); color: #fff; }
.local-langs li{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.55em 1.2em;
  transition: transform 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux);
}
.local-langs li:hover{ transform: translateY(-3px); border-color: var(--gold-light); }

/* ---------- 4 · COLOUR VARIETY — italic emphasis stops being invisible -------
   Non-gold serif emphasis now carries a warm rose tint so the eye catches it. */
.case .f-it:not(.gold-text),
.case-head .f-it{
  background: var(--grad-rose);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.build-caption .f-it,
.manifesto-text .f-it{ color: var(--gold-light); }

/* ---------- 5 · PACKAGES — three distinct metals, richer cards ---------------
   Starter = platinum-ice · Growth = gold (lead) · Full = rose-gold.          */
.pk-price b{
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pk-grid .pk-card:nth-child(1) .pk-promise{ color: var(--ice); }
.pk-grid .pk-card:nth-child(1) .pk-price b{ background: var(--grad-ice2); -webkit-background-clip: text; background-clip: text; }
.pk-grid .pk-card:nth-child(1):hover{ border-color: rgba(159,198,212,0.5); }
.pk-grid .pk-card:nth-child(3) .pk-promise{ color: var(--rose); }
.pk-grid .pk-card:nth-child(3) .pk-price b{ background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; }
.pk-grid .pk-card:nth-child(3):hover{ border-color: rgba(231,169,135,0.5); }
.pk-card{
  border-radius: 18px;
  transition: border-color 0.6s var(--ease-lux), transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.pk-card:hover{ box-shadow: 0 40px 90px -50px rgba(0,0,0,0.8), 0 0 50px -22px rgba(246,179,60,0.4); }

/* ---------- 6 · REAL MOTION — cinematic blur-rise on the un-animated blocks ---
   Packages + footer columns aren't touched by GSAP, so a scroll-driven reveal
   here is safe. Blur-to-sharp + rise reads far richer than a flat fade.
   Fully visible where unsupported or when motion is reduced.                  */
@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){
    .pk-head, .pk-sub,
    .pk-card,
    .pk-notes, .pk-banner,
    .footer-cols .f-col{
      animation: riseSharp linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 26%;
    }
    .pk-grid .pk-card:nth-child(2){ animation-range: entry 8% cover 30%; }
    .pk-grid .pk-card:nth-child(3){ animation-range: entry 14% cover 34%; }
    .footer-cols .f-col:nth-child(2){ animation-range: entry 6% cover 30%; }
    .footer-cols .f-col:nth-child(3){ animation-range: entry 10% cover 34%; }
    .footer-cols .f-col:nth-child(4){ animation-range: entry 14% cover 38%; }
  }
}
@keyframes riseSharp{
  from{ opacity: 0; transform: translateY(46px) scale(0.985); filter: blur(7px); }
  60% { opacity: 1; }
  to  { opacity: 1; transform: none; filter: blur(0); }
}

/* ---------- 7 · SECTION LEADS — the big intro paragraphs earn their space ---- */
.proof-head,
.pk-head,
.local-head{ letter-spacing: -0.032em; }

