/* Digital Rally — Editorial Rally full site */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: #faf7f2; color: #0a0a0a; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }
h1, h2, h3 { text-wrap: balance; }

:root {
  --cream: #faf7f2;
  --ink: #0a0a0a;
  --paper: #f0ebe0;
  --line: #0a0a0a;
  --orange: #1f5bbe;       /* brand mid-blue */
  --brand-deep: #261990;   /* deep indigo from logo */
  --brand-cyan: #15b6fc;   /* bright cyan from logo */
  --muted: #6b635a;
  --stone: #3a342e;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
.mobile-only { display: none !important; }
.nav-overlay { display: none; }

.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.archivo { font-family: 'Archivo', sans-serif; }
.serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--ink);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav.inverted { background: rgba(10,10,10,0.92); color: var(--cream); border-color: #2a2622; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 12px; }
.nav-mark {
  width: 24px; height: 24px; background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Archivo'; font-weight: 800; font-size: 14px;
}
.nav-mark-img {
  height: 26px; width: auto; display: block;
}
.nav.inverted .nav-mark { background: var(--cream); color: var(--ink); }
.nav-links { display: flex; gap: 28px; justify-self: center; }
.nav-links a { opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 10px 18px; background: var(--ink); color: var(--cream);
  border-radius: 999px; font-weight: 600; font-size: 11px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.25s var(--ease-expo), background 0.2s;
}
.nav.inverted .nav-cta { background: var(--orange); color: var(--cream); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.97) !important; }
.nav-cta .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 999px; }
.nav.inverted .nav-cta .dot { background: var(--ink); }

/* Hamburger button (hidden on desktop) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  background: none; border: none; cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav.inverted .nav-burger span { background: var(--cream); }
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-expo);
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 80px;
}
body.nav-open .nav-overlay {
  transform: translateY(0);
}
.nav-overlay-inner {
  width: 100%;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}
.nav-overlay-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,10,10,0.15);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.35s var(--ease-expo), transform 0.35s var(--ease-expo), color 0.15s;
}
.nav-overlay-link:hover { color: var(--orange); }
body.nav-open .nav-overlay-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.06s; }
body.nav-open .nav-overlay-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.10s; }
body.nav-open .nav-overlay-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.14s; }
body.nav-open .nav-overlay-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.18s; }
body.nav-open .nav-overlay-link:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.22s; }
body.nav-open .nav-overlay-link:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.26s; }

.nav-overlay-cta, .nav-overlay-foot {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-expo), transform 0.3s var(--ease-expo);
}
body.nav-open .nav-overlay-cta { opacity: 1; transform: none; transition-delay: 0.32s; }
body.nav-open .nav-overlay-foot { opacity: 1; transform: none; transition-delay: 0.38s; }
.nav-overlay-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  flex-shrink: 0;
}
.nav-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  width: fit-content;
}
.nav-overlay-cta:hover { background: var(--orange); }
.nav-overlay-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== CHAT BOTTOM SHEET ===== */
.chat-backdrop {
  display: block;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-in-out);
}
.chat-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.chat-sheet {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cream);
  border-radius: 20px 20px 0 0;
  border-top: 2px solid var(--ink);
  z-index: 201;
  max-height: 72svh;
  overflow-y: auto;
  padding: 16px 20px 40px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-expo);
}
.chat-sheet.open { transform: translateY(0); }
.chat-sheet-handle {
  width: 36px; height: 4px;
  background: rgba(10, 10, 10, 0.2);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.chat-sheet-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 22px; line-height: 1;
  color: var(--muted);
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.chat-sheet-inner .chat-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.chat-sheet-inner .chat-card-tag {
  display: inline-block;
  background: var(--orange); color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.chat-sheet-inner h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 18px;
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.chat-sheet-inner .vorgehen-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.chat-sheet-inner .vorgehen {
  font-size: 13px; line-height: 1.55; color: var(--ink); margin-bottom: 12px;
}
.chat-sheet-inner .kicker {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 15px;
  color: var(--muted); margin-bottom: 14px;
  padding-left: 12px; border-left: 2px solid var(--orange);
}
.chat-sheet-inner .meta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 16px;
}
.chat-sheet-inner .meta-grid > div {
  background: var(--paper); border-radius: 6px; padding: 8px 10px;
}
.chat-sheet-inner .meta-grid .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.chat-sheet-inner .meta-grid .v {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 13px; margin-top: 2px;
}
.chat-sheet-inner .meta-grid .v.orange { color: var(--orange); }
.chat-sheet-inner .card-cta { display: flex; flex-direction: column; gap: 8px; }
.chat-sheet-inner .card-cta a {
  display: block; text-align: center;
  padding: 12px 16px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  transition: background 0.2s;
}
.chat-sheet-inner .card-cta a.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}

/* ===== SECTION CHROME ===== */
.sec-label {
  display: flex; gap: 16px; align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.sec-label .tick { color: var(--orange); }
.sec-label .num { color: var(--ink); }

.section {
  position: relative;
  padding: 0 48px;
}
/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 48px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  position: relative;
}

.hero-topbar {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.hero-topbar .left { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-topbar .right { text-align: right; }
.hero-topbar .right .mail { color: var(--ink); margin-top: 4px; }
.hero-topbar .live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--orange); margin-right: 8px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 13.5vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  margin: 0;
  position: relative;
}
.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-headline .word > span {
  display: inline-block;
  transform: translateY(100%);
  animation: riseUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-headline .word.w-2 > span { animation-delay: 0.1s; }
.hero-headline .word.w-3 > span { animation-delay: 0.2s; }
.hero-headline .word.w-4 > span { animation-delay: 0.3s; }
.hero-headline .word.w-5 > span { animation-delay: 0.5s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero-headline .orange { color: var(--orange); }
.hero-headline .tail {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 0.5em; color: var(--muted); letter-spacing: -0.02em;
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
  opacity: 0;
  animation: fadeIn 0.8s 1s forwards;
}
.hero-lead { max-width: 44ch; }
.hero-lead p { font-size: 17px; line-height: 1.5; color: var(--ink); }
.hero-cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 22px; background: var(--ink); color: var(--cream);
  border-radius: 999px; font-family: 'Archivo'; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.25s var(--ease-expo), background 0.2s var(--ease-expo);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--orange); }
.btn-primary:active { transform: scale(0.97) !important; }
.btn-primary .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 999px; transition: background 0.2s; }
.btn-primary:hover .dot { background: var(--ink); }
.btn-ghost {
  padding: 14px 22px; background: transparent; color: var(--ink);
  border: 1px solid var(--ink); border-radius: 999px;
  font-family: 'Archivo'; font-weight: 600; font-size: 14px;
  transition: background 0.25s var(--ease-expo), color 0.25s var(--ease-expo), transform 0.25s var(--ease-expo);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost:active { transform: scale(0.97) !important; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  align-self: end;
}
.stat-cell {
  padding: 16px 20px;
  border-left: 1px solid var(--ink);
}
.stat-cell:last-child { border-right: 1px solid var(--ink); }
.stat-big {
  font-family: 'Archivo'; font-size: 52px; font-weight: 800;
  line-height: 1; letter-spacing: -0.04em;
}
.stat-big .counter { display: inline-block; }
.stat-small { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px; }
.stat-label { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* kinetic cursor halo behind headline */
.hero-halo {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,91,190,0.22), rgba(31,91,190,0) 60%);
  pointer-events: none;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  z-index: -1;
  transition: transform 0.2s ease-out;
}

/* ===== TELEMETRY TICKER ===== */
.telemetry {
  background: var(--ink); color: var(--cream);
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  position: relative;
}
.telemetry-track { display: flex; gap: 48px; animation: slide 40s linear infinite; white-space: nowrap; }
.telemetry-item { display: inline-flex; gap: 14px; align-items: center; font-family: 'JetBrains Mono'; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.telemetry-item .k { color: #8a7f70; }
.telemetry-item .v { color: var(--cream); }
.telemetry-item .o { color: var(--orange); }
.telemetry-item .sep { color: #3a342e; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== PILLARS ===== */
.pillars {
  padding-top: 120px;
  padding-bottom: 96px;
}
.pillars-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.pillars-head h2 {
  font-family: 'Archivo'; font-weight: 800;
  font-size: clamp(52px, 8.5vw, 130px);
  line-height: 0.9; letter-spacing: -0.04em;
  max-width: 16ch;
  margin-top: 16px;
}
.pillars-head .desc { font-size: 17px; line-height: 1.55; max-width: 44ch; }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.pillar-cell {
  padding: 40px 32px 32px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column;
  min-height: 560px;
  position: relative;
  transition: background 0.3s;
}
.pillar-cell:last-child { border-right: none; }
.pillar-cell.highlight { background: var(--ink); color: var(--cream); }
.pillar-cell:not(.highlight):hover { background: var(--paper); }
.pillar-head { display: flex; justify-content: space-between; align-items: flex-start; }
.pillar-num {
  font-family: 'Archivo'; font-size: 84px; font-weight: 900;
  line-height: 0.85; letter-spacing: -0.04em;
}
.pillar-cell.highlight .pillar-num { color: var(--orange); }
.pillar-tag { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pillar-cell.highlight .pillar-tag { color: var(--cream); }
.pillar-title {
  font-family: 'Archivo'; font-weight: 700;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.02em;
  margin-top: 40px; margin-bottom: 14px;
}
.pillar-body { font-size: 15px; line-height: 1.6; max-width: 30ch; color: var(--muted); }
.pillar-cell.highlight .pillar-body { color: #d9d4c8; }
.pillar-list {
  list-style: none; padding: 20px 0 0; margin-top: auto;
  border-top: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.pillar-cell.highlight .pillar-list { border-top-color: var(--stone); }
.pillar-list li {
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.pillar-list li .bullet {
  width: 6px; height: 6px; border-radius: 999px; background: var(--ink);
  flex-shrink: 0;
}
.pillar-cell.highlight .pillar-list li .bullet { background: var(--orange); }

/* ===== SCROLLY RALLY STAGES ===== */
.rally-scroll {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}
.rally-scroll .rally-head {
  padding: 120px 48px 60px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--stone);
}
.rally-scroll h2 {
  font-family: 'Archivo'; font-weight: 800;
  font-size: clamp(52px, 8.5vw, 130px);
  line-height: 0.9; letter-spacing: -0.04em;
  max-width: 14ch;
  margin-top: 16px;
}
.rally-scroll h2 em { color: var(--orange); }
.rally-scroll .rally-head .meta {
  text-align: right;
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a7f70;
}
.rally-scroll .rally-head .meta strong { color: var(--cream); display: block; font-size: 14px; margin-top: 4px; font-weight: 500; }

.rally-sticky-wrap { position: relative; }
.rally-sticky {
  position: sticky; top: 72px;
  height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  overflow: hidden;
}
.rally-left {
  padding: 48px 48px 0;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.rally-left .stage-count {
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a7f70;
  margin-bottom: 24px;
}
.rally-left .stage-count b { color: var(--orange); }
.rally-stage {
  position: absolute; inset: 0;
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.rally-stage.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.rally-stage-num {
  font-family: 'Archivo'; font-weight: 900;
  font-size: 140px; line-height: 1; letter-spacing: -0.05em;
  color: var(--orange);
}
.rally-stage-title {
  font-family: 'Archivo'; font-weight: 700;
  font-size: 56px; line-height: 1.05; letter-spacing: -0.03em;
  margin: 24px 0 16px;
}
.rally-stage-body { font-size: 17px; line-height: 1.55; max-width: 48ch; color: #d9d4c8; }
.rally-stage-note {
  margin-top: 32px;
  font-family: 'Instrument Serif'; font-style: italic; font-size: 20px;
  color: var(--orange);
  padding-top: 20px;
  border-top: 1px dashed var(--stone);
}
.rally-stage-meta {
  display: flex; gap: 32px; margin-top: 20px;
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a7f70;
}
.rally-stage-meta b { color: var(--cream); font-weight: 500; display: block; font-size: 13px; margin-top: 2px; }

/* Right side: rally map */
.rally-map {
  position: relative;
  border-left: 1px solid var(--stone);
  overflow: hidden;
}
.rally-map svg { width: 100%; height: 100%; display: block; }
.rally-track-bg { fill: none; stroke: var(--stone); stroke-width: 2; stroke-dasharray: 4 6; }
.rally-track-fg { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; transition: stroke-dashoffset 0.3s; }
.rally-checkpoint circle.ring { fill: var(--ink); stroke: var(--stone); stroke-width: 2; transition: stroke 0.3s; }
.rally-checkpoint.active circle.ring { stroke: var(--orange); }
.rally-checkpoint circle.dot { fill: var(--stone); transition: fill 0.3s; }
.rally-checkpoint.active circle.dot { fill: var(--orange); }
.rally-checkpoint text { fill: #8a7f70; font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.1em; }
.rally-checkpoint.active text { fill: var(--cream); }

.rally-car {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.rally-car .shadow { fill: rgba(31,91,190,0.25); }
.rally-car .body { fill: var(--orange); }
.rally-car .glow {
  fill: none; stroke: var(--orange); stroke-width: 2;
  opacity: 0.4;
}

.rally-spacer { height: 300vh; }

/* ===== WORK / CASES ===== */
.work {
  padding-top: 120px;
  padding-bottom: 96px;
}
.work-head { margin-bottom: 40px; }
.work-head h2 {
  font-family: 'Archivo'; font-weight: 800;
  font-size: clamp(52px, 8.5vw, 130px);
  line-height: 0.9; letter-spacing: -0.04em;
  margin-top: 16px;
  max-width: 14ch;
}
.work-head h2 em { color: var(--orange); }
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.case {
  padding: 32px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column;
  min-height: 420px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.case:last-child { border-right: none; }
.case:hover { background: var(--paper); }
.case-num { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.case-title {
  font-family: 'Archivo'; font-weight: 700;
  font-size: 40px; line-height: 1.05; letter-spacing: -0.03em;
  margin-top: 12px; max-width: 18ch;
}
.case-sub { font-size: 15px; line-height: 1.55; color: var(--muted); margin-top: 16px; max-width: 40ch; }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; }
.case-tag {
  font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--ink); border-radius: 999px;
}
.case .arrow {
  position: absolute; right: 32px; top: 32px;
  width: 48px; height: 48px; border-radius: 999px; background: var(--ink); color: var(--cream);
  display: grid; place-items: center; font-size: 20px;
  transition: transform 0.3s, background 0.3s;
}
.case:hover .arrow { transform: translate(4px, -4px) rotate(-10deg); background: var(--orange); }
.case-result {
  margin-top: 16px;
  font-family: 'Archivo'; font-weight: 900;
  font-size: 80px; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--orange);
}

/* two-up next to main case */
.case-stack {
  display: grid; grid-template-rows: 1fr 1fr;
}
.case.small {
  min-height: 210px;
  border-right: none;
  border-bottom: 1px solid var(--ink);
}
.case.small:last-child { border-bottom: none; }
.case.small .case-title { font-size: 26px; }
.case.small .case-result { font-size: 48px; }
.case.small .arrow { width: 40px; height: 40px; font-size: 16px; top: 24px; right: 24px; }

/* ===== CONTACT ===== */
.contact {
  background: var(--ink); color: var(--cream);
  padding: 120px 48px 48px;
  position: relative; overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 1200px; height: 1200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,91,190,0.20), rgba(31,91,190,0) 60%);
  left: 70%; top: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(40px);
}
.contact .mono { color: #8a7f70; position: relative; }
.contact .mono .tick { color: var(--orange); }
.contact h2 {
  font-family: 'Archivo'; font-weight: 900;
  font-size: clamp(80px, 16vw, 260px);
  line-height: 0.84; letter-spacing: -0.06em;
  margin: 24px 0 0;
  position: relative;
}
.contact h2 em { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; color: var(--orange); }
.contact-cta-row { display: flex; align-items: center; gap: 32px; margin-top: 48px; flex-wrap: wrap; position: relative; }
.contact-cta-row .btn-big {
  padding: 22px 36px; background: var(--orange); color: var(--cream);
  border-radius: 999px; font-family: 'Archivo'; font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform 0.25s var(--ease-expo);
}
.contact-cta-row .btn-big:hover { transform: translateY(-3px); }
.btn-big:active { transform: scale(0.98) !important; }
.contact-cta-row .note { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #8a7f70; max-width: 40ch; }

.contact-footer {
  margin-top: 160px;
  display: grid; grid-template-columns: auto 1fr auto auto;
  gap: 32px; align-items: end;
  padding-top: 24px; border-top: 1px solid var(--stone);
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a7f70;
  position: relative;
}
.contact-footer a:hover { color: var(--cream); }
.contact-footer .signoff { color: var(--cream); }

/* ===== CHAT MATCHER ===== */
.chat-sec { padding-top: 120px; padding-bottom: 140px; }
.chat-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 16px;
}

/* ---- Chat panel ---- */
.chat {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  box-shadow: 0 24px 60px rgba(10,10,10,0.08), 0 2px 0 var(--ink);
}
.chat-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid #eae4d6;
  background: #faf7f2;
}
.chat-avatar {
  width: 42px; height: 42px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: 'Archivo'; font-weight: 800; font-size: 14px;
  letter-spacing: -0.02em;
  overflow: hidden;
  padding: 8px;
}
.chat-avatar img {
  width: 100%; height: auto; display: block;
  filter: brightness(0) invert(1);
}
.chat-meta { flex: 1; }
.chat-name {
  font-family: 'Archivo'; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 6px;
}
.chat-verified {
  color: var(--orange);
  font-size: 13px;
}
.chat-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  display: flex; align-items: center; gap: 6px;
}
.chat-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #2fb36b;
  border-radius: 999px;
  animation: pulse 1.6s infinite;
}

.chat-body {
  flex: 1;
  padding: 24px 22px 12px;
  display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto;
  max-height: 520px;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: #d9d3c4; border-radius: 3px; }

.bubble {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
}
.bubble.them {
  background: #f0ebe0;
  color: var(--ink);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}
.bubble.me {
  background: var(--ink);
  color: var(--cream);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
  max-width: 80%;
}
.bubble-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}
.chat-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: #faf7f2;
  border: 1px solid #d9d3c4;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  line-height: 1.3;
}
.chat-chip:hover {
  border-color: var(--orange);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31,91,190,0.12);
}
.chat-chip:active { transform: scale(0.96); box-shadow: none !important; }
.chip-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.chip-label { flex: 1; }

/* Typing indicator */
.bubble.typing {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 16px 18px;
}
.bubble.typing span {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--muted);
  animation: typing 1.3s infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Input */
.chat-input-row {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid #eae4d6;
  background: #faf7f2;
}
.chat-input {
  flex: 1;
  background: #fff;
  border: 1px solid #d9d3c4;
  border-radius: 20px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: none;
  line-height: 1.4;
  max-height: 120px;
  outline: none;
  transition: border-color 0.15s;
}
.chat-input::placeholder { color: #a89f91; }
.chat-input:focus { border-color: var(--ink); }
.chat-send {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.05); background: var(--ink); }
.chat-send:active { transform: scale(0.93) !important; }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }

.chat-hint {
  padding: 0 22px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  background: #faf7f2;
}

/* ---- Response card ---- */
.chat-card {
  position: sticky;
  top: 100px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 24px;
  padding: 36px;
  min-height: 520px;
  box-shadow: 0 24px 60px rgba(10,10,10,0.06);
  transition: all 0.3s;
}
.chat-card.filled {
  background: var(--ink);
  color: var(--cream);
}
.chat-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.chat-card.filled .chat-card-eyebrow { color: #8a7f70; }
.chat-card-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--orange);
}

/* Empty state */
.placeholder-line {
  height: 14px;
  background: #e5dfcf;
  border-radius: 6px;
  margin-bottom: 10px;
}
.placeholder-line.short { width: 60%; }
.placeholder-gap { height: 32px; }
.placeholder-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px dashed #d9d3c4;
}
.placeholder-meta > div {
  display: flex; flex-direction: column; gap: 4px;
}
.placeholder-meta span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.placeholder-meta strong {
  font-family: 'Archivo'; font-weight: 700; font-size: 18px;
  color: #c7bfad;
}
.chat-card-hint {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dashed #d9d3c4;
  font-family: 'Instrument Serif'; font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* Filled card */
.chat-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.chat-card h3 {
  font-family: 'Archivo'; font-weight: 700;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.chat-card .einordnung-body {
  font-size: 16px; line-height: 1.55;
  color: #d9d4c8;
  margin-bottom: 24px;
}
.chat-card .vorgehen-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a7f70;
  margin-bottom: 8px;
}
.chat-card .vorgehen {
  font-size: 15px; line-height: 1.55;
  color: #e8e3d6;
  margin-bottom: 24px;
}
.chat-card .kicker {
  font-family: 'Instrument Serif'; font-style: italic;
  font-size: 17px;
  color: var(--orange);
  line-height: 1.4;
  padding: 16px 0;
  border-top: 1px dashed #3a342e;
  border-bottom: 1px dashed #3a342e;
  margin-bottom: 24px;
}
.chat-card .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}
.chat-card .meta-grid > div { display: flex; flex-direction: column; gap: 4px; }
.chat-card .meta-grid .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #8a7f70;
}
.chat-card .meta-grid .v {
  font-family: 'Archivo'; font-weight: 600; font-size: 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.chat-card .meta-grid .v.orange { color: var(--orange); }
.chat-card .card-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chat-card .card-cta a {
  padding: 12px 20px;
  background: var(--orange);
  color: var(--cream);
  border-radius: 999px;
  font-family: 'Archivo'; font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s;
}
.chat-card .card-cta a:hover { transform: translateY(-2px); }
.chat-card .card-cta a.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid #3a342e;
}
.chat-card .card-cta a.ghost:hover { border-color: var(--cream); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ACTIVE STATE FEEDBACK (touch / click) ===== */
.pillar-cell .pillar-head:active,
.rally-stage-head:active,
.award-toggle:active,
.case-toggle:active,
.nav-overlay-link:active { opacity: 0.6; }

/* ===== SERVICES MARQUEE (desktop) ===== */
.svc-strip {
  background: var(--ink); color: var(--cream);
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.svc-strip-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.svc-strip-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
  width: max-content;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.01em;
  animation: slide 90s linear infinite;
}
.svc-strip-track span { color: var(--cream); }
.svc-strip-track .svc-accent { color: var(--brand-cyan); }
.svc-strip-track b {
  font-weight: 400;
  color: rgba(244,237,225,0.3);
  font-family: 'Instrument Serif', serif;
  font-size: 24px; line-height: 1;
}

/* ===== CLIENTS MARQUEE ===== */
.clients-sec {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.clients-head {
  padding: 48px 48px 24px;
  display: flex; align-items: baseline; gap: 24px;
}
.clients-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.clients-marquee-wrap {
  background: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.clients-track {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: slide 55s linear infinite;
}
.cm-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.cm-item.cm-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  font-size: 24px;
}
.cm-item.cm-serif {
  font-family: 'Instrument Serif', serif;
  font-style: normal; font-weight: 400;
  font-size: 24px; letter-spacing: 0.04em;
}
.cm-sep {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; color: rgba(244,237,225,0.3);
}

/* ===== AWARD SECTION ===== */
.award-sec { padding-top: 96px; padding-bottom: 96px; }
.award-sec-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.award-left { display: flex; flex-direction: column; gap: 28px; }
.award-h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  margin-top: 12px;
}
.award-badge-row {
  display: flex; align-items: center; gap: 16px;
}
.award-badge-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.award-badge-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 18px;
  margin-top: 2px;
}
.award-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px; line-height: 1.3;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  color: var(--stone);
}
.award-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--ink);
  padding-top: 16px;
}
.award-facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.award-facts span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.award-facts strong { font-weight: 700; }

.award-video-frame {
  border: 1px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
}
.award-video-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f0ebe0;
  border-bottom: 1px solid var(--ink);
}
.vc-dots { display: flex; gap: 6px; }
.vc-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #c4c0b8;
}
.vc-dots span:nth-child(1) { background: #ff5f56; }
.vc-dots span:nth-child(2) { background: #ffbd2e; }
.vc-dots span:nth-child(3) { background: #27c93f; }
.vc-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--muted);
  flex: 1;
}
.award-video-body {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.award-video-body iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.award-video-cap {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 10px;
}

/* ===== CSS VARIABLE ALIAS ===== */
:root { --blue: var(--orange); --pad: 22px; --bottom-bar: 76px; }

/* ===== MOBILE ENHANCEMENTS ===== */
@media (max-width: 860px) {
  /* Hide desktop clutter */
  .desktop-only { display: none !important; }

  /* Show mobile-only elements */
  .mobile-only { display: block !important; }
  .nav-burger.mobile-only { display: flex !important; }
  .bottom-bar.mobile-only { display: grid !important; }

  /* Body padding for bottom bar */
  body { padding-bottom: 0; }

  /* Nav compact */
  .nav { grid-template-columns: auto auto; padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-logo img { height: 24px; }
  .nav-burger { display: flex; }
  .nav-overlay { display: flex; }
  body.nav-open { overflow: hidden; }

  /* Hero mobile — designer 17vw layout */
  .hero {
    padding: 70px var(--pad) 40px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }
  .hero-halo { display: none; }
  .hero-headline {
    font-size: 17vw;
    line-height: 0.88;
    letter-spacing: -0.045em;
    margin-bottom: auto;
    margin-top: 0;
  }
  .hero-headline .tail {
    font-size: 0.34em;
    color: var(--muted);
    display: block;
    letter-spacing: -0.01em;
    margin-top: 6px;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-top: 1px solid var(--ink);
    margin-top: 28px;
    padding-top: 18px;
  }
  .hero-lead p.mobile-only { font-size: 15px; line-height: 1.5; }
  .hero-cta-row { margin-top: 16px; flex-wrap: wrap; gap: 8px; }
  .btn-primary { padding: 12px 18px; font-size: 13px; min-height: 44px; }
  .btn-ghost { display: none !important; }

  /* Mobile hero meta strip */
  .hero-meta-m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .hero-meta-m .right { text-align: right; }
  .hero-meta-m strong { color: var(--ink); display: block; font-weight: 600; margin-top: 3px; }

  /* Mobile hero stats */
  .hero-stats-m {
    display: none !important;
  }
  .stat-cell-m {
    padding: 14px 10px;
    border-right: 1px solid rgba(10,10,10,0.15);
  }
  .stat-cell-m:last-child { border-right: none; }
  .stat-big-m {
    font-family: 'Archivo', sans-serif;
    font-size: 28px; font-weight: 800;
    line-height: 1; letter-spacing: -0.04em;
  }
  .stat-sup-m { font-size: 14px; font-weight: 600; }
  .stat-sub-m {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 6px;
    color: var(--ink);
  }
  .stat-meta-m {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
  }

  /* Scroll hint */
  .scroll-hint-m {
    margin-top: 22px;
    display: flex !important;
    align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-arrow-m {
    width: 18px; height: 1px; background: var(--muted); position: relative;
    display: inline-block;
    animation: arrowBounce 2s ease-in-out infinite;
  }
  .scroll-arrow-m::after {
    content: '';
    position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px;
    border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted);
    transform: rotate(-45deg);
  }
  @keyframes arrowBounce { 0%,100%{transform:translateX(0);} 50%{transform:translateX(6px);} }

  /* Services marquee compact */
  .svc-strip { padding: 10px 0; }
  .svc-strip-track { font-size: 14px; gap: 14px; animation-duration: 90s; }
  .svc-strip-track b { font-size: 16px; }
  .svc-strip-track-r { animation-duration: 80s; }
  .clients-track { animation-duration: 55s; }
  .telemetry-track { animation-duration: 25s; }

  /* Pillars — swipe carousel */
  .pillars { padding: 48px 0 32px; }
  .pillars-head { padding: 0 var(--pad) 22px; margin-bottom: 0; display: block; }
  .pillars-head h2 { font-size: 12vw; line-height: 0.9; letter-spacing: -0.045em; margin-top: 8px; }
  .pillars-head h2 em { color: var(--blue); }
  .pillars-head .desc { display: none; }

  .pillars-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    margin: 0 calc(var(--pad) * -1);
    padding: 8px var(--pad) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: none !important;
  }
  .pillars-grid::-webkit-scrollbar { display: none; }

  .pillar-cell {
    flex: 0 0 78% !important;
    scroll-snap-align: start;
    border-radius: 18px !important;
    border: 1px solid var(--ink) !important;
    border-bottom: 1px solid var(--ink) !important;
    padding: 22px 20px 24px !important;
    min-height: 360px !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: default !important;
    user-select: auto !important;
  }
  .pillar-cell:last-child { border-bottom: 1px solid var(--ink) !important; }
  .pillar-cell .pillar-head {
    padding: 0 !important;
    cursor: default !important;
    user-select: auto !important;
    position: static !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .pillar-cell .pillar-head::after { display: none !important; }
  .pillar-cell .pillar-num {
    font-size: 48px !important;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
  }
  .pillar-cell.highlight .pillar-num { color: var(--blue) !important; }
  .pillar-cell .pillar-tag { font-size: 9.5px; letter-spacing: 0.16em; padding-top: 8px; }
  .pillar-cell.highlight .pillar-tag { color: rgba(250,247,242,0.6); }
  .pillar-cell .pillar-title { font-size: 22px !important; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 10px; }
  .pillar-cell .pillar-body {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    padding: 0 0 16px !important;
    font-size: 14px; line-height: 1.5;
    overflow: visible !important;
    transition: none !important;
  }
  .pillar-cell.highlight .pillar-body { color: rgba(250,247,242,0.7); }
  .pillar-cell .pillar-list {
    display: flex !important;
    flex-direction: column !important;
    max-height: none !important;
    opacity: 1 !important;
    padding: 14px 0 0 !important;
    border-top: 1px solid var(--ink);
    margin-top: auto;
    gap: 8px;
    overflow: visible !important;
    transition: none !important;
  }
  .pillar-cell.highlight .pillar-list { border-top-color: rgba(250,247,242,0.18); }
  .pillar-cell .pillar-list li { font-size: 10px !important; padding: 0 !important; letter-spacing: 0.12em; }
  .pillar-cell .pillar-list li .bullet { width: 5px; height: 5px; border-radius: 999px; background: var(--ink); flex-shrink: 0; }
  .pillar-cell.highlight .pillar-list li .bullet { background: var(--blue); }
  .pillar-cell.highlight { background: var(--ink); color: var(--cream); }

  /* Pillar rail dots */
  .rail-dots {
    display: flex !important;
    gap: 6px; justify-content: center;
    margin-top: 4px;
    padding-bottom: 8px;
  }
  .rail-dot {
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--ink); opacity: 0.2;
    transition: opacity 0.2s, transform 0.2s;
  }
  .rail-dot.active { opacity: 1; transform: scale(1.3); }

  /* Work cases — swipe carousel */
  .work { padding: 48px 0 32px; }
  .work-head { margin-bottom: 0; padding: 0 var(--pad); }
  .work-head h2 { font-size: 12vw; line-height: 0.92; letter-spacing: -0.045em; margin-top: 8px; }
  .work-head h2 em { color: var(--blue); }
  .work-head .sec-eyebrow { font-size: 10px; }

  .work-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    margin: 24px calc(var(--pad) * -1) 0;
    padding: 8px var(--pad) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .case-stack { display: contents; }

  .case {
    flex: 0 0 84% !important;
    scroll-snap-align: start;
    background: var(--ink); color: var(--cream);
    border-radius: 18px !important;
    padding: 22px 20px !important;
    border: none !important;
    border-bottom: none !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    cursor: default !important;
  }
  .case:last-child { border-bottom: none !important; }
  .case.small {
    background: var(--paper); color: var(--ink);
    min-height: 280px !important;
  }
  .case .arrow { display: block !important; position: absolute; top: 22px; right: 22px; font-size: 22px; font-weight: 800; }
  .case .case-num { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,247,242,0.55); margin-bottom: 18px; }
  .case.small .case-num { color: var(--muted); }
  .case .case-title { font-size: 18px !important; line-height: 1.15; letter-spacing: -0.02em; margin-top: 0; margin-bottom: 14px; }
  .case .case-result { font-size: 52px !important; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--blue); margin-top: 0; }
  .case .case-sub { display: block !important; font-size: 13px; line-height: 1.5; color: rgba(250,247,242,0.7); margin-top: 14px; margin-bottom: 14px; }
  .case.small .case-sub { color: rgba(10,10,10,0.7); }
  .case-collapse { display: block !important; max-height: none !important; overflow: visible !important; opacity: 1 !important; transition: none !important; }
  .case .case-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 5px; padding-top: 0 !important; }
  .case-tag { padding: 4px 9px; background: rgba(250,247,242,0.1); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
  .case.small .case-tag { background: rgba(10,10,10,0.08); }
  .case-toggle { display: none !important; }

  /* Process / Rally — vertical timeline */
  .rally-scroll { padding: 56px 0; }
  .rally-head { padding: 0 var(--pad) 36px; }
  .rally-head .sec-label { font-size: 8.5px; flex-wrap: nowrap; overflow: hidden; white-space: nowrap; }
  .rally-head h2 { font-size: clamp(28px, 8vw, 40px); line-height: 1.05; letter-spacing: -0.04em; margin-top: 8px; text-wrap: auto; }
  .rally-head h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--blue); }
  .rally-head > div:last-child { display: none; }
  .rally-sticky-wrap { display: none !important; }

  /* Mobile timeline */
  .mobile-process { display: block !important; padding: 0 var(--pad); }
  .m-timeline {
    position: relative;
    padding-left: 42px;
  }
  .m-timeline::before {
    content: '';
    position: absolute;
    left: 13px; top: 16px; bottom: 16px;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--blue), rgba(31,91,190,0.3) 40%, rgba(250,247,242,0.15));
  }
  .m-car {
    position: absolute;
    left: 4px;
    top: 16px;
    transform: rotate(90deg) translateX(-50%);
    pointer-events: none;
    z-index: 2;
    transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block !important;
  }
  .m-car .mc-glow {
    animation: carPulse 1.8s ease-in-out infinite;
  }
  @keyframes carPulse {
    0%, 100% { opacity: 0.18; r: 9; }
    50% { opacity: 0.38; r: 12; }
  }
  .m-stage { position: relative; padding-bottom: 32px; }
  .m-stage:last-child { padding-bottom: 0; }
  .m-stage-bullet {
    position: absolute;
    left: -42px; top: 4px;
    width: 28px; height: 28px;
    border-radius: 999px;
    background: var(--ink);
    border: 1.5px solid var(--blue);
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 700;
    color: var(--blue);
  }
  .m-stage-0 .m-stage-bullet {
    background: var(--blue); color: var(--ink);
    box-shadow: 0 0 0 6px rgba(31,91,190,0.18);
  }
  .m-stage-etappe {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(250,247,242,0.5);
    margin-bottom: 4px;
  }
  .m-stage-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 24px;
    letter-spacing: -0.02em; line-height: 1;
    margin-bottom: 10px;
  }
  .m-stage-body {
    font-size: 14px; line-height: 1.5;
    color: rgba(250,247,242,0.72);
    margin-bottom: 14px;
  }
  .m-stage-meta {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 8px; margin-bottom: 12px;
  }
  .m-stage-meta > div {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(250,247,242,0.5);
    border-top: 1px solid rgba(250,247,242,0.18);
    padding-top: 8px;
  }
  .m-stage-meta b {
    display: block;
    color: var(--cream);
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: 12px;
    letter-spacing: -0.01em; text-transform: none;
    margin-top: 2px;
  }
  .m-stage-note {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-size: 16px;
    color: var(--blue); line-height: 1.3;
  }

  /* hide old rally stage elements on mobile */
  .rally-map { display: none; }
  .rally-spacer { display: none; }

  /* Award section compact */
  .award-sec { padding: 36px 20px; }
  .award-sec-inner { grid-template-columns: 1fr; gap: 20px; }
  .award-h { font-size: clamp(24px, 6vw, 30px); margin-top: 4px; }
  .award-badge-row { margin: 16px 0 12px; gap: 12px; }
  .award-quote { font-size: 15px; padding-left: 14px; border-left-width: 2px; }
  .award-facts > div { font-size: 12px; }
  .award-badge-title { font-size: 14px; }
  .award-badge-eyebrow { font-size: 9px; }
  .award-video-chrome { display: none; }
  .award-video-cap { font-size: 9px; padding-top: 6px; }

  /* Award collapse — smooth max-height */
  .award-collapse {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s var(--ease-expo), opacity 0.35s;
  }
  .award-collapse.open {
    max-height: 600px;
    opacity: 1;
  }
  .award-right.award-collapse {
    display: block !important;
  }
  .award-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: none; border: none; cursor: pointer;
    margin-top: 12px;
  }
  .award-toggle-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s;
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
  }
  .award-toggle[aria-expanded="true"] .award-toggle-icon {
    transform: rotate(45deg);
  }

  /* Clients compact */
  .clients-sec { padding: 32px 0; }
  .clients-head { padding: 0 20px 16px; }
  .clients-head .sec-eyebrow { font-size: 10px; }
  .clients-marquee-wrap { padding: 14px 0; }
  .cm-item { font-size: 16px; }
  .cm-item.cm-italic, .cm-item.cm-serif { font-size: 18px; }
  .cm-sep { font-size: 18px; }

  /* Telemetry compact */
  .telemetry { padding: 8px 0; }
  .telemetry-item { font-size: 10px; gap: 10px; }
  .telemetry-track { gap: 28px; }

  /* Chat section */
  .chat-sec { padding: 48px var(--pad) 40px; }
  .konfig-head { margin-bottom: 22px; }
  .konfig-head h2 { font-size: 12vw; line-height: 0.92; letter-spacing: -0.045em; margin-top: 8px; }
  .konfig-head h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--blue); }
  .chat { min-height: auto; border-radius: 20px; height: 520px; max-height: 75svh; }
  .chat-head { padding: 12px 14px; }
  .chat-body { padding: 14px; min-height: 140px; max-height: 100%; }
  .chip-grid { grid-template-columns: 1fr; gap: 6px; margin-top: 8px; }
  .chat-chip { padding: 10px 12px; font-size: 12.5px; border-radius: 999px; gap: 10px; }
  .chip-icon { font-size: 14px; }
  .chat-input-row { padding: 10px 12px 12px; gap: 8px; }
  .chat-input { font-size: 14px; padding: 10px 14px; border-radius: 999px; }
  .chat-send { width: 38px; height: 38px; }
  .chat-hint { font-size: 9px; padding: 6px 14px 12px; }
  .chat-chip-more { padding: 10px 12px; font-size: 10px; }

  /* Chat inline response card (mobile) */
  .chat-response-m {
    display: block !important;
    margin-top: 14px;
    background: var(--ink); color: var(--cream);
    border-radius: 22px;
    padding: 22px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
  }
  .chat-response-m.filled { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .chat-rm-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(250,247,242,0.55);
  }
  .chat-rm-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: var(--blue);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600;
  }
  .chat-response-m h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 20px;
    line-height: 1.15; letter-spacing: -0.02em;
    margin: 12px 0 14px;
  }
  .chat-rm-vl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(250,247,242,0.55);
    margin-bottom: 6px;
  }
  .chat-rm-vorgehen {
    font-size: 14px; line-height: 1.55;
    color: rgba(250,247,242,0.85);
  }
  .chat-rm-kicker {
    margin-top: 12px;
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-size: 15px; line-height: 1.35;
    color: var(--blue);
  }
  .chat-rm-meta {
    margin-top: 16px;
    border-top: 1px solid rgba(250,247,242,0.18);
    padding-top: 14px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
  }
  .chat-rm-meta .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(250,247,242,0.5);
  }
  .chat-rm-meta .v {
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: 13px;
    margin-top: 3px;
  }
  .chat-rm-cta {
    margin-top: 16px;
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .chat-rm-cta a {
    flex: 1; text-align: center;
    padding: 12px;
    border-radius: 999px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: 13px;
  }
  .chat-rm-cta .primary { background: var(--blue); color: var(--cream); }
  .chat-rm-cta .ghost { border: 1px solid rgba(250,247,242,0.3); color: var(--cream); }

  /* Award section — compact card */
  .award-sec { padding: 56px var(--pad) 48px; background: var(--paper); }
  .award-sec-inner { grid-template-columns: 1fr; gap: 20px; }
  .award-h { font-size: 13vw; line-height: 0.92; letter-spacing: -0.045em; margin-top: 20px; }
  .award-h em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--blue); }
  .award-badge-row { margin: 16px 0 0; gap: 14px; align-items: center; }
  .award-quote { font-size: 16px; padding-left: 14px; border-left-width: 2px; border-left-color: var(--blue); }
  .award-facts > div { font-size: 12px; }
  .award-badge-title { font-size: 14px; }
  .award-badge-eyebrow { font-size: 9px; }
  .award-video-chrome { display: none; }
  .award-video-cap { font-size: 9px; padding-top: 6px; }
  /* Show award collapse content always on mobile (no toggle needed) */
  .award-collapse {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .award-right.award-collapse { display: block !important; margin-top: 24px; }
  .award-video-frame { border-radius: 14px; overflow: hidden; }
  .award-video-body { aspect-ratio: 16/9; height: auto !important; }
  .award-video-body iframe { width: 100%; height: 100%; display: block; }
  .award-toggle { display: none !important; }

  /* Clients compact */
  .clients-sec { padding: 0; }
  .clients-head { padding: 48px var(--pad) 18px; flex-direction: column; gap: 6px; }
  .clients-head .sec-eyebrow { font-size: 10px; }
  .clients-marquee-wrap { padding: 16px 0; display: flex; flex-direction: column; gap: 10px; }
  .cm-item { font-size: 18px; }
  .cm-item.cm-italic, .cm-item.cm-serif { font-size: 20px; }
  .cm-sep { font-size: 20px; }
  .clients-track-r { display: flex !important; animation: slide-r 60s linear infinite; }

  /* Contact section */
  .contact { padding: 56px var(--pad) 48px; }
  .contact::before { width: 600px; height: 600px; left: 50%; }
  .contact .sec-eyebrow { font-size: 10px; }
  .contact h2 { font-size: 18vw; line-height: 0.92; letter-spacing: -0.045em; }
  .contact h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--blue); }
  .contact > p { font-size: 13px; }
  .contact-cta-row { margin-top: 28px; flex-direction: column; gap: 12px; }
  .contact-cta-row .note { font-size: 10px; text-align: center; line-height: 1.7; }
  .contact-cta-row .btn-big {
    padding: 16px 22px;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
    border-radius: 999px;
  }
  .contact-footer {
    margin-top: 36px;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    font-size: 9px;
    padding-top: 18px;
  }
  .contact-footer .signoff { grid-column: 1 / -1; }

  /* Chat layout */
  .chat-wrap { grid-template-columns: 1fr; }
  .chat-card { display: none !important; }

  /* Chip overflow */
  .chip-grid { grid-template-columns: 1fr; }
  .chat-chip.chip-overflow { display: none; }
  .chip-grid.chips-expanded .chat-chip.chip-overflow { display: flex; }
  .chat-chip-more {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 8px 12px;
    background: transparent;
    border: 1px dashed rgba(10,10,10,0.3);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .chat-chip-more:hover { border-color: var(--ink); color: var(--ink); }

  /* Hide old bottom sheet on mobile — using inline card instead */
  .chat-sheet { display: none !important; }
  .chat-backdrop { display: none !important; }

  /* Sticky bottom bar */
  .bottom-bar {
    position: fixed;
    bottom: 12px; left: 12px; right: 12px;
    z-index: 90;
    background: var(--ink); color: var(--cream);
    border-radius: 999px;
    padding: 8px 8px 8px 18px;
    grid-template-columns: 1fr auto;
    align-items: center; gap: 8px;
    box-shadow: 0 8px 28px rgba(10,10,10,0.25), 0 2px 8px rgba(10,10,10,0.18);
    transform: translateY(calc(100% + 36px));
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .bottom-bar.shown { transform: translateY(0); }
  .bb-top {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(250,247,242,0.55);
  }
  .bb-main {
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 14px;
    letter-spacing: -0.01em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .bottom-bar-cta {
    background: var(--blue); color: var(--cream);
    padding: 12px 18px;
    border-radius: 999px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 13px;
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }
  .bb-dot {
    width: 6px; height: 6px;
    background: var(--cream); border-radius: 999px;
    animation: pulse 1.6s infinite;
  }

  /* Services marquee compact */
  .svc-strip { padding: 10px 0; }
  .svc-strip-row-r { margin-top: 10px; }
  .svc-strip-track { font-size: 14px; gap: 14px; animation-duration: 90s; }
  .svc-strip-track b { font-size: 16px; }
  .svc-strip-track-r { animation-duration: 80s; }
  .clients-track { animation-duration: 55s; }

  /* Section padding — only left/right; individual rules handle top/bottom */
  .section:not(.hero) { padding-left: var(--pad); padding-right: var(--pad); }
  section:not(.hero) { padding-left: var(--pad); padding-right: var(--pad); }

  /* Disable reveal animation on mobile */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Two-row marquee on mobile */
  .svc-strip-row-r { display: block !important; }
  .svc-strip-track-r { animation: slide-r 45s linear infinite; }
  @keyframes slide-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
}
