.kodrun-inner-page {
    --kr-bg: #ffffff;
    --kr-ink: #0f172a;
    --kr-muted: #64748b;
    --kr-line: #e2e8f0;
    --kr-soft: #f8fafc;
    --kr-accent: #0891b2;
    --kr-accent-strong: #0e7490;
    --kr-dark: #07111f;
    background: var(--kr-bg);
    color: var(--kr-ink);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

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

.kodrun-breadcrumb {
    margin-top: 86px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--kr-line);
}

.admin-bar .kodrun-breadcrumb {
    margin-top: 118px;
}

.kodrun-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #64748b;
    font-size: 14px;
    overflow-x: auto;
}

.kodrun-breadcrumb a,
.kodrun-breadcrumb span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.kodrun-breadcrumb a {
    color: #475569;
    font-weight: 600;
}

.kodrun-breadcrumb a:hover {
    color: var(--kr-accent-strong);
}

.kodrun-breadcrumb__current {
    color: #0f172a;
    font-weight: 700;
}

.kodrun-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--kr-dark);
}

.kodrun-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.kodrun-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.24) 100%), linear-gradient(0deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0) 52%);
}

.kodrun-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 110px 0 96px;
}

.kodrun-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kodrun-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: #67e8f9;
}

.kodrun-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.kodrun-hero p {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.kodrun-overlap {
    position: relative;
    z-index: 2;
    margin-top: -72px;
}

.kodrun-summary {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--kr-line);
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.kodrun-summary__bar {
    height: 4px;
    background: linear-gradient(90deg, #0891b2, #22d3ee, #10b981);
}

.kodrun-summary__body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
    padding: 44px;
}

.kodrun-summary h2,
.kodrun-section h2,
.kodrun-cta h2 {
    margin: 0;
    color: #0f172a;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}

.kodrun-summary p,
.kodrun-section p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

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

.kodrun-stat {
    min-height: 112px;
    padding: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.kodrun-stat strong {
    display: block;
    color: #0e7490;
    font-size: 28px;
    line-height: 1;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.kodrun-stat span {
    display: block;
    margin-top: 10px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.kodrun-section {
    padding: 96px 0;
}

.kodrun-section--soft {
    background: var(--kr-soft);
}

.kodrun-section__head {
    max-width: 820px;
    margin-bottom: 40px;
}

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

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

.kodrun-card {
    min-height: 100%;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--kr-line);
    border-radius: 4px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.kodrun-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 145, 178, 0.38);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.kodrun-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: #0e7490;
    border-radius: 4px;
}

.kodrun-card__icon svg {
    width: 23px;
    height: 23px;
}

.kodrun-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.18;
}

.kodrun-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.72;
}

.kodrun-card ul,
.kodrun-feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.kodrun-card li,
.kodrun-feature-list li {
    display: flex;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.kodrun-card li::before,
.kodrun-feature-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 7px;
    flex: 0 0 7px;
    background: #10b981;
    border-radius: 50%;
}

.kodrun-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.kodrun-split__visual {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.kodrun-step-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.kodrun-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--kr-line);
    border-radius: 4px;
}

.kodrun-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: #0f172a;
    border-radius: 4px;
    font-size: 15px;
}

.kodrun-step h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
}

.kodrun-step p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.kodrun-content {
    max-width: 860px;
}

.kodrun-content .page-content {
    color: #334155;
    font-size: 17px;
    line-height: 1.85;
}

.kodrun-content .page-content h2,
.kodrun-content .page-content h3 {
    color: #0f172a;
    font-family: 'DM Sans', 'Inter', sans-serif;
    letter-spacing: 0;
}

.kodrun-cta {
    padding: 80px 0;
    background: #06111f;
}

.kodrun-cta__box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.kodrun-cta h2 {
    color: #ffffff;
}

.kodrun-cta p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(226, 232, 240, 0.76);
    font-size: 17px;
    line-height: 1.7;
}

.kodrun-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    color: #ffffff;
    background: #0e7490;
    border: 1px solid #22d3ee;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.kodrun-button:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.kodrun-button--dark {
    background: #0f172a;
    border-color: #334155;
}

@media (max-width: 980px) {
    .kodrun-summary__body,
    .kodrun-split,
    .kodrun-cta__box {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .kodrun-container {
        width: min(100% - 32px, 1180px);
    }

    .kodrun-breadcrumb {
        margin-top: 74px;
    }

    .admin-bar .kodrun-breadcrumb {
        margin-top: 120px;
    }

    .kodrun-hero {
        min-height: 470px;
    }

    .kodrun-hero__content {
        padding: 80px 0 92px;
    }

    .kodrun-overlap {
        margin-top: -48px;
    }

    .kodrun-summary__body {
        padding: 28px;
    }

    .kodrun-stats,
    .kodrun-grid,
    .kodrun-grid--two {
        grid-template-columns: 1fr;
    }

    .kodrun-section {
        padding: 70px 0;
    }

    .kodrun-card {
        padding: 26px;
    }

    .kodrun-split__visual {
        min-height: 280px;
    }

    .kodrun-cta {
        padding: 64px 0;
    }
}
