:root {
    --brand-orange: #ee6f35;
    --brand-blue: #245775;
    --brand-blue-dark: #173a50;
    --ink: #172331;
    --muted: #6a7480;
    --surface: #ffffff;
    --soft: #f4f7f9;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 18%, rgba(238, 111, 53, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(36, 87, 117, 0.16), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #eef4f7 100%);
}

.landing-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 32px 0;
}

.brand-logo {
    width: min(100%, 560px);
    height: auto;
    display: block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(36, 87, 117, 0.16);
    border-radius: 999px;
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 680px;
    margin: 28px 0 18px;
    color: var(--brand-blue-dark);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 0.98;
}

.hero-copy {
    max-width: 610px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.section-title {
    text-align: center;
    margin: 0 0 18px;
    color: var(--brand-blue-dark);
    font-size: 2.5rem;
    font-weight: 800;
}

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

.access-link {
    min-height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(23, 35, 49, 0.08);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(23, 58, 80, 0.1);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.access-link:hover,
.access-link:focus {
    color: var(--ink);
    border-color: rgba(238, 111, 53, 0.46);
    box-shadow: 0 22px 54px rgba(23, 58, 80, 0.16);
    outline: none;
    transform: translateY(-4px);
}

.access-link.disabled {
    cursor: default;
    opacity: 0.72;
}

.access-link.disabled:hover,
.access-link.disabled:focus {
    border-color: rgba(23, 35, 49, 0.08);
    box-shadow: 0 18px 44px rgba(23, 58, 80, 0.1);
    transform: none;
}

.access-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand-blue);
    font-size: 1.25rem;
}

.access-link.primary .access-icon {
    background: var(--brand-orange);
}

.access-title {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-blue-dark);
    font-size: 1.08rem;
    font-weight: 800;
}

.access-status {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.mockup-panel {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(36, 87, 117, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 28px 70px rgba(23, 58, 80, 0.16);
}

.mockup-topbar {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
    background: var(--brand-blue-dark);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.mockup-body {
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.metric {
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(36, 87, 117, 0.08);
    border-radius: 8px;
    background: #ffffff;
}

.metric-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.metric-value {
    margin-top: 12px;
    color: var(--brand-blue-dark);
    font-size: 1.9rem;
    font-weight: 800;
}

.route-list {
    display: grid;
    gap: 12px;
}

.route-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(23, 35, 49, 0.07);
    border-radius: 8px;
    background: #ffffff;
}

.route-name {
    color: var(--brand-blue-dark);
    font-weight: 800;
}

.route-meta {
    color: var(--muted);
    font-size: 0.88rem;
}

.route-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--brand-orange);
    font-size: 0.78rem;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .landing-shell {
        align-items: flex-start;
        padding: 28px 0;
    }

    .mockup-panel {
        min-height: auto;
        margin-top: 34px;
    }
}

@media (max-width: 767.98px) {
    .access-grid,
    .metric-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        line-height: 1.06;
    }

    .access-link {
        min-height: 138px;
    }

    .route-item {
        align-items: flex-start;
        flex-direction: column;
    }
}
