/* ==========================================================
   WIZERHUB — Landing v3 (Dark Ultra Premium · Purple+Gold)
   Off-black #0A0712 · Liquid glass · Magnetic CTAs · Purple #7B39FC
   ========================================================== */

/* ===== FONDO + ORBS DECORATIVOS (live-animated SVG/blur) ===== */
.wz-orb-stage {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.wz-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    will-change: transform, opacity;
}
.wz-orb--purple {
    width: 720px; height: 720px;
    left: -180px; top: -200px;
    background: radial-gradient(circle at 30% 30%, #7B39FC 0%, #4F1FB5 40%, transparent 70%);
    animation: wz-orb-drift-a 22s ease-in-out infinite;
}
.wz-orb--blue {
    width: 540px; height: 540px;
    right: -120px; top: 30%;
    background: radial-gradient(circle at 50% 50%, #4F6CFF 0%, #2F4DE6 45%, transparent 70%);
    opacity: 0.40;
    animation: wz-orb-drift-b 28s ease-in-out infinite;
}
.wz-orb--gold {
    width: 380px; height: 380px;
    left: 40%; bottom: -120px;
    background: radial-gradient(circle at 50% 50%, #E6C566 0%, #B89436 35%, transparent 70%);
    opacity: 0.20;
    animation: wz-orb-drift-c 26s ease-in-out infinite;
}
@keyframes wz-orb-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(80px, 40px) scale(1.08); }
}
@keyframes wz-orb-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-60px, 60px) scale(0.92); }
}
@keyframes wz-orb-drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -50px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
    .wz-orb { animation: none; }
}

/* Asegura que el contenido viva por encima de los orbs */
.wz-landing > main,
.wz-landing > section,
.wz-landing > footer,
.wz-landing .wz-hero-wrap,
.wz-landing .wz-info,
.wz-landing .wz-backers,
.wz-landing .wz-cases,
.wz-landing .wz-vertic,
.wz-landing .wz-pricing-section,
.wz-landing .wz-cta-section { position: relative; z-index: 1; }

/* ==========================================================
   HERO SPEC — implementación exacta del prompt hero-section.md
   Fondo #000 · video 120% · pill blurry · nav 102px · content 871px
   ========================================================== */

.hero-spec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #000000;
    overflow: hidden;
    isolation: isolate;
    /* Manrope is the spec default for nav and subtitle */
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Fade inferior — funde el hero (#000) con el bg del body (#0A0712) de la
   siguiente sección para evitar un corte abrupto. Sale por encima del video
   y de la pill pero debajo del nav/contenido (z-index 3). */
.hero-spec::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 240px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)        0%,
        rgba(7,5,15,0.50)   40%,
        rgba(10,7,18,0.92) 100%
    );
}
@media (max-width: 980px) {
    .hero-spec::after { height: 180px; }
}

/* Spacer suave en la siguiente sección para que el fade quede natural */
.hero-spec + .wz-info {
    padding-top: 80px;
    background: linear-gradient(to bottom, rgb(11 8 19) 0%, rgb(21 13 55 / 50%) 40%, rgb(17 11 27) 100%);
}
@media (max-width: 980px) {
    .hero-spec + .wz-info { padding-top: 48px; }
}

/* (1) BACKGROUND VIDEO — scaled 120% w/h, horizontally centered, focal bottom, z-0 */
.hero-spec__video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 50% 100%;       /* focal point anchored to the bottom */
    z-index: 0;
    pointer-events: none;
}

/* (2) BLURRED BLACK PILL — 801×384 @ top 215px, blur 77.5px, z-1 */
.hero-spec__blur-pill {
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
    width: 801px;
    height: 384px;
    border-radius: 9999px;
    background: #000000;
    filter: blur(77.5px);
    z-index: 1;
    pointer-events: none;
}

/* (3) NAVBAR — max-w 1440px, padding 120px/16px, height 102px, z-2 */
.hero-spec__nav {
    position: relative;
    z-index: 50;
    width: 100%;
    transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
/* Sobre el hero, al hacer scroll, el nav coge fondo glass */
.hero-spec__nav.is-scrolled {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* En páginas internas (no hay .hero-spec), nav fijo arriba con fondo glass */
.hero-spec__nav.is-fixed {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10,7,18,0.78);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-spec__nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 120px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hero-spec__nav-left {
    display: flex;
    align-items: center;
    gap: 80px;            /* spec: 80px gap between logo and nav links */
}
.hero-spec__nav-brand img {
    width: auto;
    height: 20px;
    display: block;
    filter: brightness(1.1);
}

/* Nav links: 10px gap; each Manrope medium 14px / 22px, white */
.hero-spec__nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}
body .hero-spec__nav-links a,
body.is-dark .hero-spec__nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 3px;                          /* 3px gap before chevron */
    padding: 10px;                     /* spec: 10px horiz, 4px vert — using 10px H is correct, vert balances visually */
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #ffffff;
    letter-spacing: 0;
    text-decoration: none;
    transition: opacity .2s ease;
}
body .hero-spec__nav-links a:hover { opacity: 0.75; color: #ffffff; }
body .hero-spec__nav-links a.is-active { opacity: 1; font-weight: 600; color: #ffffff; }
body .hero-spec__nav-links a svg { color: #ffffff; opacity: 0.9; }

/* Right side: two buttons, 12px gap */
.hero-spec__nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Sign In: white bg, 16px/8px padding, 8px radius, Manrope semibold 14/22 #171717
   (selector reforzado con body para ganar al override de body.is-dark a {color:inherit}) */
body .hero-spec__nav-signin,
body.is-dark .hero-spec__nav-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: #ffffff;
    color: #171717;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px #d4d4d4;
    transition: background .2s ease, transform .1s ease;
}
body .hero-spec__nav-signin:hover,
body.is-dark .hero-spec__nav-signin:hover { background: #f5f5f5; color: #171717; }
body .hero-spec__nav-signin:active,
body.is-dark .hero-spec__nav-signin:active { transform: translateY(0.5px); }

/* Get Started: #7b39fc, 16px/8px padding, 8px radius, Manrope semibold 14/22 #fafafa */
body .hero-spec__nav-cta,
body.is-dark .hero-spec__nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: #7b39fc;
    color: #fafafa;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(23,23,23,0.04);
    transition: background .2s ease, transform .1s ease;
}
body .hero-spec__nav-cta:hover,
body.is-dark .hero-spec__nav-cta:hover { background: #6a2ce6; color: #fafafa; }
body .hero-spec__nav-cta:active,
body.is-dark .hero-spec__nav-cta:active { transform: translateY(0.5px); }

/* Burger — visible solo en mobile */
.hero-spec__nav-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}
.hero-spec__nav-burger:hover { background: rgba(255,255,255,0.12); }

/* (4) HERO CONTENT — flex column centered, max-w 871px, top margin 162px, z-4
   (encima del fade inferior y de la pill, debajo del nav que está en z-50) */
.hero-spec__content {
    position: relative;
    z-index: 4;
    max-width: 871px;
    margin: 0 auto;
    padding: 0 24px 80px;
    margin-top: 162px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;                  /* 24px gap between heading block and buttons */
}
.hero-spec__heading {
    display: flex;
    flex-direction: column;
    gap: 10px;                  /* 10px gap inside heading */
    align-items: center;
    text-align: center;
}
.hero-spec__line-1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 76px;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0;
}
.hero-spec__line-2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 76px;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0;
}
.hero-spec__subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #f6f7f9;
    opacity: 0.90;
    max-width: 613px;
    margin: 0;
    padding: 0 8px;
}

/* CTAs: flex row, 22px gap */
.hero-spec__ctas {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-spec__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Cabin', 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
    transition: filter .2s ease, transform .1s ease, background .2s ease;
    white-space: nowrap;
}
.hero-spec__btn--primary {
    background: #7b39fc;
    color: #ffffff;
    box-shadow: 0 8px 24px -8px rgba(123,57,252,0.55);
}
.hero-spec__btn--primary:hover { filter: brightness(1.08); color: #ffffff; }
.hero-spec__btn--primary:active { transform: translateY(0.5px); }
.hero-spec__btn--dark {
    background: #2b2344;
    color: #f6f7f9;
}
.hero-spec__btn--dark:hover { background: #3a2c5c; color: #f6f7f9; }
.hero-spec__btn--dark:active { transform: translateY(0.5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    .hero-spec__nav-inner { padding-left: 48px; padding-right: 48px; }
    .hero-spec__nav-left { gap: 48px; }
}
@media (max-width: 980px) {
    .hero-spec__nav-inner { padding: 14px 18px; height: 76px; }
    .hero-spec__nav-links { display: none; }
    .hero-spec__nav-signin { display: none; }
    .hero-spec__nav-burger { display: inline-flex; }

    .hero-spec__content { margin-top: 96px; padding-bottom: 64px; gap: 22px; }
    .hero-spec__heading { gap: 6px; }
    .hero-spec__line-1,
    .hero-spec__line-2 {
        font-size: clamp(40px, 9vw, 56px);
        letter-spacing: -1.2px;
        line-height: 1.1;
    }
    .hero-spec__subtitle { font-size: 16px; line-height: 24px; }
    .hero-spec__blur-pill { top: 140px; width: 90%; height: 280px; filter: blur(60px); }
}
@media (max-width: 480px) {
    .hero-spec__ctas { flex-direction: column; width: 100%; gap: 12px; padding: 0 12px; }
    .hero-spec__btn { width: 100%; padding: 14px 20px; }
}

/* ===== Compat shims para el resto del sitio que aún usa .wz-nav__brand =====
   (otras páginas /ecosystem, /academy, etc. siguen usando landing_nav v2 si
   alguna referencia quedó suelta; estos shims evitan que se rompan) */
.wz-nav { position: relative; }
.wz-nav__inner { max-width: 1408px; margin: 0 auto; }
.wz-nav__brand img { height: 32px; }

/* ===== MOBILE FULL-WIDTH APP MENU ===== */
.wz-mobile-menu {
    position: fixed; inset: 0;
    background: rgba(10,7,18,0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
}
.wz-mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.wz-mobile-menu__panel {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; max-width: none;
    background: linear-gradient(165deg, #150C28 0%, #0A0712 55%, #0C0820 100%);
    padding: 24px 22px 32px;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4,1.4,.5,1), opacity .25s ease;
    display: flex; flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}
.wz-mobile-menu.is-open .wz-mobile-menu__panel { transform: translateY(0); opacity: 1; }

/* glow púrpura decorativo dentro del menú */
.wz-mobile-menu__panel::before {
    content: '';
    position: absolute;
    top: -160px; right: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,57,252,0.55) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.wz-mobile-menu__head {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 6px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 14px;
}
.wz-mobile-menu__head img { height: 34px; filter: drop-shadow(0 4px 16px rgba(123,57,252,0.40)); }
.wz-mobile-menu__head .wz-icon-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.wz-mobile-menu a {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: background .2s ease, transform .15s ease;
}
.wz-mobile-menu a::after {
    content: '→';
    color: rgba(255,255,255,0.40);
    font-size: 18px;
    transition: transform .25s ease, color .2s ease;
}
.wz-mobile-menu a:hover { background: rgba(123,57,252,0.10); }
.wz-mobile-menu a:hover::after { transform: translateX(4px); color: var(--wz-purple-bright); }
.wz-mobile-menu a:active { transform: translateY(1px); }
.wz-mobile-menu .wz-divider {
    background: rgba(255,255,255,0.08);
    margin: 14px 6px;
}
.wz-mobile-menu .wz-btn {
    margin-top: 8px;
    z-index: 1;
}
.wz-mobile-menu .wz-btn::after { display: none; }

/* ===== HERO ===== */
.wz-hero-wrap {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: #0A0712;
}

.wz-hero {
    flex: 1;
    padding: 0 24px 40px;
    padding-top: 110px;
    display: flex;
    align-items: stretch;
}

.wz-hero__card {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}

/* Video de fondo escalado +20% como pide el spec — focal point bottom */
.wz-hero__video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 50% 100%;
    z-index: 0;
    opacity: 0.85;
}

/* Pill blurry negro centrado debajo del nav (spec hero-section.md) */
.wz-hero__card::before {
    content: '';
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
    width: 801px;
    height: 384px;
    max-width: 90%;
    border-radius: 9999px;
    background: rgba(0,0,0,0.55);
    filter: blur(77.5px);
    z-index: 1;
    pointer-events: none;
}

/* Vignette para profundizar */
.wz-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(123,57,252,0.32) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10,7,18,0.55) 0%, rgba(10,7,18,0.20) 35%, rgba(10,7,18,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero content centered */
.wz-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 162px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    min-height: 100%;
}

.wz-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: rgba(245,242,255,0.92);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.wz-hero__eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--wz-purple-bright);
    box-shadow: 0 0 12px var(--wz-purple-bright);
    animation: wz-pulse-glow 2s ease-in-out infinite;
}

.wz-hero__title {
    font-family: var(--wz-font-display);
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.wz-hero__title em,
.wz-hero__title .ital {
    font-family: var(--wz-font-serif);
    font-style: italic;
    font-weight: 400;
    color: #F5F2FF;
    background: linear-gradient(120deg, #C9B0FF 0%, #fff 50%, #E6C566 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wz-hero__sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(245,242,255,0.78);
    max-width: 640px;
    line-height: 1.55;
    margin: 0;
    letter-spacing: -0.005em;
}

.wz-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.wz-hero__ctas .wz-btn { height: 52px; font-family: var(--wz-font-cta); font-size: 15px; padding: 0 24px; }
.wz-hero__ctas .wz-btn--primary {
    background: var(--wz-purple);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 12px 32px -10px rgba(123,57,252,0.55);
}
.wz-hero__ctas .wz-btn--primary:hover {
    background: var(--wz-purple-bright);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.30),
        0 18px 40px -12px rgba(123,57,252,0.70);
}
.wz-hero__ctas .wz-btn--dark {
    background: #2B2344;
    color: #F5F2FF;
    border: 1px solid rgba(255,255,255,0.10);
}
.wz-hero__ctas .wz-btn--dark:hover { background: #38295B; color: #fff; }

/* Hero marquee al pie del card */
.wz-hero__marquee {
    width: 100%;
    max-width: 720px;
    margin-top: 32px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.wz-marquee__track {
    display: flex;
    width: max-content;
    animation: wz-marquee 32s linear infinite;
}
.wz-marquee__item {
    margin: 0 28px;
    flex-shrink: 0;
    color: rgba(245,242,255,0.55);
    white-space: nowrap;
    font-size: 14px;
}
@keyframes wz-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 980px) {
    .wz-hero { padding: 12px 12px 24px; padding-top: 88px; }
    .wz-hero__card { border-radius: 22px; }
    .wz-hero__card::before { top: 140px; height: 280px; width: 110%; filter: blur(60px); }
    .wz-hero__content { padding: 96px 18px 48px; gap: 22px; }
    .wz-hero__title { font-size: clamp(38px, 9vw, 52px); }
    .wz-hero__sub { font-size: 15.5px; }
}

/* ===== SECTION HEADS ===== */
.wz-section__head {
    display: grid; gap: 14px; margin-bottom: 56px;
    max-width: 760px;
}
.wz-section__head--center { margin: 0 auto 56px; text-align: center; justify-items: center; }
.wz-section__eyebrow {
    font-size: 12.5px;
    color: var(--wz-purple-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

.wz-h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.wz-h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.wz-lead {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(245,242,255,0.72);
    letter-spacing: -0.01em;
    margin: 0;
}

/* ===== INFO ("Conoce Wizerhub") ===== */
.wz-info {
    padding: 96px 24px;
}
.wz-info__inner { max-width: 1408px; margin: 0 auto; }
.wz-info__row1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
    align-items: start;
}
.wz-info__title {
    font-family: var(--wz-font-display);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
}
.wz-info__title em, .wz-info__title .ital {
    font-family: var(--wz-font-serif);
    font-style: italic;
    color: #C9B0FF;
}
.wz-info__lead {
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.4;
    color: rgba(245,242,255,0.78);
    letter-spacing: -0.018em;
    margin: 0;
}

.wz-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wz-info__card {
    border-radius: 24px;
    padding: 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 24px 48px -16px rgba(0,0,0,0.45);
    transition: transform .35s cubic-bezier(.4,1.2,.5,1), border-color .25s ease, box-shadow .25s ease;
}
.wz-info__card:hover {
    transform: translateY(-4px);
    border-color: rgba(123,57,252,0.30);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 32px 64px -18px rgba(123,57,252,0.30);
}
.wz-info__card-title {
    font-family: var(--wz-font-display);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: #fff;
}
.wz-info__card-body {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(245,242,255,0.70);
    max-width: 320px;
}

.wz-info__card.span-2 { grid-column: span 2; min-height: 380px; }

/* Card con video (Educación) */
.wz-info__card--bg-1 {
    background-color: #0F0820;
    color: #fff;
    isolation: isolate;
    border-color: rgba(123,57,252,0.20);
}
.wz-info__card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
}
.wz-info__card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,7,18,0.85) 0%, rgba(10,7,18,0.45) 50%, rgba(123,57,252,0.35) 100%);
    z-index: 1;
}
.wz-info__card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

/* Dark variant — versión simple sin video */
.wz-info__card--dark {
    background: linear-gradient(165deg, #150C28 0%, #0F0820 100%);
}
.wz-info__card--dark .wz-info__card-title { color: #fff; }
.wz-info__card--dark .wz-info__card-body { color: rgba(245,242,255,0.68); }

@media (max-width: 980px) {
    .wz-info { padding: 64px 18px; }
    .wz-info__row1 { grid-template-columns: 1fr; gap: 24px; }
    .wz-info__grid { grid-template-columns: 1fr; }
    .wz-info__card.span-2 { grid-column: span 1; }
}

/* ===== BACKERS / value props marquee ===== */
.wz-backers {
    padding: 60px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.015);
}
.wz-backers__inner {
    max-width: 1408px; margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}
.wz-backers__label {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(245,242,255,0.66);
    letter-spacing: -0.005em;
}
.wz-backers__label strong { color: #fff; font-weight: 600; }
.wz-backers__track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.wz-backers__track {
    display: flex;
    width: max-content;
    animation: wz-marquee 38s linear infinite;
    gap: 14px;
}
.wz-backers__item {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(245,242,255,0.82);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .wz-backers__inner { grid-template-columns: 1fr; gap: 22px; }
}

/* ===== CASES ===== */
.wz-cases { padding: 96px 24px; }
.wz-cases__inner {
    max-width: 1408px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}
.wz-cases__left { padding-top: 16px; }
.wz-cases__title {
    font-family: var(--wz-font-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
    font-weight: 500;
    margin: 14px 0 18px;
}
.wz-cases__title em, .wz-cases__title .ital {
    font-family: var(--wz-font-serif);
    font-style: italic;
    color: #C9B0FF;
}
.wz-cases__lead {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(245,242,255,0.68);
    max-width: 460px;
}

.wz-cases__feature {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    min-height: 460px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 32px 64px -16px rgba(0,0,0,0.55);
}
.wz-cases__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}
.wz-cases__feature::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,7,18,0.20) 0%, rgba(10,7,18,0.55) 60%, rgba(10,7,18,0.92) 100%);
    z-index: 1;
}
.wz-cases__feature-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}
.wz-cases__feature-title {
    font-family: var(--wz-font-display);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
}
.wz-cases__feature-body {
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(245,242,255,0.82);
    max-width: 520px;
    margin: 0 0 20px;
}
.wz-cases__feature-link {
    display: inline-flex; align-items: center; gap: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}
.wz-cases__feature-link .arrow-circle {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .25s ease, background .2s ease;
}
.wz-cases__feature-link:hover .arrow-circle { background: var(--wz-purple); transform: rotate(-12deg); }

@media (max-width: 980px) {
    .wz-cases { padding: 64px 18px; }
    .wz-cases__inner { grid-template-columns: 1fr; gap: 28px; }
    .wz-cases__feature { min-height: 380px; }
    .wz-cases__feature-content { padding: 26px; }
}

/* ===== VERTICALS GRID ===== */
.wz-vertic { padding: 96px 24px; }
.wz-vertic__inner { max-width: 1408px; margin: 0 auto; }
.wz-vertic__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.wz-vertic__card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 32px -12px rgba(0,0,0,0.40);
    transition: transform .35s cubic-bezier(.4,1.2,.5,1), border-color .25s ease, box-shadow .25s ease;
}
.wz-vertic__card:hover {
    transform: translateY(-3px);
    border-color: rgba(123,57,252,0.32);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 24px 48px -14px rgba(123,57,252,0.30);
}
.wz-vertic__card-ico {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(123,57,252,0.20), rgba(79,108,255,0.10));
    border: 1px solid rgba(123,57,252,0.30);
    color: #C9B0FF;
    margin-bottom: 18px;
}
.wz-vertic__card-title {
    font-family: var(--wz-font-display);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.015em;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}
.wz-vertic__card-body {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(245,242,255,0.66);
    margin: 0;
}
.wz-vertic__card--dark {
    background: linear-gradient(165deg, rgba(123,57,252,0.16) 0%, rgba(10,7,18,0.60) 100%);
    border-color: rgba(123,57,252,0.28);
}
.wz-vertic__card--dark .wz-vertic__card-ico {
    background: linear-gradient(135deg, var(--wz-gold) 0%, var(--wz-gold-deep) 100%);
    border-color: rgba(230,197,102,0.40);
    color: #1A1208;
}

@media (max-width: 980px) {
    .wz-vertic { padding: 64px 18px; }
    .wz-vertic__grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.wz-pricing-section { padding: 96px 24px; }
.wz-pricing-section__inner { max-width: 1408px; margin: 0 auto; }
.wz-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.wz-pricing__card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 32px -12px rgba(0,0,0,0.40);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,1.2,.5,1), border-color .25s ease, box-shadow .25s ease;
}
.wz-pricing__card:hover {
    transform: translateY(-4px);
    border-color: rgba(123,57,252,0.30);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 28px 56px -16px rgba(123,57,252,0.32);
}
.wz-pricing__card--featured {
    background: linear-gradient(170deg, rgba(123,57,252,0.20) 0%, rgba(10,7,18,0.30) 100%);
    border-color: rgba(123,57,252,0.40);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        0 32px 64px -18px rgba(123,57,252,0.45);
}
.wz-pricing__badge {
    position: absolute;
    top: -12px; right: 24px;
    background: linear-gradient(180deg, var(--wz-gold-bright) 0%, var(--wz-gold) 60%, var(--wz-gold-deep) 100%);
    color: #1A1208;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px -4px rgba(212,175,55,0.50);
}
.wz-pricing__title {
    font-family: var(--wz-font-display);
    font-size: 17px;
    font-weight: 600;
    color: rgba(245,242,255,0.92);
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}
.wz-pricing__price {
    font-family: var(--wz-font-display);
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.wz-pricing__price-detail {
    font-size: 13.5px;
    color: rgba(245,242,255,0.55);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
}
.wz-pricing__list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column;
    gap: 10px;
    flex: 1;
}
.wz-pricing__feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(245,242,255,0.78);
}
.wz-pricing__feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--wz-purple-bright);
}
.wz-pricing__card--featured .wz-pricing__feature svg { color: var(--wz-gold-bright); }
.wz-pricing__card .wz-btn { font-family: var(--wz-font-cta); font-size: 14px; height: 46px; }
.wz-pricing__card--featured .wz-btn--primary,
.wz-pricing__card--featured .wz-btn--light {
    background: linear-gradient(180deg, var(--wz-gold-bright) 0%, var(--wz-gold) 60%, var(--wz-gold-deep) 100%);
    color: #1A1208;
    box-shadow: 0 8px 24px -8px rgba(212,175,55,0.50);
}
.wz-pricing__card--featured .wz-btn--primary:hover,
.wz-pricing__card--featured .wz-btn--light:hover {
    filter: brightness(1.06);
    color: #1A1208;
}

@media (max-width: 980px) {
    .wz-pricing-section { padding: 64px 18px; }
    .wz-pricing { grid-template-columns: 1fr; }
}

/* ===== CTA FINAL ===== */
.wz-cta-section { padding: 64px 24px 96px; }
.wz-cta {
    max-width: 1100px; margin: 0 auto;
    padding: 64px 48px;
    border-radius: 32px;
    text-align: center;
    background: linear-gradient(135deg, #1A0F3A 0%, #0A0712 50%, #1F1A38 100%);
    border: 1px solid rgba(123,57,252,0.30);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.wz-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,57,252,0.30) 0%, transparent 60%);
    top: -200px; left: 50%; transform: translateX(-50%);
    filter: blur(40px);
    z-index: -1;
}
.wz-cta h2 {
    font-family: var(--wz-font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px;
}
.wz-cta p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(245,242,255,0.78);
    max-width: 600px;
    margin: 0 auto 32px;
}
.wz-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 720px) {
    .wz-cta { padding: 48px 22px; }
}

/* ===== FOOTER ===== */
.wz-footer {
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(10,7,18,0) 0%, rgba(15,8,32,0.6) 100%);
    position: relative;
    z-index: 1;
}
.wz-footer__inner { max-width: 1408px; margin: 0 auto; }
.wz-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.wz-footer__brand img { height: 38px; margin-bottom: 18px; filter: drop-shadow(0 4px 16px rgba(123,57,252,0.40)); }
.wz-footer__brand p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(245,242,255,0.62);
    max-width: 320px;
    margin: 0;
}
.wz-footer h5 {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 600;
    color: rgba(245,242,255,0.55);
    margin: 0 0 16px;
}
.wz-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.wz-footer ul a {
    font-size: 14px;
    color: rgba(245,242,255,0.78);
    transition: color .2s ease;
}
.wz-footer ul a:hover { color: #fff; }

.wz-footer__bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: rgba(245,242,255,0.45);
}

@media (max-width: 980px) {
    .wz-footer { padding: 60px 22px 32px; }
    .wz-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .wz-footer__grid { grid-template-columns: 1fr; }
    .wz-footer__bottom { font-size: 11.5px; }
}

/* ===== Scroll reveal ===== */
.wz-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
}
.wz-reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Generic landing helpers ===== */
.wz-page { padding-top: 96px; padding-bottom: 96px; }
