/* ============================================
   K TECHNIQUE — Design System
   Style: Minimal Tech · Neon Blue
   ============================================ */

:root {
  /* Pulled directly from the K Technique logo: black bg · royal blue K · bright cyan chip */
  --bg: #050507;
  --bg-2: #0B0C10;
  --bg-3: #11131A;
  --surface: #0F1118;
  --line: #1B1E28;
  --line-bright: #2A2E3C;
  --line-faint: #161821;
  --ink: #ECECEE;
  --ink-2: #B6B9C2;
  --ink-dim: #7E8290;
  --ink-faint: #4F525E;
  --accent: #22D3EE;          /* bright cyan from chip */
  --accent-2: #5EEAFF;         /* lighter cyan glow */
  --accent-deep: #0E8AAB;
  --accent-glow: rgba(34, 211, 238, 0.22);
  --brand-blue: #2563EB;       /* royal blue of the K letterform */
  --brand-blue-deep: #1D4ED8;
  --danger: #FF5C5C;
  --warn: #FFB23D;
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: 'tnum', 'kern';
}
html[dir="ltr"] body { font-family: 'Inter Tight', 'Heebo', sans-serif; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: 'tnum'; }
.grotesk { font-family: 'Space Grotesk', sans-serif; }

a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   GLOBAL BACKGROUND
   ============================================ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1100px 600px at 80% -20%, rgba(41,216,255,0.07), transparent 55%),
    radial-gradient(800px 400px at 0% 110%, rgba(41,216,255,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 75%);
}
main, header, footer, section { position: relative; z-index: 1; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
html[dir="ltr"] h1, html[dir="ltr"] h2 { font-family: 'Inter Tight', sans-serif; }
.h-display {
  font-size: clamp(46px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
}
.h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; line-height: 1.15; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.accent { color: var(--accent); }
.stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.muted { color: var(--ink-dim); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 30px; height: 30px;
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 14px;
  color: var(--accent);
  position: relative;
  background: rgba(41, 216, 255, 0.05);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: 0 0 16px rgba(41, 216, 255, 0.4);
  pointer-events: none;
}
.brand-name { letter-spacing: -0.015em; }
.brand-version {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-faint);
  font-size: 11px;
  margin-inline-start: 6px;
}
.nav-list {
  display: flex; gap: 28px; list-style: none;
  font-size: 13px; color: var(--ink-2);
}
.nav-list a {
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a.is-active { color: var(--accent); }
.nav-list a.is-active::after {
  content: ''; position: absolute;
  inset-inline: 0; bottom: 0; height: 1px;
  background: var(--accent);
}
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  border: 1px solid var(--line-bright);
  padding: 6px 10px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s;
}
.lang-switch:hover { border-color: var(--accent); }
.lang-switch button {
  background: none; border: none;
  color: var(--ink-dim); cursor: pointer;
  font-family: inherit; font-size: 12px;
  padding: 0 2px;
}
.lang-switch button.active { color: var(--accent); font-weight: 600; }
.lang-switch span.sep { color: var(--ink-faint); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--line-bright);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
  opacity: 0; transition: opacity .25s;
  pointer-events: none;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--accent); color: #04141C; border-color: var(--accent);
  font-weight: 600;
  box-shadow: 0 0 0 0 var(--accent-glow);
  transition: box-shadow .25s, background .2s;
}
.btn-primary::before { display: none; }
.btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2);
  color: #04141C;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-arrow { display: inline-block; transition: transform .2s; }
[dir="rtl"] .btn-arrow { transform: rotate(180deg); }
.btn:hover .btn-arrow { transform: translateX(4px); }
[dir="rtl"] .btn:hover .btn-arrow { transform: rotate(180deg) translateX(4px); }

/* ============================================
   META CARD (sidebar info card)
   ============================================ */
.meta-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  position: relative;
}
.meta-card::before {
  content: ''; position: absolute; top: -1px; inset-inline-end: -1px;
  width: 32px; height: 32px;
  border-top: 2px solid var(--accent); border-inline-end: 2px solid var(--accent);
  pointer-events: none;
}
.meta-card::after {
  content: ''; position: absolute; bottom: -1px; inset-inline-start: -1px;
  width: 32px; height: 32px;
  border-bottom: 2px solid var(--accent); border-inline-start: 2px solid var(--accent);
  pointer-events: none;
}
.meta-card h4 {
  color: var(--ink-faint); font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  display: flex; align-items: center; justify-content: space-between;
}
.meta-card h4 .live {
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.meta-card h4 .live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
.meta-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.meta-row:last-child { border: none; }
.meta-row .key { color: var(--ink-dim); }
.meta-row .val { color: var(--ink); }
.meta-row .val.accent { color: var(--accent); font-weight: 600; }

/* ============================================
   MARQUEE DIVIDER
   ============================================ */
.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden; white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  background: var(--bg-2);
}
.marquee-track {
  display: inline-block;
  animation: marquee 40s linear infinite;
}
[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee-track span { margin: 0 24px; display: inline-block; }
.marquee-track span.dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px;
}
.section-head {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 32px; align-items: end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--accent);
  font-weight: 500;
}
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
}
[dir="rtl"] .section-tag { text-align: end; }

/* ============================================
   CAPABILITY GRID
   ============================================ */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap {
  background: var(--bg);
  padding: 32px 28px;
  min-height: 280px;
  display: flex; flex-direction: column;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.cap:hover { background: var(--bg-2); }
.cap::after {
  content: ''; position: absolute;
  inset-block-start: 0; inset-inline: 0;
  height: 0; background: var(--accent);
  transition: height .25s;
}
.cap:hover::after { height: 2px; box-shadow: 0 0 20px var(--accent); }
.cap-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-bright);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  background: var(--bg-2);
}
.cap-num {
  position: absolute;
  inset-block-start: 28px; inset-inline-end: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.cap h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; line-height: 1.15; }
.cap p { color: var(--ink-2); font-size: 14px; line-height: 1.6; flex: 1; }
.cap-tech {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tech-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--ink-dim);
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.cap-link {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-dim);
  display: flex; align-items: center; justify-content: space-between;
}
.cap:hover .cap-link { color: var(--accent); }

/* ============================================
   STAT BAR
   ============================================ */
.stat-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stat-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 28px;
  border-inline-end: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-inline-end: none; }
.stat-num {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.stat-num .unit { color: var(--accent); font-size: 0.6em; margin-inline-start: 4px; vertical-align: top; }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 32px 32px;
  margin-top: 60px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-cta h3 {
  font-size: 36px; line-height: 1.05;
  margin-bottom: 14px; max-width: 420px;
  letter-spacing: -0.02em;
}
.footer-cta p { color: var(--ink-2); font-size: 15px; max-width: 380px; margin-bottom: 24px; }
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13.5px; color: var(--ink-2); }
.footer-col a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-faint);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================
   PAGE HERO (non-home pages)
   ============================================ */
.page-hero {
  padding: 80px 32px 40px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-dim);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.page-hero .breadcrumb .crumb-sep { color: var(--ink-faint); margin: 0 8px; }
.page-hero .breadcrumb .crumb-now { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 12ch;
}
.page-hero .lede {
  font-size: 18px; color: var(--ink-2);
  max-width: 640px; line-height: 1.6;
}

/* ============================================
   HERO (home only)
   ============================================ */
.home-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px 80px;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: end;
}
.home-hero .lede {
  font-size: 19px; color: var(--ink-2);
  max-width: 600px; line-height: 1.6;
  margin-bottom: 12px;
}
.home-hero .lede-en {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; color: var(--ink-faint);
  margin-top: 8px;
  letter-spacing: 0.005em;
}
[dir="rtl"] .home-hero .lede-en { direction: ltr; text-align: right; }
.home-hero .cta-row {
  display: flex; gap: 14px; align-items: center;
  margin-top: 36px; flex-wrap: wrap;
}

/* ============================================
   WORK GALLERY (image-heavy, less text)
   ============================================ */
.work-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.work-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.work-item.span-3 { grid-column: span 3; aspect-ratio: 16/10; }
.work-item.span-2 { grid-column: span 2; }
.work-item.span-4 { grid-column: span 4; aspect-ratio: 16/9; }
.work-item.span-6 { grid-column: span 6; aspect-ratio: 21/9; }
.work-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.work-canvas {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.work-item:hover .work-canvas { transform: scale(1.04); }
.work-overlay {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,10,11,0.95), rgba(10,10,11,0.4) 60%, transparent);
}
.work-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.work-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.2;
}
.work-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-dim);
  margin-top: 8px;
}

/* ============================================
   FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-row input, .form-row textarea, .form-row select {
  background: var(--bg-2);
  border: 1px solid var(--line-bright);
  color: var(--ink);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-row textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============================================
   CHIP / TAG
   ============================================ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  border: 1px solid var(--line-bright);
  background: var(--surface);
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.chip.is-accent { color: var(--accent); border-color: var(--accent); }

/* ============================================
   LOGO
   ============================================ */
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.logo .logo-img-wrap {
  width: var(--logo-size, 36px);
  height: var(--logo-size, 36px);
  flex-shrink: 0;
  display: grid; place-items: center;
  overflow: hidden;
  transition: width .25s, height .25s;
  background: transparent;
}
.logo .logo-img-wrap.is-circle  { border-radius: 50%; }
.logo .logo-img-wrap.is-rounded { border-radius: 8px; }
.logo .logo-img-wrap.is-padded  { background: rgba(34,211,238,0.05); padding: 6px; }
.logo .logo-img-wrap img,
.logo .logo-img-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--logo-zoom, 1));
  transform-origin: center center;
  transition: transform .25s;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.25));
}
/* Footer logos can be larger */
.site-footer .logo .logo-img-wrap {
  width: var(--logo-size-footer, 40px);
  height: var(--logo-size-footer, 40px);
}
.site-footer .logo .logo-img-wrap img,
.site-footer .logo .logo-img-wrap svg {
  transform: scale(var(--logo-zoom-footer, var(--logo-zoom, 1)));
}
.logo .wordmark {
  display: flex; flex-direction: column; line-height: 1.05;
}
.logo .wordmark .name {
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, var(--ink), #B6B9C2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo .wordmark .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--ink-faint);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================
   FLOATING DECORATIONS (background image overlays)
   ============================================ */
.decorations-layer {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.decorations-layer.behind { z-index: 0; }
.decorations-layer.front  { z-index: 5; pointer-events: none; }
body { position: relative; }
main { position: relative; }
.page-decoration {
  position: absolute;
  pointer-events: none;
  user-select: none;
  transform-origin: center center;
  will-change: transform;
}
.page-decoration.is-flipped-h { transform: scaleX(-1) rotate(var(--rot, 0deg)); }
.page-decoration.is-flipped-v { transform: scaleY(-1) rotate(var(--rot, 0deg)); }
.page-decoration.is-flipped-h.is-flipped-v { transform: scale(-1, -1) rotate(var(--rot, 0deg)); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   GLOBAL STATEMENT / FACT BLOCK
   ============================================ */
.fact-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fact-block .fact-quote {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.fact-block .fact-quote em {
  color: var(--accent); font-style: normal;
  font-family: inherit;
}
.fact-block .fact-points {
  list-style: none;
  display: flex; flex-direction: column; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact-block .fact-points li {
  background: var(--bg);
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.fact-block .fact-points li .key { color: var(--ink-2); }
.fact-block .fact-points li .val { color: var(--accent); font-weight: 600; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
}
.process-step .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; gap: 40px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item.span-3, .work-item.span-2, .work-item.span-4, .work-item.span-6 { grid-column: span 2; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-inline-end: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fact-block { grid-template-columns: 1fr; gap: 40px; padding: 70px 32px; }
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-list { display: none; }
  .site-header { padding: 14px 20px; }
  .section { padding: 70px 20px; }
  .home-hero { padding: 60px 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item.span-3, .work-item.span-2, .work-item.span-4, .work-item.span-6 { grid-column: span 1; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}
