:root {
    --blue: #0a86d9;
    --blue-deep: #0a74bf;
    --charcoal: #101317;
    --charcoal-2: #171b20;
    --surface: #ffffff;
    --surface-soft: #edf2f7;
    --text: #16202b;
    --text-muted: #5e6b7a;
    --text-light: #f8fbff;
    --line: rgba(255, 255, 255, 0.12);
    --cta: #bb1618;
    --cta-hover: #a31214;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: var(--charcoal);
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(780px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
}

.brand img {
    width: 170px;
    height: auto;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-header nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0.82rem 1.1rem;
    font-weight: 700;
    font-size: 0.94rem;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button.primary,
.nav-cta {
    background: var(--cta);
    color: white;
}

.button.primary:hover,
.nav-cta:hover {
    background: var(--cta-hover);
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--blue), var(--blue-deep));
    color: var(--text-light);
    padding: 8.5rem 0 8rem;
}

.hero-grid,
.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    max-width: 38rem;
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 4.65rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.subheadline {
    max-width: 43rem;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffd8d8;
}

.cta-row {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}




.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--charcoal);
    color: var(--text-light);
}

.section-blue {
    background: linear-gradient(180deg, var(--blue-deep), var(--blue));
    color: var(--text-light);
}

.section-intro {
    margin-bottom: 2.25rem;
}

.section-intro p:last-child,
.demo-copy p:last-child {
    color: rgba(255, 255, 255, 0.82);
}

.feature-grid {
    align-items: stretch;
}

.feature-card,
.demo-form {
    background: var(--surface);
    color: var(--text);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.feature-card p:last-child {
    color: var(--text-muted);
    margin-bottom: 0;
}

.feature-card .eyebrow {
    color: var(--blue);
}

.demo-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.demo-copy {
    padding-top: 0.25rem;
}

.demo-form {
    display: grid;
    gap: 1rem;
}

.demo-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d8e1ea;
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    font: inherit;
    color: var(--text);
    background: white;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(10, 134, 217, 0.18);
    border-color: var(--blue);
}

@media (max-width: 900px) {
    .hero-panel {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-image {
        width: min(100%, 980px);
    }

    .hero-grid,
    .two-col,
    .demo-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-header {
        position: static;
        background: var(--blue-deep);
    }

    .header-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .site-header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 1rem;
    }

    .site-header nav.nav-open {
        display: flex;
    }

    .site-header nav a {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header nav a.button.nav-cta {
        margin-top: 0.75rem;
        text-align: center;
        border-bottom: none;
        width: 100%;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-compact {
        padding: 3rem 0 4rem;
    }

    .section {
        padding: 3rem 0;
    }

    .demo-page-card {
        padding: 0.5rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .button,
    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .section {
        padding: 2.5rem 0;
    }
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    display: block;
    width: min(100%, 1220px);
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}



.hero-compact {
    padding: 8.5rem 0 6rem;
}

.page-hero-copy {
    text-align: center;
    margin: 0 auto;
}

.section-cta {
    padding-top: 4.5rem;
}

.centered-copy {
    text-align: center;
}

.centered-row {
    justify-content: center;
}

.demo-page-shell {
    max-width: 1040px;
}

.demo-page-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.demo-page-card iframe {
    display: block;
    border-radius: 12px;
    background: white;
}


.trust-bar {
    background: #eef2f6;
    color: var(--text);
    border-top: 1px solid rgba(16, 19, 23, 0.06);
    border-bottom: 1px solid rgba(16, 19, 23, 0.06);
}

.trust-bar-inner {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.trust-bar-inner span {
    white-space: nowrap;
}

.demo-trust-note {
    margin-bottom: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.demo-trust-note p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .trust-bar-inner span {
        white-space: normal;
    }
}

.site-footer {
    background: var(--charcoal-2);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    padding: 3.5rem 0;
}

.footer-brand img {
    width: 150px;
    height: auto;
    margin-bottom: 0.85rem;
}

.footer-tagline {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-heading {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav-group a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.15s ease;
}

.footer-nav-group a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-inner p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .footer-nav {
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}
