.hidden-tool {
    display: grid;
    gap: 18px;
    overflow-wrap: anywhere;
}

.hidden-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: 18px;
    align-items: stretch;
}

.hidden-hero-copy,
.hidden-fast-card,
.hidden-panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(19, 41, 32, .96), rgba(9, 19, 16, .98));
    box-shadow: var(--shadow);
    padding: 18px;
}

.hidden-hero-copy h2,
.hidden-fast-card h3,
.hidden-panel h2,
.hidden-panel h3 {
    margin: 0;
    color: #fff;
    line-height: 1.12;
}

.hidden-hero-copy h2 {
    max-width: 980px;
    font-size: clamp(28px, 5vw, 46px);
}

.hidden-lede,
.hidden-fast-card li,
.hidden-answer p,
.hidden-panel p,
.hidden-route-list li,
.hidden-tip-grid article {
    color: #d8e7df;
}

.hidden-lede {
    max-width: 980px;
    font-size: 17px;
}

.hidden-stat-strip,
.hidden-links,
.hidden-controls,
.hidden-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hidden-stat-strip span,
.hidden-links a,
.hidden-button-row button,
.hidden-reset {
    border: 1px solid rgba(226, 180, 67, .42);
    border-radius: 6px;
    background: rgba(226, 180, 67, .11);
    color: #f5d882;
}

.hidden-stat-strip span {
    padding: 7px 10px;
    font-weight: 850;
}

.hidden-fast-card ol,
.hidden-route-list {
    margin: 10px 0 0;
    padding-left: 20px;
}

.hidden-links {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 16, 13, .72);
}

.hidden-links a,
.hidden-button-row button,
.hidden-reset {
    min-height: 36px;
    padding: 7px 10px;
    font-weight: 800;
    cursor: pointer;
}

.hidden-links a:hover,
.hidden-button-row button:hover,
.hidden-button-row button.is-active,
.hidden-reset:hover {
    background: var(--gold);
    color: #08100d;
}

.hidden-answer {
    display: grid;
    grid-template-columns: minmax(180px, 310px) minmax(0, 1fr);
    gap: 16px;
    border-color: rgba(226, 180, 67, .46);
    background: linear-gradient(135deg, rgba(226, 180, 67, .16), rgba(9, 19, 16, .98));
}

.hidden-answer p {
    margin: 0;
    font-size: 16px;
}

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

.hidden-grid + .hidden-grid,
.hidden-grid:nth-of-type(5) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidden-priority {
    border-color: rgba(68, 201, 130, .35);
}

.hidden-section-heading {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.hidden-controls {
    justify-content: space-between;
    margin-bottom: 10px;
}

.hidden-controls label {
    display: grid;
    gap: 6px;
    min-width: min(100%, 440px);
    color: #d8e7df;
    font-weight: 800;
}

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

.hidden-count,
.hidden-progress-text {
    min-height: 22px;
    margin-bottom: 8px;
    color: #b8c9c1;
    font-weight: 800;
}

.hidden-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hidden-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
}

.hidden-table th,
.hidden-table td {
    padding: 10px 11px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.hidden-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #14281f;
    color: #f5d882;
    font-size: 12px;
    text-transform: uppercase;
}

.hidden-table td {
    color: #d8e7df;
}

.hidden-table tr:last-child td {
    border-bottom: 0;
}

.hidden-check-cell {
    width: 72px;
}

.hidden-check {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #0a1411;
}

.hidden-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.hidden-area,
.hidden-item {
    font-weight: 900;
    color: #fff;
}

.hidden-phase,
.hidden-access {
    font-weight: 800;
    color: #f5d882;
}

.hidden-tip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hidden-tip-grid article {
    min-width: 0;
    border: 1px solid rgba(139, 160, 150, .24);
    border-radius: 8px;
    background: rgba(8, 16, 13, .52);
    padding: 14px;
}

.hidden-tip-grid h3 {
    margin-bottom: 8px;
}

@media (max-width: 920px) {
    .hidden-hero,
    .hidden-answer,
    .hidden-grid,
    .hidden-grid + .hidden-grid,
    .hidden-grid:nth-of-type(5),
    .hidden-tip-grid {
        grid-template-columns: 1fr;
    }

    .hidden-hero-copy h2 {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .hidden-hero-copy,
    .hidden-fast-card,
    .hidden-panel {
        padding: 14px;
    }

    .hidden-hero-copy h2 {
        font-size: 28px;
    }

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

    .hidden-links a,
    .hidden-button-row button,
    .hidden-reset {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
