/* ================================================================
   OdishaAI.in — style.css
   Premium Coming Soon Landing Page
================================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Colors */
  --bg:           #030712;
  --bg-2:         #080f1e;
  --bg-3:         #0d1730;
  --surface:      rgba(13, 23, 48, 0.7);
  --surface-2:    rgba(20, 34, 68, 0.5);

  --accent:       #6366f1;
  --accent-2:     #a855f7;
  --accent-mid:   #8b5cf6;
  --accent-glow:  rgba(99, 102, 241, 0.35);
  --accent-glow2: rgba(168, 85, 247, 0.25);

  --text:         #f0f4ff;
  --text-2:       #bac4e0;
  --text-muted:   #64748b;

  --border:       rgba(99, 102, 241, 0.18);
  --border-2:     rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 130px;
  --container:  1200px;
  --gap:        2rem;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-io:    cubic-bezier(0.76, 0, 0.24, 1);
  --dur-fast:   0.25s;
  --dur-med:    0.45s;
  --dur-slow:   0.7s;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-full: 9999px;
}

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

html {
  scroll-behavior: auto; /* Lenis takes over */
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-2));
  border-radius: var(--r-full);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 3. UTILITY CLASSES ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 6px var(--accent); }
  50%       { box-shadow: 0 0 16px var(--accent), 0 0 30px var(--accent-2); }
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.section-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── 4. KEYFRAME ANIMATIONS ───────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-20px) translateX(8px); }
  66%       { transform: translateY(12px) translateX(-6px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(18px) translateX(-10px); }
  66%       { transform: translateY(-14px) translateX(6px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}

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

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

@keyframes scrollThumb {
  0%   { top: 6px; opacity: 1; }
  80%  { top: calc(100% - 14px); opacity: 1; }
  100% { top: calc(100% - 14px); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scanLine {
  0%   { top: -10%; opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.6; }
  100% { top: 110%; opacity: 0; }
}

@keyframes indPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50%       { opacity: 1; transform: scaleX(1.2); }
}

@keyframes orbitA {
  from { transform: rotate(0deg) translateX(90px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}
@keyframes orbitB {
  from { transform: rotate(120deg) translateX(90px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(90px) rotate(-480deg); }
}
@keyframes orbitC {
  from { transform: rotate(240deg) translateX(90px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(90px) rotate(-600deg); }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25%       { transform: scale(1.2); }
  50%       { transform: scale(1.1); }
}

/* ── 5. INTRO OVERLAY ─────────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: none; /* shown by JS */
  align-items: center;
  justify-content: center;
}

#intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#intro-ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

#intro-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}

#intro-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99,102,241,0.6);
}

#skip-intro-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}

#skip-intro-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.04);
}

#intro-sound-btn {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--dur-fast) ease;
}
#intro-sound-btn:hover { background: rgba(255,255,255,0.22); }

#intro-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 2;
}

#intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent);
}

#intro-fade {
  position: absolute;
  inset: 0;
  background: #030712;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

/* ── 6. GUESS WHAT SECTION ────────────────────────────────── */
#guess-what-section {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: none; /* shown by JS */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

#gw-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#gw-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
}

#gw-text-wrap {
  display: flex;
  gap: 0.6em;
  perspective: 1000px;
}

.gw-word {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 20%, var(--accent) 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: transform, opacity;
  display: inline-block;
}

#gw-image-wrap {
  width: 100%;
  max-width: 700px;
  will-change: transform, opacity;
}

#gw-image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(99,102,241,0.3),
    0 0 120px rgba(168,85,247,0.2),
    0 40px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(99,102,241,0.3);
}

#gw-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

#gw-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.15), transparent 70%);
  pointer-events: none;
}

#gw-image-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanLine 3s ease-in-out infinite;
  top: 0;
}

#gw-bottom-text {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(99,102,241,0.6);
}

/* ── 7. NAVIGATION ────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-med) ease, backdrop-filter var(--dur-med) ease, box-shadow var(--dur-med) ease;
  opacity: 0; /* revealed by JS */
}

#main-nav.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(99,102,241,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  border-radius: var(--r-sm);
  object-fit: contain;
  transition: opacity var(--dur-med) ease, transform var(--dur-med) ease;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--r-full);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
  background: rgba(99,102,241,0.15);
  border: 1px solid var(--border);
  color: var(--accent) !important;
  padding: 7px 18px;
  border-radius: var(--r-full);
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
  background: rgba(99,102,241,0.25);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.ham-line {
  width: 24px;
  height: 2px;
  background: var(--text-2);
  border-radius: var(--r-full);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast) ease, background var(--dur-fast) ease;
}

.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* Mobile Panel */
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
  border-top: 1px solid var(--border);
}

.nav-mobile-panel.open {
  max-height: 400px;
}

.nav-mobile-link {
  padding: 1rem 2rem;
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-2);
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.nav-mobile-link:hover {
  color: var(--accent);
  background: rgba(99,102,241,0.05);
}

/* ── 8. HERO SECTION ──────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0; /* revealed by JS */
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 70%);
  top: -10%;  left: -15%;
  animation: float 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent 70%);
  bottom: -10%; right: -10%;
  animation: floatReverse 14s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  top: 40%;  right: 20%;
  animation: float 10s ease-in-out infinite 2s;
}

.orb-4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%);
  top: 20%;  left: 30%;
  animation: floatReverse 8s ease-in-out infinite 1s;
}

#hero-cursor-light {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
  left: 50%;
  top: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.badge-pulse {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.ht-line {
  display: block;
  overflow: hidden;
}

.ht-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 40%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(99,102,241,0.4));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.hero-br { display: none; }
@media (min-width: 768px) { .hero-br { display: inline; } }

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

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) ease;
  box-shadow: 0 0 30px rgba(99,102,241,0.35), 0 4px 20px rgba(0,0,0,0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(99,102,241,0.5), 0 8px 30px rgba(0,0,0,0.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.99); }

/* Ghost Button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease, background var(--dur-fast) ease;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(99,102,241,0.08);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.hero-stat {
  text-align: center;
  position: relative;
}

.stat-val {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Scroll Indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

/* ── HERO LOGO SHOWCASE ───────────────────────────────────── */
.hero-logo-showcase {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 2rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Rotating rings */
.hls-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hls-ring-a {
  width: 130px; height: 130px;
  border-color: rgba(99,102,241,0.45);
  animation: spin-slow 10s linear infinite;
}
.hls-ring-a::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 28px var(--accent);
}

.hls-ring-b {
  width: 155px; height: 155px;
  border-color: rgba(139,92,246,0.25);
  border-style: dashed;
  animation: spin-slow-rev 15s linear infinite;
}

.hls-ring-c {
  width: 178px; height: 178px;
  border-color: rgba(168,85,247,0.15);
  animation: spin-slow 22s linear infinite;
}

/* Core logo */
.hls-core {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(99,102,241,0.55);
  box-shadow:
    0 0 0 6px rgba(99,102,241,0.08),
    0 0 40px rgba(99,102,241,0.45),
    0 0 90px rgba(168,85,247,0.25);
  z-index: 2;
  animation: hlsFloat 6s ease-in-out infinite;
}

@keyframes hlsFloat {
  0%,100% { transform: translateY(0);  box-shadow: 0 0 0 6px rgba(99,102,241,0.08), 0 0 40px rgba(99,102,241,0.45), 0 0 90px rgba(168,85,247,0.25); }
  50%      { transform: translateY(-9px); box-shadow: 0 0 0 8px rgba(99,102,241,0.12), 0 0 60px rgba(99,102,241,0.55), 0 0 110px rgba(168,85,247,0.3); }
}

.hls-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hls-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 25%,
    rgba(255,255,255,0.18) 50%,
    transparent 75%
  );
  background-size: 200% 200%;
  animation: shimmer 2.5s ease-in-out infinite;
}

/* Orbiting coloured dots */
.hls-orb-dot {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 3;
}
.hls-orb-dot span {
  display: block;
  border-radius: 50%;
  margin-top: -5px;
  margin-left: -5px;
}

.hls-dot-1 { animation: hlsOrbitA 8s linear infinite; }
.hls-dot-2 { animation: hlsOrbitB 8s linear infinite; }
.hls-dot-3 { animation: hlsOrbitC 11s linear infinite; }

.hls-dot-1 span { width: 9px; height: 9px; background: var(--accent);    box-shadow: 0 0 12px var(--accent); }
.hls-dot-2 span { width: 7px; height: 7px; background: var(--accent-2);  box-shadow: 0 0 12px var(--accent-2); }
.hls-dot-3 span { width: 5px; height: 5px; background: var(--accent-mid); box-shadow: 0 0 10px var(--accent-mid); }

@keyframes hlsOrbitA {
  from { transform: rotate(0deg)   translateX(87px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(87px) rotate(-360deg); }
}
@keyframes hlsOrbitB {
  from { transform: rotate(120deg) translateX(87px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(87px) rotate(-480deg); }
}
@keyframes hlsOrbitC {
  from { transform: rotate(240deg) translateX(87px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(87px) rotate(-600deg); }
}

/* Ambient glow behind the logo */
.hls-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, rgba(168,85,247,0.1) 40%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Mobile — slightly smaller */
@media (max-width: 768px) {
  .hero-logo-showcase {
    width: 130px;
    height: 130px;
    margin: 1.5rem auto 1.25rem;
  }
  .hls-core { width: 78px; height: 78px; }
  .hls-ring-a { width: 100px; height: 100px; }
  .hls-ring-b { width: 118px; height: 118px; }
  .hls-ring-c { width: 136px; height: 136px; }
  .hls-dot-1, .hls-dot-2, .hls-dot-3 {
    animation: none;
    display: none;
  }
}

.scroll-track {
  width: 22px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  position: relative;
}

.scroll-thumb {
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--r-full);
  left: 50%;
  transform: translateX(-50%);
  animation: scrollThumb 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

/* ── 9. COMING SOON ───────────────────────────────────────── */
#coming-soon {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.cs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cs-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.cs-body {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.cs-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 280px;
  margin-bottom: 2rem;
}

.cs-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cs-diamond {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--accent);
}

.cs-indicators {
  display: flex;
  gap: 8px;
}

.cs-ind {
  width: 24px;
  height: 3px;
  border-radius: var(--r-full);
  background: var(--border);
}

.cs-ind.active {
  background: var(--accent);
  width: 48px;
  animation: indPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

/* ── 10. ABOUT SECTION ────────────────────────────────────── */
#about {
  padding: var(--section-py) 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Logo Orbit */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-orbit-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.ring-a {
  width: 180px; height: 180px;
  border-color: rgba(99,102,241,0.25);
  animation: spin-slow 12s linear infinite;
}
.ring-a::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.ring-b {
  width: 220px; height: 220px;
  border-color: rgba(139,92,246,0.18);
  animation: spin-slow-rev 18s linear infinite;
  border-style: dashed;
}

.ring-c {
  width: 260px; height: 260px;
  border-color: rgba(168,85,247,0.12);
  animation: spin-slow 25s linear infinite;
}

.logo-center {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(99,102,241,0.4);
  box-shadow:
    0 0 0 8px rgba(99,102,241,0.08),
    0 0 40px rgba(99,102,241,0.3),
    0 0 80px rgba(168,85,247,0.15);
  z-index: 2;
}

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

.logo-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 20%,
    rgba(255,255,255,0.15) 50%,
    transparent 80%
  );
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
}

.orbit-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  display: block;
  margin-top: -5px;
  margin-left: -5px;
}

.od-1 { animation: orbitA 8s linear infinite; }
.od-2 { animation: orbitB 8s linear infinite; }
.od-3 { animation: orbitC 8s linear infinite; }
.od-2 span { background: var(--accent-2); box-shadow: 0 0 14px var(--accent-2); }
.od-3 span { background: var(--accent-mid); box-shadow: 0 0 14px var(--accent-mid); width: 7px; height: 7px; }

/* About Content */
.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur-med) ease, box-shadow var(--dur-med) ease;
}

.about-feat:hover {
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 4px 24px rgba(99,102,241,0.1);
}

.feat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--r-sm);
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}

.feat-text h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.feat-text p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── 11. VISION SECTION ───────────────────────────────────── */
#vision {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(8, 12, 30, 0.8) 50%, var(--bg) 100%);
}

.vision-mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99,102,241,0.07) 0%, transparent 70%),
    linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  pointer-events: none;
}

.vision-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-2);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0;
  vertical-align: -2rem;
  color: var(--accent);
  opacity: 0.4;
  font-style: normal;
}

.quote-mark-close {
  vertical-align: -3rem;
}

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

.vision-pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-med) ease, transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) ease;
}

.vision-pillar:hover {
  border-color: rgba(99,102,241,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(99,102,241,0.12), 0 0 0 1px rgba(99,102,241,0.15);
}

.vp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: background var(--dur-med) ease, box-shadow var(--dur-med) ease;
}

.vision-pillar:hover .vp-icon {
  background: rgba(99,102,241,0.22);
  box-shadow: 0 0 24px rgba(99,102,241,0.3);
}

.vision-pillar h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.vision-pillar p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── 12. INITIATIVES SECTION ──────────────────────────────── */
#initiatives {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

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

.init-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-med) ease, box-shadow var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
  cursor: default;
  transform-style: preserve-3d;
}

.init-card:hover {
  border-color: rgba(99,102,241,0.45);
  box-shadow: 0 20px 60px rgba(99,102,241,0.15), 0 0 0 1px rgba(99,102,241,0.15);
}

.card-glow-layer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur-med) ease;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.18), transparent 70%);
}

.init-card:hover .card-glow-layer { opacity: 1; }

.card-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,0), rgba(99,102,241,0.5), rgba(168,85,247,0), rgba(168,85,247,0));
  opacity: 0;
  transition: opacity var(--dur-med) ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.init-card:hover .card-border-glow { opacity: 1; }

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: background var(--dur-med) ease, box-shadow var(--dur-med) ease, color var(--dur-med) ease;
}

.init-card:hover .card-icon-wrap {
  background: rgba(99,102,241,0.2);
  box-shadow: 0 0 20px rgba(99,102,241,0.3);
  color: #fff;
}

.init-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.init-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-chip {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.init-card:hover .card-arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 0 10px rgba(99,102,241,0.3);
}

/* ── 13. NEWSLETTER SECTION ───────────────────────────────── */
#newsletter {
  padding: var(--section-py) 0;
  position: relative;
}

.nl-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 18, 36, 0.6);
  backdrop-filter: blur(20px);
}

.nl-bg-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.nl-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.nl-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
  max-width: 760px;
  margin: 0 auto;
}

/* Form */
.nl-form {
  margin-top: 2.5rem;
}

.nl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.nl-field:last-of-type { margin-bottom: 0; }

.nl-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.06em;
}

.nl-input-wrap {
  position: relative;
}

.nl-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
  transition: color var(--dur-fast) ease;
}

.nl-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.nl-input::placeholder { color: var(--text-muted); }

.nl-input:focus {
  border-color: var(--accent);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.nl-input:focus + .nl-input-icon,
.nl-input-wrap:focus-within .nl-input-icon {
  color: var(--accent);
}

.nl-field.error .nl-input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.nl-error {
  font-size: 0.78rem;
  color: #f87171;
  min-height: 1.2em;
  padding-left: 4px;
}

/* Submit Button */
.nl-submit-btn {
  width: 100%;
  margin-top: 1.75rem;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border: none;
  border-radius: var(--r-full);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) ease;
  box-shadow: 0 4px 24px rgba(99,102,241,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nl-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

.nl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(99,102,241,0.5);
}
.nl-submit-btn:hover::before { opacity: 1; }
.nl-submit-btn:active { transform: translateY(0); }
.nl-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

#btn-default-state,
#btn-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Success State */
.nl-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-wrap {
  font-size: 3.5rem;
  color: #4ade80;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 20px rgba(74,222,128,0.4));
}

.nl-success h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.nl-success p {
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.7;
}

/* Server Error */
.nl-server-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r-md);
  color: #fca5a5;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.nl-server-error i { color: #f87171; margin-top: 2px; }
.nl-server-error a { color: var(--accent); text-decoration: underline; }

/* Privacy notice */
.nl-privacy {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nl-privacy i { color: var(--accent); }

/* ── 14. SOCIAL SECTION ───────────────────────────────────── */
#contact {
  padding: var(--section-py) 0;
  position: relative;
}

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

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition:
    border-color var(--dur-med) ease,
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) ease;
  gap: 1rem;
}

.social-card:hover {
  transform: translateY(-8px);
}

.sc-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-med) ease;
  pointer-events: none;
}

.social-card:hover .sc-glow { opacity: 1; }

.sc-icon-wrap {
  font-size: 2rem;
  transition: transform var(--dur-med) var(--ease-out);
}

.social-card:hover .sc-icon-wrap { transform: scale(1.15); }

.sc-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sc-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sc-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--dur-fast) ease, gap var(--dur-fast) ease;
}

.social-card:hover .sc-cta { color: var(--text); gap: 12px; }

/* Platform-specific theming */
.sc-instagram {
  --sc-color: #e1306c;
  --sc-glow: rgba(225,48,108,0.12);
}
.sc-instagram:hover {
  border-color: rgba(225,48,108,0.5);
  box-shadow: 0 20px 60px rgba(225,48,108,0.15);
}
.sc-instagram .sc-icon-wrap { color: #e1306c; }
.sc-instagram .sc-glow {
  background: radial-gradient(circle at 30% 30%, rgba(225,48,108,0.12), transparent 70%);
}

.sc-facebook {
  --sc-color: #1877f2;
}
.sc-facebook:hover {
  border-color: rgba(24,119,242,0.5);
  box-shadow: 0 20px 60px rgba(24,119,242,0.15);
}
.sc-facebook .sc-icon-wrap { color: #1877f2; }
.sc-facebook .sc-glow {
  background: radial-gradient(circle at 30% 30%, rgba(24,119,242,0.12), transparent 70%);
}

.sc-linkedin {
  --sc-color: #0a66c2;
}
.sc-linkedin:hover {
  border-color: rgba(10,102,194,0.5);
  box-shadow: 0 20px 60px rgba(10,102,194,0.15);
}
.sc-linkedin .sc-icon-wrap { color: #0a66c2; }
.sc-linkedin .sc-glow {
  background: radial-gradient(circle at 30% 30%, rgba(10,102,194,0.12), transparent 70%);
}

.sc-x {
  --sc-color: #e7e9ea;
}
.sc-x:hover {
  border-color: rgba(231,233,234,0.3);
  box-shadow: 0 20px 60px rgba(231,233,234,0.08);
}
.sc-x .sc-icon-wrap { color: #e7e9ea; }
.sc-x .sc-glow {
  background: radial-gradient(circle at 30% 30%, rgba(231,233,234,0.06), transparent 70%);
}

/* ── 15. FOOTER ───────────────────────────────────────────── */
#footer {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--border);
}

.footer-glow-line {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  box-shadow: 0 0 20px rgba(99,102,241,0.5);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  border-radius: var(--r-sm);
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-nl-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-nl-btn {
  padding: 7px 18px;
  background: rgba(99,102,241,0.12);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
  text-decoration: none;
}

.footer-nl-btn:hover {
  background: rgba(99,102,241,0.22);
  border-color: var(--accent);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-sicon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, transform var(--dur-fast) ease;
  text-decoration: none;
}

.footer-sicon:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(99,102,241,0.3);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: var(--border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.heart {
  display: inline-block;
  animation: heartBeat 1.5s ease-in-out infinite;
}

/* ── 16. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .vision-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
  }

  .nl-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-panel { display: flex; }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-val { font-size: 1.8rem; }

  .vision-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-social-icons { justify-content: center; }
  .footer-nl-cta { flex-direction: column; gap: 0.5rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .gw-word {
    font-size: clamp(2.5rem, 15vw, 5rem);
  }

  #gw-content { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-ghost {
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-sep { height: 28px; }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .nl-content {
    padding: 2.5rem 1.5rem;
  }

  .cs-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
