/* ═══════════════════════════════════════════════════
   DIGITAL MINDS CLUB — Refined (Option A)
   Same DNA, less clutter, tighter details
═══════════════════════════════════════════════════ */

:root {
  --bg:        #02060f;
  --bg2:       #050d1a;
  --bg3:       #081424;
  --teal:      #00d4e8;
  --teal-mid:  #0096c7;
  --teal-glow: rgba(0, 212, 232, .12);
  --teal-faint:rgba(0, 212, 232, .05);
  --white:     #e8eef8;
  --muted:     #4a6070;
  --muted2:    #8899aa;
  --border:    rgba(0, 212, 232, .08);
  --border2:   rgba(0, 212, 232, .22);
  --border3:   rgba(0, 212, 232, .4);
  --ff-disp:   'Bebas Neue', sans-serif;
  --ff-body:   'Outfit', sans-serif;
  --ff-mono:   'JetBrains Mono', monospace;
  --ease:      cubic-bezier(.16, 1, .3, 1);
  --r:         8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--teal); color: #000; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
img, svg { display: block; }

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(2, 6, 15, .85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 0.5px solid var(--border);
  transition: background .35s;
}
.nav-brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  transition: transform .35s var(--ease);
}
.nav-brand:hover .nav-logo-mark { transform: scale(1.05); }
.nav-wordmark { display: flex; flex-direction: column; gap: 2px; }
.nav-wordmark strong {
  font-family: var(--ff-mono); font-size: .78rem; font-weight: 600;
  color: var(--white); letter-spacing: -.01em; line-height: 1;
}
.nav-wordmark small {
  font-family: var(--ff-mono); font-size: .62rem;
  color: var(--muted); letter-spacing: .06em;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted2);
  text-decoration: none; position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--teal);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--bg); background: var(--teal);
  padding: .55rem 1.3rem; border-radius: 4px; text-decoration: none;
  font-weight: 700;
  transition: background .25s, transform .25s var(--ease);
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 300;
}
.ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all .35s var(--ease);
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   HERO (refined — no orb, no particles)
════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 5vw;
}

/* Single diagonal sweep — replaces the grid */
.hero-sweep {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 30%, rgba(0,212,232,.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(0,212,232,.04) 0%, transparent 50%);
}
.hero-sweep::before {
  content: ''; position: absolute;
  top: 25%; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,232,.3), transparent);
  transform: rotate(-18deg);
  opacity: .5;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%;
  padding-top: 120px; padding-bottom: 100px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 5rem; align-items: center;
}

/* left */
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .3rem .8rem;
  border: 0.5px solid var(--border2);
  border-radius: 50px;
  background: rgba(0, 212, 232, .04);
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.6rem;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0,212,232,.5);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,232,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,212,232,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,232,0); }
}

h1.hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  line-height: .92; letter-spacing: .015em;
  color: var(--white);
  display: flex; flex-direction: column;
}
.hero-line1, .hero-line3 { display: block; }
.hero-line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--teal);
}
.hero-dot { color: var(--teal); }

.hero-desc {
  margin-top: 1.8rem; max-width: 440px;
  font-size: 1rem; color: var(--muted2); line-height: 1.7; font-weight: 300;
}
.hero-desc strong { color: var(--white); font-weight: 500; }

.hero-btns {
  margin-top: 2.4rem; display: flex; gap: .9rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 5px;
  font-family: var(--ff-mono); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  font-weight: 600; transition: all .28s var(--ease);
}
.btn-primary { background: var(--teal); color: #000; }
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--white);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 0.5px solid var(--border2);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ── HERO RIGHT (3D orb) ──────────────────── */
.hero-right {
  display: flex; flex-direction: column; gap: 1.4rem;
}

.orb3d-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

#orb3d {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Logo dead-center, sits above canvas */
.orb3d-center {
  position: relative;
  z-index: 2;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(0,212,232,.08) 0%, transparent 70%);
  animation: orb-breathe 5s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.orb3d-logo {
  width: 78px; height: 78px;
  filter: drop-shadow(0 0 18px rgba(0,212,232,.4));
}

/* Tiny orbital labels — sit on invisible orbit tracks */
.orb3d-label {
  position: absolute;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--teal);
  background: rgba(2, 6, 15, .7);
  backdrop-filter: blur(8px);
  padding: .2rem .55rem;
  border-radius: 3px;
  border: 0.5px solid var(--border2);
  white-space: nowrap;
  pointer-events: none;
  animation: label-fade 4s ease-in-out infinite;
}
.orb3d-label-1 { top: 14%;  right: 8%;  animation-delay: 0s; }
.orb3d-label-2 { bottom: 20%; left: 4%; animation-delay: 1.3s; }
.orb3d-label-3 { top: 55%;  right: 2%;  animation-delay: 2.6s; }

@keyframes label-fade {
  0%, 100%   { opacity: 0; transform: translateY(4px); }
  20%, 80%   { opacity: 1; transform: translateY(0); }
}

/* Meta rows below stat grid */
.hero-meta {
  display: flex; flex-direction: column; gap: 0;
}
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .8rem 0;
  border-bottom: 0.5px dashed var(--border);
  font-family: var(--ff-mono); font-size: .7rem;
}
.hero-meta-row:last-child { border-bottom: none; }
.hero-meta-k {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .62rem;
}
.hero-meta-v {
  color: var(--white);
  text-align: right;
  font-weight: 500;
  letter-spacing: -.005em;
}

/* Bottom scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════════ */
.sec { padding: 140px 5vw; position: relative; }
.sec-inner { max-width: 1180px; margin-inline: auto; }
.sec-eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.1rem;
}
.sec-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--teal);
}
h2.sec-title {
  font-family: var(--ff-disp);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: .94; letter-spacing: .015em;
  max-width: 680px;
}
.sec-desc {
  margin-top: 1.2rem; max-width: 520px;
  color: var(--muted2); font-size: .95rem; line-height: 1.75; font-weight: 300;
}

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
#about { background: var(--bg2); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start; margin-top: 4.5rem;
}
.goals { display: flex; flex-direction: column; gap: 0; }
.goal {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
  transition: padding .3s var(--ease);
}
.goal:first-child { padding-top: 0; }
.goal:last-child { border-bottom: none; }
.goal:hover { padding-left: 6px; }
.goal-n {
  font-family: var(--ff-disp); font-size: 2.6rem; line-height: 1;
  color: var(--border3); transition: color .3s;
  flex-shrink: 0; width: 48px;
}
.goal:hover .goal-n { color: var(--teal); }
.goal-body h3 {
  font-family: var(--ff-body); font-size: .98rem; font-weight: 600;
  margin-bottom: .35rem; transition: color .3s;
  letter-spacing: -.005em;
}
.goal:hover .goal-body h3 { color: var(--teal); }
.goal-body p { font-size: .85rem; color: var(--muted2); line-height: 1.65; }

.activities { display: flex; flex-direction: column; gap: .8rem; }
.act {
  position: relative; overflow: hidden;
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  transition: border-color .3s var(--ease), transform .35s var(--ease);
}
.act:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}
.act-header { display: flex; align-items: center; gap: 1rem; margin-bottom: .65rem; }
.act-icon {
  width: 38px; height: 38px; border-radius: 7px;
  background: rgba(0, 212, 232, .06);
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: background .3s, border-color .3s;
}
.act:hover .act-icon {
  background: rgba(0, 212, 232, .12);
  border-color: var(--border2);
}
.act h3 {
  font-size: .98rem; font-weight: 600; letter-spacing: -.005em;
}
.act p { font-size: .85rem; color: var(--muted2); line-height: 1.65; }
.act-pill {
  display: inline-block; margin-top: .7rem;
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .08em;
  color: var(--teal); background: rgba(0, 212, 232, .06);
  padding: .22rem .65rem; border-radius: 3px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   QUIZ
════════════════════════════════════════════════ */
#quiz { background: var(--bg); }
.quiz-shell {
  max-width: 680px; margin: 3.5rem auto 0;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.quiz-bar { height: 2px; background: var(--teal-faint); }
.quiz-fill {
  height: 100%; background: var(--teal);
  transition: width .6s var(--ease); width: 0%;
}
.quiz-body { padding: 2.8rem; }
.quiz-step { display: none; }
.quiz-step.on { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
.q-meta {
  font-family: var(--ff-mono); font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .8rem;
}
.q-text {
  font-size: 1.12rem; font-weight: 600;
  line-height: 1.4; margin-bottom: 1.6rem;
  letter-spacing: -.01em;
}
.q-options { display: flex; flex-direction: column; gap: .5rem; }
.q-opt {
  display: flex; align-items: center; gap: .9rem;
  padding: .95rem 1.2rem;
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: 7px;
  cursor: pointer; font-size: .89rem;
  transition: all .22s var(--ease);
}
.q-opt:hover {
  border-color: var(--border2);
  background: rgba(0, 212, 232, .04);
  transform: translateX(3px);
}
.q-opt.sel { border-color: var(--teal); background: rgba(0, 212, 232, .08); }
.q-letter {
  width: 26px; height: 26px; border-radius: 5px; flex-shrink: 0;
  background: rgba(0, 212, 232, .05);
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: .7rem; font-weight: 700;
  color: var(--muted2); transition: all .22s;
}
.q-opt.sel .q-letter { background: var(--teal); border-color: var(--teal); color: #000; }
.q-opt:hover .q-letter { border-color: var(--border2); color: var(--teal); }
.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 0.5px solid var(--border);
}
.q-prev {
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em;
  color: var(--muted2); background: transparent;
  border: 0.5px solid var(--border); border-radius: 5px;
  padding: .55rem 1.2rem; cursor: pointer; transition: all .22s;
}
.q-prev:hover { border-color: var(--border2); color: var(--white); }
.q-next {
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .08em; font-weight: 700;
  color: #000; background: var(--teal); border: none;
  border-radius: 5px; padding: .7rem 1.6rem; cursor: pointer;
  transition: all .28s var(--ease);
}
.q-next:disabled { opacity: .3; pointer-events: none; }
.q-next:hover { transform: translateY(-2px); background: var(--white); }

.quiz-result { text-align: center; }
.score-ring-wrap { width: 120px; height: 120px; position: relative; margin: 0 auto 1.4rem; }
.score-ring-wrap svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(0,212,232,.08); stroke-width: 6; }
.ring-fg { fill: none; stroke: var(--teal); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 345; stroke-dashoffset: 345; transition: stroke-dashoffset 1.4s var(--ease); }
.ring-pct {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--ff-disp); font-size: 2.2rem; color: var(--teal);
  line-height: 1; letter-spacing: .01em;
}
.res-emoji { font-size: 2rem; margin-bottom: .6rem; }
.res-title { font-family: var(--ff-disp); font-size: 2.6rem; line-height: 1; margin-bottom: .5rem; letter-spacing: .01em; }
.res-msg { color: var(--muted2); font-size: .88rem; line-height: 1.7; max-width: 400px; margin: 0 auto 1.8rem; }
.res-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   APPLY (closed)
════════════════════════════════════════════════ */
#apply { background: var(--bg2); }
.apply-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.apply-aside h3 {
  font-family: var(--ff-disp); font-size: 2.6rem;
  line-height: 1; margin: .5rem 0 1rem;
  letter-spacing: .015em;
}
.apply-aside p { font-size: .88rem; color: var(--muted2); line-height: 1.75; margin-bottom: 1.6rem; }
.apply-checks { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.8rem; }
.apply-check {
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem; color: var(--muted2);
}
.apply-check::before { content: '→'; color: var(--teal); font-family: var(--ff-mono); font-size: .78rem; }

.aside-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .9rem 1.5rem;
  background: var(--teal); color: #000;
  border-radius: 6px; text-decoration: none;
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: transform .28s var(--ease), background .25s;
}
.aside-cta:hover { transform: translateY(-2px); background: var(--white); }
.aside-cta-arrow { transition: transform .3s var(--ease); }
.aside-cta:hover .aside-cta-arrow { transform: translateX(3px); }

.apply-form-card {
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  position: relative; overflow: hidden;
}

.form-lock-banner {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .95rem 1.3rem;
  background: rgba(239, 68, 68, .08);
  border-bottom: 0.5px solid rgba(239, 68, 68, .22);
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #ef4444; font-weight: 700;
  text-align: center;
}
.form-lock-icon {
  display: inline-flex; color: #ef4444;
}
.form-lock-text { line-height: 1.4; }

.apply-form-card.locked form {
  padding: 2.2rem;
  opacity: .55;
  filter: grayscale(.2);
  pointer-events: none;
  user-select: none;
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.f-g { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.f-label {
  font-family: var(--ff-mono); font-size: .66rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted2);
}
.f-input, .f-sel, .f-ta {
  width: 100%;
  background: rgba(0, 212, 232, .02);
  border: 0.5px solid var(--border);
  border-radius: 5px;
  padding: .75rem .95rem;
  color: var(--white);
  font-family: var(--ff-body); font-size: .88rem;
  outline: none;
  transition: border-color .22s, background .22s;
  appearance: none;
}
.f-input:focus, .f-sel:focus, .f-ta:focus {
  border-color: var(--teal);
  background: rgba(0, 212, 232, .04);
}
.f-input:disabled, .f-sel:disabled, .f-ta:disabled { cursor: not-allowed; }
.f-sel option { background: var(--bg2); }
.f-ta { resize: vertical; min-height: 95px; line-height: 1.6; }
.hp { display: none !important; }

.f-btn {
  width: 100%; padding: .95rem;
  background: var(--teal); color: #000; border: none;
  border-radius: 6px;
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .28s var(--ease);
}
.f-btn:hover { transform: translateY(-2px); background: var(--white); }

.f-btn-disabled {
  background: rgba(239, 68, 68, .08) !important;
  color: #ef4444 !important;
  border: 0.5px solid rgba(239, 68, 68, .25) !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.f-btn-disabled:hover { transform: none !important; background: rgba(239, 68, 68, .08) !important; }
.f-note { text-align: center; margin-top: .8rem; font-size: .7rem; font-family: var(--ff-mono); color: var(--muted); }
.f-note a { color: var(--teal); text-decoration: none; }
.f-msg { display: none; margin-top: 1rem; padding: .8rem 1rem; border-radius: 5px; font-size: .82rem; text-align: center; font-weight: 500; }
.f-msg.ok { background: rgba(34,197,94,.06); border: 0.5px solid rgba(34,197,94,.2); color: #22c55e; }
.f-msg.err { background: rgba(239,68,68,.06); border: 0.5px solid rgba(239,68,68,.2); color: #ef4444; }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
#contact {
  background: var(--bg); padding: 120px 5vw;
  text-align: center;
}
#contact .sec-inner { max-width: 640px; }
#contact h2 { margin-inline: auto; font-size: clamp(2.8rem, 4.8vw, 5rem); }
.contact-box {
  margin-top: 2.8rem;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 2.6rem 2.2rem;
}
.contact-box p { color: var(--muted2); font-size: .92rem; margin-bottom: 1.4rem; }

.contact-links {
  display: flex; flex-wrap: wrap; gap: .7rem;
  justify-content: center; margin: 1.4rem 0 1.2rem;
}
.contact-email {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-mono); font-size: .88rem; font-weight: 600;
  color: var(--teal); text-decoration: none;
  padding: .85rem 1.8rem;
  border: 0.5px solid var(--border2);
  border-radius: 6px; transition: all .28s var(--ease);
}
.contact-email:hover { background: rgba(0,212,232,.05); transform: translateY(-2px); }
.contact-insta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-mono); font-size: .88rem; font-weight: 600;
  color: var(--muted2); text-decoration: none;
  padding: .85rem 1.8rem;
  border: 0.5px solid var(--border);
  border-radius: 6px; transition: all .28s var(--ease);
}
.contact-insta:hover {
  border-color: #e1306c; color: #e1306c;
  background: rgba(225, 48, 108, .04);
  transform: translateY(-2px);
}
.contact-sub {
  font-family: var(--ff-mono); font-size: .66rem;
  letter-spacing: .1em; color: var(--muted);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--bg2); border-top: 0.5px solid var(--border);
  padding: 1.6rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-l { display: flex; align-items: center; gap: 10px; }
.footer-l img { width: 22px; height: 22px; opacity: .65; }
.footer-l span { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .04em; color: var(--muted); }
.footer-l strong { color: var(--teal); font-weight: 600; }
.footer-r a {
  color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .06em;
  transition: color .25s;
}
.footer-r a:hover { color: var(--teal); }

/* ════════════════════════════════════════════════
   REVEAL
════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }

/* Directional reveals (add these classes with .rv) */
.rv-left  { transform: translateX(-36px); }
.rv-right { transform: translateX(36px);  }
.rv-scale { transform: scale(.94); opacity: 0; }
.rv-left.in, .rv-right.in, .rv-scale.in { transform: none; opacity: 1; }

/* Parallax section titles — subtle drift as user scrolls */
.sec-title {
  will-change: transform;
  transition: transform .1s linear;
}

/* ════════════════════════════════════════════════
   GALLERY STATS (200+ participants etc.)
════════════════════════════════════════════════ */
.gallery-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.2rem;
  margin-top: 2.5rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(90deg, rgba(0,212,232,.04), rgba(0,212,232,.01));
  border: 0.5px solid var(--border);
  border-radius: 12px;
  flex-wrap: wrap;
}
.gstat {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.gstat-n {
  font-family: var(--ff-disp);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .01em;
  display: flex;
  align-items: baseline;
}
.gstat-plus {
  color: var(--teal);
  font-size: .55em;
  margin-left: 2px;
  position: relative;
  top: -.35em;
}
.gstat-l {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted2);
  line-height: 1.4;
}
.gstat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* The count-up numbers pulse briefly when first revealed */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════
   GALLERY (carousel)
════════════════════════════════════════════════ */
.gallery-wrap {
  position: relative;
  margin-top: 3rem;
  padding: 0 5vw;
}
.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.g-item {
  flex: 0 0 auto;
  height: 360px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 0.5px solid var(--border);
  scroll-snap-align: start;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.g-item img {
  height: 100%; width: auto; display: block;
  transition: transform .6s var(--ease), filter .3s;
  filter: saturate(.92);
}
.g-item::after {
  content: '⤢';
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(0,212,232,.9); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
}
.g-item:hover {
  border-color: var(--border3);
  transform: translateY(-2px);
}
.g-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.g-item:hover::after { opacity: 1; transform: translateY(0); }

.gal-nav {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(2, 6, 15, .9);
  backdrop-filter: blur(10px);
  border: 0.5px solid var(--border2);
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--ff-body);
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.gal-prev { left: 1rem; }
.gal-next { right: 1rem; }
.gal-nav:hover {
  background: var(--teal); color: #000; border-color: var(--teal);
  transform: translateY(-50%) scale(1.06);
}
.gal-nav:disabled { opacity: .2; cursor: not-allowed; pointer-events: none; }

.gallery-wrap::before,
.gallery-wrap::after {
  content: '';
  position: absolute;
  top: 6px; bottom: 20px;
  width: 5vw;
  z-index: 4;
  pointer-events: none;
}
.gallery-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.gallery-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

.gal-meta {
  display: flex; align-items: center; gap: 1.2rem;
  max-width: 1180px; margin: 1.2rem auto 0;
  padding: 0 1rem;
}
.gal-progress {
  flex: 1; height: 2px;
  background: rgba(0, 212, 232, .06);
  border-radius: 99px; overflow: hidden;
}
.gal-progress-fill {
  height: 100%; width: 0%;
  background: var(--teal);
  border-radius: 99px;
  transition: width .15s linear;
}
.gal-hint {
  font-family: var(--ff-mono); font-size: .66rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

/* ── LIGHTBOX ─────────────────────────────── */
.lb {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
.lb.show { opacity: 1; pointer-events: auto; }
.lb-stage {
  max-width: 92vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-stage img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
}
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.05);
  border: 0.5px solid var(--border2); color: var(--white);
  cursor: pointer;
  transition: background .22s, transform .22s, border-color .22s;
}
.lb-close {
  top: 1.3rem; right: 1.3rem;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.8rem; line-height: 1;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-close:hover, .lb-nav:hover {
  background: var(--teal); color: #000; border-color: var(--teal);
}
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter {
  position: absolute; bottom: 1.3rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono); font-size: .72rem;
  letter-spacing: .1em; color: var(--muted2);
  background: rgba(0,0,0,.4); padding: .35rem .8rem;
  border-radius: 50px; border: 0.5px solid var(--border);
}

/* ════════════════════════════════════════════════
   EVENT STATUS BADGES
════════════════════════════════════════════════ */
.event-status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .22rem .65rem;
  background: rgba(239, 68, 68, .07);
  border: 0.5px solid rgba(239, 68, 68, .22);
  border-radius: 50px;
  color: #ef4444;
  font-family: var(--ff-mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.event-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444;
}
.event-status.status-soon {
  background: rgba(0, 212, 232, .06);
  border-color: var(--border2);
  color: var(--teal);
}
.event-status-dot.status-soon-dot {
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0,212,232,.5);
  animation: status-pulse 2.4s ease-out infinite;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,232,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,212,232,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,232,0); }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(2, 6, 15, .98); backdrop-filter: blur(20px);
    padding: 2rem 5vw; gap: 1.8rem;
    border-bottom: 0.5px solid var(--border);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .88rem; }
  .ham { display: flex; }
  .nav-cta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 110px; padding-bottom: 80px;
    text-align: left;
  }
  .hero-right { max-width: 100%; }
  .orb3d-wrap { max-width: 320px; }
  .orb3d-center { width: 90px; height: 90px; }
  .orb3d-logo { width: 60px; height: 60px; }

  .sec { padding: 90px 5vw; }
  .about-layout, .apply-grid { grid-template-columns: 1fr; gap: 3rem; }
  .f-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }

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

@media (max-width: 600px) {
  #nav { padding: 0 4vw; height: 60px; }
  .nav-links { top: 60px; }
  .nav-wordmark strong { font-size: .72rem; }
  .nav-wordmark small { display: none; }
  .nav-logo-mark { width: 28px; height: 28px; }

  .hero-inner { padding-top: 90px; padding-bottom: 60px; gap: 2.2rem; }
  h1.hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-desc { font-size: .9rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }

  .orb3d-wrap { max-width: 260px; }
  .orb3d-label { font-size: .58rem; padding: .15rem .45rem; }

  .sec { padding: 64px 5vw; }
  h2.sec-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .sec-desc { font-size: .88rem; }

  .about-layout { margin-top: 2.5rem; gap: 2.5rem; }
  .goal { padding: 1.1rem 0; gap: 1rem; }
  .goal-n { font-size: 2rem; width: 40px; }
  .act { padding: 1.3rem 1.4rem; }

  .apply-grid { margin-top: 2.2rem; }
  .apply-aside h3 { font-size: 2rem; }
  .apply-form-card.locked form { padding: 1.4rem; }
  .form-lock-banner { padding: .8rem 1rem; font-size: .64rem; }
  .aside-cta { width: 100%; justify-content: center; }

  /* gallery stats stack on mobile */
  .gallery-stats {
    gap: 1.2rem 1.5rem;
    padding: 1.3rem 1.2rem;
    justify-content: space-between;
  }
  .gstat-n { font-size: 2rem; }
  .gstat-l { font-size: .58rem; }
  .gstat-sep { display: none; }

  .quiz-body { padding: 1.8rem 1.4rem; }
  .q-text { font-size: 1rem; }

  .contact-box { padding: 1.8rem 1.4rem; }
  .contact-links { flex-direction: column; }
  .contact-email, .contact-insta { font-size: .78rem; padding: .75rem 1.3rem; }

  .g-item { height: 260px; border-radius: 8px; }
  .gal-nav { display: none; }
  .gallery-wrap { padding: 0 4vw; }
  .gallery-wrap::before, .gallery-wrap::after { width: 4vw; }
  .gal-meta { padding: 0; }

  .lb-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lb-prev { left: .7rem; }
  .lb-next { right: .7rem; }
  .lb-close { top: .7rem; right: .7rem; width: 36px; height: 36px; }
}

@media (max-width: 420px) {
  .g-item { height: 220px; }
  .gal-hint { display: none; }
  .orb3d-wrap { max-width: 220px; }
  .orb3d-label-3 { display: none; }
}
