.clash-landing {
    --clash-ink: #101316;
    --clash-muted: #4e5b66;
    --clash-cyan: #00a9c8;
    --clash-green: #25a06b;
    --clash-amber: #c98726;
    --clash-navy: #17202a;
    --clash-page-pad: clamp(28px, 5vh, 56px);
    min-height: 100vh;
    height: 100dvh;
    margin: 0;
    overflow: hidden;
    color: var(--clash-ink);
    background: #eef5f5;
    color-scheme: light;
    letter-spacing: 0;
}

.clash-screen {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: grid;
    place-items: center;
    padding: var(--clash-page-pad) 0;
    overflow: hidden;
    isolation: isolate;
}

.clash-screen::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background-image:
            linear-gradient(90deg, rgba(246, 250, 250, 0.98) 0%, rgba(246, 250, 250, 0.92) 38%, rgba(246, 250, 250, 0.26) 68%, rgba(246, 250, 250, 0.08) 100%),
            url("/static/clash-hero.png");
    background-position: center;
    background-size: cover;
}

.clash-screen::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 32vh;
    content: "";
    background: linear-gradient(180deg, rgba(238, 245, 245, 0), rgba(238, 245, 245, 0.92));
}

.clash-shell {
    width: min(1280px, calc(100% - clamp(48px, 12vw, 176px)));
    min-height: calc(100vh - var(--clash-page-pad) * 2);
    min-height: calc(100dvh - var(--clash-page-pad) * 2);
    display: grid;
    align-items: center;
}

.clash-overview {
    align-self: center;
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(320px, 430px);
    gap: clamp(36px, 5vw, 90px);
    align-items: center;
}

.clash-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(18px, 3vh, 28px);
    padding: 8px 12px;
    color: #1d5661;
    border: 1px solid rgba(0, 169, 200, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 720;
    backdrop-filter: blur(16px);
}

.clash-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--clash-green);
    box-shadow: 0 0 0 5px rgba(37, 160, 107, 0.14);
}

.clash-title-row {
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
}

.clash-title-row h1 {
    margin: 0;
    color: #11171d;
    font-size: clamp(48px, 4.7vw, 72px);
    line-height: 0.96;
    font-weight: 830;
    letter-spacing: 0;
}

.clash-logo {
    width: clamp(72px, 7vw, 102px);
    height: clamp(72px, 7vw, 102px);
    flex: 0 0 auto;
    object-fit: contain;
}

.clash-lead {
    max-width: 690px;
    margin: clamp(22px, 3vh, 32px) 0 0;
    color: #34414d;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.72;
}

.clash-plans {
    width: min(860px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(24px, 4vh, 36px);
}

.clash-plan {
    min-height: 150px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    padding: 22px 24px;
    color: #ffffff;
    border-radius: 8px;
    background: var(--clash-navy);
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.clash-plan:hover,
.clash-plan:focus-visible {
    background: #1d2935;
    transform: translateY(-2px);
}

.clash-plan:focus-visible {
    outline: 3px solid rgba(0, 169, 200, 0.42);
    outline-offset: 3px;
}

.clash-plan-title {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.2;
    font-weight: 820;
}

.clash-plan-action {
    grid-row: 3;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.clash-plan-price {
    color: #ffffff;
    font-size: clamp(21px, 1.75vw, 28px);
    line-height: 1;
    font-style: normal;
    font-weight: 820;
}

.clash-plan-cta {
    flex: 0 0 auto;
    padding: 11px 15px;
    color: #ffffff;
    border-radius: 7px;
    background: #050606;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.clash-status-panel {
    width: 100%;
    justify-self: center;
    padding: 26px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.26));
    box-shadow: none;
    backdrop-filter: blur(28px) saturate(135%);
}

.clash-route-list {
    display: grid;
    gap: 18px;
}

.clash-route {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 0;
}

.clash-route-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 8px;
    background: var(--clash-cyan);
}

.clash-route:nth-child(2) .clash-route-icon {
    background: var(--clash-green);
}

.clash-route:nth-child(3) .clash-route-icon {
    background: #315a94;
}

.clash-route:nth-child(4) .clash-route-icon {
    background: var(--clash-amber);
}

.clash-route-icon .material-icons {
    font-size: 19px;
}

.clash-route-name {
    margin: 0;
    color: #1a232c;
    font-size: 16px;
    font-weight: 780;
}

.clash-route-meta {
    margin: 4px 0 0;
    color: var(--clash-muted);
    font-size: 13px;
}

.clash-route-state {
    color: #10613d;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .clash-landing {
        height: auto;
        overflow: auto;
    }

    .clash-screen {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding: 34px 0;
        overflow: visible;
    }

    .clash-screen::before {
        background-image:
                linear-gradient(180deg, rgba(246, 250, 250, 0.98) 0%, rgba(246, 250, 250, 0.92) 58%, rgba(246, 250, 250, 0.7) 100%),
                url("/static/clash-hero.png");
        background-position: 62% center;
    }

    .clash-shell {
        width: min(calc(100% - 28px), 1320px);
        min-height: auto;
    }

    .clash-overview {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .clash-plans {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }
}

@media (max-width: 560px) {
    .clash-screen {
        padding: 16px 0;
    }

    .clash-title-row {
        align-items: flex-start;
        gap: 12px;
    }

    .clash-title-row h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    .clash-logo {
        width: 58px;
        height: 58px;
    }

    .clash-lead {
        font-size: 17px;
    }

    .clash-status-panel,
    .clash-plan {
        padding: 16px;
    }

    .clash-route {
        min-height: 58px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
    }

    .clash-route-name {
        font-size: 14px;
    }

    .clash-route-meta,
    .clash-route-state,
    .clash-plan-title,
    .clash-plan-cta {
        font-size: 12px;
    }

    .clash-plans {
        grid-template-columns: 1fr;
    }

    .clash-plan {
        min-height: 126px;
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clash-plan {
        transition: none;
    }
}
