/* ==========================================================
   DO MASSIVE — Premium Futuristic Luxury Theme
   ========================================================== */

:root {
  --bg-0: #03060f;
  --bg-1: #060b1c;
  --bg-2: #0a1230;
  --navy: #0b1846;
  --navy-deep: #050a1f;
  --blue: #1a4cff;
  --blue-bright: #3b82f6;
  --blue-electric: #4f8cff;
  --cyan: #5cd2ff;
  --cyan-soft: #7bd8ff;
  --text: #eaf1ff;
  --text-dim: #9fb0d4;
  --text-mute: #6a7a9c;
  --border: rgba(120, 160, 255, 0.12);
  --border-strong: rgba(120, 160, 255, 0.25);
  --glass: rgba(18, 32, 70, 0.45);
  --glass-2: rgba(14, 24, 55, 0.6);
  --glow: 0 0 40px rgba(59, 130, 246, 0.35);
  --glow-strong: 0 0 60px rgba(92, 210, 255, 0.45);
  --radius: 18px;
  --radius-lg: 24px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
button, a, [role="button"] { cursor: none; }

img { max-width: 100%; display: block; }

::selection { background: rgba(91, 156, 255, 0.35); color: #fff; }

/* ========== CUSTOM CURSOR ========== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7cc6ff;
  box-shadow:
    0 0 10px #4aa8ff,
    0 0 20px #3b82f6,
    0 0 35px rgba(59,130,246,0.6);
  filter: blur(0.4px);
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cursor-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(124, 198, 255, 0.55);
  box-shadow: 0 0 25px rgba(59,130,246,0.25), inset 0 0 12px rgba(91,156,255,0.15);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
  backdrop-filter: blur(1px);
}
.cursor-hover .cursor-dot {
  width: 14px; height: 14px;
  background: #b8e1ff;
}
.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: rgba(124, 198, 255, 0.9);
  background: rgba(59,130,246,0.08);
}

/* ========== AMBIENT BG ========== */
.bg-layer {
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(26, 76, 255, 0.25), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(92, 210, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 24, 70, 0.85), transparent 60%),
    linear-gradient(180deg, #03060f 0%, #050a1f 50%, #03060f 100%);
  overflow: hidden;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91, 156, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 156, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.5;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb 18s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: #1a4cff; top: -150px; left: -150px; }
.orb-2 { width: 450px; height: 450px; background: #3b82f6; top: 40%; right: -180px; animation-delay: -6s; }
.orb-3 { width: 600px; height: 600px; background: #0a2980; bottom: -250px; left: 30%; animation-delay: -12s; opacity: 0.4; }

@keyframes orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

.particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: #7bd8ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #5cd2ff, 0 0 16px rgba(91,156,255,0.6);
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(20px); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh); opacity: 0; }
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 10, 31, 0.7);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav-logo {
  width: 44px; height: 44px;
  position: relative;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 18px rgba(59,130,246,0.55));
}
.nav-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.nav-logo:has(img[style*="display: none"]) {
  background: linear-gradient(135deg, #1a4cff, #3b82f6);
  box-shadow: 0 6px 24px rgba(59,130,246,0.35), inset 0 0 0 1px rgba(255,255,255,0.15);
}
.nav-logo-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.nav-name { color: #fff; }
.nav-links {
  list-style: none;
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: linear-gradient(90deg, #3b82f6, #5cd2ff);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(26, 76, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.nav-cta:hover {
  background: rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 30px rgba(59,130,246,0.4);
  border-color: rgba(124, 198, 255, 0.5);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
  opacity: 0.42;
  filter: blur(1px) saturate(115%) hue-rotate(-8deg) brightness(0.9);
  transform: scale(1.06);
  animation: hero-bg-drift 22s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(3, 6, 15, 0.25) 0%, rgba(3, 6, 15, 0.7) 55%, rgba(3, 6, 15, 0.95) 100%),
    linear-gradient(180deg, rgba(3, 6, 15, 0.55) 0%, rgba(5, 10, 31, 0.7) 60%, #03060f 100%),
    linear-gradient(120deg, rgba(26, 76, 255, 0.18), transparent 60%);
}
@keyframes hero-bg-drift {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(26, 76, 255, 0.1);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5cd2ff;
  box-shadow: 0 0 12px #5cd2ff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-suffix {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(92,210,255,0.5);
  margin-top: 22px;
  padding-left: 0.55em; /* visual balance with letter-spacing */
}
.grad {
  background: linear-gradient(120deg, #3b82f6 0%, #5cd2ff 50%, #b8e1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(91, 210, 255, 0.35));
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #1a4cff 0%, #3b82f6 50%, #5cd2ff 100%);
  color: #fff;
  box-shadow:
    0 10px 40px rgba(59,130,246,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.2),
    inset 0 -8px 20px rgba(11, 24, 70, 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 60px rgba(59,130,246,0.6),
    0 0 50px rgba(92,210,255,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.3);
}
.btn-primary:hover::before { opacity: 1; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.stat-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.65), rgba(10, 18, 48, 0.45));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px) saturate(150%);
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 198, 255, 0.5);
  box-shadow: 0 20px 60px rgba(26, 76, 255, 0.35), 0 0 40px rgba(92, 210, 255, 0.2);
}
.stat-glow {
  position: absolute;
  top: -50%; left: 50%;
  width: 200px; height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59,130,246,0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 30px rgba(91, 210, 255, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #b8e1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, #5cd2ff);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(0.5); opacity: 1; }
}

/* ========== SECTION SHARED ========== */
.section { padding: 140px 32px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }

.section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  font-weight: 600;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .lead {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.35;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 28px;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.about-pills span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(26, 76, 255, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.glass-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.55), rgba(8, 16, 40, 0.5));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 30px 80px rgba(3, 8, 25, 0.5), inset 0 0 0 1px rgba(124,198,255,0.06);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #5cd2ff, transparent);
}
.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.panel-row:last-of-type { border-bottom: none; }
.panel-row span { color: var(--text-dim); }
.panel-row b {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
}
.panel-bar {
  margin-top: 20px;
  height: 6px;
  border-radius: 999px;
  background: rgba(124, 198, 255, 0.1);
  overflow: hidden;
}
.panel-bar-fill {
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, #1a4cff, #5cd2ff);
  box-shadow: 0 0 20px rgba(92,210,255,0.6);
  border-radius: 999px;
  animation: bar-pulse 3s ease-in-out infinite;
}
@keyframes bar-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
.panel-foot {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.live { color: #5cd2ff; text-shadow: 0 0 10px #5cd2ff; }

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(124,198,255,0.4) 10%, rgba(124,198,255,0.4) 90%, transparent);
}
.t-item {
  position: relative;
  padding-bottom: 40px;
}
.t-item:last-child { padding-bottom: 0; }
.t-dot {
  position: absolute;
  left: -34px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #5cd2ff;
  box-shadow: 0 0 0 5px rgba(92,210,255,0.15), 0 0 20px #3b82f6;
}
.t-card {
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.4));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 198, 255, 0.45);
  box-shadow: 0 20px 50px rgba(26, 76, 255, 0.25);
}
.t-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}
.t-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.t-card p { color: var(--text-dim); font-size: 15px; }

/* ========== GROUPS ========== */
/* ========== GROUPS / BANNER ========== */
.groups-banner {
  max-width: 1100px;
  margin: 0 auto;
}
.banner-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: rgba(8, 16, 40, 0.5);
  box-shadow: 0 30px 80px rgba(3, 8, 25, 0.55);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  line-height: 0;
}
.banner-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s ease;
}
.banner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 198, 255, 0.6);
  box-shadow: 0 40px 100px rgba(26, 76, 255, 0.4), 0 0 60px rgba(92, 210, 255, 0.25);
}
.banner-card:hover img {
  transform: scale(1.02);
}
.banner-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(3, 6, 15, 0.35), rgba(3, 6, 15, 0.55));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  line-height: 1;
}
.banner-card:hover .banner-hint { opacity: 1; }
.banner-hint-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(26, 76, 255, 0.25);
  border: 1px solid rgba(124, 198, 255, 0.6);
  backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.55), 0 0 40px rgba(92, 210, 255, 0.35);
  transform: translateY(8px) scale(0.96);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.banner-card:hover .banner-hint-pill {
  transform: translateY(0) scale(1);
}
.banner-hint-pill svg {
  width: 16px; height: 16px;
}
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 60px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 28px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff, #b8e1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(91, 210, 255, 0.4);
}
.banner-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.groups-grid--single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}
.groups-grid--single .group-image {
  aspect-ratio: auto;
  min-height: 0;
  display: block;
  background: transparent;
  padding: 0;
  gap: 0;
  line-height: 0;
}
.groups-grid--single .group-image img {
  position: static;
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
}
.groups-grid--single .group-meta {
  padding: 28px 32px;
}
.groups-grid--single .group-meta h4 { font-size: 26px; }
.groups-grid--single .group-meta p { font-size: 15px; }

.group-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.45));
  border: 1px solid var(--border-strong);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  display: block;
}
.group-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 198, 255, 0.5);
  box-shadow: 0 30px 60px rgba(26, 76, 255, 0.3), 0 0 40px rgba(92,210,255,0.18);
}
.group-image {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(59,130,246,0.18), transparent 60%),
    linear-gradient(135deg, rgba(10, 24, 60, 0.8), rgba(5, 12, 35, 0.9));
  overflow: hidden;
}
.group-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .6s ease;
}
.group-card:hover .group-image img {
  transform: scale(1.02);
}
.placeholder { position: relative; overflow: hidden; }
.ph-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(124,198,255,0.12) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ph-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(124,198,255,0.08);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.ph-icon svg { width: 24px; height: 24px; }
.ph-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.ph-label.small { font-size: 10px; }

.group-meta { padding: 22px 24px; }
.group-meta h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.group-meta p { font-size: 13px; color: var(--text-dim); }

/* ========== REVENUE ========== */
.revenue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.rev-main {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.5));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
}
.rev-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.rev-title {
  font-family: var(--font-display);
  font-size: 20px; color: #fff; font-weight: 600;
}
.rev-sub { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.rev-badge {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5cd2ff;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(92,210,255,0.08);
  border: 1px solid rgba(124,198,255,0.3);
}
.rev-chart {
  position: relative;
  aspect-ratio: 600 / 220;
  background:
    radial-gradient(circle at 50% 100%, rgba(59,130,246,0.2), transparent 60%),
    linear-gradient(180deg, rgba(8,16,40,0.4), rgba(5,12,35,0.6));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
}
.rev-chart svg { width: 100%; height: 100%; display: block; }
.ph-tag {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: rgba(8,16,40,0.7);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.rev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev-stats > div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(26,76,255,0.08);
  border: 1px solid var(--border);
}
.rev-stats span {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rev-stats b {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.rev-side { display: flex; flex-direction: column; gap: 24px; }
.rev-mini {
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.5));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  flex: 1;
}
.rev-mini-head {
  font-family: var(--font-display);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}
.rev-mini-body {
  flex: 1;
  min-height: 140px;
  border-radius: 14px;
  border: 1px dashed var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(59,130,246,0.12), transparent 60%);
}

/* ========== WHY ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.4));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,198,255,0.6), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 198, 255, 0.5);
  box-shadow: 0 20px 50px rgba(26, 76, 255, 0.3), 0 0 40px rgba(92,210,255,0.15);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,76,255,0.25), rgba(92,210,255,0.15));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: #5cd2ff;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(59,130,246,0.25);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p { color: var(--text-dim); font-size: 14.5px; }

/* ========== TRUST ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.trust-stat {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.55), rgba(8, 16, 40, 0.5));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.trust-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 198, 255, 0.45);
  box-shadow: 0 20px 50px rgba(26, 76, 255, 0.25);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #ffffff, #b8e1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(91,210,255,0.4);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.quote-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.45), rgba(8, 16, 40, 0.4));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  position: relative;
  transition: transform .35s ease, border-color .35s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 198, 255, 0.5);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--cyan);
  line-height: 0.6;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(92,210,255,0.5);
}
.quote-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.quote-by {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 32, 70, 0.5), rgba(8, 16, 40, 0.4));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 198, 255, 0.55);
  box-shadow: 0 16px 40px rgba(26, 76, 255, 0.3);
}
.contact-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,76,255,0.25), rgba(92,210,255,0.15));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: #5cd2ff;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(59,130,246,0.25);
}
.contact-ic svg { width: 22px; height: 22px; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 50%, rgba(59,130,246,0.18), transparent 50%),
    linear-gradient(180deg, rgba(18, 32, 70, 0.65), rgba(10, 18, 48, 0.55));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #5cd2ff, transparent);
}
.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 4px;
}
.contact-cta p { color: var(--text-dim); font-size: 14px; }

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(59,130,246,0.15), transparent 55%),
    linear-gradient(180deg, rgba(18, 32, 70, 0.55), rgba(10, 18, 48, 0.5));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 30px 80px rgba(3, 8, 25, 0.5), inset 0 0 0 1px rgba(124,198,255,0.06);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #5cd2ff, transparent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: #fff;
  background: rgba(5, 10, 25, 0.55);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  resize: vertical;
  cursor: none;
}
.form-field textarea { min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-mute);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(124, 198, 255, 0.6);
  background: rgba(5, 10, 25, 0.8);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18), 0 0 30px rgba(92,210,255,0.18);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-actions .btn { border: none; cursor: none; }
.form-status {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.form-status.success { color: #5cd2ff; }
.form-status.error { color: #ff8a8a; }

@media (max-width: 640px) {
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

.footer {
  padding: 80px 32px 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(3, 6, 15, 0.8));
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.foot-brand {
  display: flex; align-items: center; gap: 14px;
}
.foot-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.foot-tag {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-cols h5 {
  font-family: var(--font-display);
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-cols a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color .2s ease, transform .2s ease;
}
.foot-cols a:hover { color: #5cd2ff; transform: translateX(3px); }
.foot-base {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.groups-grid .reveal,
.why-grid .reveal,
.trust-grid .reveal,
.quote-row .reveal,
.contact-grid .reveal,
.timeline .reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .revenue-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 100px 24px; }
  .hero { padding: 120px 24px 60px; }
  .stats { grid-template-columns: 1fr; }
  .rev-stats { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html, body { cursor: auto; }
  a, button, [role="button"] { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav-inner { padding: 0 20px; }
  .nav-cta { display: none; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .contact-cta { padding: 28px; flex-direction: column; align-items: flex-start; }
  .foot-base { flex-direction: column; gap: 8px; }
}
