/* =========================
   Cortex Media — Styles
   ========================= */

@font-face {
  font-family: 'Advaken Sans Expanded';
  src: url('fonts/advaken-sans-expanded.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — site bg #0c0c16, cards gradient #111621 → #0a0f15 */
  --bg: #0c0c16;
  --bg-2: #0a0f15;
  --panel: #111621;
  --panel-2: #131826;
  --panel-3: #1a1428;
  --card: #111621;
  --card-end: #0a0f15;

  --border: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(184, 96, 255, 0.35);

  --text: #f3f0fb;
  --muted: #a8a3bf;
  --muted-2: #76708e;
  --num: rgba(255, 255, 255, 0.06);

  --primary: #b860ff;
  --primary-2: #d68bff;
  --primary-3: #9333ea;
  --primary-soft: rgba(184, 96, 255, 0.12);
  --on-primary: #0a0a14;

  --grad: linear-gradient(135deg, #d97cff 0%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, rgba(217,124,255,.18) 0%, rgba(168,85,247,.18) 100%);
  --grad-line: linear-gradient(90deg, #d97cff 0%, #a855f7 100%);
  --grad-card: linear-gradient(180deg, #111621 0%, #0a0f15 100%);

  --shadow: 0 30px 80px -20px rgba(168, 85, 247, 0.35);
  --shadow-sm: 0 12px 30px -10px rgba(168, 85, 247, 0.28);
  --shadow-card: 0 18px 50px -25px rgba(0, 0, 0, 0.7);

  --radius: 18px;
  --radius-lg: 28px;

  --font-display: 'Advaken Sans Expanded', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(184, 96, 255, 0.35); color: #fff; }

/* ============ Background ============ */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: #0c0c16;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .18;
  will-change: transform;
}
.glow-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: -220px; left: -180px;
  animation: float1 18s ease-in-out infinite;
}
.glow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #d97cff 0%, transparent 70%);
  top: 35%; right: -300px;
  opacity: .12;
  animation: float2 22s ease-in-out infinite;
}
.glow-3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #6b21a8 0%, transparent 70%);
  bottom: -240px; left: 35%;
  opacity: .14;
  animation: float3 26s ease-in-out infinite;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px, 40px) scale(1.1); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-100px, 60px) scale(1.08); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-80px) scale(1.12); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Stars (faint) — disabled for cleaner solid background */
.bg-glow::before { content: none; }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

/* ============ Display font helper ============ */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1180px;
  z-index: 100;
  transition: top .3s ease, transform .3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 16px 14px 24px;
  background: rgba(17, 22, 33, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transition: background .3s, border-color .3s;
}
.navbar.scrolled .nav-inner {
  background: rgba(12, 12, 22, 0.92);
  border-color: var(--border-strong);
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-family: var(--font-display); letter-spacing: .04em; }
.logo-mark { display: inline-flex; transition: transform .4s; }
.logo:hover .logo-mark { transform: rotate(-15deg) scale(1.05); }
.logo-text { font-size: 20px; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-2);
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--on-primary);
  position: relative;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.nav-cta::before,
.nav-cta::after { display: none !important; }
.nav-cta > * { color: var(--on-primary); }
.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08) saturate(1.05);
  box-shadow: 0 18px 36px -12px rgba(184, 96, 255, 0.7);
}
.nav-cta:active { transform: translateY(0); }

.burger { display: none; width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.04); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.burger span { width: 16px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s;
  user-select: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-primary {
  background: var(--grad);
  color: var(--on-primary);
  box-shadow: 0 14px 30px -10px rgba(184, 96, 255, 0.6), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left .6s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0a8ff 0%, #b860ff 100%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(184, 96, 255, 0.7); }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; color: var(--on-primary); }

.btn-ghost {
  background: rgba(20, 16, 31, 0.75);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(28, 22, 44, 0.85);
  border-color: rgba(184, 96, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(184, 96, 255, 0.25);
}

/* ============ HERO ============ */
.hero {
  padding: 170px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(184, 96, 255, 0.08);
  border: 1px solid rgba(184, 96, 255, 0.25);
  color: #d6b8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184,96,255,.18), transparent);
  transform: translateX(-100%);
  animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 70%, 100% { transform: translateX(-100%); }
  35% { transform: translateX(100%); }
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 12px var(--primary-2);
  animation: pulse 1.6s ease-in-out infinite;
  position: relative;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 8.4vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 22px 0 24px;
}
.t-white { color: #fff; }
.t-grad {
  background: linear-gradient(135deg, #5a4d75 0%, #2e2740 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  transition: all .25s;
  letter-spacing: .3px;
}
.tag:hover {
  border-color: rgba(184, 96, 255, 0.35);
  color: var(--text);
  transform: translateY(-2px);
  background: rgba(184, 96, 255, 0.06);
}

/* hero visual */
.hero-visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.card-stack { position: relative; width: 380px; height: 440px; transform-style: preserve-3d; }
.hero-card {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(217,124,255,.10), transparent 60%),
    linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px -20px rgba(168, 85, 247, 0.4),
    0 0 0 1px rgba(184, 96, 255, 0.08),
    inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  animation: cardFloat 7s ease-in-out infinite;
  transition: transform .4s ease;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.45), transparent 50%, rgba(217, 124, 255, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}
.hero-card-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 96, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 96, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 50%, transparent 100%);
  pointer-events: none;
}
.hero-card-inner {
  padding: 50px 40px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  position: relative;
  z-index: 1;
}
.cc-logo {
  filter: drop-shadow(0 14px 36px rgba(184, 96, 255, 0.55));
}
.cc-logo img {
  width: 180px; height: auto;
  display: block;
}
@keyframes spinSlow {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.hero-card-grid { width: 64%; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hcg-line {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.hcg-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184,96,255,.5), transparent);
  transform: translateX(-100%);
  animation: scan 2.8s ease-in-out infinite;
}
.hcg-line.short {
  width: 55%;
  background: linear-gradient(90deg, rgba(184,96,255,.55), rgba(184,96,255,.25));
}
.hcg-line.short::after { animation-delay: .8s; }
@keyframes scan {
  0%, 50%, 100% { transform: translateX(-100%); }
  25% { transform: translateX(200%); }
}

.floater {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  overflow: hidden;
}
.floater::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.35), transparent 50%, rgba(217, 124, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.float-line {
  display: block;
  height: 5px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.float-line.short {
  width: 60%;
  background: linear-gradient(90deg, rgba(184, 96, 255, 0.55), rgba(184, 96, 255, 0.2));
}

.f1 {
  width: 110px; height: 64px;
  top: -22px; left: -38px;
  animation: cardFloat 5.5s ease-in-out infinite;
}
.f2 {
  width: 130px; height: 70px;
  bottom: -22px; right: -42px;
  animation: cardFloat 7s ease-in-out infinite reverse;
}

@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.scroll-down {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: 60px auto 50px;
  border-radius: 999px;
  background: rgba(20, 16, 32, 0.6);
  border: 1px solid var(--border-strong);
  color: var(--muted);
  position: relative;
  left: 50%; transform: translateX(-50%);
  animation: bounce 2.2s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.scroll-down:hover { color: var(--primary-2); border-color: rgba(184,96,255,.35); }
@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
}
.stat {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 96, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform .6s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 96, 255, 0.3);
  background: rgba(22, 17, 36, 0.85);
}
.stat:hover::before { transform: translateX(100%); }
.stat-ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  border: 1px solid rgba(184, 96, 255, 0.25);
  color: var(--primary-2);
  flex-shrink: 0;
  transition: transform .3s;
}
.stat-ic svg { width: 22px; height: 22px; }
.stat:hover .stat-ic { transform: scale(1.1) rotate(-5deg); }
.stat-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--muted-2);
  font-weight: 700;
}
.stat-value {
  font-size: 24px;
  font-weight: 800;
  margin-top: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: #fff;
}

/* ============ Section heads ============ */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-block;
}
.section-line {
  display: block;
  width: 80px; height: 4px;
  background: var(--grad-line);
  border-radius: 2px;
  margin: 18px auto 22px;
  position: relative;
  overflow: hidden;
}
.section-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: translateX(-100%);
  animation: lineShimmer 3s ease-in-out infinite;
}
@keyframes lineShimmer {
  0%, 60%, 100% { transform: translateX(-100%); }
  30% { transform: translateX(100%); }
}
.section-sub {
  color: var(--muted);
  margin: 0 auto;
  font-size: 17px;
  max-width: 620px;
  font-weight: 500;
}

/* ============ Perks ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.perk {
  position: relative;
  padding: 36px 32px 34px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-card);
}
.perk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(450px at var(--mx,50%) var(--my,0%), rgba(184, 96, 255, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.perk::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.5), transparent 40%, transparent 60%, rgba(184, 96, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.perk:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 96, 255, 0.18);
  box-shadow: 0 22px 50px -20px rgba(184, 96, 255, 0.35), var(--shadow-card);
}
.perk:hover::before, .perk:hover::after { opacity: 1; }
.perk-line {
  display: block;
  width: 56px; height: 4px;
  background: var(--grad-line);
  border-radius: 2px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: width .35s ease;
}
.perk:hover .perk-line { width: 88px; }
.perk-num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--num);
  letter-spacing: 0.06em;
  transition: color .3s;
}
.perk:hover .perk-num { color: rgba(255,255,255,0.1); }
.perk h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.perk p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============ Requirements ============ */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.req-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.req-card.featured {
  border-color: rgba(184, 96, 255, 0.32);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(184, 96, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  box-shadow: 0 30px 60px -20px rgba(184, 96, 255, 0.45);
}
.req-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.6), rgba(217, 124, 255, 0.3) 50%, rgba(184, 96, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.req-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 96, 255, 0.3);
  box-shadow: 0 25px 50px -20px rgba(184, 96, 255, 0.4);
}
.req-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--on-primary);
  background: var(--grad);
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -6px rgba(184, 96, 255, 0.7);
  z-index: 2;
}
.req-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; position: relative; z-index: 1; }
.req-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  border: 1px solid rgba(184, 96, 255, 0.25);
  color: var(--primary-2);
  transition: transform .35s;
}
.req-card:hover .req-ic { transform: scale(1.1) rotate(-6deg); }
.req-ic.yt { color: #ff5b5b; background: rgba(255,91,91,.1); border-color: rgba(255,91,91,.25); }
.req-ic.tt { color: #25f4ee; background: rgba(37,244,238,.1); border-color: rgba(37,244,238,.25); }
.req-ic.tw { color: #a970ff; background: rgba(169,112,255,.12); border-color: rgba(169,112,255,.3); }
.req-head h3 { margin: 0; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.req-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.55;
  transition: transform .25s, color .25s;
}
.req-card:hover .req-list li { transform: translateX(2px); color: #cbc5dd; }
.req-list li > span:last-child { flex: 1; }
.req-list li b {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.req-list li em {
  font-style: italic;
  color: var(--muted-2);
  font-size: 13px;
  white-space: nowrap;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(184, 96, 255, 0.7);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ============ Levels / Conditions ============ */
.levels-intro {
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 24px 28px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
}
.levels-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.8;
}
.levels-intro b { color: var(--text); font-weight: 700; }

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.level {
  position: relative;
  padding: 34px 32px;
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.level:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 96, 255, 0.25);
  box-shadow: 0 25px 50px -20px rgba(184, 96, 255, 0.35);
}
.level.featured {
  border-color: rgba(184, 96, 255, 0.35);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(184, 96, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  box-shadow: 0 30px 60px -20px rgba(184, 96, 255, 0.45);
}
.level.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.6), rgba(217, 124, 255, 0.3) 50%, rgba(184, 96, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.level-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--on-primary);
  background: var(--grad);
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px -6px rgba(184, 96, 255, 0.7);
  z-index: 2;
}
.level-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.level-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary-2);
  padding: 5px 12px;
  background: rgba(184, 96, 255, 0.1);
  border: 1px solid rgba(184, 96, 255, 0.2);
  border-radius: 999px;
}
.level-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--num);
  letter-spacing: 0.06em;
}
.level h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -.2px;
}
.level-percent {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 0 22px;
  border-bottom: 1px dashed var(--border-strong);
  position: relative;
  z-index: 1;
}
.lp-value {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.lp-value small { font-size: 24px; }
.lp-sub {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 110px;
}
.level-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.level-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  transition: color .25s;
}
.level:hover .level-list li { color: #cbc5dd; }
.level-list li > span:last-child { flex: 1; }
.level-list li b {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.check {
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--grad-soft);
  border: 1px solid rgba(184, 96, 255, 0.3);
  flex-shrink: 0;
  position: relative;
  margin-top: 3px;
}
.check::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 4px; height: 8px;
  border-right: 2px solid var(--primary-2);
  border-bottom: 2px solid var(--primary-2);
  transform: rotate(45deg);
}

.levels-note {
  margin: 36px auto 0;
  max-width: 880px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.08), rgba(184, 96, 255, 0.02));
  border: 1px solid rgba(184, 96, 255, 0.2);
  border-radius: 14px;
}
.levels-note p { margin: 0; color: var(--text); font-size: 15.5px; font-weight: 500; line-height: 1.65; }
.note-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(184, 96, 255, 0.15);
  color: var(--primary-2);
  flex-shrink: 0;
}

/* ============ Form status ============ */
.form-status {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
  transition: color .25s;
}
.form-status.error { color: #ff7b7b; }
.form-status.success { color: #6ddc8b; }

/* honeypot — visible to bots only, hidden for humans */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: stretch;
  gap: 14px;
}
.step {
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 96, 255, 0.22);
  box-shadow: 0 20px 40px -20px rgba(184, 96, 255, 0.3);
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--on-primary);
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px -8px rgba(184, 96, 255, 0.7);
  font-family: var(--font-display);
  font-size: 17px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: var(--grad);
  filter: blur(10px);
  opacity: .35;
  z-index: -1;
}
.step h4 { margin: 0 0 10px; font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; font-weight: 500; }
.step-arrow {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 96, 255, 0.5), transparent);
  position: relative;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: -2px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

/* ============ Apply form ============ */
.apply-form {
  max-width: 760px;
  margin: 0 auto;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(184, 96, 255, 0.06), transparent 60%),
    linear-gradient(180deg, var(--card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px -30px rgba(184, 96, 255, 0.4), var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.apply-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184, 96, 255, 0.5), transparent 50%, rgba(217, 124, 255, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; position: relative; }
.field > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted-2);
  font-weight: 700;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 18px;
  background: #0a0f15;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(184, 96, 255, 0.55);
  background: #0d121a;
  box-shadow: 0 0 0 4px rgba(184, 96, 255, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { appearance: none; padding-right: 40px; cursor: pointer; }
.field select option { background: #111621; color: var(--text); }

.checkbox {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  margin: 4px 0 22px;
}
.checkbox input { display: none; }
.check-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #0a0f15;
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.check-mark::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid var(--on-primary);
  border-bottom: 2px solid var(--on-primary);
  transform: rotate(45deg) scale(0);
  transition: transform .2s;
}
.checkbox input:checked + .check-mark { background: var(--grad); border-color: transparent; }
.checkbox input:checked + .check-mark::after { transform: rotate(45deg) scale(1); }

.form-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
}
.form-note a { color: var(--primary-2); transition: color .2s; }
.form-note a:hover { color: #fff; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
  box-shadow: var(--shadow-card);
}
.faq-item[open] {
  border-color: rgba(184, 96, 255, 0.3);
  background: linear-gradient(180deg, #131826 0%, #0a0f15 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  color: #fff;
  transition: color .2s;
}
.faq-item:hover summary { color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-2);
  transition: transform .35s;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.75;
  animation: faqOpen .35s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA strip ============ */
.cta-strip { padding: 0 0 110px; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 50px;
  border-radius: 28px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(217, 124, 255, 0.18), transparent 50%),
    radial-gradient(120% 100% at 0% 100%, rgba(184, 96, 255, 0.22), transparent 50%),
    linear-gradient(180deg, #111621 0%, #0a0f15 100%);
  border: 1px solid rgba(184, 96, 255, 0.25);
  box-shadow: 0 30px 80px -30px rgba(184, 96, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: rotate(15deg);
  animation: ctaSweep 5s ease-in-out infinite;
}
@keyframes ctaSweep {
  0%, 100% { transform: translateX(-50%) rotate(15deg); }
  50% { transform: translateX(150%) rotate(15deg); }
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h3 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.3px;
  font-family: var(--font-display);
  color: #fff;
}
.cta-inner p { margin: 0; color: var(--muted); font-size: 16px; font-weight: 500; }

/* ============ Footer ============ */
.footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(10, 15, 21, .8));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--muted); margin: 14px 0 0; max-width: 320px; font-size: 15px; font-weight: 500; line-height: 1.6; }
.footer-col h5 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-weight: 800;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  padding: 7px 0;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--text); transform: translateX(3px); }
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0;
  transition: all .3s;
}
.socials a:hover {
  color: var(--on-primary);
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px -8px rgba(184, 96, 255, 0.5);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 13px;
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 460px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cta-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
}

@media (max-width: 640px) {
  .navbar { top: 12px; width: calc(100% - 24px); }
  .nav-cta { display: none; }
  .nav-inner { padding: 10px 12px 10px 18px; }
  .section { padding: 70px 0; }
  .hero { padding: 130px 0 30px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .apply-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-inner h3 { font-size: 22px; }
  .hero-visual { height: 420px; }
  .card-stack { width: 320px; height: 360px; }
  .cc-logo img { width: 140px; }
}
