/* ════════════════════════════════════════════════
   DOWER DIGITAL — Custom Websites & Managed SEO
   Dark / electric-blue design system
   ════════════════════════════════════════════════ */

:root {
  --bg: #0A0A0A;
  --bg-soft: #111827;
  --card: #111827;
  --card-2: #1F2937;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-hover: rgba(255, 255, 255, 0.14);
  --text: #F8FAFC;
  --muted: #D1D5DB;
  --faint: #6B7280;
  --grey-900: #111827;
  --grey-800: #1F2937;
  --grey-700: #374151;
  --grey-500: #6B7280;
  --grey-300: #D1D5DB;
  --accent: #2563EB;
  --accent-dim: #1E3A8A;
  --accent-soft: rgba(37, 99, 235, 0.16);
  --lime: var(--accent);
  --lime-dim: var(--accent-dim);
  --lime-soft: var(--accent-soft);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --serif: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.has-process-story { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--accent); color: #F8FAFC; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A2A2E; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3A3A3F; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
em.serif, .serif { font-family: var(--heading); font-style: normal; font-weight: 600; }

.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.container--narrow { width: min(900px, calc(100% - 80px)); }
.section { position: relative; padding: 140px 0; }
.mono { font-family: var(--mono); }

/* ── Headings ─────────────────────────────── */
.h2 {
  font-size: clamp(42px, 5.4vw, 76px);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.h2 .serif { color: var(--accent); font-weight: 700; letter-spacing: -0.02em; }

/* ── Micro label ──────────────────────────── */
.microlabel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}
.microlabel__rule { width: 36px; height: 1px; background: #3A3A3F; flex: none; }

/* ── Buttons ──────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #101012;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out);
}
.btn:hover { border-color: var(--line-hover); transform: translateY(-1px); }
.btn__arrow { display: inline-block; transition: transform 0.35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn:focus-visible,
.menu__link:focus-visible,
.rail__btn:focus-visible,
.mobile-cta__link:focus-visible,
.footer__col a:focus-visible,
.contactlist a:focus-visible,
.cs__close:focus-visible,
.cs__actions .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--shine {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  left: -80%;
  background: linear-gradient(100deg, transparent, rgba(37, 99, 235, 0.22), transparent);
  animation: shine 3.4s var(--ease-out) infinite;
}
@keyframes shine { 0%, 55% { left: -80%; } 100% { left: 180%; } }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: rgba(255,255,255,0.05); }
.btn .dot {
  width: 6px; height: 6px;
  background: var(--lime);
  flex: none;
  animation: blink 2.2s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.dot { display: inline-block; width: 6px; height: 6px; }
.dot--lime { background: var(--lime); }
.dot--dim { background: #3F4433; }

/* ── Chips ────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.chip:hover { border-color: #3A3A3F; color: var(--text); }
.chip--lime { color: var(--accent); border-color: rgba(37, 99, 235, 0.35); background: var(--accent-soft); }

/* ════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s var(--ease-out);
}
.preloader::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at 50% 55%, rgba(248, 250, 252, 0.08), transparent 22%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.preloader.is-video-running::before,
.preloader.is-logo-flight::before { opacity: 1; }
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader.is-gone { display: none; }
.preloader__inner {
  position: relative;
  z-index: 2;
  width: min(420px, 80vw);
  transition: opacity 0.3s var(--ease-out), translate 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}
.preloader.is-loading-complete .preloader__inner {
  opacity: 0;
  translate: 0 -10px;
  filter: blur(4px);
  pointer-events: none;
}
.preloader__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 36px;
}
.preloader__markImg {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.preloader__mark { color: var(--text); }
.preloader__reg { color: var(--accent); font-size: 18px; vertical-align: super; }
.preloader__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.preloader__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.preloader__count {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--lime);
}
.preloader__bar { height: 2px; background: #1C1C20; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--accent); }
.preloader__videoShell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  scale: 0.985;
  transition: opacity 0.45s var(--ease-out), scale 0.7s var(--ease-expo), filter 0.35s var(--ease-out);
}
.preloader.is-video-running .preloader__videoShell {
  opacity: 1;
  scale: 1;
}
.preloader.is-logo-flight .preloader__videoShell {
  opacity: 0;
  filter: blur(10px);
}
.preloader__video {
  width: 100vw;
  height: 100svh;
  object-fit: contain;
  object-position: center;
  background: transparent;
  pointer-events: none;
}
.preloader__handoffFrame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100svh;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out), filter 0.45s var(--ease-out), scale 0.7s var(--ease-expo);
}
.preloader.is-handoff-ready .preloader__handoffFrame {
  opacity: 1;
}
.preloader.is-logo-flight .preloader__handoffFrame {
  opacity: 0.24;
  filter: blur(8px);
  scale: 1.015;
}
.preloader__flightLogo {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  will-change: transform, opacity;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.32));
}
.preloader.is-logo-docked .preloader__flightLogo {
  opacity: 0 !important;
  transition: opacity 0.18s var(--ease-out);
}
.preloader__skip {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 10, 0.48);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.3s var(--ease-out), border-color 0.3s, color 0.3s, background 0.3s;
}
.preloader.is-video-running .preloader__skip {
  opacity: 1;
  pointer-events: auto;
}
.preloader__skip:hover,
.preloader__skip:focus-visible {
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.46);
  background: rgba(37, 99, 235, 0.14);
  outline: none;
}
body.is-intro-nav-target .nav {
  z-index: 215;
  opacity: 1;
  translate: 0 0;
  transition: opacity 0.55s var(--ease-out), translate 0.55s var(--ease-out), box-shadow 0.4s, background 0.4s;
}
.nav__mark.is-intro-hidden { opacity: 0; }

/* ════════════════════════════════════════════
   GRAIN
   ════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 120;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 12px 12px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.4s, background 0.4s, top 0.4s var(--ease-out);
  opacity: 0;
  translate: 0 -16px;
}
body.is-ready .nav { opacity: 1; translate: 0 0; transition: opacity .8s var(--ease-out) .15s, translate .8s var(--ease-out) .15s, box-shadow 0.4s, background 0.4s; }
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.88);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  color: var(--text);
}
.nav__mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
}
.nav__cta { padding: 11px 20px; font-size: 13px; }
.nav__burger {
  width: 42px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  transition: border-color 0.3s;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--text);
  transition: transform 0.4s var(--ease-out), translate 0.4s var(--ease-out);
}
.nav__burger:hover { border-color: var(--line-hover); }
body.menu-open .nav__burger span:nth-child(1) { transform: rotate(45deg); translate: 0 3.8px; }
body.menu-open .nav__burger span:nth-child(2) { transform: rotate(-45deg); translate: 0 -3.8px; }

/* ════════════════════════════════════════════
   FULLSCREEN MENU
   ════════════════════════════════════════════ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(8, 8, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease-expo);
  display: flex;
  align-items: center;
}
body.menu-open .menu { clip-path: inset(0 0 0% 0); }
.menu__inner { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.menu__links { display: flex; flex-direction: column; margin-bottom: 64px; }
.menu__link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 10px 0;
  font-size: clamp(40px, 6vw, 72px);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.6s var(--ease-out), translate 0.6s var(--ease-out);
}
body.menu-open .menu__link { opacity: 1; translate: 0 0; }
body.menu-open .menu__link:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .menu__link:nth-child(2) { transition-delay: 0.21s; }
body.menu-open .menu__link:nth-child(3) { transition-delay: 0.27s; }
body.menu-open .menu__link:nth-child(4) { transition-delay: 0.33s; }
body.menu-open .menu__link:nth-child(5) { transition-delay: 0.39s; }
.menu__num { font-family: var(--mono); font-style: normal; font-size: 12px; color: var(--faint); }
.menu__link:hover .menu__num { color: var(--lime); }
.menu__meta { display: flex; gap: 80px; flex-wrap: wrap; }
.menu__col { display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--muted); }
.menu__col .microlabel { margin-bottom: 6px; }
.menu__col a:hover { color: var(--lime); }

/* flip text (hover letters slide up) */
.flip { display: inline-block; overflow: hidden; height: 1.1em; }
.flip > span { display: block; transition: translate 0.45s var(--ease-expo); }
[data-flip]:hover .flip > span { translate: 0 -100%; }
.flip > span:nth-child(2) { color: var(--lime); }

/* ════════════════════════════════════════════
   FLOATING RAIL
   ════════════════════════════════════════════ */
.rail {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rail__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(16, 16, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  backdrop-filter: blur(10px);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.rail__btn svg { width: 19px; height: 19px; }
.rail__btn:hover { color: var(--accent); border-color: rgba(37, 99, 235, 0.4); transform: translateY(-2px); }

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 120;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(10, 10, 10, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.mobile-cta__link {
  min-height: 48px;
  flex: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mobile-cta__link--primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
body.is-mobile-cta-visible .mobile-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
body:not(.is-ready) .mobile-cta,
body.menu-open .mobile-cta,
body.is-locked .mobile-cta,
body.is-process-story-active .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 90px;
  background-image: url("assets/images/dower-hero-bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 6, 10, 0.96) 0%,
      rgba(4, 6, 10, 0.88) 38%,
      rgba(4, 6, 10, 0.55) 68%,
      rgba(4, 6, 10, 0.25) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.08);
  transform-origin: center center;
  pointer-events: none;
  background: #04060A;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 18%;
  top: 18%;
  background: radial-gradient(
    circle,
    rgba(70, 100, 255, 0.12) 0%,
    rgba(70, 100, 255, 0.04) 35%,
    transparent 70%
  );
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}
.hero__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}
.hero__glow--lime,
.hero__glow--accent {
  position: absolute;
  top: -28%;
  left: -18%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.22), transparent 65%);
  filter: blur(20px);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 90% at 72% 45%, transparent 30%, rgba(10, 10, 10, 0.58) 75%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.35), transparent 28%, transparent 70%, var(--bg) 98%);
}
.hero__stars { position: absolute; inset: 0; }
.hero__stars i {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.35;
  animation: twinkle 4s ease infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0.12; } 50% { opacity: 0.6; } }

.hero__orbit {
  position: absolute;
  top: 12%;
  right: -8%;
  width: 62vw;
  max-width: 980px;
  opacity: 0.9;
  z-index: 2;
}
.orbit-dot { animation: orbitPulse 3s ease infinite; }
@keyframes orbitPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.monolith {
  position: absolute;
  right: 13%;
  top: 8%;
  width: 320px;
  height: 78%;
  z-index: 1;
}
.monolith__slab {
  position: absolute;
  inset: 0 60px 18% 60px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028) 35%, rgba(0, 0, 0, 0.35) 80%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transform: perspective(900px) rotateY(-14deg);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6);
}
.monolith__rock {
  position: absolute;
  top: 18%;
  left: -42%;
  width: 185%;
  aspect-ratio: 1.25;
  background:
    radial-gradient(ellipse at 32% 26%, #3c3c40 0%, #232326 38%, #101012 72%, #0a0a0b 100%);
  clip-path: polygon(28% 6%, 58% 0%, 82% 14%, 96% 38%, 90% 64%, 70% 84%, 44% 92%, 18% 80%, 5% 56%, 9% 28%);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.7));
  animation: rockFloat 9s ease-in-out infinite;
}
@keyframes rockFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -16px; rotate: -1.2deg; }
}
.monolith__pedestal {
  position: absolute;
  bottom: 0;
  left: -30%;
  width: 160%;
  height: 17%;
  background: linear-gradient(to bottom, #161618, #0a0a0b);
  clip-path: polygon(8% 0, 92% 0, 100% 45%, 100% 100%, 0 100%, 0 45%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero__arch {
  position: absolute;
  right: -40px;
  top: 22%;
  width: 150px;
  height: 56%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 90px 90px 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.035), transparent);
}

.hero__content { position: relative; z-index: 5; }
.hero__title {
  font-family: var(--heading);
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 34px;
}
.hero__title .serif { color: var(--accent); font-weight: 700; }
.hero__title .rotate {
  min-width: 3.4em;
  white-space: nowrap;
}
.hero-highlight {
  position: relative;
  color: #4664ff;
  text-shadow: 0 0 32px rgba(70, 100, 255, 0.28);
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line__inner { display: inline-block; translate: 0 110%; transition: translate 1s var(--ease-expo); }
body.is-ready .line:nth-child(1) .line__inner { translate: 0 0; transition-delay: 0.12s; }
body.is-ready .line:nth-child(2) .line__inner { translate: 0 0; transition-delay: 0.22s; }
body.is-ready .line:nth-child(3) .line__inner { translate: 0 0; transition-delay: 0.32s; }
body.is-ready .line:nth-child(4) .line__inner { translate: 0 0; transition-delay: 0.42s; }

.u-underline { position: relative; display: inline-block; }
.scribble {
  position: absolute;
  left: 2%;
  bottom: -0.13em;
  width: 96%;
  height: 0.16em;
  color: var(--lime);
  overflow: visible;
}
.scribble path {
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  transition: stroke-dashoffset 1.1s var(--ease-out) 0.9s;
}
body.is-ready .scribble path { stroke-dashoffset: 0; }

.hero__sub { color: var(--muted); font-size: 16.5px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 70px; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: center; gap: 10px; }
.stat__icon { width: 17px; height: 17px; color: var(--lime); flex: none; }
.stat b { font-family: var(--heading); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.stat__sep { color: #303034; font-size: 11px; }

/* load reveals */
.reveal-load { opacity: 0; translate: 0 26px; transition: opacity 0.9s var(--ease-out) var(--d, 0s), translate 0.9s var(--ease-out) var(--d, 0s); }
body.is-ready .reveal-load { opacity: 1; translate: 0 0; }

/* ════════════════════════════════════════════
   SCROLL REVEALS
   ════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.9s var(--ease-out) var(--d, 0s), translate 0.9s var(--ease-out) var(--d, 0s);
}
[data-reveal].in-view { opacity: 1; translate: 0 0; }

/* ════════════════════════════════════════════
   WORK
   ════════════════════════════════════════════ */
.work { padding-top: 60px; }
.worklist { margin-top: 30px; border-top: 1px solid var(--line-soft); }
.workrow { border-bottom: 1px solid var(--line-soft); }
.workrow a {
  display: grid;
  grid-template-columns: 70px 1fr auto auto 40px;
  align-items: center;
  gap: 26px;
  padding: 30px 6px;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.workrow a:hover { padding-left: 22px; background: rgba(255, 255, 255, 0.012); }
.workrow a:focus-visible { outline: 2px solid var(--lime); outline-offset: -2px; }
.workrow__num { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.workrow__name { font-family: var(--heading); font-size: clamp(26px, 2.8vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.workrow__meta, .workrow__year {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.workrow__arrow {
  justify-self: end;
  color: var(--faint);
  font-size: 18px;
  transition: transform 0.35s var(--ease-out), color 0.35s;
}
.workrow a:hover .workrow__arrow { transform: translate(4px, -4px); color: var(--lime); }
.workrow a:hover .workrow__meta { color: var(--muted); }

/* floating preview */
.workpeek {
  position: fixed;
  z-index: 90;
  top: 0; left: 0;
  pointer-events: none;
  opacity: 0;
  scale: 0.82;
  transition: opacity 0.35s var(--ease-out), scale 0.45s var(--ease-out);
}
.workpeek.is-on { opacity: 1; scale: 1; }
.workpeek__card {
  position: relative;
  width: 320px;
  height: 210px;
  translate: -50% -50%;
  rotate: -3deg;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--peek-bg, linear-gradient(135deg, #20241a, #0c0c0d));
  transition: background 0.3s;
}
.workpeek__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0;
  transition: opacity 0.3s;
}
.workpeek__card.has-image .workpeek__image { opacity: 1; }
.workpeek__card.has-image .workpeek__initial,
.workpeek__card.has-image .workpeek__tag { opacity: 0; }
.workpeek__initial {
  font-family: var(--heading);
  font-style: normal;
  font-size: 92px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.workpeek__tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════ */
.services { background: var(--bg-soft); overflow: hidden; }
.services__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 32%, rgba(37, 99, 235, 0.12) 44%, transparent 52%),
    linear-gradient(118deg, transparent 58%, rgba(37, 99, 235, 0.07) 70%, transparent 80%);
  filter: blur(6px);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 56px;
}
.svc {
  position: relative;
  padding: 40px 42px 34px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.45s var(--ease-out);
}
.svc:hover { border-color: var(--line-hover); background: var(--card-2); transform: translateY(-4px); }
.svc__ghost {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  transition: -webkit-text-stroke-color 0.4s;
}
.svc:hover .svc__ghost { -webkit-text-stroke-color: rgba(37, 99, 235, 0.22); }
.svc__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--lime-soft);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: var(--accent);
  margin-bottom: 56px;
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.svc:hover .svc__icon { transform: translateY(-3px) rotate(-4deg); }
.svc__icon svg { width: 23px; height: 23px; }
.svc h3 { font-family: var(--heading); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: 14.5px; max-width: 40ch; margin-bottom: 26px; }
.svc__arrow {
  position: absolute;
  right: 30px;
  bottom: 26px;
  font-size: 22px;
  color: var(--faint);
  transition: transform 0.4s var(--ease-out), color 0.4s;
}
.svc:hover .svc__arrow { transform: translateX(8px); color: var(--lime); }
/* whole-card link (stretched over the card; hover FX stay on .svc) */
.svc__link { position: absolute; inset: 0; z-index: 4; border-radius: inherit; }
.svc__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ════════════════════════════════════════════
   PROCESS — stacking cards
   ════════════════════════════════════════════ */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.process {
  position: relative;
  padding: 120px 0;
  background: #09090A;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.process-story {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.process-story__stage { position: relative; }
.process-story__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}
.process-story__label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--faint);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.process-story__label span { width: 36px; height: 1px; background: #53535A; }
.process-story__counter {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--faint);
}
.process-story__counter b { color: var(--lime); font-size: 14px; }
.process-story__counter em { font-style: normal; }
.process-story__scenes { display: grid; gap: 28px; }
.process-scene {
  --scene-opacity: 1;
  --scene-enter: 1;
  --headline-progress: 1;
  --underline-progress: 1;
  --details-progress: 1;
  --dwell-progress: 0;
  --tag-1: 1;
  --tag-2: 1;
  --tag-3: 1;
  --tag-4: 1;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0C0C0E;
  isolation: isolate;
}
.process-scene__backdrop {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  object-fit: cover;
  object-position: var(--media-focus-x, 50%) var(--media-focus-y, 50%);
  opacity: .38;
  filter: blur(28px) saturate(.68) brightness(.66);
  transform: scale(1.08);
}
.process-scene__media {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  inset: 0;
}
.process-scene__poster,
.process-scene__video,
.process-scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.process-scene__poster,
.process-scene__video {
  object-fit: contain;
  object-position: var(--media-focus-x, 50%) var(--media-focus-y, 50%);
}
.process-scene__video,
.process-scene__canvas { display: none; }
.process-scene__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,.9) 0%, rgba(7,7,8,.66) 42%, rgba(7,7,8,.12) 76%),
    linear-gradient(0deg, rgba(7,7,8,.76), transparent 58%);
}
.process-scene__content {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-top: 90px;
  padding-bottom: 70px;
}
.process-scene__copy { width: min(550px, 48%); }
.process-scene__step {
  display: block;
  margin-bottom: 17px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: .22em;
}
.process-scene__step i { color: var(--faint); font-style: normal; }
.process-scene__titleMask { overflow: hidden; }
.process-scene h3 {
  font-size: clamp(50px, 6vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 0;
}
.process-scene__underline {
  display: block;
  width: min(250px, 62%);
  height: 3px;
  margin: 20px 0 24px;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(207,255,76,.24);
  transform-origin: left center;
}
.process-scene__details p {
  max-width: 54ch;
  color: #D0D0D4;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.process-scene__tags { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.process-scene__tags li {
  position: relative;
  padding-left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #A1A1A8;
}
.process-scene__tags li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--lime);
  translate: 0 -50%;
}
.process-story__progress,
.process-story__cue { display: none; }

.has-process-story .process { padding: 0; border-bottom: 0; }
.has-process-story .process-story {
  width: 100%;
  height: 1120vh;
  margin: 0;
  position: relative;
}
.has-process-story .process-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #070708;
}
.has-process-story .process-story__chrome {
  position: absolute;
  z-index: 20;
  top: max(104px, 12svh);
  left: 0;
  right: 0;
  margin-bottom: 0;
  pointer-events: none;
}
.has-process-story .process-story__scenes { position: absolute; inset: 0; display: block; }
.has-process-story .process-scene {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 0;
  opacity: var(--scene-opacity);
  transform: none;
  transform-origin: center;
  pointer-events: none;
  will-change: opacity;
}
.has-process-story .process-scene__backdrop {
  opacity: calc(.26 + var(--scene-enter) * .2);
  filter: blur(34px) saturate(.68) brightness(.62);
}
.has-process-story .process-scene__media {
  top: clamp(86px, 10svh, 120px);
  right: clamp(-24px, -2vw, 8px);
  bottom: clamp(36px, 5svh, 66px);
  left: clamp(320px, 28vw, 430px);
  -webkit-mask-image: radial-gradient(ellipse at 62% 48%, #000 0%, #000 48%, rgba(0,0,0,.9) 62%, transparent 88%);
  mask-image: radial-gradient(ellipse at 62% 48%, #000 0%, #000 48%, rgba(0,0,0,.9) 62%, transparent 88%);
}
.has-process-story .process-scene__poster,
.has-process-story .process-scene__video {
  object-fit: contain;
  object-position: var(--media-focus-x, 50%) var(--media-focus-y, 50%);
  transform: scale(calc(var(--media-zoom, 1.04) - 0.02));
  filter: saturate(.92) contrast(1.08) brightness(1.04);
  mix-blend-mode: screen;
}
.has-process-story .process-scene__poster {
  display: block;
  opacity: 1;
  transition: opacity .45s var(--ease-out);
}
.has-process-story .process-scene__canvas {
  display: block;
  opacity: 0;
  pointer-events: none;
  filter: saturate(.92) contrast(1.08) brightness(1.04);
  mix-blend-mode: screen;
  transition: opacity .45s var(--ease-out);
}
.has-process-story .process-scene.is-canvas-ready .process-scene__poster { opacity: 0; }
.has-process-story .process-scene.is-canvas-ready .process-scene__canvas { opacity: 1; }
.has-process-story .process-scene.is-video-fallback .process-scene__poster,
.has-process-story .process-scene.is-video-fallback .process-scene__canvas { opacity: 0; }
.has-process-story .process-scene.is-video-fallback .process-scene__video {
  display: block;
  opacity: 1;
}
.has-process-story .process-scene__shade {
  background:
    linear-gradient(90deg, rgba(7,7,8,.96) 0%, rgba(7,7,8,.82) 30%, rgba(7,7,8,.38) 56%, rgba(7,7,8,.12) 100%),
    linear-gradient(0deg, rgba(7,7,8,.9) 0%, rgba(7,7,8,.62) 30%, transparent 66%),
    radial-gradient(ellipse at 73% 44%, transparent 22%, rgba(7,7,8,.26) 86%);
}
.has-process-story .process-scene__content {
  height: 100%;
  min-height: 0;
  align-items: flex-end;
  padding-top: max(170px, 20svh);
  padding-bottom: clamp(60px, 8svh, 100px);
}
.has-process-story .process-scene__copy { width: min(560px, 43vw); }
.has-process-story .process-scene__step {
  opacity: var(--headline-progress);
  transform: translateY(calc((1 - var(--headline-progress)) * 14px));
}
.has-process-story .process-scene h3 {
  opacity: var(--headline-progress);
  transform: translateY(calc((1 - var(--headline-progress)) * 110%));
  will-change: transform, opacity;
}
.has-process-story .process-scene__underline {
  transform: scaleX(var(--underline-progress)) rotate(-1deg);
  opacity: var(--underline-progress);
  will-change: transform, opacity;
}
.has-process-story .process-scene__details {
  opacity: var(--details-progress);
  transform: translateY(calc((1 - var(--details-progress)) * 22px));
  will-change: transform, opacity;
}
.has-process-story .process-scene__tags li {
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}
.has-process-story .process-scene__tags li:nth-child(1) { opacity: var(--tag-1); transform: translateY(calc((1 - var(--tag-1)) * 10px)); }
.has-process-story .process-scene__tags li:nth-child(2) { opacity: var(--tag-2); transform: translateY(calc((1 - var(--tag-2)) * 10px)); }
.has-process-story .process-scene__tags li:nth-child(3) { opacity: var(--tag-3); transform: translateY(calc((1 - var(--tag-3)) * 10px)); }
.has-process-story .process-scene__tags li:nth-child(4) { opacity: var(--tag-4); transform: translateY(calc((1 - var(--tag-4)) * 10px)); }
.has-process-story .process-story__progress {
  position: absolute;
  z-index: 22;
  right: 34px;
  top: 50%;
  display: grid;
  gap: 12px;
  translate: 0 -50%;
}
.has-process-story .process-story__progress span {
  width: 4px;
  height: 30px;
  background: rgba(255,255,255,.14);
  transition: background .25s, box-shadow .25s;
}
.has-process-story .process-story__progress span.is-active {
  background: var(--lime);
  box-shadow: 0 0 14px rgba(207,255,76,.38);
}
.has-process-story .process-story__cue {
  position: absolute;
  z-index: 22;
  right: clamp(58px, 6vw, 100px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: var(--cue-opacity, 0);
  transform: translateY(calc((1 - var(--cue-opacity, 0)) * 8px));
}
.has-process-story .process-story__cue i {
  width: 42px;
  height: 1px;
  background: var(--lime);
  position: relative;
}
.has-process-story .process-story__cue i::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--lime);
  border-bottom: 1px solid var(--lime);
  rotate: 45deg;
}
body.is-process-story-active .nav { opacity: .42; }
body.is-process-story-active .rail { opacity: .32; }

.phototag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact { background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 6vw, 110px);
  align-items: start;
}
.contact__sub { color: var(--muted); font-size: 15.5px; max-width: 46ch; margin-bottom: 44px; }
.contactlist { border-top: 1px solid var(--line); margin-bottom: 40px; }
.contactlist li {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.contactlist .mono {
  width: 76px;
  flex: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.contactlist a { transition: color 0.3s; }
.contactlist a:hover { color: var(--lime); }
.contact__avail { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }

.brief {
  padding: clamp(30px, 3.4vw, 52px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-hp { display: none; }
.brief__kicker { display: block; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.brief__title { font-family: var(--heading); font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 34px; }
.brief__title .serif { color: var(--accent); font-weight: 700; }
.brief__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
  margin-bottom: 26px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field > .mono {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.field > .mono i { font-style: normal; color: var(--lime); }
.field > .mono em { font-family: var(--serif); text-transform: none; letter-spacing: 0.04em; font-size: 12px; color: var(--faint); }
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 56px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.field textarea { min-height: 132px; }
.field input::placeholder, .field textarea::placeholder { color: var(--grey-500); }
.field input:focus, .field textarea:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.05); }
.field input:focus-visible,
.field textarea:focus-visible,
.consent input:focus-visible + .consent__box {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 26px;
  cursor: pointer;
}
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent__box {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid #3A3A40;
  border-radius: 5px;
  background: #141417;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.consent input:checked + .consent__box { background: var(--lime); border-color: var(--lime); }
.consent input:checked + .consent__box::after {
  content: '';
  position: absolute;
  inset: 3px 4px 5px;
  border-left: 2px solid #0A0A0B;
  border-bottom: 2px solid #0A0A0B;
  transform: rotate(-45deg);
}
.brief__status {
  min-height: 18px;
  margin: -8px 0 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.brief__status[data-state="success"] { color: var(--accent); }
.brief__status[data-state="error"] { color: #FCA5A5; }
.btn--submit { width: 100%; justify-content: center; padding: 17px; font-size: 14.5px; }
.btn--submit .btn__done,
.btn--submit .btn__loading { display: none; color: var(--lime); }
.btn--submit.is-loading { pointer-events: none; opacity: 0.78; }
.btn--submit.is-loading .btn__idle { display: none; }
.btn--submit.is-loading .btn__loading { display: inline; color: var(--text); }
.btn--submit.is-sent .btn__idle { display: none; }
.btn--submit.is-sent .btn__done { display: inline; }
.btn--submit.is-sent { border-color: rgba(37, 99, 235, 0.5); }

/* ════════════════════════════════════════════
   PROFILE
   ════════════════════════════════════════════ */
.profile__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(44px, 5vw, 90px);
  align-items: center;
  margin-top: 40px;
}
.profile__img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  aspect-ratio: 0.88;
}
.profile__img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.profile__name { font-size: clamp(48px, 5.6vw, 84px); line-height: 0.95; margin-bottom: 26px; }
.chip--icon { gap: 8px; }
.profile__bio { color: var(--muted); font-size: 16px; max-width: 44ch; margin: 28px 0 44px; }
.profile__bio .serif { color: var(--lime); font-size: 1.15em; }
.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tile {
  position: relative;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.tile b { display: block; font-family: var(--heading); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.tile sup { font-size: 0.55em; color: var(--lime); }
.tile .mono { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.tile i {
  position: absolute;
  top: 14px;
  right: 14px;
  font-style: normal;
  font-size: 13px;
  color: #3C3C42;
}

/* ════════════════════════════════════════════
   RESULTS — bento
   ════════════════════════════════════════════ */
.results { background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.results__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.results__title { font-family: var(--heading); font-size: clamp(56px, 7vw, 96px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.results__sub { color: var(--muted); font-size: 14px; }

.bento {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
}
.bcard {
  position: relative;
  padding: clamp(28px, 2.6vw, 42px);
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s;
}
.bcard:hover { border-color: var(--line-hover); }
.bcard__legend { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.bcard__title { font-family: var(--heading); font-size: clamp(22px, 1.9vw, 28px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.bcard__title .serif { color: var(--accent); font-weight: 700; }
.bcard__body { color: var(--muted); font-size: 14px; max-width: 46ch; margin-bottom: 26px; }
.bcard__corner {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.bignums { display: flex; gap: clamp(24px, 3vw, 56px); flex-wrap: wrap; margin-bottom: 30px; }
.bignum b { display: block; font-family: var(--heading); font-size: clamp(28px, 2.6vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-bottom: 9px; }
.bignum .mono { display: flex; align-items: center; gap: 7px; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

.chart { position: relative; }
.chart svg { width: 100%; height: 170px; display: block; }
.chart__line { stroke-dasharray: 900; stroke-dashoffset: 900; }
.chart__area { opacity: 0; transition: opacity 1s ease 0.9s; }
.chart__tip { opacity: 0; transition: opacity 0.4s ease 1.5s; }
.bcard--chart.in-view .chart__line { animation: drawLine 1.8s var(--ease-out) 0.3s forwards; }
.bcard--chart.in-view .chart__area { opacity: 1; }
.bcard--chart.in-view .chart__tip { opacity: 1; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.chart__badge {
  position: absolute;
  top: -6px;
  right: 4px;
  padding: 5px 10px;
  background: var(--accent);
  color: #F8FAFC;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.5s var(--ease-out) 1.6s, translate 0.5s var(--ease-out) 1.6s;
}
.bcard--chart.in-view .chart__badge { opacity: 1; translate: 0 0; }

.featlist { border-top: 1px solid var(--line-soft); margin-top: 8px; }
.featlist li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 17px 2px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.featlist b { font-weight: 700; }
.featlist span { color: var(--faint); }

.bcard__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 26px; }
.bcard__meta .mono { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

.flow {
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}
.flow__ghost {
  position: absolute;
  left: 8px;
  top: 50%;
  translate: 0 -50%;
  font-size: 90px;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  white-space: nowrap;
}
.flow__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
.flow__steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #34343a 0 6px, transparent 6px 12px);
}
.flow__steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.flow__steps i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-style: normal;
  font-size: 13px;
  background: #16161a;
  border: 1px solid #2C2C32;
  color: var(--muted);
}
.flow__steps li.is-live i { background: var(--lime); color: #0A0A0B; border-color: var(--lime); }
.flow__steps b { font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); }
.flow__steps span { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

.rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 6px; }
.ring { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
.ring svg { width: 76px; height: 76px; transform: rotate(-90deg); }
.ring__track { fill: none; stroke: #222227; stroke-width: 5; }
.ring__fill {
  fill: none;
  stroke: var(--lime);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  stroke-dashoffset: 213.6;
}
.bcard--scores.in-view .ring__fill { animation: ringFill 1.6s var(--ease-out) forwards; }
.bcard--scores.in-view .ring:nth-child(1) .ring__fill { animation-delay: 0.15s; }
.bcard--scores.in-view .ring:nth-child(2) .ring__fill { animation-delay: 0.3s; }
.bcard--scores.in-view .ring:nth-child(3) .ring__fill { animation-delay: 0.45s; }
.bcard--scores.in-view .ring:nth-child(4) .ring__fill { animation-delay: 0.6s; }
@keyframes ringFill { to { stroke-dashoffset: 0; } }
.ring b {
  position: absolute;
  top: 38px;
  translate: 0 -50%;
  font-size: 16px;
  font-weight: 700;
}
.ring .mono { font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq__sub { color: var(--muted); font-size: 15px; max-width: 52ch; margin-bottom: 50px; }
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding 0.3s var(--ease-out);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { padding-left: 14px; }
.acc__num { font-size: 10.5px; color: var(--faint); }
.acc__q { font-size: clamp(16px, 1.5vw, 19px); font-weight: 700; letter-spacing: -0.01em; }
.acc__icon { position: relative; width: 16px; height: 16px; justify-self: end; }
.acc__icon::before, .acc__icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.acc__icon::before { left: 0; right: 0; top: 7px; height: 1.6px; }
.acc__icon::after { top: 0; bottom: 0; left: 7px; width: 1.6px; }
.acc[open] .acc__icon::after { transform: scaleY(0); }
.acc[open] .acc__icon::before { background: var(--lime); }
.acc__a { overflow: hidden; }
.acc__a p {
  padding: 0 4px 28px 66px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 70ch;
}
.faq__more { margin-top: 44px; }

/* ════════════════════════════════════════════
   REFERENCES
   ════════════════════════════════════════════ */
.refs { padding-top: 80px; padding-bottom: 110px; }
.refs__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: start;
}
.refs__intro h3 { font-family: var(--heading); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.refs__intro p { color: var(--muted); font-size: 13.5px; max-width: 36ch; }
.refs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.refs__list li { border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.refs__list a { display: block; padding: 20px 22px; height: 100%; transition: background 0.3s; }
.refs__list a:hover { background: rgba(255, 255, 255, 0.025); }
.refs__list b { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text); margin-bottom: 8px; transition: color 0.3s; }
.refs__list a:hover b { color: var(--lime); }
.refs__list span { font-size: 12px; color: var(--faint); line-height: 1.55; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 80px 0 70px;
}
.footer__mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.footer__tagline { font-family: var(--heading); font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; }
.footer__tagline .serif { color: var(--accent); font-weight: 700; }
.footer__col { display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; color: var(--muted); }
.footer__head {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line-soft);
}
.footer__bottom .mono {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ════════════════════════════════════════════
   STACK STRIP — horizontal logo marquee
   ════════════════════════════════════════════ */
.stackbar { padding: 34px 0 4px; }
.stackbar__label { margin-bottom: 26px; }
.logobar {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.logobar__track {
  display: flex;
  align-items: center;
  gap: 58px;
  width: max-content;
  will-change: transform;
  animation: logoScroll 34s linear infinite;
}
.logobar:hover .logobar__track { animation-play-state: paused; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logoitem {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.3s;
}
.logoitem:hover { color: var(--lime); }
.logoitem svg { height: 22px; width: auto; flex: none; display: block; }

/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.pricing { background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.pricing__sub { color: var(--muted); font-size: 15.5px; max-width: 56ch; margin-bottom: 56px; }
.ptiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.ptier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s, transform 0.45s var(--ease-out);
}
.ptier:hover { border-color: var(--line-hover); transform: translateY(-4px); }
.ptier--featured {
  border-color: rgba(37, 99, 235, 0.42);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.10), var(--card) 42%);
}
.ptier__badge {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  padding: 5px 12px;
  background: var(--accent);
  color: #F8FAFC;
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ptier__name { font-family: var(--heading); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.ptier__desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 26px; min-height: 42px; }
.ptier__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.ptier__from { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.ptier__price b { font-family: var(--heading); font-size: 46px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.ptier__per { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.ptier__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; flex: 1; }
.ptier__list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--muted); }
.ptier__list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
}
.ptier__cta { width: 100%; justify-content: center; margin-top: auto; }
.pricing__note { margin-top: 30px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }

/* ════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.cta__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  translate: -50% -50%;
  width: 720px;
  height: 720px;
  max-width: 92vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 60%);
  filter: blur(34px);
  pointer-events: none;
}
.cta__stars { position: absolute; inset: 0; pointer-events: none; }
.cta__stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
  animation: twinkle 4s ease infinite;
}
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta__label { justify-content: center; margin-bottom: 30px; }
.cta__title {
  font-family: var(--heading);
  font-size: clamp(46px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta__title .serif { color: var(--accent); font-weight: 700; }
.cta__sub { color: var(--muted); font-size: 16.5px; max-width: 52ch; margin-bottom: 40px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ════════════════════════════════════════════
   HERO ROTATING WORD
   ════════════════════════════════════════════ */
.rotate {
  display: inline-block;
  transition: opacity 0.34s var(--ease-out), filter 0.34s var(--ease-out), transform 0.34s var(--ease-out);
}

/* ════════════════════════════════════════════
   FOOTER NEWSLETTER
   ════════════════════════════════════════════ */
.ftnews { margin-top: 30px; }
.ftnews > p { font-size: 12.5px; color: var(--faint); margin: 8px 0 12px; max-width: 30ch; line-height: 1.5; }
.ftnews__row { display: flex; gap: 8px; max-width: 300px; }
.ftnews input {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.3s;
}
.ftnews input::placeholder { color: var(--grey-500); }
.ftnews input:focus { border-color: rgba(37, 99, 235, 0.5); }
.ftnews button { padding: 10px 15px; }
.ftnews.is-done .ftnews__row { display: none; }
.ftnews__ok { display: none; margin-top: 6px; font-size: 11px; letter-spacing: 0.04em; color: var(--lime); }
.ftnews.is-done .ftnews__ok { display: block; }

/* ════════════════════════════════════════════
   COOKIE CONSENT
   ════════════════════════════════════════════ */
.cookie {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 130;
  width: min(440px, calc(100vw - 44px));
  transform: translateY(150%);
  transition: transform 0.7s var(--ease-expo);
}
.cookie.is-in { transform: translateY(0); }
.cookie__inner {
  padding: 22px 24px;
  background: rgba(14, 14, 16, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.cookie__text { font-size: 13px; line-height: 1.55; color: var(--muted); margin-bottom: 16px; }
.cookie__text b { color: var(--text); }
.cookie__actions { display: flex; gap: 10px; }
.cookie__actions .btn { flex: 1; justify-content: center; padding: 11px; font-size: 12.5px; }

/* ════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 190;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px 14px 14px;
  background: rgba(14, 14, 16, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translate(-50%, 200%);
  opacity: 0;
  transition: transform 0.6s var(--ease-expo), opacity 0.4s;
}
.toast.is-in { transform: translate(-50%, 0); opacity: 1; }
.toast__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #F8FAFC;
  font-weight: 700;
  font-size: 14px;
  flex: none;
}
.toast__body { display: flex; flex-direction: column; gap: 1px; }
.toast__body b { font-size: 13.5px; }
.toast__body span { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════════
   CASE STUDY MODAL
   ════════════════════════════════════════════ */
.cs {
  position: fixed;
  inset: 0;
  z-index: 185;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.cs.is-open { opacity: 1; pointer-events: auto; }
.cs__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cs__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(26px) scale(0.98);
  transition: transform 0.5s var(--ease-expo);
}
.cs.is-open .cs__panel { transform: none; }
.cs__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  transition: color 0.3s, border-color 0.3s;
}
.cs__close:hover { color: var(--accent); border-color: rgba(37, 99, 235, 0.4); }
.cs__close:focus-visible, .cs__actions .btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.cs__art {
  position: relative;
  height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cs-bg, linear-gradient(135deg, #20241a, #0c0c0d));
}
.cs__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  transition: opacity 0.3s;
}
.cs__art.has-image { height: clamp(220px, 40vw, 320px); }
.cs__art.has-image .cs__image { opacity: 1; }
.cs__art.has-image .cs__initial,
.cs__art.has-image .cs__tag { opacity: 0; }
.cs__initial { font-size: 96px; color: rgba(255, 255, 255, 0.92); line-height: 1; }
.cs__tag {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.cs__content { padding: clamp(28px, 4vw, 44px); }
.cs__num { font-size: 11px; color: var(--faint); }
.cs__name { font-family: var(--heading); font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 8px; }
.cs__meta { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); margin-bottom: 30px; }
.cs__blocks { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.cs__block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.cs__block:last-child { border-bottom: 0; padding-bottom: 0; }
.cs__block > .mono { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); padding-top: 3px; }
.cs__block p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cs__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.cs__metric { padding: 18px 20px; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.cs__metric b { display: block; font-family: var(--heading); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 5px; }
.cs__metric span { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.cs__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cs__actions .btn { flex: 1 1 220px; justify-content: center; }

/* ════════════════════════════════════════════
   P3 — scroll progress, back-to-top, section accent
   ════════════════════════════════════════════ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 160;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

.rail__top {
  opacity: 0;
  pointer-events: none;
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), opacity 0.35s;
}
.rail__top.is-in { opacity: 1; pointer-events: auto; }

/* subtle dot-grid depth behind the contact section */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000, transparent 78%);
}
.contact__grid { position: relative; z-index: 1; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .container, .container--narrow, .menu__inner { width: calc(100% - 48px); }
  .services__grid, .bento { grid-template-columns: 1fr; }
  .ptiers { grid-template-columns: 1fr; max-width: 480px; }
  .process-story { width: calc(100% - 48px); }
  .process-scene { min-height: 600px; }
  .process-scene__copy { width: min(520px, 62%); }
  .has-process-story .process-story { width: 100%; height: 980vh; }
  .has-process-story .process-scene__media {
    top: clamp(96px, 12svh, 132px);
    right: -6vw;
    bottom: clamp(42px, 6svh, 70px);
    left: min(24vw, 300px);
  }
  .has-process-story .process-scene__copy { width: min(520px, 58vw); }
  body.is-process-story-active .rail { opacity: 0; pointer-events: none; }
  .contact__grid, .profile__grid, .refs__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .monolith { right: -4%; opacity: 0.55; }
  .hero__orbit { right: -28%; opacity: 0.55; }
}
@media (max-width: 768px) {
  .hero { background-position: 72% center; }
  .hero__video { object-position: 72% center; }
  .hero::before { background: rgba(4, 6, 10, 0.88); }
}
@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .section { padding: 90px 0; }
  .container, .container--narrow, .menu__inner { width: calc(100% - 32px); }
  .workrow a { grid-template-columns: 40px 1fr 36px; }
  .workrow__meta, .workrow__year { display: none; }
  .brief__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 16px; }
  .hero__title {
    font-size: clamp(44px, 12vw, 52px);
    line-height: 1.08;
    margin-bottom: 28px;
  }
  .hero__content { padding-bottom: 116px; }
  .stat__sep { display: none; }
  .rings { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .workpeek { display: none; }
  .nav__cta { display: none; }
  .rail { display: none; }
  .mobile-cta {
    display: flex;
    bottom: 8px;
    padding: 6px;
    border-radius: 20px;
  }
  .mobile-cta__link { min-height: 42px; }
  .cs__block { grid-template-columns: 1fr; gap: 5px; }
  .cookie { left: 16px; right: 16px; bottom: 78px; width: auto; }
  .toast { left: 16px; right: 16px; bottom: 78px; transform: translateY(200%); }
  .toast.is-in { transform: translateY(0); }
  .tiles { grid-template-columns: 1fr 1fr; }
  .flow__steps b { display: none; }
  .refs__list { grid-template-columns: 1fr; }
  .process { padding: 90px 0; }
  .process-story { width: calc(100% - 32px); }
  .process-story__chrome { margin-bottom: 28px; }
  .process-story__label { gap: 8px; font-size: 8px; letter-spacing: .16em; }
  .process-story__label span { width: 20px; }
  .process-scene { min-height: 680px; }
  .process-scene__content { min-height: 680px; padding: 300px 20px 36px; }
  .process-scene__copy { width: 100%; }
  .process-scene h3 { font-size: clamp(44px, 14vw, 62px); }
  .process-scene__details p { font-size: 14px; line-height: 1.6; }
  .process-scene__tags { gap: 9px 16px; }
  .process-scene__tags li { font-size: 8.5px; letter-spacing: .12em; }
  .has-process-story .process { padding: 0; }
  .has-process-story .process-story { width: 100%; height: 920vh; }
  .has-process-story .process-story__chrome {
    top: 82px;
    width: calc(100% - 32px);
  }
  .has-process-story .process-story__label { max-width: 68%; line-height: 1.5; }
  .has-process-story .process-scene__media {
    top: 9svh;
    right: -24vw;
    bottom: 38svh;
    left: -24vw;
    height: auto;
    -webkit-mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, #000 50%, rgba(0,0,0,.86) 64%, transparent 88%);
    mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, #000 50%, rgba(0,0,0,.86) 64%, transparent 88%);
  }
  .has-process-story .process-scene__shade {
    background:
      linear-gradient(0deg, rgba(7,7,8,.99) 0%, rgba(7,7,8,.92) 36%, rgba(7,7,8,.36) 68%, rgba(7,7,8,.14) 100%),
      radial-gradient(ellipse at 50% 28%, transparent 16%, rgba(7,7,8,.36) 84%);
  }
  .has-process-story .process-scene__content {
    align-items: flex-end;
    padding: max(170px, 20svh) 20px max(42px, 6svh);
  }
  .has-process-story .process-scene__copy { width: 100%; }
  .has-process-story .process-scene__step { margin-bottom: 11px; }
  .has-process-story .process-scene__underline { width: 150px; margin: 13px 0 17px; height: 2px; }
  .has-process-story .process-scene__details p { margin-bottom: 16px; }
  .has-process-story .process-story__progress { right: 12px; gap: 7px; }
  .has-process-story .process-story__progress span { width: 3px; height: 20px; }
  .has-process-story .process-story__cue {
    top: 54svh;
    right: 18px;
    bottom: auto;
  }
  body.is-process-story-active .rail { opacity: 0; pointer-events: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero__video { display: none !important; }
  .process-scene__poster { display: block !important; opacity: 1 !important; }
  .process-scene__canvas, .process-scene__video, .process-story__progress, .process-story__cue { display: none !important; }
}

/* ════════════════════════════════════════════
   SERVICE PAGES  (web-design · website-care · seo)
   ════════════════════════════════════════════ */
.svc-page__header { padding: 168px 0 4px; }
.svc-page__block  { padding: 52px 0; }

/* breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--faint);
}
.crumbs a { color: var(--faint); text-decoration: none; transition: color 0.2s var(--ease-out); }
.crumbs a:hover { color: var(--text); }
.crumbs [aria-current="page"] { color: var(--muted); }
.crumbs span[aria-hidden="true"] { color: var(--grey-700); }

/* intro lead */
.svc-lead {
  max-width: 60ch;
  margin-top: 12px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}

/* body copy */
.svc-page__block p { max-width: 62ch; color: var(--muted); line-height: 1.75; }
.svc-page__block h2 + p { margin-top: 14px; }
.svc-page__block p + p { margin-top: 16px; }
.svc-page__block strong { color: var(--text); font-weight: 600; }
.svc-page__block p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-hover);
  transition: text-decoration-color 0.2s var(--ease-out);
}
.svc-page__block p a:hover { text-decoration-color: var(--text); }

/* button row + chips spacing */
.svc-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.svc-page .chips { margin-top: 24px; }

@media (max-width: 768px) {
  .svc-page__header { padding: 128px 0 4px; }
  .svc-page__block { padding: 40px 0; }
}
