.home-page {
    padding: 48px 24px 72px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 28px;
}

.home-hero__content,
.home-hero__panel,
.home-entry-card,
.home-link-panel {
    border: 1px solid rgba(22, 49, 80, 0.08);
    box-shadow: 0 20px 60px rgba(17, 38, 64, 0.08);
}

.home-hero__content {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 224, 157, 0.35), transparent 30%),
        linear-gradient(135deg, #0f3d56 0%, #145c73 45%, #1f7a6d 100%);
}

.home-hero__content::after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
}

.home-hero__content h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
}

.home-hero__content p {
    max-width: 700px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.home-hero__notice {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button--primary {
    color: #173042;
    background: #f8d57e;
    box-shadow: 0 12px 24px rgba(248, 213, 126, 0.28);
}

.home-button--secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.home-button--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
}

.home-hero__panel {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #eef6f8 100%);
}

.home-status-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.home-status-card.is-active {
    background: linear-gradient(180deg, #f6fbf7 0%, #e7f6ec 100%);
}

.home-status-card__label {
    display: block;
    font-size: 13px;
    color: #698093;
}

.home-status-card strong {
    display: block;
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.35;
    color: #173042;
}

.home-status-card p {
    margin: 12px 0 0;
    line-height: 1.7;
    color: #526876;
}

.home-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-metric-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.home-metric-card__label {
    font-size: 13px;
    color: #698093;
}

.home-metric-card strong {
    margin-top: 14px;
    font-size: 24px;
    line-height: 1.35;
    color: #173042;
}

.home-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 28px;
}

.home-entry-card {
    padding: 28px;
    border-radius: 24px;
    color: inherit;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-entry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 92, 115, 0.2);
    box-shadow: 0 24px 50px rgba(17, 38, 64, 0.12);
}

.home-entry-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #145c73;
    background: rgba(20, 92, 115, 0.08);
}

.home-entry-card h2 {
    margin: 18px 0 12px;
    font-size: 26px;
    color: #173042;
}

.home-entry-card p {
    margin: 0;
    line-height: 1.8;
    color: #4c6170;
}

.home-description-panel {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 28px;
    border: 1px solid rgba(22, 49, 80, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: 0 20px 60px rgba(17, 38, 64, 0.08);
}

.home-description-panel__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-description-panel__header h2 {
    margin: 0;
    font-size: 24px;
    color: #173042;
}

.home-description-panel__header p {
    margin: 0;
    color: #617687;
}

.home-description-panel__content {
    display: grid;
    gap: 14px;
}

.home-description-panel__content p {
    margin: 0;
    padding: 18px 20px;
    border-radius: 18px;
    line-height: 1.9;
    color: #405563;
    background: rgba(20, 92, 115, 0.06);
}

.home-process {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 28px;
    border: 1px solid rgba(22, 49, 80, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 20px 60px rgba(17, 38, 64, 0.08);
}

.home-process__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-process__header h2 {
    margin: 0;
    font-size: 24px;
    color: #173042;
}

.home-process__header p {
    margin: 0;
    color: #617687;
}

.home-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-process-card {
    padding: 24px;
    border-radius: 20px;
    background: #eef6f8;
}

.home-process-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    background: #145c73;
}

.home-process-card h3 {
    margin: 16px 0 10px;
    font-size: 22px;
    color: #173042;
}

.home-process-card p {
    margin: 0;
    line-height: 1.8;
    color: #4c6170;
}

.home-link-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 28px 28px;
    border-radius: 24px;
    background: #fff;
}

.home-link-panel__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-link-panel__header h2 {
    margin: 0;
    font-size: 24px;
    color: #173042;
}

.home-link-panel__header p {
    margin: 0;
    color: #617687;
}

.home-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-link-list a {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    color: #173042;
    background: #eef6f8;
    transition: background-color .2s ease, color .2s ease;
}

.home-link-list a:hover {
    color: #fff;
    background: #145c73;
}

@media (max-width: 960px) {
    .home-page {
        padding: 32px 16px 48px;
    }

    .home-hero,
    .home-entry-grid,
    .home-process__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__content,
    .home-hero__panel,
    .home-entry-card,
    .home-description-panel,
    .home-process,
    .home-link-panel {
        border-radius: 22px;
    }

    .home-hero__content {
        padding: 32px 24px;
    }

    .home-link-panel__header,
    .home-description-panel__header,
    .home-process__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero__actions,
    .home-link-list {
        flex-direction: column;
    }

    .home-button,
    .home-link-list a {
        width: 100%;
    }

    .home-entry-card h2 {
        font-size: 22px;
    }
}