/* ==========================================================================
   Titan Carriers — design system
   Editorial layout, ink + royal blue, mono labels, hairline rules.
   ========================================================================== */

:root {
  --ink: #06070d;
  --ink-2: #0d0f1a;
  --blue: #0a1fd6;
  --blue-deep: #030a66;
  --blue-soft: #e8ebff;
  --paper: #f5f6fa;
  --white: #ffffff;
  --muted: #5b6072;
  --muted-on-dark: rgba(255, 255, 255, 0.62);
  --line: rgba(6, 7, 13, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.16);

  --font-sans: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1440px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.on-dark .label, .hero .label { color: var(--muted-on-dark); }
.label--blue { color: var(--blue); }

.h-display {
  font-size: clamp(44px, 8.2vw, 132px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.h-section {
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.032em;
}
.lede {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
}
.on-dark .lede, .hero .lede { color: var(--muted-on-dark); }
.dim { opacity: 0.45; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 8px 0 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn__arrow {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  transition: transform 0.4s var(--ease);
}
.btn__arrow svg { width: 16px; height: 16px; }
.btn:hover .btn__arrow { transform: rotate(-45deg); }

.btn--blue { background: var(--blue); color: #fff; }
.btn--blue .btn__arrow { background: #fff; color: var(--blue); }
.btn--blue:hover { background: #0818ad; }

.btn--white { background: #fff; color: var(--ink); }
.btn--white .btn__arrow { background: var(--ink); color: #fff; }
.btn--white:hover { background: var(--blue-soft); }

.btn--ghost { box-shadow: inset 0 0 0 1px var(--line-on-dark); color: #fff; padding-right: 24px; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn--sm { height: 44px; padding: 0 6px 0 20px; font-size: 14px; }
.btn--sm .btn__arrow { width: 32px; height: 32px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 16px 0 auto 0; z-index: 100;
  padding-inline: var(--gutter);
  pointer-events: none;
  transition: transform 0.5s var(--ease);
}
.site-header.is-hidden { transform: translateY(-140%); }
.site-header__bar {
  pointer-events: auto;
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 64px; padding: 0 12px 0 24px;
  border-radius: 999px;
  background: rgba(8, 9, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: -0.02em; font-size: 19px; }
.brand__mark { width: 30px; height: 30px; }
.brand small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; opacity: 0.6; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; border-radius: 999px; font-size: 15px; color: rgba(255, 255, 255, 0.78);
  transition: background 0.25s, color 0.25s;
}
.nav a:hover, .nav a.is-active { color: #fff; background: rgba(255, 255, 255, 0.1); }

.site-header__cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.78); }
.header-phone:hover { color: #fff; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); place-items: center;
}
.menu-toggle span, .menu-toggle span::before {
  display: block; width: 18px; height: 1.5px; background: #fff; position: relative;
  transition: transform 0.35s var(--ease);
}
.menu-toggle span::before { content: ""; position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(-6px) rotate(-90deg); top: 6px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff;
  padding: 110px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.6s var(--ease), visibility 0s 0.6s;
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path 0.6s var(--ease); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-size: clamp(34px, 9vw, 56px); font-weight: 500; letter-spacing: -0.04em;
  padding: 14px 0; border-bottom: 1px solid var(--line-on-dark);
}

/* ---------- Hero (pinned frame sequence) ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; background: var(--ink); color: #fff; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 7, 13, 0.55) 0%, rgba(6, 7, 13, 0) 28%),
    linear-gradient(0deg, rgba(6, 7, 13, 0.92) 0%, rgba(6, 7, 13, 0.55) 34%, rgba(6, 7, 13, 0) 62%),
    linear-gradient(90deg, rgba(6, 7, 13, 0.55) 0%, rgba(6, 7, 13, 0) 55%);
}
.hero__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(88px, 12vh, 128px);
}
.hero__stage { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; }
.hero__stage[data-stage="0"] { position: relative; left: auto; right: auto; }
.hero__stage:not([data-stage="0"]) { opacity: 0; visibility: hidden; bottom: clamp(88px, 12vh, 128px); max-width: 980px; }
.hero__h2 { font-size: clamp(30px, 4.6vw, 68px); font-weight: 500; line-height: 1.04; letter-spacing: -0.04em; }
.hero__h2 em { font-style: normal; color: #7f8cff; }
.hero__copy { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__base {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line-on-dark);
  background: rgba(6, 7, 13, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero__base .wrap { display: flex; align-items: center; gap: 24px; height: 56px; }
.hero__steps { display: flex; gap: 28px; flex: 1; }
.hero__step { display: flex; gap: 10px; align-items: center; opacity: 0.4; transition: opacity 0.4s; }
.hero__step.is-on { opacity: 1; }
.hero__step b { font-weight: 500; color: #7f8cff; }
.hero__progress { flex: 0 0 min(260px, 30vw); height: 2px; background: var(--line-on-dark); position: relative; overflow: hidden; }
.hero__progress i { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero__scroll { display: inline-flex; gap: 10px; align-items: center; }
.hero__scroll::before { content: ""; width: 1px; height: 18px; background: #fff; animation: cue 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- Generic sections ---------- */
.section { padding-block: clamp(88px, 12vw, 180px); position: relative; }
.section--tight { padding-block: clamp(64px, 8vw, 120px); }
.section-head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-bottom: clamp(48px, 7vw, 96px); align-items: end; }
.section-head .label { grid-column: 1 / -1; }
.section-head h2 { grid-column: 1 / span 8; }
.section-head p { grid-column: 9 / -1; }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.intro__label { grid-column: 1 / -1; }
.intro__body { grid-column: 1 / span 6; }
.intro__body .h-section { max-width: 12ch; margin-bottom: 40px; }
.intro__cols { display: grid; gap: 20px; margin-bottom: 40px; max-width: 52ch; }
.intro__media {
  grid-column: 1 / -1; margin-top: clamp(64px, 12vw, 200px);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
}
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); aspect-ratio: 16 / 10; }
.media-card img, .media-card video { width: 100%; height: 100%; object-fit: cover; }
.media-card--tall { aspect-ratio: auto; min-height: 100%; }
.media-card figcaption {
  position: absolute; left: 20px; bottom: 18px; color: #fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 7, 13, 0.55), transparent 45%); pointer-events: none; }

/* ---------- Stats ---------- */
.stats { padding-bottom: clamp(88px, 12vw, 180px); }
.stats__title { margin-bottom: 40px; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 640px; border-top: 1px solid var(--line); }
.stat { padding: 28px 24px 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { padding-left: 0; }
.stat:nth-child(even) { border-right: 0; }
.stat__num { font-size: clamp(48px, 6vw, 96px); font-weight: 500; letter-spacing: -0.055em; line-height: 1; display: flex; align-items: baseline; }
.stat__num .unit { font-size: 0.42em; letter-spacing: -0.02em; margin-left: 4px; color: var(--blue); font-weight: 500; }
.stat .label { margin-top: 18px; display: block; }

/* ---------- Services ---------- */
.services { background: transparent; }
.services__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.services__intro { grid-column: 1 / span 5; }
.services__intro-inner { position: sticky; top: 120px; }
.services__intro .h-section { margin: 20px 0 28px; }
.services__list { grid-column: 7 / -1; border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service__head {
  width: 100%; display: grid; grid-template-columns: 56px 1fr 44px; align-items: center; gap: 12px;
  padding: 30px 0; text-align: left;
}
.service__num { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.service__title { font-size: clamp(26px, 2.8vw, 40px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.1; transition: transform 0.5s var(--ease), color 0.3s; }
.service__icon {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background 0.3s, color 0.3s, transform 0.5s var(--ease), box-shadow 0.3s;
}
.service__icon svg { width: 16px; height: 16px; }
.service__head:hover .service__title { transform: translateX(10px); color: var(--blue); }
.service.is-open .service__icon { background: var(--blue); color: #fff; box-shadow: none; transform: rotate(45deg); }
.service__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.55s var(--ease); }
.service.is-open .service__panel { grid-template-rows: 1fr; }
.service__panel > div { overflow: hidden; }
.service__content { padding: 0 0 36px 68px; display: grid; gap: 24px; max-width: 640px; }
.service__content p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: var(--paper); color: var(--ink); }

/* ---------- Scroll-driven truck (fixed canvas behind the journey) ---------- */
#truck-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100lvh;
  z-index: 0; pointer-events: none; opacity: 0; visibility: hidden;
}
.hero { z-index: 2; }
.journey { position: relative; z-index: 1; }
.journey .section { background: transparent; }
.services__list { background: rgba(245, 246, 250, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: var(--radius); padding-inline: 28px; border-top: 0; }
.services__list .service:last-child { border-bottom: 0; }
.stats { position: relative; }

.fleet { position: relative; padding-top: clamp(88px, 12vw, 180px); }
.beat { min-height: 105vh; display: flex; align-items: flex-start; padding-top: clamp(72px, 13vh, 150px); }
.beat:last-child { min-height: 100vh; }
.beat + .beat { margin-top: 0; }
.beat .wrap { width: 100%; }
.beat__copy {
  max-width: 460px; padding: 32px; border-radius: 22px; display: grid; gap: 16px;
  background: rgba(245, 246, 250, 0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px var(--line);
}
.beat__copy h3 { font-size: clamp(28px, 3vw, 42px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.beat__copy p { color: var(--muted); }
.beat__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.beat__stats dt { font-size: clamp(24px, 2.4vw, 34px); font-weight: 500; letter-spacing: -0.04em; }
.beat__stats dd { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.beat:nth-of-type(odd) .wrap { display: flex; justify-content: flex-end; }

/* ---------- Process (video tabs) ---------- */
.process__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.process__screen { position: sticky; top: 110px; border-radius: 24px; overflow: hidden; background: var(--ink); aspect-ratio: 16 / 10; }
.process__screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s; }
.process__screen video.is-active { opacity: 1; }
.process__tag { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 7px 12px; border-radius: 999px; color: #fff; background: rgba(6, 7, 13, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.process__steps { border-top: 1px solid var(--line); }
.step { display: block; width: 100%; text-align: left; padding: 28px 0; border-bottom: 1px solid var(--line); position: relative; }
.step__top { display: flex; align-items: baseline; gap: 18px; }
.step__num { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.step__title { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: -0.03em; opacity: 0.45; transition: opacity 0.3s; }
.step__desc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.step__desc p { overflow: hidden; color: var(--muted); padding-left: 38px; max-width: 46ch; }
.step.is-active .step__title { opacity: 1; }
.step.is-active .step__desc { grid-template-rows: 1fr; }
.step.is-active .step__desc p { padding-top: 14px; }
.step__bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left; }

/* ---------- Reliability (blue) ---------- */
.reliability { color: #fff; background: linear-gradient(180deg, var(--ink) 0%, #020a58 26%, var(--blue) 62%, #2a3fe0 100%); }
.reliability .h-section { max-width: 16ch; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar {
  padding: 32px; border-radius: var(--radius); min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: rgba(255, 255, 255, 0.07); box-shadow: inset 0 0 0 1px var(--line-on-dark);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s, transform 0.5s var(--ease);
}
.pillar:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-6px); }
.pillar__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255, 255, 255, 0.12); display: grid; place-items: center; }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 14px; }
.pillar p { color: rgba(255, 255, 255, 0.72); font-size: 16px; }

.lanes { margin-top: clamp(64px, 8vw, 120px); }
.lanes__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.lanes__head h3 { font-size: clamp(28px, 3.4vw, 48px); font-weight: 500; letter-spacing: -0.04em; }
.lane-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.lane-tab { padding: 9px 16px; border-radius: 999px; font-size: 14px; box-shadow: inset 0 0 0 1px var(--line-on-dark); transition: background 0.25s, color 0.25s; }
.lane-tab:hover { background: rgba(255, 255, 255, 0.12); }
.lane-tab[aria-selected="true"] { background: #fff; color: var(--blue-deep); box-shadow: none; }
.lane-table { width: 100%; border-collapse: collapse; }
.lane-table th { text-align: left; font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line-on-dark); }
.lane-table td { padding: 22px 16px 22px 0; border-bottom: 1px solid var(--line-on-dark); font-size: 17px; vertical-align: baseline; }
.lane-table td:first-child { font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -0.02em; font-weight: 500; }
.lane-table td.mono { font-family: var(--font-mono); font-size: 14px; }
.lane-table tr { transition: background 0.25s; }
.lane-table tbody tr:hover { background: rgba(255, 255, 255, 0.06); }
.lane-table tr[hidden] { display: none; }
.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6cf0a8; box-shadow: 0 0 0 4px rgba(108, 240, 168, 0.2); }

/* ---------- Why us ---------- */
.why { background: transparent; }
.why__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.why__head { grid-column: 1 / span 5; }
.why__head .h-section { margin-top: 20px; }
.why__list { grid-column: 7 / -1; counter-reset: why; border-top: 1px solid var(--line); background: rgba(245, 246, 250, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: var(--radius); padding-inline: 28px; border-top: 0; }
.why__item { padding: 30px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: 12px; counter-increment: why; }
.why__item::before { content: "0" counter(why); font-family: var(--font-mono); font-size: 13px; color: var(--blue); padding-top: 6px; }
.why__item h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 8px; }
.why__item p { color: var(--muted); max-width: 48ch; }

/* ---------- Voices ---------- */
.voices { background: var(--white); }
.voices__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.voices__head .h-section { max-width: 12ch; }
.voices__nav { display: flex; gap: 8px; }
.round-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); transition: background 0.3s, color 0.3s; }
.round-btn:hover { background: var(--ink); color: #fff; }
.round-btn svg { width: 18px; height: 18px; }
.voices__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(min(420px, 86vw), 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.voices__track::-webkit-scrollbar { display: none; }
.quote { scroll-snap-align: start; padding: 36px; border-radius: var(--radius); background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; gap: 40px; min-height: 380px; }
.quote blockquote { margin: 0; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.4; letter-spacing: -0.02em; }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 500; font-size: 16px; flex: none; }
.quote figcaption b { display: block; font-weight: 500; }
.quote figcaption span { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: #fff; }
.contact__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.contact__copy { grid-column: 1 / span 5; }
.contact__copy .h-section { margin: 20px 0 28px; }
.contact__details { margin-top: 48px; display: grid; gap: 20px; }
.contact__details div { border-top: 1px solid var(--line-on-dark); padding-top: 16px; }
.contact__details a, .contact__details p { font-size: 20px; letter-spacing: -0.02em; margin-top: 6px; display: block; }
.contact__form { grid-column: 7 / -1; background: #fff; color: var(--ink); border-radius: 28px; padding: clamp(24px, 3vw, 44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 15px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-soft); }
.field input:user-invalid { border-color: #d92b4b; }
.form-foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-foot small { color: var(--muted); font-size: 13px; max-width: 34ch; }
.form-success { display: none; text-align: left; padding: 8px 0; }
.form-success h3 { font-size: 32px; font-weight: 500; letter-spacing: -0.035em; margin: 16px 0 10px; }
.form-success p { color: var(--muted); }
.contact__form.is-sent form { display: none; }
.contact__form.is-sent .form-success { display: block; }
.tick { width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }
.tick svg { width: 24px; height: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding-top: 24px; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 64px 0; border-top: 1px solid var(--line-on-dark); }
.footer__grid p { color: var(--muted-on-dark); max-width: 34ch; margin-top: 18px; font-size: 15px; }
.footer__grid h4 { font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 20px; }
.footer__grid li + li { margin-top: 10px; }
.footer__grid a { color: rgba(255, 255, 255, 0.86); transition: color 0.2s; }
.footer__grid a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__word { font-size: clamp(60px, 17.5vw, 290px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.8; white-space: nowrap; text-align: center; color: transparent; background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.05) 92%); -webkit-background-clip: text; background-clip: text; padding-bottom: 0.06em; user-select: none; }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 28px 0 32px; color: var(--muted-on-dark); border-top: 1px solid var(--line-on-dark); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: grid; }
  .section-head h2, .section-head p { grid-column: 1 / -1; }
  .intro__label { grid-column: 1 / -1; padding: 0; }
  .intro__body { grid-column: 1 / -1; }
  .services__intro, .services__list, .why__head, .why__list, .contact__copy, .contact__form { grid-column: 1 / -1; }
  .services__intro-inner { position: static; }
  .process__grid { grid-template-columns: 1fr; }
  .process__screen { position: relative; top: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 0; gap: 60px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header__cta .btn { display: none; }
  .intro__cols, .intro__media, .form-grid { grid-template-columns: 1fr; }
  .hero__steps { display: none; }
  .hero__base .wrap { justify-content: space-between; }
  .service__head { grid-template-columns: 40px 1fr 40px; }
  .service__content { padding-left: 52px; }
  .beat__copy { max-width: none; }
  .beat:nth-of-type(odd) .wrap { display: block; }
  .lane-table th:nth-child(3), .lane-table td:nth-child(3), .lane-table th:nth-child(4), .lane-table td:nth-child(4) { display: none; }
  .quote { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
