/* =========================================================
   ScaleSys — Direction C "Momentum"
   Mobile-first. Tokens → base → components → sections.
   ========================================================= */
:root {
  --charcoal: #121212;
  --ink-2: #2A2926;
  --cream: #F3EEE5;
  --cream-2: #EAE3D6;
  --flame: #FF5B26;
  --flame-2: #E94A17;
  --sand: #E2D6C3;
  --ash: #8A847B;
  --white: #FFFFFF;

  --f-display: "Sora", system-ui, sans-serif;
  --f-body: "DM Sans", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --gutter: 16px;
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1320px;
  --topbar-h: 34px;
  --nav-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1200px) { :root { --gutter: 56px; --topbar-h: 40px; --nav-h: 92px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0; background: var(--cream); color: var(--charcoal);
  font: 400 16px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
em { font-style: normal; color: var(--flame); }
.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 11px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--charcoal); color: var(--cream); padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--flame); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: clamp(72px, 12vw, 160px) 0; }

.eyebrow { font: 500 12px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px; color: var(--charcoal); }
.eyebrow--light { color: var(--cream); opacity: .8; }
.h2 { font: 700 clamp(34px, 6.4vw, 72px)/1.02 var(--f-display); letter-spacing: -.035em; margin: 0 0 24px; }
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--ink-2); margin: 0 0 32px; max-width: 58ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--charcoal); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font: 600 16px/1 var(--f-body); white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(5px); }
.btn--dark:hover { --bg: var(--flame); --fg: var(--charcoal); }
.btn--flame { --bg: var(--flame); --fg: var(--charcoal); }
.btn--flame:hover { --bg: var(--charcoal); --fg: var(--cream); }
.btn--light { --bg: var(--cream); --fg: var(--charcoal); }
.btn--light:hover { --bg: var(--flame); }
.btn--block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; min-height: 52px; }
.link-arrow .arrow { transition: transform .35s var(--ease); }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); display: inline-block; flex: none; }
.dot--live { background: #2BB673; box-shadow: 0 0 0 4px rgba(43,182,115,.18); }
.dot--pulse { position: relative; }
.dot--pulse::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; background: var(--flame); opacity: .35; animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Marquees ---------- */
.marquee { overflow: hidden; display: flex; }
.marquee__track { display: flex; align-items: center; flex: none; white-space: nowrap; animation: marquee 40s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.topbar { height: var(--topbar-h); background: var(--charcoal); color: var(--cream); display: flex; align-items: center; font-size: 13px; position: relative; z-index: 60; }
.topbar .marquee__track span { padding: 0 22px; opacity: .85; }
.topbar .marquee__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--flame); flex: none; }

/* ---------- Nav: floating charcoal-to-flame gradient pill ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h); padding: 10px var(--gutter) 0;
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__inner {
  height: calc(var(--nav-h) - 18px); max-width: 1400px; margin: 0 auto; padding: 0 8px 0 22px;
  display: flex; align-items: center; gap: 24px; border-radius: 999px; color: var(--cream);
  background: linear-gradient(100deg, #121212 0%, #191816 42%, #5E230E 74%, #FF5B26 100%);
  box-shadow: 0 18px 40px -18px rgba(18,18,18,.55), inset 0 0 0 1px rgba(243,238,229,.06);
  transition: box-shadow .4s var(--ease);
}
.nav.is-scrolled .nav__inner { box-shadow: 0 22px 50px -16px rgba(18,18,18,.6), inset 0 0 0 1px rgba(243,238,229,.08); }
.nav__logo img { width: 118px; height: auto; }
.nav__pill, .nav__links, .nav__actions { display: none; }

.burger { margin-left: auto; width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: grid; place-content: center; gap: 6px; position: relative; z-index: 70; }
.burger span { display: block; width: 18px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .4s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (min-width: 1100px) {
  .burger { display: none; }
  .nav__logo img { width: 136px; }
  .nav__inner { padding: 0 8px 0 28px; }
  .nav__pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(243,238,229,.08); color: var(--cream); font-size: 14px; font-weight: 500; transition: background .3s; }
  .nav__pill:hover { background: rgba(243,238,229,.16); }
  .nav__cta { min-height: 52px; }
  .nav__links { display: flex; align-items: center; gap: 28px; margin: 0 auto; font-size: 16px; font-weight: 500; color: var(--cream); }
  .nav__links > a, .nav__mega-btn { position: relative; padding: 8px 0; display: inline-flex; align-items: center; gap: 8px; }
  .nav__links > a::after, .nav__mega-btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--flame); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
  .nav__links > a:hover::after, .nav__mega-wrap:hover .nav__mega-btn::after { transform: scaleX(1); transform-origin: left; }
  .nav__actions { display: flex; align-items: center; gap: 28px; }
  .nav__links a, .nav__mega-btn, .nav__call, .nav__pill { white-space: nowrap; }
}
@media (min-width: 1100px) and (max-width: 1359px) {
  .nav__pill { display: none; }
  .nav__links { gap: 20px; font-size: 16px; }
  .nav__actions { gap: 18px; }
  .nav__call { font-size: 15px; }

}

.nav__call { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; color: var(--cream); }
.nav__call .dot { background: var(--cream); }
.nav__call .dot--pulse::after { background: var(--cream); }

/* Mega menu */
.mega a, .mega__cta strong { white-space: normal; }
.nav__mega-wrap { position: relative; }
.nav__mega-btn svg { transition: transform .4s var(--ease); }
.nav__mega-btn { color: var(--cream); }
.nav__mega-wrap:hover .nav__mega-btn svg, .nav__mega-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 18px); left: 50%; width: min(920px, 90vw);
  display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr; gap: 12px; padding: 14px;
  background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(18,18,18,.25);
  opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav__mega-wrap:hover .mega, .nav__mega-wrap.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega__col { padding: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.mega__col a { color: var(--ink-2); transition: color .2s, transform .3s var(--ease); }
.mega__col a:hover { color: var(--flame); transform: translateX(4px); }
.mega__col .mega__title { color: var(--charcoal); }
.mega__col .mega__title:hover { color: var(--flame); }
.mega__title { font: 600 18px/1 var(--f-display); margin: 0 0 8px; display: flex; gap: 10px; align-items: baseline; }
.mega__title span { font: 500 11px/1 var(--f-mono); color: var(--flame); }
.mega__cta { background: var(--charcoal); color: var(--cream); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.mega__cta-eyebrow { font-size: 13px; opacity: .7; }
.mega__cta strong { font: 600 19px/1.2 var(--f-display); max-width: 13ch; padding-right: 24px; }
.mega__cta .arrow { position: absolute; right: 22px; bottom: 18px; font-size: 22px; color: var(--flame); transition: transform .35s var(--ease); }
.mega__cta:hover .arrow { transform: translateX(5px); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 45; background: var(--cream);
  padding: calc(var(--nav-h) + 24px) var(--gutter) calc(24px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: space-between; overflow-y: auto;
  clip-path: circle(0% at calc(100% - 40px) 70px); visibility: hidden;
  transition: clip-path .7s var(--ease), visibility 0s .7s;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 40px) 70px); visibility: visible; transition: clip-path .8s var(--ease), visibility 0s; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav > a, .drawer__acc summary { font: 600 clamp(28px, 8vw, 40px)/1.1 var(--f-display); letter-spacing: -.03em; padding: 14px 0; border-bottom: 1px solid rgba(18,18,18,.1); display: flex; justify-content: space-between; align-items: center; list-style: none; cursor: pointer; }
.drawer__acc summary::-webkit-details-marker { display: none; }
.drawer__acc summary span { color: var(--flame); transition: transform .4s var(--ease); }
.drawer__acc[open] summary span { transform: rotate(45deg); }
.drawer__acc div { display: flex; flex-direction: column; padding: 8px 0 16px; }
.drawer__acc p a { padding: 0; font-size: inherit; }
.drawer__acc p { font: 500 11px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--flame); margin: 16px 0 6px; }
.drawer__acc a { padding: 8px 0; font-size: 18px; }
.drawer.is-open .drawer__nav > * { animation: drawerIn .7s var(--ease) both; }
.drawer.is-open .drawer__nav > *:nth-child(2) { animation-delay: .06s; }
.drawer.is-open .drawer__nav > *:nth-child(3) { animation-delay: .12s; }
.drawer.is-open .drawer__nav > *:nth-child(4) { animation-delay: .18s; }
.drawer.is-open .drawer__nav > *:nth-child(5) { animation-delay: .24s; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(24px); } }
.drawer__foot { display: flex; flex-direction: column; gap: 16px; align-items: center; padding-top: 32px; }
.drawer__mail { color: var(--ash); }
body.menu-open { overflow: hidden; }

/* ---------- Visual placeholders (CSS-built product imagery) ---------- */
.visual { position: relative; overflow: hidden; border-radius: var(--radius); }
.visual--flow { background: radial-gradient(120% 80% at 20% 0%, #FF7A4A 0%, var(--flame) 45%, #C93A0C 100%); }
.visual--dash { background: linear-gradient(160deg, #22211E 0%, var(--charcoal) 100%); color: var(--cream); }
.flow { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: stretch; padding: 12%; }
.flow__node { background: rgba(255,255,255,.95); color: var(--charcoal); border-radius: 14px; padding: 12px 14px; font: 600 14px/1.3 var(--f-body); display: flex; flex-direction: column; gap: 4px; box-shadow: 0 10px 30px -10px rgba(0,0,0,.35); }
.flow__node .mono { color: var(--flame); font-size: 10px; }
.flow__node--hot { background: var(--charcoal); color: var(--cream); }
.flow__node--done { background: var(--cream); }
.flow__node--done .mono { color: #2BB673; }
.flow__line { width: 2px; height: 22px; margin: 0 auto; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.9) 0 4px, transparent 4px 8px); background-size: 2px 16px; animation: flowdash 1s linear infinite; }
@keyframes flowdash { to { background-position: 0 16px; } }
.dash { position: absolute; inset: 0; padding: 12%; display: flex; flex-direction: column; }
.dash__head { display: flex; justify-content: space-between; align-items: center; opacity: .8; }
.dash__live { display: inline-flex; gap: 6px; align-items: center; font-size: 12px; }
.dash__live i { width: 7px; height: 7px; border-radius: 50%; background: #2BB673; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .2; } }
.dash__big { font: 700 clamp(48px, 6vw, 84px)/1 var(--f-display); letter-spacing: -.04em; margin: auto 0 4px; }
.dash__big small { font-size: .35em; color: var(--flame); letter-spacing: 0; }
.dash__label { margin: 0 0 24px; opacity: .7; }
.dash__bars { display: flex; gap: 8px; align-items: flex-end; height: 34%; }
.dash__bars i { flex: 1; height: var(--h); background: rgba(243,238,229,.18); border-radius: 6px 6px 2px 2px; transform-origin: bottom; }
.dash__bars i:last-child { background: var(--flame); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100svh - var(--topbar-h) - var(--nav-h));
  display: grid; grid-template-columns: 1fr; align-content: center; gap: 40px;
  padding: 40px 0 24px; overflow: hidden;
}
.hero__content { text-align: center; padding: 0 var(--gutter); position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.hero__title { font: 700 clamp(40px, 9.6vw, 104px)/1 var(--f-display); letter-spacing: -.045em; margin: 0 0 24px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .line > span { display: inline-block; }
.hero__sub { font-size: clamp(17px, 1.7vw, 21px); max-width: 44ch; margin: 0 auto 32px; color: var(--ink-2); }
.hero__ctas { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__ctas .btn { width: 100%; max-width: 340px; }

/* mobile: cards become a swipeable pair under the copy */
.hero__card { margin: 0; }
.hero__card figcaption { font-size: 14px; margin-top: 10px; color: var(--ink-2); }
.hero__card-media { aspect-ratio: 4 / 5; }
.hero { grid-template-areas: "content" "cards"; }
.hero__content { grid-area: content; }
.hero__card--left, .hero__card--right { grid-area: cards; width: calc(50% - var(--gutter) - 6px); }
.hero__card--left { justify-self: start; margin-left: var(--gutter); }
.hero__card--right { justify-self: end; margin-right: var(--gutter); }
.hero__card .flow { padding: 8%; }
.hero__card .flow__node { font-size: 11px; padding: 8px 10px; border-radius: 10px; }
.hero__card .flow__line { height: 12px; }

@media (min-width: 640px) { .hero__ctas { flex-direction: row; justify-content: center; gap: 32px; } .hero__ctas .btn { width: auto; } }
@media (min-width: 1100px) {
  .hero { display: block; min-height: calc(100vh - var(--topbar-h) - var(--nav-h)); padding: 0; }
  .hero__content { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(900px, 58vw); max-width: none; padding: 0; }
  .hero__title { font-size: clamp(48px, 4.3vw, 88px); }
  .hero__card { position: absolute; top: 50%; translate: 0 -50%; width: clamp(220px, 17vw, 310px); margin: 0; z-index: 1; }
  .hero__card--left { left: clamp(24px, 2.6vw, 56px); }
  .hero__card--right { right: clamp(24px, 2.6vw, 56px); text-align: right; }
  .hero__card-media { aspect-ratio: 3 / 4.4; border-radius: var(--radius-lg); box-shadow: 0 40px 80px -40px rgba(18,18,18,.45); }
  .hero__card .flow { padding: 12%; }
  .hero__card .flow__node { font-size: 14px; padding: 12px 14px; border-radius: 14px; }
  .hero__card .dash__big { font-size: clamp(44px, 3.8vw, 68px); }
  .hero__card .flow__line { height: 22px; }
}

/* Client logos */
.clients { padding: 28px 0 36px; border-top: 1px solid rgba(18,18,18,.08); border-bottom: 1px solid rgba(18,18,18,.08); }
.clients__label { text-align: center; color: var(--ash); margin: 0 0 22px; }
.marquee--clients { -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee--clients .marquee__track { animation-duration: 36s; }
.marquee__dup { display: contents; }
.client { height: clamp(30px, 3.2vw, 44px); width: auto; margin: 0 clamp(28px, 4vw, 64px); filter: grayscale(1) contrast(1.1); opacity: .55; mix-blend-mode: multiply; transition: filter .4s var(--ease), opacity .4s var(--ease); }
.client--ayma, .client--cdb { height: clamp(40px, 4.2vw, 58px); }
.client--v1 { height: clamp(34px, 3.6vw, 48px); filter: grayscale(1) contrast(1.8) brightness(.6); }
.client:hover { filter: none; opacity: 1; }
.clients:hover .marquee__track { animation-play-state: paused; }

/* ---------- Quote (word fill) ---------- */
.quote__text { font: 600 clamp(28px, 4.6vw, 60px)/1.15 var(--f-display); letter-spacing: -.03em; margin: 0; max-width: 22ch; }
.quote__text .w { color: rgba(18,18,18,.16); transition: color .2s; }
@media (prefers-reduced-motion: reduce) { .quote__text .w { color: inherit; } }

/* ---------- Quote terminal (macOS window, black + green) ---------- */
.quote__grid { position: relative; display: grid; gap: 40px; align-items: center; }
.quote__text { max-width: 16ch; }
@media (min-width: 1000px) { .quote__grid { grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 80px); } }
.term { --g: #3DFF7A; --g-dim: rgba(61,255,122,.55); width: 100%; border-radius: 12px; overflow: hidden; background: #0B0B0B; box-shadow: 0 24px 48px -24px rgba(18,18,18,.5), 0 0 0 1px rgba(18,18,18,.85); font: 500 14px/1.7 var(--f-mono); color: var(--g); transition: box-shadow .4s var(--ease); }
.term.is-focused { box-shadow: 0 24px 48px -24px rgba(18,18,18,.5), 0 0 0 2px rgba(61,255,122,.55); }
.term__bar { position: relative; display: flex; align-items: center; justify-content: center; height: 34px; background: linear-gradient(#2E2D2B, #242321); border-bottom: 1px solid #000; }
.term__dots { position: absolute; left: 12px; display: flex; gap: 8px; }
.term__dots i { width: 12px; height: 12px; border-radius: 50%; background: #FF5F57; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.25); }
.term__dots i:nth-child(2) { background: #FEBC2E; } .term__dots i:nth-child(3) { background: #28C840; }
.term__title { font: 500 12px/1 var(--f-body); color: rgba(243,238,229,.6); }
.term__hint { position: absolute; right: 12px; font: 500 9.5px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--g-dim); border: 1px solid rgba(61,255,122,.3); padding: 4px 6px; border-radius: 4px; }
@media (max-width: 480px) { .term__hint { display: none; } }
.term__body { height: 320px; overflow-y: auto; padding: 14px 16px 18px; cursor: text; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
.term-pointer { position: absolute; left: 0; top: 0; z-index: 6; pointer-events: none; opacity: 0; filter: drop-shadow(0 6px 10px rgba(18,18,18,.35)); will-change: transform; }
.term-ripple { position: absolute; left: 0; top: 0; z-index: 5; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; border: 2px solid #3DFF7A; pointer-events: none; opacity: 0; }
.term__row { margin: 0 0 2px; white-space: pre-wrap; word-break: break-word; }
.term__ps { color: #9CFFB9; opacity: .75; margin-right: 2px; }
.term__cmd { color: var(--g); }
.term__dim { color: var(--g-dim); }
.term__ok { color: #7CFF9E; }
.term__hi { color: #E9FFEF; font-weight: 600; }
.term__warn { color: #FFD166; }
.term__dir { color: #6FC3FF; }
.term__caret { display: inline-block; width: .6em; height: 1.1em; margin-left: 1px; vertical-align: -.2em; background: var(--g); animation: caret 1s steps(1) infinite; }
.term__key { display: inline-block; padding: 3px 9px; border-radius: 6px; border: 1px solid var(--g-dim); box-shadow: 0 3px 0 rgba(61,255,122,.35); color: var(--g); font-size: 11px; transition: transform .12s, box-shadow .12s; }
.term__key.is-pressed { transform: translateY(3px); box-shadow: 0 0 0 rgba(61,255,122,.35); background: rgba(61,255,122,.12); }
.term__line { display: flex; align-items: baseline; gap: 6px; }
.term__input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; padding: 0; font: inherit; color: var(--g); caret-color: var(--g); font-size: max(13px, 1em); }
@media (max-width: 999px) { .term__input { font-size: 16px; } } /* stops iOS zooming into the field */
.term:not(.is-ready) .term__line--input { display: none; }

/* ---------- Split (content + media) ---------- */
.split__grid { display: grid; gap: 48px; align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; }
.split__media .visual { aspect-ratio: 5 / 4; border-radius: 0; }
@media (min-width: 900px) {
  .split__grid { grid-template-columns: 1fr 1.05fr; gap: clamp(48px, 7vw, 120px); }
  .split--rev .split__grid { grid-template-columns: 1.05fr 1fr; }
}
@media (max-width: 899px) { .split--rev .split__media { order: 2; } }
.ticks { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.ticks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--flame) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.5 11.5l3 3 6-6.5' fill='none' stroke='%23121212' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }

.visual--stack { background: var(--charcoal); }
.stack { position: absolute; inset: 0; padding: 9%; display: flex; flex-direction: column; justify-content: center; }
.stack__row { position: relative; display: flex; align-items: center; gap: 14px; background: rgba(243,238,229,.07); color: var(--cream); border: 1px solid rgba(243,238,229,.1); border-radius: 14px; padding: 14px 16px; font-size: clamp(13px, 1.3vw, 16px); transition: opacity .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease); }
.stack__row .mono { color: var(--flame); }
.stack__txt { flex: 1; }
.chip { flex: none; margin-left: auto; font: 500 10px/1 var(--f-mono); text-transform: uppercase; letter-spacing: .08em; padding: 6px 8px; border-radius: 99px; background: rgba(43,182,115,.18); color: #6FE0A4; display: grid; }
.chip > span { grid-area: 1 / 1; transition: opacity .3s, transform .4s var(--ease); }
.stack__link { position: relative; width: 2px; height: 16px; margin-left: 27px; background: rgba(243,238,229,.14); overflow: hidden; }
.stack__link i { position: absolute; inset: 0; background: var(--flame); transform: scaleY(1); transform-origin: top; }
.stack__row--human { background: var(--flame); color: var(--charcoal); border-color: transparent; }
.stack__row--human .mono { color: var(--charcoal); }
.stack__row--human .chip { background: var(--charcoal); color: var(--cream); }
.chip__wait { opacity: 0; }
/* live state (JS on): rows start queued and light up in sequence */
[data-flow].is-live .stack__row { opacity: .45; }
[data-flow].is-live .stack__row--human { background: rgba(243,238,229,.07); color: var(--cream); border-color: rgba(243,238,229,.1); }
[data-flow].is-live .stack__row--human .mono { color: var(--flame); }
[data-flow].is-live .chip { background: rgba(243,238,229,.1); color: rgba(243,238,229,.6); }
[data-flow].is-live .chip__wait { opacity: 1; }
[data-flow].is-live .chip__done { opacity: 0; transform: translateY(6px); }
[data-flow].is-live .stack__link i { transform: scaleY(0); }
[data-flow].is-live .stack__row.is-on { opacity: 1; border-color: rgba(255,91,38,.7); background: rgba(255,91,38,.12); box-shadow: 0 0 0 4px rgba(255,91,38,.12); }
[data-flow].is-live .stack__row.is-on .chip { background: rgba(43,182,115,.18); color: #6FE0A4; }
[data-flow].is-live .stack__row.is-on .chip__wait { opacity: 0; transform: translateY(-6px); }
[data-flow].is-live .stack__row.is-on .chip__done { opacity: 1; transform: none; }
[data-flow].is-live .stack__row--human.is-on { background: var(--flame); color: var(--charcoal); border-color: transparent; box-shadow: 0 12px 30px -10px rgba(255,91,38,.6); }
[data-flow].is-live .stack__row--human.is-on .mono { color: var(--charcoal); }
[data-flow].is-live .stack__row--human.is-on .chip { background: var(--charcoal); color: var(--cream); }
[data-flow].is-live .stack__row.is-current { transform: translateX(6px); }

.visual--report { background: var(--sand); }
.report { position: absolute; inset: 8%; background: var(--white); border-radius: 18px; padding: clamp(18px, 3vw, 30px); display: flex; flex-direction: column; box-shadow: 0 30px 60px -30px rgba(18,18,18,.35); }
.report__head { display: flex; justify-content: space-between; color: var(--ash); margin-bottom: 8px; }
.report__live { display: inline-flex; align-items: center; gap: 6px; }
.report__live i { width: 6px; height: 6px; border-radius: 50%; background: #2BB673; animation: blink 1.4s infinite; }
.report__row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(18,18,18,.07); font-size: clamp(13px, 1.25vw, 16px); }
.report__row b { font-family: var(--f-display); font-variant-numeric: tabular-nums; }
.report__row--hot b { color: var(--flame); }
.report__chart { position: relative; flex: 1; min-height: 90px; margin-top: 18px; }
.report__bars { position: absolute; inset: 0; display: flex; align-items: flex-end; gap: 6%; padding: 0 1%; }
.report__bars i { flex: 1; height: var(--h); background: #F3EEE5; border-radius: 4px 4px 0 0; transform-origin: bottom; }
.report__spark { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.report__dot { position: absolute; right: -5px; top: calc(8 / 60 * 100% - 5px); width: 10px; height: 10px; border-radius: 50%; background: var(--flame); box-shadow: 0 0 0 5px rgba(255,91,38,.2); }
.report__pt { position: absolute; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--white); border: 2px solid var(--flame); }
.report__tip { position: absolute; right: -6px; top: calc(8 / 60 * 100% - 40px); font: 600 12px/1 var(--f-body); color: var(--white); background: var(--charcoal); padding: 6px 9px; border-radius: 8px; white-space: nowrap; transform-origin: 80% 100%; }
.report__tip::after { content: ""; position: absolute; right: 12px; bottom: -4px; width: 8px; height: 8px; background: var(--charcoal); transform: rotate(45deg); }
.report.is-live .report__line { animation: lineGlow 2.6s ease-in-out infinite; }
@keyframes lineGlow { 50% { filter: drop-shadow(0 0 5px rgba(255,91,38,.55)); } }
.report__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--flame); animation: pulse 1.8s var(--ease) infinite; }

/* ---------- Band / services ---------- */
.band { background: var(--sand); border-radius: var(--radius-lg); margin: 0 8px; }
@media (min-width: 768px) { .band { margin: 0 16px; } }
.band__head { margin-bottom: 48px; }
.services { display: grid; gap: 16px; }
@media (min-width: 900px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service { background: var(--cream); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(18,18,18,.3); }
.service__num { color: var(--flame); margin-bottom: 40px; }
.service h3 { font: 700 clamp(28px, 3vw, 40px)/1 var(--f-display); letter-spacing: -.03em; margin: 0 0 14px; }
.service p { margin: 0 0 24px; color: var(--ink-2); }
.service ul { list-style: none; padding: 0; margin: auto 0 0; border-top: 1px solid rgba(18,18,18,.1); }
.service li { padding: 12px 0; border-bottom: 1px solid rgba(18,18,18,.1); font-weight: 500; display: flex; justify-content: space-between; }
.service li::after { content: "→"; color: var(--flame); }
.service--hot { background: var(--charcoal); color: var(--cream); }
.service--hot p { color: rgba(243,238,229,.75); }
.service--hot ul, .service--hot li { border-color: rgba(243,238,229,.15); }

/* ---------- Automations in action (dark bento) ---------- */
.auto { background: var(--charcoal); color: var(--cream); border-radius: var(--radius-lg); margin: 0 8px; }
@media (min-width: 768px) { .auto { margin: 0 16px; } }
.auto__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 8px; background: rgba(255,91,38,.14); color: var(--flame); margin: 0 0 18px; font-size: 11px; }
.pill .dot { width: 6px; height: 6px; }
.auto__title { font: 600 clamp(28px, 4vw, 48px)/1.1 var(--f-display); letter-spacing: -.03em; margin: 0; max-width: 20ch; color: rgba(243,238,229,.72); }
.auto__title em { color: var(--cream); }
.auto__grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .auto__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .auto__grid { grid-template-columns: repeat(3, 1fr); } }
.acard { background: #1B1A18; border: 1px solid rgba(243,238,229,.06); border-radius: 22px; padding: 18px 18px 26px; text-align: center; transition: border-color .4s, transform .5s var(--ease); }
.acard:hover { border-color: rgba(255,91,38,.35); transform: translateY(-4px); }
.acard h3 { font: 600 18px/1.3 var(--f-display); letter-spacing: -.01em; margin: 18px 8px 8px; }
.acard > p { font-size: 14px; line-height: 1.6; color: rgba(243,238,229,.55); margin: 0 auto; max-width: 36ch; }
.acard__vis { position: relative; height: 210px; border-radius: 16px; overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, #26241F 0%, #151412 70%); display: grid; place-items: center; text-align: left; font-size: 12px; }
.acard__vis::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(243,238,229,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(243,238,229,.035) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.acard__vis > * { position: relative; }
.acard:not(.is-playing) .acard__vis *, .acard:not(.is-playing) .acard__vis *::before, .acard:not(.is-playing) .acard__vis *::after { animation-play-state: paused !important; }
.tlogo { display: inline-block; flex: none; width: 16px; height: 16px; background: var(--c, currentColor); -webkit-mask: var(--logo) center / contain no-repeat; mask: var(--logo) center / contain no-repeat; }

/* 1. flow */
.vf__row { display: flex; align-items: center; }
.vf__node { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 10px 8px; border-radius: 12px; background: #242320; border: 1px solid rgba(243,238,229,.08); color: rgba(243,238,229,.8); font-size: 11px; min-width: 70px; }
.vf__node .tlogo { width: 20px; height: 20px; }
.vf__node--hub { border-color: rgba(255,91,38,.5); box-shadow: 0 0 0 4px rgba(255,91,38,.08); animation: hubPulse 2.4s ease-in-out infinite; }
@keyframes hubPulse { 50% { box-shadow: 0 0 0 7px rgba(255,91,38,.14); } }
.vf__wire { position: relative; width: 34px; height: 2px; background: rgba(243,238,229,.12); overflow: visible; }
.vf__wire i { position: absolute; top: -2px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--flame); box-shadow: 0 0 8px var(--flame); animation: wireRun 2.4s linear infinite; }
.vf__wire + .vf__node + .vf__wire i { animation-delay: 1.2s; }
@keyframes wireRun { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 6px); opacity: 0; } }
.vf__branch { display: flex; flex-direction: column; align-items: center; margin-top: -2px; }
.vf__drop { position: relative; width: 2px; height: 22px; background: rgba(243,238,229,.12); }
.vf__drop i { position: absolute; left: -2px; top: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--flame); animation: dropRun 2.4s linear infinite .6s; }
@keyframes dropRun { 0% { top: 0; opacity: 0; } 20% { opacity: 1; } 100% { top: calc(100% - 6px); opacity: 0; } }
.vf__chips { display: flex; gap: 6px; }
.vf__chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 99px; background: rgba(43,182,115,.14); color: #6FE0A4; font-size: 11px; animation: chipPop 2.4s ease-in-out infinite 1.4s; }
.vf__chip + .vf__chip { animation-delay: 1.7s; }
.vf__chip .tlogo { width: 12px; height: 12px; }
@keyframes chipPop { 0%, 100% { transform: scale(1); } 10% { transform: scale(1.08); } }

/* 2. infra */
.vi__cluster { width: 88%; border: 1px dashed rgba(50,108,229,.55); border-radius: 14px; padding: 10px 12px 12px; background: rgba(50,108,229,.05); }
.vi__label, .vi__host { display: flex; align-items: center; gap: 7px; color: rgba(243,238,229,.6); font-size: 10px; }
.vi__pods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 10px 0; }
.vi__pod { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 4px 10px; border-radius: 10px; background: #242320; border: 1px solid rgba(243,238,229,.08); color: rgba(243,238,229,.8); font-size: 10.5px; }
.vi__pod .tlogo { width: 20px; height: 20px; }
.vi__pod b { position: absolute; top: 6px; right: 6px; width: 6px; height: 6px; border-radius: 50%; background: #2BB673; box-shadow: 0 0 6px #2BB673; animation: podBlink 3.2s infinite; }
.vi__pod:nth-child(2) b { animation-delay: .8s; } .vi__pod:nth-child(3) b { animation-delay: 1.6s; } .vi__pod:nth-child(4) b { animation: podRestart 6s infinite 2s; }
@keyframes podBlink { 50% { opacity: .35; } }
@keyframes podRestart { 0%, 40% { background: #2BB673; box-shadow: 0 0 6px #2BB673; } 45%, 60% { background: #F5A623; box-shadow: 0 0 6px #F5A623; } 65%, 100% { background: #2BB673; box-shadow: 0 0 6px #2BB673; } }
.vi__host .tlogo { width: 13px; height: 13px; }
.vi__cpu { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; }
.vi__cpu i { width: 44px; height: 4px; border-radius: 4px; background: rgba(243,238,229,.12); overflow: hidden; position: relative; }
.vi__cpu i::after { content: ""; position: absolute; inset: 0; background: var(--flame); transform-origin: left; animation: cpu 4s ease-in-out infinite; }
@keyframes cpu { 0%, 100% { transform: scaleX(.28); } 30% { transform: scaleX(.62); } 60% { transform: scaleX(.4); } }
.vi__label .tlogo { width: 13px; height: 13px; }

/* 3. dashboard */
.vd__card { width: 86%; background: #242320; border: 1px solid rgba(243,238,229,.08); border-radius: 14px; padding: 12px; }
.vd__top { display: flex; justify-content: space-between; color: rgba(243,238,229,.55); margin-bottom: 10px; }
.vd__live { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; }
.vd__live i { width: 6px; height: 6px; border-radius: 50%; background: #2BB673; animation: blink 1.4s infinite; }
.vd__body { display: flex; gap: 12px; align-items: center; }
.vd__ring { position: relative; width: 76px; height: 76px; flex: none; }
.vd__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.vd__ring circle { fill: none; stroke: rgba(243,238,229,.1); stroke-width: 4; }
.vd__ring .vd__arc { stroke: var(--flame); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; animation: ringFill 5s var(--ease) infinite; }
@keyframes ringFill { 0% { stroke-dashoffset: 100; } 35%, 85% { stroke-dashoffset: .3; } 100% { stroke-dashoffset: 100; } }
.vd__ring b { position: absolute; inset: 0; display: grid; place-items: center; font: 700 14px/1 var(--f-display); color: var(--cream); }
.vd__log { flex: 1; height: 96px; overflow: hidden; -webkit-mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent); mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent); }
.vd__rows { animation: logScroll 9s linear infinite; }
.vd__rows p { display: flex; align-items: center; gap: 7px; margin: 0; height: 24px; font-family: var(--f-mono); font-size: 10.5px; color: rgba(243,238,229,.78); }
.vd__rows span { margin-left: auto; color: rgba(243,238,229,.4); }
.vd__rows i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.vd__rows i.ok { background: #2BB673; } .vd__rows i.warn { background: #F5A623; }
@keyframes logScroll { to { transform: translateY(-144px); } }

/* 4. AI triage */
.vis-ai { align-content: center; gap: 8px; justify-items: center; }
.va__mail { display: flex; align-items: center; gap: 10px; width: 82%; padding: 10px 12px; border-radius: 12px; background: #242320; border: 1px solid rgba(243,238,229,.08); animation: mailIn 6s var(--ease) infinite; }
.va__mail b { display: block; font-weight: 600; font-size: 12px; color: var(--cream); }
.va__mail span { font-size: 10.5px; color: rgba(243,238,229,.45); }
.va__mail .tlogo { width: 18px; height: 18px; }
@keyframes mailIn { 0% { opacity: 0; transform: translateY(-10px); } 8%, 90% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.va__agent { display: flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 99px; background: rgba(255,91,38,.14); color: var(--flame); }
.va__agent .tlogo { width: 14px; height: 14px; }
.va__think { display: inline-flex; gap: 3px; }
.va__think i { width: 4px; height: 4px; border-radius: 50%; background: var(--flame); animation: think 1.2s infinite; }
.va__think i:nth-child(2) { animation-delay: .15s; } .va__think i:nth-child(3) { animation-delay: .3s; }
@keyframes think { 0%, 100% { opacity: .25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.va__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; width: 90%; }
.va__tags span { padding: 5px 9px; border-radius: 99px; font-size: 10.5px; background: rgba(243,238,229,.08); color: rgba(243,238,229,.8); opacity: 0; animation: tagIn 6s var(--ease) infinite; }
.va__tags span:nth-child(1) { animation-delay: 1.2s; } .va__tags span:nth-child(2) { animation-delay: 1.8s; }
.va__tags .va__done { background: rgba(43,182,115,.16); color: #6FE0A4; animation-delay: 2.4s; }
@keyframes tagIn { 0% { opacity: 0; transform: scale(.8); } 6%, 70% { opacity: 1; transform: none; } 80%, 100% { opacity: 0; } }

/* 5. terminal */
.vt__win { width: 88%; border-radius: 12px; overflow: hidden; background: #0E0E0D; border: 1px solid rgba(243,238,229,.1); }
.vt__bar { display: flex; align-items: center; gap: 5px; padding: 7px 10px; background: #1F1E1B; }
.vt__bar i { width: 8px; height: 8px; border-radius: 50%; background: #3A3833; }
.vt__bar i:first-child { background: var(--flame); }
.vt__bar span { margin-left: 8px; font-size: 9.5px; color: rgba(243,238,229,.45); }
.vt__body { padding: 10px 12px; font-size: 10.5px; line-height: 1.75; color: rgba(243,238,229,.75); text-transform: none; letter-spacing: 0; height: 132px; }
.vt__body p { margin: 0; white-space: nowrap; overflow: hidden; }
.vt__p { color: var(--flame); }
.vt__ok { color: #6FE0A4; }
.vt__l { width: 0; animation: typeLine 9s steps(40, end) infinite; }
.vt__l:nth-child(2) { animation-delay: 1.2s; } .vt__l:nth-child(3) { animation-delay: 2s; } .vt__l:nth-child(4) { animation-delay: 3.4s; } .vt__l:nth-child(5) { animation-delay: 4.2s; } .vt__l:nth-child(6) { animation-delay: 5.6s; }
@keyframes typeLine { 0% { width: 0; } 9%, 88% { width: 100%; } 100% { width: 100%; opacity: 0; } }

/* 6. self-healing */
.vis-heal { align-content: center; gap: 16px; }
.vh__track { display: flex; align-items: flex-start; gap: 6px; }
.vh__step { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 84px; color: rgba(243,238,229,.8); font-size: 11px; text-align: center; opacity: .3; animation: healStep 6s infinite; }
.vh__step small { font-size: 9.5px; color: rgba(243,238,229,.45); }
.vh__step i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 2px solid rgba(243,238,229,.2); }
.vh__s1 i { border-color: #E5484D; background: rgba(229,72,77,.15); } .vh__s1 i::after { content: "!"; color: #E5484D; font-weight: 700; }
.vh__s2 { animation-delay: 1.2s; } .vh__s2 i { border-color: #F5A623; border-top-color: transparent; animation: spin 1s linear infinite; }
.vh__s3 { animation-delay: 2.4s; } .vh__s3 i { border-color: #2BB673; background: rgba(43,182,115,.15); } .vh__s3 i::after { content: "✓"; color: #2BB673; font-size: 12px; }
@keyframes healStep { 0% { opacity: .3; } 8%, 80% { opacity: 1; } 95%, 100% { opacity: .3; } }
.vh__uptime { width: 86%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 10px; color: rgba(243,238,229,.55); }
.vh__uptime .mono { font-size: 9.5px; }
.vh__uptime b { grid-row: 1 / 3; grid-column: 2; font: 700 16px/1 var(--f-display); color: var(--cream); }
.vh__bars { display: flex; gap: 2px; }
.vh__bars i { flex: 1; height: 16px; border-radius: 2px; background: #2BB673; opacity: .85; }
.vh__bars i:nth-child(17) { background: #F5A623; }

/* ---------- AI agents bento (Automate page) ---------- */
.auto--inline { margin: 8px 0 0; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); scroll-margin-top: 110px; }
.svc + .auto--inline { margin-top: 0; }
.auto--inline + .svc { border-top: 0; }
.acard h4 { font: 600 18px/1.3 var(--f-display); letter-spacing: -.01em; margin: 18px 8px 8px; }
/* documents */
.vis-doc { grid-template-columns: auto auto auto; gap: 10px; align-content: center; justify-content: center; }
.vx__doc { position: relative; width: 112px; padding: 10px; border-radius: 8px; background: #F3EEE5; color: #121212; overflow: hidden; font-size: 9.5px; }
.vx__doc p { display: flex; justify-content: space-between; gap: 6px; margin: 0 0 4px; }
.vx__doc span { color: #8A847B; }
.vx__dhead { margin-bottom: 8px !important; font-size: 8.5px; color: #FF5B26 !important; }
.vx__scan { position: absolute; left: 0; right: 0; top: 0; height: 18px; background: linear-gradient(rgba(255,91,38,0), rgba(255,91,38,.35), rgba(255,91,38,0)); animation: scan 3s ease-in-out infinite; }
@keyframes scan { 0% { top: -18px; } 60%, 100% { top: 100%; } }
.vx__arrow { position: relative; width: 26px; height: 2px; background: rgba(243,238,229,.15); }
.vx__arrow i { position: absolute; top: -2px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--flame); animation: wireRun 1.5s linear infinite; }
.vx__fields { display: grid; gap: 5px; font-family: var(--f-mono); font-size: 9.5px; }
.vx__doc b { font-weight: 600; white-space: nowrap; }
@media (max-width: 480px) { .vis-doc { gap: 6px; } .vx__doc { width: 100px; font-size: 8.5px; } .vx__arrow { width: 14px; } .vx__fields { font-size: 8.5px; } }
.vx__fields p { margin: 0; display: flex; gap: 6px; padding: 5px 7px; border-radius: 6px; background: #242320; border: 1px solid rgba(243,238,229,.08); color: rgba(243,238,229,.85); opacity: 0; animation: fieldIn 3s ease-out infinite; }
.vx__fields span { color: var(--flame); }
.vx__fields p:nth-child(2) { animation-delay: .3s; } .vx__fields p:nth-child(3) { animation-delay: .6s; }
.vx__fields .vx__ok { background: rgba(43,182,115,.14); color: #6FE0A4; border-color: transparent; animation-delay: 1s; }
@keyframes fieldIn { 0%, 25% { opacity: 0; transform: translateX(-8px); } 35%, 90% { opacity: 1; transform: none; } 100% { opacity: 0; } }
/* chat */
.vc__thread { width: 86%; display: grid; gap: 6px; }
.vc__msg { max-width: 82%; margin: 0; padding: 7px 10px; border-radius: 12px; font-size: 11px; line-height: 1.4; opacity: 0; animation: msgIn 8s var(--ease) infinite; }
.vc__in { justify-self: end; background: #F3EEE5; color: #121212; border-bottom-right-radius: 4px; }
.vc__out { justify-self: start; display: flex; gap: 6px; align-items: flex-start; background: #242320; color: rgba(243,238,229,.9); border: 1px solid rgba(243,238,229,.08); border-bottom-left-radius: 4px; }
.vc__out .tlogo { width: 12px; height: 12px; margin-top: 1px; }
.vc__done { background: rgba(43,182,115,.14); color: #6FE0A4; border-color: transparent; }
.vc__msg:nth-child(2) { animation-delay: 1s; } .vc__msg:nth-child(3) { animation-delay: 2.2s; } .vc__msg:nth-child(4) { animation-delay: 3.2s; }
@keyframes msgIn { 0% { opacity: 0; transform: translateY(8px); } 5%, 85% { opacity: 1; transform: none; } 95%, 100% { opacity: 0; } }
/* knowledge base */
.vis-kb { align-content: center; justify-items: center; gap: 10px; }
.vk__q { width: 84%; padding: 9px 12px; border-radius: 12px; background: #F3EEE5; color: #121212; font-size: 11.5px; font-weight: 500; }
.vk__src { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: rgba(243,238,229,.75); }
.vk__src span { padding: 4px 8px; border-radius: 99px; background: rgba(243,238,229,.08); opacity: 0; animation: tagIn 6s var(--ease) infinite .8s; }
.vk__src span:last-child { animation-delay: 1.2s; }
.vk__src .tlogo { width: 13px; height: 13px; }
.vk__a { width: 84%; display: grid; gap: 6px; padding: 10px 12px; border-radius: 12px; background: #242320; border: 1px solid rgba(255,91,38,.35); }
.vk__a i { height: 6px; border-radius: 6px; background: rgba(243,238,229,.25); transform-origin: left; animation: lineGrow 6s var(--ease) infinite; }
.vk__a i:nth-child(1) { animation-delay: 1.6s; } .vk__a i:nth-child(2) { animation-delay: 1.9s; width: 88%; } .vk__a i:nth-child(3) { animation-delay: 2.2s; width: 60%; }
@keyframes lineGrow { 0%, 20% { transform: scaleX(0); } 35%, 88% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
/* leads */
.vis-lead { align-content: center; justify-items: center; gap: 12px; }
.vl__card { width: 84%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 12px; background: #242320; border: 1px solid rgba(243,238,229,.08); }
.vl__who b { display: block; font-size: 12px; color: var(--cream); }
.vl__who span { font-size: 10.5px; color: rgba(243,238,229,.5); }
.vl__score { position: relative; width: 50px; height: 50px; flex: none; }
.vl__score svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.vl__score circle { fill: none; stroke: rgba(243,238,229,.1); stroke-width: 4; }
.vl__score .vl__arc { stroke: var(--flame); stroke-linecap: round; stroke-dasharray: 100; animation: score 6s var(--ease) infinite; }
@keyframes score { 0%, 10% { stroke-dashoffset: 100; } 40%, 88% { stroke-dashoffset: 14; } 100% { stroke-dashoffset: 100; } }
.vl__score b { position: absolute; inset: 0; display: grid; place-items: center; font: 700 14px/1 var(--f-display); color: var(--cream); }
.vl__crm { width: 84%; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.vl__crm .tlogo { width: 16px; height: 16px; }
.vl__f { padding: 5px 9px; border-radius: 99px; font-size: 10.5px; background: rgba(243,238,229,.08); color: rgba(243,238,229,.85); opacity: 0; animation: tagIn 6s var(--ease) infinite 1.8s; }
.vl__f:nth-of-type(2) { animation-delay: 2.2s; }
.vl__ok { background: rgba(43,182,115,.16); color: #6FE0A4; animation-delay: 2.6s; }
/* guardrails */
.vis-guard { align-content: center; justify-items: center; gap: 14px; }
.vg__meter { width: 84%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; color: rgba(243,238,229,.55); }
.vg__meter .mono { font-size: 9.5px; }
.vg__bar { position: relative; height: 8px; border-radius: 8px; background: rgba(243,238,229,.1); }
.vg__fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 8px; background: #2BB673; animation: conf 7s var(--ease) infinite; }
@keyframes conf { 0%, 5% { width: 0; background: #2BB673; } 20%, 45% { width: 94%; background: #2BB673; } 60%, 88% { width: 62%; background: #F5A623; } 100% { width: 0; } }
.vg__line { position: absolute; left: 90%; top: -5px; bottom: -5px; width: 2px; background: var(--cream); opacity: .6; }
.vg__val { position: relative; width: 38px; font: 700 14px/1 var(--f-display); color: var(--cream); }
.vg__val::before, .vg__val::after { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.vg__val::before { content: "94%"; animation: valA 7s infinite; }
.vg__val::after { content: "62%"; animation: valB 7s infinite; }
@keyframes valA { 0%, 15% { opacity: 0; } 20%, 45% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes valB { 0%, 55% { opacity: 0; } 60%, 88% { opacity: 1; } 95%, 100% { opacity: 0; } }
.vg__route { width: 84%; display: grid; gap: 6px; font-size: 11px; }
.vg__route span { display: flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 10px; border: 1px solid rgba(243,238,229,.08); background: #242320; color: rgba(243,238,229,.55); }
.vg__route .tlogo { width: 12px; height: 12px; }
.vg__auto { animation: hlA 7s infinite; }
.vg__human { animation: hlB 7s infinite; }
@keyframes hlA { 20%, 45% { border-color: rgba(43,182,115,.6); color: #6FE0A4; background: rgba(43,182,115,.1); } }
@keyframes hlB { 60%, 88% { border-color: rgba(245,166,35,.6); color: #FFD166; background: rgba(245,166,35,.1); } }

/* ---------- Retainers ---------- */
.retain__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.retain__head .lead { margin-left: auto; margin-right: auto; }
.retain__grid { display: grid; gap: 20px; align-items: end; }
@media (min-width: 960px) { .retain__grid { grid-template-columns: repeat(3, 1fr); } }
.rcard { background: var(--white); border: 1px solid rgba(18,18,18,.08); border-radius: 22px; padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.rcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(18,18,18,.35); }
.rcard--pop { border: 2px solid var(--charcoal); padding-top: calc(clamp(24px, 3vw, 32px) + 30px); }
@media (min-width: 960px) { .rcard--pop { transform: translateY(-14px); } .rcard--pop:hover { transform: translateY(-20px); } }
.rcard__flag { position: absolute; top: 0; left: 0; right: 0; margin: 0; padding: 9px; text-align: center; background: var(--charcoal); color: var(--cream); border-radius: 18px 18px 0 0; }
.rcard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.rcard__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--charcoal); display: grid; place-items: center; }
.rcard--pop .rcard__icon { background: var(--flame); }
.rcard__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--cream); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rcard--pop .rcard__icon svg { stroke: var(--charcoal); }
.rcard__tag { font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 99px; background: var(--cream); }
.rcard__title { font: 700 clamp(26px, 2.6vw, 34px)/1.05 var(--f-display); letter-spacing: -.03em; margin: 0 0 14px; }
.rcard__text { font-size: 15px; color: var(--ink-2); margin: 0 0 18px; }
.rcard__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 8px; font-size: 14px; font-weight: 500; }
.rcard__list li { display: flex; gap: 10px; align-items: center; }
.rcard__list li::before { content: "✓"; color: var(--flame-2); font-weight: 700; }
.rcard .btn { box-shadow: 0 14px 24px -14px rgba(18,18,18,.6); }
.rcard__trust { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(18,18,18,.08); font-size: 12px; color: var(--ash); }
.rcard__logo { height: 22px; width: auto; filter: grayscale(1) contrast(1.2); opacity: .75; mix-blend-mode: multiply; }
.rcard__logo--tall { height: 30px; }
.rcard__logo--v1 { height: 26px; filter: grayscale(1) contrast(1.8) brightness(.6); }

/* ---------- Centre ---------- */
.centre { text-align: center; }
.centre .lead { margin-left: auto; margin-right: auto; }

/* ---------- Sliders ---------- */
.work__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.work__head .h2 { margin: 0; }
.slider-ctrl { display: none; gap: 12px; }
@media (min-width: 768px) { .slider-ctrl { display: flex; } }
.slider-btn { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--charcoal); font-size: 20px; transition: background .3s, color .3s; }
.slider-btn:hover { background: var(--charcoal); color: var(--cream); }
.slider {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 0 var(--gutter) 8px; scroll-padding: 0 var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.slider::-webkit-scrollbar { display: none; }
.slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider.is-dragging * { pointer-events: none; }
@media (min-width: 1440px) { .slider { padding-left: calc((100vw - var(--max)) / 2 + var(--gutter)); scroll-padding-left: calc((100vw - var(--max)) / 2 + var(--gutter)); } }
.case { flex: none; width: min(82vw, 440px); scroll-snap-align: start; }
.case__media { aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--cream); transition: transform .6s var(--ease); }
.case:hover .case__media { transform: scale(.98); }
.case__media .mono { position: absolute; top: 28px; left: 28px; padding: 8px 12px; border-radius: 99px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); }
.case__media strong { font: 700 clamp(44px, 5vw, 68px)/1 var(--f-display); letter-spacing: -.04em; }
.case__media small { font-size: 16px; opacity: .8; margin-top: 6px; }
.case h3 { font: 600 clamp(18px, 1.6vw, 22px)/1.3 var(--f-display); letter-spacing: -.02em; margin: 18px 0 0; max-width: 30ch; }
.visual--c1 { background: linear-gradient(150deg, #FF7A4A, var(--flame) 50%, #C93A0C); }
.visual--c2 { background: linear-gradient(150deg, #2A2926, var(--charcoal)); }
.visual--c3 { background: linear-gradient(150deg, #A8987F, #6E6254); }
.visual--c4 { background: linear-gradient(150deg, #FF9A5C, #E94A17); }
.visual--c5 { background: linear-gradient(150deg, #3A3733, #1B1A18); }
.visual--c2::after, .visual--c5::after { content: ""; position: absolute; right: -20%; top: -20%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(var(--flame), transparent 70%); opacity: .45; }
.slider-progress { height: 3px; background: rgba(18,18,18,.1); border-radius: 3px; margin-top: 32px; overflow: hidden; }
.slider-progress span { display: block; height: 100%; width: 100%; background: var(--flame); transform-origin: left; transform: scaleX(.2); }

.team__head { margin-bottom: 40px; }
.team__title { max-width: 18ch; margin: 0; }
.team__title span { color: var(--ash); }
.team__grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .team__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.member { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.member__photo { aspect-ratio: 4 / 5; overflow: hidden; background: #0a0a0a; }
.member__photo img { object-position: center top; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); }
.member__body { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; }
.member h3 { font: 600 clamp(20px, 2vw, 26px)/1.25 var(--f-display); letter-spacing: -.02em; margin: 0; }
.member h3 span { color: var(--flame); margin: 0 6px; }
.member p { margin: 0; color: var(--ink-2); }
.member__tags { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.member__tags li { font: 500 12px/1 var(--f-mono); letter-spacing: .04em; padding: 9px 12px; border-radius: 99px; background: var(--cream); }

/* ---------- Stats ---------- */
.stats { padding-top: 0; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat { padding: 32px 16px 32px 0; border-top: 1px solid rgba(18,18,18,.12); }
.stat:nth-child(odd) { border-right: 1px solid rgba(18,18,18,.12); }
.stat:nth-child(even) { padding-left: 16px; }
.stat:nth-last-child(-n+2) { border-bottom: 1px solid rgba(18,18,18,.12); }
@media (min-width: 1000px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat, .stat:nth-child(even) { padding: 48px 32px; border-bottom: 1px solid rgba(18,18,18,.12); border-right: 1px solid rgba(18,18,18,.12); }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; }
}
.stat__title { font: 500 11px/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ash); margin: 0 0 16px; }
.stat__value { font: 700 clamp(36px, 5vw, 72px)/1 var(--f-display); letter-spacing: -.045em; margin: 0 0 12px; color: var(--charcoal); }
.stat__text { margin: 0; font-size: 15px; color: var(--ink-2); max-width: 26ch; }

/* ---------- Big scrolling text ---------- */
.bigtext { padding: clamp(40px, 8vw, 100px) 0; overflow: hidden; }
.bigtext__row { white-space: nowrap; font: 700 clamp(64px, 13vw, 200px)/1 var(--f-display); letter-spacing: -.05em; }
.bigtext__row span { display: inline-block; will-change: transform; }
.bigtext__row--outline { color: var(--sand); }

/* ---------- Process ---------- */
.process { background: var(--charcoal); color: var(--cream); }
.process__pin { padding: clamp(72px, 12vw, 140px) 0; }
.process__intro { padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto 40px; }
.process .eyebrow { color: var(--flame); }
.process .h2 { max-width: 14ch; }
.process__progress { display: none; }
.process__track { display: grid; gap: 16px; padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto; }
.step { background: rgba(243,238,229,.05); border: 1px solid rgba(243,238,229,.12); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; min-height: 280px; }
.step__num { font: 700 clamp(56px, 7vw, 110px)/1 var(--f-display); letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.5px var(--flame); margin-bottom: 28px; }
.step h3 { font: 700 clamp(26px, 2.6vw, 38px)/1 var(--f-display); letter-spacing: -.03em; margin: 0 0 12px; }
.step p { margin: 0 0 24px; color: rgba(243,238,229,.7); max-width: 34ch; }
.step__tag { margin-top: auto; align-self: flex-start; padding: 8px 12px; border-radius: 99px; background: rgba(243,238,229,.08); }
.step { transition: background .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease), opacity .6s var(--ease), transform .6s var(--ease); }
.step p, .step__num, .step__tag { transition: color .6s var(--ease), -webkit-text-stroke-color .6s var(--ease), background .6s var(--ease); }
.process.is-live .step { opacity: .42; transform: scale(.97); }
.process.is-live .step.is-done { opacity: .7; transform: scale(.97); }
.process .step.is-active { opacity: 1; transform: none; background: var(--flame); color: var(--charcoal); border-color: transparent; }
.step.is-active .step__num { -webkit-text-stroke-color: var(--charcoal); }
.step.is-active p { color: rgba(18,18,18,.8); }
.step.is-active .step__tag { background: rgba(18,18,18,.12); }
.step.is-done .step__tag::after { content: " ✓"; color: var(--flame); }

@media (min-width: 700px) and (max-width: 1099px) { .process__track { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) {
  .process__pin { height: 100vh; padding: 0; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
  .process__intro { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; }
  .process__intro .h2 { margin: 0; }
  .process__progress { display: block; width: 240px; height: 3px; background: rgba(243,238,229,.15); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
  .process__progress span { display: block; height: 100%; background: var(--flame); transform-origin: left; transform: scaleX(0); }
  .process__track { display: flex; gap: 24px; max-width: none; margin: 0; padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); width: max-content; }
  .step { width: clamp(360px, 30vw, 460px); min-height: 440px; }
}

/* ---------- CTA ---------- */
.cta { padding: clamp(16px, 2vw, 24px) 8px; }
@media (min-width: 768px) { .cta { padding: 24px 16px; } }
.cta__panel { position: relative; }
.ghost-cursor { position: absolute; left: 0; top: 0; z-index: 5; pointer-events: none; opacity: 0; will-change: transform; filter: drop-shadow(0 6px 10px rgba(18,18,18,.35)); }
.ghost-ripple { position: absolute; left: 0; top: 0; z-index: 4; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; border: 2px solid var(--flame); pointer-events: none; opacity: 0; }
.form input.is-demo-focus { border-color: var(--flame); background: rgba(243,238,229,.1); box-shadow: 0 0 0 4px rgba(255,91,38,.18); }
.cta__panel { background: var(--flame); color: var(--charcoal); border-radius: var(--radius-lg); padding: clamp(56px, 9vw, 120px) 0; will-change: clip-path; }
.cta__panel .eyebrow--light { color: var(--charcoal); opacity: .7; }
.cta__grid { display: grid; gap: 48px; }
@media (min-width: 1000px) { .cta__grid { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 80px; } }
.cta__title { font: 700 clamp(36px, 5.6vw, 76px)/1.02 var(--f-display); letter-spacing: -.04em; margin: 0 0 24px; }
.cta__title em { color: var(--cream); }
[data-type] { display: grid; }
[data-type] > * { grid-area: 1 / 1; }
.type__hl { color: var(--flame); background: linear-gradient(rgba(255,91,38,.18), rgba(255,91,38,.18)) no-repeat 0 88% / 0% 34%; padding: 0 .06em; border-radius: 4px; transition: background-size .7s var(--ease); }
.type__hl.is-lit { background-size: 100% 34%; }
.quote .type__cursor { background: var(--charcoal); }
.type__ghost { visibility: hidden; }
.type__cursor { display: inline-block; width: .07em; height: .92em; margin-left: .05em; vertical-align: -.1em; background: var(--charcoal); border-radius: 2px; animation: caret 1s steps(1) infinite; }
.type.is-typing .type__cursor { animation: none; }
.type__b + .type__cursor, .type.on-b .type__cursor { background: var(--cream); }
@keyframes caret { 50% { opacity: 0; } }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.cta__sub { font-size: clamp(17px, 1.5vw, 19px); max-width: 44ch; margin: 0 0 24px; }
.cta__mail { font: 600 clamp(20px, 2vw, 26px)/1 var(--f-display); border-bottom: 2px solid currentColor; padding-bottom: 4px; }
.form { background: var(--charcoal); color: var(--cream); border-radius: var(--radius); padding: clamp(20px, 3vw, 36px); display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label { display: grid; gap: 8px; font-size: 14px; color: rgba(243,238,229,.7); }
.form input, .form textarea {
  width: 100%; font: 400 16px/1.4 var(--f-body); color: var(--cream); background: rgba(243,238,229,.06);
  border: 1px solid rgba(243,238,229,.15); border-radius: 12px; padding: 14px 16px; min-height: 52px; resize: vertical;
  transition: border-color .3s, background .3s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--flame); background: rgba(243,238,229,.1); }
.form .is-invalid { border-color: #FF8A65; }
.form__ok { margin: 0; color: #6FE0A4; font-weight: 500; }
.form__err { margin: 0; color: #FF8A65; font-weight: 500; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form button:disabled { opacity: .7; cursor: default; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: var(--cream); margin-top: clamp(16px, 2vw, 24px); padding: clamp(64px, 8vw, 110px) 0 calc(96px + env(safe-area-inset-bottom)); }
@media (min-width: 1100px) { .footer { padding-bottom: 32px; } }
.footer__grid { display: grid; gap: 40px 24px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__brand img { width: 170px; height: auto; }
.footer__brand p { margin: 0; max-width: 36ch; color: rgba(243,238,229,.7); }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__wa { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); min-height: 44px; }
.footer__wa svg { color: #25D366; }
.footer__wa strong { font-weight: 600; }
.footer__wa:hover strong { color: var(--flame); }
.footer__mail { color: rgba(243,238,229,.75); border-bottom: 1px solid rgba(243,238,229,.25); }
.footer__mail:hover { color: var(--cream); }
.footer__col h3 a { color: var(--flame); padding: 0; }
.footer__col h3 a:hover { color: var(--cream); }
.footer__legal { max-width: 80ch; line-height: 1.6; }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); } .footer__brand { grid-column: auto; } }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h3 { font: 500 11px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--flame); margin: 0 0 8px; }
.footer__col a { color: rgba(243,238,229,.8); transition: color .2s; padding: 2px 0; }
.footer__col a:hover { color: var(--cream); }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(243,238,229,.12); font-size: 14px; color: rgba(243,238,229,.55); }
.footer__bar p { margin: 0; }
.footer__bar nav { display: flex; gap: 24px; }

/* ---------- Floating bubble ---------- */
.bubble { position: fixed; right: 24px; bottom: 24px; width: 112px; height: 112px; z-index: 40; display: none; place-items: center; transition: opacity .4s var(--ease), transform .5s var(--ease); }
.bubble.is-hidden { opacity: 0; transform: scale(.6); pointer-events: none; }
@media (min-width: 1100px) { .bubble { display: grid; } }
.bubble__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.bubble__ring text { font: 500 10.5px var(--f-mono); letter-spacing: .12em; text-transform: uppercase; fill: var(--charcoal); }
.bubble__core { width: 62px; height: 62px; border-radius: 50%; background: var(--cream); box-shadow: 0 10px 30px -8px rgba(18,18,18,.35), inset 0 0 0 1.5px var(--charcoal); display: grid; place-items: center; transition: transform .5s var(--ease), background .3s; }
.bubble:hover .bubble__core { transform: scale(1.1); background: var(--flame); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Sticky mobile CTA ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: linear-gradient(to top, var(--cream) 60%, rgba(243,238,229,0)); transform: translateY(110%); transition: transform .5s var(--ease); }
.mbar.is-visible { transform: none; }
@media (min-width: 1100px) { .mbar { display: none; } }

/* ---------- Subpages (services, legal, 404) ---------- */
.page-hero { padding: clamp(40px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); }
.page-hero--404 { min-height: 60vh; display: flex; align-items: center; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--ash); margin-bottom: 36px; }
.crumbs a:hover { color: var(--flame); }
.page-hero__title { font: 700 clamp(40px, 7.4vw, 96px)/1 var(--f-display); letter-spacing: -.045em; margin: 0 0 24px; max-width: 16ch; }
.page-hero--legal .page-hero__title { font-size: clamp(36px, 6vw, 72px); }
.page-hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; }
.page-hero__jump { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.page-hero__jump a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 18px; border-radius: 99px; background: var(--white); border: 1px solid rgba(18,18,18,.08); font-weight: 500; transition: background .3s, color .3s; }
.page-hero__jump a:hover { background: var(--charcoal); color: var(--cream); }
.svc-list { padding-top: 0; }
.svc { display: grid; gap: 16px; padding: clamp(32px, 5vw, 56px) 0; border-top: 1px solid rgba(18,18,18,.12); scroll-margin-top: 110px; }
.svc:last-child { border-bottom: 1px solid rgba(18,18,18,.12); }
@media (min-width: 900px) { .svc { grid-template-columns: 160px 1fr; } }
.svc__num { color: var(--flame); padding-top: 12px; }
.svc__title { font: 700 clamp(28px, 3.6vw, 48px)/1.05 var(--f-display); letter-spacing: -.035em; margin: 0 0 16px; }
.svc__body > p { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-2); max-width: 60ch; margin: 0 0 24px; }
.svc .ticks { margin: 0; }
.faq__item { border-top: 1px solid rgba(18,18,18,.12); }
.faq__item:last-child { border-bottom: 1px solid rgba(18,18,18,.12); }
.faq__item summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; min-height: 64px; padding: 16px 0; font: 600 clamp(18px, 1.8vw, 22px)/1.3 var(--f-display); letter-spacing: -.02em; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary span { color: var(--flame); font-size: 26px; transition: transform .4s var(--ease); }
.faq__item[open] summary span { transform: rotate(45deg); }
.faq__item p { margin: 0 0 24px; color: var(--ink-2); max-width: 64ch; }
.svc-next__grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .svc-next__grid { grid-template-columns: 1fr 1fr; } }
.svc-next__grid .service { background: var(--white); }
.svc-next__grid .link-arrow { margin-top: auto; color: var(--flame-2); }
.page-cta__inner { background: var(--charcoal); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 96px) clamp(24px, 6vw, 80px); }
.page-cta__inner .h2 { max-width: 18ch; }
.page-cta__inner .link-arrow { color: var(--cream); }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; margin-top: 32px; }
.legal { padding-top: 0; }
.legal h2 { font: 700 clamp(22px, 2.4vw, 30px)/1.2 var(--f-display); letter-spacing: -.02em; margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-2); font-size: 17px; margin: 0 0 12px; }

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}
