/*
Theme Name: Tunr Landing Page
Theme URI: https://tunr.me
Author: Tunr
Author URI: https://tunr.me
Description: Custom landing page theme for Tunr — Your mood has a soundtrack. Dark, neon-accented design with WordPress Customizer support.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tunr
*/

/* Fuentes cargadas via wp_enqueue_style en functions.php */

/* ============================================================
   Design System — CSS Variables
   ============================================================ */
:root {
  --bg:             hsl(240, 20%, 3%);
  --bg-card:        hsl(240, 15%, 8%);
  --bg-card-hover:  hsl(240, 15%, 10%);
  --fg:             #ffffff;
  --fg-muted:       hsl(240, 5%, 55%);
  --fg-subtle:      hsl(240, 5%, 38%);

  --tunr-blue:      hsl(217, 100%, 50%);
  --tunr-cyan:      hsl(187, 100%, 50%);
  --tunr-purple:    hsl(270, 100%, 60%);
  --tunr-orange:    hsl(16,  100%, 60%);
  --tunr-pink:      hsl(320, 100%, 60%);

  --border:         rgba(255, 255, 255, 0.1);
  --border-bright:  rgba(255, 255, 255, 0.2);

  --radius:         0.75rem;
  --radius-brutal:  3.5rem;

  --shadow-cyan:    0 0 24px hsla(187, 100%, 50%, 0.4),
                    0 0 64px hsla(187, 100%, 50%, 0.15);
  --shadow-blue:    0 0 24px hsla(217, 100%, 50%, 0.4),
                    0 0 64px hsla(217, 100%, 50%, 0.15);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-style: italic;
  line-height: 1;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Glass morphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.glass-bright {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-bright);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--tunr-cyan), var(--tunr-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient backgrounds */
.grad-blue-cyan   { background: linear-gradient(135deg, var(--tunr-blue),   var(--tunr-cyan)); }
.grad-cyan-purple { background: linear-gradient(135deg, var(--tunr-cyan),   var(--tunr-purple)); }
.grad-orange-pink { background: linear-gradient(135deg, var(--tunr-orange), var(--tunr-pink)); }

/* Meta label style */
.text-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-style: normal;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered fade — added via JS Intersection Observer */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   Navbar
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 4rem;
  animation: fadeIn 0.5s ease both;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  padding-right: 3px;
}

/* CSS logo mark */
.nav-logo-ring {
  width: 1.5rem;
  height: 1.5rem;
  border: 2.5px solid var(--tunr-cyan);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav-logo-ring::after {
  content: "";
  position: absolute;
  inset: 25%;
  background: var(--tunr-cyan);
  border-radius: 50%;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

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

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 4rem; left: 0; right: 0;
  z-index: 99;
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--fg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.btn-primary {
  background: #ffffff;
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--tunr-cyan);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-cyan);
}

.btn-outline {
  background: transparent;
  color: var(--tunr-cyan);
  border: 1.5px solid var(--tunr-cyan);
}
.btn-outline:hover {
  background: var(--tunr-cyan);
  color: var(--bg);
  transform: translateY(-2px) scale(1.03);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 35rem; height: 35rem;
  top: -10rem; left: -10rem;
  background: radial-gradient(circle, hsla(217,100%,50%,0.18), transparent 70%);
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 28rem; height: 28rem;
  bottom: -8rem; right: -8rem;
  background: radial-gradient(circle, hsla(270,100%,60%,0.18), transparent 70%);
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 20rem; height: 20rem;
  top: 40%; left: 60%;
  background: radial-gradient(circle, hsla(187,100%,50%,0.12), transparent 70%);
  animation-delay: -5s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  color: var(--fg-muted);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--tunr-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--tunr-cyan);
  animation: float 2s ease-in-out infinite;
}

/* Logo mark in hero */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero-logo-ring {
  width: 3rem; height: 3rem;
  border: 3px solid var(--tunr-cyan);
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-cyan);
}

.hero-logo-ring::after {
  content: "";
  position: absolute;
  inset: 25%;
  background: var(--tunr-cyan);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: 0.85;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-style: normal;
  letter-spacing: 0.01em;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-subtext {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.65;
  font-style: normal;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
  animation: fadeInUp 0.7s ease 0.45s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.55s both;
}

.hero-age-note {
  font-size: 0.85rem;
  color: var(--fg-subtle);
  margin-top: 1.5rem;
  animation: fadeInUp 0.7s ease 0.65s both;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats {
  padding: 5rem 1.5rem;
}

.stats-box {
  border-radius: var(--radius-brutal);
  padding: 3rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-box  { padding: 4rem 3rem; }
}

.stat-value {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-value-cyan   { color: var(--tunr-cyan); }
.stat-value-blue   { color: var(--tunr-blue); }
.stat-value-purple { color: var(--tunr-purple); }
.stat-value-orange { color: var(--tunr-orange); }

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ============================================================
   Benefits / Features Section
   ============================================================ */
.benefits {
  padding: 7rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  display: block;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-brutal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(0, 255, 242, 0.25);
  background: var(--bg-card-hover);
}

/* Top accent line revealed on hover */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before { opacity: 1; }

.benefit-card--1::before { background: linear-gradient(90deg, var(--tunr-blue),   var(--tunr-cyan)); }
.benefit-card--2::before { background: linear-gradient(90deg, var(--tunr-cyan),   var(--tunr-purple)); }
.benefit-card--3::before { background: linear-gradient(90deg, var(--tunr-orange), var(--tunr-pink)); }

.benefit-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-bright);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.benefit-number {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  color: var(--tunr-cyan);
  font-style: normal;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.benefit-card p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   Mid / Visual Section
   ============================================================ */
.visual-section {
  padding: 7rem 1.5rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--bg-card) 50%,
    var(--bg) 100%
  );
  position: relative;
  overflow: hidden;
}

.visual-section::before,
.visual-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.visual-section::before {
  width: 25rem; height: 25rem;
  top: -5rem; right: -5rem;
  background: hsla(187, 100%, 50%, 0.07);
}
.visual-section::after {
  width: 20rem; height: 20rem;
  bottom: -4rem; left: -4rem;
  background: hsla(270, 100%, 60%, 0.07);
}

.visual-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.visual-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}

.visual-section p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.65;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.final-cta {
  padding: 7rem 1.5rem;
}

.cta-box {
  border-radius: var(--radius-brutal);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-box { padding: 6rem 4rem; }
}

/* Gradient orbs inside CTA box */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 22rem; height: 22rem;
  top: -6rem; left: 25%;
  background: hsla(217, 100%, 50%, 0.2);
}
.cta-orb-2 {
  width: 22rem; height: 22rem;
  bottom: -6rem; right: 20%;
  background: hsla(270, 100%, 60%, 0.2);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.cta-box h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: 1.25rem;
}

.cta-box p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

.cta-limited {
  font-size: 0.85rem;
  color: var(--fg-subtle);
  margin-top: 1.5rem;
}

/* ============================================================
   Who is Tunr Section
   ============================================================ */
.who-section {
  padding: 7rem 1.5rem;
}

.who-inner {
  border-radius: var(--radius-brutal);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .who-inner { padding: 5rem 4rem; }
}

.who-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.who-orb-1 {
  width: 20rem; height: 20rem;
  top: -4rem; right: -4rem;
  background: hsla(187, 100%, 50%, 0.1);
}
.who-orb-2 {
  width: 16rem; height: 16rem;
  bottom: -3rem; left: -3rem;
  background: hsla(270, 100%, 60%, 0.1);
}

.who-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.who-content .section-eyebrow {
  display: block;
  color: var(--tunr-cyan);
  margin-bottom: 1rem;
}

.who-headline {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 1.75rem;
}

.who-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.footer-nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--tunr-cyan); }

.footer-copy {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ============================================================
   LANDING V2 — Talk to Your Music
   Fuentes: Syne + DM Sans (se cargan en page-landing-v2.php)
   Paleta: purple dominante (#7C3AED) + cyan acento (#00E1FF)
   ============================================================ */

/* Tokens v2 — scoped bajo .lp-v2 para no interferir con v1 */
.lp-v2 {
  --v2-bg:       #1A1A2E;
  --v2-purple:   #7C3AED;
  --v2-purple2:  #6D28D9;
  --v2-cyan:     #00E1FF;
  --v2-text:     #FFFFFF;
  --v2-text2:    #E0D0FF;
  --v2-text3:    #878792;
  --v2-border:   #2e2e50;
}

/* Reset base para páginas v2 — DM Sans solo en texto, nunca en logos */
.lp-v2 p,
.lp-v2 a:not(.v2-nav-logo):not(.v2-footer-logo),
.lp-v2 li,
.lp-v2 div,
.lp-v2 span:not(.gradient-text),
.lp-v2 button {
  font-family: 'DM Sans', sans-serif;
}

.lp-v2 h1,
.lp-v2 h2,
.lp-v2 h3 {
  font-family: 'Syne', sans-serif;
  text-transform: none;
  letter-spacing: normal;
  font-style: normal;
  line-height: 1.04;
}

/* Body background override para v2 */
body.lp-v2 {
  background: var(--v2-bg);
  color: var(--v2-text);
}

/* ---- Nav v2 ---- */
.lp-v2 .v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(26,26,46,1) 0%, rgba(26,26,46,0) 100%);
}

.lp-v2 .v2-nav-logo,
.lp-v2 .v2-nav-logo .gradient-text {
  font-family: "Archivo Black", sans-serif !important;
  font-size: 1.2rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--v2-text);
  text-decoration: none;
  padding-right: 3px;
}

.lp-v2 .v2-nav-cta {
  background: var(--v2-purple);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
  display: inline-block;
}

.lp-v2 .v2-nav-cta:hover {
  background: var(--v2-purple2);
  transform: scale(1.03);
}

/* ---- Hero v2 ---- */
.lp-v2 .v2-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lp-v2 .v2-hero::before {
  content: '';
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-v2 .v2-hero::after {
  content: '';
  position: absolute;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,225,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

.lp-v2 .v2-headline,
.v2-headline {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(32px, 7vw, 68px);
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
  font-style: normal !important;
  margin-bottom: 24px;
  animation: v2FadeUp .6s ease both;
}

.lp-v2 .v2-headline span,
.v2-headline span {
  background: linear-gradient(90deg, var(--v2-purple), var(--v2-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-v2 .v2-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--v2-text2);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 48px;
  font-weight: 400;
  animation: v2FadeUp .6s ease .1s both;
}

/* ---- iPhone mockup v2 ---- */
.lp-v2 .v2-mockup-wrap {
  position: relative;
  margin-bottom: 52px;
  animation: v2FadeUp .7s ease .2s both;
  /* espacio lateral para los botones físicos */
  padding: 0 12px;
}

/* Glow de fondo */
.lp-v2 .v2-mockup-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.28), transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

/* Cuerpo del iPhone */
.lp-v2 .v2-mockup-frame {
  position: relative;
  width: 245px;
  border-radius: 52px;
  background: linear-gradient(160deg, #2a2a3a 0%, #1a1a28 50%, #141420 100%);
  /* Borde exterior — simula el titanio/aluminio */
  box-shadow:
    /* borde exterior metálico */
    0 0 0 1.5px rgba(255,255,255,0.18),
    0 0 0 3px #0d0d18,
    0 0 0 4.5px rgba(255,255,255,0.08),
    /* sombra de profundidad */
    0 40px 100px rgba(0,0,0,.7),
    0 0 80px rgba(124,58,237,.2);
  padding: 14px;
}

/* Botón lateral derecho — power */
.lp-v2 .v2-mockup-frame::before {
  content: '';
  position: absolute;
  right: -4px;
  top: 28%;
  width: 3.5px;
  height: 72px;
  background: linear-gradient(180deg, #252535, #1a1a28, #252535);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 0 .5px rgba(255,255,255,0.1);
}

/* Botones laterales izquierdos — volumen */
.lp-v2 .v2-mockup-frame::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 20%;
  width: 3.5px;
  height: 42px;
  background: linear-gradient(180deg, #252535, #1a1a28, #252535);
  border-radius: 3px 0 0 3px;
  box-shadow:
    0 0 0 .5px rgba(255,255,255,0.1),
    /* segundo botón de volumen */
    0 60px 0 #252535,
    0 60px 0 .5px rgba(255,255,255,0.1);
}

/* Pantalla — contenedor interior */
.lp-v2 .v2-iphone-screen {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: #0d0d18;
  /* Proporción real del iPhone 15 Pro: 393 × 852px */
  aspect-ratio: 9 / 19.5;
  /* Marco interior negro alrededor de la pantalla */
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.8);
  line-height: 0;
}

/* Dynamic Island */
.lp-v2 .v2-iphone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  /* cámara y sensor */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  gap: 5px;
}

/* Cámara dentro del Dynamic Island */
.lp-v2 .v2-iphone-island::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2a3a, #0a0a14);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 4px rgba(0,100,200,0.3);
}

/* Imagen dentro de la pantalla — cubre todo el frame */
.lp-v2 .v2-iphone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 42px;
}

.lp-v2 .v2-mockup-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1030 0%, #231540 50%, #1a0e2e 100%);
  border-radius: 42px;
}

/* Home indicator */
.lp-v2 .v2-iphone-home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  z-index: 10;
}

/* ---- CTA v2 ---- */
.lp-v2 .v2-cta-wrap {
  animation: v2FadeUp .6s ease .3s both;
}

.lp-v2 .v2-btn-primary {
  background: var(--v2-purple);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 17px 44px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 40px rgba(124,58,237,.5);
  transition: all .2s;
  letter-spacing: .01em;
}

.lp-v2 .v2-btn-primary:hover {
  background: var(--v2-purple2);
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(124,58,237,.6);
}

/* ---- Footer v2 ---- */
.lp-v2 .v2-footer {
  border-top: 1px solid var(--v2-border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-v2 .v2-footer-logo,
.lp-v2 .v2-footer-logo .gradient-text {
  font-family: "Archivo Black", sans-serif !important;
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-decoration: none;
  padding-right: 3px;
}

.lp-v2 .v2-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-v2 .v2-footer-links a {
  font-size: 13px;
  color: var(--v2-text3);
  text-decoration: none;
  transition: color .2s;
}

.lp-v2 .v2-footer-links a:hover { color: var(--v2-text2); }

.lp-v2 .v2-footer-copy {
  font-size: 12px;
  color: var(--v2-text3);
  opacity: .4;
}

/* ---- Animaciones v2 ---- */
@keyframes v2FadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive v2 ---- */
@media (max-width: 600px) {
  .lp-v2 .v2-nav,
  .v2-nav { padding: 16px 20px; }

  .lp-v2 .v2-hero,
  .v2-hero {
    padding: 90px 24px 60px;
    align-items: flex-start;
    text-align: left;
  }

  .lp-v2 .v2-headline,
  .v2-headline {
    font-size: clamp(30px, 9vw, 48px) !important;
    letter-spacing: -0.3px !important;
  }

  .lp-v2 .v2-sub,
  .v2-sub {
    margin-bottom: 32px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .lp-v2 .v2-cta-wrap,
  .v2-cta-wrap { width: 100%; }

  .lp-v2 .v2-btn-primary,
  .v2-btn-primary { width: 100%; text-align: center; }

  .lp-v2 .v2-mockup-wrap,
  .v2-mockup-wrap { align-self: center; }

  .lp-v2 .v2-mockup-frame,
  .v2-mockup-frame { width: 200px; border-radius: 44px; }

  .lp-v2 .v2-iphone-screen,
  .v2-iphone-screen { border-radius: 34px; }

  .lp-v2 .v2-iphone-screen img,
  .v2-iphone-screen img { border-radius: 34px; }

  .lp-v2 .v2-mockup-placeholder,
  .v2-mockup-placeholder { border-radius: 34px; }

  .lp-v2 .v2-footer,
  .v2-footer { flex-direction: column; align-items: flex-start; }
}

/* Ocultar el header/footer de v1 en páginas con template v2 */
.lp-v2 .site-header,
.lp-v2 .mobile-menu,
.lp-v2 .site-footer { display: none; }

/* ============================================================
   Admin Bar offset
   ============================================================ */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
