/* ==============================================
   DESIGN TOKENS — Vection Technologies style
   ============================================== */
:root {
  --bg:         #080808;
  --bg-alt:     #0F0F0F;
  --bg-card:    #111111;
  --surface:    rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --border-h:   rgba(233,30,140,0.35);

  --white:      #FFFFFF;
  --light:      #F8F9FA;
  --light-alt:  #F1F3F8;

  /* Vection gradient: pink → purple → cyan */
  --pink:       #E91E8C;
  --purple:     #7B2FF7;
  --cyan:       #00C8FF;
  --primary:    #E91E8C;
  --primary-h:  #C5186F;

  --grad:       linear-gradient(135deg, #E91E8C 0%, #7B2FF7 55%, #00C8FF 100%);
  --grad-h:     linear-gradient(135deg, #FF3FA0 0%, #9340FF 55%, #22D9FF 100%);
  --grad-text:  linear-gradient(90deg, #E91E8C 0%, #7B2FF7 50%, #00C8FF 100%);
  --grad-subtle:linear-gradient(135deg, rgba(233,30,140,.06) 0%, rgba(123,47,247,.06) 55%, rgba(0,200,255,.06) 100%);

  --text-dark:  #F0F0F0;
  --text-muted: #6B7280;
  --text-body:  #0A0A0A;
  --text-sub:   #4B5563;

  --success:    #10B981;
  --danger:     #EF4444;

  --nav-h:      72px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow:     0 8px 40px rgba(0,0,0,.6);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.25);
  --shadow-pink:0 8px 32px rgba(233,30,140,.25);

  --section-py: clamp(4.5rem, 9vw, 8rem);
  --container:  min(100%, 1200px);
  --px:         clamp(1.25rem, 5vw, 2.5rem);
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ==============================================
   LAYOUT
   ============================================== */
.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}
.section { padding-block: var(--section-py); }
.section--dark    { background: var(--bg); }
.section--alt     { background: var(--bg-alt); }
.section--light   { background: var(--light); color: var(--text-body); }
.section--light-alt { background: var(--light-alt); color: var(--text-body); }
.section--gradient { background: var(--grad); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2--60 { grid-template-columns: 1.4fr 1fr; }
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--primary); }

h1, .h1 {
  font-size: clamp(2.8rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
h2, .h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
}
h3, .h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
}
.lead--dark { color: var(--text-sub); }

.text-center { text-align: center; }
.max-65 { max-width: 65ch; }
.mx-auto { margin-inline: auto; }

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }

@media (max-width: 480px) {
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: .8rem 1.4rem;
    max-width: 100%;
  }
  .btn-lg { padding: .9rem 1.5rem; font-size: 1rem; }
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--grad-h);
  box-shadow: 0 12px 40px rgba(233,30,140,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn-ghost:hover {
  border-color: rgba(233,30,140,.5);
  color: var(--white);
  background: rgba(233,30,140,.06);
}

.btn-ghost--dark {
  color: var(--text-body);
  border-color: #D1D5DB;
}
.btn-ghost--dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(233,30,140,.05);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

/* ==============================================
   BADGE / CHIP
   ============================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .875rem;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
}
.badge--primary {
  background: rgba(233,30,140,.1);
  border-color: rgba(233,30,140,.3);
  color: #FF6DB8;
}

/* ==============================================
   CARD
   ============================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: rgba(233,30,140,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233,30,140,.08);
}
.card--light {
  background: #fff;
  border-color: #E5E7EB;
  box-shadow: var(--shadow-sm);
  color: var(--text-body);
}
.card--light:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(233,30,140,.12);
}

/* ==============================================
   NAVIGATION
   ============================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo__img { height: 52px; width: auto; display: block; }
.nav-logo__name { font-weight: 800; font-size: 1.1rem; color: var(--white); letter-spacing: -.01em; }
.nav-logo__sub  { font-size: .62rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: .15rem; }

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  #nav .container { padding-inline: 16px; gap: 12px; }
  .nav-logo__img { height: 38px; }
  #nav .btn-primary {
    padding: .55rem 1.1rem;
    font-size: .82rem;
    flex-shrink: 0;
  }
}

/* ==============================================
   HERO
   ============================================== */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Video background (reusable) */
.has-video-bg { position: relative; isolation: isolate; overflow: hidden; }
.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.section-video__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.82) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(233,30,140,.18) 0%, transparent 55%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media (prefers-reduced-motion: reduce) {
  .section-video { display: none; }
}

/* Grid overlay (subtle) */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Vection-style abstract blobs */
.hero-blob-1 {
  position: absolute;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse at 60% 40%,
    rgba(233,30,140,.22) 0%,
    rgba(123,47,247,.12) 45%,
    transparent 70%);
  top: -120px; right: -80px;
  filter: blur(60px);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  width: 400px; height: 350px;
  background: radial-gradient(ellipse,
    rgba(0,200,255,.1) 0%, transparent 70%);
  bottom: 60px; right: 30%;
  filter: blur(50px);
  pointer-events: none;
}
.hero-blob-3 {
  position: absolute;
  width: 300px; height: 250px;
  background: radial-gradient(ellipse,
    rgba(233,30,140,.08) 0%, transparent 70%);
  bottom: 0; left: 5%;
  filter: blur(40px);
  pointer-events: none;
}

#hero .container { position: relative; z-index: 1; }
#hero .grid-2 { padding-block: 1.75rem; align-items: center; }

.hero-text h1 { margin-bottom: 1rem; font-size: clamp(2.4rem, 6vw, 2.8rem); line-height: 1.15; }
.hero-text .lead { max-width: 52ch; margin-bottom: .5rem; font-size: .95rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  align-items: center;
}
.hero-trust .badge { font-size: .72rem; padding: .3rem .6rem; }
.cta-group { margin-top: 1rem; gap: .6rem; }

/* Dashboard mockup */
.dashboard-card {
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(233,30,140,.1);
}
.dashboard-header {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.dashboard-title { font-size: .7rem; font-weight: 600; color: var(--text-muted); margin-left: .5rem; letter-spacing: .06em; text-transform: uppercase; }
.dashboard-body { padding: 1.25rem; }

.dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
.dash-metric {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .75rem;
  text-align: center;
}
.dash-metric__num { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.dash-metric__num--pink { color: var(--pink); }
.dash-metric__num--cyan { color: var(--cyan); }
.dash-metric__num--white { color: var(--white); }
.dash-metric__label { font-size: .6rem; color: var(--text-muted); margin-top: .25rem; text-transform: uppercase; letter-spacing: .06em; }

.chart-label { font-size: .65rem; color: var(--text-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .06em; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; margin-bottom: 1rem; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(123,47,247,.25); transition: background .3s; }
.bar:hover { background: rgba(123,47,247,.6); }
.bar--accent { background: linear-gradient(to top, #E91E8C, #7B2FF7); }

.dash-list { display: flex; flex-direction: column; gap: .4rem; }
.dash-list-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; padding: .4rem .5rem;
  background: rgba(255,255,255,.02); border-radius: 5px;
}
.dash-list-item__label { color: var(--text-muted); }
.dash-list-item__val { font-weight: 700; }
.dash-list-item__val--g { color: var(--success); }
.dash-list-item__val--p { color: #A78BFA; }

/* TradingView wrap */
.tv-widget-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  max-width: 280px;
}

/* ==============================================
   STATS
   ============================================== */
#stats { background: var(--bg-alt); padding-block: clamp(3rem, 6vw, 5rem); }

.stat-card {
  text-align: center; padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.stat-card:hover { border-color: rgba(233,30,140,.3); transform: translateY(-3px); }
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.stat-card__num {
  font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; letter-spacing: -.03em;
}
.stat-card__label { font-size: .95rem; color: var(--text-muted); margin-top: .6rem; line-height: 1.5; }
.stat-card__source { font-size: .68rem; color: rgba(107,114,128,.45); margin-top: .4rem; }

/* ==============================================
   PILLAR
   ============================================== */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.pillar { display: flex; flex-direction: column; gap: 1rem; }
.pillar__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(233,30,140,.1);
  border: 1px solid rgba(233,30,140,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); flex-shrink: 0;
}
.pillar__icon--light {
  background: rgba(233,30,140,.07);
  border-color: rgba(233,30,140,.15);
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__title { font-weight: 700; font-size: 1.05rem; }
.pillar__title--dark { color: var(--text-body); }
.pillar__body { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.pillar__body--dark { color: var(--text-sub); }

.figura-section { background: #050505; color: #fff; }
.figura-section h2 { color: #fff; }
.figura-section .lead { color: rgba(255,255,255,.65); }

.figura-wave {
  position: relative;
  padding: 2rem 0 4rem;
}
.figura-wave__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.figura-wave__svg {
  display: block;
  width: 100%;
  height: 90px;
  margin-top: 1rem;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.figura-wave__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .6rem;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(233,30,140,.2);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.figura-wave__item--2 { transform: translateY(2rem); }
.figura-wave__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(233,30,140,.10);
  border: 1px solid rgba(233,30,140,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: .25rem;
}
.figura-wave__icon svg { width: 24px; height: 24px; }
.figura-wave__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.figura-wave__body {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 860px) {
  .figura-wave { padding: 1rem 0; }
  .figura-wave__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .figura-wave__svg { display: none; }
  .figura-wave__item--2 { transform: none; }
}

/* ==============================================
   FORM
   ============================================== */
.form-section {
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 5vw, 3rem);
  max-width: 640px;
  margin-inline: auto;
  box-shadow: var(--shadow);
}
@media (max-width: 420px) {
  .form-section { border-radius: var(--radius-md); }
}

.form-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
@media (min-width: 560px) { .form-grid--2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.form-group--full { grid-column: 1 / -1; }

.form-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .03em; }
.form-label span { color: var(--pink); }

.form-input, .form-select {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 1rem; font-family: inherit;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(233,30,140,.05);
}
.form-input::placeholder { color: rgba(107,114,128,.4); }
.form-select option { background: #111; color: var(--text-dark); }

.radio-group { display: flex; flex-direction: column; gap: .45rem; }
.radio-label {
  display: flex; align-items: flex-start; gap: .6rem;
  cursor: pointer; padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.07);
  transition: border-color .2s, background .2s;
  font-size: .87rem; color: var(--text-muted); line-height: 1.4;
}
.radio-label:has(input:checked) {
  border-color: var(--pink);
  background: rgba(233,30,140,.08);
  color: var(--text-dark);
}
.radio-label input[type="radio"], .radio-label input[type="checkbox"] {
  margin-top: .15rem; accent-color: var(--pink); flex-shrink: 0;
}

.check-label {
  display: flex; align-items: flex-start; gap: .6rem;
  cursor: pointer; font-size: .84rem; color: var(--text-muted); line-height: 1.5;
}
.check-label input[type="checkbox"] { margin-top: .2rem; accent-color: var(--pink); flex-shrink: 0; }
.check-label a { color: #FF6DB8; text-decoration: underline; }

.form-error-msg { font-size: .78rem; color: var(--danger); display: none; }
.form-group.has-error .form-input,
.form-group.has-error .form-select { border-color: var(--danger); }
.form-group.has-error .form-error-msg { display: block; }

.form-alert { display: none; padding: 1rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; margin-bottom: 1rem; }
.form-alert--success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #6EE7B7; }
.form-alert--error   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2);  color: #FCA5A5; }

.form-note { font-size: .74rem; color: rgba(107,114,128,.55); text-align: center; margin-top: .75rem; line-height: 1.5; }

/* ==============================================
   COMPARISON
   ============================================== */
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .comparison-grid { grid-template-columns: 1fr 1fr; } }

.comparison-col { border-radius: var(--radius-md); overflow: hidden; }
.comparison-col__header {
  padding: 1rem 1.5rem; font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; gap: .6rem;
}
.comparison-col--no .comparison-col__header {
  background: rgba(239,68,68,.1); color: #FCA5A5;
  border: 1px solid rgba(239,68,68,.18); border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.comparison-col--yes .comparison-col__header {
  background: rgba(233,30,140,.1); color: #FF6DB8;
  border: 1px solid rgba(233,30,140,.2); border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.comparison-col__body {
  padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .75rem;
}
.comparison-col--no .comparison-col__body {
  background: rgba(239,68,68,.04);
  border: 1px solid rgba(239,68,68,.12); border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.comparison-col--yes .comparison-col__body {
  background: rgba(233,30,140,.04);
  border: 1px solid rgba(233,30,140,.12); border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.comparison-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.5; color: var(--text-muted); }
.comparison-item__icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ==============================================
   DIGITAL GAP SYMPTOMS
   ============================================== */
.symptom-list { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.symptom-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem;
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm); font-size: .92rem; color: var(--text-body);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: border-color .2s;
}
.symptom-item:hover { border-color: var(--primary); }
.symptom-item__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

.stat-inline { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-inline__item {
  padding: 1rem 1.25rem; background: var(--light-alt);
  border: 1px solid #D1D5DB; border-radius: var(--radius-sm); flex: 1; min-width: 160px;
}
.stat-inline__num { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.stat-inline__label { font-size: .77rem; color: var(--text-sub); line-height: 1.3; margin-top: .2rem; }

/* ==============================================
   ECOSYSTEM
   ============================================== */
.ecosystem-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .ecosystem-grid { grid-template-columns: 1fr 1fr; } }

.ecosystem-col {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #111 0%, #0A0A0A 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  overflow: hidden;
}
.ecosystem-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.ecosystem-col--you::before { background: linear-gradient(90deg, #FF6DB8, transparent); }
.ecosystem-col--us::before  { background: linear-gradient(90deg, #A78BFA, transparent); }

.ecosystem-col__badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(255,109,184,.12); color: #FF6DB8;
  border: 1px solid rgba(255,109,184,.25);
  margin-bottom: 1rem;
}
.ecosystem-col__badge--us {
  background: rgba(167,139,250,.12); color: #A78BFA;
  border-color: rgba(167,139,250,.25);
}
.ecosystem-col__headline {
  font-size: 1.35rem; font-weight: 700; color: #fff;
  margin-bottom: 1.25rem; line-height: 1.3;
}
.ecosystem-col__list { display: flex; flex-direction: column; gap: .85rem; list-style: none; padding: 0; }
.ecosystem-col__list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.5;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ecosystem-col__list li:last-child { border-bottom: 0; }
.ecosystem-col__icon {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.ecosystem-col__icon--you { background: rgba(255,109,184,.15); color: #FF6DB8; }
.ecosystem-col__icon--us  { background: rgba(167,139,250,.15); color: #A78BFA; }

/* Hero candidacy form */
.hero-title { display: block; }
.hero-title__line { display: block; }
.nowrap { white-space: nowrap; }
.hero-form { width: 100%; max-width: 420px; margin-inline: auto; }
@media (min-width: 900px) { .hero-form { margin-left: auto; margin-right: 0; } }
.hero-form__card {
  background: linear-gradient(180deg, #111 0%, #0A0A0A 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.hero-form__head { margin-bottom: .9rem; }
.hero-form__title {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin: .35rem 0 .15rem; line-height: 1.25;
}
.hero-form__sub { font-size: .8rem; color: rgba(255,255,255,.55); }
.hero-form__mini { display: flex; flex-direction: column; gap: .55rem; }
.hero-form__mini .form-input {
  font-size: .88rem; padding: .6rem .75rem; border-radius: 8px;
}
.hero-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.check-label--mini {
  font-size: .75rem; color: rgba(255,255,255,.7); line-height: 1.35;
  display: flex; align-items: flex-start; gap: .5rem; margin-top: .15rem;
}
.check-label--mini a { color: var(--pink); text-decoration: underline; }
.hero-form__mini .btn { padding: .65rem 1rem; font-size: .92rem; margin-top: .2rem; }
.hero-form__foot {
  font-size: .72rem; color: rgba(255,255,255,.5);
  text-align: center; margin-top: .35rem;
}
.hero-form__foot a { color: var(--pink); text-decoration: underline; }

/* Event photos gallery */
.events-gallery {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 780px) { .events-gallery { grid-template-columns: repeat(3, 1fr); } }
.events-gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.08);
}
.events-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.events-gallery__item:hover img { transform: scale(1.05); }
.events-gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff; font-size: .85rem; font-weight: 600;
}

.ecosystem-logos {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.eco-logo-badge {
  font-weight: 800; font-size: .92rem; letter-spacing: -.01em;
  padding: .4rem .875rem; border-radius: 50px; border: 1.5px solid;
}
.eco-logo-badge--tdb  { color: #FF6DB8; border-color: rgba(233,30,140,.3); }
.eco-logo-badge--vect { color: #A78BFA; border-color: rgba(167,139,250,.3); }
.eco-divider { width: 1px; height: 28px; background: var(--border); }
.eco-ticker { font-size: .75rem; color: var(--text-muted); }

/* ==============================================
   STEPS (onboarding)
   ============================================== */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2.5rem; }
.step:last-child { padding-bottom: 0; }
.step__left { display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(233,30,140,.35); z-index: 1;
}
.step__line { flex: 1; width: 2px; background: rgba(255,255,255,.07); margin-top: .5rem; }
.step:last-child .step__line { display: none; }
.step__content { padding-top: .6rem; }
.step__label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: .3rem; }
.step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.step__body { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.step-badge {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: .6rem;
  padding: .3rem .75rem;
  background: rgba(233,30,140,.1); border: 1px solid rgba(233,30,140,.25);
  border-radius: 50px; font-size: .73rem; font-weight: 600; color: #FF6DB8;
}

/* ==============================================
   INVESTMENT (gradient section)
   ============================================== */
.investment-box {
  max-width: 680px; margin-inline: auto;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  backdrop-filter: blur(12px);
}
.investment-box h2 { color: #fff; margin-bottom: 1rem; }
.investment-box .lead { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }

.check-list { display: flex; flex-direction: column; gap: .75rem; text-align: left; max-width: 340px; margin-inline: auto; margin-bottom: 2.5rem; }
.check-item { display: flex; align-items: center; gap: .75rem; font-size: 1rem; font-weight: 500; color: #fff; }
.check-item__icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; flex-shrink: 0;
}

/* ==============================================
   OUTCOME CARDS (training)
   ============================================== */
.outcome-card {
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  color: var(--text-body);
}
.outcome-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(233,30,140,.1); border-color: var(--primary); }
.outcome-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.outcome-card__icon svg { width: 22px; height: 22px; }
.outcome-card__title { font-weight: 700; color: var(--text-body); margin-bottom: .35rem; }
.outcome-card__body { font-size: .87rem; color: var(--text-sub); line-height: 1.55; }

.highlight-box {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(233,30,140,.06), rgba(123,47,247,.06));
  border: 1.5px solid rgba(233,30,140,.18);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  text-align: center; color: var(--text-body);
  font-weight: 600; font-size: .97rem; line-height: 1.6;
}

/* ==============================================
   MARKET ROLES
   ============================================== */
.market-roles { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.market-role {
  padding: .6rem 1.25rem;
  background: rgba(233,30,140,.07);
  border: 1.5px solid rgba(233,30,140,.2);
  border-radius: 50px; font-weight: 700; font-size: .9rem; color: var(--pink);
}

/* ==============================================
   SECTION QUOTE
   ============================================== */
.section-quote {
  max-width: 52ch; margin-top: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600; font-style: italic; color: var(--text-sub);
  border-left: 3px solid var(--pink); padding-left: 1.5rem;
}

/* ==============================================
   DIVIDER
   ============================================== */
.divider {
  width: 48px; height: 3px;
  background: var(--grad); border-radius: 2px; margin: 1rem auto 0;
}
.divider--left { margin-left: 0; }

/* ==============================================
   FAQ
   ============================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid #E5E7EB; }
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--text-body);
  background: #fff; transition: background .2s;
  list-style: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { background: #FAFAFA; }
.faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: #F3F4F6; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, transform .3s; color: var(--text-sub);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(233,30,140,.1); color: var(--primary); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: #FAFBFF; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; font-size: .91rem; color: var(--text-sub); line-height: 1.75; }
.faq-answer-inner p + p { margin-top: .6rem; }
.faq-answer-inner ul { list-style: none; margin: .75rem 0; display: flex; flex-direction: column; gap: .4rem; padding-left: 0; }
.faq-answer-inner li::before { content: '· '; color: var(--pink); font-weight: 700; }
.faq-answer__highlight { margin-top: .75rem !important; font-weight: 600; color: var(--text-body); }

/* ==============================================
   FOOTER
   ============================================== */
#footer { background: #040404; border-top: 1px solid rgba(255,255,255,.05); padding-block: 3.5rem 2rem; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.75; max-width: 34ch; margin-top: 1rem; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a { font-size: .87rem; color: rgba(107,114,128,.7); transition: color .2s; }
.footer-col li a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: .78rem; color: rgba(107,114,128,.4);
}

/* ==============================================
   STICKY CTA (mobile)
   ============================================== */
#sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90; background: rgba(8,8,8,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: .875rem var(--px);
}
#sticky-cta.visible { display: block; }
@media (min-width: 900px) { #sticky-cta { display: none !important; } }

/* ==============================================
   ANIMATIONS
   ============================================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ==============================================
   UTILITIES
   ============================================== */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

hr.section-rule { border: none; border-top: 1px solid var(--border); }

/* ==============================================
   MOTION EFFECTS
   ============================================== */

/* 1. Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pink), #7B2FF7, #00C8FF);
  background-size: 200% 100%;
  z-index: 9999;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(233,30,140,.6);
  animation: gradientShift 6s linear infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* 2. Animated gradient text */
.text-gradient {
  background: linear-gradient(90deg, #E91E8C, #7B2FF7, #00C8FF, #E91E8C);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

/* 3. Reveal variants (work with .visible class via IntersectionObserver) */
.reveal { opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal--up    { transform: translateY(40px); }
.reveal--down  { transform: translateY(-40px); }
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--zoom  { transform: scale(.9); }
.reveal--blur  { filter: blur(12px); }
.reveal.visible { opacity: 1; transform: none; filter: none; }

/* Stagger delays */
.reveal[data-delay="1"].visible { transition-delay: .1s; }
.reveal[data-delay="2"].visible { transition-delay: .2s; }
.reveal[data-delay="3"].visible { transition-delay: .3s; }
.reveal[data-delay="4"].visible { transition-delay: .4s; }
.reveal[data-delay="5"].visible { transition-delay: .5s; }

/* 4. Magnetic / Tilt — smooth transitions handled via JS transforms */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.tilt { transition: transform .4s cubic-bezier(.2,.7,.2,1); transform-style: preserve-3d; will-change: transform; }
.tilt > * { transform: translateZ(0); }

/* 5. Mouse parallax target */
.parallax { transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform; }

/* 6. Floating animation (for badges/icons) */
.float-y { animation: floatY 6s ease-in-out infinite; }
.float-y--slow { animation: floatY 9s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* 7. Pulse glow */
.pulse-glow { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,140,.4); }
  50% { box-shadow: 0 0 0 18px rgba(233,30,140,0); }
}

/* 8. Shimmer sweep (on cards) */
.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,.08) 50%,
    transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}
.shimmer:hover::after { animation: shimmerSweep 1.1s ease; }
@keyframes shimmerSweep {
  to { transform: translateX(100%); }
}

/* 9. Underline sweep on links */
.link-sweep {
  position: relative; display: inline-block;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size .35s ease;
}
.link-sweep:hover { background-size: 100% 1px; }

/* 10. Card hover lift */
.hover-lift { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

/* 11. Marquee / ticker */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 3rem;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: 3rem; flex-shrink: 0;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* 12. Number counter flash on update */
[data-counter].counted { animation: counterFlash .6s ease; }
@keyframes counterFlash {
  0% { text-shadow: 0 0 0 rgba(233,30,140,0); }
  50% { text-shadow: 0 0 24px rgba(233,30,140,.7); }
  100% { text-shadow: 0 0 0 rgba(233,30,140,0); }
}

/* 14. Canvas particles — layer for hero */
.particles-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

/* 15. Aurora animated blobs — large moving gradients */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora__orb {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora__orb--1 { background: radial-gradient(circle, #E91E8C 0%, transparent 60%); top: -20%; left: -10%; animation: auroraFloat1 18s ease-in-out infinite; }
.aurora__orb--2 { background: radial-gradient(circle, #7B2FF7 0%, transparent 60%); bottom: -25%; right: -15%; animation: auroraFloat2 22s ease-in-out infinite; }
.aurora__orb--3 { background: radial-gradient(circle, #00C8FF 0%, transparent 60%); top: 30%; right: 20%; animation: auroraFloat3 26s ease-in-out infinite; }

@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(10vw, 8vh) scale(1.1); }
  66% { transform: translate(-5vw, 12vh) scale(.95); }
}
@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-15vw, -10vh) scale(1.15); }
}
@keyframes auroraFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-8vw, 6vh) scale(.9); }
  80% { transform: translate(6vw, -8vh) scale(1.05); }
}

/* 16. Animated gradient border (rotating conic) */
.gradient-border { position: relative; isolation: isolate; }
.gradient-border::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    rgba(233,30,140,.0) 0deg,
    rgba(233,30,140,.9) 80deg,
    rgba(123,47,247,.9) 160deg,
    rgba(0,200,255,.7) 240deg,
    rgba(233,30,140,.0) 320deg
  );
  -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;
  opacity: 0;
  transition: opacity .4s ease;
  animation: rotateConic 6s linear infinite;
  z-index: -1;
}
.gradient-border:hover::before { opacity: 1; }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rotateConic { to { --angle: 360deg; } }

/* 17. SVG path draw-in animation */
.svg-draw path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawPath 3s cubic-bezier(.4,0,.2,1) forwards;
}
.svg-draw circle {
  opacity: 0;
  animation: fadeInCircle .6s ease forwards;
}
.svg-draw circle:nth-of-type(1) { animation-delay: 1s; }
.svg-draw circle:nth-of-type(2) { animation-delay: 1.8s; }
.svg-draw circle:nth-of-type(3) { animation-delay: 2.6s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes fadeInCircle { to { opacity: 1; } }

/* 18. Spotlight cursor (follows mouse on sections) */
.spotlight {
  position: relative;
  overflow: hidden;
}
.spotlight::after {
  content: '';
  position: absolute;
  top: var(--spot-y, -50%);
  left: var(--spot-x, -50%);
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(233,30,140,.18) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}
.spotlight:hover::after { opacity: 1; }

/* 19. Ripple on click */
.btn { position: relative; overflow: hidden; }
.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: rippleExpand .7s ease-out;
  pointer-events: none;
}
@keyframes rippleExpand {
  to { transform: scale(4); opacity: 0; }
}

/* 20. Word-by-word text reveal */
.split-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) skewY(6deg);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.split-words.visible .word {
  opacity: 1;
  transform: translateY(0) skewY(0);
}
.split-words .word + .word { margin-left: .25em; }

/* 21. Marquee keywords band */
.keyword-band {
  padding: 2rem 0;
  background: linear-gradient(90deg, #0B0B0B 0%, #111 50%, #0B0B0B 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.keyword-band__item {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.15);
  white-space: nowrap;
  transition: color .3s ease;
  -webkit-text-stroke: 1px rgba(255,255,255,.25);
}
.keyword-band__item:hover { color: var(--pink); -webkit-text-stroke-color: var(--pink); }
.keyword-band__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0; align-self: center;
  box-shadow: 0 0 12px rgba(233,30,140,.7);
}

/* 22. Number scale-in counter */
.stat-card__num { display: inline-block; transition: transform .6s cubic-bezier(.34,1.56,.64,1); }
.stat-card.visible .stat-card__num { animation: numberPop .8s cubic-bezier(.34,1.56,.64,1); }
@keyframes numberPop {
  0% { transform: scale(.3); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* 23. Image scroll-scale (grows as it enters viewport) */
.img-grow {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.img-grow img {
  transform: scale(1.2);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.img-grow.visible img { transform: scale(1); }

/* 24. Glitch text (subtle hover) */
.glitch { position: relative; display: inline-block; }
.glitch:hover::before,
.glitch:hover::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
}
.glitch:hover::before { animation: glitchShift1 .4s infinite; color: #E91E8C; mix-blend-mode: screen; }
.glitch:hover::after  { animation: glitchShift2 .4s infinite; color: #00C8FF; mix-blend-mode: screen; }
@keyframes glitchShift1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
}
@keyframes glitchShift2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -1px); }
  40% { transform: translate(-2px, 1px); }
}

/* 13. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .parallax, .magnetic, .tilt { transition: none !important; transform: none !important; filter: none !important; }
  .reveal { opacity: 1 !important; }
  .float-y, .float-y--slow, .pulse-glow, .text-gradient, .scroll-progress,
  .marquee__track, .aurora__orb, .svg-draw path, .svg-draw circle,
  .gradient-border::before, .split-words .word { animation: none !important; }
  .split-words .word { opacity: 1 !important; transform: none !important; }
  .particles-canvas { display: none; }
}
