/* =========================================================
   OnSecOps — style.css  v2
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Tokens ---- */
:root {
  --bg:          #0A0E1A;
  --surface:     #111828;
  --surface-2:   #161E33;
  --text:        #E8ECF4;
  --muted:       #8B96AB;
  --accent:      #00E5C7;
  --accent-2:    #4D7FFF;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);
  --grad:        linear-gradient(135deg,#00E5C7 0%,#4D7FFF 100%);
  --glow-btn:    0 0 24px rgba(0,229,199,0.3), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --r-card:      16px;
  --r-btn:       10px;
  --font-h:      'Space Grotesk', system-ui, sans-serif;
  --font-b:      'Inter', system-ui, sans-serif;
  --w:           1200px;
  --px:          24px;
  --t:           0.22s ease;
  --nav-h:       72px;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Container ---- */
.container {
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
}
@media (min-width: 768px) { .container { padding-inline: 48px; } }

/* ---- Typography ---- */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.12; color: var(--text); }

h1 { font-size: clamp(34px,5.5vw,58px); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px,3.8vw,40px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 19px; font-weight: 600; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Focus ---- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-btn);
  font-family: var(--font-b);
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #04111a;
  box-shadow: 0 0 0 transparent;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--glow-btn);
}
.btn-primary:active { transform: scale(0.99); }

.btn--lg { padding: 14px 28px; font-size: 15.5px; }

.link-arrow {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { color: var(--text); }

/* ===================== NAV ===================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.nav-wrapper.scrolled {
  background: rgba(10,14,26,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 7px;
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { padding: 8px 18px; font-size: 13.5px; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--text);
  transition: background var(--t), border-color var(--t);
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); border-color: var(--border-2); }

.hline { transition: transform 0.24s ease, opacity 0.24s ease; transform-origin: 50% 50%; }
.nav-toggle[aria-expanded="true"] .h1 { transform: rotate(45deg) translate(3.5px,3.5px); }
.nav-toggle[aria-expanded="true"] .h2 { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .h3 { transform: rotate(-45deg) translate(3.5px,-3.5px); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; }
}

/* Mobile nav */
@media (max-width: 899px) {
  .nav-wrapper { height: auto; min-height: var(--nav-h); }
  .nav { flex-wrap: wrap; padding-block: 14px; align-items: flex-start; }
  .nav-logo { height: 44px; align-items: center; }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; margin-right: 0; margin-bottom: 8px; }
  .nav-link { display: block; padding: 10px 12px; }
}

/* ===================== SECTIONS ===================== */
.section {
  position: relative;
  padding-block: 72px;
}
@media (min-width: 768px) { .section { padding-block: 120px; } }

.section--surface { background: var(--surface); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.section-header h2 { margin-top: 4px; }

.section-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 112px 96px;
  overflow: hidden;
}

/* Background layer */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,229,199,0.11) 0%, transparent 65%);
  top: -10%; right: -5%;
  animation: drift 22s ease-in-out infinite alternate;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(77,127,255,0.09) 0%, transparent 65%);
  bottom: 0; left: -8%;
  animation: drift 28s ease-in-out infinite alternate;
  animation-delay: -10s;
}
.blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,229,199,0.06) 0%, transparent 65%);
  top: 45%; left: 38%;
  animation: drift 16s ease-in-out infinite alternate;
  animation-delay: -5s;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(24px,-18px) scale(1.04); }
  100% { transform: translate(-16px,22px) scale(0.97); }
}

.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}
.dot-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* Hero inner layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 400px; gap: 64px; }
}

/* Credential pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(0,229,199,0.07);
  border: 1px solid rgba(0,229,199,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero-copy h1 { margin-bottom: 24px; }
.br-desktop { display: none; }
@media (min-width: 1024px) { .br-desktop { display: block; } }

.hero-sub {
  font-size: clamp(15px,1.8vw,18px);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-sep {
  width: 1px; height: 16px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ---- Report card (hero visual) ---- */
.hero-visual {
  display: none;
}
@media (min-width: 1024px) { .hero-visual { display: flex; justify-content: center; } }

.report-card {
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,229,199,0.06);
  overflow: hidden;
  position: relative;
}
.report-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.rc-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.rc-dots { display: flex; gap: 6px; }
.rc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-2);
}
.rc-label {
  font-size: 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rc-body { padding: 22px 20px; }

.rc-title {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}

.rc-findings { display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }

.rf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.025);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.rf-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.rf-dot.critical { background: #FF4D6D; box-shadow: 0 0 6px rgba(255,77,109,0.5); }
.rf-dot.high     { background: #FF8C42; box-shadow: 0 0 6px rgba(255,140,66,0.4); }
.rf-dot.medium   { background: #F5C842; box-shadow: 0 0 6px rgba(245,200,66,0.3); }

.rf-name { font-size: 12px; color: var(--muted); flex: 1; }

.rf-sev {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: var(--font-h);
}
.rf-sev.critical { color: #FF4D6D; background: rgba(255,77,109,0.12); }
.rf-sev.high     { color: #FF8C42; background: rgba(255,140,66,0.12); }
.rf-sev.medium   { color: #F5C842; background: rgba(245,200,66,0.12); }

.rc-divider { height: 1px; background: var(--border); margin-bottom: 14px; }

.rc-criteria { display: flex; flex-direction: column; gap: 9px; }
.rcc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.rcc-item svg { flex-shrink: 0; }

/* ===================== SERVICE CARDS ===================== */
.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
/* Gradient accent line on top */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.4;
  transition: opacity var(--t);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,229,199,0.1);
  border-color: rgba(0,229,199,0.12);
}
.card:hover::before { opacity: 1; }

.card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(0,229,199,0.07);
  border: 1px solid rgba(0,229,199,0.12);
  border-radius: 12px;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; font-size: 17px; }

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===================== SOC 2 TABLE ===================== */
/* Single element — responsive via CSS, no duplicates */
.soc2-wrap {
  border-radius: var(--r-card);
  border: 1px solid var(--border-2);
  overflow: hidden;
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.soc2-table {
  width: 100%;
  border-collapse: collapse;
}

.soc2-table thead {
  background: rgba(0,229,199,0.04);
  border-bottom: 1px solid var(--border-2);
}

.soc2-table th {
  padding: 14px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-b);
}

.soc2-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.soc2-table tbody tr:last-child { border-bottom: none; }
.soc2-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.soc2-table td {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--muted);
  vertical-align: middle;
}
.soc2-table td:first-child { width: 200px; }

.criterion-tag {
  display: inline-block;
  padding: 5px 13px;
  background: rgba(0,229,199,0.08);
  color: var(--accent);
  border: 1px solid rgba(0,229,199,0.18);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-h);
}

/* Mobile: stack rows as cards */
@media (max-width: 767px) {
  .soc2-wrap { background: transparent; border: none; box-shadow: none; backdrop-filter: none; }

  .soc2-table thead {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .soc2-table,
  .soc2-table tbody,
  .soc2-table tr,
  .soc2-table td { display: block; }

  .soc2-table tbody tr {
    border: 1px solid var(--border-2);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0;
  }
  .soc2-table tbody tr:hover { background: rgba(0,229,199,0.02); }

  .soc2-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .soc2-table td:last-child { border-bottom: none; }
  .soc2-table td:first-child { width: 100%; padding-bottom: 12px; }
}

/* ===================== APPROACH STEPS ===================== */
.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4,1fr);
    gap: 0;
  }
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: var(--r-card);
  transition: border-color var(--t), box-shadow var(--t);
}
.step:hover {
  border-color: rgba(0,229,199,0.18);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .step { border-radius: 0; border-right: none; }
  .step:first-child { border-radius: var(--r-card) 0 0 var(--r-card); }
  .step:last-child  { border-radius: 0 var(--r-card) var(--r-card) 0; border-right: 1px solid var(--border); }
}

/* Gradient number */
.step-num {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}

.step-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 300px; gap: 80px; }
}

.about-copy h2 { margin-top: 4px; margin-bottom: 20px; }

.about-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.creds { display: flex; flex-wrap: wrap; gap: 10px; }

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(0,229,199,0.05);
  border: 1px solid rgba(0,229,199,0.15);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-h);
  letter-spacing: 0.02em;
  transition: background var(--t), border-color var(--t);
}
.cred-badge:hover {
  background: rgba(0,229,199,0.1);
  border-color: rgba(0,229,199,0.3);
}

/* Photo placeholder */
.about-photo { display: flex; justify-content: center; }
.about-photo img { width: 100%; max-width: 300px; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-card); display: block; }

.photo-ph {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  background: var(--surface-2);
  border: 2px dashed rgba(0,229,199,0.18);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
}
.photo-ph p { font-size: 13px; text-align: center; line-height: 1.6; }
.photo-ph span { font-size: 11px; color: rgba(139,150,171,0.5); }

/* ===================== TRACK RECORD ===================== */
.proof-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-inline: auto;
}
@media (min-width: 600px) { .proof-row { grid-template-columns: repeat(2,1fr); } }

.proof-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,229,199,0.1);
  border-color: rgba(0,229,199,0.15);
}

.proof-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,199,0.07);
  border: 1px solid rgba(0,229,199,0.1);
  border-radius: 10px;
  color: var(--accent);
}

.proof-text { flex: 1; min-width: 0; }
.proof-title { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.proof-sub   { display: block; font-size: 12px; color: var(--muted); }

.proof-arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--t), color var(--t);
}
.proof-card:hover .proof-arrow { transform: translateX(4px); color: var(--accent); }

/* ===================== PRICING ===================== */
.pricing-block {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.pricing-block h2 { margin-top: 4px; margin-bottom: 20px; }

.pricing-line {
  font-size: clamp(17px,2.2vw,21px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.price-accent {
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-h);
}

/* ===================== FINAL CTA ===================== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,199,0.06) 0%, rgba(77,127,255,0.05) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-block {
  position: relative; z-index: 1;
  max-width: 580px; margin-inline: auto;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-tag { font-size: 13px; color: var(--muted); }

.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t);
}
.footer-link:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}
.footer-bottom p { font-size: 12.5px; color: var(--muted); text-align: center; }

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
  .pill-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================== UTILITY ===================== */
.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;
}
