/* =============================================================
   landing-light.css  (filename kept for the existing <link>)
   DARK landing theme layer — scoped under `body.landing-active`
   so it never touches the in-app dashboards.

   The base dark navy background, dark cards and light text all
   come from landing.css / creator-landing.css. This file adds:
     • the hero blue-glow "light effect" (knife-cut + backlight)
     • the Geist typography scale (semibold 600 headings)
     • the Alytics-style hero sub-text (light, on dark)
     • a SOLID dark navbar pill (no blur, per project preference)

   The whole landing is one continuous dark navy (#07101F), the
   same background top to bottom.
   ============================================================= */

/* ── ONE blue for the whole landing ──
   Re-point the accent CSS variables (used across landing.css for tags,
   icons, buttons, borders, etc.) to a single royal blue. Scoped to the
   landing so dashboards keep their own accent. The hard-coded steel-blue
   tints in landing.css are find/replaced to the matching rgba(47,107,255). */
body.landing-active {
    --accent-primary: #4B96CF;
    --text-accent:    #4B96CF;
    --glow-primary:   rgba(75, 150, 207, 0.25);
    --border-active:  rgba(75, 150, 207, 0.50);
    background: #07101F;   /* one continuous navy behind the whole landing */
}
/* Unify every section + footer to the same navy as the hero (no seams). */
body.landing-active .footer { background: #07101F; }
/* Drop the hairline borders that show a seam between hero and sections. */
body.landing-active .trust-section { border-top-color: transparent; border-bottom-color: transparent; padding-bottom: 18px; }

/* Film grain over the WHOLE landing — a static texture (rendered once,
   no animation/JS), so the cost is negligible. Because it covers every
   section uniformly, there's no hero-vs-rest seam. */
body.landing-active::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.05;
}

/* ── Navbar — solid dark pill (no blur) ── */
body.landing-active .navbar .nav-container {
    background: #0B1526;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    /* right gap matches top/bottom (8px) so the Get Started Free button
       sits symmetrically, like the Early-access badge hugs the left. */
    padding: 8px 8px 8px 22px;
}
body.landing-active .navbar.scrolled .nav-container {
    background: #0B1526;
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
body.landing-active .logo-text { color: #FFFFFF; }
body.landing-active .nav-link { color: rgba(232, 236, 245, 0.78); }
body.landing-active .nav-link:hover { color: #FFFFFF; }
body.landing-active .nav-divider { background: rgba(255, 255, 255, 0.12); }
body.landing-active .nav-hamburger span { background: #FFFFFF; }
body.landing-active .nav-links.open {
    background: #0B1526;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

/* ── Typography scale — Geist, semibold 600 (matches Alytics) ── */
body.landing-active .hero-title,
body.landing-active .section-title,
body.landing-active .split-title,
body.landing-active .cta-title,
body.landing-active .why-title,
body.landing-active .step-title,
body.landing-active .ccb-title,
body.landing-active .stat-value,
body.landing-active .pc-price {
    font-family: 'Geist', sans-serif;
}
body.landing-active .hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
body.landing-active .section-title { font-weight: 600; letter-spacing: -0.02em; }
body.landing-active .split-title { font-weight: 600; letter-spacing: -0.02em; }
body.landing-active .cta-title { font-weight: 600; letter-spacing: -0.02em; }
body.landing-active .why-title { font-weight: 600; }
body.landing-active .step-title { font-weight: 600; }
body.landing-active .ccb-title { font-weight: 600; letter-spacing: -0.02em; }
body.landing-active .stat-value { font-weight: 700; }
body.landing-active .pc-price { font-weight: 700; }

/* ============================================================
   HERO — dark navy with the blue glow light effect.
   ============================================================ */

/* Solid dark canvas (same navy as the sections below it) */
body.landing-active header#home { background: #07101F; }

/* Give the glow room; content sits near the top */
body.landing-active .hero {
    min-height: clamp(360px, 52vh, 560px);
    align-items: flex-start;
}
body.landing-active .hero-inner {
    /* Fallback ≈ navbar bottom (72px) + 30px gap. JS (balanceHeroEyebrow)
       overrides this with the exact measured value on load/resize. */
    padding-top: 102px;
    padding-bottom: clamp(8px, 2vh, 24px);   /* dashboard tucks up close, Revo-style */
}

/* Blue light wash behind the hero */
/* Circular ambient glows removed — only the corner blade + dots remain. */
body.landing-active .hero-mesh { background: none; }

/* (1) Light blade beaming in from the TOP-LEFT corner — broad bright head
   at the corner, tapering to a soft point, with visible white->blue bands. */
/* (1) Light blade beaming in from the TOP-LEFT corner — our signature glow. */
body.landing-active .hero-leak {
    position: absolute;
    top: 28%;
    left: 20%;
    width: 46%;
    height: 188%;            /* longer so the point reaches further (pointier, not wider) */
    transform: translate(-50%, -50%) rotate(-40deg);
    transform-origin: center;
    background: radial-gradient(ellipse 15% 54% at 50% 16%,
        rgba(232, 242, 255, 0.82) 0%,
        rgba(180, 214, 255, 0.76) 11%,
        rgba(120, 178, 248, 0.70) 24%,
        rgba(75, 150, 207, 0.64) 40%,
        rgba(58, 122, 196, 0.52) 56%,
        rgba(44, 102, 174, 0.34) 72%,
        rgba(32, 82, 148, 0.16) 86%,
        transparent 96%);
    filter: blur(28px);
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
}

/* (2) Centered backlight halo — off (the blade is the hero light source). */
body.landing-active .hero-backlight { display: none; }

/* Drop the animated wave lines; keep a faint grain texture */
body.landing-active .hero-bg::before { background-image: none; animation: none; }
body.landing-active .hero-bg::after { opacity: 0; }   /* drop grain so the hero matches the sections */

/* Hero text on the dark canvas */
body.landing-active .hero-title { color: #FFFFFF; }
/* Use the hero's light-blue gradient for EVERY .text-gradient on the
   landing (section titles included), not just the hero, so they match. */
body.landing-active .text-gradient {
    background: linear-gradient(120deg, #8AD0F4 0%, #62B0E2 55%, #4B96CF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Sub-text — Alytics style, light on dark */
body.landing-active .hero-sub {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: rgba(226, 232, 246, 0.72);
    max-width: 520px;
}
body.landing-active .hero .creator-text-link { color: rgba(220, 228, 245, 0.72); }
body.landing-active .hero .creator-text-link:hover { color: #FFFFFF; }

/* Eyebrow pill — subtle blue glass */
body.landing-active .hero-eyebrow {
    background: rgba(75, 150, 207, 0.12);
    border-color: rgba(75, 150, 207, 0.30);
    padding: 6px 16px 6px 6px;   /* equal 6px around the badge: top / bottom / left */
    gap: 10px;
    letter-spacing: 0;
    margin-bottom: 30px;         /* same gap below (to heading) as above (to navbar) */
}
body.landing-active .eyebrow-badge {
    background: #4B96CF;
    color: #FFFFFF;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(75, 150, 207, 0.35);
}
body.landing-active .eyebrow-text {
    color: #C5DCEF;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1;
}

/* All landing primary buttons use the heading's blue gradient, no glow.
   (The Early-access badge is not a button, so it keeps its solid fill + glow.) */
body.landing-active .btn-primary,
body.landing-active .btn-hero {
    background: #4B96CF;   /* the Early-access blue, bright */
    box-shadow: 0 0 28px rgba(75, 150, 207, 0.62), 0 6px 20px rgba(75, 150, 207, 0.45);
}
body.landing-active .btn-primary:hover,
body.landing-active .btn-hero:hover {
    box-shadow: 0 0 40px rgba(90, 165, 220, 0.82), 0 6px 24px rgba(75, 150, 207, 0.55);
    filter: brightness(1.06);
}

/* ── "Sea at night" — drifting white/blue twinkles behind the hero ── */
body.landing-active .hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
body.landing-active .hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(150, 200, 255, 0.65);
    animation: seaTwinkle var(--dur, 5s) ease-in-out var(--delay, 0s) infinite;
    will-change: opacity, transform;
}
@keyframes seaTwinkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50%      { opacity: var(--peak, 0.7); transform: translateY(-12px) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    body.landing-active .hero-particle { animation: none; opacity: 0.25; }
}

/* ── "Features" intro section (Revo-style, in our blue) ── */
body.landing-active .features-intro {
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding: clamp(235px, 24vw, 282px) 24px 24px;  /* symmetric gap above/below the beam */
}
body.landing-active .features-intro .section-container { position: relative; z-index: 1; }

/* vertical light beam above the eyebrow: a big blue stripe with two white
   stripes inside, two side stripes, and white dots flowing down between. */
body.landing-active .fi-beam {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 192px;
    height: clamp(180px, 21vw, 232px);
    pointer-events: none;
    z-index: 0;
    -webkit-mask: linear-gradient(180deg, transparent 0%, #000 16%, #000 70%, transparent 100%);
    mask: linear-gradient(180deg, transparent 0%, #000 16%, #000 70%, transparent 100%);
}
body.landing-active .fi-stripe { position: absolute; top: 0; bottom: 0; }
body.landing-active .fi-big {
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    background: linear-gradient(90deg, transparent, rgba(60, 120, 200, 0.46) 26%, rgba(110, 175, 255, 0.60) 50%, rgba(60, 120, 200, 0.46) 74%, transparent);
}
body.landing-active .fi-w {
    width: 3px;
    margin-left: -1.5px;     /* identical, pixel-aligned both sides */
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.85) 65%, transparent);
}
body.landing-active .fi-w1 { left: calc(50% - 11px); }
body.landing-active .fi-w2 { left: calc(50% + 11px); }
body.landing-active .fi-side {
    width: 5px;
    background: linear-gradient(180deg, transparent, rgba(150, 195, 255, 0.50) 35%, rgba(150, 195, 255, 0.50) 65%, transparent);
}
body.landing-active .fi-s1 { left: calc(50% - 56px); transform: translateX(-50%); }
body.landing-active .fi-s2 { left: calc(50% + 56px); transform: translateX(-50%); }
body.landing-active .fi-beam-dots { position: absolute; inset: 0; }
body.landing-active .fi-beam-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 6px rgba(180, 210, 255, 0.85);
    opacity: 0;
    animation: beamFall var(--dur, 6s) linear var(--delay, 0s) infinite;
}
@keyframes beamFall {
    0%   { transform: translateY(-24px); opacity: 0; }
    12%  { opacity: var(--peak, 0.9); }
    88%  { opacity: var(--peak, 0.9); }
    100% { transform: translateY(var(--fall, 280px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    body.landing-active .fi-beam-dot { animation: none; opacity: 0.5; }
}

/* "Features" eyebrow with sparkle dividers */
body.landing-active .fi-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;                 /* lines touch the stars */
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 1.15rem;
}
body.landing-active .fi-line {
    display: inline-block;
    width: clamp(88px, 14vw, 205px);
    height: 2px;
}
/* tuck the line ends under the stars so each line starts at the star's middle */
body.landing-active .fi-line-l { background: linear-gradient(90deg, transparent, rgba(75, 150, 207, 0.6)); margin-right: -9px; }
body.landing-active .fi-line-r { background: linear-gradient(90deg, rgba(75, 150, 207, 0.6), transparent); margin-left: -9px; }
body.landing-active .fi-spark { color: var(--accent-primary); display: inline-flex; line-height: 1; position: relative; z-index: 1; }
body.landing-active .fi-spark svg { width: 17px; height: 17px; display: block; }
body.landing-active .fi-label { letter-spacing: 0.4px; color: var(--text-secondary); margin: 0 14px; }

/* ── Integrations section ── */
body.landing-active .integ-section { text-align: center; }

/* venn visual above the eyebrow — eclipse orbs + curved fanning lines */
body.landing-active .integ-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-bottom: 6px;
}
body.landing-active .iv-lines {
    width: clamp(130px, 22vw, 235px);
    height: 150px;
    flex-shrink: 0;
}
body.landing-active .iv-lines path { stroke: rgba(150, 180, 235, 0.32); stroke-width: 1; }
body.landing-active .iv-dot { fill: rgba(225, 235, 255, 0.9); }
body.landing-active .iv-lines-l { -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 80%); mask-image: linear-gradient(90deg, transparent 2%, #000 80%); }
body.landing-active .iv-lines-r { -webkit-mask-image: linear-gradient(90deg, #000 20%, transparent 98%); mask-image: linear-gradient(90deg, #000 20%, transparent 98%); }
body.landing-active .integ-orbs {
    position: relative;
    width: 168px;
    height: 168px;
    flex-shrink: 0;
    margin: 0 -16px;
    z-index: 1;
}
/* soft glow behind the eclipse */
body.landing-active .integ-orbs::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 50% 46%, rgba(120, 178, 248, 0.32) 0%, rgba(75, 150, 207, 0.12) 40%, transparent 70%);
    pointer-events: none;
}
body.landing-active .integ-orb {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform: translateY(-50%);
    mix-blend-mode: screen;   /* overlap adds up -> bright lens */
}
/* left sphere — brightest toward the overlap (its right side) */
body.landing-active .integ-orb-a {
    left: 0;
    background: radial-gradient(circle at 64% 40%, rgba(138, 208, 244, 0.85) 0%, rgba(75, 150, 207, 0.45) 46%, rgba(28, 66, 116, 0.22) 78%);
    border: 1px solid rgba(120, 190, 245, 0.4);
}
/* right sphere — brightest toward the overlap (its left side), a touch dimmer */
body.landing-active .integ-orb-b {
    right: 0;
    background: radial-gradient(circle at 36% 40%, rgba(120, 185, 248, 0.7) 0%, rgba(58, 122, 196, 0.4) 48%, rgba(24, 58, 108, 0.2) 80%);
    border: 1px solid rgba(110, 180, 240, 0.36);
}
@media (max-width: 600px) { body.landing-active .iv-lines { width: 76px; } }

/* connected-graph visual below the text */
body.landing-active .ig-graph {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 24px auto 0;
    aspect-ratio: 1000 / 420;   /* scales as one unit; everything inside is sized relative to it */
}
/* faint grid behind the node, fading out toward the edges (Revo-style) */
body.landing-active .ig-graph::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(150, 188, 240, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 188, 240, 0.22) 1px, transparent 1px);
    background-size: 46px 46px;
    background-position: center;
    -webkit-mask-image: radial-gradient(ellipse 46% 78% at 50% 50%, #000 22%, transparent 80%);
    mask-image: radial-gradient(ellipse 46% 78% at 50% 50%, #000 22%, transparent 80%);
    pointer-events: none;
}
body.landing-active .ig-wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
body.landing-active .ig-wires path { stroke: rgba(150, 185, 235, 0.22); stroke-width: 1; stroke-linecap: round; }
body.landing-active .ig-center {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 28%; aspect-ratio: 1;     /* always 28% of the graph -> edges stay at 36%/64% */
    border-radius: 14%;
    /* glass: dark toward the centre, lighter/glowing toward the edges (our blue) */
    background: radial-gradient(ellipse 105% 105% at 50% 44%, #103049 0%, #1A4A72 44%, #2F6CB0 76%, #4B96CF 100%);
    border: 1px solid rgba(130, 190, 245, 0.6);
    box-shadow:
        0 0 80px rgba(75, 150, 207, 0.45),
        0 22px 60px rgba(25, 70, 130, 0.4),
        inset 0 0 55px rgba(120, 178, 248, 0.32),   /* glowing inner rim */
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; z-index: 2;
}
body.landing-active .ig-center svg { width: 34%; height: 34%; filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3)); }
body.landing-active .ig-logo { width: 37%; height: 37%; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35)); }

/* light source at each connection point — a soft glowing dot + a faint streak,
   with grain particles streaming outward (generated in JS). */
body.landing-active .ig-spark {
    position: absolute;
    --travel: clamp(60px, 12vw, 120px);   /* streak length + grain travel, scales down on small screens */
    width: var(--travel); height: 2px;
    z-index: 3;
    pointer-events: none;
}
body.landing-active .ig-spark-l { transform: translate(-100%, -50%); background: linear-gradient(90deg, transparent, rgba(200, 226, 255, 0.5)); }
body.landing-active .ig-spark-r { transform: translate(0, -50%); background: linear-gradient(90deg, rgba(200, 226, 255, 0.5), transparent); }
body.landing-active .ig-spark::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFFFFF 0%, rgba(200, 225, 255, 0.6) 45%, transparent 75%);
    box-shadow: 0 0 18px 4px rgba(190, 220, 255, 0.85);
}
body.landing-active .ig-spark-l::before { right: 0; transform: translate(50%, -50%); }
body.landing-active .ig-spark-r::before { left: 0; transform: translate(-50%, -50%); }
body.landing-active .ig-grain {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 5px 1px rgba(200, 226, 255, 0.85);
    pointer-events: none;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
body.landing-active .ig-spark-l .ig-grain { right: 0; }
body.landing-active .ig-spark-r .ig-grain { left: 0; }
@keyframes igGrainL {
    0%   { transform: translate(0, var(--y, 0)) scale(0.4); opacity: 0; }
    14%  { opacity: 0.95; }
    100% { transform: translate(calc(var(--travel, 120px) * -1), var(--y, 0)) scale(1); opacity: 0; }
}
@keyframes igGrainR {
    0%   { transform: translate(0, var(--y, 0)) scale(0.4); opacity: 0; }
    14%  { opacity: 0.95; }
    100% { transform: translate(var(--travel, 120px), var(--y, 0)) scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { body.landing-active .ig-grain { animation: none !important; opacity: 0; } }
body.landing-active .ig-tile {
    position: absolute;
    transform: translate(-50%, -50%);
    width: clamp(34px, 5.2vw, 52px); height: clamp(34px, 5.2vw, 52px);
    border-radius: 27%;
    background: #0F1828;
    border: 1px solid rgba(140, 185, 250, 0.4);   /* subtle lit borderline */
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 9px rgba(95, 155, 245, 0.28),
        0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
body.landing-active .ig-tile svg { width: 42%; height: 42%; }

/* ── Feature cards (Revo-style, in our blue) ── */
body.landing-active .feature-cards { padding-top: 0; }
body.landing-active .fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    body.landing-active .fc-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
body.landing-active .fcard {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    padding: 30px 28px;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
body.landing-active .fcard-featured {
    border-color: rgba(120, 175, 255, 0.40);
    background: linear-gradient(165deg, #2F6CB0 0%, #4B96CF 55%, #6AA9DC 100%);
    box-shadow: 0 24px 70px rgba(47, 108, 176, 0.35);
}
body.landing-active .fcard-title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 10px;
}
body.landing-active .fcard-desc { font-size: 0.95rem; line-height: 1.6; color: rgba(226, 232, 246, 0.70); max-width: 320px; }
body.landing-active .fcard-featured .fcard-desc { color: rgba(255, 255, 255, 0.88); }
body.landing-active .fcard-visual { position: relative; flex: 1; margin-top: 26px; min-height: 230px; }

/* Payment system card */
body.landing-active .fc-pay {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.landing-active .fc-pay-head { display: flex; align-items: center; justify-content: space-between; }
body.landing-active .fc-pay-label { font-size: 0.78rem; color: rgba(226, 232, 246, 0.6); }
body.landing-active .fc-pay-status { font-size: 0.66rem; font-weight: 700; color: #4CD995; background: rgba(76, 217, 149, 0.16); padding: 3px 10px; border-radius: 99px; }
body.landing-active .fc-pay-amount { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 2rem; color: #FFFFFF; letter-spacing: -1px; line-height: 1; }
body.landing-active .fc-pay-amount span { font-size: 1rem; color: rgba(226, 232, 246, 0.5); }
body.landing-active .fc-pay-bar { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
body.landing-active .fc-pay-bar i { display: block; width: 28%; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #4B96CF, #6AA9DC); transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1); }

/* Owed / Paid-out stat cards */
body.landing-active .fc-pay-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
body.landing-active .fc-pay-stat { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 20px 18px; display: flex; flex-direction: column; gap: 8px; }
body.landing-active .fc-pay-stat-l { font-size: 0.78rem; color: rgba(226, 232, 246, 0.55); }
body.landing-active .fc-pay-stat-v { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 1.7rem; letter-spacing: -0.5px; color: #FFFFFF; }
body.landing-active .fc-pay-stat-paid .fc-pay-stat-v { color: #4CD995; }

/* current payout / total readout at the bottom */
body.landing-active .fc-pay-foot { margin-top: auto; font-family: 'Geist', sans-serif; font-weight: 700; letter-spacing: -0.5px; line-height: 1; white-space: nowrap; }
body.landing-active .fc-pay-current { font-size: 2rem; color: #FFFFFF; }
body.landing-active .fc-pay-total { font-size: 1.1rem; color: rgba(226, 232, 246, 0.5); }

body.landing-active .fc-pay-rows { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
body.landing-active .fc-pay-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    margin: 0 -8px;
    border-radius: 10px;
    transition: background 0.45s ease;
}
/* green flash on a row only when ITS value steps up (JS toggles .bump, staggered) */
body.landing-active .fc-pay-row.bump { background: rgba(76, 217, 149, 0.16); }
body.landing-active .fc-pay-row.bump .fc-pay-amt { color: #4CD995; }

/* "everything paid" state — green check + message overlay */
body.landing-active .fc-pay-done {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(11, 21, 37, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}
body.landing-active .fc-pay.is-paid .fc-pay-done { opacity: 1; visibility: visible; }
body.landing-active .fc-pay-check {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(76, 217, 149, 0.20);
    color: #4CD995;
    display: flex; align-items: center; justify-content: center;
}
body.landing-active .fc-pay-done-msg { max-width: 200px; line-height: 1.45; color: rgba(255, 255, 255, 0.9); }
body.landing-active .fc-pay-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #4B96CF, #2F6CB0); flex-shrink: 0; }
body.landing-active .fc-pay-nm { height: 8px; width: 72px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
body.landing-active .fc-pay-amt { margin-left: auto; font-size: 0.82rem; font-weight: 600; color: rgba(226, 232, 246, 0.78); transition: color 0.45s ease; }

/* LEFT card — content & approvals (content pieces get a green check in turn) */
body.landing-active .fc-content { height: 100%; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
body.landing-active .fc-citem {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 10px;
}
body.landing-active .fc-cthumb {
    width: 54px; height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4B96CF, #2F6CB0);   /* match the middle card's blue */
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    flex-shrink: 0;
}
body.landing-active .fc-clines { display: flex; flex-direction: column; gap: 7px; flex: 1; }
body.landing-active .fc-clines i { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
body.landing-active .fc-clines i:nth-child(2) { width: 62%; background: rgba(255, 255, 255, 0.10); }
body.landing-active .fc-cpill {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 99px;
    white-space: nowrap;
}
body.landing-active .fc-cpill-approve { background: rgba(76, 217, 149, 0.16); color: #4CD995; }
body.landing-active .fc-cpill-flag    { background: rgba(229, 115, 115, 0.16); color: #E57373; }
body.landing-active .fc-cpill-pending { background: rgba(224, 180, 76, 0.16); color: #E0B44C; }

/* MIDDLE featured card — concentric arcs + platform logos around them */
body.landing-active .fcard-visual-arc {
    min-height: 250px;
    /* Clip the oversized arcs + orbiting logos to the card. They sit on a
       280px-radius circle centred at the card's bottom edge, so without this
       they spill ~280px below/beside the card. The mask only fades them
       visually — it does NOT clip layout, so the spill was adding phantom
       scroll height (worst on narrow mobile), causing the page to flash and
       scroll into endless empty space. overflow:hidden makes the logos
       genuinely "dip out of sight" below the card as intended. */
    overflow: hidden;
    /* slim fade right at the side walls + a fade toward the bottom */
    -webkit-mask:
        linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
        linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask:
        linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
        linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
    mask-composite: intersect;
}
/* three concentric circle lines, centred at the bottom-centre of the card */
body.landing-active .fc-arc {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.34);
}
body.landing-active .fc-arc-1 { width: 560px; height: 560px; }            /* radius 280 */
body.landing-active .fc-arc-2 { width: 330px; height: 330px; opacity: 0.72; }  /* radius 165 */
body.landing-active .fc-arc-3 { width: 200px; height: 200px; opacity: 0.5; }   /* radius 100 */

/* platform logos that ORBIT along the three circle lines */
body.landing-active .fc-pico {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.95);
    color: #2F6CB0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    offset-rotate: 0deg;                 /* keep the logo upright while it travels */
    animation: fcOrbit 24s linear infinite;
}
@keyframes fcOrbit { from { offset-distance: 0%; } to { offset-distance: 100%; } }
/* two logos per circle; negative delays stagger their positions so they
   appear over the top arc and dip out of sight (below the card) in turn */
/* Durations grow with the radius so all rings move at a similar visual
   speed (big ring slower, small ring faster). */
/* BIG ring — 6 logos so the (small visible) top arc is never empty */
body.landing-active .fc-pico-1,
body.landing-active .fc-pico-2,
body.landing-active .fc-pico-3,
body.landing-active .fc-pico-4,
body.landing-active .fc-pico-5,
body.landing-active .fc-pico-6 { offset-path: circle(280px at 50% 100%); animation-duration: 32s; }
body.landing-active .fc-pico-1 { animation-delay: 0s; }
body.landing-active .fc-pico-2 { animation-delay: -5.3s; }
body.landing-active .fc-pico-3 { animation-delay: -10.7s; }
body.landing-active .fc-pico-4 { animation-delay: -16s; }
body.landing-active .fc-pico-5 { animation-delay: -21.3s; }
body.landing-active .fc-pico-6 { animation-delay: -26.7s; }
/* MIDDLE ring — 3 logos, travels the opposite way (right -> left) */
body.landing-active .fc-pico-7,
body.landing-active .fc-pico-8,
body.landing-active .fc-pico-9 { offset-path: circle(165px at 50% 100%); animation-duration: 21s; animation-direction: reverse; }
body.landing-active .fc-pico-7 { animation-delay: 0s; }
body.landing-active .fc-pico-8 { animation-delay: -7s; }
body.landing-active .fc-pico-9 { animation-delay: -14s; }
/* SMALL ring — 3 logos */
body.landing-active .fc-pico-10,
body.landing-active .fc-pico-11,
body.landing-active .fc-pico-12 { offset-path: circle(100px at 50% 100%); animation-duration: 12s; }
body.landing-active .fc-pico-10 { animation-delay: 0s; }
body.landing-active .fc-pico-11 { animation-delay: -4s; }
body.landing-active .fc-pico-12 { animation-delay: -8s; }
body.landing-active .fc-core { position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); z-index: 1; }
@media (prefers-reduced-motion: reduce) {
    body.landing-active .fc-pico { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
    body.landing-active .fc-pico, body.landing-active .fc-mrow,
    body.landing-active .fc-pay-bar i, body.landing-active .fc-pay-row { animation: none; }
}

/* ============================================================
   APP PREVIEW — product shot of the brand dashboard.
   Dark window + blue gradient glow (no blur) + floating cards.
   ============================================================ */
body.landing-active .app-preview {
    position: relative;
    padding: 10px 24px 70px;
    margin-top: -52px;            /* tuck up close under the hero */
    /* no overflow:hidden — it was hard-clipping the window's drop shadow and
       creating a visible horizontal divider above the platform marquee. */
}
/* A separate light source behind the dashboard — blue bloom that haloes out
   from behind the window. Built from gradients (no blur filter). */
body.landing-active .ap-glow {
    position: absolute;
    left: 50%;
    top: -84px;                 /* soft even halo behind the bright glow */
    width: min(1080px, 100%);
    height: 84px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(70, 140, 205, 0.08) 35%,
        rgba(82, 158, 216, 0.22) 80%,
        rgba(70, 140, 205, 0.12) 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
body.landing-active .ap-stage {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
}


/* Bright glowing light bar across the top edge of the dashboard (no blur filter —
   a thin bright gradient line + box-shadow bloom). */
body.landing-active .ap-toplight {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 64px;
    /* Even light across the whole top edge (not a middle hot-spot). The peak sits
       just ABOVE the edge and dims again at the very edge, so there's no bright
       straight line on the border; the top fades out gradually. A horizontal mask
       fades only the ends -> rounded ends, no square. */
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(95, 168, 232, 0.14) 26%,
        rgba(108, 180, 250, 0.40) 58%,
        rgba(118, 186, 252, 0.56) 80%,
        rgba(96, 170, 236, 0.30) 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
    z-index: 0;                 /* sits BEHIND the dashboard, glowing from its top */
    pointer-events: none;
}

/* Faint glass panel behind the dashboard — reads as an extension, not part of it.
   No top border so there's no hard line in the gap under the headline. */
body.landing-active .ap-back {
    position: absolute;
    top: -24px; left: -24px; right: -24px; bottom: -24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.012) 32%, rgba(255, 255, 255, 0.022) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.20);   /* light catching the top borderline */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),     /* bright inner top edge */
        inset 0 0 40px rgba(120, 178, 248, 0.06),    /* faint inner blue sheen */
        0 0 0 1px rgba(255, 255, 255, 0.02);
    z-index: 0;
}
/* uniform bright highlight along the flat top of the glass (inset to the corner radius) */
body.landing-active .ap-back::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(206, 226, 255, 0.55) 7%, rgba(206, 226, 255, 0.55) 93%, transparent 100%);
    pointer-events: none;
}
body.landing-active .ap-window { position: relative; z-index: 1; }   /* above the glow + glass */

/* Fade the carried-down dots at top & bottom so there's no hard line at the marquee. */
body.landing-active .app-preview .hero-particles {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 94%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 94%, transparent 100%);
}
/* Fade the hero dots out before the hero's hard bottom clip, so the hero and
   dashboard dot fields blend instead of leaving a brightness line in the gap. */
body.landing-active .hero-bg .hero-particles {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
}

/* ---- window frame ---- */
body.landing-active .ap-window {
    display: flex;
    background: #0C1322;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

/* sidebar */
body.landing-active .ap-side {
    flex-shrink: 0;
    width: 64px;
    background: #0A1019;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
}
body.landing-active .ap-side-logo { color: #4B96CF; display: flex; }
body.landing-active .ap-side-nav { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
body.landing-active .ap-side-i {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.40);
}
body.landing-active .ap-side-i svg { width: 18px; height: 18px; }
body.landing-active .ap-side-active { background: rgba(75, 150, 207, 0.16); color: #7FB6E6; }

/* main column */
body.landing-active .ap-main { flex: 1; min-width: 0; padding: 24px 26px 28px; }

body.landing-active .ap-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
body.landing-active .ap-top-l { display: flex; align-items: center; gap: 14px; }
body.landing-active .ap-top-rule { width: 3px; height: 38px; border-radius: 3px; background: #4B96CF; }
body.landing-active .ap-hello { font-family: 'Geist', sans-serif; font-size: 1.32rem; font-weight: 600; color: #FFFFFF; margin: 0; letter-spacing: -0.01em; }
body.landing-active .ap-sub { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); margin: 2px 0 0; }

body.landing-active .ap-tools { display: flex; align-items: center; gap: 10px; }
body.landing-active .ap-search {
    display: flex; align-items: center; gap: 8px;
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px; padding: 9px 14px; min-width: 200px;
    color: rgba(255, 255, 255, 0.42); font-size: 0.85rem;
}
body.landing-active .ap-search svg { width: 15px; height: 15px; }
body.landing-active .ap-ibtn {
    width: 38px; height: 38px; border-radius: 10px;
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.55);
}
body.landing-active .ap-ibtn svg { width: 16px; height: 16px; }
body.landing-active .ap-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, #4B96CF, #2C5F8E);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.landing-active .ap-row1 { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 14px; }
body.landing-active .ap-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px; padding: 7px 13px; color: rgba(255, 255, 255, 0.78); font-size: 0.84rem; font-weight: 500;
}
body.landing-active .ap-chip svg { width: 13px; height: 13px; color: rgba(255, 255, 255, 0.5); }
body.landing-active .ap-updated { font-size: 0.8rem; color: rgba(255, 255, 255, 0.32); }

/* stat grid + integrations */
body.landing-active .ap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.15fr;
    gap: 14px;
    align-items: start;
}
body.landing-active .ap-stat {
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px; padding: 16px;
}
body.landing-active .ap-stat-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
body.landing-active .ap-stat-l { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
body.landing-active .ap-stat-d { display: inline-flex; align-items: center; gap: 3px; font-size: 0.75rem; font-weight: 600; }
body.landing-active .ap-stat-d svg { width: 11px; height: 11px; }
body.landing-active .ap-up { color: #4CD995; }
body.landing-active .ap-stat-b { display: flex; align-items: baseline; gap: 7px; margin-top: 14px; }
body.landing-active .ap-stat-v { font-family: 'Geist', sans-serif; font-size: 1.55rem; font-weight: 700; color: #FFFFFF; letter-spacing: -0.02em; }
body.landing-active .ap-stat-u { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

body.landing-active .ap-integ {
    grid-row: span 1;
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px; padding: 16px 16px 8px;
}
body.landing-active .ap-integ-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.84rem; font-weight: 600; color: #FFFFFF; margin-bottom: 12px; }
body.landing-active .ap-dots { color: rgba(255, 255, 255, 0.35); letter-spacing: 1px; }
body.landing-active .ap-integ-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
body.landing-active .ap-pl { width: 28px; height: 28px; border-radius: 8px; background: #1A2538; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.85); flex-shrink: 0; }
body.landing-active .ap-pl svg { width: 15px; height: 15px; }
body.landing-active .ap-pl-t { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
body.landing-active .ap-pl-t b { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
body.landing-active .ap-pl-t i { font-size: 0.7rem; font-style: normal; color: rgba(255, 255, 255, 0.35); }
body.landing-active .ap-tag { font-size: 0.72rem; font-weight: 600; padding: 5px 11px; border-radius: 8px; background: #1A2538; color: rgba(255, 255, 255, 0.6); }
body.landing-active .ap-tag-on { background: rgba(76, 217, 149, 0.14); color: #4CD995; }

/* Launch Campaign button (matches our real top bar) */
body.landing-active .ap-launch {
    background: #4B96CF; color: #FFFFFF;
    border: none; border-radius: 11px;
    padding: 11px 18px; font-size: 0.86rem; font-weight: 600;
    font-family: 'Geist', sans-serif; white-space: nowrap;
    box-shadow: 0 6px 18px rgba(75, 150, 207, 0.35);
}

/* KPI cards — our real dashboard metrics */
body.landing-active .ap-kpis {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    margin: 22px 0 16px;
}
body.landing-active .ap-kpi {
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
body.landing-active .ap-kpi-l { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
body.landing-active .ap-kpi-v { font-family: 'Geist', sans-serif; font-size: 1.7rem; font-weight: 700; color: #FFFFFF; letter-spacing: -0.02em; line-height: 1; }
body.landing-active .ap-kpi-note { font-size: 0.72rem; font-weight: 600; color: #E0B44C; margin-top: -2px; }

/* charts row — both cards stretch to the same height */
body.landing-active .ap-charts {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; align-items: stretch;
}
body.landing-active .ap-period { font-size: 0.78rem; font-weight: 500; color: rgba(255, 255, 255, 0.5); background: #16223499; border: 1px solid rgba(255, 255, 255, 0.08); padding: 5px 11px; border-radius: 8px; }
body.landing-active .ap-chart-val { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; font-family: 'Geist', sans-serif; font-size: 1.5rem; font-weight: 700; color: #FFFFFF; letter-spacing: -0.02em; }
body.landing-active .ap-chart-val span { font-size: 0.82rem; font-weight: 400; color: rgba(255, 255, 255, 0.45); }
body.landing-active .ap-chart-val i { font-size: 0.8rem; font-weight: 600; font-style: normal; }

/* Views by Platform */
body.landing-active .ap-byp {
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px; padding: 18px;
    display: flex; flex-direction: column;
}
/* bars row — fills the height; badges live in a SEPARATE row below so a
   full-height bar can never displace its logo. */
body.landing-active .ap-byp-plot { flex: 1; display: flex; align-items: flex-end; gap: 12px; padding-top: 26px; }
body.landing-active .ap-byp-barslot { flex: 1; min-width: 0; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
body.landing-active .ap-byp-bar {
    width: 100%; max-width: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, #4B96CF, #2F6CB0);   /* current blue */
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 8px;
}
body.landing-active .ap-byp-v { font-size: 0.72rem; font-weight: 600; color: #FFFFFF; }
/* logo axis — one tick per bar, badge centered, all identical */
body.landing-active .ap-byp-axis { display: flex; gap: 12px; margin-top: 12px; }
body.landing-active .ap-byp-tick { flex: 1; min-width: 0; display: flex; justify-content: center; }
body.landing-active .ap-byp-badge {
    width: 34px; height: 34px; border-radius: 50%;
    background: #16223A; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    display: flex; align-items: center; justify-content: center; color: #FFFFFF;
    flex-shrink: 0;
}
body.landing-active .ap-byp-badge svg { width: 16px; height: 16px; display: block; }

/* chart */
body.landing-active .ap-chart {
    margin-top: 0;
    background: #0F1828; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px; padding: 18px 18px 14px;
}
body.landing-active .ap-chart-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; font-weight: 600; color: #FFFFFF; }
body.landing-active .ap-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 130px; margin: 20px 0 10px;
}
body.landing-active .ap-bar {
    position: relative;
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: rgba(255, 255, 255, 0.10);
    min-width: 0;
}
body.landing-active .ap-bar-peak { background: linear-gradient(180deg, #6FB2E6, #3F7FB8); }
body.landing-active .ap-bar-tip {
    position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
    background: #FFFFFF; color: #0C1322; font-size: 0.72rem; font-weight: 700;
    padding: 3px 8px; border-radius: 7px; white-space: nowrap;
}
body.landing-active .ap-axis { display: flex; justify-content: space-between; font-size: 0.74rem; color: rgba(255, 255, 255, 0.32); padding: 0 2px; }

/* ---- floating cards ---- */
body.landing-active .ap-float {
    position: absolute;
    background: #131D2E;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    z-index: 3;
}
body.landing-active .ap-float-post {
    left: -26px; bottom: 78px;
    width: 250px; padding: 12px;
    display: flex; gap: 12px;
}
body.landing-active .ap-fp-thumb {
    width: 52px; height: 52px; border-radius: 11px; flex-shrink: 0;
    background: linear-gradient(135deg, #24344C, #16202F);
    display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.85);
}
body.landing-active .ap-fp-thumb svg { width: 18px; height: 18px; }
body.landing-active .ap-fp-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
body.landing-active .ap-fp-when { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; color: rgba(255, 255, 255, 0.45); }
body.landing-active .ap-fp-when svg { width: 11px; height: 11px; }
body.landing-active .ap-fp-title { font-size: 0.9rem; font-weight: 600; color: #FFFFFF; }
body.landing-active .ap-fp-stats { display: flex; gap: 12px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.4); }

body.landing-active .ap-float-todo {
    right: -22px; top: 188px;
    width: 290px; padding: 16px;
}
body.landing-active .ap-ft-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
body.landing-active .ap-ft-title { display: block; font-size: 0.95rem; font-weight: 600; color: #FFFFFF; }
body.landing-active .ap-ft-date { display: block; font-size: 0.74rem; color: rgba(255, 255, 255, 0.42); margin-top: 2px; }
body.landing-active .ap-ft-open { color: rgba(255, 255, 255, 0.4); }
body.landing-active .ap-ft-open svg { width: 16px; height: 16px; }
body.landing-active .ap-ft-item {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: #0E1726; border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px; padding: 12px 13px;
}
body.landing-active .ap-ft-txt { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); text-decoration: line-through; }
body.landing-active .ap-ft-check { color: #4CD995; display: flex; }
body.landing-active .ap-ft-check svg { width: 18px; height: 18px; }
body.landing-active .ap-ft-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 0 2px; }
body.landing-active .ap-ft-today { font-size: 0.84rem; font-weight: 600; color: #FFFFFF; }
body.landing-active .ap-ft-time { flex: 1; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
body.landing-active .ap-ft-cal { color: rgba(255, 255, 255, 0.45); }
body.landing-active .ap-ft-cal svg { width: 15px; height: 15px; }

/* tablet / mobile — simplify grids so it never breaks */
@media (max-width: 900px) {
    body.landing-active .ap-kpis { grid-template-columns: repeat(2, 1fr); }
    body.landing-active .ap-charts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    body.landing-active .ap-side { display: none; }
    body.landing-active .ap-kpis { grid-template-columns: repeat(2, 1fr); }
    body.landing-active .ap-launch { padding: 9px 13px; font-size: 0.8rem; }
}
