@import url('https://db.onlinewebfonts.com/c/e66905e07608167a84e6ad52f638c3c6?family=Helvetica+Now+Var');

/* ============================================================
   AXON — editorial landing page
   ============================================================ */

:root {
  --ink: #1a1a1a;
  --panel: #C5C5C5;
  --accent: #1a1a1a;
  --gold: #B0895A;
  --gold-soft: rgba(176, 137, 90, 0.22);
  --reveal-dur: 0.7s;
  --hero-panel-h: 48%;
  --font: 'Helvetica Now Var', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: #0b0b0b;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

/* ------------------------------------------------------------
   Reveal (replaces framer FadeUp)
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 24px));
  transition: opacity var(--reveal-dur, 0.7s) cubic-bezier(0.22, 1, 0.36, 1),
              transform var(--reveal-dur, 0.7s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ------------------------------------------------------------
   Fixed background video
   ------------------------------------------------------------ */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  object-fit: cover;
  z-index: 0;
}
.bg-video-scrim {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.28) 100%);
}

.page { position: relative; }

/* ------------------------------------------------------------
   Navbar
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  --nav-fg: var(--ink);
  --nav-border: rgba(0, 0, 0, 0.18);
  border-bottom-color: var(--nav-border);
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.nav--solid {
  --nav-fg: #f2f1ee;
  --nav-border: rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 15px 32px;
}
.nav--dark-section {
  --nav-fg: #f2f1ee;
  --nav-border: rgba(255, 255, 255, 0.12);
}
.nav--dark-section .nav-hamburger span { background: #f2f1ee; }
.nav-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-fg);
  transition: color 0.4s ease;
}
.nav-group { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--nav-fg);
  transition: opacity 0.25s ease, color 0.4s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { opacity: 1; }
.nav-dot { font-size: 11px; color: var(--nav-fg); opacity: 0.35; }

.nav-hamburger { display: none; width: 22px; height: 14px; position: relative; }
.nav-hamburger span {
  position: absolute; left: 0; height: 1.5px; width: 100%;
  background: var(--nav-fg); transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 6px; }
.nav-hamburger span:nth-child(3) { top: 12px; }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 30;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay a {
  font-size: 22px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink);
}
.mobile-overlay-close {
  position: absolute; top: 22px; right: 26px;
  width: 26px; height: 26px; color: var(--ink);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  z-index: 1;
}
.hero-top-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--hero-panel-h, 48%);
  background-color: var(--panel);
  background-image:
    linear-gradient(158deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 40%),
    linear-gradient(0deg, rgba(0,0,0,0.07), rgba(0,0,0,0) 32%);
  display: flex; flex-direction: column;
  padding-top: 70px;
}
.hero-top-inner {
  flex: 1;
  display: flex; align-items: flex-end;
  padding: 0 32px 24px;
}
.hero-row { display: flex; gap: 48px; width: 100%; }
.hero-left {
  width: 32%;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 80px;
}
.hero-right {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 80px;
}
.hero-h1 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: pre-line;
}
.hero-counter {
  font-size: 11px; letter-spacing: 0.08em; color: #666;
}
.hero-lede {
  font-size: 18px; line-height: 1.6; color: #5a5a5a;
  max-width: 340px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 13px 36px;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { opacity: 0.82; }
.btn-ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--accent); color: #fff; }

.hero-bottom-text {
  position: absolute;
  top: 74%; transform: translateY(-50%);
  left: 32px;
  max-width: 260px;
  font-size: 14px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
}

/* ------------------------------------------------------------
   Statement
   ------------------------------------------------------------ */
.statement {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 70px 32px 32px;
}
.statement-inner { max-width: 720px; padding: 80px 0; }
.statement-h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  display: flex; flex-wrap: wrap; gap: 0.25em;
}
.statement-word { display: inline-block; }
.statement-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 260px;
  margin-top: 24px;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   Services
   ------------------------------------------------------------ */
.services {
  position: relative; z-index: 2;
  background: var(--panel);
  padding: 70px 32px 80px;
}
.section-counter {
  font-size: 11px; letter-spacing: 0.08em; color: #666;
  margin-bottom: 40px;
}
.services-head {
  display: flex; gap: 48px;
  margin-bottom: 48px;
}
.services-head-left { width: 32%; }
.services-h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 320px;
  line-height: 1.05;
  display: flex; flex-wrap: wrap; gap: 0.22em;
}
.services-head-right { flex: 1; display: flex; align-items: flex-end; }
.services-sub {
  font-size: 14px; color: #3a3a3a; max-width: 320px; line-height: 1.6;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr;
}
.card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 16px;
}
.card-video-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.card-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-text { padding: 24px 28px 28px; }
.card-h3 {
  font-size: 18px; font-weight: 600; color: var(--ink);
  margin-bottom: 14px;
}
.card-p { font-size: 13px; line-height: 1.6; color: #3a3a3a; }

/* ------------------------------------------------------------
   Stats band
   ------------------------------------------------------------ */
.stats {
  position: relative; z-index: 2;
  background: var(--ink);
  color: #fff;
  padding: 80px 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { border-left: 1px solid rgba(255,255,255,0.16); padding-left: 24px; }
.stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex; align-items: baseline;
}
.stat-suffix { font-size: 0.42em; font-weight: 600; margin-left: 4px; color: rgba(255,255,255,0.6); }
.stat-label {
  margin-top: 16px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 150px;
}

/* ------------------------------------------------------------
   Process
   ------------------------------------------------------------ */
.process {
  position: relative; z-index: 2;
  background: var(--panel);
  padding: 90px 32px;
}
.process-head { margin-bottom: 64px; max-width: 520px; }
.process-h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700; text-transform: uppercase; color: var(--ink);
  line-height: 1.05;
}
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-line {
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 1px; background: rgba(0,0,0,0.25);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.step-num {
  font-size: 11px; letter-spacing: 0.1em; color: #666;
  margin-bottom: 10px;
}
.step-h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step-p { font-size: 14px; line-height: 1.6; color: #3a3a3a; max-width: 280px; }

/* ------------------------------------------------------------
   CTA + footer
   ------------------------------------------------------------ */
.cta {
  position: relative; z-index: 2;
  background: var(--ink); color: #fff;
  padding: 120px 32px 90px;
  text-align: center;
}
.cta-h2 {
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 900px; margin: 0 auto 44px;
}
.cta-h2 em { font-style: italic; color: rgba(255,255,255,0.55); }
.btn-light { background: #fff; color: var(--ink); padding: 16px 44px; font-size: 12px; }
.btn-light:hover { opacity: 0.85; }

.footer {
  position: relative; z-index: 2;
  background: var(--ink); color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 70px 32px 36px;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.footer-brand {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-tagline {
  margin-top: 16px; font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.5); max-width: 260px;
}
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col-title {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.8);
  margin-bottom: 12px; transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 0.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-copy { font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a {
  color: rgba(255,255,255,0.7); transition: color 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { color: #fff; transform: translateY(-2px); }

/* ------------------------------------------------------------
   Fixed overlays
   ------------------------------------------------------------ */
.scroll-indicator {
  position: fixed;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 7px;
  transition: opacity 0.5s ease;
}
.scroll-dot {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

.repost-btn {
  position: fixed;
  bottom: 24px; right: 26px;
  z-index: 5;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.5s ease;
}
.repost-btn:hover { opacity: 0.6; }
.overlay-hidden { opacity: 0 !important; pointer-events: none; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav { padding: 16px 18px; }
  .nav-center, .nav-right { display: none; }
  .nav-hamburger { display: block; }

  .hero { height: auto; min-height: 100vh; min-height: 100svh; }
  .hero-top-panel {
    position: relative; height: auto;
    min-height: 60vh; min-height: 60svh;
    padding-top: 82px;
  }
  .hero-top-inner { padding: 36px 18px 26px; }
  .hero-row { flex-direction: column; gap: 30px; }
  .hero-left, .hero-right { width: 100%; gap: 22px; }
  .hero-bottom-text {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto; transform: none;
    max-width: none; margin: 0; padding: 32px 18px 96px;
  }

  .statement { padding: 70px 18px 32px; }
  .services { padding: 56px 18px 64px; }
  .services-head { flex-direction: column; gap: 20px; }
  .services-head-left { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }

  .stats { padding: 56px 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }

  .process { padding: 64px 18px; }
  .process-steps { grid-template-columns: 1fr; gap: 44px; }
  .process-line { display: none; }

  .cta { padding: 80px 18px 64px; }
  .footer { padding: 56px 18px 32px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-cols { gap: 48px; }
}

@media (max-width: 600px) {
  .hero-top-panel { min-height: 66vh; min-height: 66svh; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav { padding: 14px 16px; }
  .nav--solid { padding: 12px 16px; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PREMIUM LAYER — texture, micro-interactions, subpages
   ============================================================ */

::selection { background: var(--accent); color: #fff; }
body { font-feature-settings: "kern" 1, "liga" 1, "calt" 1; }

/* Film grain ------------------------------------------------ */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  z-index: 40;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Premium primitives --------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: currentColor;
}
.eyebrow-tick {
  width: 24px; height: 1px; background: var(--gold); opacity: 0.95;
  display: inline-block;
}
.word { display: inline-block; }

/* Arrow button --------------------------------------------- */
.abtn {
  display: inline-flex; align-items: center; gap: 0;
  border-radius: 999px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 14px 14px 28px;
  overflow: hidden;
  transition: background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}
.abtn-label { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.abtn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 0; margin-left: 0; opacity: 0;
  transform: translateX(-6px);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1),
              margin 0.4s cubic-bezier(0.22,1,0.36,1);
}
.abtn:hover .abtn-arrow { width: 16px; opacity: 1; margin-left: 10px; transform: translateX(0); }
.abtn--solid { background: var(--accent); color: #fff; }
.abtn--solid:hover { opacity: 0.85; }
.abtn--invert { background: #f2f1ee; color: #111; }
.abtn--invert:hover { background: #fff; }
.abtn--ghost { background: transparent; border: 1px solid currentColor; }
.abtn--ghost:hover { background: currentColor; }
.abtn--ghost:hover .abtn-label,
.abtn--ghost:hover .abtn-arrow { color: var(--page-bg, #0d0d0d); }

/* Marquee --------------------------------------------------- */
.marquee { overflow: hidden; width: 100%; }
.marquee-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center;
  font-size: clamp(28px, 4vw, 56px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.marquee-dot { margin: 0 0.5em; opacity: 0.35; font-weight: 300; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-band {
  position: relative; z-index: 2;
  background: var(--ink); color: #f2f1ee;
  padding: 46px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   3D LAYER — wireframe scene + interactive tilt
   ============================================================ */
.hero-scene {
  position: absolute;
  right: 6%; top: 49%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.55));
  opacity: 0;
  animation: scene3dIn 1.3s 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes scene3dIn {
  from { opacity: 0; transform: translateY(24px) scale(0.9); }
  to { opacity: 1; transform: none; }
}
.scene3d { display: block; }

.tilt {
  position: relative;
  transform: perspective(1100px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt.is-tilting { transition: transform 0.12s ease-out, box-shadow 0.3s ease; }
.tilt-glare {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 3;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.16), transparent 46%);
  opacity: 0; transition: opacity 0.4s ease;
}
.tilt.is-tilting .tilt-glare { opacity: 1; }

/* tilt cells keep the card stretching inside the grid */
.tilt-cell { display: flex; }
.tilt-cell > .tilt { flex: 1; display: flex; flex-direction: column; }

@media (max-width: 900px) {
  .hero-scene { display: none; }
}

.connect-scene {
  margin: 10px 0 0 -24px;
  opacity: 0;
  animation: scene3dIn 1.2s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ============================================================
   PREMIUM INTERACTION LAYER
   ============================================================ */

/* Mask-reveal words ----------------------------------------- */
.mword {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-bottom: 0.12em; margin-bottom: -0.12em;
}
.mword-in { display: inline-block; }

/* Intro loader ---------------------------------------------- */
.intro {
  position: fixed; inset: 0; z-index: 120;
  background: #0a0a0b; color: #f2f1ee;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.intro--lift { transform: translateY(-100%); }
.intro-inner { display: flex; flex-direction: column; align-items: center; }
.intro-brand { overflow: hidden; }
.intro-brand span {
  display: inline-block;
  font-size: clamp(44px, 9vw, 92px); font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro-sub {
  margin-top: 16px; font-size: 11px; letter-spacing: 0.32em;
  color: rgba(242, 241, 238, 0.45); text-transform: uppercase;
}
.intro-pct {
  position: absolute; right: 28px; bottom: 26px;
  font-size: 12px; letter-spacing: 0.14em; color: rgba(242, 241, 238, 0.55);
  font-variant-numeric: tabular-nums;
}
.intro-bar { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255, 255, 255, 0.1); }
.intro-bar span { display: block; height: 100%; background: #f2f1ee; transition: width 0.2s ease; }

/* Custom cursor --------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor { cursor: none; }
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor .tilt,
  body.has-cursor [data-cursor] { cursor: none; }
  body.has-cursor input,
  body.has-cursor textarea { cursor: text; }
}
.cursor {
  position: fixed; top: 0; left: 0; z-index: 130;
  pointer-events: none; mix-blend-mode: difference;
  transform: translate(-100px, -100px);
  transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor-ring, .cursor-dot {
  position: absolute; left: 0; top: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid #fff;
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1), height 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.cursor-dot { width: 5px; height: 5px; background: #fff; transition: opacity 0.25s ease; }
.cursor.is-hover .cursor-ring { width: 56px; height: 56px; }
.cursor.is-hover .cursor-dot { opacity: 0; }
.cursor.is-down .cursor-ring { width: 26px; height: 26px; }
.cursor-label {
  position: absolute; left: 0; top: 0;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; white-space: nowrap; opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.cursor.is-label .cursor-ring { width: 74px; height: 74px; }
.cursor.is-label .cursor-dot { opacity: 0; }
.cursor.is-label .cursor-label { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Scroll progress ------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  z-index: 11; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(242,241,238,0.35), #f2f1ee);
  transition: width 0.12s linear;
}

/* Magnetic -------------------------------------------------- */
.magnetic {
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Depth: subtle vignette on dark pages ---------------------- */
.subpage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(120% 80% at 50% 0%, transparent 55%, rgba(0,0,0,0.45) 100%);
}
.subpage-inner { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .intro-brand span { transition: none; }
}

/* Page route transition ------------------------------------ */.route { animation: routeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes routeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .route { animation: none; } }

/* ============================================================
   SUBPAGE SYSTEM (dark editorial canvas)
   ============================================================ */
.subpage {
  --page-bg: #0d0b09;
  --accent-on-dark: #ECECEA;
  position: relative; z-index: 2;
  background-color: var(--page-bg);
  background-image: radial-gradient(120% 60% at 50% -10%, rgba(176,137,90,0.07), rgba(0,0,0,0) 60%);
  color: #ECECEA;
  min-height: 100vh;
  padding: 150px 32px 0;
}
.subpage-inner { max-width: 1180px; margin: 0 auto; }
.hair { height: 1px; background: rgba(255,255,255,0.12); width: 100%; }

.page-head { padding-bottom: 64px; }
.page-head-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 38px; color: rgba(236,236,234,0.7);
}
.page-head-index { font-size: 11px; letter-spacing: 0.08em; color: rgba(236,236,234,0.4); }
.page-head-title {
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; gap: 0.2em;
}
.page-head-lede {
  margin-top: 36px; max-width: 520px;
  font-size: 19px; line-height: 1.6; color: rgba(236,236,234,0.62);
}

/* Offering -------------------------------------------------- */
.offer-list { border-top: 1px solid rgba(255,255,255,0.12); }
.offer-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.4fr auto;
  gap: 32px; align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.4s ease, padding 0.4s ease;
}
.offer-row:hover { background: rgba(255,255,255,0.02); }
.offer-index { font-size: 13px; color: rgba(236,236,234,0.4); padding-top: 6px; }
.offer-title {
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.1;
  display: flex; align-items: center; gap: 18px;
}
.offer-title svg { color: var(--gold); flex-shrink: 0; }
.offer-desc { font-size: 15px; line-height: 1.65; color: rgba(236,236,234,0.6); max-width: 420px; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.tag {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(236,236,234,0.72);
  white-space: nowrap;
}

/* Work / case ----------------------------------------------- */
.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.case-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 38px 38px 34px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 320px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), background 0.5s ease, border-color 0.5s ease;
}
.case-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.22); }
.case-top { display: flex; align-items: center; justify-content: space-between; }
.case-sector { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,236,234,0.5); }
.case-index { font-size: 12px; color: rgba(236,236,234,0.35); }
.case-metric {
  font-size: clamp(54px, 7vw, 88px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.9; margin-top: auto;
  display: flex; align-items: baseline;
}
.case-metric .case-unit { font-size: 0.32em; font-weight: 600; margin-left: 6px; color: rgba(236,236,234,0.55); }
.case-result { font-size: 16px; line-height: 1.55; color: rgba(236,236,234,0.72); max-width: 380px; }
.case-name { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: #ECECEA; }

/* Rates ----------------------------------------------------- */
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.rate-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 36px 32px 34px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.015);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.rate-card:hover { transform: translateY(-4px); }
.rate-card--feature {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 30px 60px -30px rgba(0,0,0,0.7);
  background: rgba(176,137,90,0.05);
}
.rate-badge {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: var(--gold); color: #16120c;
  margin-bottom: 22px;
}
.rate-name { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(236,236,234,0.65); }
.rate-price { font-size: clamp(38px, 4.5vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin: 16px 0 6px; }
.rate-price small { font-size: 14px; font-weight: 500; color: rgba(236,236,234,0.5); letter-spacing: 0; }
.rate-tagline { font-size: 14px; line-height: 1.55; color: rgba(236,236,234,0.6); padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.rate-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 26px 0 32px; flex: 1; }
.rate-list li { display: flex; gap: 12px; font-size: 14px; line-height: 1.45; color: rgba(236,236,234,0.78); }
.rate-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Crew ------------------------------------------------------ */
.crew-statement {
  font-size: clamp(24px, 3.4vw, 44px); font-weight: 600;
  line-height: 1.18; letter-spacing: -0.015em; max-width: 900px;
  color: #ECECEA; padding-bottom: 72px;
}
.crew-statement .dim { color: rgba(236,236,234,0.42); }
.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.crew-card {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 18px;
  padding: 28px; display: flex; flex-direction: column; gap: 18px;
  transition: background 0.4s ease, transform 0.4s ease;
}
.crew-card:hover { background: rgba(255,255,255,0.025); transform: translateY(-4px); }
.crew-avatar {
  width: 56px; height: 56px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; letter-spacing: 0.02em;
  background: var(--accent); color: #fff;
}
.crew-name { font-size: 18px; font-weight: 600; }
.crew-role { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(236,236,234,0.5); margin-top: 4px; }
.crew-bio { font-size: 14px; line-height: 1.6; color: rgba(236,236,234,0.62); }

.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 8px; }
.value-num { font-size: 12px; color: rgba(236,236,234,0.4); margin-bottom: 14px; }
.value-title { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.value-text { font-size: 14px; line-height: 1.6; color: rgba(236,236,234,0.6); }

/* Connect / contact ----------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 36px; }
.contact-block-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(236,236,234,0.45); margin-bottom: 12px; }
.contact-block-value { font-size: 18px; line-height: 1.5; color: #ECECEA; }
.contact-block-value a:hover { color: var(--accent-on-dark, #9fb4ff); }

.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(236,236,234,0.55); }
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: var(--font); font-size: 15px; color: #ECECEA;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(236,236,234,0.32); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,0.05);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid textarea { border-color: #d8674e; }
.field-error { font-size: 12px; color: #e08a76; }
.form-actions { display: flex; align-items: center; gap: 20px; margin-top: 6px; }
.form-note { font-size: 12px; color: rgba(236,236,234,0.4); }
.form-success {
  border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
  padding: 48px 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.form-success-icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 24px; font-weight: 600; }
.form-success p { font-size: 15px; color: rgba(236,236,234,0.6); max-width: 320px; line-height: 1.6; }

/* Subpage closing CTA -------------------------------------- */
.subpage-cta {
  margin-top: 110px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 90px 0 110px;
  display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center;
}
.subpage-cta h2 {
  font-size: clamp(30px, 5vw, 64px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.02; max-width: 760px;
}
.subpage-cta h2 em { font-style: italic; color: rgba(236,236,234,0.45); }

/* Responsive (premium) ------------------------------------- */
@media (max-width: 900px) {
  .subpage { padding: 120px 18px 0; }
  .offer-row { grid-template-columns: 40px 1fr; gap: 14px 18px; }
  .offer-desc { grid-column: 2; max-width: none; }
  .offer-tags { grid-column: 2; justify-content: flex-start; }
  .case-grid { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: 1fr; }
  .crew-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .subpage-cta { margin-top: 70px; padding: 60px 0 80px; }
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .marquee-item { font-size: 30px; }
}

/* ============================================================
   CRAFT PASS — hero detail, materials, new sections, transitions
   ============================================================ */

/* Hero eyebrow + status ------------------------------------- */
.hero-left-top { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #4f4f4f; margin-bottom: 22px;
}
.hero-meta { display: flex; flex-direction: column; gap: 12px; }
.status { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #5a5a5a; }
.status-dot { width: 7px; height: 7px; border-radius: 999px; background: #3a9d5d; position: relative; }
.status-dot::after { content: ""; position: absolute; inset: 0; border-radius: 999px; animation: statusPulse 2.4s infinite; }
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(58,157,93,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(58,157,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,157,93,0); }
}

/* Dark card materials --------------------------------------- */
.case-card, .rate-card, .crew-card {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 42%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.rate-card--feature { background-image: linear-gradient(180deg, rgba(176,137,90,0.12), rgba(255,255,255,0) 46%); }

/* Capabilities / flow illustration -------------------------- */
.capabilities {
  position: relative; z-index: 2;
  background-color: var(--panel);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 28%);
  padding: 100px 32px;
}
.cap-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center;
  max-width: 1180px; margin: 0 auto;
}
.cap-copy h2 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.cap-copy p { font-size: 15px; line-height: 1.7; color: #3a3a3a; max-width: 380px; margin-top: 22px; }
.cap-list { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.cap-list li { display: flex; align-items: center; gap: 13px; font-size: 14px; color: #2a2a2a; letter-spacing: 0.01em; }
.cap-list li::before { content: ""; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.flow-figure { position: relative; }

.flow-svg { width: 100%; height: auto; overflow: visible; }
.flow-node { animation: nodeFloat 5.5s ease-in-out infinite; animation-delay: var(--d, 0s); transform-box: fill-box; transform-origin: center; }
@keyframes nodeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.flow-node rect { fill: rgba(0,0,0,0.02); stroke: rgba(0,0,0,0.26); stroke-width: 1; }
.flow-node-dot { fill: var(--gold); }
.flow-label { fill: #262626; font-size: 13px; font-weight: 500; font-family: var(--font); letter-spacing: 0.02em; text-anchor: start; }
.flow-conn { stroke: rgba(0,0,0,0.2); stroke-width: 1.4; }
.flow-pulse {
  stroke: var(--gold); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 6 240; stroke-dashoffset: 246;
  animation: flowPulse 3s linear infinite; animation-delay: var(--d, 0s);
}
@keyframes flowPulse { from { stroke-dashoffset: 246; } to { stroke-dashoffset: -6; } }
.flow-core polygon { fill: rgba(176,137,90,0.08); stroke: var(--ink); stroke-width: 1.5; }
.flow-core-inner { fill: none; stroke: var(--gold); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: corePulse 3s ease-in-out infinite; }
@keyframes corePulse { 0%, 100% { opacity: 0.45; transform: scale(1); } 50% { opacity: 1; transform: scale(1.07); } }
.flow-core-label { fill: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-anchor: middle; font-family: var(--font); }

/* Quote + aurora -------------------------------------------- */
.quote { position: relative; z-index: 2; background: #0b0a08; color: #ECECEA; padding: 130px 32px; overflow: hidden; }
.aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; filter: blur(72px); opacity: 0.5; }
.aurora span { position: absolute; width: 46vw; height: 46vw; border-radius: 999px; display: block; }
.aurora .a1 { background: radial-gradient(circle, rgba(176,137,90,0.55), transparent 60%); top: -12%; left: -4%; animation: auroraDrift 19s ease-in-out infinite; }
.aurora .a2 { background: radial-gradient(circle, rgba(78,92,128,0.5), transparent 60%); bottom: -16%; right: -6%; animation: auroraDrift 24s ease-in-out infinite reverse; }
@keyframes auroraDrift { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(7%, 9%) scale(1.18); } }
.quote-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 72px; line-height: 0.6; color: var(--gold); font-weight: 700; }
.quote-text { font-size: clamp(26px, 3.4vw, 46px); font-weight: 600; line-height: 1.26; letter-spacing: -0.015em; }
.quote-text em { font-style: italic; color: var(--gold); }
.quote-cite { margin-top: 36px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,236,234,0.55); }

/* FAQ accordion --------------------------------------------- */
.faq { position: relative; z-index: 2; background: var(--panel); padding: 100px 32px; }
.faq-wrap { max-width: 980px; margin: 0 auto; }
.faq-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.faq-head h2 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; color: var(--ink); }
.faq-head p { font-size: 14px; color: #3a3a3a; max-width: 260px; line-height: 1.6; }
.faq-list { border-top: 1px solid rgba(0,0,0,0.18); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.18); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 20px; padding: 26px 0; text-align: left; }
.faq-index { font-size: 12px; color: #777; letter-spacing: 0.08em; }
.faq-q-text { flex: 1; font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; transition: color 0.3s ease; }
.faq-q:hover .faq-q-text { color: #000; }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon span { position: absolute; background: var(--ink); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease; }
.faq-icon span:nth-child(1) { top: 7.25px; left: 0; width: 16px; height: 1.5px; }
.faq-icon span:nth-child(2) { left: 7.25px; top: 0; width: 1.5px; height: 16px; }
.faq-item.is-open .faq-icon span:nth-child(2) { transform: scaleY(0); opacity: 0; }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.42s cubic-bezier(0.22,1,0.36,1); }
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; min-height: 0; font-size: 15px; line-height: 1.7; color: #3a3a3a; max-width: 680px; padding-bottom: 28px; }

/* Route-transition wipe ------------------------------------- */
.route-wipe {
  position: fixed; inset: 0; z-index: 115;
  background: #0a0a0b; pointer-events: none;
  transform: translateY(100%);
  display: flex; align-items: center; justify-content: center;
  animation: routeWipe 0.85s cubic-bezier(0.76,0,0.24,1) forwards;
}
.route-wipe span {
  font-size: clamp(30px, 6vw, 64px); font-weight: 700; letter-spacing: 0.06em; color: #f2f1ee;
  opacity: 0; animation: wipeBrand 0.85s ease forwards;
}
@keyframes routeWipe {
  0% { transform: translateY(100%); }
  42% { transform: translateY(0); }
  58% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes wipeBrand {
  0%, 18% { opacity: 0; }
  44%, 56% { opacity: 1; }
  82%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .route-wipe { display: none; }
  .flow-pulse, .flow-core-inner, .flow-node, .aurora span, .status-dot::after { animation: none; }
}

/* New-section responsive ------------------------------------ */
@media (max-width: 900px) {
  .capabilities { padding: 64px 18px; }
  .cap-grid { grid-template-columns: 1fr; gap: 38px; }
  .cap-copy p { max-width: none; }
  .quote { padding: 84px 18px; }
  .faq { padding: 64px 18px; }
  .hero-eyebrow { margin-bottom: 16px; }
}

/* ============================================================
   FINISH PASS — graded media, kinetic wordmark, spotlight, chrome
   ============================================================ */

/* Custom scrollbar ------------------------------------------ */
html { scrollbar-width: thin; scrollbar-color: #2b2b2b transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2b2b2b; border-radius: 999px; border: 3px solid rgba(0,0,0,0); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: #3d3d3d; background-clip: padding-box; }

/* Service videos graded to a curated monochrome set --------- */
.card-video {
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.tilt.card:hover .card-video { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.05); }
.card-video-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 52%, rgba(0,0,0,0.3));
  z-index: 1;
}

/* CTA cursor spotlight -------------------------------------- */
.cta { overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 30%), rgba(176,137,90,0.2), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.cta:hover::before { opacity: 1; }
.cta > * { position: relative; z-index: 1; }

/* Kinetic footer wordmark ----------------------------------- */
.footer { overflow: hidden; }
.footer-wordmark {
  font-size: clamp(72px, 22vw, 320px);
  font-weight: 700; letter-spacing: -0.045em; line-height: 0.76;
  text-align: center; margin: 40px 0 -0.16em;
  background: linear-gradient(180deg, rgba(242,241,238,0.16), rgba(242,241,238,0.015));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; pointer-events: none; white-space: nowrap;
}

/* Filmic edge vignette -------------------------------------- */
.film-vignette {
  position: fixed; inset: 0; z-index: 39; pointer-events: none;
  box-shadow: inset 0 0 200px 34px rgba(0,0,0,0.3);
}

/* Flow connectors draw-on on scroll ------------------------- */
.flow-conn { stroke-dasharray: 300; stroke-dashoffset: 300; }
.flow-figure.is-visible .flow-conn {
  animation: connDraw 1.15s cubic-bezier(0.45, 0, 0.2, 1) forwards;
  animation-delay: var(--cd, 0s);
}
@keyframes connDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .flow-conn { stroke-dashoffset: 0; animation: none; } }

/* ============================================================
   AWARD PASS — logos band + bento capabilities grid
   ============================================================ */

/* Logos band ------------------------------------------------ */
.logos { position: relative; z-index: 2; background: var(--panel); padding: 46px 32px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.logos-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 44px; flex-wrap: wrap; justify-content: space-between; }
.logos-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #5a5a5a; white-space: nowrap; }
.logos-row { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; }
.logo-word { font-size: 19px; font-weight: 700; letter-spacing: 0.01em; color: #1a1a1a; opacity: 0.4; transition: opacity 0.3s ease; }
.logo-word:hover { opacity: 0.85; }

/* Bento grid ------------------------------------------------ */
.bento {
  position: relative; z-index: 2; color: #ECECEA;
  background-color: #0c0b0a;
  background-image: radial-gradient(110% 60% at 50% 0%, rgba(176,137,90,0.07), transparent 58%);
  padding: 104px 32px;
}
.bento-inner { max-width: 1180px; margin: 0 auto; }
.bento-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.bento-head h2 { font-size: clamp(28px, 3.2vw, 46px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.04; }
.bento-head p { font-size: 14px; color: rgba(236,236,234,0.6); max-width: 280px; line-height: 1.6; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 16px; }
.bento-cell {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0) 55%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 0.45s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1), background 0.45s ease;
}
.bento-cell:hover { border-color: rgba(176,137,90,0.5); transform: translateY(-5px); }
.bento-cell.big { grid-column: span 2; grid-row: span 2; }
.bento-cell.tall { grid-row: span 2; }
.bento-cell.wide { grid-column: span 2; }
.bento-icon { color: var(--gold); }
.bento-top { display: flex; align-items: center; justify-content: space-between; }
.bento-kpi { font-size: clamp(30px, 3.6vw, 54px); font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.bento-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px; }
.bento-desc { font-size: 13px; line-height: 1.55; color: rgba(236,236,234,0.6); margin-top: 8px; max-width: 320px; }
.bento-pulse { display: flex; gap: 7px; margin-top: 18px; }
.bento-pulse span { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); opacity: 0.3; animation: bentoPulse 1.6s ease-in-out infinite; }
.bento-pulse span:nth-child(2) { animation-delay: 0.2s; }
.bento-pulse span:nth-child(3) { animation-delay: 0.4s; }
.bento-pulse span:nth-child(4) { animation-delay: 0.6s; }
.bento-pulse span:nth-child(5) { animation-delay: 0.8s; }
@keyframes bentoPulse { 0%, 100% { opacity: 0.25; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }

@media (max-width: 900px) {
  .bento { padding: 64px 18px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 156px; }
  .bento-cell.big { grid-column: span 2; grid-row: span 1; }
  .bento-cell.tall { grid-row: span 1; }
  .logos { padding: 32px 18px; }
  .logos-inner { gap: 24px; }
  .logos-row { gap: 28px; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .bento-cell.big, .bento-cell.wide { grid-column: span 2; }
}

/* ============================================================
   JOURNAL + CASE STUDY pages
   ============================================================ */
.article-card {
  display: flex; flex-direction: column; gap: 16px; min-height: 240px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0) 52%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); color: #ECECEA;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.article-card:hover { border-color: rgba(176,137,90,0.5); background: rgba(255,255,255,0.03); }
.journal-featured { margin-bottom: 20px; }
.journal-featured .article-card.is-featured { min-height: auto; padding: 46px; }
.article-card.is-featured .article-title { font-size: clamp(26px, 3vw, 40px); max-width: 780px; }
.article-card.is-featured .article-excerpt { font-size: 16px; max-width: 640px; }
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,236,234,0.55); }
.article-cat { color: var(--gold); }
.article-dot { opacity: 0.4; }
.article-title { font-size: 20px; font-weight: 600; line-height: 1.22; letter-spacing: -0.01em; color: #ECECEA; }
.article-excerpt { font-size: 14px; line-height: 1.6; color: rgba(236,236,234,0.62); flex: 1; }
.article-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.article-date { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(236,236,234,0.45); }
.article-arrow { color: var(--gold); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.article-card:hover .article-arrow { transform: translate(3px, -3px); }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.case-title { max-width: 980px; }
.case-hero-meta { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.case-hero-meta > div { display: flex; flex-direction: column; gap: 7px; }
.cm-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,236,234,0.45); }
.cm-value { font-size: 15px; color: #ECECEA; }
.case-media { position: relative; margin: 48px 0; border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden; background: #0a0a0b; padding: 36px 30px 44px; }
.case-media .flow-figure { max-width: 760px; margin: 0 auto; }
.case-media-label { position: absolute; left: 24px; bottom: 18px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(236,236,234,0.4); }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 8px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.case-stat-num { font-size: clamp(34px, 4.5vw, 60px); font-weight: 700; letter-spacing: -0.025em; display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.case-stat-unit { font-size: 0.32em; font-weight: 600; color: var(--gold); }
.case-stat-label { margin-top: 12px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(236,236,234,0.5); }
.case-body { padding: 56px 0; display: flex; flex-direction: column; gap: 40px; }
.case-section { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.case-section-label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
.case-section-body { font-size: 17px; line-height: 1.7; color: rgba(236,236,234,0.78); max-width: 640px; }
.case-pullquote { position: relative; font-size: clamp(22px, 2.8vw, 36px); font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; max-width: 860px; padding: 16px 0 10px; }
.case-pullquote .quote-mark { display: block; margin-bottom: 8px; }
.case-pullquote-cite { display: block; margin-top: 24px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236,236,234,0.5); }

.card-link { position: absolute; inset: 0; z-index: 4; }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .journal-featured .article-card.is-featured { padding: 30px; }
  .case-metrics { grid-template-columns: 1fr; gap: 28px; }
  .case-section { grid-template-columns: 1fr; gap: 12px; }
  .case-hero-meta { gap: 24px; }
}
