:root {
  --primary: #00F0FF;
  --primary-blue: #0077FF;
  --secondary: #FF003C;
  --background: #0A0E17;
  --surface: #1F293A;
  --accent: #F0E68C;
  --green: #1AFF00;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.54);
  --glass: rgba(31, 41, 58, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);

  --nav-h: 72px;
  /* 🔧 altura real del header */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== BACKGROUND GLOW ===== */
.background-glow {
  position: fixed;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.12) 0%,
      transparent 70%);
  z-index: -1;
  filter: blur(90px);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;

  background: rgba(10, 14, 23, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}

/* 🔧 ICONO AJUSTADO */
.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* ===== MAIN / HERO ===== */
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  padding-top: var(--nav-h);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(15px);
  color: var(--accent);
  text-transform: uppercase;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 520px;
}

/* ===== CTA ===== */
.cta-buttons {
  display: flex;
  flex-direction: column;
  /* Stack vertically for full-width power */
  gap: 1.2rem;
  width: 100%;
  max-width: 480px;
  /* Optimal width for readability and impact */
  margin-top: 1rem;
}

.btn-store {
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content for "centered" feel */
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  /* Occupy full container width */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 🔧 SHIMMER EFFECT */
.btn-store::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: all 0.6s;
}

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

.btn-store:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  background: #050505;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  line-height: 1.2;
}

.btn-text strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 380px;
  height: 500px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 48px;
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.9),
    inset 0 0 40px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

/* 🔧 INNER GLOW FOR MOCKUP */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 48px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  pointer-events: none;
  z-index: 2;
}

.app-icon-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-mockup:hover .app-icon-main {
  transform: scale(1.08);
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(-0.5deg);
  }
}

/* ===== FOOTER ===== */
footer {
  padding: 5rem 5% 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* ===== PRIVACY PAGE STYLES (RESTORED) ===== */
.policy-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 140px 5% 80px;
}

.policy-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 4rem;
  border-radius: 32px;
  backdrop-filter: blur(25px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
}

.policy-content h1 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.policy-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin: 3rem 0 1.2rem;
  color: var(--primary);
  letter-spacing: 1px;
}

.policy-content p,
.policy-content li {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.back-link {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 2.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateX(-8px);
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    padding-top: 60px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-buttons {
    max-width: 100%;
    /* Allow buttons to expand on mobile */
  }

  h1 {
    font-size: 3.8rem;
  }

  .phone-mockup {
    width: 300px;
    height: 380px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.8rem;
  }

  .policy-content {
    padding: 2.5rem;
  }

  .phone-mockup {
    width: 260px;
    height: 340px;
  }
}