/* ============================================
   SHN CYBER LLC — Design System
   Dark + Animated aesthetic
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #060B14;
  --bg-secondary: #0A1628;
  --bg-tertiary: #0F1F2E;
  --bg-elevated: #14253A;

  /* Brand teals (from logo) */
  --teal-bright: #5DCFD9;
  --teal: #2BB8C4;
  --teal-deep: #1E7A8C;
  --teal-glow: rgba(43, 184, 196, 0.4);
  --teal-soft: rgba(43, 184, 196, 0.1);

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --text-dim: #475569;

  /* Borders & glass */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --glass: rgba(15, 31, 46, 0.6);
  --glass-strong: rgba(20, 37, 58, 0.8);

  /* Accents */
  --amber: #F59E0B;
  --red: #EF4444;
  --green: #10B981;

  /* Gradients */
  --gradient-hero: radial-gradient(ellipse at top, #0F2E3D 0%, #0A1628 40%, #060B14 100%);
  --gradient-teal: linear-gradient(135deg, #5DCFD9 0%, #2BB8C4 50%, #1E7A8C 100%);
  --gradient-text: linear-gradient(135deg, #F1F5F9 0%, #5DCFD9 100%);
  --gradient-card: linear-gradient(135deg, rgba(43, 184, 196, 0.08) 0%, rgba(15, 31, 46, 0.4) 100%);
  --gradient-glow: radial-gradient(circle, rgba(43, 184, 196, 0.25) 0%, transparent 70%);

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(43, 184, 196, 0.3);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(43, 184, 196, 0.15);

  /* Spacing */
  --section-y: clamp(80px, 12vw, 140px);
  --container: 1280px;

  /* Type scale */
  --display: clamp(2.75rem, 6vw, 5.5rem);
  --h1: clamp(2.25rem, 5vw, 4rem);
  --h2: clamp(1.875rem, 3.5vw, 3rem);
  --h3: clamp(1.375rem, 2vw, 1.75rem);
  --body-lg: 1.125rem;
  --body: 1rem;
  --small: 0.875rem;
  --micro: 0.75rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 600; }
h4 { font-size: 1.125rem; }

.display {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-bright);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal { color: var(--teal-bright); }
.text-muted { color: var(--text-secondary); }
.text-dim { color: var(--text-tertiary); }

p { color: var(--text-secondary); }
.lead { font-size: var(--body-lg); color: var(--text-secondary); max-width: 60ch; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

section { padding: var(--section-y) 0; position: relative; }

/* ---------- Promo Bar ---------- */
.promo-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: var(--micro);
  font-family: 'JetBrains Mono', monospace;
}

.promo-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-bar .incident {
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-bar .incident::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2s ease infinite;
}

.promo-bar .meta {
  color: var(--text-tertiary);
  display: inline-flex;
  gap: 1.5rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(6, 11, 20, 0.9);
  border-bottom-color: var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
}

.logo-text { color: var(--text-primary); }
.logo-text .accent { color: var(--teal-bright); }
.logo-text .llc { font-size: 0.65em; color: var(--text-tertiary); font-weight: 500; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: var(--small);
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-menu a:hover { color: var(--text-primary); }

.nav-menu a.active {
  color: var(--teal-bright);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 24px;
  font-size: var(--small);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-teal);
  color: #001620;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(43, 184, 196, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 184, 196, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-primary);
  font-size: var(--small);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 0;
}

.btn-ghost:hover { color: var(--teal-bright); }
.btn-ghost .arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-incident {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-incident:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--amber);
}

.btn-sm { padding: 10px 18px; font-size: var(--micro); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 184, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 184, 196, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  animation: gridDrift 30s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero .glow-orb-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 207, 217, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s var(--ease) both;
}

.hero h1 {
  font-size: var(--display);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.hero h1 .word {
  display: inline-block;
  background: linear-gradient(135deg, #F1F5F9 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .highlight {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--small);
  color: var(--text-tertiary);
}

.hero-trust-item .icon {
  width: 16px;
  height: 16px;
  color: var(--teal-bright);
}

/* ---------- SOC Dashboard Mockup ---------- */
.soc-dashboard {
  position: relative;
  animation: fadeInUp 1.2s var(--ease) 0.2s both;
}

.dashboard-card {
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--small);
  color: var(--text-primary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s ease infinite;
}

.dashboard-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  color: var(--text-tertiary);
}

.dashboard-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.dashboard-stat-label {
  font-size: var(--small);
  color: var(--text-secondary);
}

.dashboard-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.delta {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--green);
}

.delta.up { color: var(--red); }

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-teal);
  border-radius: 3px;
  width: 0;
  animation: fillProgress 2s var(--ease) 0.5s forwards;
  box-shadow: 0 0 10px var(--teal);
}

.alert-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.alert-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: var(--small);
}

.alert-row .dot { width: 6px; height: 6px; border-radius: 50%; }
.alert-row .dot.critical { background: var(--red); box-shadow: 0 0 8px var(--red); }
.alert-row .dot.high { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.alert-row .dot.medium { background: var(--teal-bright); }
.alert-row .label { color: var(--text-secondary); }
.alert-row .count { font-family: 'JetBrains Mono', monospace; color: var(--text-primary); }

.sparkline {
  margin: 1rem 0;
}

.sparkline-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.sparkline-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}

.sparkline-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal-deep));
  border-radius: 2px 2px 0 0;
  opacity: 0.8;
  animation: barRise 1s var(--ease) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--small);
  color: var(--green);
}

.status-bar svg { width: 14px; height: 14px; }

/* Floating cards behind dashboard */
.floating-badge {
  position: absolute;
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: var(--micro);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}

.floating-badge.b1 {
  top: -20px;
  left: -40px;
  color: var(--green);
  animation-delay: 0.5s;
}

.floating-badge.b2 {
  bottom: 40px;
  right: -50px;
  color: var(--teal-bright);
  animation-delay: 1s;
}

.floating-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* ---------- Audience Selector ---------- */
.audience {
  background: var(--bg-primary);
  padding-top: 60px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-lift);
}

.audience-card:hover::before { opacity: 1; }

.audience-card .icon-box {
  width: 56px;
  height: 56px;
  background: var(--gradient-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal-bright);
  position: relative;
  z-index: 1;
}

.audience-card .icon-box svg { width: 26px; height: 26px; }

.audience-card h3 {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.audience-card p {
  font-size: var(--small);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.audience-card .link {
  color: var(--teal-bright);
  font-size: var(--small);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.audience-card .link .arrow {
  transition: transform 0.3s var(--ease);
}

.audience-card:hover .link .arrow {
  transform: translateX(4px);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* ---------- Bento Services Grid ---------- */
.services {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.bento-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.bento-card:hover::after { opacity: 1; }

.bento-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--gradient-card);
  border-color: var(--teal-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: rgba(43, 184, 196, 0.1);
  border: 1px solid var(--teal-soft);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.bento-icon svg { width: 20px; height: 20px; }

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.bento-card.featured h3 { font-size: 1.75rem; }

.bento-card p {
  font-size: var(--small);
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.bento-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.bento-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  color: var(--text-secondary);
}

/* ---------- Talent Section ---------- */
.talent {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.talent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--gradient-glow);
  filter: blur(80px);
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.talent .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.talent-content h2 { margin-bottom: 1.5rem; }
.talent-content p { font-size: var(--body-lg); margin-bottom: 2rem; }

.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.role-chip {
  padding: 10px 18px;
  background: var(--glass-strong);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: var(--small);
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  backdrop-filter: blur(10px);
  animation: floatChip 6s ease-in-out infinite;
}

.role-chip:nth-child(2n) { animation-delay: -2s; }
.role-chip:nth-child(3n) { animation-delay: -4s; }

.role-chip:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  background: var(--teal-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 184, 196, 0.2);
}

/* ---------- Stats Strip ---------- */
.stats {
  background: var(--bg-primary);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: left;
  padding-left: 1.5rem;
  border-left: 2px solid var(--teal);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--small);
  color: var(--text-secondary);
}

/* ---------- How We Work ---------- */
.process {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 4rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .number {
  width: 48px;
  height: 48px;
  background: var(--bg-primary);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--teal-bright);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.process-step:hover .number {
  background: var(--teal);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.process-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: var(--micro);
  color: var(--text-tertiary);
}

/* ---------- Why SHN ---------- */
.why {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  border-color: var(--teal-deep);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 40px;
  height: 40px;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}

.why-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: var(--small);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.final-cta-band {
  background: var(--gradient-hero);
  border: 1px solid var(--teal-deep);
  border-radius: 28px;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: var(--gradient-glow);
  filter: blur(80px);
  opacity: 0.6;
}

.final-cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.final-cta-band p {
  font-size: var(--body-lg);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.final-cta-band .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: var(--small);
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact li {
  font-size: var(--small);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a:hover { color: var(--teal-bright); }
.footer-contact .icon { color: var(--teal); width: 14px; height: 14px; }

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: var(--small);
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal-bright); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: var(--micro);
  color: var(--text-tertiary);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  list-style: none;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
  color: var(--teal-bright);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  padding: 100px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 184, 196, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 184, 196, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  margin: 0 auto;
}

.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--teal-bright); }
.breadcrumb .sep { margin: 0 0.5rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: var(--body);
  transition: all 0.2s var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--small);
  color: var(--text-secondary);
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

/* ---------- Job Cards (Candidates page) ---------- */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.job-card:hover {
  border-color: var(--teal-deep);
  transform: translateX(4px);
  background: var(--bg-elevated);
}

.job-title h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: var(--small);
  color: var(--text-tertiary);
  font-family: 'JetBrains Mono', monospace;
}

.job-type {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: var(--micro);
  font-family: 'JetBrains Mono', monospace;
  background: var(--teal-soft);
  color: var(--teal-bright);
  border: 1px solid var(--teal-deep);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

@keyframes fillProgress {
  to { width: 73%; }
}

@keyframes barRise {
  to { transform: scaleY(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container,
  .talent .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .soc-dashboard { max-width: 480px; margin: 0 auto; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: auto;
  }

  .bento-card.wide { grid-column: span 2; }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .process-timeline::before { display: none; }

  .why-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .promo-bar .meta { display: none; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  .floating-badge { display: none; }

  .bento { grid-template-columns: 1fr; }
  .bento-card.featured,
  .bento-card.wide { grid-column: span 1; }

  .stats-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .job-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-trust { gap: 1rem; }
  .audience-card,
  .bento-card,
  .why-card { padding: 1.5rem; }
  .form-card { padding: 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
