/* ============== VENTO CREATIVO — STYLES ============== */
/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
:root {
  --bg: #050508;
  --bg-2: #0a0a12;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --text: #f4f4f7;
  --text-2: #a8a8b8;
  --text-3: #888899;
  --accent: #7c5cff;
  --accent-2: #00e5ff;
  --accent-3: #ff5cb9;
  --green: #25d366;
  --grad-1: linear-gradient(135deg, #7c5cff 0%, #00e5ff 100%);
  --grad-2: linear-gradient(135deg, #ff5cb9 0%, #7c5cff 100%);
  --grad-3: linear-gradient(135deg, #7c5cff 0%, #ff5cb9 50%, #00e5ff 100%);
  --shadow-glow: 0 40px 100px -30px rgba(124,92,255,0.5);
  --radius: 20px;
  --radius-lg: 28px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Skip link accesibilidad */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: 100px;
  z-index: 1000;
  transition: top 0.3s var(--ease-out-expo);
}
.skip-link:focus { top: 16px; }

/* ============== BACKGROUND CANVAS ============== */
#bg-canvas {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-grid {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ============== NAV — FLUID ISLAND ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  transition: all 0.5s var(--ease-out-expo);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 12px 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 100px;
  background: rgba(5,5,8,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}
.nav.scrolled .nav-inner {
  background: rgba(5,5,8,0.88);
  border-color: var(--border-strong);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-1);
  display: grid; place-items: center;
  font-weight: 900;
  color: #050508;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px -4px rgba(124,92,255,0.5);
  transition: transform 0.4s var(--ease-out-back);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.nav-links {
  display: flex; gap: 4px; align-items: center;
  font-size: 0.88rem;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--text-2);
  transition: all 0.3s var(--ease-out-expo);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-1);
  background-size: 200% 100%;
  color: #050508;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background-position: 100% 0;
  box-shadow: 0 20px 50px -15px rgba(124,92,255,0.65);
  color: #050508;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:active { transform: translateY(-1px) scale(0.98); }
.nav-cta svg, .nav-cta span { position: relative; z-index: 1; }

.nav-links .nav-cta-mobile {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 110;
  flex-shrink: 0;
}
.hamburger-line {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-links.mobile-open {
  display: flex !important;
  position: absolute;
  top: calc(100% + 12px); left: 16px; right: 16px;
  background: rgba(10,10,18,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  animation: dropdownSlide 0.4s var(--ease-out-expo) forwards;
  transform-origin: top center;
}
@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.nav-links.mobile-open a {
  font-size: 1.15rem;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp 0.4s var(--ease-out-expo) forwards;
}
.nav-links.mobile-open a:nth-child(1) { animation-delay: 0.05s; }
.nav-links.mobile-open a:nth-child(2) { animation-delay: 0.1s; }
.nav-links.mobile-open a:nth-child(3) { animation-delay: 0.15s; }
.nav-links.mobile-open a:nth-child(4) { animation-delay: 0.2s; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 160px 24px 100px;
  z-index: 1;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -15%; left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100vw); height: min(1400px, 100vw);
  background: radial-gradient(circle, rgba(124,92,255,0.3) 0%, rgba(0,229,255,0.12) 35%, transparent 65%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px;
  align-items: center;
}
.hero-content { z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  animation: slideUp 0.8s var(--ease-out-expo) 0.1s both;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% {opacity:1} 50% {opacity:0.4} }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: slideUp 0.8s var(--ease-out-expo) 0.2s both;
  overflow: hidden;
}
.hero h1 .word {
  display: inline-block;
  background: var(--grad-1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slideUp 0.8s var(--ease-out-expo) 0.3s both, gradShift 6s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero h1 .rotator {
  display: inline-block;
  color: var(--accent-2);
  position: relative;
  vertical-align: bottom;
  text-align: left;
}
.hero h1 .rotator::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--accent-2);
  animation: blink-caret 0.8s step-end infinite;
  font-weight: 400;
}
@keyframes blink-caret { 50% { opacity: 0; } }
.hero p.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  animation: slideUp 0.8s var(--ease-out-expo) 0.4s both;
  line-height: 1.7;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: slideUp 0.8s var(--ease-out-expo) 0.5s both;
}

/* ============== BUTTONS — BUTTON-IN-BUTTON ============== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-1);
  background-size: 200% 100%;
  color: #050508;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow: 0 50px 120px -30px rgba(124,92,255,0.65);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

/* Button-in-Button icon pattern */
.btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: grid; place-items: center;
  transition: all 0.4s var(--ease-out-expo);
}
.btn-primary:hover .btn-icon {
  transform: translate(2px, -2px) scale(1.1);
  background: rgba(0,0,0,0.25);
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--text-3);
  transform: translateY(-3px);
}
.btn-ghost:active { transform: translateY(-1px) scale(0.98); }
.btn .icon { width: 18px; height: 18px; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) blur(4px); }
  to { opacity: 1; transform: translateY(0) blur(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* hero stats */
.hero-stats {
  display: flex; gap: 36px;
  flex-wrap: wrap;
  animation: slideUp 0.8s var(--ease-out-expo) 0.6s both;
}
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* hero visual - browser mockup */
.hero-visual {
  position: relative;
  animation: slideUp 0.8s var(--ease-out-expo) 0.4s both;
}
.browser {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 80px 160px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
}
.browser:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg); }
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green { background: #28c840; }
.browser-url {
  flex: 1; margin-left: 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: 'Space Grotesk', monospace;
}
.browser-content {
  padding: 36px;
  background: linear-gradient(180deg, rgba(124,92,255,0.06), transparent 50%);
  min-height: 380px;
  position: relative;
}
.mock-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mock-logo {
  font-weight: 700; font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
}
.mock-btn {
  background: var(--grad-1);
  color: #050508;
  font-size: 0.75rem;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
}
.mock-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.mock-headline span { background: var(--grad-1); -webkit-background-clip:text; background-clip:text; color: transparent; }
.mock-text {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.mock-text.short { width: 60%; }
.mock-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 24px;
}
.mock-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  height: 75px;
}
.mock-card-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--grad-1);
  margin-bottom: 10px;
}
.mock-card-text { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 70%; }

/* floating tags */
.float-tag {
  position: absolute;
  background: rgba(10,10,18,0.88);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
  animation: float 7s ease-in-out infinite;
  z-index: 2;
}
.float-tag.t1 { top: 12%; left: -20px; animation-delay: 0s; }
.float-tag.t2 { bottom: 18%; right: -30px; animation-delay: 2s; }
.float-tag .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.float-tag.t1 .ic { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-tag.t2 .ic { background: var(--grad-1); }
.float-tag .num-bump {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.82rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* ============== TRUST BAR ============== */
.trust {
  position: relative; z-index: 2;
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.03), transparent);
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.trust-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--text-3);
  margin-bottom: 32px;
  font-weight: 600;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.trust-item .v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.trust-item .l {
  font-size: 0.82rem; color: var(--text-2);
  font-weight: 500;
}

/* ============== SECTIONS ============== */
section {
  position: relative; z-index: 2;
  padding: 120px 24px;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
}
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-head h2 .hl { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============== PAIN SECTION — DOUBLE-BEZEL ============== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  position: relative;
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--border);
  transition: all 0.5s var(--ease-out-expo);
}
.pain-card:hover {
  transform: translateY(-8px);
  background: var(--border-strong);
}
.pain-card-inner {
  padding: 36px 30px;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pain-card:hover .pain-card-inner {
  background: linear-gradient(180deg, rgba(124,92,255,0.08), rgba(0,229,255,0.02));
}
.pain-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(0,229,255,0.06));
  border: 1px solid var(--border-strong);
  margin-bottom: 24px;
  color: var(--accent);
  transition: all 0.4s var(--ease-out-expo);
}
.pain-card:hover .pain-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(124,92,255,0.25), rgba(0,229,255,0.1));
}
.pain-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pain-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }
.pain-divider {
  text-align: center;
  margin: 70px 0 35px;
  font-size: 1.15rem;
  color: var(--text-2);
  font-weight: 500;
}
.pain-solution {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.pain-solution .hl { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============== FEATURES — BENTO ASYMMETRIC ============== */
.features {
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.025), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Bento: first 2 cards are larger */
.features-grid .feature-card:nth-child(1) {
  grid-column: span 2;
}
.features-grid .feature-card:nth-child(2) {
  grid-column: span 2;
}
.features-grid .feature-card:nth-child(7) {
  grid-column: span 4;
}
.feature-card {
  padding: 34px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(124,92,255,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateY(-6px);
}
.feature-card .num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-3);
  opacity: 0.4;
}
.feature-card .ic-big {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad-1);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: #050508;
  transition: all 0.4s var(--ease-out-expo);
}
.feature-card:hover .ic-big {
  transform: scale(1.08) rotate(-3deg);
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}
.feature-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; position: relative; }

/* ============== TESTIMONIALS — DOUBLE-BEZEL ============== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--border);
  transition: all 0.5s var(--ease-out-expo);
  display: flex; flex-direction: column;
}
.test-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  background: var(--border-strong);
}
.test-card-inner {
  padding: 34px;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
}
.test-card .stars { color: #ffc857; font-size: 0.92rem; letter-spacing: 3px; margin-bottom: 20px; }
.test-card blockquote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  flex: 1;
  quotes: none;
}
.test-card blockquote::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-2);
  display: grid; place-items: center;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
}
.test-info .n { font-weight: 600; font-size: 0.92rem; }
.test-info .r { font-size: 0.78rem; color: var(--text-3); }

/* ============== PRICING — DOUBLE-BEZEL + 3D ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 4px;
  border-radius: var(--radius-lg);
  background: var(--border);
  display: flex; flex-direction: column;
  transition: all 0.5s var(--ease-out-expo);
  overflow: visible;
}
.price-card:hover {
  transform: translateY(-10px);
  background: var(--border-strong);
}
.price-card-inner {
  padding: 40px 34px;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: rgba(124,92,255,0.3);
  box-shadow: 0 40px 100px -30px rgba(124,92,255,0.45);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-10px); }
.price-card.featured .price-card-inner {
  background: linear-gradient(180deg, rgba(124,92,255,0.1), rgba(0,229,255,0.03));
}
.price-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(124,92,255,0.2), transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--grad-1);
  color: #050508;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative;
}
.price-card .desc {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 28px;
  min-height: 50px;
  line-height: 1.6;
  position: relative;
}
.price-card .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
  position: relative;
}
.price-card .price .from { color: var(--text-3); font-size: 0.88rem; }
.price-card .price .v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price-card .price .per { color: var(--text-3); font-size: 0.88rem; }
.price-card .features-list {
  margin: 28px 0 32px;
  flex: 1;
  position: relative;
}
.price-card .features-list li {
  padding: 11px 0;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-card .features-list li:last-child { border-bottom: none; }
.price-card .features-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  display: grid; place-items: center;
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 700;
}
.price-card .btn { width: 100%; justify-content: center; position: relative; }
.included-bar {
  margin-top: 36px;
  text-align: center;
  padding: 20px 28px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-2);
}
.included-bar strong { color: var(--text); }
.included-bar .pills { display: inline-flex; gap: 8px; margin-left: 8px; flex-wrap: wrap; justify-content: center; }
.included-bar .pill {
  padding: 5px 14px;
  background: rgba(124,92,255,0.12);
  border: 1px solid rgba(124,92,255,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

/* ============== FAQ ============== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 16px;
}
.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.faq-item.open {
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s var(--ease-out-expo);
}
.faq-q:hover { color: var(--accent-2); }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
  font-size: 1.3rem;
  color: var(--accent-2);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--grad-1); color: #050508; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 28px 28px;
}

/* ============== FINAL CTA ============== */
.final-cta {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 100vw); height: min(900px, 100vw);
  background: radial-gradient(circle, rgba(124,92,255,0.2), transparent 55%);
  filter: blur(80px);
  z-index: -1;
}
.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.final-cta p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.final-cta .btn-primary { font-size: 1.05rem; padding: 20px 36px; }
.final-trust {
  margin-top: 32px;
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-2);
}
.final-trust span { display: inline-flex; align-items: center; gap: 8px; }
.final-trust .ok { color: var(--accent-2); font-weight: 600; }

/* ============== FOOTER ============== */
.footer {
  position: relative; z-index: 2;
  padding: 80px 24px 40px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brand-col {
  padding-right: 20px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out-back);
}
.footer-brand:hover img {
  transform: scale(1.03);
}
.footer-tagline {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.3s var(--ease-out-expo);
}
.social-links a:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px);
}
.social-icon {
  width: 16px;
  height: 16px;
}
.footer-title {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  color: var(--text-2);
  font-size: 0.88rem;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
}
.footer-list a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 0.88rem;
}
.contact-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 6px 12px;
  border-radius: 100px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy-text {
  color: var(--text-3);
  font-size: 0.8rem;
  font-style: normal;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  color: var(--text-3);
  font-size: 0.8rem;
  transition: color 0.3s var(--ease-out-expo);
}
.footer-legal-links a:hover {
  color: var(--text);
}

/* ============== WHATSAPP FLOAT ============== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 24px 50px -12px rgba(37,211,102,0.55);
  transition: all 0.4s var(--ease-out-expo);
  animation: pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 30px 60px -12px rgba(37,211,102,0.65); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 24px 50px -12px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 24px 50px -12px rgba(37,211,102,0.55), 0 0 0 20px rgba(37,211,102,0); }
}

/* ============== SOCIAL PROOF FLOAT ============== */
.social-proof-float {
  position: fixed;
  bottom: 28px; left: 28px; right: auto;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(5,5,8,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.6);
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s var(--ease-out-expo);
}
.social-proof-float strong {
  color: var(--accent-2);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  display: inline-block;
  transition: opacity 0.6s ease-in-out, filter 0.6s ease-in-out, transform 0.25s var(--ease-spring);
  opacity: 1;
  filter: blur(0);
}
.social-proof-float strong.changing {
  opacity: 0;
  filter: blur(6px);
}
.social-proof-float.bump strong {
  transform: scale(1.3);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.25);
  animation: blink 2.5s ease-in-out infinite;
}

/* ============== COOKIE BANNER — PILLS ============== */
.cookies {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 90;
  max-width: 400px;
  padding: 20px 24px;
  background: rgba(10,10,18,0.92);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-2);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  display: none;
}
.cookies.show { display: block; animation: slideUp 0.5s var(--ease-out-expo); }
.cookies p { margin-bottom: 14px; line-height: 1.6; }
.cookies .row { display: flex; gap: 10px; }
.cookies button {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
}
.cookies .accept { background: var(--grad-1); color: #050508; }
.cookies .reject { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.cookies button:hover { transform: translateY(-2px); }

/* ============== REVEAL ANIMATIONS — STAGGERED ============== */
.reveal {
  opacity: 0;
  transform: translateY(50px) blur(6px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) blur(0);
}
/* Staggered delays for children */
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.3s; }
.reveal-delay-6 { transition-delay: 0.36s; }
.reveal-delay-7 { transition-delay: 0.42s; }
.reveal-delay-8 { transition-delay: 0.48s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: left; }
  .hero { padding-top: 140px; }
  .browser { transform: none; }
  .float-tag.t1, .float-tag.t2 { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pain-grid, .test-grid, .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(2) {
    grid-column: span 1;
  }
  .features-grid .feature-card:nth-child(7) {
    grid-column: span 2;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }
  
  /* CTA classes configuration */
  .nav-cta-desktop { display: none !important; }
  .nav-links .nav-cta-mobile {
    display: inline-flex !important;
    margin: 16px auto 8px;
    width: calc(100% - 40px);
    justify-content: center;
    background: var(--grad-1);
    background-size: 200% 100%;
    color: #050508 !important;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
  }
  .nav-links.mobile-open .nav-cta-mobile {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.4s var(--ease-out-expo) 0.25s forwards;
  }
  .nav-links.mobile-open .nav-cta-mobile:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 30px 80px -20px rgba(124,92,255,0.65);
    color: #050508 !important;
  }
  .nav-links.mobile-open a:nth-child(5) { animation-delay: 0.25s; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .eyebrow { flex-wrap: wrap; justify-content: center; text-align: center; font-size: 0.72rem; line-height: 1.4; padding: 8px 12px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid .feature-card { grid-column: span 1 !important; padding: 24px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    justify-content: center;
  }
  .hero-stats .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-stats .stat .num {
    height: 38px;
    line-height: 38px;
    display: inline-block;
  }
  .nav-inner { padding: 8px 8px 8px 14px; gap: 6px; }
  .brand span:last-child { display: none; }
  .hamburger { display: flex !important; margin-left: auto; }
  section { padding: 80px 20px; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .brand-col {
    padding-right: 0;
  }
  .social-links {
    justify-content: center;
  }
  .footer-list a:hover {
    transform: translateY(-2px);
  }
  .contact-list li {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-top: 24px;
    margin-top: 0;
  }
  .footer-legal-links {
    justify-content: center;
    gap: 16px;
  }

  .included-bar {
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .included-bar .pills {
    margin-left: 0;
    gap: 8px;
    justify-content: center;
  }
  .included-bar .pill {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .footer {
    padding-bottom: 110px;
  }
  .social-proof-float {
    bottom: 20px;
    left: 16px;
    padding: 8px 14px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .social-proof-float strong {
    font-size: 0.82rem;
  }
  .live-dot {
    width: 6px;
    height: 6px;
  }
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
