/* ═══════════ RESET & BASE ═══════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #1a1a2e;
  background: #faf9f6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
::selection {
  background: #2d6eb5;
  color: #fff;
}

/* ═══════════ TOKENS ═══════════ */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f2341;
  --navy-700: #162f54;
  --navy-600: #1e3f6e;
  --blue-500: #2d6eb5;
  --blue-400: #4a8bd4;
  --blue-300: #7aafe3;
  --gold-500: #c9982e;
  --gold-400: #e4c06a;
  --ux: #e07650;
  --cx: #c9982e;
  --dx: #2b9e92;
  --cream-50: #faf9f6;
  --cream-100: #f5f0e8;
  --cream-200: #ede5d5;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════ TYPOGRAPHY ═══════════ */
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}
h4,
h5 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy-800);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ═══════════ LAYOUT ═══════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hide-mobile {
  display: inline;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8125rem 1.75rem;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
}
.btn-primary:hover {
  background: #1f5a9a;
  border-color: #1f5a9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 110, 181, 0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--blue-500);
  color: #fff;
  border-color: var(--blue-500);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}
.btn-nav:hover {
  background: #1f5a9a;
  border-color: #1f5a9a;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 0.625rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo img {
  border-radius: 50%;
}
.nav-logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo-text {
  color: var(--navy-800);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover {
  color: var(--navy-800);
  background: rgba(0, 0, 0, 0.04);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
  .nav .btn-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  overflow: hidden;
  padding: 6rem 1.5rem 3rem;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(45, 110, 181, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(201, 152, 46, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 55% 80%, rgba(43, 158, 146, 0.15) 0%, transparent 55%);
  animation: meshDrift 25s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-2%, 1%);
  }
  100% {
    transform: scale(1.02) translate(1%, -1%);
  }
}
.hero-seal {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vh;
  height: 55vh;
  background: url("/images/vcc_stamp_transparent.png") center/contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.hero-badge-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title span {
  display: block;
}
.hero-title-em {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--ux) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-desc strong {
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Hero load animations */
.anim-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════ INTRO ═══════════ */
.intro {
  padding: 7rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-visual {
  display: flex;
  justify-content: center;
}
.intro-seal {
  width: 240px;
  height: 240px;
  filter: drop-shadow(0 8px 32px rgba(15, 35, 65, 0.12));
  transition: transform 0.6s var(--ease);
}
.intro-seal:hover {
  transform: rotate(-4deg) scale(1.04);
}
.intro-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--navy-800);
  margin-bottom: 1.5rem;
}
.intro-heading em {
  font-style: italic;
  color: var(--blue-500);
}
.intro-body {
  font-size: 1.0625rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
  max-width: 560px;
}
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .intro-seal {
    width: 180px;
    height: 180px;
  }
  .intro-body {
    max-width: 100%;
  }
}

/* ═══════════ DISCIPLINES ═══════════ */
.disciplines {
  padding: 7rem 0;
  background: var(--cream-100);
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.disc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s;
  position: relative;
  overflow: hidden;
}
.disc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height 0.35s var(--ease);
}
.disc-ux::before {
  background: var(--ux);
}
.disc-cx::before {
  background: var(--cx);
}
.disc-dx::before {
  background: var(--dx);
}
.disc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}
.disc-card:hover::before {
  height: 4px;
}
.disc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.disc-ux .disc-icon {
  color: var(--ux);
  background: rgba(224, 118, 80, 0.08);
}
.disc-cx .disc-icon {
  color: var(--cx);
  background: rgba(201, 152, 46, 0.08);
}
.disc-dx .disc-icon {
  color: var(--dx);
  background: rgba(43, 158, 146, 0.08);
}
.disc-icon svg {
  width: 30px;
  height: 30px;
}
.disc-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}
.disc-ux .disc-label {
  color: var(--ux);
  background: rgba(224, 118, 80, 0.08);
}
.disc-cx .disc-label {
  color: var(--cx);
  background: rgba(201, 152, 46, 0.1);
}
.disc-dx .disc-label {
  color: var(--dx);
  background: rgba(43, 158, 146, 0.08);
}
.disc-title {
  font-size: 1.375rem;
  color: var(--navy-800);
  margin-bottom: 0.875rem;
}
.disc-body {
  font-size: 0.9375rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.disc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.disc-skills li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3125rem 0.75rem;
  border-radius: 40px;
  background: var(--cream-100);
  color: var(--slate-700);
  transition: background 0.25s, color 0.25s;
}
.disc-card:hover .disc-skills li {
  background: var(--cream-200);
}

@media (max-width: 1024px) {
  .disc-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════ FLEXIBLE LEARNING ═══════════ */
.flexible {
  padding: 7rem 0;
}
.flex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.flex-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.flex-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}
.flex-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.flex-card-header svg {
  flex-shrink: 0;
  color: var(--blue-500);
}
.flex-card-header h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.375rem;
  color: var(--navy-800);
}
.flex-list li {
  font-size: 0.9375rem;
  color: var(--slate-600);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.flex-list li:last-child {
  border-bottom: none;
}
.flex-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}
.flex-campus .flex-list li::before {
  background: var(--gold-500);
}
.flex-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-500);
  padding: 0.375rem 0.875rem;
  border-radius: 40px;
  background: rgba(45, 110, 181, 0.06);
}
.flex-campus .flex-tag {
  color: var(--gold-500);
  background: rgba(201, 152, 46, 0.08);
}
.flex-note {
  font-size: 0.9375rem;
  color: var(--slate-600);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--cream-100);
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .flex-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ STATS ═══════════ */
.stats {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 110, 181, 0.2), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 152, 46, 0.1), transparent 60%);
}
.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.375rem;
}
.stat-sub {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

/* ═══════════ CURRICULUM ═══════════ */
.curriculum {
  padding: 7rem 0;
  background: var(--cream-100);
}
.curr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.curr-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.curr-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.curr-num {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream-200);
  margin-bottom: 0.5rem;
  transition: color 0.35s;
}
.curr-item:hover .curr-num {
  color: var(--blue-300);
}
.curr-item h4 {
  font-size: 1.0625rem;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}
.curr-item p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .curr-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--blue-500) 60%, var(--dx) 100%);
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.04), transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.cta-heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
.cta-note a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.cta-note a:hover {
  color: #fff;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer-brand img {
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.footer-est {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.375rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  transition: color 0.25s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
