/* ═══════════════════════════════════════════════════════════════
   Ocean™ Studio — engineering-studio landing page
   Design system:
     · pure #000 / #fff / #f5f5f5 / #141414 canvas rotation
     · Inter 500–600, aggressive negative tracking at display sizes
     · parenthetical labels, dot-bullet nav links, 99px pills
     · circle-dome section transitions, sticky stacks, flip cards
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black: #000;
  --ink: #141414;
  --white: #fff;
  --paper: #f5f5f5;
  --grey: #333;
  --grey2: #444;
  --grey3: #222;
  --b12: rgba(0, 0, 0, .12);
  --b50: rgba(0, 0, 0, .5);
  --b65: rgba(0, 0, 0, .65);
  --w14: rgba(255, 255, 255, .14);
  --w24: rgba(255, 255, 255, .24);
  --w30: rgba(255, 255, 255, .3);
  --w60: rgba(255, 255, 255, .6);
  --w88: rgba(255, 255, 255, .88);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --pad: 30px;
  --maxw: 1400px;
  --r: 10px;

  --shadow-pill:
    -1.1px 1.2px .1px rgba(68,68,68,.01), -2.2px 2.4px .3px rgba(68,68,68,.02),
    -4.6px 5.1px .7px rgba(68,68,68,.03), -7.6px 8.4px 1.3px rgba(68,68,68,.03),
    -14.7px 16.2px 3.2px rgba(68,68,68,.03), -23px 25.4px 6px rgba(68,68,68,.04),
    -37.8px 41.8px 11.3px rgba(68,68,68,.04);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  overflow-x: clip;
}
body.lock { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; }
.container.narrow { max-width: 950px; }

/* ── type scale ─────────────────────────────────────────────── */
.lbl {
  font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3;
  display: inline-block;
}
.lbl.light { color: var(--white); opacity: .6; }

/* ── char / word split primitives ───────────────────────────── */
.wd { display: inline-block; white-space: nowrap; }
.ch-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.ch-in {
  display: inline-block; will-change: transform, opacity;
  transform: translateY(105%); opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}
.in .ch-in, .is-on .ch-in { transform: none; opacity: 1; }

.w { opacity: .22; transition: opacity .4s ease; }
.w.on { opacity: 1; }

/* ═══ crosshair cursor ══════════════════════════════════════ */
.cursor { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0; transition: opacity .3s; }
.cursor.on { opacity: 1; }
.cursor .cx, .cursor .cy { position: absolute; background: var(--b12); transition: background .3s; }
.cursor .cx { left: 0; right: 0; height: 1px; transform: translateY(var(--y, 50vh)); }
.cursor .cy { top: 0; bottom: 0; width: 1px; transform: translateX(var(--x, 50vw)); }
.cdot {
  position: absolute; width: 9px; height: 9px; border-radius: 99px; background: var(--black);
  transform: translate(calc(var(--x, 50vw) - 4.5px), calc(var(--y, 50vh) - 4.5px));
  transition: width .25s var(--ease), height .25s var(--ease), background .3s;
}
.clabel {
  position: absolute; padding: 6px 12px; border-radius: 99px; background: var(--white); color: var(--black);
  font-size: 13px; font-weight: 600; letter-spacing: -.4px; white-space: nowrap;
  transform: translate(calc(var(--x, 50vw) - 20px), calc(var(--y, 50vh) - 10px)) scale(.6);
  opacity: 0; transition: opacity .25s, transform .25s var(--ease);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.cursor.label .cdot { width: 0; height: 0; }
.cursor.label .clabel { opacity: 1; transform: translate(calc(var(--x,50vw) - 20px), calc(var(--y,50vh) - 10px)) scale(1); }
.cursor.dark .cx, .cursor.dark .cy { background: rgba(255,255,255,.14); }
.cursor.dark .cdot { background: var(--white); }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ═══ preloader ═════════════════════════════════════════════ */
.pre {
  position: fixed; inset: 0; z-index: 500; background: var(--black);
  display: grid; place-items: center;
  transition: transform 1s var(--ease), filter .8s ease, opacity .6s ease .4s;
}
.pre.done { transform: translateY(-101%); filter: blur(14px); opacity: 0; pointer-events: none; }
.pre-logo {
  color: var(--white); font-size: 27px; font-weight: 600; letter-spacing: -1px; line-height: 1.3;
}

/* ═══ top nav ═══════════════════════════════════════════════ */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 20px var(--pad);
  border-bottom: 1px solid transparent;
  transition: opacity .4s ease, transform .5s var(--ease), background .35s ease, border-color .35s ease;
}
.topnav.hide { opacity: 0; transform: translateY(-100%); pointer-events: none; }
/* once the page scrolls under the nav, a frosted paper bar keeps the links
   readable over whatever section passes beneath — light or dark */
.topnav.scrolled {
  background: rgba(245, 245, 245, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--b12);
}
.tn-grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: center;
}
.tn-links { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; }
.burger { justify-self: end; width: 45px; height: 12px; position: relative; }
.burger i { position: absolute; left: 0; right: 0; height: 2px; background: var(--black); transition: all .35s var(--ease); }
.burger i:first-child { top: 0; }
.burger i:last-child { bottom: 0; }
.burger:hover i:first-child { top: 3px; }
.burger:hover i:last-child { bottom: 3px; }
.burger.open i:first-child { top: 5px; transform: rotate(45deg); }
.burger.open i:last-child { bottom: 5px; transform: rotate(-45deg); }
.topnav.on-dark .burger i { background: var(--white); }
.topnav.on-dark .dotlink span { color: var(--white); }
.topnav.on-dark .dotlink i { background: var(--white); }
.topnav.on-dark .logo-roll b { color: var(--white); }

/* dot-bullet link */
.dotlink { display: inline-flex; align-items: center; gap: 6px; overflow: hidden; padding: 4px 0; }
.dotlink i {
  width: 11px; height: 11px; border-radius: 99px; background: var(--black); flex: none;
  transform: translateX(-17px); transition: transform .45s var(--ease);
}
.dotlink span {
  font-size: 19px; font-weight: 600; letter-spacing: -.7px; line-height: 1.1;
  transform: translateX(-17px); transition: transform .45s var(--ease);
}
.dotlink:hover i, .dotlink:hover span { transform: none; }
.dotlink.lt i { background: var(--white); }
.dotlink.lt span { color: var(--white); font-size: 16px; letter-spacing: -.5px; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 7px; }
.orb {
  width: 30px; height: 30px; border-radius: 99px; flex: none; overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, #fff 0%, #cbb8ff 18%, #6f4ff0 46%, #2b1470 72%, #0b0520 100%);
  box-shadow: inset 0 0 8px rgba(255,255,255,.35);
  animation: orbspin 9s linear infinite;
}
.orb.xs { width: 22px; height: 22px; }
.orb.corner { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; }
.orb.corner.grey { filter: saturate(0); }
.orb.float { width: 60px; height: 60px; }
@keyframes orbspin { to { filter: hue-rotate(360deg); } }

.logo-roll { display: block; height: 21px; overflow: hidden; position: relative; width: max-content; }
.logo-roll b {
  display: block; height: 21px; line-height: 21px;
  font-size: 19px; font-weight: 600; letter-spacing: 0; white-space: nowrap;
  transition: transform .5s var(--ease);
}
.logo:hover .logo-roll b { transform: translateY(-21px); }
.logo.sm .orb { width: 26px; height: 26px; }
.logo.sm .logo-roll, .logo.sm .logo-roll b { height: 19px; line-height: 19px; font-size: 17px; }
.logo.sm b { font-size: 17px; font-weight: 600; letter-spacing: -.4px; }
.logo.light b, .logo.light .logo-roll b { color: var(--white); }

/* ═══ sidebar ═══════════════════════════════════════════════ */
.scrim {
  position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.1); backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none; transition: opacity .5s ease;
}
.scrim.on { opacity: 1; pointer-events: auto; }
.sidebar {
  position: fixed; top: 0; right: 0; z-index: 80; width: 640px; max-width: 92vw; height: 100vh;
  background: var(--black); padding: 112px 0 32px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  transform: translateX(101%); transition: transform .7s var(--ease);
}
.sidebar.on { transform: none; }
.sb-links { width: 100%; padding: 0 120px; display: flex; flex-direction: column; gap: 20px; }
.sb-link { display: block; }
.roll2 { display: block; height: 48px; overflow: hidden; }
.roll2 b {
  display: block; height: 48px; line-height: 48px;
  font-size: 48px; font-weight: 500; letter-spacing: -2px; color: var(--paper);
  transition: transform .45s var(--ease);
}
.sb-link:hover .roll2 b { transform: translateY(-48px); }
.ul { display: block; height: 1px; background: var(--w30); position: relative; margin-top: 2px; }
.ul::after { content: ""; position: absolute; inset: 0 100% 0 0; background: var(--paper); transition: right .5s var(--ease); }
.sb-link:hover .ul::after, .under:hover .ul::after { right: 0; }

.sb-foot { width: 100%; padding: 0 120px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.talkcard {
  width: 208px; display: flex; align-items: center; gap: 10px; padding: 7px;
  border: 1px solid var(--w14); border-radius: 999px; background: rgba(255,255,255,.04);
}
.talkcard img { width: 55px; height: 55px; border-radius: 999px; object-fit: cover; }
.tc-txt { display: flex; flex-direction: column; }
.tc-txt b { color: var(--white); font-size: 16px; font-weight: 600; letter-spacing: -.5px; }
.tc-roll { display: block; height: 18px; overflow: hidden; }
.tc-roll em {
  display: block; height: 18px; line-height: 18px; font-style: normal;
  color: var(--white); opacity: .65; font-size: 14px; font-weight: 600; letter-spacing: -.5px;
  transition: transform .4s var(--ease);
}
.talkcard:hover .tc-roll em { transform: translateY(-18px); }
.socials { display: flex; gap: 6px; padding-top: 20px; }
.soc {
  width: 40px; height: 40px; border-radius: 99px; background: var(--grey3); color: var(--white);
  display: grid; place-items: center; font-size: 15px; overflow: hidden;
  transition: background .3s;
}
.soc:hover { background: var(--grey2); }
.socials.sm .soc { width: 36px; height: 36px; font-size: 13px; }

/* ═══ buttons ═══════════════════════════════════════════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 24px; border-radius: 999px; overflow: hidden;
  font-size: 16px; font-weight: 500; letter-spacing: -.6px;
  background: var(--black); color: var(--white); box-shadow: var(--shadow-pill);
}
.btn::before {
  content: ""; position: absolute; inset: 100% 0 -100% 0; background: var(--grey);
  transition: inset .45s var(--ease);
}
.btn:hover::before { inset: 0; }
.btn > span { position: relative; z-index: 2; display: inline-flex; }
.btn-grey { background: var(--grey3); }
.btn-grey::before { background: var(--grey2); }
.btn.right { justify-self: end; }

/* split-letter roll */
.btn .ch { display: inline-block; overflow: hidden; height: 1em; line-height: 1em; vertical-align: bottom; }
.btn .roll { display: block; will-change: transform; transition: transform .55s var(--ease); }
.btn .roll span { display: block; height: 1em; line-height: 1em; }
.btn:hover .roll { transform: translateY(-1em); }

.under { display: inline-block; }
.under .roll2 { height: 20px; }
.under .roll2 b { height: 20px; line-height: 20px; font-size: 14px; font-weight: 500; letter-spacing: 0; color: var(--black); }
.under:hover .roll2 b { transform: translateY(-20px); }
.under .ul { background: #b2b2b2; }
.under .ul::after { background: var(--black); }

/* dots */
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--black); display: inline-block; }
.dot.lt { background: var(--white); }
.dotcell { display: flex; align-items: center; }

/* ═══ 1 · HERO ══════════════════════════════════════════════ */
.hero { position: relative; height: 300vh; background: var(--ink); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hero-wrap { position: relative; height: 100vh; background: var(--ink); }

.ticker { position: absolute; top: 0; bottom: 0; width: 50%; overflow: hidden; }
.tick-up { left: 0; }
.tick-down { right: 0; }
.tk-track { display: flex; flex-direction: column; gap: 44px; padding: 0 22px; will-change: transform; }
.tk-track img { width: 100%; height: 400px; object-fit: cover; }
.tick-down .tk-track img { height: 340px; }

.hero-main {
  position: absolute; inset: 0; z-index: 5; background: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 112px var(--pad) 50px;
  transform-origin: 50% 50%;
  will-change: transform, border-radius;
}
.hm-top { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; }
.svc-list li {
  font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; padding: 3px 0;
}
.hm-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.hm-copy p { font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; }
.hm-dots { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; margin: 60px 0; }
.hm-bottom { display: flex; flex-direction: column; gap: 0; }
.hm-meta { display: flex; justify-content: flex-end; padding-bottom: 8px; }
.hm-meta small { font-size: 14px; font-weight: 600; letter-spacing: -.5px; opacity: .43; }
.hm-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.hm-title h1, .hm-title h2 {
  font-size: clamp(42px, 8.4vw, 140px); font-weight: 600; letter-spacing: -.05em; line-height: .85;
  white-space: nowrap;
}

.scroll-badge {
  position: absolute; z-index: 6; bottom: 50px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 7px; border-radius: 7px; background: rgba(68,68,68,.46); backdrop-filter: blur(20px);
}
.scroll-badge span { color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: -.5px; }
.sb-bar { display: block; width: 64px; height: 2px; background: rgba(136,136,136,.6); overflow: hidden; }
.sb-bar b { display: block; height: 100%; background: var(--white); transform: translateX(-100%); }
.hero-spacer { height: 1px; }

/* ═══ curve transitions ════════════════════════════════════ */
/* --bg fills the band with the outgoing section's colour and --c is the dome
   of the incoming one, so the seam blends instead of showing the body black */
.curve { position: relative; height: 100px; overflow: hidden; z-index: 3; background: var(--bg, transparent); }
.curve i {
  position: absolute; left: -25%; width: 150%; height: 750%;
  border-radius: 50%; background: var(--c, #f5f5f5); will-change: transform;
}
.curve.top i { top: 0; }
.curve.bottom i { bottom: 0; }
.curve.top + section, .curve.top + div { margin-top: -1px; }

/* ═══ 2 · WORK ══════════════════════════════════════════════ */
.work-sec { background: var(--paper); padding: 150px var(--pad); margin-top: -1px; position: relative; z-index: 2; }
.work-sec .container { display: flex; flex-direction: column; gap: 150px; }

.partners { display: flex; flex-direction: column; gap: 50px; }
.p-head { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: center; }
/* fixed rows so a long wordmark can never make one card taller than its row */
.logo-grid {
  display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr));
  grid-auto-rows: 140px; align-items: stretch; gap: 5px;
}
.lcard { height: 140px; min-height: 140px; perspective: 500px; }
.lcard-in { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .8s var(--ease); }
.lcard.is-flipped .lcard-in { transform: rotateY(180deg); }
.lface {
  position: absolute; inset: 0; backface-visibility: hidden; background: var(--white); border-radius: var(--r);
  display: grid; place-items: center; padding: 10px; overflow: hidden;
}
.lface .wordmark { white-space: nowrap; font-size: clamp(15px, 1.5vw, 22px); }
.lface.back { transform: rotateY(180deg); }
.wordmark { font-size: 22px; font-weight: 700; letter-spacing: -1px; }
.wordmark.light { color: var(--white); }
.wordmark.big { font-size: 30px; }

/* one grid so the sticky header column and the card stack sit side by side */
.works { display: grid; grid-template-columns: repeat(3, minmax(50px, 1fr)); gap: 16px; align-items: start; }
.w-headin {
  grid-column: 1; position: sticky; top: 50px; min-height: 500px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
}
.wh-top { display: flex; flex-direction: column; gap: 15px; }
.w-title { display: flex; align-items: flex-end; gap: 10px; }
.w-title h2 { font-size: clamp(34px, 5vw, 64px); font-weight: 600; letter-spacing: -2px; line-height: 1.1; }
.w-title small { font-size: 16px; font-weight: 600; letter-spacing: -.5px; opacity: .34; padding-bottom: 9px; }
.w-stack { grid-column: 2 / span 2; display: flex; flex-direction: column; gap: 16px; }
/* the slot is what sticks — cards then layer over one another */
.w-slot { position: sticky; top: 64px; }
.wcard { position: relative; display: block; height: 80vh; border-radius: 12px; overflow: hidden; }
.wc-img { position: absolute; inset: 0; overflow: hidden; }
.wc-img img { width: 100%; height: 105%; object-fit: cover; transition: transform 1.2s var(--ease); }
.wcard:hover .wc-img img { transform: scale(1.04); }
.wc-tag {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 4px; background: var(--white);
  font-size: 16px; font-weight: 600; letter-spacing: -.5px;
}
.wc-tag em { font-style: normal; opacity: .36; }

/* ═══ 3 · WHO WE ARE ════════════════════════════════════════ */
.who-sec { background: var(--white); padding: 264px var(--pad) 150px; margin-top: -1px; position: relative; z-index: 2; }
.who-sec .container { display: flex; flex-direction: column; gap: 70px; }
.who-head { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: start; }
.who-title { grid-column: span 3; display: flex; flex-direction: column; gap: 15px; }
.who-title h2 { font-size: clamp(30px, 4.6vw, 64px); font-weight: 600; letter-spacing: -2px; line-height: 1.1; }
.who-dots { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; }
.who-dots .dot { justify-self: start; }

.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bento-col { display: flex; flex-direction: column; gap: 20px; }
.bcard { position: relative; border-radius: var(--r); padding: 25px; overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.bcard-dark { background: linear-gradient(#1c1c1f, #0f0f12); color: var(--white); }
.bcard-light { background: linear-gradient(#f5f5f5 0%, #f5f6f8 60%, #dee0e4 100%); }
.bc-corner { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.bcard-light .bc-corner { flex-direction: row-reverse; }
.metrics { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.metrics b { font-size: 19px; font-weight: 600; letter-spacing: -.7px; }
.avatars { display: flex; padding: 0 6px; }
.avatars img, .av-more {
  width: 40px; height: 40px; border-radius: 99px; object-fit: cover;
  border: 2px solid var(--ink); margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.av-more { background: #555; display: grid; place-items: center; color: var(--white); font-size: 14px; font-weight: 600; }
.avatars.center { justify-content: center; }
.avatars.center img { border-color: var(--white); }
.bc-body { position: relative; z-index: 2; }
.big { font-size: clamp(48px, 6.6vw, 96px); font-weight: 500; letter-spacing: -1.3px; line-height: 1.1; }
.mid { font-size: clamp(19px, 2vw, 27px); font-weight: 500; letter-spacing: -1px; line-height: 1.1; max-width: 200px; }
.mid2 { font-size: clamp(19px, 2vw, 27px); font-weight: 600; letter-spacing: -1px; line-height: 1.1; max-width: 274px; }
.bc-globe {
  position: absolute; left: 0; right: 0; bottom: -46%; height: 325px; z-index: 0; filter: brightness(1.16);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.10), transparent 62%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 1px, transparent 1px 9px);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  -webkit-mask-image: radial-gradient(ellipse at 50% 10%, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 10%, #000 30%, transparent 72%);
}
.bcard-light .btn { align-self: flex-start; }

/* collaboration card */
.collab {
  position: relative; border-radius: var(--r); overflow: hidden; padding: 65px;
  display: flex; flex-direction: column; align-items: center; gap: 20px; min-height: 620px;
}
.collab-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.collab-veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(50% 50%, rgba(0,0,0,.2), rgba(0,0,0,.55)); }
.lbl.center { position: relative; z-index: 2; text-align: center; width: 100%; }
.chat {
  position: relative; z-index: 2; width: 100%; max-width: 430px; margin-top: auto;
  padding: 25px 25px 35px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.10);
  backdrop-filter: blur(34px); filter: brightness(1.2) saturate(1.7);
  display: flex; flex-direction: column; gap: 4px;
}
.chat-time { text-align: center; color: var(--white); opacity: .8; font-size: 14px; font-weight: 600; letter-spacing: -.5px; padding: 10px 0; }
.chat-row { display: flex; align-items: center; gap: 4px; opacity: 0; transform: translateY(14px); }
.chat-row.in { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.chat-row.indent { padding-left: 44px; }
.chat-row.right { justify-content: flex-end; }
.chat-row.right.pad { padding-right: 26px; }
.chat-row.pad2 { padding-left: 44px; }
.cav { width: 40px; height: 40px; border-radius: 99px; object-fit: cover; }
.bub {
  padding: 0 16px; height: 40px; display: inline-flex; align-items: center; border-radius: 99px;
  background: var(--w88); color: var(--black); font-size: 14px; font-weight: 600; letter-spacing: -.5px;
  border: 1px solid var(--w88);
}
.bub.dark { background: linear-gradient(#1c1c1f, #0f0f12); color: var(--paper); border-color: rgba(255,255,255,.08); }

/* ═══ 4 · VISION ════════════════════════════════════════════ */
.vision { position: relative; height: 500vh; background: linear-gradient(#2d2d31 0%, #151518 54%, #0f0f12 100%); margin-top: -1px; }
.v-sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; padding: 30px; overflow: hidden; }
.lbl.light.top { position: absolute; top: 30px; left: 0; right: 0; text-align: center; }
.lbl.light.bot { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; opacity: .45; }
.v-image { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; }
.v-image img { width: 105%; height: 100vh; object-fit: cover; transform: scale(0); will-change: transform; }
.v-lines { position: relative; z-index: 1; display: grid; place-items: center; width: 100%; }
.vline {
  grid-area: 1 / 1; color: var(--white); text-align: center; white-space: nowrap;
  font-size: clamp(32px, 6.8vw, 96px); font-weight: 500; letter-spacing: -.03em; line-height: 1.3;
  opacity: 0; pointer-events: none;
}
.vline.is-on { opacity: 1; }

/* ═══ 5 · SERVICES ══════════════════════════════════════════ */
.services { background: var(--white); padding: 150px var(--pad); margin-top: -1px; position: relative; z-index: 2; }
.services .container { display: flex; flex-direction: column; gap: 60px; }
.s-head { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: center; }
.s-body { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 16px; align-items: start; }
.s-list { grid-column: span 3; }
.s-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 0 0 3px;
  opacity: .14; transition: opacity .5s var(--ease);
}
.s-item.is-on { opacity: 1; }
.s-item em { font-style: normal; font-size: 14px; font-weight: 600; letter-spacing: -.5px; padding-top: 11px; flex: none; }
.s-item span {
  font-size: clamp(26px, 4.6vw, 66px); font-weight: 600; letter-spacing: -2px; line-height: 1.15;
  white-space: nowrap;
}
.s-preview { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.sp-img { width: 100%; aspect-ratio: 1.42 / 1; overflow: hidden; border-radius: 2px; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease; }
.s-preview p { font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; transition: opacity .35s ease; }
.s-preview.swap .sp-img img, .s-preview.swap p { opacity: 0; }

/* ═══ 6 · SHOWREEL ══════════════════════════════════════════ */
.showreel { position: relative; height: 400vh; background: var(--black); margin-top: -1px; }
.sr-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.sr-grid {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 8px; padding: 10px; will-change: transform; transform: scale(3.25);
}
.sr-cell { position: relative; border-radius: 8px; overflow: hidden; }
.sr-cell.c6 { grid-column: span 6; }
.sr-cell.c4 { grid-column: span 4; }
.sr-cell video, .sr-cell img { width: 100%; height: 100%; object-fit: cover; }
.grain, .ct-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.sr-title {
  position: relative; z-index: 2; color: var(--white); text-align: center;
  font-size: clamp(32px, 6.8vw, 96px); font-weight: 500; letter-spacing: -3px; line-height: 1.3;
}
.sr-play {
  position: absolute; z-index: 3; top: 50%; left: 50%; width: 100px; height: 100px; border-radius: 999px;
  background: var(--white); transform: translate(-50%, -50%) scale(.7); opacity: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  display: grid; place-items: center;
}
.sr-play.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.sr-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.sr-play i {
  width: 0; height: 0; border-left: 14px solid var(--black);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px;
}
.sr-spacer { height: 1px; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.9); display: none; place-items: center; }
.lightbox.on { display: grid; }
.lightbox video { width: 85%; max-width: 1470px; aspect-ratio: 16/9; border-radius: 4px; }
.lb-close { position: fixed; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 4px; color: var(--white); font-size: 16px; }

/* ═══ 7 · PRICING + FAQ ═════════════════════════════════════ */
.pricing { background: var(--white); padding: 150px var(--pad); margin-top: -1px; position: relative; z-index: 2; }
.pricing .container { display: flex; flex-direction: column; gap: 120px; }
.pr-head { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.pr-h { font-size: clamp(36px, 7vw, 96px); font-weight: 600; letter-spacing: -2px; line-height: 1.1; }
.pr-head p { font-size: 16px; font-weight: 600; letter-spacing: -.5px; }

.pr-card { display: flex; gap: 20px; padding: 20px; border-radius: var(--r); background: var(--paper); }
.plan { position: relative; flex: 1; display: flex; flex-direction: column; gap: 30px; padding: 40px 50px; border-radius: var(--r); }
.plan-alt { background: var(--white); }
.pl-top { display: flex; flex-direction: column; gap: 10px; }
.pl-top > b { font-size: 19px; font-weight: 600; letter-spacing: -.7px; }
.pl-top p { max-width: 80%; opacity: .5; font-size: 16px; font-weight: 500; letter-spacing: -.5px; line-height: 1.3; }
.price { display: flex; align-items: flex-end; gap: 15px; padding-top: 20px; }
.price span { font-size: clamp(28px, 4vw, 48px); font-weight: 600; letter-spacing: -3px; line-height: 1.1; }
.price em { font-style: normal; font-size: 16px; font-weight: 600; letter-spacing: -.5px; padding-bottom: 6px; }
.pl-div { display: block; height: 1px; background: var(--b12); }
.pl-list { display: flex; flex-direction: column; gap: 20px; }
.pl-list .lbl { opacity: .5; font-weight: 500; }
.pl-list ul { display: flex; flex-direction: column; gap: 13px; }
.pl-list li { display: flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 500; letter-spacing: -.5px; opacity: .68; }
.pl-list li i { width: 8px; height: 8px; border-radius: 99px; background: var(--black); opacity: .52; flex: none; }
.pl-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: auto; }
.pl-foot .lbl { opacity: .41; display: block; font-weight: 500; }
.pl-foot b { font-size: 16px; font-weight: 500; letter-spacing: -.5px; }

.faq-wrap { display: flex; flex-direction: column; gap: 40px; }
.faq-head { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: center; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
.fq { background: var(--paper); border-radius: var(--r); overflow: hidden; }
.fq-q { width: 100%; display: flex; align-items: center; gap: 7px; padding: 20px; text-align: left; }
.num {
  width: 32px; height: 32px; border-radius: 99px; background: var(--white); flex: none;
  display: grid; place-items: center; font-size: 14px; font-weight: 600; letter-spacing: -.5px;
}
.qt { flex: 1; font-size: 14px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; }
.plus { position: relative; width: 16px; height: 16px; flex: none; }
.plus::before, .plus::after { content: ""; position: absolute; background: var(--black); transition: transform .4s var(--ease); }
.plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.fq.open .plus::after { transform: scaleY(0); }
.fq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.fq.open .fq-a { grid-template-rows: 1fr; }
.fq-a p { overflow: hidden; padding: 0 20px; font-size: 14px; font-weight: 500; letter-spacing: -.4px; line-height: 1.5; opacity: .62; }
.fq.open .fq-a p { padding: 0 20px 30px; }

.more { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; max-width: 500px; margin-inline: auto; }
.more h4 { font-size: clamp(19px, 2.2vw, 27px); font-weight: 600; letter-spacing: -1px; line-height: 1.1; }

/* ═══ 8 · TESTIMONIALS ══════════════════════════════════════ */
/* taller than the other pinned blocks so each card gets real scroll distance
   — at 500vh the hand-off between cards read as a flicker */
.tst { position: relative; height: 720vh; background: var(--paper); margin-top: -1px; }
.tst-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; padding: 0 var(--pad); }
.tst-split { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 2; overflow: hidden; will-change: transform; }
.tst-split.l { left: 0; }
.tst-split.r { right: 0; }
.tst-split img { width: 100%; height: 100%; object-fit: cover; }
.tst .lbl.top { position: absolute; top: 30px; left: 0; right: 0; text-align: center; z-index: 4; }
.tst .lbl.bot { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; z-index: 4; opacity: .4; }

.tst-cards { position: relative; z-index: 3; width: 400px; max-width: 100%; height: 450px; }
.tcard {
  position: absolute; inset: 0; padding: 35px; border-radius: var(--r); background: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  transform-origin: 50% 100%; will-change: transform, opacity;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}
.tcard.dark { background: var(--ink); color: var(--white); }
.tc-top { display: flex; justify-content: space-between; align-items: center; }
.pips { display: flex; gap: 3px; }
.pips i { width: 8px; height: 8px; border-radius: 99px; background: var(--black); opacity: .15; }
.pips i.on { opacity: 1; }
.pips.lt i { background: var(--white); }
.tcard p { font-size: 19px; font-weight: 600; letter-spacing: -.7px; line-height: 1.3; }
.tc-by { display: flex; align-items: center; gap: 10px; padding-top: 5px; }
.tc-by img { width: 60px; height: 60px; border-radius: 99px; object-fit: cover; }
.tc-by span { display: flex; flex-direction: column; }
.tc-by b { font-size: 16px; font-weight: 600; letter-spacing: -.5px; }
.tc-by em { font-style: normal; font-size: 14px; font-weight: 600; letter-spacing: -.5px; opacity: .5; }
.tc-by.light b, .tc-by.light em { color: var(--white); }
.tst-count { position: absolute; z-index: 4; bottom: 30px; right: var(--pad); display: flex; gap: 2px; font-size: 16px; font-weight: 600; }

/* ═══ 9 · STATS ═════════════════════════════════════════════ */
.stats { background: var(--black); color: var(--white); padding: 150px var(--pad); margin-top: -1px; position: relative; z-index: 2; }
.stats .container { display: flex; flex-direction: column; gap: 60px; }
.st-head { display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center; max-width: 600px; margin-inline: auto; }
.st-title { position: relative; }
.st-title h2 { font-size: clamp(30px, 4.6vw, 64px); font-weight: 600; letter-spacing: -2px; line-height: 1.1; }
.orb.float { position: absolute; top: 3px; left: -14px; }
.st-head p { max-width: 82%; opacity: .8; font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; padding-top: 15px; }
.st-head .btn { margin-top: 25px; }

.st-cards { display: flex; gap: 20px; align-items: flex-start; }
.st-col { flex: 1; }
.st-col.off1 { padding-top: 200px; }
.st-col.off2 { padding-top: 400px; }
.st-col.off3 { padding-top: 600px; }
.flip { position: sticky; top: 100px; height: 320px; perspective: 1200px; }
.f-face {
  position: absolute; inset: 0; backface-visibility: hidden; border-radius: var(--r); padding: 20px 20px 10px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .9s var(--ease);
}
.f-front { background: var(--ink); transform: rotateY(0); }
.f-back { background: var(--white); color: var(--black); transform: rotateY(180deg); gap: 20px; }
.flip.flipped .f-front { transform: rotateY(-180deg); }
.flip.flipped .f-back { transform: rotateY(0); }
.f-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.f-top .lbl { opacity: .65; }
.f-bot h3 { font-size: clamp(34px, 4vw, 60px); font-weight: 500; letter-spacing: -1px; line-height: 1.1; }
.f-bot p { opacity: .7; font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; padding-top: 7px; }
.f-back .f-bot p { opacity: .8; font-size: 15px; }
.f-mid b { font-size: 16px; font-weight: 600; letter-spacing: -.5px; }
.stars { display: block; font-size: 14px; letter-spacing: 1px; padding-bottom: 6px; }
.f-by { display: flex; align-items: center; gap: 5px; padding-top: 8px; }
.f-by img { width: 40px; height: 40px; border-radius: 99px; object-fit: cover; }
.f-by b { font-size: 14px; font-weight: 600; letter-spacing: -.5px; }

.st-quote { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-height: 70vh; }
.sq-img { position: relative; border-radius: 20px; overflow: hidden; background: var(--ink); }
.sq-img img { width: 100%; height: 105%; object-fit: cover; }
.sq-img .wordmark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--white); mix-blend-mode: difference; }
.sq-card { background: var(--ink); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.sq-card h3 { font-size: clamp(18px, 1.9vw, 27px); font-weight: 600; letter-spacing: -1px; line-height: 1.3; }

/* ═══ 10 · BLOG ═════════════════════════════════════════════ */
.blog { background: var(--white); padding: 150px var(--pad); position: relative; z-index: 2; }
.blog .container { display: flex; flex-direction: column; gap: 60px; }
.bl-head { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 10px; align-items: center; }
.bl-head h2 { grid-column: 2 / span 2; font-size: clamp(30px, 4.6vw, 64px); font-weight: 600; letter-spacing: -2px; line-height: 1.1; }
.bl-head .btn { justify-self: end; }
.bl-grid { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 15px; }
.post {
  display: flex; flex-direction: column; gap: 15px; padding: 15px; border-radius: 7px;
  background: linear-gradient(var(--white), var(--paper));
  transition: background .4s ease;
}
.post:hover { background: linear-gradient(var(--paper), #ebebeb); }
.po-img { position: relative; aspect-ratio: 1.3 / 1; border-radius: 7px; overflow: hidden; }
.po-img img { width: 100%; height: 100%; object-fit: cover; }
.po-arrow {
  position: absolute; top: 10px; right: 10px; width: 50px; height: 40px; border-radius: 20px;
  background: rgba(0,0,0,.19); backdrop-filter: blur(20px); color: var(--white);
  display: grid; place-items: center; font-size: 15px;
  transition: transform .4s var(--ease);
}
.post:hover .po-arrow { transform: translate(4px, -4px); }
.post small { font-size: 14px; font-weight: 600; letter-spacing: -.5px; opacity: .5; }
.post p { font-size: 19px; font-weight: 600; letter-spacing: -.7px; line-height: 1.3; max-width: 85%; }

/* ═══ 11 · CONTACT ══════════════════════════════════════════ */
.contact { position: relative; min-height: 90vh; background: var(--black); display: flex; align-items: flex-end; padding: 0 var(--pad) var(--pad); overflow: hidden; }
.ct-bg { position: absolute; inset: -10% 0 0; z-index: 0; }
.ct-bg img { width: 100%; height: 120%; object-fit: cover; opacity: .42; transform: scale(1.15); will-change: transform; }
.ct-grain { z-index: 1; opacity: .1; }
.contact .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; }
.ct-card {
  max-width: 73%; padding: 25px; border-radius: var(--r);
  background: var(--w14); backdrop-filter: blur(15px);
  display: flex; flex-direction: column; gap: 15px;
}
.ct-card h2 { color: var(--white); font-size: clamp(28px, 3vw, 40px); font-weight: 500; letter-spacing: -1.3px; line-height: 1.3; padding-bottom: 15px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ct-card input {
  width: 100%; height: 52px; padding: 8px 15px; border-radius: 6px;
  border: 1px solid var(--w24); background: transparent; color: var(--white);
  font-family: var(--font); font-size: 16px; font-weight: 500; letter-spacing: -.5px;
}
.ct-card input::placeholder { color: var(--w60); }
.ct-card input:focus { outline: none; border-color: var(--white); }
.btn-submit {
  height: 48px; border-radius: 999px; background: var(--black); color: var(--white);
  font-size: 16px; font-weight: 600; letter-spacing: -.6px; transition: background .3s;
}
.btn-submit:hover { background: var(--grey); }
.ct-card small { color: var(--white); opacity: .65; font-size: 14px; font-weight: 600; letter-spacing: -.5px; }
.ct-card small a { text-decoration: underline; }

/* ═══ 12 · FOOTER ═══════════════════════════════════════════ */
.ft { background: var(--black); color: var(--white); padding: 30px var(--pad) 72px; }
.ft-cta {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding: 120px 0 50px; border-bottom: 1px solid var(--w14);
}
.ft-cta h3 { max-width: 400px; font-size: clamp(19px, 2.2vw, 27px); font-weight: 500; letter-spacing: -1.1px; line-height: 1.1; }
.ft-cta .w { opacity: .22; }
.ft-body { display: flex; gap: 70px; }
.ft-left { flex: 1; max-width: 400px; display: flex; flex-direction: column; gap: 70px; padding: 50px 50px 0 0; }
.news { display: flex; flex-direction: column; gap: 20px; }
.news h4 { font-size: clamp(19px, 2.2vw, 27px); font-weight: 500; letter-spacing: -1.1px; line-height: 1.1; }
.news-form { position: relative; }
.news-form input {
  width: 100%; height: 64px; padding: 8px 130px 8px 25px; border-radius: 999px;
  border: 0; background: rgba(245,245,245,.25); color: var(--white);
  font-family: var(--font); font-size: 16px; font-weight: 600;
}
.news-form input::placeholder { color: rgba(245,245,245,.6); }
.news-form input:focus { outline: 1px solid var(--white); }
.news-form button {
  position: absolute; top: 8px; bottom: 8px; right: 8px; padding: 0 22px; border-radius: 999px;
  background: var(--black); color: var(--white); font-size: 16px; font-weight: 600; letter-spacing: -.6px;
  transition: background .3s;
}
.news-form button:hover { background: var(--grey); }
.note { display: flex; align-items: center; gap: 5px; padding-left: 5px; opacity: .65; font-size: 14px; font-weight: 600; letter-spacing: -.5px; }
.note .dot { width: 8px; height: 8px; }
.copy { opacity: .43; font-size: 14px; font-weight: 600; letter-spacing: -.5px; }
.ft-div { width: 1px; align-self: stretch; background: var(--w14); }
.ft-right { flex: 1; display: flex; flex-direction: column; gap: 50px; padding: 50px 50px 0 0; }
.ft-pages { display: flex; flex-direction: column; gap: 20px; }
.pg-grid { display: grid; grid-template-columns: repeat(4, minmax(50px, 1fr)); gap: 30px; }
.pg-grid div { display: flex; flex-direction: column; gap: 3px; }
.ft-cols { display: flex; gap: 30px; }
.ft-cols > div { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.addr { font-size: 16px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; }

/* ═══ 13 · dock ═════════════════════════════════════════════ */
/* hidden for now — delete this rule to bring the floating bottom nav back */
.dock { display: none !important; }

.dock {
  position: fixed; z-index: 55; bottom: 15px; left: 50%;
  width: 570px; max-width: calc(100vw - 40px); height: 60px; padding: 15px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--white); border: 1px solid var(--white); border-radius: 12px;
  box-shadow: 0 -1px 0 rgba(0,0,0,.12), 0 12px 30px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.59);
  transform: translate(-50%, 120px); opacity: 0;
  transition: transform .6s var(--ease), opacity .5s ease;
}
.dock.on { transform: translate(-50%, 0); opacity: 1; }
.dk-side { flex: 1; display: flex; align-items: center; gap: 20px; }
.dk-side.right { justify-content: flex-end; }

/* ═══ responsive ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad: 15px; }
  .tn-links { display: none; }
  /* the 4-col grid squeezes the wordmark once the links are gone */
  .tn-grid { display: flex; justify-content: space-between; align-items: center; }
  .sb-links, .sb-foot { padding: 0 40px; }
  .bento, .st-quote, .contact .container { grid-template-columns: 1fr; }
  .ct-card { max-width: 100%; }
  .st-cards { flex-direction: column; }
  .st-col.off1, .st-col.off2, .st-col.off3 { padding-top: 0; }
  .flip { position: relative; top: 0; }
  .bl-grid { grid-template-columns: 1fr 1fr; }
  .pr-card { flex-direction: column; }
  .plan { padding: 30px 25px; }
  .ft-body { flex-direction: column; gap: 25px; }
  .ft-left, .ft-right { max-width: 100%; padding: 25px 0 0; }
  .ft-div { width: 100%; height: 1px; }
  .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .works { grid-template-columns: 1fr; }
  .w-headin, .w-stack { grid-column: 1; }
  .w-headin { min-height: 200px; gap: 25px; }
  .wcard { height: 60vh; }
  .w-headin { position: relative; top: 0; }
  .s-body { grid-template-columns: 1fr; }
  .s-list { grid-column: 1; }
  .s-preview { position: relative; top: 0; max-width: 320px; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-main { padding: 90px var(--pad) 30px; }
  .hm-top { grid-template-columns: 1fr; gap: 40px; }
  .who-head, .who-title { grid-template-columns: 1fr; }
  .who-title { grid-column: 1; }
  .dock { width: auto; }
  .dk-side { gap: 12px; }
  .dock .dotlink span { font-size: 15px; }
  .collab { padding: 30px 15px; min-height: 520px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .vision { height: 400vh; }
  .tst-cards { width: 100%; height: 380px; }
  .tcard { padding: 25px; }
}
@media (max-width: 700px) {
  .bl-grid { grid-template-columns: 1fr; }
  .ct-row { grid-template-columns: 1fr; }
  .who-dots, .p-head, .faq-head, .s-head, .bl-head { grid-template-columns: repeat(2, 1fr); }
  .bl-head h2 { grid-column: 1 / span 2; }
  /* hero has to fit one screen on a phone: drop the decorative row,
     stack the wordmark and keep the badge clear of the title */
  .hm-dots { display: none; }
  .hm-top { gap: 24px; }
  .hm-title { flex-direction: column; align-items: flex-start; gap: 0; }
  .hm-title h1, .hm-title h2 { font-size: clamp(38px, 15vw, 64px); }
  .hm-meta { justify-content: flex-start; }
  .scroll-badge { bottom: 14px; left: auto; right: var(--pad); transform: none; }
  .work-sec, .who-sec, .services, .pricing, .stats, .blog { padding-block: 68px; }
  .who-sec { padding-top: 135px; }
  .ft-cta { flex-direction: column; align-items: flex-start; padding: 60px 0 25px; }
}

/* ═══ reduced motion / instant capture ══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
}
html.instant *, html.instant *::before, html.instant *::after {
  transition: none !important; animation: none !important;
}
html.instant .ch-in { transform: none !important; opacity: 1 !important; }
html.instant .w { opacity: 1 !important; }
html.instant .pre { display: none !important; }
html.instant .chat-row { opacity: 1 !important; transform: none !important; }
