/* ITC — component styles */

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--fg);
}
.nav-mark {
  width: 32px; height: 32px;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.nav-logo:hover .nav-mark { transform: rotate(-6deg) scale(1.05); }
.nav-logo-text { font-size: 15px; letter-spacing: -0.01em; }
.nav-logo-text strong { font-weight: 600; }
.nav-links {
  display: flex; gap: 4px;
  font-size: 14px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-dim);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); background: var(--bg-2); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-lang {
  background: transparent; border: 0;
  color: var(--fg-dim);
  font-size: 12px;
  padding: 6px 10px;
  display: inline-flex; gap: 4px; align-items: center;
  cursor: pointer;
}
.nav-lang .active { color: var(--fg); }
.nav-lang .sep { opacity: .4; }
.nav-theme {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--fg); transition: all .2s var(--ease);
}
.nav-theme:hover { background: var(--bg-2); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.nav-burger { display: none; background: none; border: 0; padding: 6px; flex-direction: column; gap: 4px; width: 32px; cursor: pointer; }
.nav-burger span { height: 1.5px; background: var(--fg); width: 100%; display: block; transition: all .2s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.nav-mobile { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: none; flex-direction: column;
    background: var(--bg-2); padding: 16px 24px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); color: var(--fg-dim); }
  .nav-mobile a:hover { color: var(--fg); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-canvas-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: .75;
  pointer-events: auto;
}
.hero-canvas-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, transparent 0%, var(--bg) 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  gap: 24px 48px;
  align-items: start;
}
.hero-meta {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.hero-locations {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-locations .dot { width: 3px; height: 3px; background: var(--fg-dim); border-radius: 50%; display: inline-block; }
.hero-title {
  grid-column: 1 / 2;
  font-size: clamp(48px, 8.2vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
  max-width: 14ch;
}
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; }
.hero-title .serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}
@keyframes heroWord {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animations only fire when JS has loaded (class added by main.js) */
.hero-anim .hero-title .word {
  opacity: 0; transform: translateY(40px);
  animation: heroWord .9s var(--ease) forwards;
}
.hero-anim .hero-title .l1 .word { animation-delay: 0.1s; }
.hero-anim .hero-title .l1 .word:nth-child(2) { animation-delay: 0.2s; }
.hero-anim .hero-title .l2 .word { animation-delay: 0.35s; }
.hero-anim .hero-title .l3 .word { animation-delay: 0.5s; }
.hero-anim .hero-title .l3 .word:nth-child(2) { animation-delay: 0.6s; }
.hero-anim .hero-title .l3 .word:nth-child(3) { animation-delay: 0.7s; }

.hero-sub {
  grid-column: 1 / 2;
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--fg-dim);
  max-width: 54ch;
  margin: 0;
}
.hero-anim .hero-sub { opacity: 0; animation: heroWord .9s .8s var(--ease) forwards; }

.hero-ctas {
  grid-column: 1 / 2;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-anim .hero-ctas { opacity: 0; animation: heroWord .9s 1s var(--ease) forwards; }

.hero-side {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
  align-self: end;
  width: 380px;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-anim .hero-side { opacity: 0; animation: heroWord .9s 1.1s var(--ease) forwards; }

/* Device cluster */
.hero-cluster {
  position: relative;
  height: 340px;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}
.hc-laptop {
  position: absolute;
  top: 20px; left: 10px;
  width: 320px;
  transition: transform .3s var(--ease);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.hc-laptop-lid {
  background: linear-gradient(180deg, #1a1e22 0%, #0f1216 100%);
  border: 1px solid var(--line-2);
  border-radius: 8px 8px 4px 4px;
  overflow: hidden;
}
.hc-lap-head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hc-lap-dots { display: inline-flex; gap: 4px; }
.hc-lap-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); display: inline-block; }
.hc-lap-title { font-size: 9px; letter-spacing: 0.08em; color: rgba(242,241,236,0.55); margin-left: auto; font-family: var(--f-mono); }
.hc-lap-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.hc-lap-row {
  display: grid;
  grid-template-columns: 88px 1fr 40px;
  align-items: center; gap: 10px;
  font-size: 10px;
}
.hc-lap-row .mono:first-child { color: rgba(242,241,236,0.7); letter-spacing: 0.06em; }
.hc-lap-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
.hc-lap-bar span {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.hc-ok { color: var(--accent); text-align: right; font-family: var(--f-mono); font-size: 10px; }
.hc-prog { color: var(--accent); text-align: right; font-family: var(--f-mono); font-size: 10px; font-variant-numeric: tabular-nums; }
.hc-wait { color: rgba(242,241,236,0.4); text-align: right; font-family: var(--f-mono); font-size: 10px; }
.hc-laptop-base {
  height: 6px;
  background: linear-gradient(180deg, #15181b, #0a0b0d);
  border-radius: 0 0 10px 10px;
  margin: 0 -8px;
  border: 1px solid var(--line);
  border-top: 0;
}

.hc-rollout {
  position: absolute;
  top: 160px; right: -20px;
  width: 180px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hc-rollout-head { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: 0.1em; color: var(--fg-dim); margin-bottom: 10px; font-family: var(--f-mono); }
.hc-rollout-count { color: var(--accent); font-family: var(--f-mono); }
.hc-rollout-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
.hc-dev {
  aspect-ratio: 1;
  border-radius: 1px;
  background: var(--line);
  transition: background .3s, box-shadow .3s;
  display: block;
}
.hc-dev.hc-done { background: var(--accent); }
.hc-dev.hc-prog {
  background: color-mix(in oklab, var(--accent) 50%, transparent);
  animation: devblink 0.8s infinite;
  box-shadow: 0 0 4px var(--accent);
}
@keyframes devblink { 50% { opacity: 0.4; } }

.hc-ping {
  position: absolute;
  top: -10px; right: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  transition: transform .3s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.hc-ping-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--success) 30%, transparent);
  animation: ltpulse 1.4s infinite;
  flex-shrink: 0;
}
.hc-ping-lbl { color: var(--fg-dim); letter-spacing: 0.08em; font-family: var(--f-mono); }
.hc-ping-val { color: var(--fg); font-weight: 500; font-family: var(--f-mono); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-column: 1; grid-row: auto; width: 100%; max-width: 420px; }
  .hero-cluster { height: 280px; max-width: 420px; }
  .hc-laptop { width: 88%; left: 5%; }
  .hc-rollout { right: 0; }
}
.hero-scroll {
  grid-column: 1 / -1;
  margin-top: 80px;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--fg-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-scroll-line {
  display: inline-block; width: 60px; height: 1px; background: var(--line-2); position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: -20px; top: 0; width: 20px; height: 1px;
  background: var(--accent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  to { left: 60px; }
}

/* Live ticker */
.live-ticker {
  background: color-mix(in oklab, var(--bg-2) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lt-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--fg-dim);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.lt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--success) 30%, transparent);
  animation: ltpulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes ltpulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.lt-time { margin-left: auto; color: var(--fg-mute); font-family: var(--f-mono); font-size: 10px; }
.lt-rows { display: grid; gap: 10px; }
.lt-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 10px;
  font-size: 13px;
}
.lt-status {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.lt-ok { background: var(--success); }
.lt-wait { background: var(--accent); }
.lt-label { font-size: 10px; color: var(--fg-dim); letter-spacing: 0.06em; font-family: var(--f-mono); }
.lt-val { color: var(--fg); font-weight: 500; font-size: 13px; text-align: right; }

/* ============ SERVICES ============ */
.services { background: var(--bg); border-top: 1px solid var(--line); }
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) { .svc-layout { grid-template-columns: 1fr; } }

.svc-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
}
.svc-item::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc-item.active::before, .svc-item:hover::before { transform: scaleX(1); }
.svc-item.active .svc-title, .svc-item:hover .svc-title { color: var(--fg); }
.svc-num { font-size: 12px; color: var(--fg-mute); width: 28px; font-family: var(--f-mono); }
.svc-title { font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.02em; font-weight: 500; color: var(--fg-dim); transition: color .3s var(--ease); }
.svc-arrow {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--fg-dim);
  opacity: 0; transform: translateX(-8px);
  transition: all .3s var(--ease);
}
.svc-item.active .svc-arrow, .svc-item:hover .svc-arrow {
  opacity: 1; transform: translateX(0);
  color: var(--accent-ink); background: var(--accent); border-color: var(--accent);
}

.svc-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: sticky; top: 100px;
  min-height: 520px;
  overflow: hidden;
}
.svc-panel-inner { display: grid; gap: 24px; animation: panelIn .4s var(--ease); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-panel-num { font-size: 12px; color: var(--accent); font-family: var(--f-mono); }
.svc-meta h3 { font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.02em; margin: 8px 0 12px; font-weight: 500; }
.svc-meta p { color: var(--fg-dim); margin: 0 0 20px; font-size: 15px; line-height: 1.55; max-width: 50ch; }
.svc-items { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.svc-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); }
.svc-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-visual {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  min-height: 220px;
}

/* Service visuals */
.sv { font-size: 13px; }
.sv-support .sv-screen {
  background: #0b0d0f;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.sv-term-head {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.sv-term-head span:not(.mono) { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.sv-term-head .mono { margin-left: auto; font-size: 10px; color: rgba(246,245,240,0.5); }
.sv-term-body { padding: 14px; font-size: 12px; color: #eaeae2; line-height: 1.7; font-family: var(--f-mono); }
.sv-prompt { color: var(--accent); margin-right: 6px; }
.sv-dim { color: rgba(234,234,226,0.5); padding-left: 14px; }
.sv-ok { color: #9cd9a8; padding-left: 14px; }
.sv-blink { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.sv-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 4px;
  font-size: 10px; letter-spacing: 0.1em; font-family: var(--f-mono);
}

.sv-deploy .sv-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px;
  margin-bottom: 16px;
}
.sv-dev { aspect-ratio: 1 / 0.7; position: relative; }
.sv-dev-top {
  height: 70%;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: 2px 2px 0 0;
}
.sv-dev-base {
  height: 30%;
  background: var(--line-2);
  border-radius: 0 0 3px 3px;
  margin: 0 -15%;
}
.sv-dev.done .sv-dev-top { background: var(--accent); border-color: var(--accent); }
.sv-dev.prog .sv-dev-top { background: color-mix(in oklab, var(--accent) 40%, transparent); border-color: var(--accent); animation: devpulse 1.4s infinite; }
@keyframes devpulse { 50% { opacity: .5; } }
.sv-progress { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--fg-dim); letter-spacing: 0.06em; font-family: var(--f-mono); }
.sv-bar { flex: 1; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.sv-bar-fill { height: 100%; background: var(--accent); transition: width .8s var(--ease); }

.sv-hw-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  font-family: var(--f-mono);
}
.sv-hw-row:last-child { border-bottom: 0; }
.sv-qty { color: var(--fg); font-size: 14px; font-family: var(--f-mono); }
.sv-hw-total .mono:first-child { color: var(--fg); }
.sv-hw-total .sv-qty { color: var(--accent); }

.sv-sys .sv-flow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.sv-node {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  background: var(--bg-2);
}
.sv-node-acc { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.sv-node-done { border-color: var(--success); color: var(--success); }
.sv-flow-arrow {
  flex: 1; max-width: 28px;
  height: 1px; background: var(--line-2); position: relative;
}
.sv-flow-arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  border: 3px solid transparent; border-left-color: var(--line-2);
}
.sv-code {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 6px; padding: 12px;
  font-size: 12px; line-height: 1.8; color: var(--fg-dim);
  font-family: var(--f-mono);
}
.sv-key { color: var(--accent); }
.sv-str { color: var(--fg); }
.sv-op { color: var(--fg-mute); }

.sv-consult .sv-ch-head { color: var(--fg-dim); font-size: 11px; letter-spacing: 0.1em; margin-bottom: 14px; font-family: var(--f-mono); }
.sv-chart { display: grid; gap: 10px; }
.sv-chart-row { display: grid; grid-template-columns: 90px 1fr 70px; align-items: center; gap: 10px; font-size: 12px; }
.sv-chart-lbl { color: var(--fg-dim); font-size: 11px; font-family: var(--f-mono); }
.sv-chart-bar { height: 8px; background: var(--line); border-radius: 3px; overflow: hidden; }
.sv-chart-fill { height: 100%; transition: width 1s var(--ease); }
.sv-keep { background: var(--accent); }
.sv-retire { background: var(--danger); }
.sv-review { background: var(--fg-dim); }
.sv-chart-tag { font-size: 9px; letter-spacing: 0.1em; font-family: var(--f-mono); }
.sv-tag-keep { color: var(--accent); }
.sv-tag-retire { color: var(--danger); }
.sv-tag-review { color: var(--fg-mute); }

.sv-ai-msg {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px; line-height: 1.55;
}
.sv-ai-role { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); min-width: 48px; padding-top: 3px; font-family: var(--f-mono); }
.sv-ai-res .sv-ai-role { color: var(--accent); }
.sv-ai-meter {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px; margin-top: 8px;
}
.sv-ai-meter .mono:first-child { font-size: 10px; color: var(--fg-dim); letter-spacing: 0.1em; }
.sv-ai-meter-val { font-size: 22px; color: var(--accent); font-family: var(--f-mono); }

/* ============ PROCESS ============ */
.process { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  height: 1px; background: var(--line);
}
@media (max-width: 900px) { .process-track { grid-template-columns: 1fr; } .process-line { display: none; } }
.process-step {
  padding: 0 20px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  position: relative;
}
.process-step:first-child { border-left: 0; padding-left: 0; }
.process-step::before {
  content: "";
  position: absolute;
  top: 36px; left: 0;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-4.5px);
  box-shadow: 0 0 0 4px var(--bg-2);
}
.process-step:first-child::before { left: 0; transform: translateX(-4.5px); }
.process-step-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
  padding-top: 20px;
}
.process-num { font-size: 13px; color: var(--fg); font-weight: 500; font-family: var(--f-mono); }
.process-eta { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--f-mono); }
.process-step h4 { font-size: 18px; letter-spacing: -0.01em; font-weight: 500; margin: 0 0 8px; }
.process-step p { font-size: 13px; color: var(--fg-dim); line-height: 1.55; margin: 0; }

/* ============ PROOF ============ */
.proof { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(80px, 10vw, 140px); }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .proof-stats { grid-template-columns: repeat(2, 1fr); } }
.proof-stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.proof-stat:last-child { border-right: 0; }
@media (max-width: 780px) {
  .proof-stat:nth-child(2) { border-right: 0; }
  .proof-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.proof-stat-val {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 12px;
}
.proof-stat-label { font-size: 11px; letter-spacing: 0.08em; color: var(--fg-dim); font-family: var(--f-mono); }

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
  background: var(--bg);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-right: 40px;
}
.marquee-item {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 40px;
}
.marquee-star { color: var(--accent); font-size: 0.6em; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .3s var(--ease);
  cursor: default;
  display: flex; flex-direction: column;
}
.case:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.case-head { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); margin-bottom: 20px; font-family: var(--f-mono); }
.case-kind { color: var(--fg-dim); }
.case-client { font-size: 20px; letter-spacing: -0.01em; margin: 0 0 12px; font-weight: 500; }
.case-headline { color: var(--fg-dim); font-size: 15px; line-height: 1.5; margin: 0 0 24px; flex: 1; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.case-metric { display: flex; flex-direction: column; gap: 4px; }
.case-metric .mono { font-size: 9px; letter-spacing: 0.1em; color: var(--fg-mute); }
.case-metric strong { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--fg); }

/* ============ INDUSTRIES ============ */
.industries { background: var(--bg-2); border-top: 1px solid var(--line); }
.ind-table { border-top: 1px solid var(--line); }
.ind-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
}
.ind-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.ind-row:hover::before { transform: scaleY(1); }
.ind-row:hover { padding-left: 20px; }
.ind-num { font-size: 12px; color: var(--fg-mute); font-family: var(--f-mono); }
.ind-body h4 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; font-weight: 500; margin: 0 0 6px; }
.ind-body p { font-size: 14px; color: var(--fg-dim); margin: 0; line-height: 1.5; }
.ind-arrow { color: var(--fg-mute); transition: transform .3s var(--ease); }
.ind-row:hover .ind-arrow { color: var(--accent); transform: translate(4px, -4px); }

/* ============ CTA BLOCK ============ */
.cta-block { background: var(--bg); border-top: 1px solid var(--line); }
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-copy h2 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1; letter-spacing: -0.03em;
  margin: 16px 0 20px; font-weight: 500;
}
.cta-copy h2 .serif { color: var(--accent); font-weight: 400; }
.cta-copy p { color: var(--fg-dim); font-size: 17px; max-width: 42ch; margin: 0 0 32px; line-height: 1.55; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg { padding: 16px 24px; font-size: 15px; }
.cta-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}
.cta-panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.cta-panel-row:last-child { border-bottom: 0; }
.cta-panel-lbl { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); font-family: var(--f-mono); }
.cta-panel-val { font-size: 14px; color: var(--fg); text-align: right; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 64px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--fg-dim); font-size: 14px; line-height: 1.55; max-width: 36ch; margin: 16px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); margin: 0 0 6px; font-weight: 500; font-family: var(--f-mono); }
.footer-col a { color: var(--fg-dim); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-office { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--fg); }
.footer-office .mono { font-size: 10px; color: var(--fg-mute); letter-spacing: 0.08em; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--fg-mute);
  flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono);
}
.footer-links { display: inline-flex; gap: 20px; }
.footer-links a:hover { color: var(--fg); }

/* ============ QUOTE MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in oklab, #000 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg-dim);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--bg-2); color: var(--fg); }
.modal-head { padding: 32px 32px 20px; border-bottom: 1px solid var(--line); }
.modal-steps {
  display: flex; gap: 4px; margin-top: 20px;
  flex-wrap: wrap;
}
.modal-step {
  flex: 1; min-width: 120px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg-2); border-radius: var(--r-sm);
  font-size: 13px; color: var(--fg-mute);
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.modal-step .mono { font-size: 10px; letter-spacing: 0.1em; }
.modal-step.active {
  border-color: var(--accent);
  color: var(--fg);
  background: color-mix(in oklab, var(--accent) 10%, var(--bg-2));
}
.modal-body { padding: 28px 32px 24px; }
.modal-body h3 { font-size: 24px; letter-spacing: -0.02em; margin: 0 0 8px; font-weight: 500; }
.modal-hint { color: var(--fg-dim); font-size: 14px; margin: 0 0 20px; }
.modal-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 14px;
  transition: all .2s var(--ease);
  cursor: pointer; font: inherit;
}
.chip:hover { border-color: var(--fg); }
.chip .chip-tick {
  width: 14px; height: 14px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: all .2s;
  position: relative;
  flex-shrink: 0;
}
.chip.on {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.chip.on .chip-tick { background: var(--accent-ink); border-color: var(--accent-ink); }
.modal-field { margin-top: 18px; }
.modal-field label.mono { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); margin-bottom: 10px; }
.modal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.modal-input { display: flex; flex-direction: column; gap: 8px; }
.modal-input-wide { grid-column: 1 / -1; }
.modal-input > span { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); font-family: var(--f-mono); }
.modal-input input, .modal-input textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s;
}
.modal-input input:focus, .modal-input textarea:focus { outline: 0; border-color: var(--accent); }
.modal-foot {
  padding: 20px 32px 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.modal-sent { padding: 48px 40px; text-align: center; }
.modal-sent-tick { color: var(--accent); margin-bottom: 16px; display: inline-block; }
.modal-sent h3 { font-size: 28px; letter-spacing: -0.02em; margin: 0 0 12px; font-weight: 500; }
.modal-sent p { color: var(--fg-dim); max-width: 40ch; margin: 0 auto 24px; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

@media (max-width: 600px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-head, .modal-body, .modal-foot { padding-inline: 20px; }
}

/* ============ PAGE-SPECIFIC ============ */

/* Services page detail grid */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 780px) { .svc-detail-grid { grid-template-columns: 1fr; } }
.svc-detail-item {
  background: var(--bg-2);
  padding: 32px 28px;
}
.svc-detail-item h3 {
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  font-weight: 500;
}
.svc-detail-item p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.svc-detail-item ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.svc-detail-item ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-dim);
}
.svc-detail-item ul li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  margin-top: 2px;
}

/* Projects / case detail */
.case-detail {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.case-detail-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: start; gap: 24px;
  flex-wrap: wrap;
}
.case-detail-body {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 780px) { .case-detail-body { grid-template-columns: 1fr; } }
.case-detail-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* About page */
.about-founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 780px) { .about-founder { grid-template-columns: 1fr; } }
.about-photo-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
}
.about-photo-placeholder .mono {
  font-size: 11px; letter-spacing: 0.1em; color: var(--fg-mute);
}
.founder-name {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  font-weight: 500;
}
.founder-role {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}
.founder-bio {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-form-wrap h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 500;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.wide { grid-column: 1 / -1; }
.form-group label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  font-family: var(--f-mono);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0; border-color: var(--accent);
}
.form-group select option { background: var(--bg); }
.form-success {
  text-align: center; padding: 32px;
}
.form-success .check-icon { color: var(--accent); margin-bottom: 16px; display: inline-block; }

/* FAQ */
.faq-list { display: grid; gap: 2px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 20px;
  background: transparent; border: 0;
  font: inherit; font-size: 16px; font-weight: 500;
  color: var(--fg);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg { flex-shrink: 0; transition: transform .3s var(--ease); color: var(--fg-mute); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 20px; }
.faq-a p { color: var(--fg-dim); font-size: 15px; line-height: 1.6; margin: 0; }

/* ============ PAGE HERO TEXT (inner pages) ============ */
.page-title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 16px 0 24px;
  max-width: 16ch;
}
.page-subtitle {
  color: var(--fg-dim);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0;
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 12px 0 32px;
  max-width: 20ch;
  line-height: 1.05;
}

/* ============ ABOUT PAGE ============ */
.about-section { padding-block: clamp(60px, 8vw, 120px); border-top: 1px solid var(--line); }
.about-values-section { padding-block: clamp(60px, 8vw, 120px); background: var(--bg-2); border-top: 1px solid var(--line); }
.about-founder-text { display: flex; flex-direction: column; }
.about-founder-name {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  font-weight: 500;
}
.about-founder-role {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}
.about-bio {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 0 24px;
}
.about-founder-meta { display: grid; gap: 16px; margin-top: 8px; }
.about-founder-meta-item { display: flex; flex-direction: column; gap: 4px; }
.about-meta-label { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); font-family: var(--f-mono); }
.about-meta-value { font-size: 15px; color: var(--fg); }

/* Value cards (about page) */
.value-card {
  background: var(--bg-2);
  padding: 28px 24px;
}
.value-number {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}
.value-title {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  font-weight: 500;
}
.value-card p { font-size: 14px; color: var(--fg-dim); margin: 0; line-height: 1.55; }

/* Proof stats (about + projects pages) */
.proof-stats-section {
  padding-block: clamp(60px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-stat-value {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 500;
  font-family: var(--f-mono);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

/* Locations (about page) */
.locations-section { padding-block: clamp(60px, 8vw, 120px); border-top: 1px solid var(--line); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 780px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.location-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.location-city {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 4px;
}
.location-region { font-size: 11px; letter-spacing: 0.06em; color: var(--fg-mute); margin-bottom: 16px; display: block; }
.location-address { font-size: 13px; color: var(--fg-dim); line-height: 1.7; margin: 0; }

/* CTA section (about, projects, solutions pages) */
.cta-section { padding-block: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); }
.cta-section .cta-block {
  max-width: 720px;
}
.cta-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  font-weight: 500;
}
.cta-sub { color: var(--fg-dim); font-size: 17px; max-width: 48ch; margin: 0 0 32px; line-height: 1.55; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ PROJECTS PAGE ============ */
.cases-section { padding-block: clamp(60px, 8vw, 120px); }
.case-detail-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.case-meta { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); }
.case-detail .case-headline {
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  max-width: 56ch;
  line-height: 1.25;
}
.case-detail .case-client {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-family: var(--f-mono);
}
.case-narrative { display: grid; gap: 24px; }
.case-block { }
.case-block-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  font-family: var(--f-mono);
  display: block;
  margin-bottom: 8px;
}
.case-block p { font-size: 15px; color: var(--fg-dim); line-height: 1.6; margin: 0; }
.case-services { margin-bottom: 20px; }
.case-services-label { font-size: 10px; letter-spacing: 0.1em; color: var(--fg-mute); display: block; margin-bottom: 10px; font-family: var(--f-mono); }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.case-detail-body {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (max-width: 780px) { .case-metrics { grid-template-columns: repeat(2, 1fr); } }
.case-metric { display: flex; flex-direction: column; gap: 6px; }
.case-metric-value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: var(--f-mono);
  line-height: 1;
  color: var(--fg);
}
.case-metric-label { font-size: 11px; letter-spacing: 0.08em; color: var(--fg-mute); font-family: var(--f-mono); }

/* ============ SOLUTIONS / INDUSTRIES PAGE ============ */
.solutions-section { padding-block: clamp(60px, 8vw, 120px); }
.industry-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.industry-card-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  background: var(--bg);
}
.industry-label { font-size: 11px; letter-spacing: 0.12em; color: var(--fg-mute); font-family: var(--f-mono); }
.industry-metric { font-size: 11px; letter-spacing: 0.06em; color: var(--accent); font-family: var(--f-mono); }
.industry-card-body {
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .industry-card-body { grid-template-columns: 1fr; } }
.industry-title {
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.1;
}
.industry-title-sub { font-size: 0.65em; color: var(--fg-mute); font-weight: 400; }
.industry-content p { font-size: 15px; color: var(--fg-dim); line-height: 1.6; margin: 0 0 20px; max-width: 52ch; }
.industry-bullets {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: grid; gap: 8px;
}
.industry-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-dim);
}
.industry-bullets li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  margin-top: 2px;
}
.industry-callout {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: grid; gap: 20px;
}
.callout-metric { display: flex; flex-direction: column; gap: 6px; }
.callout-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-family: var(--f-mono);
  line-height: 1;
}
.callout-label { font-size: 11px; letter-spacing: 0.08em; color: var(--fg-mute); font-family: var(--f-mono); }
