/* ============================================================
   MultiBank — CSS
   Aesthetic: Editorial-tech · Light · Clean · Energetic
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   Palette: White · Navy #0B1437 · Acid Green #00E676 · Slate #64748b
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f5f7fa;
  --bg-3: #eef1f6;
  --navy: #0B1437;
  --navy-80: rgba(11,20,55,0.8);
  --navy-10: rgba(11,20,55,0.07);
  --accent: #00E676;
  --accent-dark: #00b85c;
  --text: #0B1437;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: rgba(11,20,55,0.09);
  --shadow-sm: 0 2px 12px rgba(11,20,55,0.06);
  --shadow-md: 0 8px 40px rgba(11,20,55,0.10);
  --shadow-lg: 0 24px 80px rgba(11,20,55,0.14);
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease);
  opacity: 0.35;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 14px; height: 14px;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.mono { font-family: var(--font-mono); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 56px;
}

.section-h2 em {
  font-style: italic;
  color: var(--accent-dark);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 40px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--navy); }

/* ---- BUTTONS ---- */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: none;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,20,55,0.2);
}

.btn-fill svg { transition: transform 0.2s; }
.btn-fill:hover svg { transform: translate(3px, -3px); }

.btn-fill--dark {
  background: var(--accent);
  color: var(--navy);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-10);
}

.nav-cta {
  margin-left: auto;
  font-size: 13px;
  padding: 10px 20px;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.mob-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 490;
  padding: 0;
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 24px;
}

.mob-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mob-menu a:hover { color: var(--accent-dark); }
.mob-menu .btn-fill { margin-top: 16px; justify-content: center; font-size: 16px; padding: 16px; }
.mob-menu.open { display: block; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat linear infinite;
  pointer-events: none;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00E676, #00b85c);
  top: -100px; right: -100px;
  animation-duration: 20s;
}

.blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #0B1437, #1e3a8a);
  bottom: 0; left: -80px;
  animation-duration: 28s;
  animation-direction: reverse;
  opacity: 0.08;
}

.blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #bfdbfe, #93c5fd);
  top: 40%; right: 30%;
  animation-duration: 16s;
  opacity: 0.4;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Hero grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,20,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,20,55,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}

.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 28px;
}

.h1-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) calc(var(--d) + 0.2s) forwards;
  display: block;
}

.h1-line.italic { font-style: italic; font-weight: 300; }
.h1-line.accent-line { color: var(--accent-dark); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) calc(var(--d) + 0.2s) forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) calc(var(--d) + 0.2s) forwards;
}

/* CODE WINDOW */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.code-window {
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 420px;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.code-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }

.code-filename {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

.code-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.code-line {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  animation: fadeIn 0.3s ease calc(var(--cl) * 120ms + 1.0s) forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.code-line .kw  { color: #c792ea; }
.code-line .fn  { color: #82aaff; }
.code-line .key { color: #7fdbca; }
.code-line .str { color: #c3e88d; }
.code-line .acc { color: var(--accent); }
.code-line .prompt { color: var(--accent); margin-right: 6px; }
.code-line--cmd  { margin-top: 10px; color: rgba(255,255,255,0.4); }
.code-line--success { color: #28c840; font-weight: 600; }

/* FLOATING TAGS */
.floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ftag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  animation: tagFloat ease-in-out infinite;
  opacity: 0;
}

.ftag-1 { top: -20px; left: -60px;  animation-duration: 5s; animation-delay: 1.5s; }
.ftag-2 { top: 30px;  right: -70px; animation-duration: 6s; animation-delay: 2s; }
.ftag-3 { bottom: 40px; left: -50px; animation-duration: 7s; animation-delay: 1.8s; }
.ftag-4 { bottom: 0px; right: -60px; animation-duration: 5.5s; animation-delay: 2.2s; }

@keyframes tagFloat {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-light));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ---- MARQUEE ---- */
.marquee-band {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  padding: 0 28px;
  text-transform: uppercase;
}

.marquee-track .sep {
  color: var(--accent);
  padding: 0;
  font-size: 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- APPROACH ---- */
.approach {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.approach-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  position: sticky;
  top: 100px;
}

.approach-right p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.approach-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.astat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.astat-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 100px;
}

/* PIPELINE */
.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 16px;
}

.ps-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.ps-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.ps-accent .ps-num { color: var(--accent-dark); }
.ps-accent .ps-label {
  background: var(--accent);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
}

.pipeline-arrow {
  font-size: 18px;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scard {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s, border-color 0.3s;
  cursor: none;
}

.scard::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11,20,55,0.16);
}

.scard:hover::before {
  transform: scaleX(1);
}

.scard-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}

.scard-wide h3 { flex: 0 0 100%; }
.scard-wide .scard-icon { order: -1; }

.scard-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  flex-shrink: 0;
}

.scard-icon svg { width: 100%; height: 100%; }

.scard-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  position: absolute;
  top: 20px; right: 20px;
}

.scard h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.scard p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.scard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.scard-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 10px;
}

.scard-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 20px;
  color: var(--text-light);
  transition: transform 0.3s var(--ease-bounce), color 0.2s;
}

.scard:hover .scard-arrow {
  color: var(--accent-dark);
  transform: translate(3px, -3px);
}

/* ---- INDUSTRIES ---- */
.industries {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.ind-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ind-item {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  cursor: none;
  transition: all 0.25s var(--ease-bounce);
}

.ind-item:hover {
  background: var(--navy);
  color: var(--accent);
  border-color: var(--navy);
  transform: scale(1.03);
}

/* ---- CONTACTS ---- */
.contacts {
  background: var(--bg);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.contact-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  display: block;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.contact-link:hover {
  border-color: var(--navy);
  background: var(--navy-10);
  transform: translateX(4px);
}

.contact-link--accent {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.06);
}

.contact-link--accent:hover {
  border-color: var(--accent-dark);
  background: rgba(0,230,118,0.1);
}

.cl-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cl-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* REQS TABLE */
.reqs-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.req-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.req-row:last-child { border-bottom: none; }

.req-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 14px 16px;
  background: var(--bg-2);
  text-transform: uppercase;
  border-right: 1px solid var(--border);
}

.req-val {
  font-size: 13px;
  color: var(--text);
  padding: 14px 16px;
  line-height: 1.5;
}

.req-val.mono {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* CTA CARD */
.cta-card {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  overflow: hidden;
  height: 100%;
  display: flex;
}

.cta-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,230,118,0.2), transparent 60%);
  pointer-events: none;
}

.cta-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.logo--footer { color: var(--navy); }

.footer-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--navy); }

.footer-contacts-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-contacts-mini a, .footer-contacts-mini span {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-contacts-mini a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom .mono {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero { flex-direction: column; text-align: center; padding: 110px 24px 60px; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .code-window { width: 100%; max-width: 420px; }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid .contact-col:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-left h2 { position: static; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .scard-wide { grid-column: span 2; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .scard-wide { grid-column: span 1; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-grid .contact-col:last-child { grid-column: span 1; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-contacts-mini { align-items: flex-start; }
  .footer-nav { margin: 0; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .approach-stats { flex-direction: column; gap: 20px; }
  .ind-list { gap: 8px; }
  .pipeline { gap: 8px; padding: 24px 20px; }
  .pipeline-step { padding: 0 8px; }
  .hero-eyebrow { justify-content: center; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}
