@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,700;12..96,800&family=Noto+Sans+Tamil:wght@700;800&family=Work+Sans:wght@600;700;800&display=swap');

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ==========================================================================
   MODERN LIGHT GRADIENT PALETTE & GLOBAL VARIABLES
   ========================================================================== */
:root {
  --bg: #ffffff;
  --bg-dark: #0f172a;
  --bg-soft: #f8fafc;
  --purple: #7c3aed;
  --pink: #db2777;
  --cyan: #0284c7;
  --blue: #2563eb;
  --amber: #d97706;
  --dark: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: rgba(226, 232, 240, 0.9);
  --line-active: rgba(124, 58, 237, 0.3);
  --glow-purple: rgba(124, 58, 237, 0.12);
  --glow-pink: rgba(219, 39, 119, 0.10);
  --glow-cyan: rgba(2, 132, 199, 0.10);
  --card-bg: #ffffff;
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-tamil: 'Noto Sans Tamil', sans-serif;
  --font-work: 'Work Sans', sans-serif;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

::selection { background: rgba(124, 58, 237, 0.18); color: var(--dark); }

/* ==========================================================================
   NAVIGATION BAR & GRADIENT HOVER EFFECTS
   ========================================================================== */
.custom-nav, .navbar {
  padding: 16px 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-nav.scrolled, .navbar.scrolled {
  padding: 8px 0 !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.navbar-brand, .nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-brand strong, .nav-logo strong {
  font-family: var(--font-work) !important;
  font-weight: 800;
}

.nav-links {
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  padding: 6px;
  gap: 2px;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-work);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate) !important;
  padding: 7px 14px;
  border-radius: 999px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--purple) !important;
  background: rgba(124, 58, 237, 0.06);
}

.nav-link.active,
.nav-link--active {
  background: #ffffff;
  color: var(--purple) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-link--dot {
  background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
}

.nav-link--dot:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.3);
  background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
  color: #ffffff !important;
}

.dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Mobile Menu & Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hamburger:hover { border-color: var(--purple); }

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-link {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-link:nth-child(8) { transition-delay: 0.40s; }

.mobile-link:hover {
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu-cta { opacity: 0; transition: opacity 0.4s ease 0.5s; }
.mobile-menu.open .mobile-menu-cta { opacity: 1; }

.btn-login {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  transition: all 0.3s ease;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.35);
  color: #fff;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 125%; }

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--outline:hover {
  background: rgba(124, 58, 237, 0.06);
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.15);
}

.btn--soft {
  background: rgba(124, 58, 237, 0.06);
  color: var(--purple);
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn--soft:hover {
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
  color: var(--purple);
}

/* ==========================================================================
   HERO & INTRO SECTIONS
   ========================================================================== */
.hero-intro {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
  word-break: break-word;
  overflow-wrap: break-word;
}

.h-line { display: block; }

.h-avatarline { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; }
.h-la { margin-right: 8px; }
.h-rgest { margin-left: 8px; }

.h-tamil {
  display: block;
  font-family: var(--font-tamil);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4.2rem);
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite;
  word-break: break-word;
  overflow-wrap: break-word;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 85%);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 85%);
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}

.g1 { width: 500px; height: 500px; top: -100px; left: -100px; background: var(--glow-purple); }
.g2 { width: 500px; height: 500px; bottom: -100px; right: -100px; background: var(--glow-pink); animation-delay: -4s; }

.eyebrow, .section-head > span {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--slate);
  max-width: 680px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-cue > span:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* Avatar Strip */
.avatars-row { display: inline-flex; align-items: center; margin: 0 4px; }

.avatar-wrap {
  width: clamp(50px, 6vw, 68px);
  height: clamp(50px, 6vw, 68px);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-left: -35px;
  transform: scale(0.3);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.avatar-wrap:first-child { margin-left: 0; }

.avatars-row.expanded .avatar-wrap {
  opacity: 1;
  transform: scale(1);
  margin-left: -12px;
}

.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */
.section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-head { max-width: 760px; }
.section-head.center { text-align: center; margin: 0 auto; }

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 14px 0;
  color: var(--dark);
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.15;
}

.dark .section-head h2 { color: #fff; }

.section-head p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 12px;
}

.dark .section-head p { color: #cbd5e1; }

.section-head em, .contact em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dark section glows & grid */
.section-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.sg1 { top: 10%; left: 15%; background: rgba(124, 58, 237, 0.18); }
.sg2 { bottom: 10%; right: 15%; background: rgba(2, 132, 199, 0.12); }
.sg3 { top: 50%; right: 5%; background: rgba(219, 39, 119, 0.12); }

.section-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.dark .container { position: relative; z-index: 1; }

/* Cards */
.info-card, .benefit-card, .rule, .objective, .process-item {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  min-width: 0;
  word-wrap: break-word;
}

.info-card:hover, .benefit-card:hover, .rule:hover, .objective:hover, .process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.4);
}

.info-card > i, .benefit-card > i, .rule > i, .objective > i {
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 18px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.1));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-card:hover > i, .benefit-card:hover > i, .objective:hover > i {
  transform: scale(1.1) rotate(4deg);
  color: var(--pink);
}

.info-card h4, .benefit-card h4, .process-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.info-card p, .benefit-card p, .rule p, .objective p {
  color: var(--slate);
  line-height: 1.65;
  font-size: 0.9rem;
  margin: 0;
}

/* Summary Box */
.summary-box {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(219, 39, 119, 0.04), rgba(2, 132, 199, 0.04));
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.summary-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
}

.summary-box span {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 8px;
}

.summary-box p { color: var(--slate); line-height: 1.65; font-size: 0.92rem; margin: 0; }

/* Mission Cards */
.mission-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 58, 237, 0.4);
}

.mission-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.mission-card p { color: #cbd5e1; line-height: 1.65; font-size: 0.92rem; margin: 0; }

.num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 16px;
}
.num-alt { color: var(--cyan); }

.sub-title {
  margin: 56px 0 24px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.sub-title.center { text-align: center; }
.dark .sub-title { color: #fff; }

.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.dark .objective {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.dark .objective:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.dark .objective > i {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(219, 39, 119, 0.2));
  color: var(--pink);
}
.dark .objective p { color: #cbd5e1; }

/* Launch Cards */
.launch-card {
  height: 100%;
  padding: 32px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(219, 39, 119, 0.03));
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.1);
}

.launch-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
}

.launch-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.launch-card p { color: var(--slate); line-height: 1.65; font-size: 0.9rem; margin: 0; }

/* Member Tags */
.member-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.member-tags span {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: default;
}

.member-tags span:hover {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.05);
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(124, 58, 237, 0.1);
}

/* ==========================================================================
   PROCESS GRID
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.process-item b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: var(--font-head);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease;
}
.process-item:hover b { transform: scale(1.1); }

.dark .process-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .process-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.dark .process-item h4 { color: #fff; }
.dark .process-item p { color: #cbd5e1; }

/* ==========================================================================
   PRICING PLANS
   ========================================================================== */
.plans-row { align-items: stretch; }

.plan {
  height: 100%;
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.plan.featured {
  border: 2px solid var(--purple) !important;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, rgba(219, 39, 119, 0.02) 100%);
  animation: featuredGlow 3s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
  0% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.15); }
  100% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.35); }
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.plan-top i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  font-size: 16px;
}

.plan.featured .plan-top i {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}

.plan h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin: 16px 0 0;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}

.price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.plan p { font-size: 0.85rem; color: var(--slate); line-height: 1.55; margin-bottom: 16px; }

.plan ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  flex-grow: 1;
}

.plan li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan li::before {
  content: '✓';
  color: var(--purple);
  font-weight: bold;
  font-size: 0.8rem;
}
.plan.featured li::before { color: var(--pink); }

/* Note Box */
.note-box {
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.04), rgba(124, 58, 237, 0.04));
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.note-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.note-box p { color: var(--slate); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
  max-width: 850px;
  margin: auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--pink), var(--cyan));
  opacity: 0.4;
}

.timeline-row {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-num {
  z-index: 1;
  min-width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
}

.timeline-row > div:last-child { padding-top: 4px; }

.timeline-row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
}

.timeline-row h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 8px;
}

.timeline-row p { color: #cbd5e1; font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  filter: blur(120px);
  pointer-events: none;
}

.contact .container { position: relative; z-index: 1; }

.contact h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin: 16px 0;
  color: var(--dark);
  line-height: 1.1;
}

.contact p {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.contact-grid div {
  min-width: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.08);
}

.contact-grid i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.1));
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 14px;
}

.contact-grid span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-grid strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  word-break: break-all;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 64px 24px 28px;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.footer-logo .brand-gr,
.brand-desc .brand-gr,
.footer-bottom .brand-gr {
  font-family: var(--font-work) !important;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 14px;
}

.tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.footer-col h6 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-col a:hover {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 4px;
  color: #94a3b8;
}
.footer-col p strong { color: #fff; font-weight: 600; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   SCROLL TO TOP, PRELOADER & UTILITIES
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--dark);
  transition: opacity 0.5s ease;
}

.loader {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(124, 58, 237, 0.15);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#preloader small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

#top {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
}

#top.visible { opacity: 1; visibility: visible; }
#top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.35);
}

/* Brand gradient text */
.brand-gr,
.brand-highlight {
  font-family: var(--font-work) !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub .brand-highlight { color: var(--dark); font-weight: 700; }

/* Animations */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseGlow { 0% { opacity: 0.4; } 100% { opacity: 0.8; } }

/* Scroll Reveal Utilities */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.timeline-row.scroll-reveal:nth-child(odd) { transform: translateX(-40px); }
.timeline-row.scroll-reveal:nth-child(even) { transform: translateX(40px); }
.timeline-row.scroll-reveal.visible { transform: translateX(0); }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 991px) {
  .objective-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-intro { min-height: auto; padding: 100px 24px 60px; }
  .mission-card { padding: 32px; }
}

@media (max-width: 575px) {
  .section { padding: 56px 0; }

  .section-head h2 {
    font-size: 1.6rem !important;
    word-break: break-word !important;
  }

  .objective-grid, .process, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .info-card, .benefit-card, .rule, .objective, .process-item {
    padding: 22px !important;
    width: 100% !important;
  }

  .summary-box { flex-direction: column; padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 20px 24px; }
  .hero-stats { gap: 28px; }
  .hero-stats strong { font-size: 1.6rem; }

  .timeline-row.scroll-reveal:nth-child(odd),
  .timeline-row.scroll-reveal:nth-child(even) {
    transform: translateY(20px) !important;
  }

  .timeline::before { left: 20px !important; }
  .timeline-num { min-width: 48px; height: 48px; font-size: 1rem; }
  .timeline-row { gap: 16px; padding-bottom: 28px; }

  .hero-heading {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }

  .h-avatarline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }

  .avatars-row .avatar-wrap:nth-child(n+6) { display: none !important; }

  .avatar-wrap {
    width: 28px !important;
    height: 28px !important;
    border-width: 1.5px !important;
  }

  .avatars-row.expanded .avatar-wrap { margin-left: -6px !important; }

  .launch-card { flex-direction: column; padding: 24px; }
  .note-box { flex-direction: column; padding: 20px; }
  .plan { padding: 28px 22px; }
}

@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;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}