/* ============ Bizware — design tokens & base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #060a16;
  --card: #0e1430;
  --card-alt: #0d1226;
  --input-bg: #0a0f22;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --accent: #3b9dff;
  --accent-soft: #8fd0ff;
  --btn: #2f6fed;
  --text: #eef1fb;
  --text-light: #d6dbf2;
  --text-body: #b3bcdb;
  --muted: #8891b8;
  --faint: #5a6390;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(59, 157, 255, 0.3); color: #fff; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #060a16; }
::-webkit-scrollbar-thumb { background: #1b2246; border-radius: 6px; border: 3px solid #060a16; }
::-webkit-scrollbar-thumb:hover { background: #2b3566; }

input, textarea, select, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: var(--faint); }
select option { background: #141b36; color: var(--text); }
a { color: inherit; text-decoration: none; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 60px 60px; } }

.container { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 40px;
  background: rgba(6, 10, 22, 0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-brand { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.nav-brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: -0.6px; color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; padding: 8px 13px; border-radius: 9px; cursor: pointer;
  transition: all .2s; font-weight: 500; white-space: nowrap; color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); background: rgba(255, 255, 255, 0.06); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; padding: 10px 18px;
  border: none; border-radius: 10px; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn); color: #fff;
  box-shadow: 0 0 0 1px rgba(59, 157, 255, 0.35), 0 10px 30px -12px rgba(59, 157, 255, 0.7);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text); font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 11px;
  padding: 12px 20px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.25); }
.btn-lg { font-size: 15px; padding: 15px 26px; border-radius: 12px; }
.btn-lg.btn-primary { box-shadow: 0 14px 36px -14px rgba(59, 157, 255, 0.8); }
.btn-lg.btn-primary:hover { transform: translateY(-2px); }
.btn-xl { font-size: 16px; padding: 16px 30px; border-radius: 13px; box-shadow: 0 16px 40px -14px rgba(59, 157, 255, 0.8); }
.btn-xl:hover { transform: translateY(-2px); }
.btn-block { width: 100%; margin-top: 22px; font-size: 15px; padding: 15px; border-radius: 12px; box-shadow: 0 14px 36px -16px rgba(59, 157, 255, 0.8); }

/* ============ Typography helpers ============ */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
  border: 1px solid rgba(59, 157, 255, 0.28); background: rgba(59, 157, 255, 0.07);
  border-radius: 100px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 1.5px; color: var(--accent-soft); text-transform: uppercase; white-space: nowrap;
}
.pill-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent); }
.grad-text {
  background: linear-gradient(120deg, #3b9dff, #8fd0ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mono-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 16px;
}
.link-arrow {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 9px;
  color: var(--accent); font-weight: 600; font-size: 15px; cursor: pointer; transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }

/* ============ Home hero ============ */
.hero { position: relative; overflow: hidden; padding: 170px 40px 90px; }
.hero-home {
  background:
    radial-gradient(1300px 680px at 76% -8%, rgba(59, 157, 255, 0.20), transparent 58%),
    radial-gradient(900px 500px at 8% 30%, rgba(47, 107, 79, 0.12), transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 22s linear infinite;
  -webkit-mask-image: radial-gradient(900px 600px at 70% 0%, #000, transparent 75%);
  mask-image: radial-gradient(900px 600px at 70% 0%, #000, transparent 75%);
}
.orbit { position: absolute; top: 60px; right: 6%; width: 380px; height: 380px; pointer-events: none; }
.orbit-ring { position: absolute; border-radius: 50%; }
.orbit-ring-1 { inset: 0; border: 1px solid rgba(59, 157, 255, 0.18); animation: spinSlow 38s linear infinite; }
.orbit-ring-2 { inset: 48px; border: 1px dashed rgba(59, 157, 255, 0.28); animation: spinRev 26s linear infinite; }
.orbit-ring-3 { inset: 108px; border: 1px solid rgba(255, 255, 255, 0.10); animation: spinSlow 18s linear infinite; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; width: 96px; height: 96px; margin: -48px 0 0 -48px;
  background: radial-gradient(circle, rgba(59, 157, 255, 0.55), rgba(59, 157, 255, 0.04) 70%);
  border-radius: 50%; filter: blur(2px); animation: pulse 4s ease-in-out infinite;
}
.orbit-dot { position: absolute; border-radius: 50%; }
.orbit-dot-1 { left: 50%; top: -6px; width: 11px; height: 11px; margin-left: -5px; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.orbit-dot-2 { left: -4px; top: 50%; width: 9px; height: 9px; background: #fff; box-shadow: 0 0 12px #fff; }
.orbit-dot-3 { right: 24px; bottom: 40px; width: 8px; height: 8px; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.hero-inner { position: relative; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 6.4vw, 82px); line-height: 1.0; letter-spacing: -2.5px;
  margin: 26px 0 0; max-width: 900px;
}
.hero-lead { font-size: 19px; line-height: 1.65; color: var(--text-body); max-width: 600px; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* ============ Stats ============ */
.stats-wrap { padding: 0 40px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.stats-raised { margin: -26px auto 0; position: relative; z-index: 5; }
.stats-about { padding-top: 50px; padding-bottom: 30px; }
.stat { background: var(--card-alt); padding: 30px 26px; }
.stat-value {
  font-family: var(--font-display); font-weight: 700; font-size: 42px;
  color: var(--accent); letter-spacing: -1.5px;
}
.stat-value-sm { font-size: 40px; }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

/* ============ Sections & grids ============ */
.section { padding: 110px 40px 30px; }
.section-lg { padding: 110px 40px; }
.section-b { padding: 0 40px 110px; margin-top: 60px; }
.section-narrow { padding: 70px 40px; }
.section-values { padding: 20px 40px 100px; }
.section-list { padding: 50px 40px 110px; }
.section-cards { padding: 50px 40px 40px; }
.section-roles { padding: 50px 40px 110px; }
.section-partners { padding: 50px 40px; }
.section-partner-cta { padding: 30px 40px 110px; }
.section-cases { padding: 40px 40px 110px; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 48px;
}
.section-b .section-head { gap: 24px; margin-bottom: 40px; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.5px;
  margin: 14px 0 0; max-width: 620px; line-height: 1.08;
}
.section-lg .section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.section-title-sm { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -1.2px; line-height: 1.1; }
.section-side { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 360px; }
.body-lead { color: var(--text-body); font-size: 17px; line-height: 1.7; margin: 0; }
.body-copy { color: var(--text-body); font-size: 16.5px; line-height: 1.75; margin: 0 0 0; }
.body-copy + .body-copy { margin-top: 16px; }
.h2-md { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -1px; margin: 0 0 18px; }
.h2-sm { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -1px; margin: 0 0 32px; }

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

/* ============ Service cards (home) ============ */
.svc-card {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 34px; cursor: pointer; transition: all .25s;
}
.svc-card:hover { border-color: rgba(59, 157, 255, 0.45); background: #131b38; transform: translateY(-3px); }
.svc-card-top { display: flex; align-items: center; justify-content: space-between; }
.svc-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 1px; }
.svc-arrow {
  width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
}
.svc-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.5px; margin: 22px 0 0; line-height: 1.25;
}
.svc-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 12px 0 0; }

/* ============ Services page rows ============ */
.svc-row {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 40px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px;
  transition: border-color .25s;
}
.svc-row:hover { border-color: rgba(59, 157, 255, 0.35); }
.svc-row h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  letter-spacing: -0.8px; margin: 16px 0 0; line-height: 1.2;
}
.svc-row .svc-desc { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 16px 0 0; }
.svc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.svc-point {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px;
  background: var(--input-bg); border: 1px solid var(--border-soft); border-radius: 12px;
}
.svc-point-dot {
  flex: none; width: 6px; height: 6px; margin-top: 7px;
  background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px rgba(59, 157, 255, 0.7);
}
.svc-point span:last-child { font-size: 14px; color: var(--text-light); line-height: 1.4; }

/* ============ Marquee ============ */
.marquee-section {
  padding: 70px 0 50px; margin-top: 60px; overflow: hidden;
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.marquee-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase; text-align: center; margin-bottom: 30px;
  padding: 0 40px;
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: #5b635b; padding: 0 34px; white-space: nowrap;
}

/* ============ Why / values ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.values-list { display: grid; gap: 14px; }
.value-item {
  display: flex; gap: 18px; padding: 24px;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
}
.value-item.value-item-lg { padding: 28px; }
.value-icon {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(59, 157, 255, 0.12); border: 1px solid rgba(59, 157, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-family: var(--font-display); font-weight: 700;
}
.value-item-lg .value-icon { width: 44px; height: 44px; border-radius: 12px; }
.value-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 2px 0 0; }
.value-item-lg h4 { font-size: 18px; margin-top: 4px; }
.value-item p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 7px 0 0; }
.value-item-lg p { font-size: 15px; line-height: 1.6; margin-top: 8px; }

/* ============ Case cards (home) ============ */
.case-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.case-card:hover { border-color: rgba(59, 157, 255, 0.4); transform: translateY(-3px); }
.case-card-media {
  height: 150px; position: relative;
  background: repeating-linear-gradient(135deg, #141c3a, #141c3a 11px, #0e1430 11px, #0e1430 22px);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: flex-end; padding: 16px;
}
.case-tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-soft);
  background: rgba(6, 10, 22, 0.7); padding: 5px 10px; border-radius: 7px;
  border: 1px solid rgba(59, 157, 255, 0.25);
}
.case-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.case-card-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.3; margin: 0; }
.case-card-body p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 12px 0 20px; flex: 1; }
.case-metric-row {
  display: flex; align-items: baseline; gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 16px;
}
.case-metric { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--accent); letter-spacing: -1px; }
.case-metric-label { font-size: 13px; color: var(--muted); }

/* ============ Case rows (case-studies page) ============ */
.case-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.case-row-side {
  background: repeating-linear-gradient(135deg, #141c3a, #141c3a 11px, #0e1430 11px, #0e1430 22px);
  border-right: 1px solid var(--border-soft); padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 230px;
}
.case-row-side .case-tag { align-self: flex-start; padding: 6px 11px; }
.case-row-metric { font-family: var(--font-display); font-weight: 700; font-size: 46px; color: var(--accent); letter-spacing: -2px; line-height: 1; }
.case-row-metric-label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.case-row-body { padding: 34px; }
.case-row-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.6px; margin: 0; line-height: 1.25; }
.case-detail { margin-top: 20px; display: grid; gap: 16px; }
.case-detail-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--accent); text-transform: uppercase;
}
.case-detail p { color: var(--text-light); font-size: 15px; line-height: 1.6; margin: 7px 0 0; }

/* ============ CTA banner ============ */
.cta-wrap { padding: 0 40px 120px; }
.cta-banner {
  position: relative; overflow: hidden; border-radius: 26px;
  border: 1px solid rgba(59, 157, 255, 0.25);
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(59, 157, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #0e1a33, #0a1022);
  padding: 70px 56px;
}
.cta-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59, 157, 255, 0.05) 1px, transparent 1px);
  background-size: 1px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}
.cta-inner { position: relative; max-width: 680px; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -2px; line-height: 1.05; margin: 0;
}
.cta-inner p { color: var(--text-body); font-size: 18px; line-height: 1.6; margin: 20px 0 34px; }

/* ============ Inner page heroes ============ */
.page-hero { padding: 150px 40px 60px; }
.page-hero-r { background: radial-gradient(1100px 560px at 70% -10%, rgba(59, 157, 255, 0.16), transparent 60%), var(--bg); }
.page-hero-l { background: radial-gradient(1100px 560px at 30% -10%, rgba(59, 157, 255, 0.16), transparent 60%), var(--bg); }
.page-hero-tight { padding-bottom: 50px; }
[data-page="about"] .page-hero { padding-bottom: 70px; }
.page-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -2.2px; line-height: 1.04;
  margin: 18px 0 0; max-width: 860px;
}
[data-page="about"] .page-title { font-size: clamp(38px, 5.4vw, 68px); }
.page-lead { font-size: 19px; line-height: 1.65; color: var(--text-body); max-width: 640px; margin: 26px 0 0; }
.page-lead-sm { font-size: 18px; max-width: 620px; margin-top: 24px; }

/* ============ Industries ============ */
.ind-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px; transition: all .25s;
}
.ind-card:hover { border-color: rgba(59, 157, 255, 0.4); transform: translateY(-3px); }
.ind-abbr {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(59, 157, 255, 0.1); border: 1px solid rgba(59, 157, 255, 0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 15px;
}
.ind-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 18px 0 0; letter-spacing: -0.3px; }
.ind-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 9px 0 0; }

.roles-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 44px; }
.roles-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.8px; margin: 0 0 8px; }
.roles-card > p { color: var(--muted); font-size: 15px; margin: 0 0 26px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  padding: 11px 18px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 100px;
  font-size: 14.5px; color: var(--text-light); background: var(--input-bg);
}

/* ============ Partners ============ */
.partner-card {
  min-height: 140px; border: 1px solid var(--border); border-radius: 14px;
  background: #ffffff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 24px;
  text-align: center; transition: border-color .25s;
}
.partner-card:hover { border-color: rgba(59, 157, 255, 0.35); }
.partner-card img { max-width: 200px; max-height: 80px; object-fit: contain; }

.dashed-card {
  border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 18px;
  padding: 40px; text-align: center;
}
.dashed-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0 0 10px; }
.dashed-card p { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.dashed-card .btn-primary { font-size: 15px; padding: 13px 24px; border-radius: 11px; }

/* ============ Contact ============ */
.contact-hero { padding-bottom: 90px; background: radial-gradient(1100px 560px at 30% -10%, rgba(59, 157, 255, 0.18), transparent 60%), var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-title { font-size: clamp(36px, 4.6vw, 56px); letter-spacing: -2px; line-height: 1.05; }
.contact-lead { font-size: 17px; margin: 22px 0 36px; }
.offices { display: grid; gap: 18px; }
.office-card {
  display: flex; gap: 16px; padding: 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
}
.office-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin: 3px 0 0; }
.office-card p { color: var(--muted); font-size: 14px; margin: 6px 0 0; line-height: 1.5; }

.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 38px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 16px; }
.form-row-2 .field { margin-top: 0; }
.form-row-2 { margin-top: 0; }
.field + .field, .form-row-2 + .field, .field + .form-row-2, .form-row-2 + .form-row-2 { margin-top: 16px; }
form .form-row-2:first-child { margin-top: 0; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--input-bg); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px; padding: 13px 14px; color: var(--text); font-size: 14.5px; outline: none;
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--btn); }
.field-error { color: #ff7a7a; font-size: 12.5px; margin-top: 6px; }
.form-note { text-align: center; color: var(--faint); font-size: 12.5px; margin: 14px 0 0; }
.form-error-banner {
  margin-top: 16px; padding: 12px 14px; border-radius: 10px;
  background: rgba(255, 122, 122, 0.1); border: 1px solid rgba(255, 122, 122, 0.3);
  color: #ff9d9d; font-size: 13.5px; line-height: 1.5;
}
.hp-field {
  position: absolute !important; width: 1px !important; height: 1px !important;
  overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important;
  left: -9999px !important;
}

.form-success { text-align: center; padding: 40px 10px; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto; border-radius: 50%;
  background: rgba(59, 157, 255, 0.14); border: 1px solid rgba(59, 157, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 30px;
}
.form-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 22px 0 0; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 12px 0 26px; }

/* ============ Footer ============ */
.footer { background: #070908; border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 64px 40px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; }
.footer .nav-brand img { width: 32px; height: 32px; }
.footer-blurb { color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 320px; margin: 18px 0 0; }
.footer-heading {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--faint); text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--text-body); font-size: 14.5px; cursor: pointer; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-offices { display: grid; gap: 14px; }
.office-name { color: var(--text); font-size: 14.5px; font-weight: 500; }
.office-sub { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--faint); font-size: 13px;
}
.footer-tagline { font-family: var(--font-mono); }

/* ============ Reveal (JS-driven) ============ */
.reveal[data-rv="0"] { opacity: 0; transform: translateY(28px); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .orbit { opacity: 0.45; right: -80px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-row { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero, .page-hero, .section, .section-lg, .section-b, .section-narrow, .section-values,
  .section-list, .section-cards, .section-roles, .section-partners, .section-partner-cta,
  .section-cases, .stats-wrap, .cta-wrap { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 130px; }
  .page-hero { padding-top: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; }
  .case-row-side { border-right: none; border-bottom: 1px solid var(--border-soft); min-height: 180px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .form-row-2 .field + .field { margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner { padding: 48px 28px; }
  .orbit { display: none; }
}
