/* =========================================================
   NutroVia — Design System & Global Styles
   Inspired by Future.co: Layered Physical Scenes & Dark Luxury
   ========================================================= */

/* ─── 1. VARIABLES & TOKENS ──────────────────────────────── */
:root {
  /* Dark Luxury Palette */
  --bg: #0a0a0a;
  --bg-subtle: #0f0f0f;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-darker: #060606;
  
  /* Warm Luxury Cream Palette (Card Layers) */
  --bg-cream: #f5f0e6;
  --bg-cream-card: #ece5d8;
  --bg-cream-card-hover: #e4dccb;
  --text-cream-heading: #1a1712;
  --text-cream-body: #524b3f;
  --text-cream-muted: #7d7465;
  --border-cream: rgba(140, 115, 60, 0.18);

  /* Gold & Accent Tones */
  --gold: #c9a84c;
  --gold-light: #f0d58c;
  --gold-dark: #9e7f2e;
  --gold-glow: rgba(201, 168, 76, 0.25);
  
  /* Text on Dark */
  --text: #ede7dc;
  --text-muted: #9c978b;
  --text-dim: #5c584f;
  
  /* Borders & Radii */
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 76, 0.3);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-card-layer: 38px;
  
  /* Shadows */
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-layer: 0 -25px 70px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 0 35px rgba(201, 168, 76, 0.2);
  
  /* Transitions & Fonts */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-mono: 'Space Mono', monospace;
}

/* ─── 2. RESET & BASE ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

ul {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

/* ─── 3. UTILITIES & TYPOGRAPHY ──────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nv-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ─── 4. BUTTONS ─────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #080808;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  color: #000;
}

.btn-gold-large {
  background: linear-gradient(135deg, #a6842e 0%, var(--gold) 45%, var(--gold-light) 100%);
  color: #080808;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gold-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(201, 168, 76, 0.5);
  color: #000;
}

.btn-ghost {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-secondary-link:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-2px);
}

.arrow-down {
  transition: transform var(--transition-fast);
}
.btn-secondary-link:hover .arrow-down {
  transform: translateY(3px);
}

/* ─── 5. HEADER & NAVBAR ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.site-header.nav--hidden {
  transform: translateY(-130%);
  opacity: 0;
}

.navbar {
  pointer-events: auto;
  width: min(92%, 1020px);
  margin: 0 auto;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(14, 14, 14, 0.52);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar--scrolled {
  background: rgba(10, 10, 10, 0.82);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--text);
}

.nav-logo-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: invert(1) brightness(1.2);
}

.logo-dot {
  color: var(--gold);
  font-size: 24px;
  line-height: 0;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── 6. HERO SECTION ────────────────────────────────────── */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 195px 24px 30px;
  background: #090909;
  overflow: visible;
}

/* ─── FONDOS DE ESTILO DE VIDA CON MÁSCARAS DE GRADIENTE SUAVE ─── */
.nv-lifestyle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.nv-lifestyle-fullimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nv-lifestyle-gradient-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nv-lifestyle-bg--hero .nv-lifestyle-fullimg {
  filter: contrast(1.02) brightness(0.62);
}

/* Gradiente suave: la imagen se mantiene visible más abajo
   para que la transición al mockup sea natural sin hueco negro */
.nv-lifestyle-bg--hero .nv-lifestyle-gradient-mask {
  background: linear-gradient(180deg,
    rgba(9, 9, 9, 0.0)  0%,
    rgba(9, 9, 9, 0.10) 20%,
    rgba(9, 9, 9, 0.30) 45%,
    rgba(9, 9, 9, 0.62) 65%,
    rgba(9, 9, 9, 0.86) 82%,
    #090909 95%
  );
}

/* ─── Propósito: más claro (brightness 0.72, menos overlay) ─── */
.nv-lifestyle-bg--purpose .nv-lifestyle-fullimg {
  filter: contrast(1.0) brightness(0.72) saturate(0.9);
}

.nv-lifestyle-bg--purpose .nv-lifestyle-gradient-mask {
  background: radial-gradient(ellipse at 35% 50%, rgba(9, 9, 9, 0.22) 0%, rgba(9, 9, 9, 0.58) 80%),
              linear-gradient(180deg, rgba(9, 9, 9, 0.72) 0%, rgba(9, 9, 9, 0.25) 45%, rgba(9, 9, 9, 0.55) 82%, #090909 100%);
}

/* ─── Apple Watch: más claro (brightness 0.68) ─── */
.nv-lifestyle-bg--watch .nv-lifestyle-fullimg {
  filter: contrast(1.04) brightness(0.68) saturate(0.88);
}

.nv-lifestyle-bg--watch .nv-lifestyle-gradient-mask {
  background: radial-gradient(ellipse at 68% 50%, rgba(9, 9, 9, 0.20) 0%, rgba(9, 9, 9, 0.56) 80%),
              linear-gradient(180deg, rgba(9, 9, 9, 0.75) 0%, rgba(9, 9, 9, 0.28) 40%, rgba(9, 9, 9, 0.58) 80%, #090909 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title--refined {
  font-size: clamp(40px, 5.8vw, 74px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-serif-accent {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 1.04em;
  background: linear-gradient(135deg, #f5ecd5 0%, #c9a84c 50%, #dfc47a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sans-accent {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #f5ecd5 0%, #c9a84c 50%, #dfc47a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 30px;
}

.hero-sub-accent {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 600 !important;
  font-size: 1.18em !important;
  background: linear-gradient(135deg, #f5ecd5 0%, #c9a84c 50%, #dfc47a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.proof-divider {
  width: 4px;
  height: 4px;
  background: var(--border-gold);
  border-radius: 50%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: float 2.2s infinite ease-in-out;
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── 7. FUTURE.CO LAYERED NARRATIVE ENGINE ──────────────── */
.nv-narrative-container {
  position: relative;
  width: 100%;
}

/* Pinned Dark Sections */
.nv-pinned-section {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.nv-pinned-section.nv-phone-scene {
  padding: 0px 24px 80px;
  margin-top: -225px;
  background: transparent;
}


/* ESCENA 1: iPhone Reveal Stage */
.nv-phone-stage {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}

.nv-device-wrapper {
  position: relative;
  width: clamp(280px, 25vw, 340px);
  aspect-ratio: 1300 / 2642;
  margin: 0 auto;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 35px rgba(201, 168, 76, 0.1));
}

/* ─── CONTENEDORES 3D (THREE.JS / WEBGL) ─── */
.nv-device-wrapper--3d {
  width: clamp(290px, 25vw, 360px);
  aspect-ratio: 1300 / 2642;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.nv-watch-wrapper--3d {
  width: clamp(280px, 28vw, 380px);
  aspect-ratio: 458 / 796;
  position: relative;
  z-index: 2;
}

.nv-3d-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nv-3d-canvas-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 40px rgba(201, 168, 76, 0.09));
}

/* ─── FOTOS DE STOCK / CONTEXTO HUMANO ESTILO FUTURE.CO ─── */
.nv-lifestyle-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.nv-lifestyle-card--phone {
  width: clamp(260px, 26vw, 380px);
  height: clamp(340px, 34vw, 500px);
  left: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  opacity: 0.38;
}

.nv-lifestyle-card--watch {
  width: clamp(260px, 26vw, 390px);
  height: clamp(330px, 32vw, 470px);
  left: -24px;
  top: 50%;
  transform: translateY(-50%) rotate(-2deg);
  opacity: 0.35;
  z-index: 0;
}

.nv-lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.15) brightness(0.6);
  display: block;
}

.nv-lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 25%, rgba(9, 9, 9, 0.85) 100%),
              linear-gradient(180deg, rgba(9, 9, 9, 0.2) 0%, rgba(9, 9, 9, 0.75) 100%);
  pointer-events: none;
}

/* Background lifestyle en El Propósito */
.nv-lifestyle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.nv-lifestyle-fullimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.15) brightness(0.35);
  opacity: 0.32;
}

.nv-lifestyle-gradient-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, transparent 20%, rgba(9, 9, 9, 0.95) 75%),
              linear-gradient(180deg, #090909 0%, transparent 20%, transparent 80%, #090909 100%);
}

.nv-3d-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: radial-gradient(circle, rgba(18, 18, 18, 0.8) 0%, rgba(9, 9, 9, 0.95) 100%);
  border-radius: 40px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nv-3d-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nv-3d-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin3d 0.8s linear infinite;
}

@keyframes spin3d {
  to {
    transform: rotate(360deg);
  }
}

.nv-device-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.nv-device-front,
.nv-device-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.nv-device-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.nv-device-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #181818, #0a0a0a);
  border-radius: 46px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
}

.nv-device-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Pantalla iPhone con recorte exacto */
.nv-screen--iphone {
  position: absolute;
  left: 4.8%;
  top: 2.1%;
  width: 90.4%;
  height: 95.8%;
  background: #090909;
  border-radius: 42px;
  overflow: hidden;
  z-index: 4;
}

.nv-screen--iphone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.15);
}

.nv-app-view {
  position: absolute;
  inset: 0;
  padding: 44px 16px 20px;
  display: flex;
  flex-direction: column;
  background: #090909;
  overflow-y: auto;
}

/* Vista Splash / Bienvenida con Logo de Nutrovia */
.nv-app-view--splash {
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1c1811 0%, #090909 75%);
  padding: 40px 18px 24px;
  z-index: 5;
}

.nv-app-view--dashboard {
  z-index: 1;
}

.splash-welcome-box {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.splash-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: invert(1) brightness(1.3) drop-shadow(0 0 16px rgba(201, 168, 76, 0.45));
  margin-bottom: 14px;
  animation: floatSubtle 4s ease-in-out infinite;
}

.splash-brand-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 12px;
}

.splash-pulse {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 1.8s infinite;
}

.splash-glow-aura {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Vista Dashboard dentro del iPhone */
.nv-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.nv-dash-greeting {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

.nv-dash-username {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.nv-dash-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
}

.nv-dash-plan-badge {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.plan-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}

.plan-name {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.plan-meta {
  font-size: 9px;
  color: var(--text-muted);
}

.nv-dash-macros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.macro-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}

.macro-cell strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.macro-cell small {
  font-size: 8px;
  color: var(--text-dim);
}

.macro-cell span {
  display: block;
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nv-dash-section-title {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.nv-dash-section-title b {
  color: var(--gold);
}

.nv-dash-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
}

.nv-dash-item-icon {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nv-dash-item-info {
  flex: 1;
}

.nv-dash-item-info strong {
  display: block;
  font-size: 11px;
  color: #fff;
  line-height: 1.2;
}

.nv-dash-item-info small {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
}

.nv-dash-item-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
}

.nv-dash-tip {
  font-size: 9px;
  color: var(--text-muted);
  background: rgba(201, 168, 76, 0.06);
  border-left: 2px solid var(--gold);
  padding: 6px 8px;
  border-radius: 4px;
  margin-top: 6px;
}

.nv-dash-days-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 12px;
}

.day-chip {
  flex: 1;
  text-align: center;
  padding: 5px 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.day-chip.active {
  background: var(--gold);
  color: #000;
}

/* Tarjeta Narrativa 01 */
.nv-card {
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.nv-card--intro {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 4;
}

.nv-card-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.nv-card-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: #f5efe6;
  margin-bottom: 16px;
}

.nv-card-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.nv-card-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nv-card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.check-icon {
  color: var(--gold);
  font-weight: 800;
}

/* ─── 8. PHYSICAL CARD LAYER: WARM CREAM (#f5f0e6) ───────── */
.nv-layer-card {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-card-layer) var(--radius-card-layer) 0 0;
  box-shadow: var(--shadow-layer);
  overflow: hidden;
  will-change: transform;
}

.nv-layer-cream {
  background-color: var(--bg-cream);
  color: var(--text-cream-heading);
}

.nv-cream-content {
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.nv-header-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.nv-editorial-title {
  font-family: var(--font-serif) !important;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-cream-heading);
  margin-bottom: 20px;
}

.nv-title-accent {
  background: linear-gradient(135deg, #a07e2d 0%, #c9a84c 50%, #8c6a1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nv-editorial-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-cream-body);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

.nv-serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 30px);
  color: #9e7f2e;
  margin-top: 24px;
}

/* Proceso en 3 Pasos */
.nv-process-wrapper {
  margin: 70px auto;
  text-align: center;
}

.nv-process-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-cream-heading);
  margin-bottom: 36px;
}

.nv-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nv-step-box {
  flex: 1;
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}

.nv-step-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(100, 80, 40, 0.08);
}

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.nv-step-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-cream-heading);
  margin-bottom: 8px;
}

.nv-step-box p {
  font-size: 14px;
  color: var(--text-cream-body);
  line-height: 1.5;
}

.step-arrow-divider {
  font-size: 24px;
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── BENTO GRID CUADRADO Y SIMÉTRICO ─── */
.nv-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
  margin-top: 50px;
}

.bento-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(100, 80, 40, 0.08);
}

.bento-card--featured {
  grid-row: span 2;
  background: linear-gradient(145deg, #eee6d8, #e4dac9);
}

.bento-card--full {
  grid-column: 1 / -1;
  padding: 26px 30px;
}

.bento-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.bento-card h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-cream-heading);
  line-height: 1.2;
  margin-bottom: 10px;
}

.bento-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-cream-heading);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-cream-body);
  line-height: 1.5;
}

.bento-icon {
  font-size: 28px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.bento-metric {
  margin-top: 30px;
}

.metric-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}

.metric-unit {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-cream-muted);
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.b-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(140, 115, 60, 0.1);
  border: 1px solid var(--border-cream);
  border-radius: 100px;
  color: var(--text-cream-heading);
}

/* Bento Card con Imagen de Estilo de Vida */
.bento-card--image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 0 !important;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
}

.bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card--image:hover .bento-bg-img {
  transform: scale(1.05);
}

.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.15) 0%, rgba(20, 18, 15, 0.8) 100%);
  pointer-events: none;
}

.bento-img-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
}

.bento-img-content .bento-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}

.bento-img-content h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

/* ─── 9. SCENE 2: PURPOSE (DARK PINNED) ──────────────────── */
.nv-purpose-scene {
  background: var(--bg);
}

.nv-purpose-stage {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 100px);
}

.nv-purpose-card {
  max-width: 540px;
}

.nv-purpose-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin: 16px 0 20px;
}

.nv-purpose-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.nv-purpose-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 72px;
}

.p-feat-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.p-feat strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.p-feat small {
  font-size: 12px;
  color: var(--text-muted);
}

.nv-purpose-device {
  width: clamp(280px, 24vw, 340px);
  flex-shrink: 0;
}

/* ─── 10. SCENE 3: APPLE WATCH HERO (STANDALONE) ─────────── */
.nv-watch-hero-section {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 35% 50%, rgba(201, 168, 76, 0.07) 0%, #0a0a0a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
}

.nv-watch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 110px);
}

.nv-watch-device-col {
  flex-shrink: 0;
}

.nv-watch-wrapper {
  position: relative;
  width: clamp(280px, 28vw, 380px);
  aspect-ratio: 458 / 796;
}

.nv-watch-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Pantalla interna Apple Watch */
.nv-watch-wrapper {
  position: relative;
  width: clamp(260px, 25vw, 340px);
  aspect-ratio: 458 / 796;
  margin: 0 auto;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 35px rgba(201, 168, 76, 0.1));
}

.nv-watch-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.nv-screen--watch {
  position: absolute;
  left: 10.8%;
  top: 22.8%;
  width: 74.5%;
  height: 54.5%;
  border-radius: 42px;
  overflow: hidden;
  background: #000;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.9);
}

.watch-ui-container {
  width: 100%;
  height: 100%;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-sizing: border-box;
}

.watch-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #888;
}

.watch-ring-wrapper {
  position: relative;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.ring-fg {
  fill: none;
  stroke: #c9a84c;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 65;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
}

.watch-ring-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.watch-calories-num {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.watch-calories-unit {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
}

.watch-macros-pills {
  display: flex;
  gap: 5px;
}

.w-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px;
}

.p-p { color: #3fa9f5; }
.p-c { color: #ff9500; }
.p-g { color: #30d158; }

/* ─── Apple Watch Text Column Styles ─────────────────────── */
.nv-watch-text-col {
  max-width: 520px;
  position: relative;
  z-index: 3;
}

.nv-watch-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin: 16px 0 20px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.nv-watch-desc {
  font-size: 16.5px;
  color: #e5e0d8;
  line-height: 1.65;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.nv-watch-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.w-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.w-icon {
  font-size: 18px;
}

/* ─── MINI CARRUSEL HORIZONTAL CONTINUO ESTILO FUTURE.CO ─── */
.nv-marquee-section {
  position: relative;
  background: #090909;
  padding: 70px 0 90px;
  overflow: hidden;
  z-index: 10;
}

.nv-marquee-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.nv-marquee-title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-top: 12px;
}

.nv-marquee-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.nv-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeInfinite 40s linear infinite;
}

.nv-marquee-track:hover {
  animation-play-state: paused;
}

.nv-marquee-card {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.nv-marquee-card--wide {
  width: clamp(380px, 32vw, 450px);
}

.nv-marquee-card--standard {
  width: clamp(290px, 24vw, 340px);
}

.nv-marquee-card--narrow {
  width: clamp(230px, 19vw, 270px);
}

.nv-marquee-card--medium {
  width: clamp(330px, 27vw, 380px);
}

.nv-marquee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
}

.marquee-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.nv-marquee-card:hover .marquee-card-img {
  transform: scale(1.06);
}

.marquee-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.1) 0%, rgba(9, 9, 9, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.marquee-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.marquee-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.marquee-card-content h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 6px;
}

.marquee-card-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

@keyframes marqueeInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.nv-watch-text-col {
  max-width: 480px;
}

.nv-watch-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.nv-watch-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.nv-watch-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.w-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.w-icon {
  color: var(--gold);
}

/* ─── 11. FEATURES, PRICING, TESTIMONIALS & FAQ ─────────── */
.section-header-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

/* Features Grid */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}

.feat-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(100, 80, 40, 0.08);
}

.feat-card--highlight {
  border-color: var(--gold);
  background: linear-gradient(145deg, #eee5d6, #e7dcce);
}

.feat-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.feat-icon-box {
  font-size: 32px;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-cream-heading);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-cream-body);
  line-height: 1.55;
}

/* Pricing Card Luxury */
.pricing-section-container {
  margin-bottom: 100px;
}

.pricing-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.pricing-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-trial-side {
  flex: 1;
}

.trial-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.trial-heading {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.trial-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trial-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
}

.pricing-divider-vertical {
  width: 1px;
  height: 180px;
  background: var(--border);
}

.pricing-action-side {
  flex: 1;
}

.price-context {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-big {
  display: flex;
  align-items: baseline;
  margin: 6px 0 18px;
}

.price-num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.price-currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-left: 4px;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 6px;
}

.price-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.price-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.check-g {
  color: var(--gold);
  font-weight: 800;
}

/* Testimonials */
.testimonials-section-container {
  margin-bottom: 100px;
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(100, 80, 40, 0.08);
}

.testi-card--highlight {
  border-color: var(--gold-dark);
}

.testi-stars {
  color: var(--gold-dark);
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14.5px;
  color: var(--text-cream-body);
  line-height: 1.6;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-cream-heading);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-cream-muted);
}

/* FAQ Accordion */
.faq-section-container {
  margin-bottom: 100px;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-cream-heading);
}

.faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--text-cream-body);
  line-height: 1.6;
}

/* Final CTA Card */
.final-cta-container {
  margin-top: 40px;
}

.final-cta-card {
  background: linear-gradient(145deg, #161616, #0d0d0d);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.cta-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0 18px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}

.cta-btn-wrapper {
  margin-bottom: 14px;
}

.cta-subnote {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── 12. FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-motto {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 340px;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-bottom-row {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-big-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ─── 13. QUESTIONNAIRE & LOGIN SYSTEM ───────────────────── */
.page-wrapper {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}

.quiz-container, .auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.quiz-header {
  text-align: center;
  margin-bottom: 28px;
}

.quiz-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 12px;
  color: var(--text-muted);
}

.quiz-card h2, .auth-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.subtitle, .auth-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.option-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: var(--transition-fast);
  color: var(--text);
}

.option-btn:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.02);
}

.option-btn.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.option-icon {
  font-size: 20px;
}

.option-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.option-desc {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.range-slider {
  width: 100%;
  accent-color: var(--gold);
  margin: 10px 0;
}

.range-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.checkbox-item.checked {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-item.checked .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-item.checked .checkbox-custom::after {
  content: '✓';
  color: #000;
  font-size: 12px;
  font-weight: 800;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.btn-prev {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
}

.btn-prev:hover {
  color: var(--text);
}

.btn-next {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-next:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 14px;
}

.alert-error {
  background: rgba(201, 76, 76, 0.1);
  border: 1px solid rgba(201, 76, 76, 0.3);
  color: #ff9999;
}

.stripe-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  min-height: 46px;
}

.stripe-card.StripeElement--focus {
  border-color: var(--gold);
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ─── Check-in semanal (¿Cómo va ese progreso?) ─────────── */
.checkin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkin-modal {
  background: linear-gradient(160deg, #1a1a1a, #101010);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.checkin-emoji {
  font-size: 46px;
  margin-bottom: 14px;
}

.checkin-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
}

.checkin-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 26px;
}

.checkin-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkin-actions .btn-gold,
.checkin-actions .btn-cancel {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 14px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  font-size: 15px;
  color: var(--text);
}

/* ─── 14. DASHBOARD STYLES ───────────────────────────────── */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.sidebar-nav {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.sidebar-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.user-name {
  font-size: 14px;
  font-weight: 700;
}

.user-email {
  font-size: 11px;
  color: var(--text-dim);
}

.dashboard-main {
  margin-left: 270px;
  flex: 1;
  padding: 40px;
  max-width: 1200px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.dashboard-topbar h1 {
  font-size: 26px;
  font-weight: 800;
}

.dashboard-topbar p {
  font-size: 13px;
  color: var(--text-muted);
}

.status-banner {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-banner.trial {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
}

.status-banner.active {
  background: rgba(76, 201, 100, 0.08);
  border: 1px solid rgba(76, 201, 100, 0.3);
}

.status-banner.warning {
  background: rgba(201, 120, 76, 0.08);
  border: 1px solid rgba(201, 120, 76, 0.3);
}

.banner-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
}

.banner-title {
  font-size: 15px;
  font-weight: 800;
  margin: 2px 0;
}

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

.btn-cancel {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.btn-cancel:hover {
  color: #ff8888;
  border-color: #ff8888;
}

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

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.dash-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dash-card-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}

.dash-card-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.dash-card-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.macro-bar-item {
  margin-bottom: 14px;
}

.macro-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}

.macro-bar-bg {
  height: 8px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.macro-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.macro-bar-fill.protein { background: #4a90e2; }
.macro-bar-fill.carbs { background: var(--gold); }
.macro-bar-fill.fat { background: #50e3c2; }

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.training-grid, .supp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.training-session, .supp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.exercise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.exercise-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--text);
}

/* ─── 15. ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  20% { opacity: 0.4; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-100px); opacity: 0; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── 16. RESPONSIVE BREAKPOINTS ─────────────────────────── */
@media (max-width: 1080px) {
  .features-grid-modern,
  .testimonials-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card-luxury {
    flex-direction: column;
    gap: 32px;
  }
  
  .pricing-divider-vertical {
    width: 100%;
    height: 1px;
  }
}

/* ─── MOBILE DRAWER & BOCADILLO BUTTON ─────────────────── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  z-index: 1001;
}

.nav-mobile-toggle:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.toggle-bar {
  width: 17px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Drawer Backdrop */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Drawer — Sombra suave lateral derecha, sin bordes ni opacidad sólida */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(75vw, 280px);
  background: linear-gradient(270deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.8) 60%, transparent 100%);
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-inner {
  padding: 92px 24px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.mobile-drawer-link {
  font-size: 20px;
  font-weight: 700;
  color: #d1d1d1;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition);
  padding: 6px 0;
  text-align: right;
  display: inline-block;
}

.mobile-drawer-link:hover,
.mobile-drawer-link:active {
  color: #fff;
}

.mobile-drawer-link--gold {
  color: var(--gold);
  font-weight: 800;
  background: linear-gradient(135deg, #f5ecd5 0%, #c9a84c 50%, #dfc47a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  /* Navbar 100% Centrado */
  .site-header {
    top: 14px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .navbar {
    width: calc(100% - 32px);
    max-width: 460px;
    margin: 0 auto;
    padding: 8px 16px;
  }

  .nav-actions {
    display: none !important;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }

  /* Hero en mobile */
  .hero {
    min-height: auto;
    padding: 110px 18px 24px;
  }

  .hero-title,
  .hero-title--refined {
    font-size: clamp(30px, 7.5vw, 42px);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* Escena 1: Mockup iPhone en mobile */
  .nv-pinned-section.nv-phone-scene {
    min-height: auto;
    padding: 10px 16px 60px;
    margin-top: 0px !important;
  }

  .nv-phone-stage {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nv-device-wrapper {
    width: min(76vw, 290px);
    margin: 0 auto;
    transform: none !important;
  }

  .nv-card--intro {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 24px 20px;
  }

  .nv-card-title {
    font-size: 24px;
  }

  .nv-card-desc {
    font-size: 14px;
  }

  /* Purpose & Watch en mobile */
  .nv-pinned-section.nv-purpose-scene {
    min-height: auto;
    padding: 70px 20px;
    position: relative;
    overflow: visible;
  }

  .nv-purpose-stage {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    width: 100%;
    position: relative;
  }

  .nv-purpose-card {
    max-width: 100%;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
    z-index: 2;
  }

  .nv-purpose-device {
    width: min(76vw, 290px);
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
    z-index: 1;
  }

  .nv-watch-hero-section {
    min-height: auto;
    padding: 70px 20px;
  }

  .nv-watch-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 36px;
    width: 100%;
  }

  .nv-watch-wrapper {
    width: min(72vw, 270px);
    margin: 0 auto;
  }

  .nv-watch-text-col {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  /* Features del watch en mobile: mismo ancho que las del iPhone */
  .nv-watch-features {
    align-items: stretch;
    width: 100%;
  }

  .nv-watch-features .p-feat {
    width: 100%;
    text-align: left;
    min-height: 72px;
  }

  .w-item {
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Bento Grid */
  .nv-bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bento-card--featured,
  .bento-card--full {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .nv-steps-row {
    flex-direction: column;
    gap: 12px;
  }

  .step-arrow-divider {
    transform: rotate(90deg);
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dashboard-main {
    margin-left: 0;
    padding: 24px 16px;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--transition);
  }

  .sidebar.open {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .hero-proof {
    flex-direction: column;
    gap: 10px;
    border-radius: var(--radius);
  }
  
  .proof-divider {
    display: none;
  }

  .features-grid-modern,
  .testimonials-grid-modern,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .form-input-group,
  .option-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}
