.starter-tool {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.starter-hero,
.starter-panel,
.starter-card,
.starter-sprite-stage {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(19, 41, 32, .96), rgba(12, 25, 20, .98));
    box-shadow: var(--shadow);
}

.starter-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr);
    gap: 18px;
    align-items: stretch;
    padding: 18px;
}

.starter-hero-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.starter-hero h2,
.starter-section-heading h2 {
    margin: 0;
    color: #fff;
    line-height: 1.15;
}

.starter-hero h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.starter-lede {
    max-width: 830px;
    margin: 14px 0 0;
    color: #dce8e1;
    font-size: 17px;
}

.starter-facts,
.starter-links,
.starter-choice-grid,
.starter-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.starter-facts {
    margin-top: 18px;
}

.starter-facts span,
.starter-links a {
    border: 1px solid rgba(226, 180, 67, .28);
    border-radius: 6px;
    background: rgba(226, 180, 67, .08);
    color: #f4d27b;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 850;
}

.starter-sprite-stage {
    display: grid;
    align-content: center;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(101, 168, 255, .16), transparent 34%),
        radial-gradient(circle at 80% 26%, rgba(225, 83, 83, .14), transparent 34%),
        linear-gradient(180deg, #132920, #09130f);
}

.starter-sprite-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 18px 8px;
    align-items: end;
}

.starter-sprite-row img {
    width: 100%;
    max-height: 118px;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 9px 14px rgba(0, 0, 0, .42));
}

.starter-sprite-stage figcaption {
    padding: 10px 12px;
    color: #b9cbc1;
    font-size: 13px;
}

.starter-links a:hover {
    border-color: var(--gold);
    color: #fff;
}

.starter-panel {
    padding: 18px;
}

.starter-section-heading {
    margin-bottom: 14px;
}

.starter-choice-grid {
    margin-bottom: 14px;
}

.starter-choice-grid button,
.starter-progress button {
    min-height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #11221a;
    color: #dbe7df;
    cursor: pointer;
    font-weight: 850;
}

.starter-choice-grid button {
    padding: 7px 12px;
}

.starter-progress button {
    padding: 7px 12px;
}

.starter-choice-grid button:hover,
.starter-choice-grid button.is-active,
.starter-progress button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.starter-result {
    min-width: 0;
    border: 1px solid rgba(101, 168, 255, .26);
    border-radius: 8px;
    background: rgba(101, 168, 255, .06);
    padding: 14px;
}

.starter-result h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
}

.starter-result p {
    margin: 0;
    color: #bfd0c7;
}

.starter-result strong {
    color: var(--gold-2);
}

.starter-grid,
.starter-check-grid,
.starter-faq-grid,
.starter-move-list,
.starter-team-shells {
    display: grid;
    gap: 12px;
}

.starter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.starter-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
}

.starter-card img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .36));
}

.starter-card h3,
.starter-faq-grid h3 {
    margin: 0;
    color: #fff;
}

.starter-card p {
    margin: 7px 0 0;
    color: #bed0c7;
}

.starter-rank {
    width: fit-content;
    margin: 0 0 5px !important;
    border-radius: 5px;
    padding: 3px 7px;
    background: rgba(226, 180, 67, .12);
    color: #f4d27b !important;
    font-size: 12px;
    font-weight: 900;
}

.starter-card-totodile {
    border-color: rgba(101, 168, 255, .34);
}

.starter-card-cyndaquil {
    border-color: rgba(225, 83, 83, .34);
}

.starter-card-chikorita {
    border-color: rgba(68, 201, 130, .34);
}

.starter-controls {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(220px, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.starter-controls label {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: #b8cac1;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.starter-controls select,
.starter-controls input {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #0b1712;
    color: #fff;
    padding: 8px 10px;
}

.starter-table-wrap {
    overflow-x: auto;
}

.starter-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.starter-table th,
.starter-table td {
    border-bottom: 1px solid rgba(139, 160, 150, .18);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.starter-table th {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.starter-table td {
    color: #c5d4cd;
}

.starter-rating {
    display: inline-flex;
    min-width: 86px;
    justify-content: center;
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 900;
}

.rating-good {
    background: rgba(68, 201, 130, .16);
    color: #78e5aa;
}

.rating-ok {
    background: rgba(226, 180, 67, .16);
    color: #f4d27b;
}

.rating-hard {
    background: rgba(225, 83, 83, .16);
    color: #ff9b9b;
}

.starter-move-list div,
.starter-team-shells div,
.starter-check,
.starter-faq-grid article {
    min-width: 0;
    border: 1px solid rgba(101, 168, 255, .22);
    border-radius: 8px;
    background: rgba(101, 168, 255, .06);
}

.starter-move-list div,
.starter-team-shells div,
.starter-faq-grid article {
    padding: 12px;
}

.starter-move-list strong,
.starter-team-shells strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.starter-move-list span,
.starter-team-shells span {
    display: block;
    margin-top: 5px;
    color: #b9cbc1;
}

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

.starter-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
}

.starter-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    flex: 0 0 auto;
}

.starter-check span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.starter-check strong {
    color: #fff;
}

.starter-check em {
    color: #b9cbc1;
    font-style: normal;
}

.starter-progress {
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    color: #f4d27b;
    font-weight: 850;
}

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

.starter-faq-grid p {
    margin: 8px 0 0;
    color: #b9cbc1;
}

@media (max-width: 980px) {
    .starter-hero,
    .starter-grid,
    .starter-grid-two {
        grid-template-columns: 1fr;
    }

    .starter-card {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .starter-card img {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 680px) {
    .starter-hero,
    .starter-panel {
        padding: 14px;
    }

    .starter-hero h2 {
        font-size: 30px;
    }

    .starter-lede {
        font-size: 15px;
    }

    .starter-controls,
    .starter-check-grid,
    .starter-faq-grid {
        grid-template-columns: 1fr;
    }

    .starter-choice-grid button {
        flex: 1 1 100%;
    }

    .starter-sprite-row {
        gap: 6px;
        padding-inline: 10px;
    }
}
