/* ═══════════════════════════════════════════════════════════
   VoiceTech4Teens — Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* palette */
  --cyan:     #22d3ee;
  --cyan-dim: #0891b2;
  --purple:   #a78bfa;
  --purple-dim:#7c3aed;
  --gold:     #fbbf24;
  --gold-dim: #d97706;
  --green:    #34d399;
  --pink:     #f472b6;

  /* backgrounds */
  --bg:       #09090f;
  --bg-1:     #0f0f1a;
  --bg-2:     #13131f;
  --surface:  rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border:   rgba(255,255,255,0.08);

  /* text */
  --text:     #f1f0f8;
  --text-dim: #9d9ab8;
  --text-muted: #5c5a72;

  /* spacing */
  --radius:   1rem;
  --radius-lg:1.5rem;
  --radius-xl:2rem;

  /* type */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* nav */
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--purple-dim); border-radius: 3px; }

/* ── UTILS ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .75rem;
}

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

.section-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
}

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

.section-header .section-desc { margin: 0 auto; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: .02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  color: #fff;
  box-shadow: 0 0 24px rgba(167,139,250,.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(167,139,250,.5);
  filter: brightness(1.1);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

.nav.scrolled {
  background: rgba(9,9,15,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.01em;
}

.logo-voice { color: var(--cyan); }
.logo-tech  { color: var(--purple); }
.logo-4teens{ color: var(--gold); }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.nav__links a:hover { color: var(--text); background: var(--surface); }

.nav__cta {
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: .5rem 1.25rem !important;
}

.nav__cta:hover { opacity: .9; transform: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.nav__mobile {
  display: none;
  background: rgba(9,9,15,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.nav__mobile a {
  display: block;
  padding: .75rem 1rem;
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 500;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav__mobile a:hover { color: var(--text); background: var(--surface); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob--1 {
  width: 600px; height: 600px;
  background: var(--purple);
  top: -150px; left: -150px;
  animation-delay: 0s;
}

.blob--2 {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: 20%; right: -100px;
  animation-delay: -3s;
}

.blob--3 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: 0; left: 30%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.25);
  padding: .4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.white-text { color: #fff; }

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(12px);
}

.stat { text-align: center; }

.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
  display: block;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about { background: var(--bg-1); }

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

.about__body {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .3s, box-shadow .3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.info-card--cyan  { border-color: rgba(34,211,238,.2); }
.info-card--purple{ border-color: rgba(167,139,250,.2); }
.info-card--gold  { border-color: rgba(251,191,36,.2); }
.info-card--green { border-color: rgba(52,211,153,.2); }

.info-card--cyan:hover  { box-shadow: 0 16px 40px rgba(34,211,238,.1); }
.info-card--purple:hover{ box-shadow: 0 16px 40px rgba(167,139,250,.1); }
.info-card--gold:hover  { box-shadow: 0 16px 40px rgba(251,191,36,.1); }
.info-card--green:hover { box-shadow: 0 16px 40px rgba(52,211,153,.1); }

.info-card__icon { font-size: 1.75rem; margin-bottom: .75rem; }

.info-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.info-card p { font-size: .875rem; color: var(--text-dim); line-height: 1.6; }

/* ── JOURNEY ────────────────────────────────────────────── */
.journey { background: var(--bg); }

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

.track__line {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(to right, var(--cyan), var(--purple), var(--gold), var(--green));
  z-index: 0;
}

.day-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-card__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid;
  background: var(--bg);
  z-index: 1;
  margin-bottom: 1.5rem;
  position: relative;
}

.day-card--1 .day-card__dot { border-color: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.day-card--2 .day-card__dot { border-color: var(--purple); box-shadow: 0 0 16px var(--purple); }
.day-card--3 .day-card__dot { border-color: var(--gold); box-shadow: 0 0 16px var(--gold); }
.day-card--4 .day-card__dot { border-color: var(--green); box-shadow: 0 0 16px var(--green); }

.day-card__number {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}

.day-card--1 .day-card__number { color: var(--cyan); }
.day-card--2 .day-card__number { color: var(--purple); }
.day-card--3 .day-card__number { color: var(--gold); }
.day-card--4 .day-card__number { color: var(--green); }

.day-card__body {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  width: 100%;
  flex: 1;
  transition: transform .3s, box-shadow .3s;
}

.day-card:hover .day-card__body {
  transform: translateY(-6px);
}

.day-card--1:hover .day-card__body { box-shadow: 0 20px 48px rgba(34,211,238,.12); border-color: rgba(34,211,238,.3); }
.day-card--2:hover .day-card__body { box-shadow: 0 20px 48px rgba(167,139,250,.12); border-color: rgba(167,139,250,.3); }
.day-card--3:hover .day-card__body { box-shadow: 0 20px 48px rgba(251,191,36,.12); border-color: rgba(251,191,36,.3); }
.day-card--4:hover .day-card__body { box-shadow: 0 20px 48px rgba(52,211,153,.12); border-color: rgba(52,211,153,.3); }

.day-card__date {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .2rem .75rem;
  display: inline-block;
  margin-bottom: .6rem;
  letter-spacing: .03em;
}

.day-card__phase {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .75rem;
}

.day-card--1 .day-card__phase { color: var(--cyan); }
.day-card--2 .day-card__phase { color: var(--purple); }
.day-card--3 .day-card__phase { color: var(--gold); }
.day-card--4 .day-card__phase { color: var(--green); }

.day-card__icon { font-size: 2rem; margin-bottom: .75rem; }

.day-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.day-card__text { font-size: .85rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 1rem; }

.day-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.day-card__list li {
  font-size: .8rem;
  color: var(--text-dim);
  padding-left: 1rem;
  position: relative;
}

.day-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.journey__legend {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-dim);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot--1 { background: var(--cyan); }
.legend-dot--2 { background: var(--purple); }
.legend-dot--3 { background: var(--gold); }
.legend-dot--4 { background: var(--green); }

/* ── WHY JOIN ───────────────────────────────────────────── */
.why { background: var(--bg-1); }

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

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.2);
}

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

.why-card__icon { font-size: 2.25rem; margin-bottom: 1rem; }

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.why-card p { font-size: .875rem; color: var(--text-dim); line-height: 1.65; }

/* ── DETAILS ────────────────────────────────────────────── */
.details { background: var(--bg); }

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

.detail-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.detail-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(34,211,238,.08);
}

.detail-block__icon { font-size: 2rem; margin-bottom: 1rem; }

.detail-block h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: .75rem;
}

.detail-block p { font-size: .9rem; color: var(--text); line-height: 1.7; }

.detail-block strong { color: var(--cyan); }

/* ── TEAM ───────────────────────────────────────────────── */
.team { background: var(--bg-1); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.team__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

.team-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(167,139,250,.15);
  border-color: rgba(167,139,250,.3);
}

.team-card__avatar { margin-bottom: 1.25rem; }

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 0 0 4px rgba(167,139,250,.2), 0 0 32px rgba(167,139,250,.2);
}

.avatar-circle--uni {
  background: linear-gradient(135deg, var(--gold-dim), var(--cyan-dim));
  box-shadow: 0 0 0 4px rgba(251,191,36,.2), 0 0 32px rgba(251,191,36,.15);
}

.avatar-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(167,139,250,.35);
  box-shadow: 0 0 0 4px rgba(167,139,250,.1), 0 0 24px rgba(167,139,250,.2);
  display: block;
  margin: 0 auto;
}

.avatar-circle--green {
  background: linear-gradient(135deg, #059669, var(--cyan-dim));
  box-shadow: 0 0 0 4px rgba(52,211,153,.2), 0 0 32px rgba(52,211,153,.15);
}

.avatar-circle--pink {
  background: linear-gradient(135deg, #db2777, #a21caf);
  box-shadow: 0 0 0 4px rgba(244,114,182,.2), 0 0 32px rgba(244,114,182,.15);
}

.team-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.team-card__role {
  color: var(--purple);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.team-card__affil {
  color: var(--text-muted);
  font-size: .8rem;
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.card-linkedin {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .8rem;
  font-weight: 600;
  color: #0a66c2;
  transition: color .2s, transform .2s;
}

.team-card:hover .card-linkedin,
.jury-card:hover .card-linkedin {
  color: #378fe9;
  transform: translateX(3px);
}

.jury-card .card-linkedin {
  margin-top: 1rem;
}

/* ── JURY ───────────────────────────────────────────────── */
.jury { background: var(--bg); }

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

.jury-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.jury-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity .3s;
}

.jury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(167,139,250,.12);
  border-color: rgba(167,139,250,.25);
}

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

.jury-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--cyan-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 3px rgba(167,139,250,.2);
  overflow: hidden;
}

.jury-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.jury-card__photo--luanna {
  transform: scale(1.55);
  object-position: center center;
}

.jury-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  line-height: 1.3;
}

.jury-card__org {
  font-size: .8rem;
  color: var(--cyan);
  font-weight: 500;
}

.jury__prizes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.prize-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(167,139,250,.1);
  border: 1px solid rgba(167,139,250,.25);
  color: var(--purple);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.25rem;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .jury__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .jury__grid { grid-template-columns: 1fr; }
}

/* ── APPLY ──────────────────────────────────────────────── */
.apply { background: var(--bg); }

.apply__inner {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}

.apply__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.apply__blob--1 {
  width: 400px; height: 400px;
  background: var(--purple);
  opacity: .08;
  top: -100px; left: -100px;
}

.apply__blob--2 {
  width: 300px; height: 300px;
  background: var(--cyan);
  opacity: .08;
  bottom: -80px; right: -80px;
}

.apply__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.apply__desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── APPLY PERKS ────────────────────────────────────────── */
.apply__perks {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.apply__perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  min-width: 150px;
  text-align: left;
  transition: transform .3s, border-color .3s;
}

.apply__perk:hover {
  transform: translateY(-3px);
  border-color: rgba(167,139,250,.3);
}

.apply__perk-icon { font-size: 1.75rem; flex-shrink: 0; }

.apply__perk span {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.apply__perk strong { color: var(--text); font-family: var(--font-head); font-size: .9rem; }

/* ── APPLY TIMELINE ─────────────────────────────────────── */
.apply__timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(167,139,250,.2);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  gap: 0;
}

.apply__timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.apply__timeline-item div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.apply__timeline-item strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.apply__timeline-item span {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: .2rem;
}

.apply__timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.apply__timeline-dot--open   { background: var(--cyan);   box-shadow: 0 0 14px var(--cyan); }
.apply__timeline-dot--close  { background: var(--gold);   box-shadow: 0 0 14px var(--gold); }
.apply__timeline-dot--notify { background: var(--purple); box-shadow: 0 0 14px var(--purple); }
.apply__timeline-dot--event  { background: var(--green);  box-shadow: 0 0 14px var(--green); }

.apply__timeline-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--border), rgba(167,139,250,.3), var(--border));
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .apply__timeline { flex-direction: column; gap: 1.25rem; align-items: flex-start; padding: 1.75rem; }
  .apply__timeline-divider { width: 1px; height: 24px; margin-left: 8px; background: linear-gradient(to bottom, var(--border), rgba(167,139,250,.3), var(--border)); }
  .apply__perks { flex-direction: column; align-items: center; }
}

.apply__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.apply__note { color: var(--text-muted); font-size: .85rem; }
.apply__note a { color: var(--cyan); text-decoration: none; }
.apply__note a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand .nav__logo { font-size: 1.5rem; display: block; margin-bottom: .75rem; }

.footer__brand p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: 1rem;
}

.footer__social-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}

.footer__social-link:hover { color: var(--cyan); }

.footer__links h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}

.footer__links a:hover { color: var(--cyan); }

.footer__fnr {
  margin-top: 1.25rem;
}

.footer__fnr-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.footer__fnr-logo {
  width: 140px;
  opacity: .75;
  transition: opacity .3s;
}

.footer__fnr-logo:hover { opacity: 1; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
}

/* ── HERO LOGO ──────────────────────────────────────────── */
.hero__logo {
  margin-bottom: 1.25rem;
}

.hero__logo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(167,139,250,.35);
  box-shadow: 0 0 0 8px rgba(167,139,250,.08), 0 0 48px rgba(167,139,250,.3);
  background: #fff;
}

/* ── ACTIVE NAV ─────────────────────────────────────────── */
.nav__links a.active {
  color: var(--text);
  background: var(--surface);
}

/* ── LANGUAGE FLAGS STRIP ───────────────────────────────── */
.lang-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.lang-strip__inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-dim);
  font-weight: 500;
}

.lang-item span { font-size: 1.1rem; }

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

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .journey__track { grid-template-columns: repeat(2, 1fr); }
  .track__line { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .details__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__cards { grid-template-columns: 1fr; }

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

  .why__grid { grid-template-columns: 1fr; }
  .details__grid { grid-template-columns: 1fr; }
  .team__grid,
  .team__grid--3 { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero__stats { gap: 1rem; padding: 1rem 1.25rem; }
  .stat__number { font-size: 1.35rem; }

  .apply__inner { padding: 3rem 1.5rem; }

  .section { padding: 4rem 0; }
}

/* ── FIND US ─────────────────────────────────────── */
.findus { background: var(--bg-card); }

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

.findus__card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.findus__map-wrap {
  overflow: hidden;
  line-height: 0;
}

.findus__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.findus__map-img:hover { transform: scale(1.02); }

.findus__info {
  padding: 2.5rem 2rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.findus__info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.findus__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.findus__info-row strong { color: var(--text); display: block; margin-bottom: 0.15rem; }
.findus__info-row div { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

.findus__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.findus__actions .btn {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
}

@media (max-width: 900px) {
  .findus__card {
    grid-template-columns: 1fr;
  }
  .findus__info {
    padding: 0 1.5rem 2rem;
  }
  .findus__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .apply__actions { flex-direction: column; align-items: center; }
  .journey__legend { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
