/* ============================================
   MOVERIX · Design System
   80% negro / 15% blanco / 5% naranja
============================================ */

:root {
  /* Brand */
  --orange: #FF6A00;
  --orange-hover: #FF7A1A;
  --orange-active: #E65F00;
  --orange-soft: rgba(255, 106, 0, 0.12);
  --orange-glow: rgba(255, 106, 0, 0.25);

  /* Base */
  --bg: #0B0B0B;
  --surface: #121212;
  --surface-2: #1E1E1E;
  --border: #1E1E1E;
  --border-soft: rgba(255, 255, 255, 0.06);

  /* Text */
  --white: #FFFFFF;
  --gray-1: #B3B3B3;
  --gray-2: #7A7A7A;

  /* Functional */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;

  /* System */
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-glow: 0 0 40px rgba(255, 106, 0, 0.25);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================
   AMBIENT BACKGROUND
============================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.glow-1 {
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.3;
}
.glow-2 {
  top: 40%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.15;
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ============================================
   NAV
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px var(--orange-glow));
}

/* Lucide icon defaults */
[data-lucide], .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
}
.feat-icon .lucide,
.feat-icon [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--orange);
  stroke-width: 2;
}
.audience-emoji .lucide,
.audience-emoji [data-lucide] {
  width: 26px;
  height: 26px;
  color: var(--orange);
  stroke-width: 2;
}
.benefit span .lucide,
.benefit span [data-lucide] {
  width: 16px;
  height: 16px;
  color: #000;
  stroke-width: 3;
}
.screen-fab .lucide,
.screen-fab [data-lucide] {
  width: 18px;
  height: 18px;
  color: #000;
  fill: #000;
}
.btn .lucide,
.btn [data-lucide] {
  width: 16px;
  height: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--gray-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: var(--shadow-glow);
}
.nav-cta:hover { background: var(--orange-hover) !important; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   GLOBAL TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
}
h1 { font-size: clamp(42px, 6.5vw, 76px); }
h2 { font-size: clamp(34px, 5vw, 56px); text-transform: uppercase; }
h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--gray-1);
  font-weight: 400;
  line-height: 1.55;
  max-width: 56ch;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.grad {
  background: linear-gradient(180deg, #FFB347 0%, var(--orange) 60%, var(--orange-active) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 106, 0, 0.4);
}
.btn-primary:active { background: var(--orange-active); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   SECTIONS
============================================ */
.section {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head h2 { line-height: 1.05; }

/* ============================================
   1. HERO
============================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-image: url('assets/bg_hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  opacity: 0.55;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.75) 35%, rgba(11, 11, 11, 0.35) 65%, rgba(11, 11, 11, 0.6) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 106, 0, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 80%, var(--bg) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-content { z-index: 2; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-1);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: 0.4; }
}
.hero h1 { text-transform: uppercase; }
.hero .lead { margin-top: 24px; }
.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-meta span {
  font-size: 12px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-phones {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 60px rgba(255, 106, 0, 0.18));
  transform: rotate(-2deg);
}
.phone {
  position: absolute;
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 42px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-back {
  top: 10px;
  right: -10px;
  transform: rotate(8deg);
  opacity: 0.7;
  filter: blur(0.5px);
}
.phone-front {
  bottom: 0;
  left: 10px;
  transform: rotate(-3deg);
  z-index: 2;
  box-shadow: var(--shadow-card), 0 0 80px rgba(255, 106, 0, 0.15);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 30px;
  padding: 50px 18px 18px;
  overflow: hidden;
  position: relative;
}

.screen-greet { font-size: 13px; color: var(--gray-2); }
.screen-day {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 18px;
}
.screen-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gray-1);
}
.screen-card.highlight {
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.15) 0%, rgba(255, 106, 0, 0.02) 100%);
  border-color: rgba(255, 106, 0, 0.3);
  padding: 14px;
}
.screen-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray-2);
}
.screen-card h4 {
  font-size: 14px;
  margin: 6px 0 4px;
  color: var(--white);
}
.screen-card p { font-size: 11px; color: var(--gray-2); }
.tag {
  background: var(--orange);
  color: #000;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bar {
  margin-top: 8px;
  height: 4px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-hover) 100%);
  border-radius: 999px;
}
.screen-fab {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
}

/* Back phone — muscle map */
.muscle-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.muscle-figure {
  position: relative;
  width: 100%;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.08) 0%, transparent 60%);
  border-radius: 12px;
  margin-bottom: 12px;
}
.muscle-figure .m {
  position: absolute;
  border-radius: 50%;
  background: rgba(122, 52, 22, 0.5);
}
.m-shoulders { width: 90px; height: 14px; top: 50px; left: 50%; transform: translateX(-50%); border-radius: 8px; }
.m-chest { width: 70px; height: 30px; top: 76px; left: 50%; transform: translateX(-50%); background: var(--orange) !important; box-shadow: 0 0 20px var(--orange-glow); }
.m-arms { width: 16px; height: 80px; top: 80px; left: 30%; border-radius: 8px; box-shadow: -120px 0 0 rgba(255, 106, 0, 0.7); }
.m-core { width: 50px; height: 50px; top: 130px; left: 50%; transform: translateX(-50%); background: rgba(255, 106, 0, 0.5) !important; }
.m-legs { width: 22px; height: 100px; top: 200px; left: 42%; border-radius: 10px; box-shadow: 28px 0 0 rgba(122, 52, 22, 0.5); }
.muscle-legend {
  display: flex;
  gap: 16px;
  font-size: 10px;
  color: var(--gray-2);
}
.muscle-legend span { display: flex; align-items: center; gap: 6px; }
.muscle-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

/* Floating tags */
.float-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.float-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--success);
}
.float-tag .lucide,
.float-tag [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--orange);
  margin-right: 6px;
  vertical-align: -2px;
}
.float-tag::before { display: none; }
.tag-1 { top: 50px; left: -20px; animation: floatY 5.5s ease-in-out infinite; }
.tag-2 { bottom: 90px; right: -10px; animation: floatY 6.2s ease-in-out infinite 0.6s; }
.tag-3 { top: 12%; right: -30px; animation: floatY 5.8s ease-in-out infinite 1.1s; }
.tag-4 { top: 44%; left: -40px; animation: floatY 6.6s ease-in-out infinite 0.3s; }
.tag-5 { bottom: 28%; left: -10px; animation: floatY 5.2s ease-in-out infinite 1.5s; }
.tag-6 { top: 32%; right: -10px; animation: floatY 6s ease-in-out infinite 0.9s; }
.tag-7 { bottom: 6%; right: 30%; animation: floatY 5.6s ease-in-out infinite 1.8s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: auto; max-width: 420px; margin: 0 auto; }
  .hero-phones { transform: rotate(-1deg); }
  .float-tag { display: none; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.6) 100%),
      linear-gradient(180deg, var(--bg) 0%, transparent 10%, transparent 80%, var(--bg) 100%);
  }
}

/* ============================================
   2. PROBLEMA
============================================ */
.problem-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.problem-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-grid li:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
}
.problem-grid .num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.problem-grid h3 { margin-bottom: 8px; }
.problem-grid p { color: var(--gray-1); font-size: 14px; line-height: 1.6; }

/* ============================================
   3. PROPUESTA DE VALOR
============================================ */
.value-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.check-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--white);
}
.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--orange-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23FF6A00' d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6 4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Orbit visual */
.value-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed var(--border);
}
.orbit::before, .orbit::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.04);
}
.orbit::after { inset: 80px; }
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-active) 100%);
  border-radius: 50%;
  box-shadow: 0 0 80px var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.orbit-core-inner {
  background: var(--bg);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}
.chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.chip-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.chip-2 { top: 22%; right: -10%; }
.chip-3 { bottom: 22%; right: -5%; }
.chip-4 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.chip-5 { bottom: 22%; left: -5%; }
.chip-6 { top: 22%; left: -10%; }

@media (max-width: 880px) {
  .value-wrap { grid-template-columns: 1fr; gap: 40px; }
  .value-visual { height: 400px; }
  .orbit { width: 320px; height: 320px; }
  .orbit-core { width: 130px; height: 130px; }
}

/* ============================================
   4. CÓMO FUNCIONA
============================================ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  counter-reset: steps;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s;
}
.steps li:hover { border-color: rgba(255, 106, 0, 0.3); }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--gray-1); font-size: 14px; }

/* ============================================
   5. CARACTERÍSTICAS
============================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.feat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.4);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 106, 0, 0.04) 100%);
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--orange-soft) 0%, transparent 100%);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feat h3 { margin-bottom: 6px; }
.feat p { color: var(--gray-1); font-size: 14px; }

/* ============================================
   6. PANTALLAS
============================================ */
.screens-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 4px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
.screens-row::-webkit-scrollbar { height: 6px; }
.screens-row::-webkit-scrollbar-track { background: transparent; }
.screens-row::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 999px; }

.mini-phone {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mini-screen {
  width: 220px;
  height: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 36px 16px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mini-screen::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #000;
  border-radius: 999px;
}
.mini-h {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--gray-1);
  margin-bottom: 6px;
}
.mini-card.mini-active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  font-weight: 600;
}
.mini-figure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 320px;
}
.mini-figure span {
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 106, 0, 0.2) 100%);
  border-radius: 8px;
  opacity: 0.5;
}
.mini-figure span:nth-child(1) { opacity: 0.9; }
.mini-figure span:nth-child(2) { opacity: 0.4; }
.mini-figure span:nth-child(3) { opacity: 0.7; }
.mini-figure span:nth-child(4) { opacity: 0.3; }

.eq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.eq {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  font-size: 11px;
  color: var(--gray-2);
  text-align: center;
}
.eq.active {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.set-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-1);
}
.set-row.done { color: var(--success); font-weight: 600; }

.chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 220px;
  margin: 14px 0 16px;
}
.chart div {
  flex: 1;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-active) 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}
.chart div:last-child { opacity: 1; box-shadow: 0 0 16px var(--orange-glow); }
.progress-stat {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
.mini-label {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-1);
  font-weight: 500;
}

/* ============================================
   6.5 TRACKER (Strava-like 3-up)
============================================ */
.section-tracker {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}
.tracker-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.tracker-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
}
.tracker-head .lead {
  color: var(--gray-1);
  font-size: 17px;
}
.activity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.activity-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  transition: all 0.2s ease;
}
.activity-pills span:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.activity-pills [data-lucide], .activity-pills .lucide {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.tracker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 56px;
}
.tracker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tracker-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.tracker-card p {
  margin-top: 10px;
  color: var(--gray-1);
  font-size: 15px;
  max-width: 320px;
}

/* Phone mock for tracker */
.tracker-phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 280 / 360;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 32px 32px 0 0;
  border: 1px solid var(--border-soft);
  border-bottom: none;
  padding: 18px 16px 0;
  overflow: hidden;
  box-shadow: var(--shadow-card),
              0 -4px 0 0 rgba(255, 255, 255, 0.02) inset;
}
.tracker-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #000;
  border-radius: 999px;
}
.tp-screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 18px 18px 0 0;
  padding: 18px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border-soft);
  border-bottom: none;
}
.tp-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tp-header {
  margin-bottom: 2px;
}
.tp-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ff8a3d);
  flex-shrink: 0;
}
.tp-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.tp-lines span {
  height: 6px;
  background: var(--surface-2);
  border-radius: 4px;
}
.tp-lines span:nth-child(1) { width: 60%; }
.tp-lines span:nth-child(2) { width: 35%; }
.tp-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tp-bars span {
  height: 6px;
  background: var(--surface-2);
  border-radius: 4px;
}
.tp-bars span:nth-child(1) { width: 70%; }
.tp-bars span:nth-child(2) { width: 50%; }
.tp-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 10px;
  overflow: hidden;
}
.tp-tile {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.tp-tile.tp-map svg { width: 100%; height: 100%; display: block; }
.tp-tile.tp-photo {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 40%, #2a1a0d 100%);
}
.tp-photo-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 220, 180, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}
.tp-actions {
  margin-top: auto;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tp-action {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 12px;
}
.tp-action-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 4px;
  flex: 1;
}
.tp-action-bar-sm { flex: 0.4; }
.tp-action-bar-md { flex: 0.7; }

/* Chart variant */
.tp-tabs {
  display: flex;
  gap: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 4px;
}
.tp-tabs span {
  flex: 1;
  font-size: 9px;
  text-align: center;
  padding: 5px 4px;
  border-radius: 999px;
  color: var(--gray-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 600;
}
.tp-tabs span.active {
  background: var(--bg);
  color: var(--orange);
  border: 1px solid var(--orange-soft);
}
.tp-tabs-scroll {
  overflow: hidden;
  flex-wrap: nowrap;
}
.tp-tabs-scroll span {
  font-size: 8px;
  padding: 5px 6px;
  white-space: nowrap;
}
.tp-tabs [data-lucide], .tp-tabs .lucide { width: 10px; height: 10px; }
.tp-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}
.tp-chart-area {
  flex: 1;
  min-height: 0;
}
.tp-chart-area svg { width: 100%; height: 100%; display: block; }
.tp-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.tp-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tp-pill-icon [data-lucide], .tp-pill-icon .lucide { width: 12px; height: 12px; }
.tp-pill-bar {
  flex: 1;
  height: 6px;
  background: #2a2a2a;
  border-radius: 4px;
}

/* Routes / terrain variant */
.tp-routes { padding: 12px 10px 0; gap: 10px; }
.tp-terrain {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
}
.tp-terrain svg { width: 100%; height: 100%; display: block; }
.tp-route-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px 14px;
  gap: 8px;
}
.tp-route-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.tp-route-stat strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.tp-route-stat span {
  font-size: 9px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.tracker-cta {
  display: flex;
  justify-content: center;
}
.btn-lg {
  padding: 18px 56px;
  font-size: 16px;
  min-width: 320px;
  justify-content: center;
}

@media (max-width: 960px) {
  .tracker-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tracker-phone { max-width: 240px; }
  .btn-lg { min-width: auto; width: 100%; }
}

/* ============================================
   7. PARA QUIÉN
============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.3);
}
.audience-wide { grid-column: span 4; text-align: center; }
.audience-wide .audience-emoji { margin: 0 auto 16px; }
.audience-emoji {
  width: 56px;
  height: 56px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.audience-card h3 { margin-bottom: 6px; }
.audience-card p { color: var(--gray-1); font-size: 14px; }

@media (max-width: 880px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-wide { grid-column: span 2; }
}

/* ============================================
   8. DIFERENCIAL IA
============================================ */
.section-ai { padding-top: 60px; padding-bottom: 60px; }
.ai-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.ai-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}
.ai-card .kicker, .ai-card h2, .ai-card p { position: relative; z-index: 2; }
.ai-card h2 { margin-bottom: 24px; }
.ai-card .lead { margin: 0 auto 40px; }
.ai-pipeline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.ai-pipeline span {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-1);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.ai-pipeline span:hover {
  color: var(--orange);
  border-color: rgba(255, 106, 0, 0.4);
}

/* ============================================
   9. BENEFICIOS
============================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.benefit:hover { border-color: rgba(255, 106, 0, 0.3); }
.benefit span {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--orange-glow);
}
.benefit p { font-size: 16px; font-weight: 500; color: var(--white); }

/* ============================================
   10. DESCARGA
============================================ */
.download-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}
.download-copy { position: relative; z-index: 2; }
.download-copy h2 { margin-bottom: 20px; }
.store-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--white);
  color: #000;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}
.store:hover { transform: translateY(-2px); }
.store small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.store strong { display: block; font-size: 16px; font-weight: 700; }

/* QR */
.qr-block {
  text-align: center;
  position: relative;
  z-index: 2;
}
.qr {
  width: 220px;
  height: 220px;
  background: var(--white);
  padding: 14px;
  border-radius: 22px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px var(--orange-glow);
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}
.qr-grid div {
  background: #000;
  border-radius: 2px;
}
/* random QR pattern via nth-child opacity */
.qr-grid div:nth-child(2n) { opacity: 0; }
.qr-grid div:nth-child(3n) { opacity: 1; }
.qr-grid div:nth-child(5n) { opacity: 0; }
.qr-grid div:nth-child(7n) { opacity: 1; }
.qr-grid div:nth-child(11n) { opacity: 0; }
/* Corner anchors */
.qr-grid div:nth-child(1),
.qr-grid div:nth-child(2),
.qr-grid div:nth-child(7),
.qr-grid div:nth-child(8),
.qr-grid div:nth-child(9),
.qr-grid div:nth-child(14),
.qr-grid div:nth-child(15),
.qr-grid div:nth-child(43),
.qr-grid div:nth-child(44),
.qr-grid div:nth-child(45),
.qr-grid div:nth-child(49) {
  opacity: 1 !important;
  background: #000;
}
.qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-logo svg { width: 100%; height: 100%; }
.qr-logo img { width: 100%; height: 100%; object-fit: contain; }
.qr-block p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-1);
}

@media (max-width: 880px) {
  .download-card { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .store-row { justify-content: center; }
  .download-copy .lead { margin-left: auto; margin-right: auto; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px var(--pad) 32px;
  margin-top: 80px;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--gray-1);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 18px;
}
.footer-cols a {
  display: block;
  color: var(--gray-1);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom small { color: var(--gray-2); font-size: 13px; }
.disclaimer { font-style: italic; }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
