﻿
:root {
    --primary: #ad57a2;
    --primary-dark: #482343;
    --primary-soft: #f6e8f4;
    --ink: #111111;
    --muted: #5f6368;
    --line: rgba(17, 17, 17, 0.08);
    --white: #ffffff;
    --bg: #fafafa;
    --card: rgba(255,255,255,0.72);
    --shadow: 0 20px 50px rgba(72, 35, 67, 0.12);
    --radius: 28px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white) !important;
}

.body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}

.container_p {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(173, 87, 162, 0.18);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

    .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        box-shadow: 0 0 0 6px rgba(173,87,162,0.08);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 30px rgba(72, 35, 67, 0.22);
}

.btn-secondary {
    color: var(--primary-dark) !important;
    background: rgba(255,255,255,0.72);
    border-color: rgba(72, 35, 67, 0.12);
    backdrop-filter: blur(12px);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17,17,17,0.06);
}

.nav_p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 18px;
}

.brand_p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 15px;
    color: var(--ink);
}

.brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
}

.hero_p {
    position: relative;
    padding: 0 0 46px;
    background: radial-gradient(circle at 15% 20%, rgba(173,87,162,0.16), transparent 24%), radial-gradient(circle at 85% 20%, rgba(72,35,67,0.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #fbf7fb 54%, #ffffff 100%);
    overflow: hidden;
}

    .hero_p::before,
    .hero_p::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        pointer-events: none;
    }

    .hero_p::before {
        width: 320px;
        height: 320px;
        right: -80px;
        top: 60px;
        background: rgba(173,87,162,0.12);
    }

    .hero_p::after {
        width: 260px;
        height: 260px;
        left: -80px;
        bottom: 60px;
        background: rgba(72,35,67,0.08);
    }

.hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero_p h1 {
    margin: 18px auto 18px;
    max-width: 980px;
    font-size: clamp(34px, 6.7vw, 80px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero_p .sub {
    max-width: 880px;
    margin: 0 auto;
    font-size: clamp(13px, 2vw, 20px);
    color: var(--muted);
    line-height: 1.55;
}

.hero_p .pitch {
    margin: 26px auto 0;
    max-width: 760px;
    font-size: clamp(10px, 1.5vw, 17px);
    color: var(--ink);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-visual-wrap {
    margin-top: 52px;
    position: relative;
}

.device-stage {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.66));
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

    .device-stage::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 180px;
        background: linear-gradient(180deg, rgba(173,87,162,0), rgba(173,87,162,0.05));
        pointer-events: none;
    }

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: stretch;
}

.road-panel,
.dashboard-panel {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,0.06);
    background: linear-gradient(180deg, #f4e8f3 0%, #fff 18%, #fbfbfb 100%);
}

.road-panel {
    padding: 24px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.lane-scene {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(173,87,162,0.2), transparent 40%), linear-gradient(180deg, #f6d9f2 0%, #f2f4f8 24%, #c5c9d1 55%, #9da3af 100%);
    overflow: hidden;
}

.lane-ground {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 92%;
    height: 78%;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(180deg, #b8bec8 0%, #8c93a2 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

    .lane-ground::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(to bottom, transparent 0 42px, rgba(255,255,255,0.44) 42px 52px);
        opacity: 0.45;
    }

    .lane-ground::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 4%;
        width: 10px;
        height: 90%;
        border-radius: 999px;
        background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.88) 0 24px, transparent 24px 50px);
        opacity: 0.82;
    }

.car {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 68px;
    width: 220px;
    height: 104px;
    border-radius: 32px 32px 26px 26px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 32%, #d7d7d7 100%);
    box-shadow: 0 22px 40px rgba(0,0,0,0.18);
    z-index: 5;
}

    .car::before {
        content: "";
        position: absolute;
        inset: 14px 34px 44px;
        border-radius: 22px 22px 12px 12px;
        background: linear-gradient(180deg, #3b4350, #7b8491);
        opacity: 0.88;
    }

    .car::after {
        content: "";
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 14px;
        height: 16px;
        border-radius: 99px;
        background: linear-gradient(90deg, #262626 0 18%, #f3f3f3 18% 82%, #262626 82% 100%);
    }

.wheel, .wheel::before {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f1f1f;
    border: 7px solid #b8b8b8;
    bottom: -10px;
    content: "";
}

    .wheel.left {
        left: 26px;
    }

    .wheel.right {
        right: 26px;
    }

.camera-pole {
    position: absolute;
    right: 108px;
    bottom: 118px;
    width: 30px;
    height: 220px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 18px 28px rgba(72,35,67,0.2);
    z-index: 4;
}

.camera-head {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.barrier-pole {
    position: absolute;
    left: 115px;
    bottom: 108px;
    width: 22px;
    height: 100px;
    border-radius: 14px;
    background: #2c2c2c;
    z-index: 4;
}

.barrier-arm {
    position: absolute;
    left: 118px;
    bottom: 188px;
    width: 190px;
    height: 10px;
    border-radius: 99px;
    background: repeating-linear-gradient(90deg, #ffffff 0 18px, #ef4444 18px 36px);
    transform: rotate(-18deg);
    transform-origin: left center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.14);
    z-index: 4;
}

.scan-box {
    position: absolute;
    right: 170px;
    bottom: 154px;
    width: 170px;
    height: 94px;
    border-radius: 20px;
    border: 2px dashed rgba(173,87,162,0.76);
    box-shadow: 0 0 0 14px rgba(173,87,162,0.06);
    z-index: 4;
    animation: pulse 2.8s infinite ease-in-out;
}

.plate-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 126px;
    z-index: 6;
    background: rgba(255,255,255,0.96);
    border: 2px solid rgba(173,87,162,0.28);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    color: var(--primary-dark);
    box-shadow: 0 12px 26px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

.float-card {
    position: absolute;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(0,0,0,0.08);
    backdrop-filter: blur(16px);
    z-index: 8;
}

.float-left {
    left: 26px;
    top: 22px;
    padding: 18px;
    width: 220px;
}

.float-right {
    right: 20px;
    top: 24px;
    width: 210px;
    padding: 16px;
}

.float-bottom {
    right: 26px;
    bottom: 18px;
    width: 250px;
    padding: 16px;
}

.mini-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.mini-number {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.mini-text {
    font-size: 11px;
    color: var(--muted);
}

.dashboard-panel {
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 16px;
}

.dash-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dash-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(248,248,250,0.9);
    border: 1px solid rgba(17,17,17,0.05);
}

    .dash-card strong {
        display: block;
        font-size: 24px;
        line-height: 1;
        margin-top: 6px;
        margin-bottom: 6px;
    }

.dash-graph {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(173,87,162,0.08), rgba(72,35,67,0.03));
    border: 1px solid rgba(17,17,17,0.05);
}

.graph-line {
    width: 100%;
    height: 150px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1)), repeating-linear-gradient(to top, rgba(17,17,17,0.06) 0 1px, transparent 1px 34px), repeating-linear-gradient(to right, rgba(17,17,17,0.04) 0 1px, transparent 1px 56px);
    position: relative;
    overflow: hidden;
}

    .graph-line::before {
        content: "";
        position: absolute;
        inset: 24px 14px 18px 14px;
        background: linear-gradient(180deg, rgba(173,87,162,0.2), rgba(173,87,162,0));
        clip-path: polygon(0% 86%, 12% 76%, 24% 74%, 36% 58%, 50% 62%, 64% 42%, 78% 48%, 90% 24%, 100% 8%, 100% 100%, 0% 100%);
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .graph-line::after {
        content: "";
        position: absolute;
        inset: 20px 14px 30px 14px;
        background: linear-gradient(90deg, transparent 0%, transparent 2%, var(--primary-dark) 2%, var(--primary) 100%);
        clip-path: polygon(0% 86%, 12% 76%, 24% 74%, 36% 58%, 50% 62%, 64% 42%, 78% 48%, 90% 24%, 100% 8%, 100% 14%, 90% 30%, 78% 54%, 64% 48%, 50% 68%, 36% 64%, 24% 80%, 12% 82%, 0% 92%);
        opacity: 0.9;
    }

.dash-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(173,87,162,0.1);
    color: var(--primary-dark);
}

.stats-strip {
    padding: 10px 0 34px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

    .stat-card strong {
        display: block;
        font-size: clamp(20px, 2.8vw, 32px);
        line-height: 1;
        margin-bottom: 8px;
        color: var(--primary-dark);
    }



.section-head {
    text-align: center;
    max-width: 1920px;
    margin: 0 auto 46px;
    padding: 100px;
    width: 100vw; /* full viewport width */
    left: 50%;
    margin-left: -50vw; /* shift left by half viewport to align edges */
    margin-right: -50vw; /* keep right edge aligned */
    box-sizing: border-box; /* keep padding inside viewport width */
    max-width: none;
    align-items: center;
    display: flex;
    justify-content:center;
}

    .section-head h2 {
        margin: -10px 0 14px;
        font-size: clamp(27px, 4.5vw, 55px);
        line-height: 1.02;
        letter-spacing: -1px;
        /*margin-bottom: 30px;*/
    }

    .section-head p {
        margin: 15px;
        font-size: 17px;
        color: var(--muted);
        padding:0 150px 0;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 28px 24px;
    border-radius: 26px;
    background: var(--card);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 12px 26px rgba(0,0,0,0.04);
    backdrop-filter: blur(14px);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: linear-gradient(135deg, rgba(173,87,162,0.18), rgba(72,35,67,0.08));
    margin-bottom: 18px;
}

.feature-card h3 {
    margin: 0px 10px 10px;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.feature-card p {
    margin: 0;
    color: #000;
    font-size: 16px;
}

.story-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.story-copy,
.story-flow {
    border-radius: 32px;
    padding: 34px;
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 16px 32px rgba(0,0,0,0.04);
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(12px);
}

    .story-copy h3,
    .story-flow h3 {
        margin: 0 0 14px;
        font-size: 30px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .story-copy p {
        margin: 0 0 18px;
        font-size: 15px;
        color: var(--muted);
    }

.bullet-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.bullet {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bullet-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(173,87,162,0.18), rgba(72,35,67,0.12));
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 1px;
}

.flow-steps {
    display: grid;
    gap: 14px;
}

.flow-step {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #faf8fb);
    border: 1px solid rgba(17,17,17,0.05);
}

    .flow-step strong {
        display: block;
        font-size: 12px;
        margin-bottom: 8px;
        color: var(--primary-dark);
    }

.revenue-stage {
    background: linear-gradient(180deg, #ffffff 0%, #faf6fb 100%);
    padding-bottom: 100px;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.revenue-card {
    border-radius: 28px;
    padding: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 14px 30px rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
}

    .revenue-card h3 {
        margin: 10px 10px 10px;
        font-size: 22px;
        letter-spacing: -0.8px;
    }

    .revenue-card p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
    }

    .revenue-card .feature-icon {
        margin-bottom: 20px;
    }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.audience-card {
    padding: 14px 10px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(17,17,17,0.06);
    background: rgba(255,255,255,0.86);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

    .audience-card .icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .audience-card .icon img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: -10px; /* remove inline spacing if any */
            width: 160px;
        }

.cred-section {
    background: linear-gradient(180deg, #fcf8fb 0%, #ffffff 100%);
    padding-top: 25px;
}

.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.cred-card {
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(17,17,17,0.06);
    background: rgba(255,255,255,0.86);
    box-shadow: 0 16px 30px rgba(0,0,0,0.04);
}

    .cred-card h3 {
        margin: 16px 0 12px;
        font-size: 27px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .cred-card p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
    }

.cred-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.metric {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #faf8fb);
    border: 1px solid rgba(17,17,17,0.05);
}

    .metric strong {
        display: block;
        margin-bottom: 8px;
        font-size: 20px;
        color: var(--primary-dark);
    }

.video-shell {
    border-radius: 34px;
    padding: 28px;
    /*background: linear-gradient(135deg, var(--primary-dark) 0%, #2d162a 100%);*/
    color: var(--white);
    box-shadow: 0 24px 50px rgba(72,35,67,0.24);
}

.video-frame {
    margin-top: 20px;
    min-height: 420px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 32%), linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
}

.play {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 30px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 18px 30px rgba(0,0,0,0.16);
}

.cta-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    padding: 24px;
    border-radius: 34px;
    background: linear-gradient(180deg, #ffffff, #faf7fb);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-copy,
.form-shell {
    padding: 18px;
}

    .cta-copy h3 {
        margin: 18px 0 14px;
        font-size: clamp(34px, 3.6vw, 45px);
        line-height: 1.02;
        letter-spacing: -1.6px;
    }

    .cta-copy p {
        margin: 0 0 18px;
        color: var(--muted);
        font-size: 14px;
    }

.form-shell {
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 12px 26px rgba(0,0,0,0.04);
}

form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

    .field.full {
        grid-column: 1 / -1;
    }

label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
}

input, select, textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(17,17,17,0.1);
    background: #fff;
    font-size: 10px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    input:focus, select:focus, textarea:focus {
        border-color: rgba(173,87,162,0.65);
        box-shadow: 0 0 0 4px rgba(173,87,162,0.12);
    }

footer {
    padding: 28px 0 44px;
    color: var(--muted);
    border-top: 1px solid rgba(17,17,17,0.06);
    background: #fff;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.88;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .showcase-grid,
    .story-panel,
    .cred-grid,
    .cta-shell {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .revenue-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .nav_p {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 0;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-grid,
    .revenue-grid,
    .stats-grid,
    .form-grid,
    .dash-top,
    .dash-bottom,
    .cred-metrics {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .device-stage {
        padding: 16px;
    }

    .road-panel, .dashboard-panel {
        min-height: auto;
    }

    /*.lane-scene {
        min-height: 420px;
    }*/

    .video-frame {
        min-height: 300px;
    }

    /*section.block {
        padding: 2px 0;
    }*/

    .cta-shell {
        padding: 14px;
    }

    .section-head {
        max-height: 50vw;
    }

    .logo_park {
        width: auto;
        max-width: 144px !important;
        height: auto !important;
    }

    .logo_ori {
        width: auto;
        max-width: 132px !important;
        height: auto;
        margin-top: 1px;
    }

    .audience-card .icon img {
        width: 80px;
    }

    .audience-card strong {
        font-size: 10px;
        display:block;
        line-height:1.2;
    }
}

#body section, #body2 .body section {
     margin-bottom: 0rem !important; 
     padding-bottom: 5rem;
}

a:hover {
    color: #ad57a2 !important;
}

.logo_park {
    max-width: 11vw;
    height: fit-content;
}

.logo_ori {
    max-width: 10vw;
}

.btncontact {
    width: 100%;
}

.btn{
    line-height: 0px;
}

.required-alert {
    font-size: 12px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers slideshow horizontally */
    gap: 18px;
    position: relative;
}

.slideshow-container {
    /* make container span the viewport width */
    width: 100vw !important;
    height: 30vw;
    position: relative;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    /* preserve internal frame behavior */
    overflow: hidden;
    background: #120103;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

/* Use aspect-ratio when available, otherwise fallback to padding-top trick */
@supports (aspect-ratio: 16/9) {
    .slideshow-container {
        aspect-ratio: 16 / 9; /* no explicit height required */
    }
}

@supports not (aspect-ratio: 16/9) {
    .slideshow-container::before {
        content: "";
        display: block;
        padding-top: 56.25%; /* 16:9 fallback */
    }
}

/* Slides fill the slideshow frame (absolute positioned) */
.slide {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateX(100%); /* start off-screen to the right */
    transition: transform .65s ease-out, opacity .35s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slide-one {
    background-image: url('../img/slide/LPR.png?t=1');
}

.slide-two {
    background-image: url('../img/slide/Revenue.png?t=1');
}

.slide-three {
    background-image: url('../img/slide/Best Fit.png?t=1');
}


/* Slide heading styling */
.slide .slide-content {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 4vw, 36px);
    opacity: 0;
    transform: translateY(8px);
    transition: transform .35s .15s, opacity .35s .15s;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
    padding: 0 16px;
}

/* Active / exit states */
.slide.active {
    transform: translateX(0);
    z-index: 2;
}

    .slide.active .slide-content {
        opacity: 1;
        transform: translateY(0);
        transition: all .5s .5s;
    }

.slide.out-left {
    transform: translateX(-100%);
}

.slide-content h1, .slide-content p {
    color: #fff !important;
}

/* Small screens adjust aspect ratio via supports fallback */
@media (max-width: 760px) {
    .slideshow-container { /* no explicit height set */
        height: 85vw;
    }

    .slide.slide-content {
        font-size: clamp(16px, 4.5vw, 28px);
    }

    .hidden-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block; /* or flex/inline-block */
    }
}
