/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ── Design Tokens ── */
:root {
  --bg-primary: #0A0F1C;
  --bg-surface: #111827;
  --bg-surface-hover: #1a2235;
  --bg-footer: #060A14;
  --border-subtle: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text-primary: rgba(255,255,255,1);
  --text-secondary: rgba(255,255,255,0.65);
  --text-tertiary: rgba(255,255,255,0.5);
  --accent: #06B6D4;
  --accent-hover: #22D3EE;
  --purple: #8B5CF6;
  --gradient: linear-gradient(135deg, #06B6D4, #8B5CF6);
  --gradient-subtle: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(139,92,246,0.12));
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --section-pad: 140px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(10,15,28,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.5px;
}
.nav-logo img {
  height: 28px; width: auto;
}
.nav-logo .logo-text { color: var(--accent); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-cta {
  padding: 10px 24px; border-radius: var(--radius-sm);
  background: var(--gradient); color: white;
  font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ── Page Hero (shared for subpages) ── */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, rgba(139,92,246,0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--accent); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px; display: inline-block;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 24px; max-width: 700px;
}
.page-hero p {
  font-size: 20px; line-height: 1.7; color: var(--text-secondary);
  max-width: 600px;
}
.page-hero .gradient-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Hero (homepage) ── */
.hero {
  padding: 200px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-label {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--accent); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px; display: inline-block;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero h1 .gradient-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 20px; line-height: 1.7; color: var(--text-secondary);
  max-width: 560px; margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  background: var(--gradient); color: white;
  font-weight: 600; font-size: 16px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.25);
}
.hero-cta svg { width: 18px; height: 18px; }

/* ── Stats ── */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -2px;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1; margin-bottom: 8px;
}
.stat-label {
  font-size: 15px; color: var(--text-secondary); font-weight: 500;
}

/* ── Section shared ── */
.section { padding: var(--section-pad) 0; }
.section-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 560px;
  line-height: 1.7; margin-bottom: 64px;
}

/* ── Specialization Cards ── */
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.spec-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.spec-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.spec-card:hover::before { opacity: 1; }
.spec-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 22px; color: var(--accent);
}
.spec-icon .material-icons-outlined { font-size: 24px; }
.spec-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.spec-card p {
  font-size: 15px; color: var(--text-secondary); margin-bottom: 24px;
  line-height: 1.6;
}
.spec-roles {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.spec-roles span {
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s, color 0.2s;
}
.spec-card:hover .spec-roles span {
  border-color: rgba(6,182,212,0.2);
  color: var(--text-primary);
}

/* ── C-Suite ── */
.csuite {
  margin-top: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}
.csuite h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.csuite p {
  font-size: 15px; color: var(--text-secondary); margin-bottom: 24px;
}
.csuite-roles {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.csuite-roles span {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  color: var(--accent);
  border: 1px solid rgba(6,182,212,0.15);
  letter-spacing: 1px;
}

/* ── Process ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 64px; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.3; line-height: 1; display: block; margin-bottom: 20px;
}
.process-step h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.process-step p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* ── Why Cards ── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: var(--border-hover); }
.why-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-icon .material-icons-outlined { font-size: 22px; color: var(--accent); }
.why-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.why-card p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* ── CTA Band ── */
.cta-band {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}
.cta-band-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: url('Unknown-1.png') center center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px; color: var(--text-secondary); margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-band-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 44px; border-radius: var(--radius-sm);
  background: var(--gradient); color: white;
  font-weight: 600; font-size: 17px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.cta-band-btn {
  position: relative; overflow: hidden;
}
.cta-band-btn::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}
.cta-band-btn:hover::before {
  width: 300px; height: 300px; opacity: 1;
}
.cta-band-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(6,182,212,0.35), 0 0 60px rgba(6,182,212,0.15);
}
.cta-band .cta-band-btn { cursor: pointer !important; }

/* ── Footer ── */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  height: 18px; width: auto;
}
.footer-brand .footer-logo span {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
}
.footer-brand .footer-logo .logo-text { color: var(--accent); }
.footer-brand p {
  font-size: 14px; color: var(--text-tertiary); line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--accent); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-tertiary);
  margin-bottom: 12px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-tertiary); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--text-tertiary); transition: color 0.2s; font-size: 14px;
}
.footer-social a:hover { color: var(--accent); }

/* ── Content blocks (subpages) ── */
.content-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}
.content-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px;
  align-items: start;
}
.content-grid.three-col {
  grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.content-block h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 20px;
}
.content-block p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 16px;
}
.content-block .label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px; display: block;
}

/* ── Service cards (employers) ── */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.service-card .material-icons-outlined {
  font-size: 28px; color: var(--accent); margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* ── Honeypot (spam) ── */
.honeypot { display: none !important; }

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 8px;
  font-family: var(--font-mono); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea {
  min-height: 140px; resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2306B6D4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; border-radius: var(--radius-sm);
  background: var(--gradient); color: white;
  font-weight: 600; font-size: 16px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.25);
}

/* ── Value list (candidates) ── */
.value-list {
  display: flex; flex-direction: column; gap: 20px;
}
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.value-item .material-icons-outlined {
  font-size: 22px; color: var(--accent); margin-top: 2px; min-width: 22px;
}
.value-item div h4 {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  margin-bottom: 4px;
}
.value-item div p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 0;
}

/* ── Particle Grid Canvas ── */
.particle-grid {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.7; z-index: 0;
}

/* ── SVG Pattern Backgrounds ── */
.pattern-constellation {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pattern-constellation svg {
  position: absolute; top: 0; right: -5%; width: 70%; height: 100%;
  opacity: 0.12;
}
.pattern-constellation .dot {
  fill: var(--accent);
  animation: pulse-dot 4s ease-in-out infinite;
}
.pattern-constellation .dot:nth-child(odd) { animation-delay: -2s; }
.pattern-constellation .line {
  stroke: var(--accent); stroke-width: 0.5;
  opacity: 0.4;
  animation: fade-line 6s ease-in-out infinite;
}
.pattern-constellation .line:nth-child(3n) { animation-delay: -2s; }
.pattern-constellation .line:nth-child(5n) { animation-delay: -4s; }

.pattern-hex {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pattern-hex svg {
  position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}
.pattern-hex .hex {
  fill: none; stroke: var(--accent); stroke-width: 0.5;
  animation: pulse-hex 8s ease-in-out infinite;
}
.pattern-hex .hex:nth-child(even) { animation-delay: -4s; stroke: var(--purple); }
.pattern-hex .hex:nth-child(3n) { animation-delay: -2.5s; }

.pattern-grid-dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pattern-grid-dots svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.08;
}
.pattern-grid-dots .grid-dot {
  fill: var(--accent);
  animation: pulse-dot 5s ease-in-out infinite;
}
.pattern-grid-dots .grid-dot:nth-child(even) { animation-delay: -2.5s; fill: var(--purple); }

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; r: 1.5; }
  50% { opacity: 1; r: 2.2; }
}
@keyframes fade-line {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}
@keyframes pulse-hex {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@keyframes float-pattern {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(1deg) scale(1.02); }
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Staggered children ── */
.spec-card, .why-card, .service-card, .process-step {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible .spec-card,
.fade-up.visible .why-card,
.fade-up.visible .service-card,
.fade-up.visible .process-step { opacity: 1; transform: translateY(0); }
.fade-up.visible > :nth-child(1) { transition-delay: 0s; }
.fade-up.visible > :nth-child(2) { transition-delay: 0.15s; }
.fade-up.visible > :nth-child(3) { transition-delay: 0.3s; }
.fade-up.visible > :nth-child(4) { transition-delay: 0.45s; }

/* ── Section label slide-in ── */
.section-label {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.6s ease 0.2s;
}
.fade-up.visible .section-label::before { width: 24px; }

/* ── Nav link underline ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── Spec role tags stagger on card hover ── */
.spec-roles span {
  opacity: 0.7; transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s, color 0.2s;
}
.spec-card:hover .spec-roles span { opacity: 1; transform: scale(1); }
.spec-card:hover .spec-roles span:nth-child(1) { transition-delay: 0s; }
.spec-card:hover .spec-roles span:nth-child(2) { transition-delay: 0.03s; }
.spec-card:hover .spec-roles span:nth-child(3) { transition-delay: 0.06s; }
.spec-card:hover .spec-roles span:nth-child(4) { transition-delay: 0.09s; }
.spec-card:hover .spec-roles span:nth-child(5) { transition-delay: 0.12s; }
.spec-card:hover .spec-roles span:nth-child(6) { transition-delay: 0.15s; }
.spec-card:hover .spec-roles span:nth-child(7) { transition-delay: 0.18s; }
.spec-card:hover .spec-roles span:nth-child(8) { transition-delay: 0.21s; }
.spec-card:hover .spec-roles span:nth-child(9) { transition-delay: 0.24s; }
.spec-card:hover .spec-roles span:nth-child(10) { transition-delay: 0.27s; }

/* ── Button press effect ── */
.hero-cta:active, .cta-band-btn:active, .nav-cta:active, .submit-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ── Stat number animation ── */
.stat-number {
  transition: opacity 0.4s ease;
}

/* ── C-Suite roles stagger ── */
.csuite-roles span {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible .csuite-roles span { opacity: 1; transform: translateY(0); }
.fade-up.visible .csuite-roles span:nth-child(1) { transition-delay: 0.1s; }
.fade-up.visible .csuite-roles span:nth-child(2) { transition-delay: 0.2s; }
.fade-up.visible .csuite-roles span:nth-child(3) { transition-delay: 0.3s; }
.fade-up.visible .csuite-roles span:nth-child(4) { transition-delay: 0.4s; }
.fade-up.visible .csuite-roles span:nth-child(5) { transition-delay: 0.5s; }
.fade-up.visible .csuite-roles span:nth-child(6) { transition-delay: 0.6s; }
.fade-up.visible .csuite-roles span:nth-child(7) { transition-delay: 0.7s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.three-col { grid-template-columns: 1fr; }
}
/* ── Touch device cursor fallback ── */
@media (hover: none) and (pointer: coarse) {
  .cursor-svg, .cursor-frost { display: none !important; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,15,28,0.97); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border-subtle);
  }
  .hero { padding: 140px 0 80px; }
  .page-hero { padding: 140px 0 60px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .csuite-roles { gap: 8px; }
  .csuite-roles span { font-size: 12px; padding: 8px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .content-section { padding: 60px 0; }
  button, a, input, select, textarea { min-height: 44px; }
  .nav-links a { min-height: auto; padding: 12px 0; }
}
