/* ═══════════════════════════════════════════════════════════
   AXORVAULT — DESIGN TOKENS
   Change these first before touching component styles.
   ═══════════════════════════════════════════════════════════ */
:root {
  /* ── Brand colors ── */
  --navy-900: #081120;
  --navy-800: #0d1b2e;
  --navy-700: #14263d;
  --navy-600: #1e3a5f;

  --azure-500: #2f81f7;
  --azure-400: #38bdf8;
  --azure-300: #7dd3fc;

  --teal-400: #2dd4bf;
  --teal-300: #5eead4;

  --gold-400: #f5b84c;
  --gold-300: #fcd34d;

  /* ── Neutrals ── */
  --slate-50: #f8fafc;
  --slate-100: #f4f7fb;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #5b6b7f;
  --slate-700: #334155;
  --slate-800: #1e293b;

  /* ── Semantic ── */
  --bg: var(--slate-50);
  --bg-dark: var(--navy-900);
  --bg-card: #ffffff;
  --text: var(--slate-700);
  --text-muted: var(--slate-500);
  --text-inverse: #f1f5f9;
  --text-inverse-muted: var(--slate-400);
  --accent: var(--azure-500);
  --accent-soft: rgba(47, 129, 247, 0.12);
  --border: var(--slate-200);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* ── Typography scale (fluid) ── */
  --text-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.8rem);
  --text-sm: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.6rem + 2.2vw, 3.5rem);
  --text-display: clamp(2.75rem, 1.8rem + 3.8vw, 4.5rem);

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: clamp(4rem, 3rem + 4vw, 8rem);

  /* ── Layout ── */
  --container: 72rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  /* ── Misc ── */
  --shadow-sm: 0 1px 2px rgba(8, 17, 32, 0.06);
  --shadow-md: 0 4px 16px rgba(8, 17, 32, 0.08);
  --shadow-lg: 0 12px 40px rgba(8, 17, 32, 0.14);
  --shadow-glow: 0 0 40px rgba(47, 129, 247, 0.25);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--azure-400);
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Utility: skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--navy-800);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Utility: screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout: container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-sm);
}

.eyebrow--accent {
  color: var(--azure-400);
}

.grad-text {
  background: linear-gradient(120deg, var(--azure-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lede {
  font-size: var(--text-lg);
  color: var(--slate-600);
  max-width: 46rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--primary {
  background: linear-gradient(120deg, var(--azure-500), var(--azure-400));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn--light {
  background: #fff;
  color: var(--navy-900);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
  padding-block: var(--space-section);
}

.section--light {
  background: var(--slate-100);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section__head {
  max-width: 44rem;
  margin-bottom: var(--space-xl);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: inherit;
}

.section__sub {
  color: var(--text-muted);
}

.section--dark .section__sub {
  color: var(--text-inverse-muted);
}

/* ═══════════════════════════════════════════════════════════
   NAV / HEADER
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(8, 17, 32, 0.92);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-inverse);
}

.brand:hover {
  color: var(--text-inverse);
}

.brand__mark {
  height: 2.25rem;
  width: auto;
  flex-shrink: 0;
}

.brand__name {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__name em {
  font-style: normal;
  background: linear-gradient(120deg, var(--azure-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__links > a {
  color: var(--slate-300);
  font-size: var(--text-sm);
  font-weight: 500;
}

.nav__links > a:hover {
  color: #fff;
}

.nav__links > a.btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.nav__links > a.btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
}

.nav__toggle-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(60rem 40rem at 80% -10%, rgba(47, 129, 247, 0.22), transparent 60%),
    radial-gradient(50rem 35rem at -10% 110%, rgba(45, 212, 191, 0.14), transparent 55%),
    var(--bg-dark);
  color: var(--text-inverse);
  overflow: hidden;
}

.hero::before {
  content: '';
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hero h1 {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero .lede {
  color: var(--slate-300);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-block: var(--space-lg) var(--space-xl);
}

.hero .btn--ghost {
  color: var(--slate-200);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn--ghost:hover {
  color: #fff;
  border-color: var(--azure-400);
  background: var(--accent-soft);
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  border-top: 1px solid var(--border-dark);
  padding-top: var(--space-lg);
}

.stat dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-top: var(--space-xs);
}

.stat__num {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff, var(--azure-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero vault visual */
.hero__visual {
  display: flex;
  justify-content: center;
}

.vault {
  position: relative;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.vault__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.35);
  animation: ring-pulse 5s ease-in-out infinite;
}

.vault__ring--1 {
  inset: 8%;
  border-color: rgba(56, 189, 248, 0.3);
}

.vault__ring--2 {
  inset: -4%;
  border-style: dashed;
  border-color: rgba(45, 212, 191, 0.3);
  animation-duration: 8s;
  animation-direction: reverse;
}

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

.vault__core {
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(56, 189, 248, 0.28), rgba(13, 27, 46, 0.9) 65%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-glow);
}

.vault__icon {
  width: 55%;
  height: auto;
}

.vault__chip {
  position: absolute;
  padding: 0.4rem 0.9rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--slate-200);
  background: rgba(20, 38, 61, 0.85);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  animation: chip-float 6s ease-in-out infinite;
}

.vault__chip--1 { top: 12%; left: -6%; }
.vault__chip--2 { bottom: 26%; right: -8%; animation-delay: 1.5s; }
.vault__chip--3 { bottom: 4%; left: 6%; animation-delay: 3s; }

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

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trustbar {
  background: var(--slate-100);
  border-block: 1px solid var(--border);
  padding-block: var(--space-md);
}

.trustbar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trustbar__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}

.trustbar__items {
  display: flex;
  gap: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
}

.trustbar__items li {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-600);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* 5 cards: Public Sector card centered in row 2 (1+4 visual balance) */
.card-grid .service-card--center {
  grid-column: 2;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.service-card__icon svg {
  width: 60%;
  height: 60%;
}

.service-card__icon--azure {
  background: var(--accent-soft);
  color: var(--azure-500);
}

.service-card__icon--teal {
  background: rgba(45, 212, 191, 0.14);
  color: var(--teal-400);
}

.service-card__icon--gold {
  background: rgba(245, 184, 76, 0.16);
  color: var(--gold-400);
}

.service-card__icon--cyan {
  background: rgba(56, 189, 248, 0.13);
  color: var(--azure-400);
}

.service-card__icon--red {
  background: rgba(248, 113, 113, 0.13);
  color: #f87171;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
  color: var(--slate-800);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.tick-list {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--slate-200);
}

.tick-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--text-sm);
  color: var(--slate-700);
  font-weight: 500;
}

.tick-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-400);
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════
   WHY AXORVAULT
   ═══════════════════════════════════════════════════════════ */
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.why__content h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.why__content h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--azure-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why__content > p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.why__list {
  display: grid;
  gap: 0.9rem;
  margin-block: var(--space-md) var(--space-lg);
}

.why__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--slate-700);
}

.why__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure-500), var(--teal-400));
}

.why__list strong {
  color: var(--slate-800);
}

/* Capability matrix visual */
.why__visual {
  display: grid;
  place-items: center;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 24rem;
}

.matrix__cell {
  aspect-ratio: 1.4;
  display: grid;
  place-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  border: 1px solid var(--border);
  color: var(--slate-700);
  transition: transform var(--transition);
}

.matrix__cell:hover {
  transform: translateY(-4px);
}

.matrix__cell--a { background: rgba(47, 129, 247, 0.1); border-color: rgba(47, 129, 247, 0.35); color: var(--azure-500); }
.matrix__cell--b { background: rgba(45, 212, 191, 0.1); border-color: rgba(45, 212, 191, 0.35); color: #0f9488; }
.matrix__cell--c { background: rgba(245, 184, 76, 0.12); border-color: rgba(245, 184, 76, 0.4); color: #b07d1e; }

/* ═══════════════════════════════════════════════════════════
   SECURITY / FRAMEWORKS
   ═══════════════════════════════════════════════════════════ */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.framework {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: background var(--transition), border-color var(--transition);
}

.framework:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 189, 248, 0.4);
}

.framework h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--azure-300);
  margin-bottom: 0.5rem;
}

.framework p {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS (4-STEP TIMELINE)
   ═══════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--azure-500), var(--azure-400));
  color: #fff;
  font-weight: 800;
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-md);
}

.step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--slate-800);
}

.step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.quote {
  display: flex;
  flex-direction: column;
  background: var(--slate-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.quote blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: var(--space-md);
  position: relative;
  padding-top: 1.5rem;
}

.quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: -0.1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--azure-400);
}

.quote blockquote strong {
  color: var(--slate-800);
}

.quote blockquote em {
  color: var(--slate-800);
}

.quote figcaption {
  margin-top: auto;
  display: grid;
  gap: 0.15rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.quote figcaption strong {
  font-size: var(--text-sm);
  color: var(--slate-800);
}

.quote figcaption span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta {
  background:
    radial-gradient(40rem 30rem at 15% 0%, rgba(45, 212, 191, 0.18), transparent 55%),
    linear-gradient(120deg, var(--navy-800), var(--navy-900));
  padding-block: var(--space-xl);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  margin-bottom: var(--space-xs);
}

.cta p {
  color: var(--text-inverse-muted);
  max-width: 36rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info .lede {
  color: var(--text-inverse-muted);
}

.contact__details {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact__details li {
  display: grid;
  gap: 0.15rem;
}

.contact__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--slate-400);
}

.contact__details a {
  color: var(--text-inverse);
}

.contact__details a:hover {
  color: var(--azure-400);
}

.contact__details span:not(.contact__label) {
  color: var(--text-inverse);
}

/* Form */
.contact__form {
  display: grid;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--text-sm);
  color: var(--text-inverse);
  background: rgba(8, 17, 32, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2394a3b8' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--slate-500);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--azure-400);
  background: rgba(8, 17, 32, 0.9);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #f87171;
}

.form-status {
  min-height: 1.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-status--ok {
  color: var(--teal-400);
}

.form-status--error {
  color: #f87171;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #060d18;
  color: var(--slate-400);
  padding-top: var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.brand--footer {
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: var(--text-sm);
  max-width: 24rem;
}

.footer h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-300);
  margin-bottom: var(--space-sm);
}

.footer__nav {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer__nav a {
  color: var(--slate-400);
  font-size: var(--text-sm);
}

.footer__nav a:hover {
  color: var(--azure-400);
}

.footer__contact {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer__contact a {
  color: var(--slate-400);
  font-size: var(--text-sm);
}

.footer__contact a:hover {
  color: var(--azure-400);
}

.footer__contact p {
  font-size: var(--text-sm);
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  border-top: 1px solid var(--border-dark);
  padding-block: var(--space-md);
  font-size: var(--text-xs);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL (progressive enhancement — JS adds behaviour)
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
  .card-grid,
  .framework-grid,
  .quote-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid .service-card--center {
    grid-column: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__visual {
    order: -1;
  }

  .vault {
    width: min(100%, 16rem);
  }

  .why__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (max-width: 48rem) {
  /* Mobile nav */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) var(--space-md) var(--space-md);

    display: none;
  }

  .nav--open .nav__links {
    display: flex;
  }

  .nav__links > a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav__links > a:last-child {
    border-bottom: 0;
    margin-top: var(--space-sm);
  }

  /* Single column everything */
  .card-grid,
  .framework-grid,
  .quote-grid,
  .steps,
  .hero__stats,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .stat__num {
    font-size: var(--text-xl);
  }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal {
    flex-direction: column;
  }

  .vault__chip--2 {
    right: 0;
  }

  .vault__chip--1 {
    left: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION (accessibility)
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vault__ring,
  .vault__chip {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
