:root {
  color-scheme: light;
  --bg: #ece7d9;
  --bg-deep: #e0dccc;
  --paper: #f6f2e6;
  --ink: #0d0c0a;
  --ink-soft: #1f1e1b;
  --ink-mid: #56544c;
  --ink-faint: #8a877e;
  --line: #b8b2a0;
  --line-soft: #cdc7b5;
  --hot: #ff5b1f;
  --hot-deep: #d94516;
  --hot-bright: #ff7038;

  --font-display: 'Tanker', 'Satoshi', sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max: 1380px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  background: #ece7d9;
  color-scheme: light;
}
body {
  background: #ece7d9;
  color: #0d0c0a;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
  text-rendering: optimizeLegibility;
  forced-color-adjust: none;
}
@media (prefers-color-scheme: dark) {
  html, body { background: #ece7d9 !important; color: #0d0c0a !important; }
}
@media (max-width: 900px) { body { cursor: auto; font-size: 15px; } }
::selection { background: var(--ink); color: var(--bg); }
img, svg { display: block; max-width: 100%; }

/* Crosshair cursor (desktop only) */
.cur-h, .cur-v {
  position: fixed; background: var(--ink); pointer-events: none; z-index: 9999;
  transition: opacity 0.3s, background 0.3s;
}
.cur-h { width: 16px; height: 1px; }
.cur-v { width: 1px; height: 16px; }
.cur-dot {
  position: fixed; width: 4px; height: 4px;
  border: 1px solid var(--ink); background: transparent; border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.cur-dot.hover { width: 28px; height: 28px; background: var(--hot); border-color: var(--hot); }
@media (max-width: 900px), (pointer: coarse) {
  .cur-h, .cur-v, .cur-dot { display: none; }
}

/* Grain */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.06 0 0 0 0 0.04 0 0 0 0.13 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
@media (max-width: 768px) { body::before { opacity: 0.3; } }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; position: relative; }
@media (max-width: 1024px) { .container { padding: 0 28px; } }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── TICKER ─────────────────────────────────── */
.ticker {
  border-bottom: 1px solid var(--line); background: var(--bg); overflow: hidden;
  position: fixed; top: 0; left: 0; right: 0; z-index: 99; height: 36px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; gap: 48px; animation: scroll 60s linear infinite;
  white-space: nowrap; padding-left: 48px;
}
.ticker-item {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-soft); display: flex; align-items: center; gap: 12px;
  text-transform: uppercase;
}
.ticker-item::before { content: '✦'; color: var(--hot); font-size: 9px; }
@keyframes scroll {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .ticker { height: 30px; }
  .ticker-item { font-size: 10px; gap: 8px; }
  .ticker-track { gap: 32px; padding-left: 32px; }
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  padding: 18px 40px; display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(236, 231, 217, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
nav.scrolled { border-bottom-color: var(--line); padding: 12px 40px; }
@media (max-width: 1024px) { nav { padding: 16px 28px; } nav.scrolled { padding: 10px 28px; } }
@media (max-width: 640px) {
  nav { padding: 14px 20px; top: 30px; }
  nav.scrolled { padding: 10px 20px; }
}

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-weight: 400; font-size: 19px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.logo-text .v-accent { color: var(--hot); }
@media (max-width: 640px) {
  .logo-mark { width: 30px; height: 30px; }
  .logo-text { font-size: 16px; }
}

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a:not(.nav-cta) {
  color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em; padding: 8px 14px; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:not(.nav-cta):hover, .nav-links a:not(.nav-cta):focus { background: var(--ink); color: var(--bg); outline: none; }
.nav-cta {
  background: var(--ink); color: var(--bg) !important;
  padding: 10px 16px 10px 18px; border-radius: 100px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.3s, transform 0.3s var(--ease); margin-left: 8px;
}
.nav-cta:hover, .nav-cta:focus { background: var(--hot); transform: translateY(-1px); outline: none; }
.nav-cta-dot {
  width: 6px; height: 6px; background: var(--hot); border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
.nav-cta:hover .nav-cta-dot { background: var(--bg); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 768px) {
  .nav-links li:not(:last-child) { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 12px; margin-left: 0; }
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh; min-height: 100dvh; padding: 180px 0 100px;
  position: relative; display: flex; align-items: center; overflow: hidden;
}
@media (max-width: 768px) { .hero { padding: 130px 0 80px; min-height: auto; } }

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 120px 120px; background-position: center;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
  opacity: 0.6; pointer-events: none;
}
@media (max-width: 640px) {
  .hero-grid { background-size: 60px 60px; opacity: 0.4; }
}

.corner-mark { position: absolute; width: 12px; height: 12px; z-index: 2; pointer-events: none; }
.corner-mark::before, .corner-mark::after { content: ''; position: absolute; background: var(--ink); }
.corner-mark::before { width: 12px; height: 1px; top: 0; left: 0; }
.corner-mark::after { width: 1px; height: 12px; top: 0; left: 0; }
.cm-tl { top: 80px; left: 40px; }
.cm-tr { top: 80px; right: 40px; transform: scaleX(-1); }
.cm-bl { bottom: 40px; left: 40px; transform: scaleY(-1); }
.cm-br { bottom: 40px; right: 40px; transform: scale(-1, -1); }
@media (max-width: 900px) { .corner-mark { display: none; } }

.hero-content { position: relative; z-index: 2; width: 100%; }

.coords {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-soft); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 56px;
  flex-wrap: wrap;
}
.coords-line { width: 48px; height: 1px; background: var(--ink-mid); }
.coords-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
  box-shadow: 0 0 0 0 var(--hot);
  animation: pulseRing 2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255, 91, 31, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(255, 91, 31, 0); }
}
@media (max-width: 640px) {
  .coords { font-size: 10px; gap: 10px; margin-bottom: 40px; }
  .coords-line { width: 28px; }
}

h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(54px, 11vw, 168px);
  line-height: 0.88; letter-spacing: -0.02em;
  text-transform: uppercase; margin-bottom: 0;
  color: var(--ink);
}
h1 .row { display: block; position: relative; }
h1 .row-2 { padding-left: clamp(24px, 12vw, 180px); }
h1 .row-3 { padding-left: clamp(48px, 22vw, 320px); }
h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
h1 .hot { color: var(--hot); font-style: italic; }
@media (max-width: 640px) {
  h1 { line-height: 0.92; }
  h1 .outline { -webkit-text-stroke: 1.2px var(--ink); }
}

.char {
  display: inline-block; opacity: 0; transform: translateY(60%);
  transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}
.char.in { opacity: 1; transform: translateY(0); }

.hero-foot {
  margin-top: 80px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: end; padding-top: 32px; border-top: 1px solid var(--line);
}
@media (max-width: 968px) { .hero-foot { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; } }

.hero-pitch {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55;
  color: var(--ink-soft); max-width: 440px;
}
.hero-pitch strong { color: var(--ink); font-weight: 700; }

.hero-cta-block { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.btn-hot {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px; background: var(--ink); color: var(--bg);
  border: none; border-radius: 100px; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  text-transform: uppercase; font-family: var(--font-body);
  min-height: 56px;
}
@media (max-width: 900px), (pointer: coarse) { .btn-hot { cursor: pointer; } }
.btn-hot:hover, .btn-hot:focus { background: var(--hot); transform: translateY(-2px); outline: none; }
.btn-hot .arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.btn-hot:hover .arrow, .btn-hot:focus .arrow { background: var(--ink); color: var(--bg); transform: rotate(-45deg); }
@media (max-width: 640px) { .btn-hot { padding: 16px 22px; font-size: 13px; } }

.hero-secondary-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
  cursor: none;
}
@media (max-width: 900px), (pointer: coarse) { .hero-secondary-link { cursor: pointer; } }
.hero-secondary-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.hero-secondary-link:hover { color: var(--hot); }
.hero-secondary-link:hover::after { transform: scaleX(1); background: var(--hot); }
.hero-secondary-tag {
  background: var(--hot);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.44s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.52s; }

section { padding: 140px 0; position: relative; }
@media (max-width: 1024px) { section { padding: 110px 0; } }
@media (max-width: 640px) { section { padding: 80px 0; } }

.section-tag {
  display: inline-flex; align-items: baseline; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-mid); margin-bottom: 40px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); width: 100%;
}
.section-tag .num { font-family: var(--font-display); font-size: 14px; color: var(--ink); letter-spacing: 0; }
@media (max-width: 640px) {
  .section-tag { font-size: 10px; gap: 12px; margin-bottom: 32px; }
}

h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px); line-height: 0.92;
  letter-spacing: -0.015em; text-transform: uppercase; max-width: 12ch;
  color: var(--ink);
}
h2 .hot { color: var(--hot); font-style: italic; }
h2 .outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
@media (max-width: 640px) {
  h2 .outline { -webkit-text-stroke: 1.2px var(--ink); }
}

/* ── CLIENTS ─────────────────────────────────── */
.clients {
  padding: 100px 0; background: var(--paper);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 640px) { .clients { padding: 70px 0; } }

.clients-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px; flex-wrap: wrap; gap: 16px;
}
@media (max-width: 640px) { .clients-head { margin-bottom: 36px; } }

.clients-head .lbl {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-mid);
}
.clients-head .markets {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 18px; letter-spacing: 0.05em; color: var(--ink);
}
.clients-head .markets .sep { color: var(--hot); margin: 0 6px; }
@media (max-width: 640px) {
  .clients-head .markets { font-size: 14px; }
  .clients-head .lbl { font-size: 10px; }
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.client-cell {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: background 0.4s var(--ease); cursor: none;
  text-decoration: none; color: inherit; display: block;
  min-height: 130px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px), (pointer: coarse) { .client-cell { cursor: pointer; } }
.client-cell:hover, .client-cell:focus { background: var(--ink); outline: none; }
.client-cell:hover .client-name, .client-cell:focus .client-name { color: var(--bg); }
.client-cell:hover .client-region, .client-cell:focus .client-region { color: var(--hot-bright); }
.client-name {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink);
  transition: color 0.3s; margin-bottom: 6px;
}
.client-region {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-mid); transition: color 0.3s;
}
@media (max-width: 868px) {
  .clients-row { grid-template-columns: repeat(2, 1fr); }
  .client-name { font-size: 20px; }
}
@media (max-width: 480px) {
  .clients-row { grid-template-columns: 1fr; }
  .client-cell { min-height: 100px; padding: 28px 20px; }
  .client-name { font-size: 19px; }
}

/* ── PHILOSOPHY ─────────────────────────────────── */
.philosophy { padding: 160px 0; }
@media (max-width: 1024px) { .philosophy { padding: 110px 0; } }
@media (max-width: 640px) { .philosophy { padding: 80px 0; } }

.phil-marquee {
  margin-bottom: 100px; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
@media (max-width: 640px) { .phil-marquee { margin-bottom: 60px; padding: 18px 0; } }

.phil-marquee-track {
  display: flex; gap: 56px; animation: scroll 7s linear infinite;
  white-space: nowrap; align-items: center;
}
.phil-marquee-item {
  font-family: var(--font-display); font-size: 52px;
  text-transform: uppercase; letter-spacing: 0; color: var(--ink);
  display: flex; align-items: center; gap: 56px;
}
.phil-marquee-item .outline { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
.phil-marquee-item .star { color: var(--hot); font-size: 24px; }
@media (max-width: 640px) {
  .phil-marquee-item { font-size: 36px; gap: 36px; }
  .phil-marquee-track { gap: 36px; }
}

.phil-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start;
}
@media (max-width: 1024px) { .phil-layout { gap: 60px; } }
@media (max-width: 968px) { .phil-layout { grid-template-columns: 1fr; gap: 60px; } }

.phil-quote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px); line-height: 1.05;
  letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 32px;
}
.phil-quote .hot { color: var(--hot); font-style: italic; }
.phil-quote .outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
@media (max-width: 640px) {
  .phil-quote .outline { -webkit-text-stroke: 1.2px var(--ink); }
}

.phil-body { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 520px; }
.phil-body p + p { margin-top: 18px; }

.principles { display: flex; flex-direction: column; }
.principle {
  padding: 28px 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 56px 1fr 32px; gap: 20px; align-items: start;
  transition: padding-left 0.4s var(--ease), padding-right 0.4s var(--ease), background 0.4s var(--ease);
  cursor: none;
}
@media (max-width: 900px), (pointer: coarse) { .principle { cursor: pointer; } }
.principle:hover { padding-left: 16px; padding-right: 16px; background: var(--paper); }
.principle:last-child { border-bottom: 1px solid var(--line); }

.principle-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--hot-deep);
  padding-top: 6px; letter-spacing: 0.12em; font-weight: 500;
}
.principle h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0; margin-bottom: 8px;
  color: var(--ink);
}
.principle p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.principle-arrow {
  font-family: var(--font-mono); color: var(--ink-mid);
  padding-top: 4px; transition: color 0.3s, transform 0.3s var(--ease);
}
.principle:hover .principle-arrow { color: var(--hot); transform: rotate(-45deg); }
@media (max-width: 480px) {
  .principle { grid-template-columns: 44px 1fr; padding: 24px 0; gap: 16px; }
  .principle-arrow { display: none; }
  .principle h3 { font-size: 19px; }
}

/* ── SERVICES ─────────────────────────────────── */
.services {
  background: var(--ink); color: var(--bg); position: relative; overflow: hidden;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 100%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 100%, black 0%, transparent 80%);
}
.services .section-tag {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}
.services .section-tag .num { color: var(--bg); }
.services h2 { color: var(--bg); }
.services h2 .outline { -webkit-text-stroke-color: var(--bg); }
.services h2 .hot { color: var(--hot-bright); }

.services-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px; position: relative; z-index: 1;
}
@media (max-width: 968px) { .services-head { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; } }
.services-head .intro {
  font-size: 16px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
}
.services-head .intro strong { color: var(--bg); font-weight: 700; }

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2); position: relative; z-index: 1;
}
.service-row {
  display: grid; grid-template-columns: 80px 1.2fr 1fr 120px; gap: 40px;
  padding: 44px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-items: start; cursor: none; position: relative;
  transition: padding-left 0.5s var(--ease), padding-right 0.5s var(--ease);
  text-decoration: none; color: inherit;
}
@media (max-width: 900px), (pointer: coarse) { .service-row { cursor: pointer; } }
.service-row:hover { padding-left: 24px; padding-right: 24px; }
.service-row::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--hot); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.service-row:hover::after { transform: scaleY(1); }

@media (max-width: 968px) {
  .service-row { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .service-row .service-desc { grid-column: 2; }
  .service-row .service-action { grid-column: 2; }
}
@media (max-width: 480px) {
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .service-row .service-desc, .service-row .service-action { grid-column: 1; }
}

.service-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--hot-bright);
  letter-spacing: 0.12em; padding-top: 12px; font-weight: 500;
}
.service-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 0.95;
  text-transform: uppercase; color: var(--bg); letter-spacing: -0.01em;
}
.service-title .hot { color: var(--hot-bright); font-style: italic; }
.service-desc {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 8px;
}
.service-desc .tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-desc .tag {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--bg); padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
}
.service-action {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.6);
  text-align: right;
  padding-top: 12px; display: flex; align-items: center; justify-content: flex-end;
  gap: 10px; transition: color 0.3s;
}
.service-row:hover .service-action { color: var(--hot-bright); }
.service-action .arr { display: inline-block; transition: transform 0.4s var(--ease); }
.service-row:hover .service-action .arr { transform: translateX(8px) rotate(-45deg); }
@media (max-width: 968px) { .service-action { text-align: left; justify-content: flex-start; padding-top: 16px; } }

/* ── CONTACT ─────────────────────────────────── */
.contact { padding: 160px 0 100px; }
@media (max-width: 1024px) { .contact { padding: 110px 0 80px; } }
@media (max-width: 640px) { .contact { padding: 80px 0 60px; } }

.contact-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 1024px) { .contact-layout { gap: 56px; } }
@media (max-width: 968px) { .contact-layout { grid-template-columns: 1fr; gap: 56px; } }

.contact h2 { margin-bottom: 36px; }
.contact-lead {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 48px; max-width: 460px;
}

.contact-rows { list-style: none; border-top: 1px solid var(--line); }
.contact-row {
  padding: 22px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 24px;
  transition: padding-left 0.4s var(--ease); cursor: none;
}
@media (max-width: 900px), (pointer: coarse) { .contact-row { cursor: pointer; } }
.contact-row:hover { padding-left: 12px; }
.contact-row-label {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--ink-mid); font-weight: 500;
}
.contact-row-val {
  font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 24px);
  color: var(--ink); text-decoration: none;
  transition: color 0.3s; text-transform: uppercase;
  word-break: break-word;
}
.contact-row:hover .contact-row-val, .contact-row:focus .contact-row-val { color: var(--hot); }
.contact-arrow {
  color: var(--ink-mid); transition: color 0.3s, transform 0.3s var(--ease);
}
.contact-row:hover .contact-arrow { color: var(--hot); transform: translateX(6px) rotate(-45deg); }
@media (max-width: 540px) {
  .contact-row { grid-template-columns: 1fr auto; gap: 14px; padding: 20px 0; }
  .contact-row-label { grid-column: 1 / -1; margin-bottom: -8px; }
  .contact-row-val { font-size: 16px; }
}

.cal-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  min-height: 780px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cal-card-head {
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.cal-card-head-l {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--ink-mid);
  display: flex; align-items: center; gap: 8px;
}
.cal-card-head-l::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot); animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.cal-card-head-r {
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-mid); letter-spacing: 0.1em;
}
.cal-card-body {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 32px; position: relative;
}
.cal-card-body::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
  pointer-events: none;
}
.cal-card-content { position: relative; z-index: 1; }
.cal-card-icon {
  width: 72px; height: 72px; border: 1.5px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
}
.cal-card-icon::after {
  content: ''; position: absolute; inset: -8px;
  border: 1px dashed var(--ink-mid); border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cal-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0; margin-bottom: 12px;
  color: var(--ink);
}
.cal-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; max-width: 320px; margin-bottom: 28px; }
.cal-card-foot {
  padding: 16px 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--ink-mid); flex-wrap: wrap; gap: 8px;
}
@media (max-width: 540px) {
  .cal-card { min-height: 460px; }
  .cal-card h3 { font-size: 24px; }
}

/* ── ULTRA PLAYBOOK ─────────────────────────────────── */
.playbook {
  padding: 140px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) { .playbook { padding: 110px 0; } }
@media (max-width: 640px) { .playbook { padding: 80px 0; } }

.playbook::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
  opacity: 0.5; pointer-events: none;
}
@media (max-width: 640px) {
  .playbook::before { background-size: 50px 50px; }
}

.playbook-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) { .playbook-layout { gap: 56px; } }
@media (max-width: 968px) { .playbook-layout { grid-template-columns: 1fr; gap: 56px; } }

.playbook-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-mid);
  margin-bottom: 28px;
  padding: 8px 14px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 100px;
}
.playbook-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot); animation: blink 1.4s ease-in-out infinite;
}

.playbook-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 80px); line-height: 0.92;
  letter-spacing: -0.015em; text-transform: uppercase;
  margin-bottom: 28px; color: var(--ink);
}
.playbook-title .hot { color: var(--hot); font-style: italic; }
.playbook-title .outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
@media (max-width: 640px) {
  .playbook-title .outline { -webkit-text-stroke: 1.2px var(--ink); }
}

.playbook-lead {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 480px; margin-bottom: 32px;
}

.playbook-list {
  list-style: none; margin-bottom: 36px;
}
.playbook-list li {
  padding: 14px 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
.playbook-list li:last-child { border-bottom: 1px solid var(--line); }
.playbook-list .check {
  font-family: var(--font-mono); font-size: 11px; color: var(--hot-deep);
  letter-spacing: 0.1em; padding-top: 2px;
}
.playbook-list strong { color: var(--ink); font-weight: 700; }

.playbook-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--ink-mid);
}
.playbook-meta strong {
  display: block; font-family: var(--font-display);
  font-size: 22px; color: var(--ink); letter-spacing: 0;
  text-transform: none; margin-top: 6px; font-weight: 400;
}

.playbook-form-card {
  background: var(--ink); color: var(--bg);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.playbook-form-head {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.playbook-form-head-l {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.6);
  display: flex; align-items: center; gap: 8px;
}
.playbook-form-head-l::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot-bright); animation: blink 1.4s ease-in-out infinite;
}
.playbook-form-head-r {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6); text-transform: uppercase;
}

.playbook-form-body { padding: 36px 32px; }
@media (max-width: 540px) { .playbook-form-body { padding: 28px 22px; } }

.playbook-form-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; text-transform: uppercase; letter-spacing: 0;
  margin-bottom: 8px; color: var(--bg);
}
.playbook-form-sub {
  font-size: 14px; color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px; line-height: 1.55;
}

.pb-field {
  margin-bottom: 16px; position: relative;
}
.pb-field label {
  display: block;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.pb-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.pb-field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.pb-field input:focus {
  outline: none;
  border-color: var(--hot-bright);
  background: rgba(255, 255, 255, 0.06);
}
.pb-field input:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 112, 56, 0.25);
}
.pb-field.error input {
  border-color: var(--hot-bright);
}
.pb-field-error {
  display: none;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em;
  color: var(--hot-bright); margin-top: 6px;
  text-transform: uppercase;
}
.pb-field.error .pb-field-error { display: block; }

.pb-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 480px) {
  .pb-row { grid-template-columns: 1fr; }
}

.pb-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: none;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  margin-top: 12px;
  min-height: 56px;
}
@media (max-width: 900px), (pointer: coarse) { .pb-submit { cursor: pointer; } }
.pb-submit:hover, .pb-submit:focus {
  background: var(--hot);
  color: var(--bg);
  transform: translateY(-2px);
  outline: none;
}
.pb-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}
.pb-submit:disabled:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transform: none;
}
.pb-submit:disabled .arrow {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.pb-submit:disabled:hover .arrow {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  transform: none;
}
.pb-submit .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
  font-size: 13px;
}
.pb-submit:hover .arrow, .pb-submit:focus .arrow {
  background: var(--bg); color: var(--hot);
  transform: rotate(-45deg);
}

.pb-check {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px; cursor: pointer;
}
.pb-check input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--hot-bright);
  border-radius: 3px;
}
.pb-check-label {
  font-size: 13px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.pb-disclaimer {
  margin-top: 18px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5); line-height: 1.5;
  text-align: center;
}

.pb-success {
  display: none;
  padding: 50px 32px;
  text-align: center;
}
.pb-success.visible { display: block; }
.pb-success-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--hot-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--hot-bright);
}
.pb-success h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; text-transform: uppercase;
  color: var(--bg); margin-bottom: 12px;
}
.pb-success p {
  font-size: 14px; color: rgba(255, 255, 255, 0.72);
  line-height: 1.6; max-width: 320px; margin: 0 auto;
}

.pb-form.hidden { display: none; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--line); padding: 80px 0 32px;
  background: var(--paper); position: relative; overflow: hidden;
}
.footer-huge {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 14vw, 220px); line-height: 0.85;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 48px; text-align: center; user-select: none;
  word-break: break-word;
}
@media (max-width: 640px) {
  .footer-huge { -webkit-text-stroke: 1px var(--ink); margin-bottom: 36px; }
  footer { padding: 60px 0 28px; }
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 16px;
}
.footer-meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-meta strong { color: var(--ink); font-weight: 600; }
@media (max-width: 640px) { .footer-meta { font-size: 10px; } }

/* ── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > *, .char { opacity: 1 !important; transform: none !important; }
}
