.choice-group {
    padding: 14px;
    border: 1px solid #aebbb1;
    border-radius: 10px;
}

.choice-group legend {
    padding: 0 6px;
    font-weight: 700;
}

.choice-group > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.choice-group label {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    background: var(--soft);
    border-radius: 8px;
    font-weight: 500;
}

.choice-group input[type="checkbox"] {
    width: 22px;
    min-height: 22px;
    margin: 0;
    padding: 0;
    accent-color: var(--green);
}

.calculation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    color: #123d22;
    background: #e4f4e8;
    border: 1px solid #b8ddc1;
    border-radius: 10px;
}

.calculation-card span {
    font-size: 13px;
}

.calculation-card strong {
    font-size: 18px;
}

.calculation-card output {
    font-variant-numeric: tabular-nums;
}

.capture-control {
    display: grid;
    gap: 8px;
    padding: 15px;
    background: #f1f7f2;
    border: 1px solid #b8d3be;
    border-radius: 12px;
    font-weight: 700;
}

.capture-control input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.capture-button {
    min-height: 52px;
    color: white;
    background: var(--green);
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-size: 17px;
    font-weight: 800;
}

.capture-control small {
    color: var(--muted);
    font-weight: 500;
}

.video-capture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.video-capture-grid figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.video-capture-grid video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #071a0f;
}

.video-capture-grid figcaption,
.video-capture-grid form {
    padding: 8px 10px;
}

.video-capture-grid button {
    color: var(--danger);
    background: transparent;
    border: 0;
    text-decoration: underline;
}

.review-link {
    color: #f5cd6c;
    font-weight: 700;
    text-decoration: none;
}

.home-return-link {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.anomaly-action {
    margin-bottom: 18px;
}

.anomaly-item {
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.anomaly-item div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.anomaly-item span,
.anomaly-item small {
    color: var(--muted);
}

.anomaly-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
}

.anomaly-thumbs img {
    width: 110px;
    height: 82px;
    object-fit: cover;
    border-radius: 8px;
}

.review-actions {
    display: grid;
    gap: 18px;
    padding: 24px;
    margin: 24px 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.review-actions h2 {
    margin: 0;
}

.reject-form {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.locked-note.rejected {
    color: #7c5a00;
    background: #fff2c7;
}

.stage-dots i.rejected {
    background: #d87b72;
}

.status.regional_approved,
.status.hq_approved,
.status.published {
    color: #17622d;
    background: #e4f4e8;
}

.status.rejected {
    color: #8c2d25;
    background: #ffedeb;
}

.apply-demo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px;
    margin-bottom: 24px;
    color: white;
    background: linear-gradient(135deg, var(--dark), var(--green));
    border-radius: 18px;
}

.apply-demo-banner h2,
.apply-demo-banner p {
    margin: 4px 0;
}

.apply-demo-banner p {
    color: rgb(255 255 255 / 72%);
}

.status.pending {
    color: #7c5a00;
    background: #fff2c7;
}

.status.approved {
    color: #17622d;
    background: #e4f4e8;
}

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

.landing-action {
    padding: 28px;
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgb(10 45 26 / 7%);
}

.landing-action.primary {
    color: white;
    background: linear-gradient(135deg, var(--dark), var(--green));
}

.landing-action > span {
    color: var(--gold);
    font-weight: 800;
}

.landing-action h2 {
    margin: 18px 0 6px;
}

.landing-action p {
    margin: 0;
    color: var(--muted);
}

.landing-action.primary p {
    color: rgb(255 255 255 / 72%);
}

.status-query-panel {
    max-width: 620px;
    padding: 24px;
    margin: 28px 0 60px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.application-hint {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.application-hint a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 680px) {
    .apply-demo-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-action-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .choice-group > div {
        grid-template-columns: 1fr;
    }

    .calculation-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .video-capture-grid {
        grid-template-columns: 1fr;
    }
}
