@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0b1730;
    --navy-2: #132343;
    --blue: #2f6fed;
    --blue-dark: #2359c3;
    --blue-soft: #eef4ff;
    --cyan: #20c5c7;
    --ink: #162033;
    --muted: #667085;
    --line: #e5eaf1;
    --bg: #f7f9fc;
    --white: #ffffff;
    --green: #16a36a;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(18, 32, 59, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

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


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 23, 48, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -.7px;
}

.brand-name span {
    color: var(--cyan);
}

.brand-mark {
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    position: relative;
    border: 3px solid #fff;
    border-radius: 10px 10px 10px 3px;
    transform: rotate(-5deg);
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,.86);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav .nav-cta {
    padding: 11px 17px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--cyan);
}

.main-nav .nav-cta:hover {
    background: #4fd6d8;
    color: var(--navy);
}

.main-nav .nav-cta-muted {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.nav-toggle {
    display: none;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
}


/* HERO */

.hero-section {
    position: relative;
    overflow: hidden;
	
	background:
    linear-gradient(
        90deg,
        rgba(11,23,48,1) 0%,
        rgba(11,23,48,.98) 26%,
        rgba(11,23,48,.82) 38%,
        rgba(11,23,48,.42) 48%,
        rgba(11,23,48,.12) 57%,
        rgba(11,23,48,0) 68%
    ),
    url('/assets/images/courierdrop-hero.webp');

	background-size: 108% auto;
	background-position: 58% center;
    background-repeat: no-repeat;

    color: #fff;
   	padding: 58px 0 62px;
    min-height: 620px;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255,255,255,.025),
        0 0 0 140px rgba(255,255,255,.018);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 430px;
}
.hero-copy {
    width: 56%;
    max-width: 820px;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--cyan);
    margin-bottom: 18px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 770px;
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.hero-copy h1 span {
    color: var(--cyan);
}

.hero-lead {
    max-width: 710px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

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

.button-large {
    min-height: 54px;
    padding: 0 25px;
    font-size: 15px;
}

.button-primary {
    color: #071326;
    background: var(--cyan);
}

.button-primary:hover {
    background: #4fd6d8;
}

.button-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
}

.button-outline:hover {
    background: rgba(255,255,255,.11);
}

.button-soft {
    color: var(--blue);
    background: var(--blue-soft);
}

.button-white {
    color: var(--navy);
    background: #fff;
}

.button-outline-dark {
    color: var(--ink);
    border: 1px solid #cfd7e4;
    background: #fff;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 29px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 600;
}

.hero-points span::before {
    content: "✓";
    color: var(--cyan);
    margin-right: 7px;
}


/* EXAMPLE LOAD CARD */

.route-card {
    position: relative;
    padding: 27px;
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
    transform: rotate(1deg);
}

.route-card-top,
.load-top,
.load-footer,
.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eaf9f3;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.route-distance {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.route-journey {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
}

.route-stop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.route-stop small,
.route-meta small,
.mock-bid small,
.match-job small {
    display: block;
    color: #8a94a6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.route-stop strong {
    display: block;
    margin-top: 3px;
    font-size: 18px;
}

.route-stop span:last-child {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.route-node,
.mini-dot {
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-top: 4px;
}

.route-node-start,
.mini-dot.start {
    background: var(--blue);
}

.route-node-end,
.mini-dot.end {
    background: var(--cyan);
}

.route-line,
.mini-route-line {
    color: #a5afbf;
    text-align: center;
}

.route-line {
    position: relative;
}

.route-line::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 50%;
    height: 1px;
    background: #dde3ec;
}

.route-line span {
    position: relative;
    z-index: 2;
    padding: 0 8px;
    background: #fff;
}

.route-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.route-meta strong {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.mock-bid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: 13px;
    background: var(--blue-soft);
}

.mock-bid strong {
    display: block;
    margin-top: 3px;
    color: var(--blue);
}

.mock-bid-price {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}


/* MAIN SECTIONS */

.audience-section,
.loads-section,
.how-section,
.final-cta {
    padding: 86px 0;
}

.audience-section {
    background: #fff;
}

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

.audience-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.icon-tile {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-soft);
    font-size: 22px;
}

.audience-card h2 {
    margin: 8px 0 10px;
    font-size: 20px;
}

.audience-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.text-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}


/* LOADS */

.loads-section {
    background: var(--bg);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-heading-row h2,
.center-heading h2,
.return-load-section h2,
.cta-box h2 {
    margin: 8px 0 8px;
    font-size: clamp(30px, 3vw, 42px);
    letter-spacing: -1.5px;
}

.section-heading-row p,
.center-heading p,
.cta-box p {
    margin: 0;
    color: var(--muted);
}

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

.load-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 7px 24px rgba(18,32,59,.03);
    transition: .2s ease;
}

.load-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.load-ref {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.vehicle-pill {
    padding: 6px 9px;
    border-radius: 999px;
    background: #f1f4f8;
    color: #4d596d;
    font-size: 10px;
    font-weight: 700;
}

.load-route {
    display: grid;
    grid-template-columns: 1fr 38px 1fr;
    align-items: center;
    margin: 25px 0;
}

.load-route > div:not(.mini-route-line) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    align-items: center;
}

.load-route strong {
    font-size: 15px;
}

.load-route small {
    grid-column: 2;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.load-footer {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

.load-footer strong {
    color: var(--ink);
    font-size: 16px;
}

.empty-marketplace {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px;
    border: 1px dashed #cfd8e7;
    border-radius: var(--radius);
    background: #fff;
}

.empty-marketplace h2 {
    margin: 7px 0 8px;
}

.empty-marketplace p {
    margin: 0;
    color: var(--muted);
}


/* HOW IT WORKS */

.center-heading {
    max-width: 660px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.step-card {
    padding: 28px 24px;
    border-top: 3px solid var(--blue);
    border-radius: 0 0 14px 14px;
    background: var(--bg);
}

.step-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.step-card h3 {
    margin: 14px 0 8px;
    font-size: 21px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}


/* RETURN LOAD SECTION */

.return-load-section {
    padding: 86px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 30%, rgba(32,197,199,.16), transparent 30%),
        var(--navy);
}

.return-load-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
}

.section-kicker.light {
    color: var(--cyan);
}

.return-load-section h2 {
    color: #fff;
    font-size: clamp(36px, 4vw, 54px);
}

.return-load-section p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
}

.match-card {
    padding: 27px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.match-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(32,197,199,.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.match-row {
    padding: 10px 0;
    color: rgba(255,255,255,.67);
    font-size: 13px;
}

.match-row strong {
    color: #fff;
}

.match-divider {
    height: 1px;
    margin: 15px 0 20px;
    background: rgba(255,255,255,.12);
}

.match-job {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.match-job strong,
.match-job span {
    display: block;
}

.match-job strong {
    margin: 4px 0;
    font-size: 20px;
}

.match-job span {
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.match-arrow {
    color: var(--cyan) !important;
    font-size: 25px !important;
}


/* FINAL CTA */

.final-cta {
    background: #fff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 46px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--bg);
}

.cta-actions {
    margin-top: 0;
}


/* FOOTER */

.site-footer {
    padding: 52px 0 24px;
    color: rgba(255,255,255,.68);
    background: #071226;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 34px;
}

.footer-brand {
    font-size: 21px;
}

.footer-copy {
    margin: 13px 0 0;
    color: rgba(255,255,255,.56);
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 11px;
}


/* EXISTING FORMS / ACCOUNT PAGES */

main > .container {
    padding-top: 42px;
    padding-bottom: 60px;
}

.card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(18,32,59,.04);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

label {
    display: block;
    margin-top: 15px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    color: var(--ink);
    border: 1px solid #cfd7e4;
    border-radius: 9px;
    background: #fff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(47,111,237,.10);
}

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

form button {
    margin-top: 18px;
    padding: 12px 18px;
    color: #fff;
    border: 0;
    border-radius: 9px;
    background: var(--blue);
    font-weight: 700;
    cursor: pointer;
}

form button:hover {
    background: var(--blue-dark);
}

.alert {
    padding: 13px 15px;
    margin-bottom: 16px;
    border-radius: 9px;
    background: #fff4d8;
}

.alert.success,
.success {
    background: #e8f8f0;
    color: #166344;
}

/* HERO PHONE IMAGE */

.hero-image-wrap {
    display: none;
}

/* AUTH / LOGIN */

.auth-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 70px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(32,197,199,.08), transparent 30%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.auth-container {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 500px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(18,32,59,.10);
}

.auth-heading {
    margin-bottom: 28px;
}

.auth-heading h1 {
    margin: 8px 0 10px;
    font-size: 34px;
    letter-spacing: -1.2px;
}

.auth-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.auth-form label {
    margin-top: 18px;
}

.auth-form input {
    min-height: 50px;
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 15px;
}

.auth-password-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
}

.auth-password-row label {
    margin: 0;
}

.auth-password-row a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.auth-password-row a:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    background: var(--cyan);
    color: var(--navy);
    font-size: 15px;
}

.auth-submit:hover {
    background: #4fd6d8;
}

.auth-alert {
    margin-bottom: 20px;
}

.auth-footer {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.auth-footer a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 980px) {

    .hero-grid,
    .return-load-grid {
        grid-template-columns: 1fr;
    }

.hero-grid {
    min-height: 500px;
}

    .route-card {
        max-width: 560px;
    }

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

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

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

    .main-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        border-radius: 14px;
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 11px 12px;
    }

    .nav-toggle {
        display: block;
    }
}


@media (max-width: 680px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

.hero-section {
    padding: 46px 0 42px;
    min-height: 760px;

    background:
        linear-gradient(
            180deg,
            rgba(11,23,48,1) 0%,
            rgba(11,23,48,.98) 28%,
            rgba(11,23,48,.90) 46%,
            rgba(11,23,48,.50) 62%,
            rgba(11,23,48,.18) 78%,
            rgba(11,23,48,.08) 100%
        ),
        url('/assets/images/courierdrop-hero.webp');

    background-size: auto 100%;
    background-position: 67% center;
    background-repeat: no-repeat;
}

.hero-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 34px;
}

.hero-points span {
    display: block;
    width: 100%;
}

.hero-grid {
    min-height: 670px;
    align-items: flex-start;
}

.hero-copy {
    width: 100%;
    max-width: 100%;
}

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

    .hero-lead {
        font-size: 16px;
    }

    .route-card {
        padding: 21px;
        transform: none;
    }

    .route-journey {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .route-line {
        display: none;
    }

    .route-meta {
        grid-template-columns: 1fr 1fr;
    }

    .audience-section,
    .loads-section,
    .how-section,
    .return-load-section,
    .final-cta {
        padding: 62px 0;
    }

    .loads-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-row,
    .empty-marketplace,
    .cta-box,
    .footer-grid,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-box {
        padding: 30px 24px;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
	
	.auth-section {
    padding: 34px 0;
}

.auth-card {
    padding: 28px 22px;
    border-radius: 16px;
}

.auth-heading h1 {
    font-size: 29px;
}

.auth-footer {
    flex-direction: column;
    align-items: center;
}
	
}
