/* ─── Section Styles ─────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════════════
   SITE-WIDE BACKGROUND VIDEO
   Mirrors myfgym.webflow.io: the video is fixed behind the entire page at
   z-index:-2. A dark overlay (.site-bg-overlay) tones it down so the video
   reads as a subtle dark texture rather than a distracting scene.
   All sections use rgba(15,15,15,0.78) as their background so they are
   slightly translucent — the video shows through uniformly across the page.
═══════════════════════════════════════════════════════════════════════════ */

.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.site-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/*
 * Dark overlay: rgba(0,0,0,0.70) brings the video down to ~30 % brightness.
 * Combined with the 78 % opaque section backgrounds, the final video
 * contribution is subtle — a living dark texture rather than a bold scene.
 * Increase the alpha towards 0.80 for a heavier vignette, decrease towards
 * 0.55 for a brighter, more prominent video.
 */
.site-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}

/* ─── HERO ─── */
.hero-section {
  padding-top: var(--space-20);
  padding-bottom: 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.18;
}

/* Dark overlay to keep text crisp */
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.55) 0%,
    rgba(15, 15, 15, 0.3) 60%,
    rgba(15, 15, 15, 0.85) 100%
  );
}

/* Lift all hero content above the video */
.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: flex-start;
  padding-bottom: var(--space-12);
}

.hero-h1 {
  font-size: var(--text-h1);
  font-weight: var(--weight-medium);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-heading);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--space-3);
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ─── ABOUT ─── */
.about-section {
  position: relative;
  overflow: hidden;          /* clips transparent corners of rotating PNGs */
  background: transparent;
  /* Reference: 40 px top / 80 px bottom — tighter top lets the ring ride
     high and feel like a hero; generous bottom gives text room to breathe */
  padding-top: var(--space-10);
  padding-bottom: var(--space-20);
}

/* Container sits above the video overlay */
.about-section .container {
  position: relative;
  z-index: 1;
}

.capabilities-section {
  background: var(--color-bg);
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-globe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Layered PNG globe container ──
 *
 * Exact mirror of defenseflowtemplate.webflow.io/company-pages/about:
 * ─ All 4 PNG layers are 100 % × 100 % of the container (NOT 141 %).
 *   The ring looks "bigger" than the wireframe purely because the ring PNG
 *   fills edge-to-edge while the wireframe sphere occupies ~65 % of its canvas.
 * ─ Container sized via aspect-ratio: 1 (no in-flow children needed).
 * ─ overflow: visible lets the rotated PNG corners show past the box boundary
 *   (they are transparent pixels — invisible, but the next overflow:hidden
 *   ancestor clips them cleanly without cutting any visible ring pixels).
 * ─ perspective: 1000px cascades to the overlay's rotateX / rotateY.
 * ─ transform-style: flat  (matches Webflow original).
 */
.about-globe-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;         /* height = width; works even with all-absolute children */
  perspective: 1000px;
  transform-style: flat;
  overflow: visible;
}

/* Shared positioning for every PNG layer */
.globe-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

/* All rotation and mouse interaction is driven by JS (main.js globe block).
   CSS animations are intentionally absent — JS drives ring + radar spin so
   the same rAF loop can modulate speed in response to mouse movement. */
.globe-bg      { z-index: 0; }
.globe-radar   { z-index: 1; }
.globe-main    { z-index: 2; }
.globe-overlay { z-index: 3; }

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}

.about-heading {
  font-size: var(--text-5xl);
  font-weight: var(--weight-medium);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-heading);
}

.about-body {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-loose);
  max-width: 40ch;
}

/* ─── HERO ─── */
/* Dashboard metrics grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
}

.dash-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

/* Card 1 – Real-time surveillance */
.dash-card-surveillance {
  grid-column: 1;
  grid-row: 1;
}

.surveillance-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
}

.surveillance-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 48px;
}
.surveillance-bars span {
  width: 6px;
  border-radius: 2px 2px 0 0;
  background: rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.surveillance-bars span.active { background: #ffffff; }
.surveillance-bars span:nth-child(1) { height: 30%; }
.surveillance-bars span:nth-child(2) { height: 50%; }
.surveillance-bars span:nth-child(3) { height: 70%; }
.surveillance-bars span:nth-child(4) { height: 55%; }
.surveillance-bars span:nth-child(5) { height: 80%; }
.surveillance-bars span:nth-child(6) { height: 100%; background: #ffffff; }
.surveillance-bars span:nth-child(7) { height: 65%; }
.surveillance-bars span:nth-child(8) { height: 45%; }

/* Card 2 – Report metrics */
.dash-card-reports {
  grid-column: 2;
  grid-row: 1;
}

.reports-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
  font-size: var(--text-xs);
  color: var(--color-muted);
}
.reports-active-val {
  font-size: var(--text-sm);
  color: var(--color-heading);
  font-weight: var(--weight-medium);
}

/* Card 3 – Latency */
.dash-card-latency {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
}

.latency-glow {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.05) 60%, transparent 80%);
  border-radius: 50%;
  margin: 0 auto var(--space-2);
}

.latency-value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-medium);
  color: var(--color-heading);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.latency-label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.latency-footer {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-align: center;
  width: 100%;
}

/* Card 4 – AI models active */
.dash-card-ai {
  grid-column: 1;
  grid-row: 2;
}

.ai-radar {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.ai-radar svg {
  width: 100%;
  height: 100%;
}

.ai-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.ai-radar-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.ai-progress {
  flex: 1;
}

.ai-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-2);
}

/* Card 5 – System uptime */
.dash-card-uptime {
  grid-column: 2;
  grid-row: 2;
}

.uptime-bars-row {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 36px;
  margin-top: var(--space-3);
}
.uptime-bars-row span {
  flex: 1;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.uptime-bars-row span.on { background: #ffffff; }
.uptime-bars-row span:nth-child(1)  { height: 60%; }
.uptime-bars-row span:nth-child(2)  { height: 75%; }
.uptime-bars-row span:nth-child(3)  { height: 65%; }
.uptime-bars-row span:nth-child(4)  { height: 90%; }
.uptime-bars-row span:nth-child(5)  { height: 100%; }
.uptime-bars-row span:nth-child(6)  { height: 85%; }
.uptime-bars-row span:nth-child(7)  { height: 95%; }
.uptime-bars-row span:nth-child(8)  { height: 80%; }
.uptime-bars-row span:nth-child(9)  { height: 70%; }
.uptime-bars-row span:nth-child(10) { height: 55%; }

/* Card 6 – Global coverage */
.dash-card-coverage {
  grid-column: 3;
  grid-row: 2;
}

.coverage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.coverage-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.coverage-row:last-child { margin-bottom: 0; }

.coverage-row-top {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text);
}

.coverage-bar {
  height: 8px;
  display: flex;
  gap: 2px;
  align-items: center;
  overflow: hidden;
  flex-wrap: nowrap;
}
.coverage-bar-seg {
  width: 2px;
  min-width: 2px;
  height: 100%;
  border-radius: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.coverage-bar-seg.active { background: rgba(255,255,255,0.85); }

/* ── CAPABILITIES ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.capability-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition);
  min-height: 260px;
}
.capability-card:hover { border-color: rgba(255,255,255,0.2); }

.capability-num {
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.capability-text { flex: 1; }

.capability-text h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: var(--weight-medium);
}

.capability-text p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: var(--leading-loose);
}

.capability-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.capability-icon {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.capability-icon img { max-height: 56px; max-width: 80px; object-fit: contain; }

/* ── PLATFORM ── */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.system-status-panel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.system-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border-soft);
}

.system-status-header span {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.system-status-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--color-border-soft);
}

.ss-widget {
  background: var(--color-bg-card);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ss-widget-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  font-weight: var(--weight-medium);
}

.ss-widget-val {
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-heading);
  letter-spacing: var(--tracking-tight);
}

/* Processing ring */
.processing-ring {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

/* Readiness gauge */
.readiness-gauge {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.readiness-gauge svg { width: 100%; height: 100%; }

.gauge-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-heading);
}

/* Activity log */
.activity-log { display: flex; flex-direction: column; gap: var(--space-2); }
.activity-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.625rem;
  color: var(--color-muted);
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.activity-entry:last-child { border-bottom: none; }
.activity-text { flex: 1; color: var(--color-text); font-size: 0.625rem; }

/* Time display */
.time-display {
  font-size: var(--text-xl);
  font-family: var(--font-mono);
  color: var(--color-heading);
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
}

/* ── MISSION-CRITICAL ── */
.mission-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

/* ── CTA PANEL ── */
.cta-panel {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-20) var(--space-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.cta-panel .section-heading { margin-bottom: 0; }
.cta-panel-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }

/* ── COMPLIANCE ── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.compliance-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  transition: border-color var(--transition);
}
.compliance-card:hover { border-color: rgba(255,255,255,0.2); }

.compliance-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* ── AI SECTION ── */
.ai-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.ai-left-content { display: flex; flex-direction: column; gap: var(--space-6); }
.ai-left-content .section-heading { margin-bottom: 0; }

.ai-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.ai-stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ai-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.ai-stat-icon svg { width: 28px; height: 28px; stroke: white; fill: none; }

.ai-stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--weight-medium);
  color: var(--color-heading);
  letter-spacing: var(--tracking-tight);
}
.ai-stat-label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.ai-feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition);
}
.ai-feature-card:hover { border-color: rgba(255,255,255,0.2); }
.ai-feature-card h3 { font-size: var(--text-base); font-weight: var(--weight-medium); }
.ai-feature-card p { font-size: var(--text-sm); color: var(--color-text); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
}

.testimonials-inner {
  padding: var(--space-16) var(--space-8);
}

.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-10);
}

.testimonials-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.testimonials-nav {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.testimonials-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.testimonials-nav-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25); }
.testimonials-nav-btn svg { width: 16px; height: 16px; stroke: white; fill: none; }

/* ── BLOG ── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.blog-featured-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--transition);
}
.blog-featured-card:hover { border-color: rgba(255,255,255,0.2); }

.blog-featured-illustration {
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-panel);
  border-bottom: 1px solid var(--color-border);
  min-height: 180px;
}

.blog-featured-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }

.blog-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.blog-featured-tag::before {
  content: '★';
  font-size: 0.6em;
  color: var(--color-yellow);
}

.blog-right-col { display: flex; flex-direction: column; gap: var(--space-4); }

/* Newsletter card */
.newsletter-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.newsletter-tag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.newsletter-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: 0.625rem var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-heading);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--color-muted); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.35); }

.newsletter-success {
  font-size: var(--text-sm);
  color: var(--color-green);
  display: none;
}
.newsletter-success.visible { display: block; }

/* ── FOOTER ── */
.footer {
  padding-block: var(--space-8);
}

.footer-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-8);
  border-right: 1px solid var(--color-border-soft);
  gap: var(--space-4);
}

.footer-logo-img { width: 480px; height: auto; }

.footer-nav-col {
  padding: var(--space-8) var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.footer-nav-group h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-heading);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border-soft);
}

.footer-nav-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2) var(--space-4);
}

.footer-nav-links-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-4);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--color-heading); }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-10);
  border-top: 1px solid var(--color-border-soft);
  font-size: var(--text-xs);
  color: var(--color-muted);
}
