/*
   Web Express Landing — Joik Agency v4
   2-section structure: Hero + Resultados interactivos.
   Aislado. Tokens: #01d1fe (cyan), #020c10, #0a1418, #000.
*/

/* ===== RESET & BASE ===== */
.we-page {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: #020c10;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}
.we-page * { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== SCROLL LOCK ===== */
.we-page.we-scroll-locked { overflow: hidden; }

/* ===== UTILITY ===== */
.we-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 56px);
    position: relative;
    z-index: 1;
}
.we-section {
    position: relative;
    padding: clamp(60px, 10vh, 100px) 0;
}

/* ===== OVERLINE ===== */
.we-overline {
    display: block;
    width: clamp(44px, 4.5vw, 70px);
    height: 5px;
    background: #01d1fe;
    margin-bottom: clamp(16px, 2.2vh, 24px);
}

/* ===== HEADINGS ===== */
.we-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: clamp(12px, 1.8vh, 20px);
}
.we-heading--xl { font-size: clamp(38px, 5.2vw, 76px); }
.we-heading--lg { font-size: clamp(28px, 4vw, 58px); }
.we-heading--md { font-size: clamp(20px, 2.5vw, 34px); }
.we-heading .we-accent,
.we-hero-title .we-accent {
    font-family: 'Breathing', cursive, sans-serif;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #01d1fe;
}

/* ===== BODY TEXT ===== */
.we-text {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13.5px, 1.05vw, 16px);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
}

/* ===== BUTTONS ===== */
.we-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(1,209,254,0.55);
    border-radius: 30px;
    padding: 16px 42px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #01d1fe;
    background: transparent;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1;
}
.we-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: #01d1fe;
    transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
    z-index: -1;
}
.we-btn:hover {
    color: #fff;
    background: #0a0a0a;
    border-color: #01d1fe;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(1,209,254,0.3), 0 0 60px rgba(1,209,254,0.12);
}
.we-btn:hover::before { left: 0; }
.we-btn:active { transform: translateY(0) scale(1); }
.we-btn--solid {
    background: #01d1fe;
    color: #020c10;
    border-color: #01d1fe;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 2px 20px rgba(1,209,254,0.25), 0 0 50px rgba(1,209,254,0.1);
    animation: we-btn-pulse 2.5s ease-in-out infinite;
}
.we-btn--solid:hover {
    color: #fff;
    background: #0a0a0a;
    border-color: #01d1fe;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 40px rgba(1,209,254,0.45), 0 0 80px rgba(1,209,254,0.18);
    animation: none;
}
.we-btn--solid:hover::before {
    left: 0;
    transition-delay: 0.1s;
}
.we-btn--solid::before { display: block; }

/* CTA pulse glow */
@keyframes we-btn-pulse {
    0%, 100% { box-shadow: 0 2px 20px rgba(1,209,254,0.25), 0 0 50px rgba(1,209,254,0.1); }
    50% { box-shadow: 0 4px 32px rgba(1,209,254,0.45), 0 0 80px rgba(1,209,254,0.22); }
}
.we-btn--outline {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-transform: uppercase;
}
.we-btn--outline:hover {
    color: #050505;
    border-color: #01d1fe;
    box-shadow: 0 6px 24px rgba(1,209,254,0.2);
}
.we-btn--sm {
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== HEADER ===== */
.we-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(2,12,16,0.9) 0%, transparent 100%);
}
.we-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 56px);
    pointer-events: auto;
}
.we-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 20px; font-weight: 700;
    letter-spacing: 4px;
    color: #01d1fe;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.we-logo:hover { opacity: 0.7; }
.we-header-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 12px; font-weight: 500;
    letter-spacing: 1.5px;
    color: #01d1fe;
    text-decoration: none;
    border: 1px solid rgba(1,209,254,0.45);
    border-radius: 22px;
    padding: 10px 22px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.we-header-cta:hover {
    background: #01d1fe;
    color: #020c10;
    border-color: #01d1fe;
    box-shadow: 0 4px 16px rgba(1,209,254,0.3);
}

/* ===== RIGHT SIDE NAVIGATION (desktop) ===== */
.we-side-left {
    position: fixed;
    right: clamp(14px, 2.5vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.we-side-left-dot {
    display: block;
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: all 0.35s;
    position: relative;
}
.we-side-left-dot:hover {
    border-color: rgba(1,209,254,0.7);
    background: rgba(1,209,254,0.25);
    box-shadow: 0 0 16px rgba(1,209,254,0.35);
    transform: scale(1.35);
}
.we-side-left-dot.active {
    border-color: #01d1fe;
    background: #01d1fe;
    box-shadow: 0 0 20px rgba(1,209,254,0.6);
    transform: scale(1.25);
}
.we-side-left-label {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.we-side-left-dot:hover .we-side-left-label,
.we-side-left-dot.active .we-side-left-label { opacity: 1; }

/* ================================================================
   1. HERO
   ================================================================ */
.we-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(105deg, #020c10 0%, #020c10 45%, rgba(2,18,22,1) 70%, rgba(4,20,24,1) 100%);
}
/* Capa de glow detrás del mockup (derecha) */
.we-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%; height: 100%;
    background: radial-gradient(ellipse at 65% 50%, rgba(1,209,254,0.08) 0%, rgba(1,209,254,0.03) 40%, transparent 70%);
    pointer-events: none;
    animation: we-hero-pulse 6s ease-in-out infinite;
}
@keyframes we-hero-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}
.we-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
    pointer-events: none;
}
.we-hero-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(36px, 7vw, 70px);
    align-items: center;
    padding: clamp(80px, 12vh, 120px) 0 clamp(40px, 6vh, 60px);
}
.we-hero-content { position: relative; z-index: 2; }
.we-hero-eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #01d1fe;
    text-transform: uppercase;
    border: 1px solid rgba(1,209,254,0.3);
    border-radius: 4px;
    padding: 7px 16px;
    margin-bottom: 26px;
}
.we-hero-eyebrow strong {
    font-weight: 700;
    color: #01d1fe;
}
.we-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(38px, 5.2vw, 68px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
}
.we-hero-sub {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13.5px, 1.05vw, 16px);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 14px;
}
.we-hero-points {
    list-style: none; padding: 0;
    margin: 0 0 30px 0;
    display: flex; flex-wrap: wrap;
    gap: 18px;
}
.we-hero-points li {
    font-family: 'Raleway', sans-serif;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center;
    gap: 9px;
}
.we-hero-points li::before {
    content: '';
    width: 6px; height: 6px;
    background: #01d1fe;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(1,209,254,0.4);
}
.we-hero-actions {
    display: flex; align-items: center;
    gap: 18px; flex-wrap: wrap;
}
.we-hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.we-hero-mockup {
    width: 100%; max-width: 540px;
    position: relative;
}
.we-hero-mockup-img {
    width: 100%; height: auto; display: block;
    position: relative; z-index: 1;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(1,209,254,0.25));
    animation: we-mockup-float 6s ease-in-out infinite;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.4s;
}
.we-hero-mockup a:hover img {
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 100px rgba(1,209,254,0.4)) !important;
}
@keyframes we-mockup-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.we-hero-mockup-glow {
    position: absolute;
    top: 10%; left: 5%;
    width: 90%; height: 80%;
    background: radial-gradient(ellipse at center, rgba(1,209,254,0.2) 0%, rgba(1,209,254,0.06) 40%, transparent 70%);
    pointer-events: none; z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
    animation: we-mockup-glow-pulse 4s ease-in-out infinite;
}
@keyframes we-mockup-glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* HOT SALE badge on mockup */
.we-mockup-badge-hot {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 5;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    background: #0a0a0a;
    border: 1.5px solid #fe3100;
    border-radius: 0;
    padding: 6px 14px;
    pointer-events: none;
    animation: we-badge-pulse 2s ease-in-out infinite;
}
@keyframes we-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(254,49,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(254,49,0,0); }
}

/* ===== HOT SALE MARQUEE BAR ===== */
.we-hotbar {
    display: block;
    width: 105%;
    overflow: hidden;
    background: #0a0a0a;
    border-top: 1.5px solid #fe3100;
    border-bottom: 1.5px solid #fe3100;
    padding: 12px 0;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 5;
    transform: rotate(-2deg);
    margin-left: -2%;
    margin-top: -4px;
    margin-bottom: -4px;
}
.we-hotbar:hover {
    background: #111;
}
.we-hotbar-track {
    display: flex;
    width: max-content;
    animation: we-hotbar-scroll 18s linear infinite;
    will-change: transform;
}
.we-hotbar:hover .we-hotbar-track {
    animation-play-state: paused;
}
.we-hotbar-text {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    white-space: nowrap;
    padding: 0 32px;
    text-transform: uppercase;
}
.we-hotbar-sep {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fe3100;
    white-space: nowrap;
}
@keyframes we-hotbar-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile: smaller badges + hotbar */
@media only screen and (max-width: 880px) {
    .we-mockup-badge-hot { font-size: 10px; padding: 4px 10px; top: 8px; right: 8px; }
    .we-hotbar { padding: 8px 0; }
    .we-hotbar-text { font-size: 14px; letter-spacing: 2px; padding: 0 20px; }
    .we-hotbar-sep { font-size: 14px; }
}

/* ================================================================
   2. RESULTS SECTION
   ================================================================ */
.we-results {
    background: #00080c;
    position: relative;
    padding: clamp(70px, 12vh, 120px) 0 clamp(80px, 14vh, 140px);
}
.we-results::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(1,209,254,0.04) 0%, transparent 55%);
    pointer-events: none;
}
.we-results-header {
    text-align: center;
    margin-bottom: clamp(36px, 6vh, 56px);
}
.we-results-header .we-overline { margin-left: auto; margin-right: auto; }
.we-results-header .we-text { margin: 0 auto; max-width: 580px; }

/* ── Cards grid ── */
.we-results-grid {
    display: flex;
    gap: clamp(18px, 2.5vw, 30px);
    justify-content: center;
    align-items: stretch;
}
.we-result-card {
    flex: 1;
    max-width: 340px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.45s ease;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Ribbon "NEW" on cards */
.we-card-ribbon {
    position: absolute;
    top: 13px; left: -28px;
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    background: #0a0a0a;
    border: 1.5px solid #fe3100;
    padding: 3px 34px;
    pointer-events: none;
    transform: rotate(-38deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.we-result-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -80%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);
    z-index: 5;
    pointer-events: none;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.we-result-card:hover::before {
    left: 120%;
}
.we-result-card:hover {
    border-color: rgba(1,209,254,0.55);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 80px rgba(1,209,254,0.15), 0 0 120px rgba(1,209,254,0.06);
    z-index: 2;
}
.we-results-grid:hover .we-result-card:not(:hover) {
    opacity: 0.5;
}
.we-result-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, rgba(1,209,254,0.07) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.we-result-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.we-result-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(1,209,254,0.08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.45s;
}
.we-result-card:hover .we-result-visual::after { opacity: 1; }
.we-result-visual-inner {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(1,209,254,0.3);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}
.we-result-card:hover .we-result-visual-inner { color: rgba(1,209,254,0.6); }
.we-result-info {
    padding: 22px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}
.we-result-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}
.we-result-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #01d1fe;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.we-result-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    margin-bottom: 14px;
}
.we-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #01d1fe;
    text-transform: uppercase;
    transition: gap 0.3s, transform 0.3s;
}
.we-result-card:hover .we-result-cta {
    gap: 10px;
    transform: translateX(3px);
}
/* Click-incentive pulse ring on card hover */
.we-result-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 1px solid rgba(1,209,254,0);
    pointer-events: none;
    z-index: 3;
    transition: border-color 0.4s;
}
.we-result-card:hover::after {
    border-color: rgba(1,209,254,0.35);
    box-shadow: inset 0 0 20px rgba(1,209,254,0.05);
}

/* ── Section CTA ── */
.we-results-cta {
    text-align: center;
    margin-top: clamp(40px, 7vh, 64px);
}
.we-results-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}
.we-results-cta-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   MODAL / PREVIEW
   ================================================================ */
.we-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,6,12,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.we-modal-overlay.we-modal-open {
    opacity: 1;
    pointer-events: auto;
}
.we-modal-panel {
    width: 82vw;
    max-width: 1200px;
    max-height: 85vh;
    background: #080f14;
    border: 2px solid rgba(1,209,254,0.25);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 60px rgba(1,209,254,0.3), 0 0 180px rgba(1,209,254,0.15), inset 0 1px 0 rgba(255,255,255,0.03);
    transform: translateY(60px) scale(0.88);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.we-modal-open .we-modal-panel {
    transform: translateY(0) scale(1);
}
/* PREVIEW ribbon badge — diagonal esquina superior izquierda */
.we-modal-panel::before {
    content: 'PREVIEW';
    position: absolute;
    top: 14px;
    left: -28px;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    background: #0a0a0a;
    border: 1.5px solid #fe3100;
    padding: 5px 40px;
    z-index: 20;
    pointer-events: none;
    transform: rotate(-38deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.we-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.we-modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #01d1fe;
    text-transform: uppercase;
}
.we-modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-family: inherit;
    line-height: 1;
    padding: 0;
}
.we-modal-close:hover {
    color: #fff;
    border-color: rgba(1,209,254,0.4);
    background: rgba(1,209,254,0.1);
}

/* ── Preview iframe area ── */
.we-modal-preview {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}
.we-preview-content {
    position: relative;
    background: #0d1820;
}
/* Browser chrome bar */
.we-preview-browser-bar {
    position: sticky;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 7px;
    z-index: 10;
    flex-shrink: 0;
}
.we-preview-browser-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.we-preview-browser-dot:first-child { background: rgba(1,209,254,0.4); }
.we-preview-browser-url {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.18);
    margin-left: 10px;
    letter-spacing: 0.5px;
}
/* iframe fills available space, scrollable via parent */
#wePreviewFrame {
    width: 100%;
    min-height: 600px;
    height: auto;
    border: none;
    display: block;
    background: #0d1820;
}

/* ── Scroll blocker overlay ── */
.we-preview-blocker {
    position: sticky;
    bottom: 0;
    left: 0; right: 0;
    height: 25vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(8,15,20,0.9) 15%, rgba(8,15,20,0.98) 45%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 24px 36px;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}
.we-preview-blocker > * { pointer-events: auto; }
.we-preview-blocker-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}
.we-preview-blocker-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    max-width: 380px;
}

/* ===== RESULTS SECTION CTA ===== */
.we-results-cta {
    text-align: center;
    margin-top: clamp(40px, 7vh, 64px);
}
.we-results-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}
.we-results-cta-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CTA FINAL SECTION ===== */
.we-cta-final {
    text-align: center;
    padding: clamp(100px, 16vh, 160px) 0;
    position: relative;
    background: #000 !important;
    overflow: hidden;
}
.we-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(1,209,254,0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(1,209,254,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.we-cta-final::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 1px;
    background: rgba(1,209,254,0.3);
}
.we-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.we-cta-particle {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(1,209,254,0.3);
    animation: we-particle-float linear infinite;
}
.we-cta-particle:nth-child(1) { left: 10%; top: 30%; animation-duration: 8s; animation-delay: 0s; width: 2px; height: 2px; }
.we-cta-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 10s; animation-delay: 2s; }
.we-cta-particle:nth-child(3) { left: 50%; top: 20%; animation-duration: 7s; animation-delay: 1s; width: 2px; height: 2px; }
.we-cta-particle:nth-child(4) { left: 70%; top: 70%; animation-duration: 9s; animation-delay: 3s; }
.we-cta-particle:nth-child(5) { left: 85%; top: 40%; animation-duration: 11s; animation-delay: 0.5s; width: 2px; height: 2px; }
.we-cta-particle:nth-child(6) { left: 40%; top: 80%; animation-duration: 8.5s; animation-delay: 4s; }
.we-cta-particle:nth-child(7) { left: 60%; top: 10%; animation-duration: 7.5s; animation-delay: 1.5s; }
@keyframes we-particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}
.we-cta-final .we-heading { margin-bottom: 18px; position: relative; z-index: 1; }
.we-cta-final .we-text { margin: 0 auto 36px; max-width: 480px; position: relative; z-index: 1; }
.we-cta-final .we-btn { min-width: 280px; padding: 20px 50px; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.we-footer {
    background: #020c10;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 28px 0;
    text-align: center;
}
.we-footer-text {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}
.we-footer-text a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}
.we-footer-text a:hover { color: #01d1fe; }

/* ===== STICKY MOBILE CTA ===== */
.we-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1001;
    padding: 12px 16px env(safe-area-inset-bottom, 12px);
    background: rgba(2,12,16,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(1,209,254,0.15);
}
.we-sticky-cta .we-btn {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.we-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.we-anim.visible { opacity: 1; transform: translateY(0); }
.we-anim-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.we-anim-left.visible { opacity: 1; transform: translateX(0); }
.we-anim-scale-up {
    opacity: 0;
    transform: translateY(60px) scale(0.92);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.we-anim-scale-up.visible { opacity: 1; transform: translateY(0) scale(1); }
.we-stagger-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.we-stagger-item.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .we-anim, .we-anim-left, .we-anim-scale-up, .we-stagger-item,
    .we-hero-mockup-img, .we-hero-mockup-glow, .we-hero::before,
    .we-btn--solid, .we-cta-particle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media only screen and (max-width: 880px) {
    .we-hero { min-height: auto; }
    .we-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: clamp(55px, 8vh, 75px) 0 clamp(20px, 3vh, 35px);
    }
    .we-hero-mockup-glow { filter: blur(20px); }
    .we-hero-visual { order: -1; margin-bottom: 0; }
    .we-hero-mockup { max-width: 85%; margin: 0 auto; }
    .we-hero-content { margin-top: 0; }
    .we-hero-actions { flex-direction: column; align-items: stretch; }
    .we-hero-actions .we-btn { text-align: center; padding: 13px 28px; font-size: 13px; }
    .we-hero-points { display: none; }
    .we-hero-title { font-size: clamp(24px, 7vw, 36px); margin-bottom: 8px; line-height: 1.08; }
    .we-hero-sub { font-size: 13px; margin-bottom: 8px; line-height: 1.5; }
    .we-hero-eyebrow { font-size: 10px; letter-spacing: 2px; padding: 5px 14px; margin-bottom: 14px; }

    /* Results */
    .we-results { padding: clamp(40px, 8vh, 60px) 0 clamp(60px, 12vh, 90px); }
    .we-results-grid { flex-direction: column; align-items: center; }
    .we-result-card {
        max-width: 420px; width: 100%;
        border-width: 1.5px;
        border-color: rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.05);
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }

    /* Modal */
    .we-modal-panel { width: 82%; max-height: 88vh; border-radius: 14px; border-width: 1.5px; }
    .we-modal-header { padding: 10px 14px; }

    /* Header + side navs hidden on mobile */
    .we-header-cta { display: none; }
    .we-side-left { display: none; }
    .we-header { padding: 10px 0; background: rgba(2,12,16,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

    /* Sticky */
    .we-sticky-cta { display: block; }
    .we-footer { padding-bottom: 80px; }

    /* Animations */
    .we-anim-left { opacity: 0; transform: translateY(24px); }
    .we-anim-left.visible { opacity: 1; transform: translateY(0); }
    .we-anim-scale-up { opacity: 0; transform: translateY(30px); }
    .we-anim-scale-up.visible { opacity: 1; transform: translateY(0); }

    /* CTA final */
    .we-cta-final { padding: clamp(60px, 12vh, 90px) 0 clamp(80px, 16vh, 110px); }
    .we-cta-particles { display: none; }

    /* Touch */
    .we-btn { padding: 16px 32px; font-size: 13px; min-height: 50px; }

    /* Preview blocker — stronger gradient for mobile legibility */
    .we-preview-blocker {
        padding: 20px 16px 32px;
        background: linear-gradient(to bottom, transparent 0%, rgba(8,15,20,0.92) 10%, rgba(8,15,20,0.99) 35%);
    }
    .we-preview-blocker-title { font-size: 16px; }
}

@media only screen and (max-width: 480px) {
    .we-hero-title { font-size: clamp(24px, 8vw, 34px); margin-bottom: 8px; }
    .we-hero-sub { font-size: 13px; margin-bottom: 8px; }
    .we-hero-mockup { max-width: 75%; }
    .we-hero-visual { margin-bottom: 0; }
    .we-hero-grid { padding: clamp(50px, 8vh, 70px) 0 clamp(20px, 3vh, 36px); gap: 4px; }
    .we-hero-eyebrow { font-size: 9px; padding: 5px 12px; margin-bottom: 12px; }
    .we-heading--lg { font-size: 22px; }
    .we-result-card { max-width: 100%; }
    .we-modal-panel { width: 86%; max-height: 92vh; border-radius: 14px; }
    .we-logo img { height: 50px !important; }
    .we-hero-actions .we-btn { padding: 13px 28px; font-size: 12px; }
}
