/* ======================================================================
   ROOT DESIGN TOKENS
   ====================================================================== */
:root {
  --bg-main: #0A0A0A;
  --bg-surface-1: #131313;
  --bg-surface-2: #1C1B1B;
  --bg-white: #F4F2EE;
  --bg-off-white: #E8E5DF;
  --accent-primary: #FF5625;
  --accent-secondary: #00D4FF;
  --gradient-accent: linear-gradient(90deg, #FF5625 0%, #00D4FF 100%);
  --text-main: #F4F2EE;
  --text-muted: #888888;
  --text-subtle: #555555;
  --text-dark: #0A0A0A;
  --border-color: #2A2A2A;
  --border-dark: #1C1B1B;
  --border-light: #D0CCC5;
  --success-green: #00C853;

  --font-headline: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: var(--bg-main);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-padding {
  padding: 120px 0;
}

.text-orange {
  color: var(--accent-primary);
}

.text-cyan {
  color: var(--accent-secondary);
}

/* Gradient text reserved ONLY for specific key elements */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Material Symbols Minimalist Customization */
.material-symbols-outlined {
  font-size: 22px;
  vertical-align: middle;
  user-select: none;
}

/* ======================================================================
   REVEAL ANIMATIONS
   ====================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.36s;
}

/* ======================================================================
   MARQUEE / TICKER WITH GRADIENT BORDERS
   ====================================================================== */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: var(--bg-surface-1);
  padding: 16px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.marquee-wrap::before {
  top: 0;
}

.marquee-wrap::after {
  bottom: 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 2px;
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-track span::after {
  content: '◆';
  font-size: 10px;
  color: var(--accent-primary);
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ======================================================================
   NAVBAR
   ====================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  user-select: none;
}

.logo .hyr {
  color: var(--text-main);
}

.logo .iq {
  color: var(--accent-primary);
}

.nav-cta {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--bg-main);
  background: var(--accent-primary);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(2px);
  background: #FF6B3D;
}

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-main);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 86, 37, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 86, 37, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes gridPulse {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.hero-watermark {
  position: absolute;
  right: -30px;
  bottom: -20px;
  font-family: var(--font-mono);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 700;
  color: var(--text-main);
  opacity: 0.025;
  user-select: none;
  pointer-events: none;
  line-height: 0.8;
  letter-spacing: -6px;
  white-space: nowrap;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-secondary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: tagPulse 2s ease-in-out infinite;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes tagPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0);
  }
}

.hero-headline {
  font-size: clamp(44px, 7vw, 88px);
  color: var(--text-main);
  margin-bottom: 28px;
  line-height: 0.92;
}

.hero-subheadline {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--accent-primary);
  color: #0A0A0A;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 42px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(2px);
  background: #FF6B3D;
}

.btn-primary:active {
  transform: translateY(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 18px 24px;
  border: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  color: var(--text-main);
  border-color: var(--accent-primary);
  transform: translateY(2px);
}

/* ======================================================================
   HERO VISUAL — FLAT DASHBOARD CARD
   ====================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.hero-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 28px;
  width: 400px;
  position: relative;
  overflow: hidden;
  animation: phoneFloat 7s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
}

.hc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hc-badge {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
  background: rgba(255, 86, 37, 0.1);
  border: 1px solid rgba(255, 86, 37, 0.3);
  padding: 3px 10px;
  border-radius: 2px;
}

.hc-cycle {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-subtle);
  letter-spacing: 0.5px;
}

.hc-week {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.hc-week span {
  color: var(--accent-primary);
}

.hc-obj {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 3px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.hc-obj-label {
  font-family: var(--font-headline);
  font-size: 9px;
  font-weight: 800;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-obj-label .material-symbols-outlined {
  font-size: 12px;
}

.hc-obj-text {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.hc-next-label {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-next-label .material-symbols-outlined {
  font-size: 14px;
}

.hc-session {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-primary);
  border-radius: 3px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.hc-session-name {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hc-session-dur {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hc-session-dur .material-symbols-outlined {
  font-size: 13px;
}

.hc-plan-label {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hc-days {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hc-day {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 10px 14px;
}

.hc-day-num {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 900;
  color: #2a2a2a;
  line-height: 1;
  min-width: 28px;
}

.hc-day-num.active {
  color: var(--accent-primary);
}

.hc-day-info {
  flex: 1;
  overflow: hidden;
}

.hc-day-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-day-name {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 800;
  color: #f4f2ee;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-day-name.locked {
  color: #2a2a2a;
}

.hc-day-dur {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #444;
  white-space: nowrap;
}

/* Stats row under hero */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ======================================================================
   SECTION: PARA TODOS LOS NIVELES — WHITE BLOCK
   ====================================================================== */
.section-levels {
  background: var(--bg-white);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.section-levels::before {
  content: 'HYRIQ';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-headline);
  font-size: 200px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.section-title-dark {
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle-dark {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.level-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.level-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.level-card:hover::after {
  transform: scaleX(1);
}

.level-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-main);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-primary);
  position: relative;
  overflow: hidden;
}

.level-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
}

.level-title {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.level-text {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* ======================================================================
   SECTION: LA SOLUCIÓN — DARK
   ====================================================================== */
/* ======================================================================
   SECTION: LA SOLUCIÓN — DARK (UN COACH QUE TE CONOCE)
   ====================================================================== */
.section-solution {
  background: var(--bg-main);
  position: relative;
}

.section-title-light {
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-subtitle-light {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.solution-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.sol-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sol-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
}

.sol-card-icon .material-symbols-outlined {
  font-size: 24px;
}

.sol-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sol-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.sol-card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.sol-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.sol-card-footer .material-symbols-outlined {
  font-size: 16px;
  color: var(--accent-secondary);
}

/* ======================================================================
   SECTION: CÓMO FUNCIONA — WHITE BLOCK
   ====================================================================== */
.section-steps-white {
  background: var(--bg-white);
  color: var(--text-dark);
  position: relative;
}

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

.step-card-white {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card-white:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
}

.step-card-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-card-white:hover::before {
  transform: scaleX(1);
}

.step-num-big {
  font-family: var(--font-headline);
  font-size: 100px;
  font-weight: 900;
  color: rgba(255, 86, 37, 0.08);
  line-height: 0.75;
  margin-bottom: 16px;
  user-select: none;
  transition: color 0.3s ease;
}

.step-card-white:hover .step-num-big {
  color: rgba(255, 86, 37, 0.18);
}

.step-title-dark {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-text-dark {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* ======================================================================
   SECTION: FEATURES — DARK WITH CYAN HOVER
   ====================================================================== */
/* ======================================================================
   SECTION: FEATURES — DARK WITH CYAN ACCENTS & STRUCTURED CARDS
   ====================================================================== */
.section-features {
  background: var(--bg-main);
  position: relative;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card-feature {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 36px 30px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-feature:hover::before {
  transform: scaleX(1);
}

.card-feature:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.card-feature:hover .feature-icon-wrapper {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
}

.feature-icon-wrapper .material-symbols-outlined {
  font-size: 24px;
  color: var(--accent-secondary);
}

.feature-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.card-feature:hover .feature-title {
  color: var(--accent-secondary);
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.feature-footer .material-symbols-outlined {
  font-size: 15px;
  color: var(--accent-secondary);
}

/* ======================================================================
   SECTION: STATS BAND — WHITE WITH GRADIENT TOP BORDER
   ====================================================================== */
.section-stats-band {
  background: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-primary);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* ======================================================================
   SECTION: WAITLIST — DARK WITH GRADIENT ON "PROBARLO"
   ====================================================================== */
.section-waitlist {
  background: var(--bg-surface-1);
  border-top: 3px solid var(--accent-primary);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-waitlist::before {
  content: '→';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 300px;
  color: rgba(255, 86, 37, 0.03);
  font-family: var(--font-headline);
  pointer-events: none;
}

.waitlist-box {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.waitlist-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-main);
  margin-bottom: 16px;
}

.waitlist-subheadline {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.waitlist-input {
  flex: 1;
  background: var(--bg-main);
  border: 2px solid var(--border-color);
  border-right: none;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input::placeholder {
  color: var(--text-subtle);
}

.waitlist-input:focus {
  border-color: var(--accent-primary);
}

.waitlist-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.waitlist-form .btn-primary {
  border: 2px solid var(--accent-primary);
  flex-shrink: 0;
}

.waitlist-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.waitlist-message {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  animation: slideUp 0.4s ease;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.waitlist-message.success {
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.4);
  color: var(--text-main);
}

.waitlist-message.warning {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--text-main);
}

.waitlist-message.error {
  background: rgba(255, 51, 51, 0.08);
  border: 1px solid rgba(255, 51, 51, 0.4);
  color: var(--text-main);
}

.waitlist-message-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 28px;
}

.waitlist-message-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.waitlist-message.success .waitlist-message-icon { color: #00C853; }
.waitlist-message.warning .waitlist-message-icon { color: #FFD700; }
.waitlist-message.error .waitlist-message-icon { color: #FF3333; }

.waitlist-message-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.waitlist-message.success .waitlist-message-title { color: #00C853; }
.waitlist-message.warning .waitlist-message-title { color: #FFD700; }
.waitlist-message.error .waitlist-message-title { color: #FF3333; }

.waitlist-message-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 16px;
}

.waitlist-message-tip {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--accent-primary);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #D8D8D8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.waitlist-message.warning .waitlist-message-tip {
  border-left-color: #FFD700;
}

.waitlist-message.error .waitlist-message-tip {
  border-left-color: #FF3333;
}

.waitlist-message-tip strong {
  color: #FFFFFF;
  font-weight: 600;
}

.waitlist-message-actions {
  display: flex;
  justify-content: flex-end;
}

.waitlist-message-btn {
  background: var(--accent-primary);
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.waitlist-message-btn:hover {
  background: #FF6A3D;
  transform: translateY(-1px);
}

.waitlist-message-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.waitlist-message-close-icon:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist-legal {
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 16px;
}

.waitlist-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.waitlist-legal a:hover {
  color: var(--accent-primary);
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-dark);
  padding: 32px 0;
  font-size: 13px;
  color: var(--text-subtle);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-copy {
  text-align: center;
}

.footer-link {
  color: var(--text-subtle);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-email {
  font-family: var(--font-mono);
  color: var(--text-subtle);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-dark);
  color: var(--text-subtle);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(255, 86, 37, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .levels-grid,
  .solution-grid,
  .steps-grid,
  .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-row {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
  }

  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .solution-card {
    padding: 24px 20px;
  }

  .sol-card-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-input {
    border-right: 2px solid var(--border-color);
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stats-row {
    gap: 32px;
  }
}

/* ======================================================================
   PAGE: PRIVACIDAD (Política de Privacidad)
   ====================================================================== */
.page-privacidad {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-privacidad .container {
  max-width: 900px;
}

.page-privacidad .navbar .container,
.page-privacidad .footer .container {
  max-width: 1200px;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.nav-back:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(255, 86, 37, 0.05);
}

.page-privacidad main {
  flex: 1;
  padding: 60px 0 100px;
}

.page-header {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 32px;
}

.page-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-secondary);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

.page-title {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--text-main);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.policy-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 28px 32px;
  position: relative;
  transition: border-color 0.2s;
}

.policy-card:hover {
  border-color: rgba(255, 86, 37, 0.4);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.policy-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(255, 86, 37, 0.1);
  border: 1px solid rgba(255, 86, 37, 0.25);
  padding: 2px 8px;
  border-radius: 2px;
}

.policy-card-title {
  font-size: 22px;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.policy-card-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.policy-card-body a {
  color: var(--accent-secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.policy-card-body a:hover {
  color: var(--accent-primary);
}

@media (max-width: 600px) {
  .policy-card {
    padding: 20px 24px;
  }
}