/* ================================================================
   SA MAP — Futuristic Design System
   Dark + Red + Glassmorphism + Glow
   ================================================================ */

/* ----------------------------------------------------------------
   0. IMPORTS
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* — Brand Reds — */
  --red-50:  #fff5f5;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #E30B2B;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;

  /* — Neutrals — */
  --gray-50:  #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --gray-950: #0f0f12;

  /* — Semantic — */
  --primary:       var(--red-600);
  --primary-light:  var(--red-400);
  --primary-dark:  var(--red-800);
  --bg:            #0a0a0f;
  --bg-card:       rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --bg-glass:      rgba(255,255,255,0.04);
  --bg-glass-border: rgba(255,255,255,0.08);
  --surface-1:     #111118;
  --surface-2:     #16161f;
  --surface-3:     #1c1c28;
  --text:          #f0f0f5;
  --text-secondary: #a1a1b5;
  --text-muted:    #6b6b80;
  --border:        rgba(255,255,255,0.06);
  --border-hover:  rgba(255,255,255,0.12);
  --glow-red:      rgba(227,11,43,0.35);
  --glow-red-soft: rgba(227,11,43,0.15);
  --glow-white:    rgba(255,255,255,0.06);

  /* — Typography — */
  --font-heading: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --fs-xs:   clamp(0.7rem,  0.65rem + 0.25vw, 0.8rem);
  --fs-sm:   clamp(0.8rem,  0.75rem + 0.3vw,  0.9rem);
  --fs-base: clamp(0.9rem,  0.85rem + 0.3vw,  1rem);
  --fs-md:   clamp(1rem,    0.9rem  + 0.4vw,  1.15rem);
  --fs-lg:   clamp(1.15rem, 1rem    + 0.5vw,  1.35rem);
  --fs-xl:   clamp(1.35rem, 1.1rem  + 0.8vw,  1.75rem);
  --fs-2xl:  clamp(1.75rem, 1.3rem  + 1.5vw,  2.5rem);
  --fs-3xl:  clamp(2.25rem, 1.5rem  + 2.5vw,  3.5rem);
  --fs-4xl:  clamp(2.75rem, 1.8rem  + 3.5vw,  5rem);
  --fs-hero: clamp(3rem,    2rem    + 4.5vw,   6.5rem);

  /* — Spacing — */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* — Radii — */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* — Transitions — */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.2s;
  --dur-base:    0.35s;
  --dur-slow:    0.6s;
  --dur-slower:  1s;

  /* — Shadows — */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:   0 16px 48px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 30px var(--glow-red);

  /* — Z-layers — */
  --z-base:      1;
  --z-nav:       100;
  --z-mobile:    150;
  --z-overlay:   200;
  --z-preloader: 9999;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--primary) var(--surface-1);
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--surface-1);
}
html::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }

input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* ----------------------------------------------------------------
   3. NOISE OVERLAY
   ---------------------------------------------------------------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.035;
}

.noise::before {
  content: '';
  position: absolute;
  inset: -200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: noise-drift 0.5s steps(6) infinite;
}

@keyframes noise-drift {
  to { transform: translate3d(-10px, -10px, 0); }
}

/* ----------------------------------------------------------------
   4. PRELOADER
   ---------------------------------------------------------------- */
/* — Preloader — */
.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Logo wrapper — all children overlap via grid */
.pl-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}
.pl-logo-wrap > * {
  grid-area: 1 / 1;
}

/* SVG orbit rings */
.pl-ring {
  width: 100%;
  height: 100%;
  animation: pl-spin 1.8s linear infinite;
}
.pl-ring circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-dasharray: 90 250;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(227,11,43,0.8));
}
.pl-ring--2 {
  width: 78%;
  height: 78%;
  animation-duration: 2.2s;
  animation-direction: reverse;
}
.pl-ring--2 circle {
  stroke: rgba(227,11,43,0.5);
  stroke-width: 2;
  stroke-dasharray: 50 290;
  filter: drop-shadow(0 0 6px rgba(227,11,43,0.4));
}
/* Subtle track circle behind rings */
.pl-logo-wrap::before {
  content: '';
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Glow pulse */
.pl-glow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,11,43,0.4) 0%, rgba(227,11,43,0.1) 40%, transparent 70%);
  animation: pl-pulse 2s ease-in-out infinite;
}

/* Logo clip circle */
.pl-logo-clip {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(227,11,43,0.4), 0 0 60px rgba(227,11,43,0.15);
}
.pl-logo-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Counter */
.pl-counter {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #fff 40%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pl-pct-sign {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Track & fill bar */
.pl-track {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.pl-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #ff4d6a);
  box-shadow: 0 0 12px rgba(227,11,43,0.6), 0 0 4px rgba(227,11,43,0.3);
  transition: width 0.12s linear;
}

/* Label */
.pl-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,240,245,0.2);
}

@keyframes pl-spin {
  to { transform: rotate(360deg); }
}
@keyframes pl-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.6); opacity: 0.1; }
}

/* ----------------------------------------------------------------
   5. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section {
  padding: var(--sp-5xl) 0;
  position: relative;
}

.sec-head {
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.sec-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

/* Section label with animated bar */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--sp-md);
}

.label-bar {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.label-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: shine 2.5s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

/* Shine sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transition: left var(--dur-slow) var(--ease-out);
}
.btn:hover::after {
  left: 125%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--red-500);
  box-shadow: 0 0 28px var(--glow-red), 0 0 60px var(--glow-red-soft);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--bg);
  border: 1px solid #fff;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.12);
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-w:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1em 2.25em;
  font-size: var(--fs-base);
}

.btn-sm {
  padding: 0.5em 1.25em;
  font-size: var(--fs-xs);
}

.btn-full {
  width: 100%;
}

/* Glow button */
.btn-glow {
  position: relative;
  z-index: 1;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--glow-red-soft); }
  50%      { box-shadow: 0 0 40px var(--glow-red), 0 0 80px var(--glow-red-soft); }
}

/* ----------------------------------------------------------------
   7. GLASS CARD
   ---------------------------------------------------------------- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--dur-base) var(--ease-out);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

/* ----------------------------------------------------------------
   8. GRADIENT TEXT
   ---------------------------------------------------------------- */
.grad {
  background: linear-gradient(
    135deg,
    #ff1744 0%,
    #ff5252 15%,
    #ff8a80 30%,
    #ffffff 50%,
    #ff8a80 70%,
    #ff5252 85%,
    #ff1744 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
  filter: drop-shadow(0 0 30px rgba(227,11,43,0.4));
}

/* Stronger gradient for hero specifically */
.hero-title .grad {
  background: linear-gradient(
    135deg,
    #E30B2B 0%,
    #ff4466 20%,
    #ff8899 40%,
    #ffccdd 50%,
    #ff8899 60%,
    #ff4466 80%,
    #E30B2B 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(227,11,43,0.5)) drop-shadow(0 0 80px rgba(227,11,43,0.2));
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ----------------------------------------------------------------
   9. TEXT STROKE
   ---------------------------------------------------------------- */
.stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.stroke::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-fill-color: var(--primary);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease-out);
  filter: drop-shadow(0 0 30px rgba(227,11,43,0.6));
}

.stroke:hover::after,
.hero-title:hover .stroke::after {
  clip-path: inset(0 0 0 0);
}

/* Stroke glow animation */
.hero-title .stroke {
  animation: stroke-glow 3s ease-in-out infinite alternate;
}

@keyframes stroke-glow {
  0%   { filter: drop-shadow(0 0 10px rgba(255,255,255,0.05)); -webkit-text-stroke-color: rgba(255,255,255,0.7); }
  100% { filter: drop-shadow(0 0 25px rgba(255,255,255,0.15)); -webkit-text-stroke-color: rgba(255,255,255,1); }
}

/* ----------------------------------------------------------------
   10. SCROLL-TRIGGERED REVEAL
   ---------------------------------------------------------------- */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.anim[data-delay="1"] { transition-delay: 0.1s; }
.anim[data-delay="2"] { transition-delay: 0.2s; }
.anim[data-delay="3"] { transition-delay: 0.3s; }
.anim[data-delay="4"] { transition-delay: 0.4s; }
.anim[data-delay="5"] { transition-delay: 0.5s; }
.anim[data-delay="6"] { transition-delay: 0.6s; }

/* ----------------------------------------------------------------
   11. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: var(--sp-lg) 0;
  transition: all var(--dur-base) var(--ease-out);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  padding: var(--sp-sm) 0;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo svg,
.nav-logo img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-mobile) + 10);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile);
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-base) var(--ease-out);
}

.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.35s; }

.mobile-link:hover {
  color: var(--primary);
}

/* ----------------------------------------------------------------
   12. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-5xl) 0 var(--sp-4xl);
}

/* Canvas background */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Animated grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 70%);
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Hero Bracelet 3D */
.hero-bracelet-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 45vw, 650px);
  height: clamp(400px, 45vw, 650px);
  z-index: 0;
  pointer-events: none;
  perspective: 1200px;
}

.hero-bracelet {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.18;
  filter: drop-shadow(0 0 40px rgba(227, 11, 43, 0.25)) drop-shadow(0 0 80px rgba(227, 11, 43, 0.1));
  animation: bracelet-3d 16s ease-in-out infinite;
}

@keyframes bracelet-3d {
  0% {
    transform: rotateY(0deg) rotateX(8deg) translateY(0);
    opacity: 0.18;
  }
  25% {
    transform: rotateY(90deg) rotateX(12deg) translateY(-15px);
    opacity: 0.12;
  }
  50% {
    transform: rotateY(180deg) rotateX(5deg) translateY(-25px);
    opacity: 0.18;
  }
  75% {
    transform: rotateY(270deg) rotateX(10deg) translateY(-10px);
    opacity: 0.12;
  }
  100% {
    transform: rotateY(360deg) rotateX(8deg) translateY(0);
    opacity: 0.18;
  }
}

/* Floating gradient orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.hero-glow:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,11,43,0.45) 0%, rgba(227,11,43,0.1) 40%, transparent 70%);
  top: 5%;
  left: -8%;
  animation-delay: 0s;
}

.hero-glow:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227,11,43,0.3) 0%, rgba(180,20,60,0.1) 40%, transparent 70%);
  bottom: 5%;
  right: -10%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.hero-glow:nth-child(3) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100,50,200,0.12) 0%, transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: -7s;
  animation-duration: 18s;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.5em 1.4em;
  background: rgba(227,11,43,0.08);
  border: 1px solid rgba(227,11,43,0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: var(--sp-xl);
  animation: badge-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(227,11,43,0.1), inset 0 0 20px rgba(227,11,43,0.05);
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(227,11,43,0.1), inset 0 0 20px rgba(227,11,43,0.05); border-color: rgba(227,11,43,0.2); }
  50%      { box-shadow: 0 0 35px rgba(227,11,43,0.2), inset 0 0 30px rgba(227,11,43,0.08); border-color: rgba(227,11,43,0.35); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-xl);
  text-shadow: 0 0 80px rgba(227,11,43,0.15);
}

.hero-title .line {
  display: block;
}

/* Stronger glow on hero title words */
.hero-title span:not(.grad):not(.stroke) {
  text-shadow: 0 0 40px rgba(255,255,255,0.08), 0 2px 4px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3xl);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3xl);
  flex-wrap: wrap;
}

.h-stat {
  text-align: center;
}

.h-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.h-stat span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll cue mouse */
.scroll-cue {
  position: absolute;
  bottom: var(--sp-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  animation: float 3s ease-in-out infinite;
}

.scroll-cue .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-cue .mouse .wheel {
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  border-radius: var(--radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ----------------------------------------------------------------
   13. MARQUEE TICKER
   ---------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.marquee-inner {
  display: flex;
  gap: var(--sp-3xl);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-inner span {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.3;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.marquee-inner span:hover {
  opacity: 0.7;
  color: var(--primary);
}

.marquee-inner .sep {
  color: var(--primary);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   14. ABOUT SECTION
   ---------------------------------------------------------------- */
.about {
  position: relative;
}

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

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

/* About mascot */
.about-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.mascot-img {
  position: relative;
  z-index: 2;
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  animation: mascot-float 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(227,11,43,0.2));
}

.mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,11,43,0.2) 0%, rgba(227,11,43,0.05) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: mascot-glow-pulse 4s ease-in-out infinite alternate;
}

.mascot-shadow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  z-index: 1;
  animation: mascot-shadow 5s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

@keyframes mascot-glow-pulse {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes mascot-shadow {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
  50%      { transform: translateX(-50%) scaleX(0.8); opacity: 0.3; }
}

.about-card-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--glow-red);
  filter: blur(80px);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  z-index: 3;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) var(--sp-lg);
  animation: float-card 5s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.float-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.float-card div {
  display: flex;
  flex-direction: column;
}

.float-card b {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.float-card span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.float-card:nth-child(2) {
  top: 10%;
  right: -10%;
  animation-delay: -1s;
}

.float-card:nth-child(3) {
  bottom: 15%;
  left: -5%;
  animation-delay: -3s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.about-content {
  max-width: 540px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: var(--sp-xl);
  line-height: 1.8;
}

/* Features list */
.features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}

.feat {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out);
}

.feat:hover {
  background: var(--bg-card);
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(227,11,43,0.08);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all var(--dur-base) var(--ease-out);
}

.feat:hover .feat-icon {
  background: rgba(227,11,43,0.15);
  box-shadow: 0 0 20px var(--glow-red-soft);
}

/* ----------------------------------------------------------------
   14b. FOCUS / VISION SECTION
   ---------------------------------------------------------------- */
.focus {
  position: relative;
  background: linear-gradient(180deg, #06060a 0%, #0a0a12 40%, #0d0610 100%);
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.focus-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(227, 11, 43, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 100%, rgba(227, 11, 43, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(160, 30, 80, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.focus-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.focus-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.focus-badge {
  margin-bottom: var(--sp-2xl);
}

.focus-badge span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(227, 11, 43, 0.1);
  border: 1px solid rgba(227, 11, 43, 0.2);
  border-radius: 100px;
  padding: 8px 24px;
}

/* Hero Text */
.focus-hero-text {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--sp-4xl);
}

/* Cards */
.focus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  max-width: 700px;
  margin: 0 auto var(--sp-4xl);
}

.focus-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl) var(--sp-2xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.focus-card:hover {
  border-color: rgba(227, 11, 43, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(227, 11, 43, 0.08);
}

.focus-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(227, 11, 43, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.focus-card:hover .focus-card-glow {
  opacity: 1;
}

.focus-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(227, 11, 43, 0.25);
}

.focus-card-body {
  text-align: left;
}

.focus-card-body h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.focus-card-body p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Contrast */
.focus-contrast {
  margin: var(--sp-4xl) 0;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.focus-contrast-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.focus-contrast p {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: 1.8;
  flex-shrink: 0;
}

.focus-strike {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(227, 11, 43, 0.5);
  text-decoration-thickness: 2px;
}

/* Title */
.focus-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--sp-3xl);
}

/* Pillars */
.focus-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin: var(--sp-3xl) 0;
}

.focus-pillar {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) var(--sp-xl) var(--sp-2xl);
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.pillar-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227, 11, 43, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.focus-pillar:hover .pillar-glow {
  opacity: 1;
}

.focus-pillar:hover {
  border-color: rgba(227, 11, 43, 0.25);
  transform: translateY(-8px);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.3),
    0 0 40px rgba(227, 11, 43, 0.06);
}

.pillar-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto var(--sp-xl);
  box-shadow: 0 12px 32px rgba(227, 11, 43, 0.3);
  position: relative;
  z-index: 1;
}

.focus-pillar h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.focus-pillar p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Closing */
.focus-closing {
  margin-top: var(--sp-4xl);
}

.focus-closing-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.focus-closing-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(227, 11, 43, 0.06), transparent 70%);
  pointer-events: none;
}

.focus-closing p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1rem + 1.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.focus-closing strong {
  color: var(--text-primary);
  font-weight: 800;
}

.focus-closing-highlight {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4em;
  font-weight: 800;
  color: var(--accent) !important;
  letter-spacing: -0.02em;
  margin-top: 8px;
  text-shadow: 0 0 30px rgba(227, 11, 43, 0.4);
}

@media (max-width: 768px) {
  .focus-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .focus-contrast {
    flex-direction: column;
    gap: var(--sp-md);
  }

  .focus-contrast-line {
    width: 60px;
    height: 1px;
  }

  .focus-pillars {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------------------------------------------------------------
   15. PROGRAMS SECTION
   ---------------------------------------------------------------- */
.programs {
  position: relative;
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.prog-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}

.prog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(227,11,43,0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.prog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px var(--glow-red-soft);
}

.prog-card:hover::before {
  opacity: 1;
}

.prog-num {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color var(--dur-base) var(--ease-out);
}

.prog-card:hover .prog-num {
  color: rgba(227,11,43,0.08);
}

.prog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(227,11,43,0.08);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: var(--sp-lg);
  transition: all var(--dur-base) var(--ease-out);
}

.prog-card:hover .prog-icon {
  background: rgba(227,11,43,0.15);
  box-shadow: 0 0 24px var(--glow-red-soft);
  transform: scale(1.05);
}

.prog-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}

.prog-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.prog-badge {
  display: inline-block;
  padding: 0.3em 0.8em;
  background: rgba(227,11,43,0.1);
  color: var(--primary-light);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-md);
}

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.prog-tags span {
  padding: 0.25em 0.65em;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease-out);
}

.prog-tags span:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--primary-light);
  transition: all var(--dur-fast) var(--ease-out);
}

.prog-link:hover {
  gap: var(--sp-md);
  color: var(--primary);
}

/* ----------------------------------------------------------------
   16. IMPACT SECTION
   ---------------------------------------------------------------- */
.impact {
  position: relative;
  background: var(--surface-1);
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, var(--glow-red-soft), transparent),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(100,50,200,0.06), transparent);
  pointer-events: none;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  max-width: 100%;
  margin: 0 auto;
}

.imp-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--dur-base) var(--ease-out);
}

.imp-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.imp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(227,11,43,0.1);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: var(--sp-lg);
}

.imp-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}

.imp-card p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

/* Animated progress bar */
.imp-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  margin-top: var(--sp-lg);
  overflow: hidden;
  position: relative;
}

.imp-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--bar-width, 75%);
  background: linear-gradient(90deg, var(--primary), var(--red-400));
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}

.imp-card.visible .imp-bar::after,
.imp-bar.visible::after {
  transform: scaleX(1);
}

/* ----------------------------------------------------------------
   17. TIMELINE
   ---------------------------------------------------------------- */
.timeline {
  position: relative;
}

.tl-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.tl-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--red-400));
  border-radius: var(--radius-full);
  transition: height 0.3s linear;
}

.tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--sp-3xl);
  width: 50%;
}

/* Alternating layout */
.tl-item:nth-child(odd) {
  padding-right: var(--sp-3xl);
  text-align: right;
  align-self: flex-start;
}

.tl-item:nth-child(even) {
  padding-left: var(--sp-3xl);
  margin-left: 50%;
}

.tl-dot {
  position: absolute;
  top: var(--sp-sm);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--primary);
  z-index: 2;
  transition: all var(--dur-base) var(--ease-out);
}

.tl-item:nth-child(odd) .tl-dot {
  right: calc(-8px);
}

.tl-item:nth-child(even) .tl-dot {
  left: calc(-8px);
}

.tl-item:hover .tl-dot {
  background: var(--primary);
  box-shadow: 0 0 20px var(--glow-red);
  transform: scale(1.3);
}

.tl-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  transition: all var(--dur-base) var(--ease-out);
}

.tl-body:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.tl-body h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}

.tl-body p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.tl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(227,11,43,0.08);
  color: var(--primary);
  margin-bottom: var(--sp-md);
}

/* ----------------------------------------------------------------
   18. TEAM SECTION
   ---------------------------------------------------------------- */
.team {
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-xl);
}

.team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
  gap: var(--sp-2xl);
}

.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) var(--sp-2xl);
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227, 11, 43, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 11, 43, 0.25);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.3),
    0 0 40px rgba(227, 11, 43, 0.06);
}

.team-av {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--sp-lg);
}

.team-av-photo {
  width: 130px;
  height: 130px;
  margin-bottom: var(--sp-xl);
}

.team-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.team-av-photo .av-ring {
  inset: -5px;
  border-width: 2px;
}

.av-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  animation: spin 4s linear infinite;
}

.team-card:hover .av-ring {
  border-bottom-color: var(--red-400);
  animation-duration: 2s;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-xs);
}

.team-card p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}

.team-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}

.team-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease-out);
}

.team-links a:hover {
  background: rgba(227,11,43,0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   19. REVIEWS / TESTIMONIALS
   ---------------------------------------------------------------- */
.reviews {
  position: relative;
  overflow: hidden;
}

.rev-slider {
  position: relative;
  overflow: hidden;
}

.rev-track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease-out);
}

.rev-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl) 10%;
  text-align: center;
  transition: all var(--dur-base) var(--ease-out);
}

.rev-card:hover {
  border-color: var(--border-hover);
}

.rev-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #facc15;
  font-size: 1.1rem;
  margin-bottom: var(--sp-lg);
}

.rev-card blockquote,
.rev-card p {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}

.rev-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}

.rev-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev-author > div {
  text-align: left;
}

.rev-author strong,
.rev-author b {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.rev-author span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  display: block;
}

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}

.rev-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.rev-btn:hover {
  background: rgba(227,11,43,0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.rev-dots {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.rev-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.rev-dots span.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--primary);
  opacity: 1;
}

/* ----------------------------------------------------------------
   20. CTA SECTION
   ---------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-900), #1a0a20, var(--surface-1));
  z-index: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

.cta-orb:nth-child(1) {
  width: 350px;
  height: 350px;
  background: var(--glow-red);
  top: -15%;
  right: -5%;
  animation-delay: 0s;
}

.cta-orb:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(100,50,200,0.15);
  bottom: -10%;
  left: -5%;
  animation-delay: -5s;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--sp-lg);
}

.cta-inner p {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2xl);
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   20b. VOLUNTEER SECTION
   ---------------------------------------------------------------- */
.volunteer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0610 100%);
  overflow: hidden;
}

.vol-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(227, 11, 43, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.vol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.vol-info p {
  color: var(--text-secondary);
  margin-bottom: var(--sp-2xl);
  line-height: 1.7;
}

.vol-perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.vol-perk {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.vol-perk i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.vol-email-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-md);
  background: rgba(227, 11, 43, 0.08);
  border: 1px solid rgba(227, 11, 43, 0.15);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: var(--fs-sm);
  color: var(--text-primary);
}

.vol-email-badge i {
  color: var(--accent);
}

.vol-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vol-form-header {
  margin-bottom: var(--sp-xl);
  text-align: center;
}

.vol-form-header h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.vol-form-header p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.vol-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.vol-form-footer i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Success modal */
.form-success {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-success.active {
  opacity: 1;
  pointer-events: auto;
}

.form-success-inner {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-3xl);
  text-align: center;
  max-width: 440px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-out);
}

.form-success.active .form-success-inner {
  transform: scale(1);
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto var(--sp-xl);
}

.form-success-inner h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-sm);
}

.form-success-inner p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
}

.form-success-inner .btn {
  min-width: 160px;
}

/* ----------------------------------------------------------------
   21. CONNECT (unified Volunteer + Contact)
   ---------------------------------------------------------------- */
.connect {
  position: relative;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-4xl);
  align-items: start;
}

.connect-info {
  padding-top: var(--sp-lg);
}

.connect-perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.connect-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Tabs */
.connect-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--sp-xl);
}

.connect-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: 0.7em 1.2em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  border: none;
  background: transparent;
}

.connect-tab:hover {
  color: var(--text);
}

.connect-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(227,11,43,0.3);
}

.connect-tab i {
  font-size: 0.85em;
}

/* Panels */
.connect-panel {
  display: none;
}

.connect-panel.active {
  display: block;
  animation: fadeUp 0.3s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.c-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  margin: var(--sp-2xl) 0;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease-out);
}

.c-item:hover {
  background: var(--bg-card);
}

.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(227,11,43,0.08);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.c-item > div {
  display: flex;
  flex-direction: column;
}

.c-item h4,
.c-item b {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.c-item p,
.c-item span,
.c-item a {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  display: block;
}

.c-item a:hover {
  color: var(--primary);
}

.c-socials {
  display: flex;
  gap: var(--sp-md);
}

.c-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--dur-fast) var(--ease-out);
}

.c-socials a:hover {
  background: rgba(227,11,43,0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Form wrapper */
.contact-form-wrap {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.f-group label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  padding: 0.85em 1.1em;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: var(--fs-sm);
  transition: all var(--dur-base) var(--ease-out);
}

.f-group input::placeholder,
.f-group textarea::placeholder {
  color: var(--text-muted);
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-red-soft), 0 0 20px rgba(227,11,43,0.1);
  background: rgba(255,255,255,0.05);
}

.f-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ----------------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-xl);
}

.footer-brand {
  max-width: 320px;
}

.f-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--sp-md);
}

.f-logo img {
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.f-socials {
  display: flex;
  gap: var(--sp-sm);
}

.f-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease-out);
}

.f-socials a:hover {
  background: rgba(227,11,43,0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.f-links h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-lg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.f-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.f-links a {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease-out);
}

.f-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
  padding-top: var(--sp-lg);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ----------------------------------------------------------------
   23. BACK TO TOP
   ---------------------------------------------------------------- */
.btt {
  position: fixed;
  bottom: var(--sp-xl);
  right: var(--sp-xl);
  z-index: var(--z-nav);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px var(--glow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}

.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--glow-red);
}

/* ----------------------------------------------------------------
   24. PULSE DOT
   ---------------------------------------------------------------- */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse 2s ease-out infinite;
}

/* ----------------------------------------------------------------
   25. KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

@keyframes shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--glow-red-soft); }
  50%      { box-shadow: 0 0 40px var(--glow-red); }
}

/* ----------------------------------------------------------------
   MISSING UTILITY STYLES
   ---------------------------------------------------------------- */

/* Impact card reveal */
.imp-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.imp-card.in {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient text — light variant */
.grad-light {
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--red-300) 40%,
    #fff 60%,
    var(--red-400) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

/* Light variants for impact section */
.sec-head.light .sec-title,
.sec-title.light {
  color: var(--text);
}

.sec-head.light p,
.sec-head p {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  max-width: 560px;
  margin: var(--sp-md) auto 0;
  line-height: 1.7;
}

.label.light {
  color: var(--primary-light);
}

.label-bar.light {
  background: var(--primary-light);
}

/* Team avatar initials */
.team-av span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(227,11,43,0.12);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
}

/* Review avatar initials */
.rev-av {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227,11,43,0.12);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
}

/* Team card em (role) */
.team-card em {
  display: block;
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--primary-light);
  margin-bottom: var(--sp-sm);
}

/* Impact card span (label below number) */
.imp-card > span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-top: var(--sp-xs);
}

.imp-card > small {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-muted);
}

/* Timeline dot text */
.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: transparent;
  min-width: 16px;
  min-height: 16px;
}

.tl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--glow-red);
}

/* Timeline body h4 */
.tl-body h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}

/* Footer links as block items (no ul) */
.f-links {
  display: flex;
  flex-direction: column;
}

.f-links a {
  display: block;
  margin-bottom: var(--sp-xs);
}

/* Footer logo flex */
.f-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.f-logo img {
  border-radius: 50%;
  object-fit: cover;
}

/* Footer bottom links */
.footer-bottom div {
  display: flex;
  gap: var(--sp-lg);
}

/* Imp-bar width from CSS variable --w */
.imp-bar div {
  width: var(--w, 75%);
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--red-400));
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}

.imp-card.in .imp-bar div {
  transform: scaleX(1);
}

/* ----------------------------------------------------------------
   26. RESPONSIVE — TABLET (< 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.8rem, 2rem + 3vw, 4.5rem);
  }

  .hero-content {
    padding: 0 var(--sp-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3xl);
  }

  .about-visual {
    min-height: 350px;
    order: -1;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .tl-line {
    left: 20px;
  }

  .tl-item,
  .tl-item:nth-child(odd),
  .tl-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: calc(20px + var(--sp-2xl));
    padding-right: 0;
    text-align: left;
  }

  .tl-dot,
  .tl-item:nth-child(odd) .tl-dot,
  .tl-item:nth-child(even) .tl-dot {
    left: 12px;
    right: auto;
  }

  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-md);
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ----------------------------------------------------------------
   27. RESPONSIVE — MOBILE (< 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .navbar .nav-links {
    display: none;
  }

  .navbar {
    padding: var(--sp-md) 0;
  }

  /* Sections */
  .section {
    padding: var(--sp-3xl) 0;
  }

  .sec-head {
    margin-bottom: var(--sp-2xl);
  }

  .sec-title {
    font-size: var(--fs-2xl);
  }

  /* Hero */
  .hero {
    padding: var(--sp-4xl) 0 var(--sp-2xl);
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
    margin-bottom: var(--sp-lg);
  }

  .hero-sub {
    font-size: var(--fs-base);
    padding: 0 var(--sp-sm);
    margin-bottom: var(--sp-xl);
  }

  .hero-bracelet-wrap {
    width: 280px;
    height: 280px;
    opacity: 0.6;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto var(--sp-2xl);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
    max-width: 320px;
    margin: 0 auto;
  }

  .h-stat {
    padding: var(--sp-md);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* About */
  .about-visual {
    min-height: 280px;
  }

  /* Programs */
  .prog-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .prog-card {
    padding: var(--sp-xl);
  }

  /* Impact */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
    margin: 0 auto;
  }

  /* Review slider */
  .rev-card {
    padding: var(--sp-xl) var(--sp-lg);
  }

  .rev-card p {
    font-size: var(--fs-base);
  }

  /* CTA */
  .cta-inner {
    padding: var(--sp-2xl) var(--sp-lg);
  }

  .cta-inner h2 {
    font-size: var(--fs-xl);
  }

  .cta-inner p {
    font-size: var(--fs-sm);
  }

  /* Team */
  .team-grid,
  .team-grid-2 {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Forms */
  .f-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-md);
  }

  /* Focus section */
  .focus-hero-text {
    font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
  }

  .focus-title {
    font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  }

  .focus-closing-box p {
    font-size: var(--fs-base);
  }

  /* Marquee */
  .marquee-inner span {
    font-size: var(--fs-base);
  }

  .scroll-cue {
    display: none;
  }
}

/* ----------------------------------------------------------------
   28. RESPONSIVE — SMALL MOBILE (< 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-md);
  }

  .hero-title {
    font-size: clamp(1.7rem, 1rem + 3.5vw, 2.5rem);
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.4em 1em;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
    gap: var(--sp-md);
  }

  .h-stat strong {
    font-size: var(--fs-xl);
  }

  .impact-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .rev-card {
    padding: var(--sp-lg) var(--sp-md);
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: none;
  }

  .focus-pillars {
    gap: var(--sp-lg);
  }

  .focus-pillar {
    padding: var(--sp-lg);
  }

  .mobile-link {
    font-size: var(--fs-xl);
  }

  .vol-form-wrap {
    padding: var(--sp-lg);
  }
}

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

  .anim {
    opacity: 1;
    transform: none;
  }

  .hero-glow,
  .cta-orb {
    animation: none;
  }

  .noise::before {
    animation: none;
  }

  .marquee-inner {
    animation: none;
  }
}

/* ----------------------------------------------------------------
   30. PRINT STYLES
   ---------------------------------------------------------------- */
@media print {
  .navbar,
  .preloader,
  .noise,
  .btt,
  .hero-glow,
  .hero-grid-bg,
  .cta-orb,
  .scroll-cue {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ----------------------------------------------------------------
   31. SKIP LINK — ACCESSIBILITY
   ---------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ----------------------------------------------------------------
   32. FOCUS-VISIBLE — KEYBOARD ACCESSIBILITY
   ---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(227, 11, 43, 0.25);
}

.nav-link:focus-visible,
.mobile-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.prog-card:focus-visible,
.imp-card:focus-visible,
.team-card:focus-visible,
.focus-card:focus-visible,
.focus-pillar:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.rev-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 11, 43, 0.2);
}

/* ----------------------------------------------------------------
   33. COLOR CONTRAST FIXES
   ---------------------------------------------------------------- */
.text-muted,
.hero-sub,
.prog-card p,
.team-card p,
.team-card em,
.c-item span,
.footer-brand p,
.f-links a,
.footer-bottom p {
  color: var(--text-secondary);
}

/* Ensure muted text meets WCAG AA (4.5:1 on dark bg) */
.vol-form-footer span {
  color: var(--text-secondary);
}
