:root {
    --navy: #103767;
    --ink: #142b46;
    --blue: #1261c9;
    --gold: #e5af2d;
    --green: #158158;
    --muted: #5a6c80;
    --line: #dce4ec;
    --pale: #f3f7fb
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    margin: 0;
    font-family: Inter,'Segoe UI',Arial,sans-serif;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    background: white
}

a {
    color: inherit;
    text-decoration: none
}

button, input, textarea {
    font: inherit
}

button, a, input, textarea {
    -webkit-tap-highlight-color: transparent
}

button, a {
    touch-action: manipulation
}

    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
        outline: 3px solid var(--gold);
        outline-offset: 4px
    }

button {
    cursor: pointer
}

.symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.container {
    width: min(1200px,calc(100% - 80px));
    margin: auto
}

.skip {
    position: fixed;
    top: -100px;
    left: 20px;
    background: white;
    padding: 12px;
    z-index: 50
}

    .skip:focus {
        top: 10px
    }

.header {
    height: 88px;
    background: rgba(255,255,255,.97);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #e9eef4
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-weight: 800;
    font-size: 27px;
    letter-spacing: -1.1px;
    line-height: 1
}

    .brand img {
        width: 70px;
        height: 70px;
        object-fit: contain
    }

    .brand > span > span {
        color: #bd8a10
    }

.nav nav {
    display: flex;
    gap: 27px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 600
}

    .nav nav a:hover, .text-link:hover {
        color: var(--blue)
    }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: white;
    border-radius: 7px;
    padding: 15px 23px;
    font-size: 14px;
    font-weight: 650;
    transition: background .2s,transform .2s
}

    .button:hover {
        background: #1a518b;
        transform: translateY(-2px)
    }

.nav-cta {
    padding: 12px 18px
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--navy)
}

.hero {
    background: linear-gradient(120deg,#f7faff,#edf4fb);
    padding: 65px 0 0;
    overflow: hidden
}

.hero-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 48px
}

.eyebrow {
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1.8px;
    color: #466381;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px
}

    .eyebrow > span {
        width: 7px;
        height: 7px;
        background: var(--green);
        border-radius: 50%
    }

h1, h2, h3, h4, p {
    margin: 0
}

h1 {
    font-size: clamp(42px,4.4vw,62px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -2.8px
}

    h1 > span {
        color: var(--blue)
    }

.hero-copy {
    padding-top: 28px
}

    .hero-copy p {
        font-size: 18px;
        line-height: 1.75;
        max-width: 480px;
        color: var(--muted)
    }

.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 25px
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700
}

.product-stage {
    padding: 13px 13px 0;
    border: 1px solid #d7e4f0;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: #e5edf5;
    box-shadow: 0 20px 50px #163c6314
}

.dashboard {
    border: 1px solid #d1dbe6;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: #f3f5f8;
    text-align: left
}

.dashbar {
    display: flex;
    align-items: center;
    height: 62px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0 20px;
    gap: 15px
}

    .dashbar .brand {
        font-size: 20px;
        letter-spacing: -.7px
    }

        .dashbar .brand img {
            width: 32px;
            height: 32px
        }

.demo-label {
    margin-left: auto;
    font-size: 12px;
    color: var(--muted)
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7effe;
    color: var(--blue);
    font-size: 12px;
    display: grid;
    place-items: center;
    font-weight: 700
}

.dashbody {
    display: flex
}

    .dashbody aside {
        width: 190px;
        flex-shrink: 0;
        background: #1d2c3e;
        color: #dce5ef;
        padding: 18px 12px
    }

        .dashbody aside small {
            font-size: 9px;
            letter-spacing: 1.2px;
            color: #d7b557;
            display: block;
            margin: 13px 7px 6px
        }

            .dashbody aside small:first-child {
                margin-top: 0
            }

.sideitem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    padding: 7px;
    border-radius: 4px;
    white-space: nowrap
}

    .sideitem .icon {
        width: 14px;
        height: 14px
    }

    .sideitem.selected {
        background: #35434c;
        border-left: 2px solid var(--gold);
        color: #fff
    }

.dashmain {
    padding: 24px;
    width: calc(100% - 190px)
}

.dashintro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px
}

    .dashintro small {
        font-size: 9px;
        letter-spacing: 1.3px;
        color: #6b7f94
    }

    .dashintro h3 {
        font-size: 20px;
        letter-spacing: -.4px
    }

    .dashintro > span {
        font-size: 10px;
        color: #708297
    }

.dashgrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px
}

.dashcard {
    background: white;
    border: 1px solid #e0e5eb;
    border-radius: 7px;
    padding: 15px;
    min-height: 184px;
    box-shadow: 0 2px 3px #112e4910
}

    .dashcard h4 {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 13px
    }

    .dashcard.wide {
        grid-column: span 2
    }

.allclear {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 23px 0;
    text-align: center;
    gap: 7px
}

    .allclear > span {
        display: grid;
        place-items: center;
        background: #e2f5eb;
        border-radius: 50%;
        width: 33px;
        height: 33px;
        color: var(--green)
    }

    .allclear > b {
        font-size: 12px;
        font-weight: 600
    }

    .allclear p {
        font-size: 10px;
        color: #7a8b9e
    }

.request {
    background: #f1f6ff;
    padding: 9px 10px;
    margin-top: 8px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1.5
}

    .request > b, .request > span {
        display: block
    }

    .request > span {
        color: #75839a
    }

    .request > div {
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
        gap: 4px
    }

    .request strong {
        font-size: 9px;
        font-weight: 500
    }

    .request em {
        font-style: normal;
        color: #95701b;
        font-size: 8px
    }

.quick {
    display: grid;
    gap: 7px
}

    .quick > div {
        font-size: 10px;
        border-radius: 4px;
        background: #edf3fb;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
        color: #244c80
    }

        .quick > div:first-child {
            background: #235dc1;
            color: #fff
        }

    .quick .icon {
        width: 13px;
        height: 13px
    }

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 7px
}

    .stats > div {
        background: #eff5ff;
        border-radius: 5px;
        padding: 10px 8px;
        display: flex;
        flex-direction: column
    }

        .stats > div:nth-child(2) {
            background: #edf8f2
        }

        .stats > div:nth-child(3) {
            background: #f4f6f8
        }

        .stats > div:nth-child(4) {
            background: #fffae9
        }

    .stats small {
        font-size: 8px;
        color: #5b728b
    }

    .stats b {
        font-size: 23px;
        font-weight: 500;
        margin: 3px 0;
        color: var(--blue)
    }

    .stats > div:nth-child(2) b {
        color: var(--green)
    }

    .stats span {
        font-size: 8px;
        color: #7890ab
    }

.attention {
    display: flex;
    flex-direction: column;
    background: #fff7f2;
    border: 1px solid #f5e7da;
    border-radius: 5px;
    padding: 9px 11px;
    margin-top: 10px;
    font-size: 9px;
    color: #866043
}

    .attention b {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 3px
    }

.dashfoot {
    font-size: 9px;
    color: #8190a0;
    text-align: right;
    margin-top: 12px
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 14px;
    color: #526981
}

    .hero-bottom > span {
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 700
    }

    .hero-bottom i {
        font-style: normal;
        color: #a1b0bf;
        margin: 0 17px
    }

.section {
    padding-top: 100px;
    padding-bottom: 100px
}

.section-heading {
    max-width: 700px;
    margin-bottom: 44px
}

h2 {
    font-size: clamp(31px,3vw,43px);
    line-height: 1.16;
    letter-spacing: -1.5px;
    font-weight: 700
}

.section-heading p {
    color: var(--muted);
    margin-top: 18px;
    max-width: 570px
}

.audiences {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

    .audiences > article {
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 30px 27px 0;
        overflow: hidden;
        background: white
    }

.number {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #6b7b8d;
    font-weight: 700
}

.audiences h3 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -.7px;
    margin: 20px 0 15px
}

.audiences p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7
}

.mini-app {
    border: 1px solid #dce4ee;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    padding: 18px;
    margin: 27px 0 0;
    background: #fafcff;
    box-shadow: 0 10px 25px #1939570a
}

.mini-title {
    margin-bottom: 20px
}

    .mini-title .brand {
        font-size: 17px;
        letter-spacing: -.5px
    }

    .mini-title img {
        width: 29px;
        height: 29px
    }

.mini-app > b {
    font-size: 11px
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 12px
}

    .app-grid > div {
        background: white;
        border: 1px solid #e3eaf2;
        border-radius: 6px;
        padding: 13px 5px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 7px;
        color: var(--blue)
    }

    .app-grid span {
        font-size: 10px;
        color: var(--ink)
    }

.workflow {
    margin: 28px 0 25px;
    display: grid;
    gap: 13px
}

    .workflow > div {
        display: flex;
        gap: 12px;
        background: #f4f7fb;
        padding: 13px 10px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 650;
        align-items: center
    }

    .workflow .icon {
        width: 17px;
        color: var(--blue)
    }

    .workflow small {
        font-size: 9px;
        display: block;
        color: #70839a;
        font-weight: 400;
        margin-top: 4px
    }

.arrival {
    background: #f2f7f5;
    border: 1px solid #e0ece6;
    border-radius: 8px;
    margin: 27px 0 24px;
    padding: 18px;
    text-align: center
}

.arrival-label {
    font-size: 9px;
    color: #607c6b;
    letter-spacing: 1.4px
}

.plate {
    font-family: monospace;
    font-size: 30px;
    font-weight: 700;
    color: #213c55;
    border: 2px solid #aebbc6;
    border-radius: 5px;
    background: white;
    width: 160px;
    max-width: 100%;
    margin: 12px auto 10px;
    letter-spacing: 2px
}

.verified {
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--green)
}

    .verified .icon {
        width: 15px
    }

.arrival p {
    font-size: 10px;
    margin-top: 10px
}

.features-section {
    padding: 90px 0;
    background: #f5f8fc;
    border-top: 1px solid #e7edf4;
    border-bottom: 1px solid #e7edf4
}

.split-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end
}

    .split-heading > p {
        max-width: 310px
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 42px 45px
}

.featureicon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid #d9e5f3;
    background: #fff;
    border-radius: 9px;
    color: var(--blue);
    margin-bottom: 20px
}

.feature h3 {
    font-size: 18px;
    font-weight: 650;
    margin-bottom: 10px;
    letter-spacing: -.3px
}

.feature p {
    font-size: 15px;
    color: var(--muted)
}

.access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

    .access > div > p {
        color: var(--muted);
        margin-top: 20px
    }

.checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0
}

    .checklist li {
        font-size: 14px;
        padding: 7px 0 7px 27px;
        position: relative
    }

        .checklist li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700
        }

.access-panel {
    border: 1px solid #dbe5ef;
    border-radius: 12px;
    padding: 28px;
    background: linear-gradient(150deg,#f4f8fe,#fff);
    box-shadow: 0 18px 50px #123c6310
}

.access-panel-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    border-bottom: 1px solid #dce5ef;
    padding-bottom: 18px;
    margin-bottom: 24px
}

    .access-panel-top span {
        margin-left: auto;
        font-size: 10px;
        color: #70839b
    }

.access-panel h3 {
    font-size: 25px;
    letter-spacing: -.7px
}

.access-panel > p {
    font-size: 13px !important;
    margin: 5px 0 22px !important
}

.entry {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #e3eaf2;
    border-radius: 7px;
    background: white;
    padding: 15px 12px;
    margin-bottom: 10px
}

.entry-avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #e9f1ff;
    border-radius: 50%;
    font-size: 11px;
    color: #396bb0
}

    .entry-avatar.guest {
        background: #e5f5ec;
        color: var(--green)
    }

.entry b {
    font-size: 12px;
    display: block
}

.entry small {
    font-size: 10px;
    color: #76859a;
    display: block
}

.entry em {
    font-size: 9px;
    margin-left: auto;
    background: #eaf7ee;
    color: #287047;
    padding: 4px 6px;
    border-radius: 4px;
    font-style: normal
}

.entry .review {
    background: #fff4db;
    color: #92732a
}

.access-note {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    margin-top: 20px;
    color: #657b93
}

.sample {
    display: block;
    font-size: 9px;
    color: #8997a5;
    margin-top: 15px
}

.trust-section {
    background: var(--navy);
    color: white;
    padding: 75px 0
}

.trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center
}

    .trust .eyebrow {
        color: #f3cf71
    }

    .trust h2 {
        font-size: 36px
    }

    .trust p {
        font-size: 15px;
        color: #c5d3e4;
        margin-top: 18px
    }

.trust-items {
    display: grid;
    gap: 25px
}

    .trust-items > div {
        display: flex;
        gap: 17px
    }

    .trust-items .icon {
        color: #ebcb79;
        margin-top: 5px
    }

    .trust-items b {
        font-size: 16px;
        font-weight: 600
    }

    .trust-items p {
        margin: 5px 0 0;
        font-size: 14px
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px
}

    .steps article {
        border-top: 1px solid var(--line);
        padding-top: 22px
    }

        .steps article > span {
            font-size: 30px;
            color: #b1bfd0;
            font-weight: 500;
            letter-spacing: -1px
        }

    .steps h3 {
        font-size: 19px;
        margin: 20px 0 10px
    }

    .steps p {
        font-size: 15px;
        color: var(--muted)
    }

.contact-section {
    background: #f1f6fc;
    padding: 85px 0
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start
}

    .contact h2 {
        font-size: 43px
    }

    .contact > div > p {
        color: var(--muted);
        margin-top: 22px;
        max-width: 400px
    }

.contact-points {
    display: grid;
    gap: 13px;
    font-size: 14px;
    margin-top: 30px
}

    .contact-points > span {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .contact-points .icon {
        color: var(--green);
        width: 17px
    }

.full-logo {
    width: 135px;
    height: auto;
    display: block;
    margin-top: 38px
}

form {
    background: white;
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 11px;
    box-shadow: 0 10px 30px #1b426b08
}

    form h3 {
        font-size: 23px;
        letter-spacing: -.6px
    }

    form > p {
        font-size: 14px;
        color: var(--muted);
        margin-top: 6px
    }

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 19px 0 6px
}

    label span {
        font-weight: 400;
        color: #7b899a
    }

input, textarea {
    border: 1px solid #d4deea;
    border-radius: 5px;
    padding: 11px 12px;
    font-size: 13px;
    width: 100%;
    background: #fff;
    color: var(--ink)
}

    input::placeholder, textarea::placeholder {
        color: #8a98a9
    }

textarea {
    resize: vertical;
    min-height: 95px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

form .button {
    width: 100%;
    margin-top: 20px
}

form .form-note {
    font-size: 11px;
    line-height: 1.6;
    margin-top: 13px
}

.form-note a {
    text-decoration: underline
}

#form-status {
    font-size: 13px
}

    #form-status:empty {
        display: none
    }

.footer-main {
    display: flex;
    gap: 35px;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 35px
}

    .footer-main > .brand {
        font-size: 24px
    }

    .footer-main p {
        font-size: 12px;
        line-height: 1.8;
        color: var(--muted)
    }

        .footer-main p span {
            font-size: 11px
        }

    .footer-main > div {
        margin-left: auto;
        display: flex;
        gap: 24px;
        font-size: 12px
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    padding-bottom: 25px;
    font-size: 11px;
    color: #78889b
}

@media(min-width:1500px) {
    .hero {
        padding-top: 75px
    }
}

@media(max-width:1100px) {
    .container {
        width: calc(100% - 48px)
    }

    .nav {
        gap: 20px
    }

        .nav nav {
            gap: 18px;
            font-size: 12px
        }

    .hero-top {
        gap: 35px
    }

    .hero-actions {
        gap: 18px
    }

    .hero-copy p {
        font-size: 16px
    }

    .button {
        padding: 13px 17px;
        gap: 12px
    }

    .dashbody aside {
        width: 160px
    }

    .dashmain {
        width: calc(100% - 160px);
        padding: 18px
    }

    .sideitem {
        font-size: 9px
    }

    .dashcard {
        padding: 11px
    }

    .audiences > article {
        padding: 25px 20px 0
    }

    .access, .contact {
        gap: 50px
    }

    .trust {
        gap: 60px
    }

    .footer-main {
        gap: 20px
    }
}

@media(max-width:800px) {
    .header {
        height: 74px
    }

    .brand {
        font-size: 24px
    }

        .brand img {
            width: 39px;
            height: 39px
        }

    .menu-toggle {
        display: block;
        margin-left: auto;
        padding: 9px;
        order: 3
    }

    .nav-cta {
        margin-left: auto;
        font-size: 12px
    }

    .nav {
        gap: 14px
    }

        .nav nav {
            display: none;
            position: absolute;
            top: 73px;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid var(--line);
            padding: 20px 24px;
            flex-direction: column;
            font-size: 16px
        }

            .nav nav.open {
                display: flex
            }

    .hero {
        padding-top: 42px
    }

    .hero-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px
    }

    h1 {
        font-size: 52px
    }

    .hero-copy {
        padding: 0
    }

        .hero-copy p {
            max-width: 600px
        }

    .hero-actions {
        margin-top: 20px
    }

    .product-stage {
        padding: 8px 8px 0
    }

    .dashbody aside {
        width: 128px;
        padding: 12px 7px
    }

    .sideitem {
        font-size: 8px;
        padding: 6px 4px;
        gap: 4px
    }

        .sideitem .icon {
            width: 11px
        }

    .dashbody aside small {
        font-size: 7px
    }

    .dashmain {
        width: calc(100% - 128px);
        padding: 14px
    }

    .dashintro h3 {
        font-size: 16px
    }

    .dashintro > span {
        display: none
    }

    .dashgrid {
        grid-template-columns: 1fr 1fr
    }

    .dashcard:nth-child(2) {
        display: none
    }

    .dashcard:nth-child(4) {
        display: none
    }

    .dashcard {
        min-height: 170px
    }

        .dashcard.wide {
            grid-column: span 2
        }

    .dashfoot {
        font-size: 8px
    }

    .hero-bottom > span {
        display: none
    }

    .hero-bottom {
        justify-content: center;
        font-size: 12px;
        padding: 18px 0
    }

    .section {
        padding-top: 65px;
        padding-bottom: 65px
    }

    .audiences {
        grid-template-columns: 1fr;
        gap: 20px
    }

        .audiences > article {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 30px;
            padding: 25px
        }

        .audiences .number {
            grid-column: 1
        }

        .audiences h3 {
            grid-column: 1;
            margin: 12px 0
        }

        .audiences > article > p {
            grid-column: 1
        }

    .mini-app, .workflow, .arrival {
        grid-column: 2;
        grid-row: 1/4;
        margin: 0
    }

    .mini-app {
        border-bottom: 1px solid #dce4ee;
        border-radius: 10px
    }

    .features-section {
        padding: 60px 0
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .split-heading {
        display: block
    }

        .split-heading > p {
            max-width: none
        }

    .access, .trust, .contact {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .trust-section {
        padding: 60px 0
    }

    .trust h2 {
        font-size: 34px
    }

    .steps {
        gap: 25px
    }

        .steps h3 {
            font-size: 17px
        }

    .contact-section {
        padding: 60px 0
    }

    .contact h2 {
        font-size: 36px
    }

    .full-logo {
        display: none
    }

    .footer-main {
        flex-wrap: wrap
    }

        .footer-main > div {
            width: 100%;
            margin-left: 0
        }

    .demo-label {
        font-size: 10px
    }

    .dashbar {
        height: 51px;
        padding: 0 12px
    }

        .dashbar .brand {
            font-size: 17px
        }

            .dashbar .brand img {
                width: 27px;
                height: 27px
            }
}

@media(max-width:480px) {
    .container {
        width: calc(100% - 36px)
    }

    .nav-cta {
        padding: 9px 12px;
        font-size: 11px;
        gap: 5px
    }

        .nav-cta .icon {
            display: none
        }

    .nav {
        gap: 7px
    }

    .brand {
        font-size: 22px
    }

        .brand img {
            width: 35px;
            height: 35px
        }

    .menu-toggle {
        padding: 7px
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 1.4px
    }

    h1 {
        font-size: 43px;
        letter-spacing: -2px
    }

    .hero-copy p {
        font-size: 15px
    }

    .hero-actions {
        gap: 17px
    }

        .hero-actions .button {
            font-size: 12px;
            padding: 12px 15px
        }

        .hero-actions .text-link {
            font-size: 11px
        }

        .hero-actions .icon {
            width: 17px
        }

    .product-stage {
        margin-left: -7px;
        margin-right: -7px;
        padding: 6px 6px 0
    }

    .dashbody aside {
        display: none
    }

    .dashmain {
        width: 100%;
        padding: 13px
    }

    .dashintro {
        margin-bottom: 12px
    }

        .dashintro small {
            font-size: 7px
        }

        .dashintro h3 {
            font-size: 16px
        }

    .dashcard h4 {
        font-size: 10px
    }

    .dashcard {
        padding: 10px;
        min-height: 150px
    }

    .allclear {
        padding: 20px 0
    }

        .allclear p {
            font-size: 9px
        }

    .request {
        padding: 7px;
        font-size: 9px
    }

        .request > div {
            flex-direction: column
        }

        .request strong {
            font-size: 8px
        }

    .dashgrid {
        gap: 8px
    }

    .stats b {
        font-size: 20px
    }

    .stats small {
        font-size: 7px
    }

    .stats span {
        font-size: 7px
    }

    .stats > div {
        padding: 9px 6px
    }

    .hero-bottom i {
        margin: 0 10px
    }

    .section-heading {
        margin-bottom: 30px
    }

    h2 {
        font-size: 31px;
        letter-spacing: -1px
    }

    .section-heading p {
        font-size: 15px
    }

    .audiences > article {
        display: block;
        padding: 24px
    }

    .audiences h3 {
        font-size: 25px
    }

    .mini-app, .workflow, .arrival {
        margin-top: 24px
    }

    .mini-app {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 27px
    }

    .feature {
        position: relative;
        padding-left: 62px
    }

    .featureicon {
        position: absolute;
        left: 0;
        top: 0;
        width: 42px;
        height: 42px
    }

    .feature h3 {
        font-size: 17px
    }

    .feature p {
        font-size: 14px
    }

    .access-panel {
        padding: 20px
    }

    .entry {
        gap: 8px;
        padding: 13px 9px
    }

        .entry small {
            font-size: 9px
        }

        .entry em {
            font-size: 8px
        }

    .access-panel-top span {
        font-size: 9px
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px
    }

        .steps h3 {
            font-size: 20px;
            margin-top: 9px
        }

    .contact h2 {
        font-size: 32px
    }

    form {
        padding: 23px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    input, textarea {
        font-size: 16px
    }

    .contact-points {
        font-size: 13px
    }

    .footer-main p {
        display: none
    }

    .footer-main > div {
        gap: 22px;
        font-size: 11px
    }

    .footer-bottom {
        font-size: 10px
    }

    .demo-label {
        font-size: 8px
    }

    .avatar {
        width: 25px;
        height: 25px;
        font-size: 9px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *, *:before, *:after {
        transition: none !important
    }
}

.legal-page {
    background: linear-gradient(#f2f7fc 0,white 370px);
    padding: 65px 0 90px
}

.legal-container {
    width: min(800px,calc(100% - 48px));
    margin: auto
}

.legal-hero {
    padding-bottom: 35px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 36px
}

    .legal-hero h1 {
        font-size: clamp(32px,4vw,46px);
        line-height: 1.15;
        letter-spacing: -1.3px
    }

    .legal-hero .effective {
        margin-top: 20px;
        font-size: 14px;
        color: var(--muted)
    }

.legal-container section + section {
    margin-top: 32px
}

.legal-container h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: -.4px;
    margin-bottom: 13px
}

.legal-container h3 {
    font-size: 18px;
    margin: 22px 0 10px
}

.legal-container p, .legal-container li, .legal-container address {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted)
}

    .legal-container p + p {
        margin-top: 13px
    }

.legal-container a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere
}

.legal-container li {
    margin: 9px 0
}

.legal-container address {
    font-style: normal
}

@media(max-width:480px) {
    .legal-page {
        padding: 40px 0 55px
    }

    .legal-container {
        width: calc(100% - 36px)
    }

    .legal-hero h1 {
        font-size: 32px
    }

    .legal-container h2 {
        font-size: 21px
    }
}
