/* ========================================================
   Special Academy — Refined Design System
   ======================================================== */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
  font-weight: 500;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* ===== Tokens ===== */
:root {
  --primary: #6366f1;
  --primary-h: #4f46e5;
  --accent: #a855f7;
  --success: #10b981;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1180px;
  --grad: linear-gradient(135deg, #6366f1, #a855f7);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,.12), rgba(168,85,247,.12));

  --t-fast: .25s;
  --t-med: .4s;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ===== Dark Theme ===== */
[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg-2: #0f0f17;
  --surface: #15151f;
  --surface-2: #1c1c28;
  --border: rgba(255,255,255,.06);
  --border-2: rgba(255,255,255,.12);
  --text: #f5f5f7;
  --text-2: #a1a1aa;
  --muted: #71717a;
  --card: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  --nav-bg: rgba(10,10,15,.7);
  --shadow: 0 30px 80px -30px rgba(0,0,0,.6);
  --shadow-sm: 0 10px 30px -15px rgba(0,0,0,.5);
}

/* ===== Light Theme ===== */
[data-theme="light"] {
  --bg: #fafafa;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f4f6;
  --border: rgba(10,10,15,.06);
  --border-2: rgba(10,10,15,.12);
  --text: #0a0a0f;
  --text-2: #52525b;
  --muted: #a1a1aa;
  --card: #ffffff;
  --nav-bg: rgba(255,255,255,.8);
  --shadow: 0 30px 80px -30px rgba(99,102,241,.18);
  --shadow-sm: 0 10px 30px -15px rgba(99,102,241,.15);
}

/* ===== Container ===== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ===== Background ===== */
.bg {
  position: fixed;
  inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .25;
}
.bg-glow.g1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; }
.bg-glow.g2 { width: 500px; height: 500px; background: var(--accent); bottom: -150px; left: -100px; }
[data-theme="light"] .bg-glow { opacity: .15; }

/* ===== Typography Helpers ===== */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.title {
  font-family: 'Sora', 'Cairo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lead {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.8;
  max-width: 620px;
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled { padding: 12px 0; border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px -8px rgba(99,102,241,.55);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { font-family: 'Sora', sans-serif; letter-spacing: -.4px; }
.logo-text b { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  transition: all .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.theme-btn:hover { border-color: var(--primary); }
.theme-btn i {
  position: absolute;
  transition: all .4s ease;
  font-size: 15px;
}
[data-theme="dark"] .theme-btn .fa-moon { opacity: 0; transform: translateY(-20px) rotate(-90deg); }
[data-theme="dark"] .theme-btn .fa-sun  { opacity: 1; transform: translateY(0); color: #facc15; }
[data-theme="light"] .theme-btn .fa-moon { opacity: 1; transform: translateY(0); color: #6366f1; }
[data-theme="light"] .theme-btn .fa-sun  { opacity: 0; transform: translateY(20px) rotate(90deg); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 4px;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all .3s ease;
}
.menu-btn span:nth-child(2) { width: 60%; margin-inline-end: auto; }
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(99,102,241,.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(168,85,247,.6);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--primary); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--primary-h);
}
.btn-light:hover { transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 14px; }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}
.hero-inner {
  display: grid;
  gap: 28px;
  justify-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.25); }
  50% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}

.hero-title {
  font-family: 'Sora', 'Cairo', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 920px;
}
.hero-lead {
  color: var(--text-2);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 620px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Hero Visual Window ===== */
.hero-visual {
  width: 100%;
  max-width: 820px;
  margin-top: 30px;
  position: relative;
}
.window {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: right;
}
.win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.win-bar > span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--border-2);
}
.win-bar > span:first-child { background: #ef4444; }
.win-bar > span:nth-child(2) { background: #f59e0b; }
.win-bar > span:nth-child(3) { background: #10b981; }
.win-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-2);
  font-family: 'Sora', monospace;
  background: var(--bg);
  padding: 5px 14px;
  border-radius: 6px;
  margin-inline: 24px;
}
.win-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 20px;
}
.win-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.win-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .25s ease;
}
.win-item i { font-size: 13px; width: 16px; text-align: center; }
.win-item.active {
  background: var(--grad-soft);
  color: var(--primary);
}
.win-main { display: flex; flex-direction: column; gap: 12px; }
.win-card {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.win-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}
.win-card-head b { font-family: 'Sora', sans-serif; color: var(--primary); font-size: 16px; }
.progress {
  height: 8px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  width: 72%;
  height: 100%;
  background: var(--grad);
  border-radius: 999px;
  animation: progressGrow 2s ease forwards;
  transform-origin: right;
}
@keyframes progressGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini-card {
  padding: 14px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: all .3s ease;
}
.mini-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.mini-card i { font-size: 18px; color: var(--primary); margin-bottom: 4px; }
.mini-card span { font-size: 11px; color: var(--text-2); }
.mini-card b { font-family: 'Sora', sans-serif; font-size: 14px; }

.float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.float-tag i { color: var(--success); }
.float-tag.t1 {
  top: 14%;
  right: -8%;
}
.float-tag.t2 {
  bottom: 18%;
  left: -8%;
  animation-delay: -2.5s;
}
.float-tag.t2 i { color: var(--accent); }
@keyframes floaty {
  50% { transform: translateY(-12px); }
}

/* ===== Stats ===== */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  margin-top: 40px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-lbl { color: var(--text-2); font-size: 13px; margin-top: 6px; }
.divider {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

/* ===== Section ===== */
.section { padding: 110px 0; }
.head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.head .lead { margin-inline: auto; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===== About ===== */
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check-list i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}

.about-cards {
  display: grid;
  gap: 16px;
}
.ac-card {
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  transition: all .35s var(--ease);
}
.ac-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.ac-card i {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.ac-2 i { color: var(--accent); background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(168,85,247,.04)); }
.ac-3 i { color: #ef4444; background: linear-gradient(135deg, rgba(239,68,68,.12), rgba(239,68,68,.04)); }
.ac-card h4 { font-family: 'Sora', sans-serif; font-size: 18px; margin-bottom: 6px; }
.ac-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.7; }

/* ===== Features (compact — fits one screen) ===== */
.section.features { padding-block: 80px; }
.features .head { margin-bottom: 40px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feat {
  --c: var(--primary);
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
/* top accent bar reveals on hover */
.feat::after {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 3px;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
/* soft color glow in the corner */
.feat::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--c);
  filter: blur(50px);
  opacity: 0;
  transition: opacity .4s ease;
}
.feat:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--c) 45%, var(--border-2));
  box-shadow: var(--shadow-sm);
}
.feat:hover::after { transform: scaleX(1); }
.feat:hover::before { opacity: .2; }
.feat > * { position: relative; z-index: 1; }
.feat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--c) 13%, transparent);
  color: var(--c);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: all .35s ease;
}
.feat:hover .feat-icon {
  background: var(--c);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 22px -10px var(--c);
}
.feat h3 {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.feat p {
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.55;
}

/* ===== Process ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 42px;
  inset-inline: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-2) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-2);
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 auto 20px;
  transition: all .4s var(--ease);
}
.step:hover .step-num {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 18px 40px -14px rgba(99,102,241,.55);
}
.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  margin-bottom: 8px;
}
.step p { color: var(--text-2); font-size: 14px; line-height: 1.7; padding: 0 10px; }

/* ===== Tracks (compact) ===== */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.track {
  --c: var(--primary);
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.track::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--c);
  filter: blur(50px);
  opacity: 0;
  transition: opacity .4s ease;
}
.track:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--c) 45%, var(--border-2));
  box-shadow: var(--shadow-sm);
}
.track:hover::before { opacity: .22; }
.track > * { position: relative; z-index: 1; }
.track-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.track-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  background: var(--c);
  transition: transform .35s ease;
}
.track:hover .track-icon { transform: scale(1.08) rotate(-5deg); }
.track h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.track > p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.track-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.track-stack span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 22%, transparent);
  color: color-mix(in srgb, var(--c) 70%, var(--text));
}

/* ===== Testimonial ===== */
.testimonial { padding: 80px 0; }
.testi-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testi-quote {
  font-size: 48px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .4;
  margin-bottom: 14px;
}
.testi-text {
  font-family: 'Sora', 'Cairo', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text);
  transition: opacity .3s ease;
}
.testi-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.testi-author strong { display: block; font-size: 15px; }
.testi-author span { color: var(--text-2); font-size: 13px; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  transition: all .3s ease;
}
.dot-btn.active {
  width: 26px;
  border-radius: 999px;
  background: var(--grad);
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.member {
  padding: 30px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .35s var(--ease);
}
.member:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.member-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 55%, #fff));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
}
.member-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed var(--c);
  opacity: .35;
  animation: rotate 14s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.member h4 { font-family: 'Sora', sans-serif; font-size: 17px; margin-bottom: 4px; }
.member .role { color: var(--text-2); font-size: 13px; display: block; margin-bottom: 14px; }

.socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--text-2);
  font-size: 13px;
  transition: all .3s ease;
}
.socials a:hover {
  background: var(--grad);
  color: #fff;
  transform: translateY(-3px);
}
.socials.big a { width: 42px; height: 42px; font-size: 15px; }

/* ===== CTA ===== */
.cta {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
}
.cta::before { width: 320px; height: 320px; background: #fff; top: -160px; right: -100px; }
.cta::after { width: 280px; height: 280px; background: #0a0a0f; bottom: -140px; left: -90px; }
.cta > * { position: relative; z-index: 1; }
.cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.cta p { opacity: .9; }

/* ===== Contact ===== */
.contact-info {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info b { display: block; font-size: 14px; }
.contact-info span { color: var(--text-2); font-size: 14px; }

.form {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 7px; }
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14.5px;
  transition: all .3s ease;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.15);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ===== Footer ===== */
.footer {
  margin-top: 60px;
  padding: 70px 0 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-grid > div > p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}
.foot-grid h5 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}
.foot-grid > div > a {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  padding: 5px 0;
  transition: all .25s ease;
}
.foot-grid > div > a:hover { color: var(--primary); transform: translateX(-4px); }

.newsletter {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 4px;
  margin-top: 14px;
  position: relative;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 16px;
  color: var(--text);
  outline: none;
  font-size: 13px;
}
.newsletter button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .25s ease;
}
.newsletter button:hover { transform: translateX(-3px); }
.newsletter .ok {
  position: absolute;
  inset: 0;
  background: var(--success);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  font-size: 13px;
  font-weight: 700;
}
.newsletter .ok.show { opacity: 1; }

.foot-bot {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.foot-bot .fa-heart { color: #ef4444; }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Selection ===== */
::selection { background: var(--primary); color: #fff; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .tracks-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps::before { display: none; }
  .win-body { grid-template-columns: 1fr; }
  .win-side { flex-direction: row; overflow-x: auto; }
  .float-tag.t1 { right: 0; }
  .float-tag.t2 { left: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px; inset-inline: 16px;
    flex-direction: column;
    padding: 12px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    transition: all .35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 10px 16px; border-radius: 10px; text-align: center; }
  .menu-btn { display: flex; }
  .nav-actions .btn-sm { display: none; }

  .hero { padding: 120px 0 50px; }
  .stats { padding: 22px; gap: 20px; }
  .divider { display: none; }

  .section { padding: 70px 0; }
  .head { margin-bottom: 44px; }

  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .tracks-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .form { padding: 24px; }

  .cta { flex-direction: column; text-align: center; padding: 36px 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-bot { justify-content: center; text-align: center; }

  .float-tag { font-size: 11px; padding: 8px 12px; }
  .testi-wrap { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1; }
  .float-tag.t1 { top: 8%; }
  .foot-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
