/* ═══════════════════════════════════════════════════════════════
   BPSC UNITED — Campaign Website Stylesheet
   ═══════════════════════════════════════════════════════════════
   Palette  : Royal Blue + Cyan + Purple + Lime (from Instagram)
   Fonts    : Syne (headings) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   0. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
───────────────────────────────────────────── */
:root {
  /* ── Core Brand Colors (extracted from Instagram) ── */
  --navy:        #151D4A;   /* deep background navy */
  --navy-light:  #1B2460;   /* slightly lighter navy */
  --navy-mid:    #1E2D72;   /* mid navy for gradients */
  --blue:        #2D3F9E;   /* primary royal/cobalt blue */
  --blue-light:  #3A52C4;   /* hover state blue */
  --blue-pale:   #E8EBF8;   /* very light blue tint for backgrounds */

  /* ── Accent Colors ── */
  --cyan:        #00D4D8;   /* bright teal/cyan accent (arc element) */
  --cyan-light:  #00E8EC;   /* lighter cyan for hover */
  --cyan-pale:   rgba(0,212,216,.12); /* translucent cyan bg */
  --purple:      #7B4FBF;   /* purple accent (gradient element) */
  --lime:        #C8E03A;   /* lime/yellow-green accent (bar element) */

  /* ── Neutrals ── */
  --white:       #FFFFFF;
  --off-white:   #F4F6FD;   /* slightly blue-tinted off-white */
  --text:        #1A2240;   /* dark navy text */
  --text-muted:  #5C6A9A;   /* muted blue-grey text */
  --border:      #D8DCF0;   /* blue-tinted border */

  /* Role badge colors — updated to match brand palette */
  --c1: #2D3F9E; --c2: #00D4D8; --c3: #7B4FBF;
  --c4: #C8E03A; --c5: #3A52C4; --c6: #5B3DA8;

  /* ── Typography ── */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* ── Spacing ── */
  --section-pad:  clamp(5rem, 10vw, 9rem);
  --container:    1180px;
  --gap:          2rem;
  --radius:       1rem;
  --radius-lg:    1.5rem;
  --radius-card:  1.25rem;

  /* ── Shadows (navy-toned) ── */
  --shadow-sm:  0 1px 3px rgba(21,29,74,.08), 0 1px 2px rgba(21,29,74,.06);
  --shadow-md:  0 4px 24px rgba(21,29,74,.12), 0 2px 8px rgba(21,29,74,.08);
  --shadow-lg:  0 16px 48px rgba(21,29,74,.18), 0 4px 16px rgba(21,29,74,.10);
  --shadow-xl:  0 32px 80px rgba(21,29,74,.24);
  --shadow-glow: 0 0 40px rgba(0,212,216,.3);

  /* ── Transitions ── */
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast:      .15s;
  --t-med:       .3s;
  --t-slow:      .6s;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }


/* ─────────────────────────────────────────────
   2. UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-pad); }

.mt-2 { margin-top: 2rem; }

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-pale);
  border: 1px solid rgba(0,212,216,.25);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}


/* ─────────────────────────────────────────────
   3. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform var(--t-fast) var(--ease-spring),
              box-shadow var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,212,216,.35);
}
.btn-primary:hover {
  background: var(--cyan-light);
  box-shadow: 0 8px 32px rgba(0,212,216,.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg    { padding: .95rem 2.25rem; font-size: 1rem; }
.btn-full  { width: 100%; justify-content: center; }


/* ─────────────────────────────────────────────
   4. SCROLL-REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeUp .8s var(--ease) forwards;
}
.animate-fade-up.delay-1 { animation-delay: .2s; }
.animate-fade-up.delay-2 { animation-delay: .4s; }
.animate-fade-up.delay-3 { animation-delay: .6s; }
.animate-fade-up.delay-4 { animation-delay: .8s; }


/* ─────────────────────────────────────────────
   5. NAVIGATION
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.navbar.scrolled {
  background: rgba(21,29,74,.96);
  backdrop-filter: blur(16px) saturate(180%);
  padding: .75rem 0;
  box-shadow: 0 1px 32px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: .5rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text em {
  font-style: normal;
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  padding: .4rem .9rem;
  border-radius: 999px;
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  letter-spacing: .01em;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 6px;
  border-radius: .5rem;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease),
              opacity var(--t-fast) var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ─────────────────────────────────────────────
   6. HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Instagram-matched gradient: deep navy → royal blue */
  background: linear-gradient(145deg, var(--navy) 0%, #1F2E78 45%, var(--navy-light) 100%);
  overflow: hidden;
  isolation: isolate;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Orbs — now using the Instagram brand colors */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  /* Cyan arc — matches the large teal arc in Instagram posts */
  width: 650px; height: 650px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(0,212,216,.2) 0%, transparent 60%);
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-2 {
  /* Purple — matches the gradient purple element in stories */
  width: 420px; height: 420px;
  bottom: -80px; left: -120px;
  background: radial-gradient(circle, rgba(123,79,191,.18) 0%, transparent 65%);
  animation: orbFloat 11s ease-in-out infinite reverse;
}
.orb-3 {
  /* Subtle blue centre glow */
  width: 320px; height: 320px;
  top: 38%; left: 28%;
  background: radial-gradient(circle, rgba(45,63,158,.2) 0%, transparent 65%);
  animation: orbFloat 13s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(20px, -30px) scale(1.04); }
  66%  { transform: translate(-15px, 20px) scale(.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 8rem 1.5rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,216,.1);
  border: 1px solid rgba(0,212,216,.3);
  padding: .4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.badge-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.headline-line { display: block; }
.headline-line.highlight {
  color: transparent;
  /* Cyan → purple gradient — matches Instagram arc element */
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.03em;
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}


/* ─────────────────────────────────────────────
   7. ABOUT SECTION
───────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-text .lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

/* Values grid */
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,212,216,.3);
}
.value-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--cyan-pale);
  color: var(--cyan);
  border-radius: .75rem;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.value-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   8. TEAM SECTION
───────────────────────────────────────────── */
.team {
  /* Matches the Instagram background: solid royal blue deepening to navy */
  background: linear-gradient(180deg, var(--off-white) 0%, var(--blue-pale) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Member card */
.member-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.member-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,212,216,.25);
}

.card-photo-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.member-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.member-card:hover .member-photo { transform: scale(1.06); }

/* ─────────────────────────────────────────────
   PER-MEMBER PHOTO POSITION OVERRIDES
   Only use object-position — never width/position/top
   on the img, those break on mobile.
   Adjust the % values: lower % = higher up in frame
───────────────────────────────────────────── */

#HussamRamadan img   { object-position: center 20%; }
#SayedMohamed img    { object-position: center top; }
#FadhelHasan img     { object-position: center top; }
#Eliaskamal img      { object-position: center 15%; }
#NoorAldabbagh img   { object-position: center 8%;  }
#ShahadAli img       { object-position: center 10%; }
#Ebrahim img         { object-position: center top; }
#AliAlawami img      { object-position: center 12%; }
#AbdullaDairey img   { object-position: center top; }


/* Photo overlay — navy with cyan tint */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,29,74,.85) 0%, rgba(21,29,74,.3) 50%, transparent 100%);
  display: grid;
  place-items: end center;
  padding-bottom: 1.25rem;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.member-card:hover .photo-overlay { opacity: 1; }

.overlay-links {
  display: flex;
  gap: .75rem;
}
.overlay-links a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease-spring);
}
.overlay-links a:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: scale(1.12);
}

/* Role badge — now uses cyan accent */
.role-badge {
  position: absolute;
  top: .85rem; left: .85rem;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--navy);
  padding: .25rem .7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* Card body */
.card-body { padding: 1.25rem; }
.member-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
  letter-spacing: -.01em;
}
.member-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .75rem;
}
.member-bio {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   9. FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: .875rem;
  margin-top: .5rem;
  color: rgba(255,255,255,.4);
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast) var(--ease);
}
.footer-nav a:hover { color: var(--cyan); }
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: .5rem;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  font-size: 1.1rem;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.footer-social a:hover {
  background: var(--cyan);
  color: var(--navy);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}


/* ─────────────────────────────────────────────
   10. BACK TO TOP BUTTON
───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,212,216,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--cyan-light);
  box-shadow: 0 8px 28px rgba(0,212,216,.6);
}


/* ─────────────────────────────────────────────
   11. RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid    { grid-template-columns: repeat(3, 1fr); }
  .about-grid   { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}


/* ─────────────────────────────────────────────
   12. RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    background: rgba(21,29,74,.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    padding: 2rem;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.5rem;
    padding: .75rem 1.5rem;
  }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nav { gap: 1rem; }
}


/* ─────────────────────────────────────────────
   13. RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .team-grid  { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
}


/* ─────────────────────────────────────────────
   14. REDUCED MOTION ACCESSIBILITY
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}
