:root {
    --brand: #4f46e5;
    --brand-dark: #3730a3;
    --brand-soft: #eef2ff;
    --ink: #09090f;
    --muted: #626273;
    --line: rgba(15, 23, 42, 0.1);
    --card: rgba(255, 255, 255, 0.82);
    --surface: #f8f8fb;
    --success: #047857;
    --error: #b42318;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    --radius-large: 34px;
    --radius-medium: 24px;
    --radius-small: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 34rem),
        radial-gradient(circle at 80% 10%, rgba(125, 92, 255, 0.12), transparent 28rem),
        #ffffff;
}

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

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.22);
}

.site-nav .brand {
    gap: 12px;
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #111111;
}

.site-nav .brand img {
    width: 58px;
    height: 58px;
    transition: transform 180ms ease;
}

.site-nav .brand:hover img {
    transform: scale(1.03);
}

.site-nav .brand span {
    transform: translateY(-1px);
}

.brand-wordmark__accent {
    color: var(--brand);
}

.site-nav .brand .brand-wordmark {
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.lang-switch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.lang-switch-link.is-active {
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.lang-switch-link:hover {
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 750;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), #7c3aed);
    box-shadow: 0 16px 38px rgba(79, 70, 229, 0.28);
}

.button-secondary {
    color: var(--ink);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--line), 0 14px 30px rgba(15, 23, 42, 0.08);
}

.button-light {
    color: var(--brand-dark);
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(28, 28, 80, 0.18);
}

.button-nav {
    color: #ffffff;
    background: var(--ink);
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 84px;
}

.hero::after {
    position: absolute;
    inset: auto -20% -24% -20%;
    height: 380px;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle, rgba(79, 70, 229, 0.14), transparent 60%);
}

.announcement {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    margin: 0 auto 46px;
    padding: 7px 12px 7px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
}

.announcement span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.announcement a {
    color: var(--ink);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    align-items: center;
    gap: 56px;
}

.hero-copy h1,
.section-heading h2,
.journey-copy h2,
.product-grid h2,
.pilot-grid h2,
.faq-grid h2 {
    margin: 0;
    color: var(--ink);
    font-weight: 820;
    letter-spacing: -0.065em;
    line-height: 0.95;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(3.6rem, 8vw, 6.8rem);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-proof span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    font-weight: 650;
}

.hero-visual {
    position: relative;
}

.browser-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-large);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
}

.browser-bar {
    display: flex;
    gap: 7px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fafaff);
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d8d8e4;
}

.browser-bar span:first-child {
    background: #f97373;
}

.browser-bar span:nth-child(2) {
    background: #fbbf24;
}

.browser-bar span:nth-child(3) {
    background: #34d399;
}

.browser-card img {
    width: 100%;
}

.floating-card {
    position: absolute;
    width: 210px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    margin-bottom: 6px;
    font-size: 0.94rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.floating-card-top {
    top: 16%;
    right: -22px;
}

.floating-card-bottom {
    bottom: 12%;
    left: -24px;
}

.trust-strip {
    padding: 22px 0;
    border-block: 1px solid var(--line);
    background: rgba(248, 248, 251, 0.68);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    color: #777789;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 760px;
    text-align: center;
}

.section-heading h2,
.journey-copy h2,
.product-grid h2,
.pilot-grid h2,
.faq-grid h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.section-heading p,
.product-grid p,
.pilot-grid p,
.faq-grid p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.journey-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(79, 70, 229, 0.1), transparent 26rem),
        #ffffff;
}

.journey-list {
    display: grid;
    gap: 30px;
    margin-top: 56px;
}

.journey-chapter {
    max-width: 620px;
}

.journey-chapter-spaced {
    margin-top: 86px;
}

.journey-chapter h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.journey-card {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
    align-items: center;
    gap: 44px;
    overflow: hidden;
    min-height: 520px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, #ffffff, #f7f7ff);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.journey-card-media-left {
    grid-template-columns: minmax(420px, 1.22fr) minmax(0, 0.78fr);
}

.journey-card-phone {
    min-height: 620px;
}

.journey-card-phone .phone-frame {
    justify-self: end;
}

.journey-card-dashboard {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 42px 42px 42px;
}

.journey-card-dashboard .journey-copy {
    max-width: 760px;
}

.journey-card-dashboard > img {
    width: min(1040px, 100%);
    justify-self: center;
    border-radius: 28px 28px 0 0;
}

.journey-card-dropoff,
.journey-card-pickup {
    min-height: 470px;
}

.journey-card-dropoff > img,
.journey-card-pickup > img {
    width: min(720px, 100%);
    justify-self: end;
}

.journey-card-services {
    min-height: 560px;
}

.journey-card-complete {
    grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
    background:
        radial-gradient(circle at 78% 18%, rgba(79, 70, 229, 0.12), transparent 26rem),
        linear-gradient(180deg, #ffffff, #f7f7ff);
}

.journey-card-complete > img {
    width: min(760px, 100%);
    justify-self: end;
}

.journey-copy {
    max-width: 430px;
}

.journey-copy h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.journey-copy p:not(.eyebrow) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.journey-highlight {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 16px;
    color: var(--brand-dark) !important;
    background: var(--brand-soft);
    font-weight: 800;
}

.journey-card > img,
.phone-frame {
    background: transparent;
}

.journey-card > img {
    width: 100%;
    border-radius: 22px;
}

.phone-frame {
    width: min(390px, 100%);
    justify-self: center;
}

.phone-frame img {
    width: 100%;
    border-radius: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 46px;
}

.feature-card {
    overflow: hidden;
    min-height: 420px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, #ffffff, #f7f7ff);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.feature-card-large {
    display: grid;
    grid-column: span 2;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 34px;
}

.feature-card h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.feature-card p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
}

.feature-card img {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.feature-card-large img {
    margin-top: 0;
}

.product-section {
    overflow: hidden;
    background: var(--surface);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
    align-items: center;
    gap: 66px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: #343446;
    line-height: 1.55;
}

.check-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    content: "";
    background: var(--brand);
}

.check-list li::after {
    position: absolute;
    top: 8px;
    left: 7px;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    transform: rotate(-45deg);
}

.product-stack {
    position: relative;
    min-height: 520px;
}

.stack-image {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.stack-image-main {
    top: 0;
    right: 0;
    width: 84%;
}

.stack-image-side {
    bottom: 0;
    left: 0;
    width: 58%;
}

.pilot-band {
    padding: 76px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 24rem),
        linear-gradient(135deg, #312e81, #4f46e5 54%, #7c3aed);
}

.pilot-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.pilot-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.pilot-grid h2,
.pilot-grid p,
.pilot-grid .eyebrow {
    color: #ffffff;
}

.pilot-grid p {
    max-width: 720px;
    opacity: 0.82;
}

.forms-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(79, 70, 229, 0.12), transparent 28rem),
        #ffffff;
}

.alert {
    margin: 28px auto 0;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 650;
    text-align: left;
}

.alert-success {
    color: var(--success);
    background: #ecfdf5;
}

.alert-error {
    color: var(--error);
    background: #fff1f0;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
}

.lead-form-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: var(--card);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(20px);
}

.lead-form-card-accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 247, 255, 0.88)),
        var(--card);
}

.form-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.form-card-header > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: var(--ink);
    font-weight: 800;
}

.form-card-header h3 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.form-card-header p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.lead-form {
    display: grid;
    gap: 9px;
}

.lead-form label {
    margin-top: 10px;
    color: #3c3c4d;
    font-size: 0.88rem;
    font-weight: 750;
}

.lead-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    outline: none;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus {
    border-color: rgba(79, 70, 229, 0.55);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.lead-form input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    accent-color: var(--brand);
    flex: 0 0 auto;
}

.consent-row {
    margin-top: 8px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0 !important;
    color: var(--muted) !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    line-height: 1.55;
    cursor: pointer;
}

.consent-label a {
    color: var(--brand);
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.consent-row > span {
    display: block;
    margin-top: 6px;
}

.lead-form span,
.validation-summary {
    color: var(--error);
    font-size: 0.84rem;
    font-weight: 600;
}

.lead-form button {
    margin-top: 18px;
}

.legal-page {
    padding: 72px 0 96px;
}

.legal-content {
    max-width: 760px;
}

.legal-content h1 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.legal-updated {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-content h2 {
    margin: 34px 0 12px;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.legal-content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.footer-links a {
    color: var(--muted);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--brand);
}

.faq-section {
    background: #fbfbfd;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

details {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

details p {
    margin: 0;
    padding: 0 22px 22px;
}

.site-footer {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-inner p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero-grid,
    .journey-card,
    .journey-card-media-left,
    .journey-card-complete,
    .product-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 680px;
        margin: 0 auto;
    }

    .feature-card-large,
    .forms-grid,
    .pilot-grid {
        grid-template-columns: 1fr;
    }

    .journey-card-media-left .journey-copy {
        order: -1;
    }

    .feature-card-large {
        grid-column: span 1;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-stack {
        min-height: 460px;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .button-nav {
        display: none;
    }

    .hero {
        padding-top: 42px;
    }

    .announcement {
        flex-direction: column;
        border-radius: 22px;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 16vw, 4.4rem);
    }

    .floating-card {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .browser-card {
        transform: none;
    }

    .section {
        padding: 78px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .journey-card,
    .lead-form-card {
        padding: 22px;
        border-radius: 26px;
    }

    .journey-card {
        gap: 28px;
        min-height: auto;
    }

    .journey-chapter-spaced {
        margin-top: 52px;
    }

    .journey-card-dashboard {
        padding: 24px 24px 0;
    }

    .pilot-actions {
        justify-content: flex-start;
    }

    .product-stack {
        display: grid;
        gap: 18px;
        min-height: auto;
    }

    .stack-image {
        position: static;
        width: 100%;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}