/* ============================================================================
   QuickLanding (/go) — tight, social-share-friendly landing page
   Designed to fit in ~3 viewport heights on a phone. Pulls colors / btn
   styles from landing.css; only adds `qlp-*` overrides + layout.
   ========================================================================== */

/* Make the nav take less vertical space than the main landing nav */
.qlp-nav .lp-nav-inner {
    padding: 10px 16px;
}
.qlp-full-link {
    font-size: 13px;
}

/* ---- HERO -------------------------------------------------------------- */
.qlp-hero {
    position: relative;
    padding: 64px 20px 32px;
    background: radial-gradient(ellipse at 50% 0%, #1a2747 0%, var(--lp-bg) 55%);
    text-align: center;
    overflow: hidden;
}

.qlp-hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(205,44,31,0.35) 0%, rgba(205,44,31,0) 65%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 720px) {
    .qlp-hero {
        padding: 96px 40px 64px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        text-align: left;
        max-width: 1180px;
        margin: 0 auto;
    }
    .qlp-hero-inner { order: 1; }
    .qlp-device-wrap { order: 2; }
}

.qlp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.qlp-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CD2C1F;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(205,44,31,0.7);
    animation: qlp-pulse 2s infinite;
    vertical-align: middle;
}

@keyframes qlp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(205,44,31,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(205,44,31,0); }
    100% { box-shadow: 0 0 0 0 rgba(205,44,31,0); }
}

.qlp-hero h1 {
    font-family: var(--font-display, 'Bebas Neue', 'Arial Narrow', sans-serif);
    font-size: clamp(2.25rem, 8vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: var(--lp-text);
    margin: 8px 0 14px;
}

.qlp-h1-accent {
    background: linear-gradient(135deg, #FF5A4A 0%, #CD2C1F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.qlp-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--lp-text-secondary);
    margin: 0 auto 22px;
    max-width: 480px;
}

@media (min-width: 720px) {
    .qlp-sub { margin-left: 0; }
}

.qlp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

@media (min-width: 720px) {
    .qlp-actions {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }
}

.qlp-actions .btn-cta {
    width: 100%;
    max-width: 320px;
}

.qlp-cta-pulse {
    box-shadow: 0 10px 30px -10px rgba(205,44,31,0.7);
    animation: qlp-cta-glow 2.6s ease-in-out infinite;
}

@keyframes qlp-cta-glow {
    0%, 100% { box-shadow: 0 10px 30px -10px rgba(205,44,31,0.6); }
    50%      { box-shadow: 0 14px 38px -8px rgba(205,44,31,0.95); }
}

.qlp-secondary {
    color: var(--lp-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
}
.qlp-secondary:hover { color: var(--lp-text); }
.qlp-secondary-light { color: rgba(255,255,255,0.85); }
.qlp-secondary-light:hover { color: #fff; }

.qlp-note {
    font-size: 13px;
    color: var(--lp-text-muted);
    margin: 6px 0 0;
}

/* ---- DEVICE MOCKUP ----------------------------------------------------- */
.qlp-device-wrap {
    position: relative;
    z-index: 1;
    margin: 56px auto 0;
    width: min(360px, 92%);
    aspect-ratio: 1 / 1;
    animation: qlp-float 6s ease-in-out infinite;
}

@media (min-width: 720px) {
    .qlp-device-wrap {
        margin: 0;
        width: 420px;
        justify-self: center;
    }
}

@keyframes qlp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.qlp-device-glow {
    position: absolute;
    inset: -12% -18%;
    background: radial-gradient(circle, rgba(205,44,31,0.45) 0%, rgba(205,44,31,0) 65%);
    filter: blur(28px);
    z-index: -1;
}

.qlp-device {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30%; 
    background: #0b1020;
    padding: 8px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.06),
        0 30px 60px -20px rgba(0,0,0,0.7),
        0 10px 20px -10px rgba(205,44,31,0.4);
    overflow: hidden;
}

.qlp-device-img {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    /* height: auto preserves the screenshot's natural aspect ratio.
       The image is therefore taller than the circular viewport and scrolls. */
    height: auto;
    border-radius: 0;
    display: block;
    opacity: 0;
    transform: translateY(0);
    transition:
        opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 9s linear;
    pointer-events: none;
    will-change: opacity, transform;
}
.qlp-device-img.is-active {
    opacity: 1;
    /* Pan upward by the overflow amount so the bottom of the screenshot
       reaches the bottom of the circular viewport. -54% of the image's
       own height matches a typical 9:19.5 phone screenshot ratio. */
    transform: translateY(-54%);
    z-index: 1;
}

.qlp-toast {
    position: absolute;
    /* Float above the circle, centered — matches Android push notification look */
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    min-width: 340px;
    max-width: min(440px, 92vw);
    background: rgba(28, 28, 32, 0.82);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 12px 16px;
    box-shadow:
        0 22px 50px -16px rgba(0,0,0,0.75),
        0 0 0 0.5px rgba(255,255,255,0.04) inset;
    animation: qlp-toast-in 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}
@keyframes qlp-toast-in {
    0%   { opacity: 0; transform: translate(-50%, -14px) scale(0.92); }
    60%  { opacity: 1; transform: translate(-50%, 2px) scale(1.02); }
    100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.qlp-toast-badge {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #0f0f12;
    object-fit: contain;
    padding: 3px;
    align-self: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.qlp-toast-body {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}
.qlp-toast-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.qlp-toast-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    margin-top: 2px;
    line-height: 1.3;
}

/* ---- STATS STRIP ------------------------------------------------------- */
.qlp-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 22px 16px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.qlp-stat { text-align: center; flex: 1; }
.qlp-stat-num {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: clamp(1.4rem, 5vw, 2rem);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.01em;
}
.qlp-stat-label {
    font-size: 11px;
    color: var(--lp-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.qlp-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

/* ---- THREE-BULLET VALUE STRIP ------------------------------------------ */
.qlp-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 20px 28px;
    max-width: 720px;
    margin: 0 auto;
}

.qlp-bullet {
    background: var(--lp-bg-elevated);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.qlp-bullet:hover {
    transform: translateY(-3px);
    border-color: rgba(205,44,31,0.35);
    box-shadow: 0 16px 30px -18px rgba(205,44,31,0.5);
}

.qlp-bullet-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 12px;
}
.qlp-icon-amber { background: rgba(245, 158, 11, 0.14); color: #F59E0B; }
.qlp-icon-red   { background: rgba(205, 44, 31, 0.18); color: #FF5A4A; }
.qlp-icon-green { background: rgba(34, 197, 94, 0.14); color: #22C55E; }

.qlp-bullet h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--lp-text);
    margin: 0 0 6px;
}

.qlp-bullet p {
    font-size: 14px;
    color: var(--lp-text-secondary);
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 720px) {
    .qlp-bullets {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ---- FINAL CTA --------------------------------------------------------- */
.qlp-cta {
    text-align: center;
    padding: 36px 20px 40px;
    background: linear-gradient(135deg, #C0392B 0%, #CD2C1F 60%, #8E1B14 100%);
    color: #fff;
}

.qlp-cta h2 {
    font-family: var(--font-display, 'Bebas Neue', 'Arial Narrow', sans-serif);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin: 0 0 8px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.qlp-cta p {
    font-size: 15px;
    margin: 0 auto 20px;
    max-width: 420px;
    color: rgba(255,255,255,0.92);
}

.qlp-cta .btn-cta {
    background: #fff;
    color: #CD2C1F;
    border: none;
    width: 100%;
    max-width: 320px;
    margin-bottom: 8px;
}
.qlp-cta .btn-cta:hover {
    background: #f4f4f4;
    color: #8E1B14;
}

/* ---- FOOTER (one line) ------------------------------------------------- */
.qlp-footer {
    text-align: center;
    padding: 20px 16px 28px;
    font-size: 13px;
    color: var(--lp-text-muted);
    background: var(--lp-bg);
}
.qlp-footer a {
    color: var(--lp-text-secondary);
    text-decoration: none;
    margin: 0 6px;
}
.qlp-footer a:hover { color: var(--lp-text); }
.qlp-footer span { color: var(--lp-text-muted); }
.qlp-footer-copy {
    margin-top: 10px;
    color: var(--lp-text-muted);
    font-size: 12px;
}

/* ============================================================================
   PricingUpdate Theme Bridge (/go)
   Applies the same dark red/silver visual language used on /pricingupdate.
   Keep this block last so it intentionally overrides base landing styles.
   ========================================================================== */
:root {
    --ql-black: #0d0d0d;
    --ql-black-2: #131313;
    --ql-black-3: #1a1a1a;
    --ql-red: #c42020;
    --ql-red-dark: #8f1212;
    --ql-white: #f6f6f6;
    --ql-silver: #d7d7d7;
    --ql-silver-dark: #9d9d9d;
    --ql-muted: #757575;
    --ql-border-faint: rgba(255, 255, 255, 0.08);
}

.qlp-theme {
    background: var(--ql-black);
    color: var(--ql-silver);
    min-height: 100vh;
}

.qlp-nav.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ql-border-faint);
}

.qlp-nav .lp-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.qlp-nav .lp-nav-brand img {
    height: 34px;
    width: auto;
}

.qlp-full-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ql-silver-dark) !important;
}

.qlp-full-link:hover {
    color: var(--ql-white) !important;
}

.qlp-nav .btn.btn-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--ql-red);
    border: 1px solid var(--ql-red);
    color: #fff;
    border-radius: 4px;
}

.qlp-nav .btn.btn-cta:hover {
    background: var(--ql-red-dark);
    border-color: var(--ql-red-dark);
}

.qlp-hero {
    padding: 5.5rem 1.25rem 3rem;
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: max(24px, calc((100vw - 1280px) / 2));
    padding-right: max(24px, calc((100vw - 1280px) / 2));
    border-bottom: 1px solid var(--ql-border-faint);
    background:
        radial-gradient(1200px 420px at 22% -12%, rgba(196, 32, 32, 0.18), transparent 68%),
        radial-gradient(900px 320px at 82% 0%, rgba(255, 255, 255, 0.05), transparent 70%),
        var(--ql-black);
}

.qlp-hero-glow {
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(196, 32, 32, 0.24) 0%, rgba(196, 32, 32, 0) 65%);
    filter: blur(36px);
}

.lp-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ql-muted);
}

.qlp-pulse-dot {
    background: var(--ql-red);
    box-shadow: 0 0 0 0 rgba(196, 32, 32, 0.72);
}

@keyframes qlp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(196, 32, 32, 0.72); }
    70% { box-shadow: 0 0 0 10px rgba(196, 32, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 32, 32, 0); }
}

.qlp-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
    color: var(--ql-white);
    line-height: .95;
}

.qlp-h1-accent {
    color: var(--ql-red);
    background: none;
    -webkit-text-fill-color: initial;
}

.qlp-sub {
    font-family: 'Barlow', sans-serif;
    color: var(--ql-silver);
}

.qlp-actions .btn-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--ql-red);
    background: var(--ql-red);
    color: #fff;
}

.qlp-actions .btn-cta:hover {
    background: var(--ql-red-dark);
    border-color: var(--ql-red-dark);
}

.qlp-cta-pulse {
    animation: qlp-cta-glow 2.8s ease-in-out infinite;
    box-shadow: 0 14px 34px -16px rgba(196, 32, 32, 0.75);
}

@keyframes qlp-cta-glow {
    0%, 100% { box-shadow: 0 14px 34px -16px rgba(196, 32, 32, 0.55); }
    50% { box-shadow: 0 18px 42px -14px rgba(196, 32, 32, 0.88); }
}

.qlp-secondary {
    font-family: 'Share Tech Mono', monospace;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ql-silver-dark);
}

.qlp-secondary:hover,
.qlp-secondary-light:hover {
    color: var(--ql-white);
}

.qlp-note {
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: .09em;
    color: var(--ql-muted);
}

.qlp-device {
    background: #0a0a0a;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px var(--ql-border-faint),
        0 34px 60px -30px rgba(0, 0, 0, 0.82),
        0 18px 38px -24px rgba(196, 32, 32, 0.35);
}

.qlp-device-glow {
    background: radial-gradient(circle, rgba(196, 32, 32, 0.3) 0%, rgba(196, 32, 32, 0) 70%);
}

.qlp-toast {
    background: rgba(16, 16, 16, 0.88);
    border: 1px solid var(--ql-border-faint);
    border-left: 3px solid var(--ql-red);
    border-radius: 8px;
    box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.86);
}

.qlp-toast-title { color: var(--ql-white); }
.qlp-toast-sub { color: var(--ql-silver-dark); }

.qlp-stats {
    margin: 2rem auto 0;
    max-width: 1200px;
    background: var(--ql-black-2);
    border: 1px solid var(--ql-border-faint);
    border-radius: 6px;
}

.qlp-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--ql-white);
    text-transform: uppercase;
}

.qlp-stat-label {
    font-family: 'Share Tech Mono', monospace;
    color: var(--ql-muted);
}

.qlp-stat-divider {
    background: var(--ql-border-faint);
}

.qlp-bullets {
    max-width: 1200px;
    padding: 2rem 1.25rem 3rem;
}

.qlp-bullet {
    background: var(--ql-black-2);
    border: 1px solid var(--ql-border-faint);
    border-radius: 6px;
}

.qlp-bullet:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 32, 32, 0.45);
    box-shadow: 0 16px 34px -24px rgba(196, 32, 32, 0.45);
}

.qlp-bullet h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ql-white);
    letter-spacing: .02em;
}

.qlp-bullet p {
    font-family: 'Barlow', sans-serif;
    color: var(--ql-silver-dark);
}

.qlp-cta {
    margin: 0 auto;
    max-width: 1200px;
    border-top: 1px solid var(--ql-border-faint);
    border-bottom: 1px solid var(--ql-border-faint);
    background: var(--ql-black-2);
}

.qlp-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ql-white);
    letter-spacing: .01em;
}

.qlp-cta p {
    font-family: 'Barlow', sans-serif;
    color: var(--ql-silver-dark);
}

.qlp-cta .btn-cta {
    background: var(--ql-red);
    color: #fff;
    border: 1px solid var(--ql-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 4px;
}

.qlp-cta .btn-cta:hover {
    background: var(--ql-red-dark);
    border-color: var(--ql-red-dark);
    color: #fff;
}

.qlp-footer {
    background: var(--ql-black-2);
    border-top: 1px solid var(--ql-border-faint);
    color: var(--ql-muted);
}

.qlp-footer a {
    color: var(--ql-silver-dark);
}

.qlp-footer a:hover {
    color: var(--ql-white);
}

@media (max-width: 980px) {
    .qlp-hero {
        padding: 4.4rem 1rem 2.4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .qlp-device-wrap {
        width: min(380px, 96%);
    }
}

@media (max-width: 640px) {
    .qlp-nav .lp-nav-inner {
        padding: .85rem 1rem;
    }

    .qlp-nav .lp-nav-brand img {
        height: 30px;
    }

    .qlp-hero {
        text-align: left;
        padding: 3.4rem 1rem 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .qlp-actions {
        align-items: stretch;
    }

    .qlp-actions .btn-cta {
        max-width: none;
    }

    .qlp-stats {
        border-radius: 0;
        margin-top: 1.2rem;
    }

    .qlp-bullets {
        padding: 1.4rem 1rem 2.2rem;
    }

    .qlp-cta {
        border-radius: 0;
    }
}
