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

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sn-green, #63DF4E);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  transition: transform 0.1s linear;
  opacity: 0.85;
}

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Background — warm off-white; cards are pure #fff so they float */
  --bg: #F5F4F0;

  /* Text — high contrast */
  --text:           #0D1117;
  --text-secondary: #3D4451;
  --text-muted:     #6B7280;

  /* ServiceNow brand (official) */
  --sn-dark:  #032D42;
  --sn-green: #63DF4E;
  --sn-light: rgba(99, 223, 78, 0.12);
  --sn-mid:   rgba(99, 223, 78, 0.28);

  /* LinkedIn brand */
  --linkedin: #0A66C2;

  /* Card — clean, opaque, elevated from bg */
  --glass-bg:           #FFFFFF;
  --glass-border:       rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(0, 0, 0, 0.14);
  --glass-shadow:       0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.07);
  --glass-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.06), 0 14px 36px rgba(0, 0, 0, 0.11);

  /* Layout */
  --section-gap:    100px;
  --container-max:  1040px;
  --container-pad:  clamp(20px, 5vw, 48px);

  /* Radius */
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   BACKGROUND DEPTH LAYER
   Rich color pools — the blobs are the "liquid" the glass
   refracts. They need to be vivid enough to bleed through.
   ============================================================ */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Top-right: very faint green warmth */
.bg-blob--1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 223, 78, 0.07) 0%, transparent 65%);
  filter: blur(80px);
  top: -250px;
  right: -150px;
  animation: float-1 20s ease-in-out infinite alternate;
}

/* Bottom-left: very faint navy cool */
.bg-blob--2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(3, 45, 66, 0.06) 0%, transparent 65%);
  filter: blur(90px);
  bottom: -100px;
  left: -120px;
  animation: float-2 16s ease-in-out infinite alternate;
}

/* Center: faint amber warmth */
.bg-blob--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 185, 80, 0.05) 0%, transparent 65%);
  filter: blur(70px);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-3 24s ease-in-out infinite alternate;
}

/* Top-left: faint sky blue */
.bg-blob--4 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.05) 0%, transparent 65%);
  filter: blur(80px);
  top: 15%;
  left: -150px;
  animation: float-4 19s ease-in-out infinite alternate;
}

@keyframes float-1 {
  from { transform: translate(0, 0)    scale(1);    }
  to   { transform: translate(-50px, 60px) scale(1.08); }
}
@keyframes float-2 {
  from { transform: translate(0, 0)    scale(1);    }
  to   { transform: translate(60px, -50px) scale(1.10); }
}
@keyframes float-3 {
  from { transform: translate(-50%, -50%) scale(1);    }
  to   { transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes float-4 {
  from { transform: translate(0, 0)    scale(1);    }
  to   { transform: translate(40px, 70px) scale(1.06); }
}

/* ============================================================
   CARD
   Clean, opaque white — floats above the warm off-white bg.
   No glass effects; contrast and typography do the work.
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition:
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-2px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
main { position: relative; z-index: 1; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-gap) 0; }
.section--contact { padding-bottom: 56px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: var(--container-max);
  z-index: 100;
  padding: 10px 16px;
  background: rgba(245, 244, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.nav.scrolled {
  background: rgba(245, 244, 240, 0.96);
  border-color: rgba(0, 0, 0, 0.11);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10);
}

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

.nav-name {
  color: var(--text);
  display: flex;
  align-items: center;
}

.nav-name svg {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--sn-dark);
  background: var(--sn-light);
  border: 1px solid var(--sn-mid);
  padding: 6px 18px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--sn-mid);
  transform: translateY(-1px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-heading {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--sn-dark);
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--sn-green) 0%, rgba(99, 223, 78, 0.3) 100%);
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }

/* Primary: ServiceNow dark navy */
.btn--primary {
  background: var(--sn-dark);
  color: #fff;
  box-shadow: 0 2px 16px rgba(3, 45, 66, 0.25);
}

.btn--primary:hover {
  background: #04405f;
  box-shadow: 0 4px 24px rgba(3, 45, 66, 0.35);
}

/* LinkedIn: official #0A66C2 */
.btn--linkedin {
  background: var(--linkedin);
  color: #fff;
  box-shadow: 0 2px 16px rgba(10, 102, 194, 0.22);
}

.btn--linkedin:hover {
  background: #0856a8;
  box-shadow: 0 4px 24px rgba(10, 102, 194, 0.32);
}

.btn--lg {
  font-size: 15px;
  padding: 13px 26px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px var(--container-pad) 80px;
  /* Subtle green glow behind the name — like a backlit softbox */
  background: radial-gradient(ellipse 80% 50% at 50% 30%,
    rgba(99, 223, 78, 0.07) 0%,
    transparent 70%);
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-name {
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.93;
  color: var(--sn-dark);
  margin-bottom: 18px;
  padding-bottom: 22px;
  /* Green underline accent */
  background-image: linear-gradient(90deg, var(--sn-green) 0%, rgba(99, 223, 78, 0) 100%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 160px 2.5px;
  /* Soft glow for depth */
  text-shadow: 0 0 60px rgba(3, 45, 66, 0.10);
}

.hero-title {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-card {
  padding: 32px 36px;
}

.about-text {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.about-text:last-of-type { margin-bottom: 20px; }

.about-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experience-card {
  padding: 26px 30px;
}

.experience-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.experience-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* When the identity block is a link */
a.experience-identity {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}

a.experience-identity:hover {
  opacity: 0.72;
}

.company-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.company-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 9px;
}

.company-logo-fallback--sn   { background: linear-gradient(135deg, #63DF4E, #032D42); color: #fff; }
.company-logo-fallback--pwc  { background: linear-gradient(135deg, #e87722, #d05a0a); color: #fff; }
.company-logo-fallback--leidos { background: linear-gradient(135deg, #004b8d, #0066cc); color: #fff; }
.company-logo-fallback--vt   { background: linear-gradient(135deg, #861f41, #6b1833); color: #fff; }

/* Small variant for certifications */
.company-logo-wrap--sm {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.company-logo--sm {
  width: 28px;
  height: 28px;
}

.company-logo-fallback--sm {
  font-size: 8px;
  border-radius: 6px;
}

.company-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.role-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--sn-dark);
  margin-top: 2px;
}

.experience-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

.meta-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.meta-location {
  font-size: 12px;
  color: var(--text-muted);
}

.experience-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ============================================================
   EDUCATION
   ============================================================ */
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .education-grid { grid-template-columns: 1fr; }
}

.education-card { padding: 26px 30px; }

.education-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   TAGS
   ============================================================ */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tag:hover {
  background: rgba(3, 45, 66, 0.07);
  color: var(--sn-dark);
  border-color: rgba(3, 45, 66, 0.15);
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 820px) { .skills-grid { grid-template-columns: 1fr; } }

.skills-card { padding: 26px 28px; }

.skills-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Certs list */
.certs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Sub-badges row beneath a cert group (e.g. individual CIS credentials) */
.cert-sub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.cert-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

a.cert-badge {
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

a.cert-badge:hover {
  background: rgba(3, 45, 66, 0.07);
  color: var(--sn-dark);
  border-color: rgba(3, 45, 66, 0.18);
}

/* Clickable cert-name link */
a.cert-name {
  text-decoration: none;
  transition: color 0.18s;
}

a.cert-name:hover {
  color: var(--sn-dark);
  text-decoration: underline;
  text-decoration-color: rgba(3, 45, 66, 0.3);
  text-underline-offset: 2px;
}

.cert-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--sn-light);
  border: 1px solid var(--sn-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sn-dark);
  flex-shrink: 0;
}

.cert-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.cert-issuer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}

.contact-heading {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--sn-dark);
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 32px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 22px var(--container-pad);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   HERO REVEAL (on load)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 0.7s var(--ease-out) forwards;
}

.reveal--delay-1 { animation-delay: 0.12s; }
.reveal--delay-2 { animation-delay: 0.24s; }
.reveal--delay-3 { animation-delay: 0.38s; }

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL (triggered by JS)
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.scroll-reveal--delay-1 { transition-delay: 0.07s; }
.scroll-reveal--delay-2 { transition-delay: 0.14s; }
.scroll-reveal--delay-3 { transition-delay: 0.21s; }
.scroll-reveal--delay-4 { transition-delay: 0.28s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-gap: 72px; }

  .nav { width: calc(100% - 24px); top: 12px; }
  .nav-link { display: none; }

  .experience-card,
  .education-card,
  .skills-card { padding: 20px; }

  .experience-header { flex-direction: column; }
  .experience-meta   { align-items: flex-start; }

  .about-card { padding: 24px 20px; }
  .contact-card { padding: 32px 20px; }

  .hero-br { display: none; }

  /* Blobs — halve blur radius so GPU compositing is cheaper on mobile */
  .bg-blob--1,
  .bg-blob--4 { filter: blur(40px); }
}

/* ============================================================
   DARK MODE  (respects OS preference)
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:             #0F1117;
    --text:           #F0EEE9;
    --text-secondary: #9AA3B2;
    --text-muted:     #60697A;

    /* Repurpose sn-dark to a readable light blue for headings/labels */
    --sn-dark:  #B8D9EE;
    --sn-light: rgba(99, 223, 78, 0.10);
    --sn-mid:   rgba(99, 223, 78, 0.22);

    --glass-bg:           #181B24;
    --glass-border:       rgba(255, 255, 255, 0.07);
    --glass-border-hover: rgba(255, 255, 255, 0.13);
    --glass-shadow:       0 1px 2px rgba(0, 0, 0, 0.30), 0 6px 20px rgba(0, 0, 0, 0.40);
    --glass-shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.40), 0 14px 36px rgba(0, 0, 0, 0.55);
  }

  /* Nav */
  .nav {
    background: rgba(15, 17, 23, 0.85);
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.30);
  }
  .nav.scrolled {
    background: rgba(15, 17, 23, 0.97);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.40);
  }
  .nav-link:hover { background: rgba(255, 255, 255, 0.07); }
  .nav-cta { color: var(--sn-green); }

  /* Hero */
  .hero {
    background: radial-gradient(ellipse 80% 50% at 50% 30%,
      rgba(99, 223, 78, 0.06) 0%, transparent 70%);
  }
  .hero-name { text-shadow: 0 0 80px rgba(99, 223, 78, 0.12); }

  /* Primary button — keep dark navy on dark bg */
  .btn--primary {
    background: #032D42;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.40);
  }
  .btn--primary:hover {
    background: #04405f;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.50);
  }

  /* Blobs — nudge up opacity so they read against the dark bg */
  .bg-blob--1 { background: radial-gradient(circle, rgba(99, 223, 78,  0.10) 0%, transparent 65%); }
  .bg-blob--2 { background: radial-gradient(circle, rgba(99, 160, 220, 0.08) 0%, transparent 65%); }
  .bg-blob--3 { background: radial-gradient(circle, rgba(255, 185, 80, 0.07) 0%, transparent 65%); }
  .bg-blob--4 { background: radial-gradient(circle, rgba(100, 180, 255,0.08) 0%, transparent 65%); }

  /* Company logo wrap */
  .company-logo-wrap {
    background: #1E2130;
    border-color: rgba(255, 255, 255, 0.08);
  }

  /* Chips & tags */
  .about-chip,
  .tag {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
  }
  .tag:hover {
    background: rgba(184, 217, 238, 0.10);
    color: var(--sn-dark);
    border-color: rgba(184, 217, 238, 0.20);
  }

  /* Cert badges */
  .cert-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
  }
  a.cert-badge:hover {
    background: rgba(184, 217, 238, 0.10);
    color: var(--sn-dark);
    border-color: rgba(184, 217, 238, 0.20);
  }
  a.cert-name:hover {
    color: var(--sn-dark);
    text-decoration-color: rgba(184, 217, 238, 0.40);
  }

  /* Footer */
  .footer { border-top-color: rgba(255, 255, 255, 0.07); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .bg-blob         { animation: none !important; }
  .scroll-reveal   { transition: opacity 0.3s !important; transform: none !important; }
  .reveal          { animation: none !important; opacity: 1 !important; transform: none !important; }
  *                { transition-duration: 0.01ms !important; }
}
