/* ============================================================
   KEVROS DESIGN SYSTEM — Shared Stylesheet
   TaskHawk Systems | 2025-2026
   ============================================================ */

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ============ DESIGN TOKENS ============ */
:root {
  /* Hawk palette */
  --hawk-950: #0a0e1a;
  --hawk-900: #0f1424;
  --hawk-800: #161d33;
  --hawk-700: #1e2842;
  --hawk-600: #2a3656;
  --hawk-500: #3d4f73;
  --hawk-400: #5a6d94;
  --hawk-300: #8494b5;
  --hawk-200: #b0bdd4;
  --hawk-100: #d8dfec;
  --hawk-50:  #eef1f7;

  /* Signal teal */
  --teal-500: #06d6a0;
  --teal-400: #2eeab8;
  --teal-300: #6af0d0;
  --teal-200: #a0f5e2;
  --teal-glow: rgba(6, 214, 160, 0.15);
  --teal-glow-strong: rgba(6, 214, 160, 0.3);

  /* Semantic */
  --red-500: #ef4444;
  --amber-500: #f59e0b;
  --green-500: #16a34a;

  /* Text */
  --white: #ffffff;
  --text-primary: #e8ecf4;
  --text-secondary: #8c99b3;
  --text-muted: #5d6a84;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 120px 0;
  --section-padding-sm: 80px 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--hawk-950);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ UTILITY ============ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hawk-600), transparent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--hawk-950);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--teal-500);
  color: var(--hawk-950);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--teal-glow-strong);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile nav */
.nav-links.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  gap: 20px;
  border-bottom: 1px solid var(--hawk-700);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--teal-500);
  color: var(--hawk-950);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: var(--font-display);
}

.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--teal-glow-strong);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--hawk-600);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: var(--font-display);
}

.btn-secondary:hover {
  border-color: var(--hawk-400);
  background: rgba(255,255,255,0.03);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  background: none;
  border: none;
  color: var(--teal-500);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: gap 0.2s;
  font-family: var(--font-display);
}

.btn-ghost:hover { gap: 10px; }

/* ============ HERO (shared structure) ============ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-full { min-height: 100vh; padding: 160px 0 120px; }
.hero-compact { padding: 160px 0 80px; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--hawk-950), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page hero (inner pages) */
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* ============ HERO PROOF STRIP ============ */
.hero-proof {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-proof-item .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6, 214, 160, 0.12);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--hawk-800);
  border: 1px solid var(--hawk-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============ CARDS ============ */
.card {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--hawk-600);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.card-flat { transform: none !important; }
.card-flat:hover { transform: none !important; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--teal-500);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hawk-700);
}

.card-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-detail-item .tick {
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ GRID LAYOUTS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-asym { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ============ SECTION HEADERS ============ */
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ CODE BLOCKS ============ */
.code-block {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  overflow: hidden;
}

.code-block-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--hawk-700);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.code-block-header .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse 2s infinite;
}

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

.code-block-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 2;
  color: var(--text-secondary);
  overflow-x: auto;
}

.code-block-body .key { color: var(--teal-400); }
.code-block-body .val { color: var(--hawk-200); }
.code-block-body .str { color: var(--teal-300); }
.code-block-body .comment { color: var(--text-muted); }
.code-block-body .sig { color: var(--text-muted); font-size: 0.75rem; }

pre.code-inline {
  background: var(--hawk-800);
  border: 1px solid var(--hawk-700);
  border-radius: 10px;
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  overflow-x: auto;
  margin-bottom: 16px;
}

code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--hawk-800);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============ TIMELINE CARDS ============ */
.timeline-card {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.timeline-card.urgent::before { background: var(--red-500); }
.timeline-card.soon::before { background: var(--amber-500); }
.timeline-card.active::before { background: var(--teal-500); }

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-card.urgent .timeline-date { color: var(--red-500); }
.timeline-card.soon .timeline-date { color: var(--amber-500); }
.timeline-card.active .timeline-date { color: var(--teal-500); }

.timeline-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.timeline-card.urgent .timeline-tag { background: rgba(239,68,68,0.1); color: var(--red-500); }
.timeline-card.soon .timeline-tag { background: rgba(245,158,11,0.1); color: var(--amber-500); }
.timeline-card.active .timeline-tag { background: var(--teal-glow); color: var(--teal-500); }

/* ============ FLOW STEPS ============ */
.enforcement-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--hawk-800);
  border-radius: 10px;
  border: 1px solid var(--hawk-700);
  font-size: 0.875rem;
  transition: all 0.3s;
}

.flow-step:hover {
  border-color: var(--hawk-600);
  background: rgba(30, 40, 66, 0.8);
}

.flow-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.flow-step-icon.request { background: rgba(6,214,160,0.1); color: var(--teal-500); }
.flow-step-icon.enforce { background: rgba(6,214,160,0.15); color: var(--teal-400); }
.flow-step-icon.proof { background: rgba(6,214,160,0.2); color: var(--teal-300); }
.flow-step-icon.allow { background: rgba(22,163,74,0.12); color: var(--green-500); }
.flow-step-icon.clamp { background: rgba(245,158,11,0.12); color: var(--amber-500); }
.flow-step-icon.deny { background: rgba(239,68,68,0.12); color: var(--red-500); }

.flow-step-label { font-weight: 500; color: var(--text-primary); }
.flow-step-detail { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.flow-arrow { text-align: center; color: var(--hawk-500); font-size: 0.875rem; }

/* ============ DEPLOY BAR ============ */
.deploy {
  padding: 80px 0;
  background: var(--hawk-900);
  border-top: 1px solid var(--hawk-700);
  border-bottom: 1px solid var(--hawk-700);
}

.deploy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.deploy-text h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.deploy-text p { font-size: 0.9375rem; color: var(--text-secondary); }

.deploy-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.deploy-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--hawk-800);
  border: 1px solid var(--hawk-700);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.deploy-badge:hover { border-color: var(--hawk-600); color: var(--text-primary); }

/* ============ CTA SECTION ============ */
.cta-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-contact { font-size: 0.875rem; color: var(--text-muted); }
.cta-contact a { color: var(--teal-500); transition: opacity 0.2s; }
.cta-contact a:hover { opacity: 0.8; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--hawk-800);
  border: 1px solid var(--hawk-700);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

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

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238c99b3'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* ============ FOOTER ============ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-primary); }

/* ============ PRICING ============ */
.pricing-card {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--teal-500);
  box-shadow: 0 0 40px var(--teal-glow);
}

.pricing-card .tier-name {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-card .price-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card .features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-card .features li .tick {
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============ GOVERNMENT PAGE STYLES ============ */
.credential-card {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.credential-card:hover {
  border-color: var(--hawk-600);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.credential-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.credential-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.architecture-item {
  margin-bottom: 32px;
}

.architecture-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.architecture-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.procurement-intro {
  text-align: center;
  margin-bottom: 48px;
}

.procurement-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.procurement-card {
  background: var(--hawk-900);
  border: 1px solid var(--hawk-700);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.procurement-card:hover {
  border-color: var(--hawk-600);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.procurement-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.procurement-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.procurement-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hawk-700);
}

.procurement-footer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.procurement-footer a {
  color: var(--teal-500);
  transition: color 0.3s;
}

.procurement-footer a:hover {
  color: var(--teal-300);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-2-asym { grid-template-columns: 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-asym { grid-template-columns: 1fr; gap: 40px; }

  .deploy-inner { flex-direction: column; text-align: center; }
  .deploy-badges { justify-content: center; }

  .hero-proof { flex-direction: column; gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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

  .trust-bar-inner { gap: 24px; }
}
