.seed-hero {
    min-height: 78svh;
    margin-top: -78px;
    padding-top: 78px;
    background:
        linear-gradient(180deg, rgba(251, 250, 247, 0.86), rgba(251, 250, 247, 0.7)),
        url("/背景.png");
    background-size: cover;
    background-position: center;
}

.seed-hero__inner {
    min-height: calc(78svh - 78px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    justify-items: center;
    padding: 82px 0 96px;
    text-align: center;
}

.seed-hero__copy h1 {
    max-width: 780px;
    margin: 18px 0;
    color: var(--ink);
    font-size: clamp(42px, 5.2vw, 70px);
    line-height: 1.08;
    font-weight: 1000;
}

.seed-hero__copy p,
.seed-hero__panel p,
.seed-notice p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.seed-hero__copy p {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.seed-hero__copy .btn-row {
    justify-content: center;
    margin-top: 28px;
}

.seed-hero__panel,
.seed-notice {
    width: min(860px, 100%);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.seed-hero__panel strong {
    display: block;
    margin: 14px 0 10px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.28;
}

.seed-status-grid,
.seed-template-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.seed-status-grid span,
.seed-template-grid span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 900;
}

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

.seed-template {
    display: grid;
    gap: 16px;
}

.seed-template h2,
.seed-notice h2 {
    margin: 0;
    color: var(--ink);
}

.seed-notice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.seed-notice .btn-row {
    min-width: 250px;
    justify-content: center;
}

@media (max-width: 1000px) {
    .seed-hero__inner,
    .seed-notice {
        grid-template-columns: 1fr;
    }

    .seed-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seed-notice .btn-row {
        justify-content: flex-start;
        min-width: 0;
    }
}

@media (max-width: 760px) {
    .seed-hero {
        min-height: auto;
        margin-top: -68px;
        padding-top: 68px;
    }

    .seed-hero__inner {
        min-height: auto;
        padding: 58px 0 72px;
    }

    .seed-hero__copy h1 {
        font-size: 38px;
    }

    .seed-process {
        grid-template-columns: 1fr;
    }

    .seed-hero__panel,
    .seed-notice {
        padding: 22px;
    }
}
    justify-content: center;
