@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --ink: #0a0a0f;
    --ink-2: #1a1a24;
    --ink-3: #2d2d3d;
    --muted: #6b6b80;
    --muted-2: #9898aa;
    --border: rgba(255,255,255,0.08);
    --border-2: rgba(255,255,255,0.13);
    --accent: #39ff6e;
    --accent-2: #2de060;
    --accent-rgb: 57,255,110;
    --red: #ff3c3c;
    --surface: rgba(255,255,255,0.04);
    --surface-2: rgba(255,255,255,0.07);
    --surface-3: rgba(255,255,255,0.11);
    --card-border: rgba(255,255,255,0.09);
    --green-glow: rgba(57,255,110,0.12);
    --green-glow-2: rgba(57,255,110,0.06);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: #e8e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Ambient glow blobs */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.blob-1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: rgba(57,255,110,0.07);
}
.blob-2 {
    width: 500px; height: 500px;
    bottom: 200px; left: -150px;
    background: rgba(59,130,246,0.05);
}
.blob-3 {
    width: 400px; height: 400px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(57,255,110,0.04);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 3px; }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes livepulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
@keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* Utilities */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ── NAV (landing) ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center;
    padding: 0 32px; height: 64px;
    max-width: 1200px; margin: 0 auto;
}
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 22px;
    letter-spacing: -0.5px; color: #fff;
    text-decoration: none;
    display: flex; align-items: center;
    margin-right: 48px;
}
.logo-dot { color: var(--accent); }
.logo-img { height: 140px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
    font-size: 14px; font-weight: 400; color: var(--muted-2);
    text-decoration: none; padding: 6px 14px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: var(--surface-2); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
    color: var(--muted-2); background: none; border: none; cursor: pointer;
    padding: 8px 16px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: #fff; background: var(--surface-2); }
.btn-accent {
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
    color: var(--ink); background: var(--accent); border: none; cursor: pointer;
    padding: 9px 20px; border-radius: 10px;
    transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    padding: 100px 0 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(57,255,110,0.1); border: 1px solid rgba(57,255,110,0.2);
    color: var(--accent); font-size: 12px; font-weight: 500;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px,5vw,62px); font-weight: 800;
    line-height: 1.06; letter-spacing: -1.5px; color: #fff;
    margin-bottom: 24px;
}
.hero h1 .hl { color: var(--accent); }
.hero-desc {
    font-size: 17px; color: var(--muted); line-height: 1.7;
    max-width: 480px; margin-bottom: 36px; font-weight: 300;
}
.hero-cta { display: flex; align-items: center; gap: 14px; margin-bottom: 52px; }
.btn-primary-lg {
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    color: var(--ink); background: var(--accent); border: none; cursor: pointer;
    padding: 14px 28px; border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.btn-primary-lg:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-secondary-lg {
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
    color: #ccc; background: var(--surface-2); border: 1px solid var(--border-2);
    cursor: pointer; padding: 14px 24px; border-radius: 12px;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.2s, color 0.2s; text-decoration: none;
}
.btn-secondary-lg:hover { background: var(--surface-3); color: #fff; }
.hero-proof { display: flex; align-items: center; gap: 24px; }
.proof-item { text-align: left; }
.proof-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.proof-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.proof-div { width: 1px; height: 36px; background: var(--border-2); }

/* ── HERO PANEL ── */
.hero-panel {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 20px; overflow: hidden;
    animation: fadeUp 0.7s 0.35s ease both;
}
.panel-header {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 16px; border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.panel-dot { width: 8px; height: 8px; border-radius: 50%; }
.panel-dot.r { background: #ff5f57; }
.panel-dot.y { background: #ffbd2e; }
.panel-dot.g { background: #28c840; }
.panel-title {
    font-size: 11px; font-weight: 500; color: var(--muted);
    margin-left: auto; letter-spacing: 0.03em; text-transform: uppercase;
}
.live-badge {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,60,60,0.12); border: 1px solid rgba(255,60,60,0.2);
    color: var(--red); font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 100px; margin-left: 8px;
    letter-spacing: 0.05em;
}
.live-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--red);
    animation: livepulse 1.4s ease infinite;
}

/* ── SECTION TITLES ── */
.section-eyebrow {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 14px;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px,4vw,48px); font-weight: 700;
    letter-spacing: -1px; line-height: 1.1; color: #fff; margin-bottom: 18px;
}
.section-sub {
    font-size: 17px; color: var(--muted); font-weight: 300;
    max-width: 540px; line-height: 1.7;
}

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
    background: var(--surface); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 28px;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    position: relative; overflow: hidden;
}
.feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--accent); opacity: 0;
    transition: opacity 0.25s; border-radius: 16px 16px 0 0;
}
.feat-card:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(57,255,110,0.1); border: 1px solid rgba(57,255,110,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 18px; margin-bottom: 18px;
}
.feat-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.feat-tag {
    display: inline-block; margin-top: 14px;
    font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px;
    background: rgba(57,255,110,0.08); color: var(--accent); border: 1px solid rgba(57,255,110,0.15);
}
.feat-tag.blue  { background: rgba(96,165,250,0.08); color: #60a5fa; border-color: rgba(96,165,250,0.15); }
.feat-tag.green { background: rgba(74,222,128,0.08); color: #4ade80; border-color: rgba(74,222,128,0.15); }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.price-card {
    background: var(--surface); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 32px;
    position: relative; transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
    border-color: rgba(57,255,110,0.3);
    background: rgba(57,255,110,0.04);
}
.price-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--ink);
    font-size: 10px; font-weight: 700;
    padding: 4px 14px; border-radius: 0 0 10px 10px; letter-spacing: 0.08em;
}
.price-name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 20px; color: var(--muted); font-weight: 300; margin-top: 4px; }
.price-num { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: #fff; line-height: 1; }
.price-period { font-size: 13px; color: var(--muted); }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; font-weight: 300; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); padding: 6px 0; }
.price-features li i { font-size: 12px; color: #4ade80; }
.price-features li.off { opacity: 0.4; }
.price-features li.off i { color: var(--muted); }
.btn-price-main {
    width: 100%; padding: 13px; border-radius: 12px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
    background: var(--accent); color: var(--ink); transition: background 0.2s;
}
.btn-price-main:hover { background: var(--accent-2); }
.btn-price-outline {
    width: 100%; padding: 13px; border-radius: 12px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
    background: none; border: 1px solid var(--border-2); color: #ccc;
    transition: background 0.2s, color 0.2s;
}
.btn-price-outline:hover { background: var(--surface-2); color: #fff; }

/* ── TESTIMONIALS ── */
.social-proof { padding: 80px 0; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.testi-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px; }
.testi-stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.testi-text strong { color: #e8e8f0; font-weight: 400; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.testi-name { font-size: 13px; font-weight: 500; color: #ccc; }
.testi-role { font-size: 11px; color: var(--muted); }

/* ── CTA FINAL ── */
.cta-final { padding: 100px 0; text-align: center; position: relative; }
.cta-final::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(57,255,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-final h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px,5vw,60px); font-weight: 800;
    letter-spacing: -1.5px; color: #fff; line-height: 1.08; margin-bottom: 20px;
}
.cta-final p { font-size: 17px; color: var(--muted); font-weight: 300; margin-bottom: 40px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 28px; }
.cta-fine { font-size: 13px; color: var(--muted); }
.cta-fine span { margin: 0 8px; opacity: 0.4; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px 0 36px; }
.footer-inner { display: flex; align-items: flex-start; gap: 80px; }
.footer-brand { flex: 1; }
.footer-brand .logo { font-size: 20px; text-decoration: none; display: inline-flex; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--muted); font-weight: 300; max-width: 220px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted-2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted); text-decoration: none; font-size: 16px; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
