/* ══════════════════════════════════════════════════════════════
   VYNDRA — TRAINING.CSS
   Página de metodología / cómo entrenamos
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ══ CSS VARIABLES (temas de color) ═════════════════════════ */
:root {
  --acc: #a855f7;
  --acc-rgb: 168, 85, 247;
  --acc-dim: rgba(168, 85, 247, 0.1);
  --acc-glow: 0 0 18px rgba(168, 85, 247, 0.35), 0 0 55px rgba(168, 85, 247, 0.12);
  --acc-glow-hi: 0 0 28px rgba(168, 85, 247, 0.7), 0 0 80px rgba(168, 85, 247, 0.22);

  --bg: #03060f;
  --bg2: #060b18;
  --bg3: #0a1020;
  --surface: rgba(168, 85, 247, 0.04);
  --border: rgba(168, 85, 247, 0.12);

  --text1: #e8f0ff;
  --text2: rgba(232, 240, 255, 0.58);
  --text3: rgba(232, 240, 255, 0.3);

  --ff-d: 'Bebas Neue', sans-serif;
  --ff-b: 'Rajdhani', sans-serif;
  --ff-m: 'Share Tech Mono', monospace;
}

/* Temas de color */
[data-theme="red"]    { --acc: #ff4655; --acc-rgb: 255,70,85; }
[data-theme="green"]  { --acc: #22c55e; --acc-rgb: 34,197,94; }
[data-theme="amber"]  { --acc: #f59e0b; --acc-rgb: 245,158,11; }
[data-theme="purple"] { --acc: #a855f7; --acc-rgb: 168,85,247; }
[data-theme="cyan"]   { --acc: #00ffe7; --acc-rgb: 0,255,231; }
[data-theme="blue"]   { --acc: #a855f7; --acc-rgb: 168,85,247; }
[data-theme="pink"]   { --acc: #ec4899; --acc-rgb: 236,72,153; }
[data-theme="orange"] { --acc: #fb923c; --acc-rgb: 251,146,60; }
[data-theme="purple"] { --acc: #7b2fff; --acc-rgb: 123,47,255; }
/* ══ RESET ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--bg); color: var(--text1); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--acc); border-radius: 2px; }

/* ══ CONTAINER ══════════════════════════════════════════════ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ══ NAVBAR ══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center; transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(3, 6, 15, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--acc-rgb), 0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text { font-family: var(--ff-d); font-size: 22px; letter-spacing: 0.14em; color: var(--text1); }
.nav-logo-text span { color: var(--acc); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { padding: 8px 14px; border-radius: 6px; font-family: var(--ff-b); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--text2); text-decoration: none; transition: all 0.22s; }
.nav-links a:hover, .nav-links a.active { color: var(--text1); background: rgba(var(--acc-rgb), 0.08); }
.nav-links a.active { color: var(--acc); }
.nav-auth { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text1); border-radius: 2px; }
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: rgba(3, 6, 15, 0.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--acc-rgb), 0.1);
  flex-direction: column; padding: 16px 28px 20px; gap: 4px;
}
.nav-mobile a { padding: 11px 12px; border-radius: 7px; color: var(--text2); text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.2s; }
.nav-mobile a:hover { color: var(--acc); background: rgba(var(--acc-rgb), 0.08); }
.nav-mobile-auth { display: flex; gap: 8px; margin-top: 8px; }

/* ══ BUTTONS ═════════════════════════════════════════════════ */
.btn-ghost {
  padding: 8px 18px; border-radius: 7px; background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text2);
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.06em; transition: all 0.22s;
}
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn-primary {
  padding: 9px 20px; border-radius: 7px; background: var(--acc);
  border: none; color: #03060f; font-family: var(--ff-b);
  font-size: 13px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.06em; transition: all 0.22s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { box-shadow: var(--acc-glow-hi); transform: translateY(-1px); }
.btn-outline {
  padding: 9px 20px; border-radius: 7px; background: transparent;
  border: 1px solid rgba(var(--acc-rgb), 0.3); color: var(--acc);
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.06em; transition: all 0.22s;
}
.btn-outline:hover { background: rgba(var(--acc-rgb), 0.08); border-color: var(--acc); }
.btn-xl { padding: 13px 28px; font-size: 15px; border-radius: 9px; }

/* ══ THEME SELECTOR ══════════════════════════════════════════ */
.theme-selector {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99998;
}
.theme-toggle-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(var(--acc-rgb), 0.15);
  border: 1px solid rgba(var(--acc-rgb), 0.35);
  color: var(--acc); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s; box-shadow: var(--acc-glow);
}
.theme-toggle-btn:hover { background: rgba(var(--acc-rgb), 0.28); transform: scale(1.08); }
.theme-panel {
    position: absolute;
    bottom: 52px;
    right: 0;
    background: rgba(6, 11, 24, 0.95);
    border: 1px solid rgba(var(--acc-rgb), 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    display: none;
    backdrop-filter: blur(18px);
    min-width: 140px;
    z-index: 99999;
}
.theme-panel.open { display: block; animation: fadeUp 0.22s ease; }
.theme-label { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 10px; }
.theme-swatches { display: flex; gap: 7px; flex-wrap: wrap; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active { border-color: white; box-shadow: 0 0 8px rgba(255,255,255,0.4); }

/* ══ HERO ════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--acc-rgb), 0.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--acc-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--acc-rgb), 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -100px; left: 30%;
  background: rgba(var(--acc-rgb), 0.06);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px; bottom: 0; right: 5%;
  background: rgba(var(--acc-rgb), 0.04);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; opacity: 0.4; }
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); box-shadow: var(--acc-glow);
  animation: pulse 2s ease-in-out infinite;
}
.hero-eyebrow span {
  font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(var(--acc-rgb), 0.65);
}
.hero-title {
  font-family: var(--ff-d); font-size: clamp(54px, 7vw, 96px);
  line-height: 0.88; letter-spacing: 0.04em; margin-bottom: 18px;
}
.accent-text { color: var(--acc); }
.hero-desc { font-size: 15px; color: var(--text2); line-height: 1.65; max-width: 500px; margin-bottom: 28px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.hstat-val { font-family: var(--ff-d); font-size: 36px; letter-spacing: 0.04em; color: var(--acc); line-height: 1; }
.hstat-label { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text3); margin-top: 3px; }
.hstat-div { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.08); }
.hero-cta { display: flex; align-items: center; gap: 12px; }

/* Hero chart card */
.hero-visual { position: relative; }
.hero-chart-card {
  background: rgba(var(--acc-rgb), 0.04);
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  border-radius: 16px; padding: 24px;
  position: relative; overflow: hidden;
  box-shadow: var(--acc-glow);
}
.hero-chart-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0.4;
}
.hcc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.hcc-label { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); }
.hcc-badge {
  font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.12em;
  color: #22c55e; background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25); border-radius: 4px;
  padding: 3px 8px;
}
.hcc-chart { height: 120px; margin-bottom: 16px; }
.hcc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 14px; }
.hcc-stat strong { display: block; font-family: var(--ff-d); font-size: 22px; color: var(--acc); }
.hcc-stat span { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3); }

/* ══ SECTION NAV ═════════════════════════════════════════════ */
.section-nav {
  position: sticky; top: 64px; z-index: 100;
  background: rgba(3, 6, 15, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--acc-rgb), 0.08);
  padding: 0;
}
.snav-inner {
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.snav-inner::-webkit-scrollbar { display: none; }
.snav-btn {
  padding: 14px 22px; background: none; border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text3);
  cursor: pointer; transition: all 0.22s; white-space: nowrap;
}
.snav-btn:hover { color: var(--text2); }
.snav-btn.active { color: var(--acc); border-bottom-color: var(--acc); }

/* ══ SECTIONS ════════════════════════════════════════════════ */
.t-section { padding: 90px 0; }
.t-section-dark { background: var(--bg2); }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(var(--acc-rgb), 0.1) 50%, transparent 95%);
}

.sec-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.sec-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); box-shadow: var(--acc-glow); }
.sec-eyebrow span { font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(var(--acc-rgb), 0.6); }
.sec-head { margin-bottom: 52px; }
.sec-title {
  font-family: var(--ff-d); font-size: clamp(36px, 5vw, 60px);
  line-height: 0.9; letter-spacing: 0.05em; margin-bottom: 14px;
}
.sec-title span { color: var(--acc); }
.sec-sub { font-size: 15px; color: var(--text2); line-height: 1.65; max-width: 580px; }

/* ══ METHOD STEPS ════════════════════════════════════════════ */
.method-steps { display: flex; flex-direction: column; gap: 80px; }
.mstep {
  display: grid; grid-template-columns: 60px 1fr 360px;
  gap: 36px; align-items: start; position: relative;
}
.mstep::after {
  content: ''; position: absolute; left: 28px; top: 60px;
  width: 1px; height: calc(100% + 80px);
  background: linear-gradient(to bottom, rgba(var(--acc-rgb), 0.2), transparent);
}
.mstep:last-child::after { display: none; }
.mstep-rev { grid-template-columns: 60px 1fr 360px; }
.mstep-num {
  font-family: var(--ff-d); font-size: 64px; line-height: 1;
  color: rgba(var(--acc-rgb), 0.12); letter-spacing: 0.04em;
  position: sticky; top: 120px;
}
.mstep-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(var(--acc-rgb), 0.1);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--acc); margin-bottom: 14px;
}
.mstep-title {
  font-family: var(--ff-d); font-size: 28px; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.mstep-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.mstep-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mstep-tags span {
  font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: rgba(var(--acc-rgb), 0.07);
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  color: rgba(var(--acc-rgb), 0.7);
}
.mstep-visual {
  background: rgba(var(--acc-rgb), 0.03);
  border: 1px solid rgba(var(--acc-rgb), 0.1);
  border-radius: 14px; padding: 20px; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
}

/* Adapt visual bars */
.adapt-visual {
  display: flex; align-items: flex-end; gap: 8px; height: 120px; width: 100%;
}
.av-bar {
  flex: 1; background: rgba(var(--acc-rgb), 0.15);
  border-radius: 4px 4px 0 0;
  height: var(--h, 50%);
  position: relative; transition: height 0.6s cubic-bezier(.2,.8,.3,1);
  cursor: default;
}
.av-bar::after {
  content: attr(data-label);
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-m); font-size: 8px; color: var(--text3);
  letter-spacing: 0.1em;
}
.av-bar-hi { background: rgba(var(--acc-rgb), 0.45) !important; box-shadow: 0 0 12px rgba(var(--acc-rgb), 0.25); }
.av-bar:hover { background: rgba(var(--acc-rgb), 0.3); }

/* Community nodes */
.community-nodes {
  width: 100%; height: 140px; position: relative;
}

/* Chart mini */
.chart-mini { width: 100%; height: 140px; }

/* ══ PLATFORMS ═══════════════════════════════════════════════ */
.platforms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.platform-card {
  background: var(--bg2); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; padding: 28px; position: relative;
  overflow: hidden; transition: all 0.32s;
}
.platform-card:hover {
  border-color: rgba(var(--acc-rgb), 0.25);
  transform: translateY(-4px);
}
.pc-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--acc-rgb), 0.06) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.32s;
}
.platform-card:hover .pc-glow { opacity: 1; }
.pc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pc-icon { font-size: 28px; }
.pc-badge {
  font-family: var(--ff-m); font-size: 7px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  color: var(--acc); background: rgba(var(--acc-rgb), 0.1);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
}
.pc-title { font-family: var(--ff-d); font-size: 26px; letter-spacing: 0.06em; margin-bottom: 10px; }
.pc-desc { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }
.pc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pc-feat { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text2); }
.pcf-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); flex-shrink: 0; }
.pc-games { display: flex; gap: 5px; flex-wrap: wrap; }
.pc-games span {
  font-family: var(--ff-m); font-size: 7px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07); color: var(--text3);
}
.pc-cta {
  display: inline-flex; align-items: center;
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  color: var(--acc); text-decoration: none;
  transition: gap 0.2s; gap: 6px;
}
.pc-cta:hover { gap: 10px; }

/* ══ COMMUNITY FLOW ══════════════════════════════════════════ */
.community-flow {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 60px;
  background: rgba(var(--acc-rgb), 0.03);
  border: 1px solid rgba(var(--acc-rgb), 0.1);
  border-radius: 16px; overflow: hidden;
}
.cf-step {
  flex: 1; padding: 32px 24px; position: relative;
  border-right: 1px solid rgba(var(--acc-rgb), 0.08);
  transition: background 0.24s;
}
.cf-step:last-of-type { border-right: none; }
.cf-step:hover { background: rgba(var(--acc-rgb), 0.04); }
.cf-num {
  font-family: var(--ff-d); font-size: 48px; line-height: 1;
  color: rgba(var(--acc-rgb), 0.1); margin-bottom: 8px;
}
.cf-icon { font-size: 22px; margin-bottom: 10px; }
.cf-step h4 { font-family: var(--ff-d); font-size: 18px; letter-spacing: 0.06em; margin-bottom: 8px; }
.cf-step p { font-size: 12px; color: var(--text2); line-height: 1.6; }
.cf-arrow {
  align-self: center; padding: 0 4px;
  font-family: var(--ff-m); font-size: 16px; color: rgba(var(--acc-rgb), 0.3);
  display: none;
}

.community-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(var(--acc-rgb), 0.08);
  border: 1px solid rgba(var(--acc-rgb), 0.1);
  border-radius: 12px; overflow: hidden;
}
.cstat { background: var(--bg2); padding: 28px 24px; text-align: center; }
.cstat-num { font-family: var(--ff-d); font-size: 44px; line-height: 1; color: var(--acc); margin-bottom: 6px; }
.cstat-label { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text3); line-height: 1.5; }

/* ══ PERSONALIZATION ═════════════════════════════════════════ */
.personalization-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; align-items: start;
}
.personalization-inputs {
  background: var(--bg2); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; padding: 32px;
}
.pi-title {
  font-family: var(--ff-d); font-size: 22px; letter-spacing: 0.08em;
  margin-bottom: 24px; color: var(--text1);
}
.pi-field { margin-bottom: 20px; }
.pi-field label {
  font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 8px;
}
.pi-select-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pi-option {
  padding: 7px 14px; border-radius: 7px; background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--ff-b); font-size: 12px; font-weight: 600;
  color: var(--text3); cursor: pointer; transition: all 0.2s;
}
.pi-option:hover { color: var(--text2); border-color: rgba(var(--acc-rgb), 0.25); }
.pi-option.active {
  color: var(--acc); background: rgba(var(--acc-rgb), 0.1);
  border-color: rgba(var(--acc-rgb), 0.4);
}
.pi-generate {
  width: 100%; padding: 13px; border-radius: 9px;
  background: var(--acc); border: none; color: #03060f;
  font-family: var(--ff-b); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.22s; margin-top: 8px;
  letter-spacing: 0.04em;
}
.pi-generate:hover { box-shadow: var(--acc-glow-hi); transform: translateY(-1px); }

.personalization-output {
  background: rgba(var(--acc-rgb), 0.03);
  border: 1px solid rgba(var(--acc-rgb), 0.12);
  border-radius: 16px; padding: 32px; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.po-placeholder { text-align: center; color: var(--text3); }
.pop-icon { font-size: 36px; margin-bottom: 12px; }
.po-placeholder p { font-size: 13px; line-height: 1.6; max-width: 220px; }
.po-result { width: 100%; }
.por-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.por-badge {
  font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #22c55e; background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25); border-radius: 4px; padding: 4px 9px;
}
.por-time { font-family: var(--ff-m); font-size: 12px; color: var(--text3); }
.por-title { font-family: var(--ff-d); font-size: 30px; letter-spacing: 0.06em; margin-bottom: 10px; }
.por-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.por-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.por-step {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; padding: 12px 14px;
}
.pors-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(var(--acc-rgb), 0.15); border: 1px solid rgba(var(--acc-rgb), 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-m); font-size: 10px; color: var(--acc); flex-shrink: 0;
}
.por-step strong { display: block; font-size: 13px; font-weight: 700; }
.por-step span { font-family: var(--ff-m); font-size: 9px; letter-spacing: 0.1em; color: var(--text3); }
.por-cta {
  display: inline-flex; align-items: center;
  padding: 11px 20px; border-radius: 8px;
  background: var(--acc); color: #03060f;
  font-family: var(--ff-b); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all 0.22s;
}
.por-cta:hover { box-shadow: var(--acc-glow-hi); transform: translateY(-1px); }

/* ══ RESULTS ═════════════════════════════════════════════════ */
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 52px;
}
.result-card {
  background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px; padding: 24px; text-align: center;
  transition: all 0.28s;
}
.result-card:hover { border-color: rgba(var(--acc-rgb), 0.2); transform: translateY(-3px); }
.rc-icon { font-size: 26px; margin-bottom: 10px; }
.rc-stat { font-family: var(--ff-d); font-size: 44px; color: var(--acc); line-height: 1; margin-bottom: 6px; }
.rc-label { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.rc-time { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.rc-bar { height: 3px; background: rgba(255, 255, 255, 0.06); border-radius: 2px; overflow: hidden; }
.rcb-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: var(--acc); box-shadow: 0 0 8px rgba(var(--acc-rgb), 0.5);
  transition: width 1.2s cubic-bezier(.2,.8,.3,1);
}
.rcb-fill.animated { width: var(--w); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard {
  background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px; padding: 22px; transition: all 0.28s;
}
.tcard:hover { border-color: rgba(var(--acc-rgb), 0.18); transform: translateY(-2px); }
.tcard-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tcard-avatar {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(var(--acc-rgb), 0.15); border: 1px solid rgba(var(--acc-rgb), 0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 18px; color: var(--acc); flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 700; }
.tcard-rank { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.1em; color: var(--text3); margin-top: 1px; }
.tcard-stars { margin-left: auto; color: var(--acc); font-size: 11px; letter-spacing: 1px; }
.tcard-text { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ══ PREMIUM COMPARE ═════════════════════════════════════════ */
.premium-compare {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 20px; max-width: 800px; margin: 0 auto;
}
.pcomp-col {
  background: var(--bg2); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px; padding: 28px; position: relative; overflow: hidden;
}
.pcomp-col.pcomp-premium {
  border-color: rgba(var(--acc-rgb), 0.3);
  box-shadow: var(--acc-glow);
}
.pcomp-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--acc-rgb), 0.08) 0%, transparent 60%);
}
.pcomp-popular {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--ff-m); font-size: 7px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #03060f; background: var(--acc); border-radius: 4px; padding: 4px 9px;
}
.pcomp-header { margin-bottom: 24px; }
.pcomp-label { font-family: var(--ff-m); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 8px; }
.pcomp-price { font-family: var(--ff-d); font-size: 52px; line-height: 1; color: var(--text1); }
.pcomp-price span { font-family: var(--ff-b); font-size: 16px; color: var(--text3); }
.pcomp-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pf { font-size: 13px; display: flex; align-items: center; gap: 9px; }
.pf::before { content: ''; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.pf-ok { color: var(--text2); }
.pf-ok::before { content: '✓'; color: #22c55e; font-weight: 700; font-size: 11px; }
.pf-no { color: var(--text3); }
.pf-no::before { content: '×'; color: var(--text3); font-size: 14px; }
.pf-new { color: var(--text1); }
.pcomp-cta {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: 9px; font-family: var(--ff-b);
  font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.22s;
}
.pcomp-cta-free { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text1); }
.pcomp-cta-free:hover { background: rgba(255, 255, 255, 0.1); }
.pcomp-cta-premium { background: var(--acc); color: #03060f; border: none; }
.pcomp-cta-premium:hover { box-shadow: var(--acc-glow-hi); transform: translateY(-1px); }

/* ══ CTA FINAL ═══════════════════════════════════════════════ */
.cta-final { padding: 80px 0; }
.cta-final-inner {
  position: relative; overflow: hidden;
  background: rgba(var(--acc-rgb), 0.04);
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  border-radius: 20px; padding: 60px 48px;
  text-align: center;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--acc-rgb), 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final-title { font-family: var(--ff-d); font-size: clamp(42px, 6vw, 72px); line-height: 0.9; letter-spacing: 0.05em; margin-bottom: 16px; }
.cta-final-title span { color: var(--acc); }
.cta-final-desc { font-size: 15px; color: var(--text2); margin-bottom: 28px; }
.cta-final-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ══ FOOTER ══════════════════════════════════════════════════ */
.footer { padding: 28px 0; background: var(--bg); border-top: 1px solid rgba(var(--acc-rgb), 0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: var(--ff-d); font-size: 20px; letter-spacing: 0.14em; color: var(--text1); text-decoration: none; }
.footer-logo span { color: var(--acc); }
.footer-copy { font-size: 12px; color: var(--text3); }

/* ══ REVEAL ANIMATIONS ════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══ KEYFRAMES ════════════════════════════════════════════════ */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mstep { grid-template-columns: 40px 1fr; }
  .mstep-visual { display: none; }
  .mstep::after { left: 18px; }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .personalization-layout { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .premium-compare { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-auth { display: none; }
  .nav-toggle { display: flex; }
  .t-section { padding: 60px 0; }
  .mstep { grid-template-columns: 1fr; }
  .mstep-num { display: none; }
  .mstep::after { display: none; }
  .community-flow { flex-direction: column; }
  .cf-step { border-right: none; border-bottom: 1px solid rgba(var(--acc-rgb), 0.08); }
  .cf-step:last-of-type { border-bottom: none; }
  .platforms-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .cta-final-inner { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .community-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 14px; }
  .hstat-div { display: none; }
}