/* SP Hub: public landing page
   Reuses the same design tokens/fonts as admin.css & auth.css so this page
   feels like one product with the rest of the app, not a bolted-on microsite. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');
:root {
    --page-bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f5f3ff;
    --border: #e2e8f0;
    --heading: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-faint: #94a3b8;
    --accent: #7c3aed;
    --accent-soft: #a78bfa;
    --green: #16a34a;
    --button-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --brand-gradient: linear-gradient(135deg, #7c3aed 0%, #6d28d9 45%, #15803d 78%, #22c55e 100%);
    --hero-bg-1: #1a0b3d;
    --hero-line: rgba(124, 58, 237, .16);
    --hero-node: rgba(124, 58, 237, .3);
    --glass-bg: rgba(255, 255, 255, .72);
    --glass-border: rgba(255, 255, 255, .5);
    --mint-bg: #dcfce7;
    --mint-text: #14532d;
    --shadow-soft: 0 20px 45px -20px rgba(15, 23, 42, .25);
    --shadow-glow: 0 0 0 1px rgba(124, 58, 237, .12), 0 20px 60px -20px rgba(124, 58, 237, .35);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
.landing-body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: 'Inter Tight', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.landing-body h1, .landing-body h2, .landing-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading);
    margin: 0;
    line-height: 1.15;
}
.landing-body img {
    max-width: 100%;
    display: block;
}
.landing-body a {
    text-decoration: none;
    color: inherit;
}
.landing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.landing-btn.landing-btn--primary {
    background: var(--button-gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.landing-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(124, 58, 237, .2), 0 26px 60px -18px rgba(124, 58, 237, .55);
}
.landing-btn.landing-btn--ghost {
    background: var(--surface);
    color: var(--heading);
    border: 1.5px solid var(--border);
}
.landing-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: var(--accent-soft);
    box-shadow: var(--shadow-soft);
}
.landing-btn--sm {
    padding: 9px 18px;
    font-size: 13.5px;
    border-radius: 10px;
}

/* ---------- Nav ---------- */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px 0;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.landing-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 16px;
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.landing-nav.is-scrolled {
    padding: 10px 0;
}
.landing-nav.is-scrolled .landing-nav__inner {
    box-shadow: var(--shadow-soft);
}
.landing-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.landing-nav__brand img {
    height: 30px;
    width: auto;
}
.landing-nav__wordmark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--heading);
    letter-spacing: -.01em;
    white-space: nowrap;
}
.landing-nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.landing-nav__link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    transition: color .2s ease;
}
.landing-nav__link:hover {
    color: var(--accent);
}
.landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.landing-mobile-toggle {
    display: none;
}
.landing-mobile-menu {
    display: none;
}

/* ---------- Hero ---------- */

.landing-hero {
    position: relative;
    padding: 156px 0 0;
    background: linear-gradient(180deg, var(--surface-soft) 0px, var(--page-bg) 480px, var(--surface) 820px, var(--surface) 100%);
}
.landing-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 105vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.landing-hero__circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 16%, transparent 42%, transparent 58%, #000 84%, #000 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 16%, transparent 42%, transparent 58%, #000 84%, #000 100%);
}
.landing-hero__circuit .circuit-line {
    fill: none;
    stroke: var(--hero-line);
    stroke-width: 1.4;
    stroke-linecap: round;
}
.landing-hero__circuit .circuit-node {
    fill: rgba(167, 139, 250, .35);
    stroke: var(--hero-line);
    stroke-width: 1;
}
.landing-hero__circuit .circuit-pulse {
    fill: var(--accent);
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, .6));
}
.landing-hero__circuit .circuit-pulse:nth-of-type(4n) {
    fill: var(--green);
    filter: drop-shadow(0 0 6px rgba(22, 163, 74, .6));
}
.landing-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}
h1.landing-hero__title {
    font-size: clamp(34px, 5.2vw, 66px);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -.01em;
}
.landing-hero__title .grad {
    color: var(--accent);
}
.landing-hero__subtitle {
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 860px;
}
.landing-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
    justify-content: center;
}
.landing-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 50px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
}
.landing-hero__trust svg {
    width: 15px;
    height: 15px;
    color: var(--green);
    flex-shrink: 0;
}

/* Decorative floating badge icons flanking the headline */

.landing-hero__badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    will-change: transform;
}
.landing-hero__badge::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: .18;
}
.landing-hero__badge svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    z-index: 1;
}
.landing-hero__badge--a {
    top: 26px;
    left: 2%;
    width: 42px;
    height: 42px;
    background: linear-gradient(140deg, var(--hero-bg-1), #341f78);
    color: #c4b5fd;
    animation: hero-badge-float-1 4.6s ease-in-out infinite;
}
.landing-hero__badge--b {
    top: 175px;
    left: 5.5%;
    background: linear-gradient(140deg, var(--mint-bg), #bbf7d0);
    color: var(--mint-text);
    animation: hero-badge-float-2 5.4s ease-in-out infinite .5s;
}
.landing-hero__badge--c {
    top: 330px;
    left: 1.5%;
    width: 38px;
    height: 38px;
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    animation: hero-badge-float-1 4s ease-in-out infinite 1.1s;
}
.landing-hero__badge--d {
    top: 58px;
    right: 2%;
    background: linear-gradient(140deg, var(--mint-bg), #bbf7d0);
    color: var(--mint-text);
    animation: hero-badge-float-2 5.8s ease-in-out infinite .2s;
}
.landing-hero__badge--e {
    top: 205px;
    right: 5.5%;
    width: 40px;
    height: 40px;
    background: var(--surface);
    color: var(--accent);
    border: 1.5px solid var(--border);
    animation: hero-badge-float-1 5s ease-in-out infinite .8s;
}
.landing-hero__badge--f {
    top: 360px;
    right: 1.5%;
    width: 42px;
    height: 42px;
    background: linear-gradient(140deg, var(--hero-bg-1), #341f78);
    color: #c4b5fd;
    animation: hero-badge-float-2 5s ease-in-out infinite 1.3s;
}
@keyframes hero-badge-float-1 {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-16px) rotate(3deg);
    }
}
@keyframes hero-badge-float-2 {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-12px) rotate(-3deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .landing-hero__badge {
        animation: none;
    }
}

/* ---------- Hero stat strip ---------- */

.landing-hero__strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr .85fr 1fr;
    align-items: end;
    gap: 18px;
    margin-top: -120px;
    padding-bottom: 96px;
}
.hero-strip__card {
    border-radius: 18px;
    padding: 22px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    animation: hero-card-rise .75s cubic-bezier(.16, .84, .44, 1) both;
}
.hero-strip__card:nth-child(1) {
    animation-delay: .15s;
}
.hero-strip__card:nth-child(2) {
    animation-delay: .3s;
}
.hero-strip__card:nth-child(3) {
    animation-delay: .45s;
}
.hero-strip__card:nth-child(4) {
    animation-delay: .6s;
}
.hero-strip__card:nth-child(5) {
    animation-delay: .75s;
}
@keyframes hero-card-rise {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-strip__card {
        animation: none;
    }
}
.hero-strip__card strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.hero-strip__card p {
    margin: 6px 0 0;
    font-size: 13.5px;
    line-height: 1.5;
}
.hero-strip__card--chart {
    height: 340px;
    background: var(--surface);
    border: 1px solid var(--border);
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.hero-strip__glow--mint {
    top: -55px;
    right: -55px;
    width: 160px;
    height: 160px;
    background: #22c55e;
    opacity: .3;
}
.hero-strip__card--chart strong {
    color: #15803d;
}
.hero-strip__chart-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}
.hero-strip__chart-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}
.hero-strip__chart {
    width: 100%;
    flex: 1;
    min-height: 0;
    margin-top: 14px;
}
.hero-strip__chart .grid {
    stroke: var(--border);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}
.hero-strip__chart .bar {
    fill: var(--accent-soft);
    opacity: .55;
}
.hero-strip__chart .bar--accent {
    fill: var(--accent);
    opacity: 1;
}
.hero-strip__chart .trend-line {
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-strip__chart .trend-dot {
    fill: var(--green);
    stroke: var(--surface);
    stroke-width: 2;
}
.hero-strip__card--dark {
    background: linear-gradient(to bottom right, #3d3780 0%, #201d42 100%);
    color: #fff;
    height: 280px;
    position: relative;
    overflow: hidden;
}
.hero-strip__country {
    width: 100%;
    margin-bottom: auto;
}
.hero-strip__country-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .5);
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, .2);
    margin-bottom: 8px;
}
.hero-strip__country-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
}
.hero-strip__country-row+.hero-strip__country-row {
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero-strip__country-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.hero-strip__country-name i {
    display: block;
    margin-top: 5px;
    height: 3px;
    max-width: 90px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c4b5fd, #a78bfa);
}
.hero-strip__country-row b {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
}
.hero-strip__card--stat {
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 45px -22px rgba(15, 23, 42, .3), 0 2px 8px -2px rgba(15, 23, 42, .1);
}
.hero-strip__mini-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 12px;
}
.hero-strip__mini-icon svg {
    width: 80px;
    height: 80px;
}
.hero-strip__card--mint {
    background: linear-gradient(160deg, #dcfce7 0%, #15803d 100%);
    color: #fff;
    height: 280px;
    position: relative;
    overflow: hidden;
}
.hero-strip__card--mint p {
    color: rgba(255, 255, 255, .8);
}
.hero-strip__bignum {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}
p.hero-strip__bignum-label {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.4;
}
.hero-strip__card--feature {
    background: linear-gradient(to bottom right, #3d3780 0%, #201d42 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    height: 340px;
}
.hero-strip__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(45px);
    pointer-events: none;
}
.hero-strip__glow--teal {
    top: -60px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #14b8a6;
    opacity: .35;
}
.hero-strip__glow--violet {
    left: -55px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: #8b5cf6;
    opacity: .3;
}
.hero-strip__live {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.hero-strip__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #4ade80;
}
.hero-strip__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .3);
    animation: hero-live-pulse 2s ease-in-out infinite;
}
@keyframes hero-live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .45;
    }
}
.hero-strip__live-label {
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
}
.hero-strip__live-value {
    margin-top: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.hero-strip__live-spark {
    margin-top: auto;
    width: 100%;
}
.hero-strip__live-spark svg {
    width: 100%;
    height: auto;
    display: block;
}
@media (prefers-reduced-motion: reduce) {
    .hero-strip__live-dot {
        animation: none;
    }
}
.hero-strip__card--feature p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* ---------- Hero dashboard preview (mac browser frame) ----------
   Reuses the real customer-portal design 1:1: the .customer-* classes and
   token values below are copied from customer.css (light theme only — a
   marketing preview stays on-brand regardless of the visitor's OS theme)
   and scoped under .hero-dash-mock so they can't leak into or collide with
   the rest of this page. */

.hero-dash-mock {
    --page-bg: #edeaf7;
    --surface: #ffffff;
    --border: #ddd6f0;
    --divider: #f1edfa;
    --heading: #18181f;
    --text-muted: #8886a3;
    --accent: #7c3aed;
    --icon-amber-bg: #fffbeb;
    --icon-teal-bg: #f0fdfa;
    --icon-purple-bg: #f5f3ff;
    --icon-blue-bg: #eff6ff;
    --teal-strong: #0d9488;
    --teal-link: #0f766e;
    --amber: #f59e0b;
    --positive-bg: #f0fdf4;
    --positive-text: #16a34a;
    --live-dot: #22c55e;
    --track-bg: #f1eff9;
    --danger-bg: #fef2f2;
    --danger-text: #dc2626;
    --warning-bg: #fffbeb;
    --warning-text: #d97706;
    --success-bg: #f0fdf4;
    --success-text: #15803d;
    --chart-blue: #0284c7;
    --shadow-card: 0 1px 2px rgba(24, 16, 60, .04), 0 14px 32px -18px rgba(60, 40, 140, .16);
    --shadow-soft: 0 20px 45px -24px rgba(30, 20, 80, .2);
    --brand-gradient: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #0d9488 100%);
    position: sticky;
    top: 0;
    z-index: 60;
    width: min(1320px, calc(100% - 48px));
    margin: 44px auto 0;
    border-radius: 16px 16px 0 0;
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    box-shadow: 0 20px 45px -20px rgba(15, 23, 42, .25), 0 0 0 1px rgba(124, 58, 237, .06);
    overflow: hidden;
    animation: hero-card-rise .75s cubic-bezier(.16, .84, .44, 1) both;
    animation-delay: .2s;
}
@media (prefers-reduced-motion: reduce) {
    .hero-dash-mock {
        animation: none;
        position: relative;
        top: auto;
    }
    .hero-dash-pin {
        height: auto;
    }
}
.hero-dash-pin {
    position: relative;
    height: 200vh;
}
.hero-dash-mock__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.hero-dash-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-dash-mock__dot--red {
    background: #ff5f57;
}
.hero-dash-mock__dot--amber {
    background: #febc2e;
}
.hero-dash-mock__dot--green {
    background: #28c840;
}
.hero-dash-mock__address {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    padding: 5px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    font-family: 'Inter Tight', sans-serif;
}
.hero-dash-mock__address svg {
    width: 13px;
    height: 13px;
    color: #16a34a;
    flex-shrink: 0;
}
.hero-dash-mock__viewport {
    position: relative;
    height: 65vh;
    overflow: hidden;
}
.hero-dash-mock__content {
    padding: 28px 32px 40px;
    background: var(--page-bg);
    text-align: left;
    font-family: 'Inter Tight', sans-serif;
}
.hero-dash-mock__fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(to bottom, transparent, var(--page-bg) 82%);
    pointer-events: none;
}

/* ---------- Card shell + hero banner (copied from customer.css) ---------- */

.hero-dash-mock .customer-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.hero-dash-mock .customer-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.hero-dash-mock .customer-card__title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-dash-mock .customer-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, .08);
}
.hero-dash-mock .customer-card__icon svg {
    width: 18px;
    height: 18px;
}
.hero-dash-mock .customer-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
}
.hero-dash-mock .customer-card__subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0 0;
}
.hero-dash-mock .customer-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1e1b4b 0%, #0b0a1f 100%);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    margin-bottom: 32px;
}
.hero-dash-mock .customer-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-dash-mock .customer-hero__glow--teal {
    top: -110px;
    right: -90px;
    width: 320px;
    height: 320px;
    background: #14b8a6;
    opacity: .35;
}
.hero-dash-mock .customer-hero__glow--violet {
    left: -100px;
    top: 90px;
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    opacity: .3;
}
.hero-dash-mock .customer-hero__eyebrow {
    position: relative;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin: 0 0 8px;
}
.hero-dash-mock .customer-hero__title {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}
.hero-dash-mock .customer-hero__sub {
    position: relative;
    font-size: 13px;
    color: #b8b6d9;
    margin: 0 0 28px;
}
.hero-dash-mock .customer-hero__stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hero-dash-mock .customer-hero__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #332f66;
    padding-right: 20px;
}
.hero-dash-mock .customer-hero__stat:last-child {
    border-right: none;
}
.hero-dash-mock .customer-hero__stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-dash-mock .customer-hero__stat-icon svg {
    width: 18px;
    height: 18px;
}
.hero-dash-mock .customer-hero__stat-icon--services {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}
.hero-dash-mock .customer-hero__stat-icon--renewal {
    background: rgba(251, 191, 36, .16);
    color: #fbbf24;
}
.hero-dash-mock .customer-hero__stat-icon--sessions {
    background: rgba(94, 234, 212, .16);
    color: #5eead4;
}
.hero-dash-mock .customer-hero__stat-icon--countries {
    background: rgba(196, 181, 253, .16);
    color: #c4b5fd;
}
.hero-dash-mock .customer-hero__stat-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}
.hero-dash-mock .customer-hero__stat-value--services {
    color: #fff;
}
.hero-dash-mock .customer-hero__stat-value--renewal {
    color: #fbbf24;
}
.hero-dash-mock .customer-hero__stat-value--sessions {
    color: #5eead4;
}
.hero-dash-mock .customer-hero__stat-value--countries {
    color: #c4b5fd;
}
.hero-dash-mock .customer-hero__stat-label {
    font-size: 12px;
    color: #b8b6d9;
    margin-top: 2px;
}

/* ---------- Three/two-card rows ---------- */

.hero-dash-mock .customer-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.hero-dash-mock .customer-row-2 {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}
.hero-dash-mock .customer-dash-card {
    position: relative;
}
.hero-dash-mock .customer-dash-card>* {
    position: relative;
    z-index: 1;
}
.hero-dash-mock .customer-dash-card__glow {
    position: absolute;
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .16;
    background: var(--dash-accent);
    pointer-events: none;
    z-index: 0;
}
.hero-dash-mock .customer-dash-card--amber {
    --dash-accent: linear-gradient(90deg, #f59e0b, #f97316);
}
.hero-dash-mock .customer-dash-card--teal {
    --dash-accent: linear-gradient(90deg, #0d9488, #38bdf8);
}
.hero-dash-mock .customer-dash-card--blue {
    --dash-accent: linear-gradient(90deg, #0284c7, #7c3aed);
}
.hero-dash-mock .customer-dash-card--violet {
    --dash-accent: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.hero-dash-mock .customer-dash-card .customer-card__icon {
    box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 18%, transparent), 0 0 0 6px color-mix(in srgb, currentColor 8%, transparent);
}

/* ---------- Renewal Alerts ---------- */

.hero-dash-mock .customer-renewal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 26px;
    padding: 0 12px 0 10px;
    border-radius: 20px;
    background: var(--success-bg);
    color: var(--success-text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
}
.hero-dash-mock .customer-renewal-badge--active {
    background: var(--warning-bg);
    color: var(--warning-text);
}
.hero-dash-mock .customer-renewal-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success-text);
    flex-shrink: 0;
}
.hero-dash-mock .customer-renewal-badge--active .customer-renewal-badge__dot {
    background: var(--warning-text);
}
.hero-dash-mock .customer-renewal-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    margin: 0 -12px;
    border-radius: 14px;
    border-bottom: 1px solid var(--border);
}
.hero-dash-mock .customer-renewal-row:last-of-type {
    border-bottom: none;
}
.hero-dash-mock .customer-renewal-row__ring {
    --pct: 50;
    --ring-color: var(--teal-strong);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 3px;
    background: conic-gradient(var(--ring-color) calc(var(--pct) * 1%), var(--track-bg) 0);
}
.hero-dash-mock .customer-renewal-row__ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ring-color);
}
.hero-dash-mock .customer-renewal-row--warn .customer-renewal-row__ring {
    --ring-color: var(--amber);
}
.hero-dash-mock .customer-renewal-row--critical .customer-renewal-row__ring {
    --ring-color: var(--danger-text);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger-text) 16%, transparent);
}
.hero-dash-mock .customer-renewal-row__body {
    flex: 1;
    min-width: 0;
}
.hero-dash-mock .customer-renewal-row__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.hero-dash-mock .customer-renewal-row__meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.hero-dash-mock .customer-renewal-row__chip {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    background: var(--track-bg);
    color: var(--text-muted);
    flex-shrink: 0;
}
.hero-dash-mock .customer-renewal-row--warn .customer-renewal-row__chip {
    background: var(--warning-bg);
    color: var(--warning-text);
}
.hero-dash-mock .customer-renewal-row--critical .customer-renewal-row__chip {
    background: var(--danger-bg);
    color: var(--danger-text);
}

/* ---------- Website Analytics ---------- */

.hero-dash-mock .customer-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 10px;
    border-radius: 20px;
    background: var(--positive-bg);
    font-size: 12px;
    font-weight: 600;
    color: var(--positive-text);
}
.hero-dash-mock .customer-live__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--live-dot);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--live-dot) 25%, transparent);
}
.hero-dash-mock .customer-stat-trio {
    display: flex;
    margin: 20px 0 24px;
}
.hero-dash-mock .customer-stat-trio__item {
    flex: 1;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid var(--border);
}
.hero-dash-mock .customer-stat-trio__item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.hero-dash-mock .customer-stat-trio__value {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -.01em;
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.1;
}
.hero-dash-mock .customer-stat-trio__value--accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-dash-mock .customer-stat-trio__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--text-muted);
    margin-top: 6px;
}
.hero-dash-mock .customer-mini-chart-wrap {
    background: var(--page-bg);
    border-radius: 14px;
    padding: 18px 16px 12px;
}
.hero-dash-mock .customer-spark {
    position: relative;
    height: 78px;
}
.hero-dash-mock .customer-spark__svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.hero-dash-mock .customer-spark__line {
    fill: none;
    stroke: var(--teal-strong);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-dash-mock .customer-spark__dot {
    fill: var(--surface);
    stroke: var(--teal-strong);
    stroke-width: 2.5;
}
.hero-dash-mock .customer-mini-chart__labels {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.hero-dash-mock .customer-mini-chart__labels span {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
}
.hero-dash-mock .customer-view-report-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-link);
    margin-top: 16px;
}

/* ---------- Devices & Traffic ---------- */

.hero-dash-mock .customer-device-rings {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 6px;
}
.hero-dash-mock .customer-device-ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.hero-dash-mock .customer-device-ring {
    --pct: 0;
    --ring-color: var(--accent);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(var(--ring-color) calc(var(--pct) * 1%), var(--track-bg) 0);
}
.hero-dash-mock .customer-device-ring__inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: inset 0 0 0 1px var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ring-color);
}
.hero-dash-mock .customer-device-ring-item__pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
    margin-top: 10px;
}
.hero-dash-mock .customer-device-ring-item__label {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}
.hero-dash-mock .customer-device-detail {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px dashed var(--divider);
}
.hero-dash-mock .customer-device-detail__row {
    display: grid;
    grid-template-columns: 9px 1fr auto 38px;
    align-items: center;
    gap: 11px;
}
.hero-dash-mock .customer-device-detail__dot {
    --dot-color: var(--accent);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--dot-color);
    box-shadow: 0 0 8px color-mix(in srgb, var(--dot-color) 65%, transparent);
}
.hero-dash-mock .customer-device-detail__label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--heading);
}
.hero-dash-mock .customer-device-detail__count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--heading);
    text-align: right;
}
.hero-dash-mock .customer-device-detail__pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: right;
    background: var(--divider);
    border-radius: 6px;
    padding: 2px 6px;
}

/* ---------- Top Pages ---------- */

.hero-dash-mock .customer-rank-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 8px;
    margin: 0 -8px;
    border-radius: 12px;
}
.hero-dash-mock .customer-rank-row__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--icon-purple-bg);
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 700;
}
.hero-dash-mock .customer-rank-row__body {
    flex: 1;
    min-width: 0;
}
.hero-dash-mock .customer-rank-row__path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-dash-mock .customer-rank-row__track {
    height: 5px;
    border-radius: 3px;
    background: var(--track-bg);
    margin-top: 8px;
    overflow: hidden;
}
.hero-dash-mock .customer-rank-row__fill {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal-strong));
}
.hero-dash-mock .customer-rank-row__stats {
    text-align: right;
    flex-shrink: 0;
}
.hero-dash-mock .customer-rank-row__views {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
}
.hero-dash-mock .customer-rank-row__time {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- Top Countries ---------- */

.hero-dash-mock .customer-map-legend {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
}
.hero-dash-mock .customer-map-legend__item {
    display: grid;
    grid-template-columns: 18px 1fr 84px 32px;
    align-items: center;
    gap: 10px;
}
.hero-dash-mock .customer-map-legend__rank {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}
.hero-dash-mock .customer-map-legend__name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--heading);
}
.hero-dash-mock .customer-map-legend__track {
    height: 5px;
    border-radius: 3px;
    background: var(--track-bg);
    overflow: hidden;
}
.hero-dash-mock .customer-map-legend__fill {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--chart-blue));
}
.hero-dash-mock .customer-map-legend__pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: right;
}
.landing-hero__glow {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.landing-hero__glow--purple {
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(139, 92, 246, .38) 0%, rgba(139, 92, 246, .22) 45%, transparent 75%);
    filter: blur(55px);
    top: -240px;
    right: -200px;
    animation: glow-pulse 6s ease-in-out infinite;
}
.landing-hero__glow--green {
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(34, 197, 94, .28) 0%, rgba(34, 197, 94, .15) 45%, transparent 75%);
    filter: blur(50px);
    bottom: -260px;
    left: -220px;
    animation: glow-pulse 7s ease-in-out infinite 1s;
}
@keyframes glow-pulse {
    0%, 100% {
        opacity: .55;
    }
    50% {
        opacity: 1;
    }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: .05s;
}
.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: .15s;
}
.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: .25s;
}
.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: .35s;
}
.reveal-stagger.is-visible>*:nth-child(5) {
    transition-delay: .45s;
}

/* ---------- Section shells ---------- */

.landing-section {
    padding: 96px 0;
}
.landing-section--tight {
    padding: 72px 0;
}
.landing-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.landing-section__head {
    max-width: 620px;
    margin: 0 0 52px;
}
.landing-section__head h2 {
    font-size: clamp(26px, 3vw, 36px);
}
.landing-section__head p {
    margin-top: 14px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}
.landing-section__head--center {
    margin-inline: auto;
    text-align: center;
}

/* ---------- Key benefits ---------- */

#benefits, #security {
    position: relative;
    overflow: hidden;
}
#benefits>.landing-container, #security>.landing-container {
    position: relative;
    z-index: 1;
}
.benefits-circuit {
    position: absolute;
    width: 300px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}
.benefits-circuit--tr {
    top: 0;
    right: 0;
}
.benefits-circuit--bl {
    bottom: 0;
    left: 0;
}
.benefits-circuit .circuit-line {
    fill: none;
    stroke: var(--hero-line);
    stroke-width: 1.4;
    stroke-linecap: round;
}
.benefits-circuit .circuit-node {
    fill: rgba(124, 58, 237, .3);
    stroke: var(--hero-line);
    stroke-width: 1;
}
.benefits-circuit .circuit-pulse {
    fill: var(--accent);
    filter: drop-shadow(0 0 5px rgba(124, 58, 237, .5));
}
.benefits-circuit .circuit-pulse:nth-of-type(4n) {
    fill: var(--green);
    filter: drop-shadow(0 0 5px rgba(22, 163, 74, .5));
}
@media (max-width: 899px) {
    .benefits-circuit {
        display: none;
    }
}
.landing-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Neutralize the generic .reveal fade on the section itself: the visual
   and text halves get their own directional entrance below instead. */

.landing-benefits.reveal {
    opacity: 1;
    transform: none;
}
.landing-benefits__visual, .landing-benefits__text {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
}
.landing-benefits__visual {
    transform: translateX(-40px);
}
.landing-benefits__text {
    transform: translateX(40px);
    transition-delay: .15s;
}
.landing-benefits.reveal.is-visible .landing-benefits__visual, .landing-benefits.reveal.is-visible .landing-benefits__text {
    opacity: 1;
    transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
    .landing-benefits__visual, .landing-benefits__text {
        transition: opacity .5s ease;
        transform: none;
    }
}
.landing-benefits__visual {
    position: relative;
    padding: 0 24px 40px 0;
}
.benefits-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}
.benefits-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.benefits-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}
.benefits-card__badge svg {
    width: 12px;
    height: 12px;
}
.benefits-card__stat {
    margin-top: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--heading);
}
.benefits-card__stat span {
    font-family: 'Inter Tight', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}
.benefits-card__bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.benefits-card__bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-muted);
}
.benefits-card__bar-row span {
    flex: 0 0 52px;
}
.benefits-card__bar-row b {
    flex: 0 0 30px;
    text-align: right;
    color: var(--heading);
    font-weight: 700;
}
.benefits-card__bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: var(--surface-soft);
    overflow: hidden;
}
.benefits-card__bar i {
    display: block;
    position: relative;
    height: 100%;
    border-radius: 999px;
    background: var(--green);
    overflow: hidden;
}
.benefits-card__bar i::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--green) 45%, #86efac 50%, var(--green) 55%, transparent 100%);
    background-size: 250% 100%;
    animation: benefits-bar-flow 2.8s linear infinite;
}
@keyframes benefits-bar-flow {
    0% {
        background-position: 120% 0;
    }
    100% {
        background-position: -120% 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .benefits-card__bar i::after {
        animation: none;
        display: none;
    }
}
.benefits-card__mini-chart {
    width: 100%;
    height: 92px;
    margin-top: 22px;
}
.benefits-card__mini-chart .panel {
    fill: var(--surface-soft);
}
.benefits-card__mini-chart .grid {
    stroke: var(--border);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}
.benefits-card__mini-chart .baseline {
    stroke: var(--border);
    stroke-width: 1.5;
}
.benefits-card__mini-chart .bar {
    fill: var(--accent);
    opacity: .55;
}
.benefits-card__mini-chart .bar--accent {
    fill: var(--accent);
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, .35));
}
.benefits-chip {
    position: absolute;
    right: -8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-soft);
    animation: benefits-chip-float 4.5s ease-in-out infinite;
}
@keyframes benefits-chip-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .benefits-chip {
        animation: none;
    }
}
.benefits-chip__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--accent);
    flex-shrink: 0;
}
.benefits-chip__icon svg {
    width: 18px;
    height: 18px;
}
.benefits-chip__row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.benefits-chip__row strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--heading);
}
.benefits-chip__up {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green);
}
.benefits-chip p {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--text-muted);
}
.landing-benefits__title {
    font-size: clamp(26px, 3vw, 36px);
}
.landing-benefits__title .grad {
    color: var(--accent);
}
.landing-benefits__lead {
    margin-top: 14px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 440px;
}
.landing-benefits__list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.landing-benefits__list li {
    display: flex;
    gap: 14px;
}
.landing-benefits__list h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 4px;
}
.landing-benefits__list p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 420px;
}
.landing-benefits__check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}
.landing-benefits__check svg {
    width: 14px;
    height: 14px;
}

/* ---------- Dark section shell (matches the customer dashboard's
   welcome-card gradient + glow span, reused here as a full-section bg) ---------- */

.landing-section--dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1e1b4b 0%, #0b0a1f 100%);
}
.landing-section--dark::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 96px 96px;
    -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 42%, transparent 58%, black 100%);
    mask-image: linear-gradient(90deg, black 0%, transparent 42%, transparent 58%, black 100%);
    pointer-events: none;
}
.landing-section__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.landing-section__glow--teal {
    top: -110px;
    right: -90px;
    width: 320px;
    height: 320px;
    background: #14b8a6;
    opacity: .35;
}
.landing-section__glow--violet {
    left: -100px;
    top: 90px;
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    opacity: .3;
}
.landing-section--dark .landing-container {
    position: relative;
    z-index: 1;
}

/* ---------- Value cards ---------- */

.landing-value__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.landing-value__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 22px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.landing-value__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-soft);
}
.landing-section--dark .landing-value__card {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
}
.landing-section--dark .landing-value__card:hover {
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, .5);
}
.landing-value__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--accent);
    margin-bottom: 16px;
}
.landing-section--dark .landing-value__icon {
    background: rgba(255, 255, 255, .12);
    color: #c4b5fd;
}
.landing-value__icon svg {
    width: 22px;
    height: 22px;
}
.landing-value__card h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
}
.landing-section--dark .landing-value__card h3 {
    color: #fff;
}
.landing-value__card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}
.landing-section--dark .landing-value__card p {
    color: rgba(255, 255, 255, .68);
}

/* ---------- Feature showcase (bento) ---------- */

.landing-feature__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}
.landing-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.bento-card {
    background: linear-gradient(160deg, var(--surface-soft) 0%, #e8e2fa 100%);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
}
.bento-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}
.bento-card__text h3 {
    font-size: clamp(22px, 2.6vw, 28px);
    margin-bottom: 12px;
}
.bento-card__text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 380px;
}
a.bento-card__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--button-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
    transition: transform .2s ease, box-shadow .2s ease;
}
@media (min-width: 900px) {
    a.bento-card__cta {
        display: none;
    }
}
.bento-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px -12px rgba(124, 58, 237, .5);
}
.bento-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
}

/* Shared placeholder UI mock shell */

.feat-mock {
    width: 100%;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
}

/* Chart mock (Overview) */

.feat-mock__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}
.feat-mock__brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--heading);
}
.feat-mock__brand svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}
.feat-mock__export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}
.feat-mock__export svg {
    width: 14px;
    height: 14px;
}
.feat-mock__export:hover {
    border-color: var(--accent-soft);
    color: var(--accent);
}
.feat-mock__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.feat-mock__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}
.feat-mock__stat>div {
    min-width: 0;
}
.feat-mock__stat:hover {
    transform: translateY(-3px);
}
.feat-mock__stat-icon {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -6px rgba(15, 23, 42, .3);
}
.feat-mock__stat-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    color: #fff;
}
.feat-mock__stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}
.feat-mock__stat span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}
.feat-mock__stat--purple {
    background: rgba(124, 58, 237, .09);
    border-color: rgba(124, 58, 237, .16);
}
.feat-mock__stat--purple .feat-mock__stat-icon {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
.feat-mock__stat--purple strong {
    color: var(--accent);
}
.feat-mock__stat--green {
    background: rgba(34, 197, 94, .09);
    border-color: rgba(34, 197, 94, .16);
}
.feat-mock__stat--green .feat-mock__stat-icon {
    background: linear-gradient(135deg, #4ade80, #16a34a);
}
.feat-mock__stat--green strong {
    color: var(--green);
}
.feat-mock__stat--amber {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .2);
}
.feat-mock__stat--amber .feat-mock__stat-icon {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}
.feat-mock__stat--amber strong {
    color: #b45309;
}
.feat-mock__stat--teal {
    background: rgba(20, 184, 166, .1);
    border-color: rgba(20, 184, 166, .2);
}
.feat-mock__stat--teal .feat-mock__stat-icon {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
}
.feat-mock__stat--teal strong {
    color: #0d9488;
}

/* Shared list head + live badge (Renewals, Real-time, Analytics) */

.feat-mock__list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.feat-mock__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}
.feat-mock__badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
    animation: hero-live-pulse 2s ease-in-out infinite;
}
.feat-mock__badge svg {
    width: 12px;
    height: 12px;
}

/* Axis chart mock (Analytics) */

.feat-mock__axis-chart {
    width: 100%;
    height: auto;
    margin-top: 4px;
}
.feat-mock__axis-chart .grid {
    stroke: var(--border);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}
.feat-mock__axis-chart .axis-line {
    stroke: var(--border);
    stroke-width: 1.2;
}
.feat-mock__axis-chart .axis-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 7.5px;
    font-weight: 600;
    fill: var(--text-muted);
    text-anchor: middle;
}
.feat-mock__axis-chart .axis-label--y {
    text-anchor: end;
}
.feat-mock__axis-chart .axis-label--end {
    text-anchor: end;
}
.feat-mock__axis-chart .area {
    fill: var(--accent-soft);
    opacity: .18;
}
.feat-mock__axis-chart .line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feat-mock__axis-chart .dot {
    fill: var(--accent);
    stroke: var(--surface);
    stroke-width: 2;
}

/* Real-time mock */

.feat-mock__rt-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.feat-mock__rt-value {
    text-align: right;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}
.feat-mock__rt-value span {
    display: block;
    margin-top: 4px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Shared label + value row (Real-time page list) */

.feat-mock__renewal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    border-top: 1px solid var(--border);
}
.feat-mock__renewal-row:first-of-type {
    border-top: none;
}
.feat-mock__pill {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}
.feat-mock__pill--ok {
    background: var(--surface-soft);
    color: var(--accent);
}

/* Sources mock */

.feat-mock__source-bar {
    display: flex;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    margin: 6px 0 18px;
}
.feat-mock__source-bar span {
    display: block;
    height: 100%;
}
.feat-mock__source-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.feat-mock__source-legend div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
}
.feat-mock__source-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.feat-mock__source-count {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-muted);
}
.feat-mock__source-legend b {
    min-width: 34px;
    text-align: right;
    font-weight: 700;
    color: var(--heading);
}

/* Report mock: fanned stack, only the front card shows content */

.feat-mock__report-stack {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.feat-mock__report-back {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
}
.feat-mock__report-back--1 {
    z-index: 3;
    opacity: .8;
    transform: translateY(16px) scale(.97);
}
.feat-mock__report-back--2 {
    z-index: 2;
    opacity: .6;
    transform: translateY(32px) scale(.94);
}
.feat-mock__report-back--3 {
    z-index: 1;
    opacity: .4;
    transform: translateY(48px) scale(.91);
}
.feat-mock__report-back--4 {
    z-index: 0;
    opacity: .22;
    transform: translateY(64px) scale(.88);
}
.feat-mock--report {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none;
}
.feat-mock__report-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--accent);
}
.feat-mock__report-icon svg {
    width: 22px;
    height: 22px;
}
.feat-mock__report-info {
    flex: 1;
    min-width: 0;
}
.feat-mock__report-info strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feat-mock__report-info p {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Best time mock (Timing) — same dark hero card used inside the customer
   portal for "Best Time to Act", reused here so the feature preview matches
   the real dashboard exactly. */

.feat-mock--besttime {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 18px;
    padding: 30px;
    background: linear-gradient(to bottom right, #1e1b4b 0%, #0b0a1f 100%);
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.feat-mock--besttime::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 0%, transparent 78%);
    mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 0%, transparent 78%);
    z-index: 0;
    pointer-events: none;
}
.feat-mock--besttime .customer-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}
.feat-mock--besttime .customer-hero__glow--teal {
    top: -120px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: #14b8a6;
    opacity: .45;
}
.feat-mock--besttime .customer-hero__glow--violet {
    left: -110px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    opacity: .4;
}
.feat-mock--besttime .customer-card__header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.feat-mock--besttime .customer-card__title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-mock--besttime .customer-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .14);
    color: #fff;
}
.feat-mock--besttime .customer-card__icon svg {
    width: 18px;
    height: 18px;
}
.feat-mock--besttime .customer-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.feat-mock--besttime .customer-card__subtitle {
    font-size: 12px;
    color: #b8b6d9;
    margin: 2px 0 0;
}
.feat-mock--besttime .customer-best-time {
    position: relative;
    z-index: 1;
}
.feat-mock--besttime .customer-best-time__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.feat-mock--besttime .customer-best-time__day {
    font-size: 13px;
    font-weight: 600;
    color: #c9c6e8;
    margin-top: 6px;
}
.feat-mock--besttime .customer-best-time__note {
    font-size: 12.5px;
    line-height: 1.55;
    color: #b8b6d9;
    margin-top: 14px;
}
.feat-mock--besttime .customer-best-time__secondary {
    font-size: 11.5px;
    line-height: 1.5;
    color: #9f9cc4;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.feat-mock--besttime .customer-best-time__secondary strong {
    color: #d9d7ee;
}

/* ---------- Steps ---------- */

.landing-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.landing-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
}
.landing-step__num {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--button-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 16px;
}
.landing-step__num svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
}
.landing-step h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
}
.landing-step p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ---------- Final CTA ---------- */

.landing-cta {
    border-radius: 28px;
    background: linear-gradient(to bottom right, #1e1b4b 0%, #0b0a1f 100%);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.landing-cta::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 96px 96px;
    -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 42%, transparent 58%, black 100%);
    mask-image: linear-gradient(90deg, black 0%, transparent 42%, transparent 58%, black 100%);
    pointer-events: none;
}
.landing-cta h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(26px, 3.4vw, 38px);
}
.landing-cta p {
    position: relative;
    z-index: 1;
    margin: 14px auto 30px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    max-width: 480px;
}
.landing-cta .landing-btn--primary {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--accent);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, .4);
}
.landing-cta .landing-btn--primary:hover {
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, .5);
}

/* ---------- Footer ---------- */

.landing-footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--border);
}
.landing-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.landing-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.landing-footer__brand img {
    height: 42px;
}
.landing-footer__tagline {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 6px;
}
.landing-footer__links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}
.landing-footer__links a:hover {
    color: var(--accent);
}
.landing-footer__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--text-faint);
    text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .landing-benefits {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .landing-benefits__visual {
        order: -1;
        padding: 0 0 60px;
        max-width: 440px;
        margin: 0 auto;
    }
    .benefits-chip {
        right: 8px;
        bottom: -16px;
    }
    .landing-value__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .landing-steps__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 899px) {
    .reveal, .reveal-stagger>*, .landing-benefits__visual, .landing-benefits__text {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .landing-section {
        padding: 48px 0;
    }
    .landing-section--tight {
        padding: 36px 0;
    }
    .landing-nav__links {
        display: none;
    }
    .landing-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--surface-soft);
        border: 1px solid var(--border);
        color: var(--text);
        cursor: pointer;
    }
    .landing-mobile-toggle svg {
        width: 20px;
        height: 20px;
    }
    .landing-mobile-menu {
        display: none;
        flex-direction: column;
        gap: 4px;
        margin-top: 10px;
        padding: 16px;
        border-radius: 16px;
        background: var(--surface);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
    }
    .landing-mobile-menu.is-open {
        display: flex;
    }
    .landing-mobile-menu a {
        padding: 10px 8px;
        border-radius: 8px;
        font-weight: 600;
        color: var(--text);
        font-size: 15px;
    }
    .landing-mobile-menu a:hover {
        background: var(--surface-soft);
    }
    .landing-hero {
        padding: 130px 0 5px;
    }
    .landing-hero__badge {
        display: none;
    }
    .landing-hero__strip {
        display: none;
    }
    .hero-dash-pin {
        display: none;
    }
    .landing-value__grid {
        grid-template-columns: 1fr;
    }
    .landing-bento {
        grid-template-columns: 1fr;
    }
    .bento-card--wide {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .bento-card {
        padding: 28px;
    }
    .bento-card__text p {
        max-width: none;
    }
    .feat-mock__stats {
        grid-template-columns: 1fr;
    }
    .landing-cta {
        padding: 48px 24px;
    }
    .landing-footer__top {
        flex-direction: column;
        align-items: flex-start;
    }
}