:root {
    --blue: #092b63;
    --blue-2: #0d3f86;
    --gold: #c9a227;
    --gold-light: #e7cb68;
    --page: #f5f7fb;
    --surface: #ffffff;
    --surface-2: #eef2f8;
    --text: #09152a;
    --muted: #5c6677;
    --border: #d7dce5;
    --yes: #0d3f86;
    --no: #727b89;
}

html[data-theme="dark"] {
    --page: #050a12;
    --surface: #09111e;
    --surface-2: #0d192b;
    --text: #ffffff;
    --muted: #aab5c7;
    --border: #24344d;
    --yes: #e7cb68;
    --no: #8290a4;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    transition: background .2s, color .2s;
}

main {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    padding: 38px 0 100px;
}

header,
section {
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 18px;
}

header {
    position: relative;
    overflow: hidden;
    padding: 54px;
    color: white;
    border-top: 6px solid var(--gold);
    background:
        linear-gradient(120deg, rgba(9,43,99,.98), rgba(13,63,134,.93)),
        var(--blue);
}

header::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -170px;
    top: -220px;
    border: 2px solid rgba(231,203,104,.35);
    border-radius: 50%;
}

.label,
.number,
.notice,
.origin {
    font-weight: 900;
    letter-spacing: .14em;
    font-size: 11px;
    text-transform: uppercase;
}

.label {
    color: var(--gold-light);
}

.round {
    position: absolute;
    right: 45px;
    top: 45px;
    padding: 10px 14px;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    font-weight: 800;
}

h1 {
    margin: 34px 0 25px;
    font-size: clamp(52px, 8vw, 100px);
    line-height: .86;
    letter-spacing: -.06em;
}

header .lead {
    max-width: 720px;
    color: rgba(255,255,255,.82);
}

.notice {
    margin-top: 30px;
    color: var(--gold-light);
}

section {
    padding: 42px;
}

.number,
.origin {
    color: var(--gold);
}

h2 {
    margin: 9px 0;
    font-size: clamp(30px, 5vw, 50px);
    letter-spacing: -.04em;
}

.description {
    max-width: 800px;
    color: var(--muted);
    line-height: 1.6;
}

.theme-toggle {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 5px;
    padding: 5px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.theme-toggle button {
    border: 0;
    padding: 10px 13px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-weight: 800;
}

.theme-toggle button.active {
    background: var(--blue);
    color: white;
}

.category-group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 36px 0 15px;
    color: var(--blue-2);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

html[data-theme="dark"] .category-group-title {
    color: var(--gold-light);
}

.category-group-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

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

.category {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 23px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    background: var(--surface);
}

.category.historical-winner {
    border-top-color: var(--gold);
}

.category h3 {
    margin: 8px 0 10px;
    font-size: 22px;
}

.category-description {
    flex: 1;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.past-winner {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-left: 3px solid var(--gold);
    background: var(--surface-2);
}

.past-winner small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.past-winner strong {
    color: var(--text);
}

.no-winner {
    color: var(--muted);
    font-size: 13px;
}

.choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.choices label {
    padding: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 900;
}

.choices label:has(input:checked) {
    color: white;
    border-color: var(--blue);
    background: var(--blue);
}

html[data-theme="dark"] .choices label:has(input:checked) {
    color: #06101e;
    border-color: var(--gold);
    background: var(--gold-light);
}

.choices input {
    margin-right: 8px;
}

.suggestion {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 17px;
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--surface-2);
    font-size: 16px;
}

button {
    cursor: pointer;
    font-weight: 900;
}

.add,
.suggestion button {
    padding: 14px 18px;
    border: 1px solid var(--gold);
    color: var(--text);
    background: var(--surface);
}

.methods {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.method {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
}

.method:has(input:checked) {
    border: 2px solid var(--gold);
    background: var(--surface-2);
}

.method strong {
    color: var(--blue-2);
    font-size: 20px;
}

html[data-theme="dark"] .method strong {
    color: var(--gold-light);
}

.method p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.5;
}

.email {
    display: block;
    max-width: 650px;
    margin-top: 25px;
}

.submit {
    width: 100%;
    margin-top: 15px;
    padding: 22px;
    border: 0;
    color: white;
    background: var(--blue);
    font-size: 17px;
}

.submit:hover {
    outline: 3px solid var(--gold);
}

.flash {
    padding: 18px;
    margin-bottom: 18px;
    color: var(--text);
    border: 1px solid var(--gold);
    background: var(--surface);
}

@media (max-width: 720px) {
    main {
        width: min(100% - 18px, 1180px);
        padding-top: 10px;
    }

    header,
    section {
        padding: 25px;
    }

    .round {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .categories {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   DCA GOLD PASS
   ========================================================== */

header {
    border: 2px solid var(--gold);
    border-top: 8px solid var(--gold);
}

header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
}

section {
    border-top: 3px solid var(--gold);
}

.number {
    display: inline-block;
    padding: 7px 10px;
    color: var(--gold-light);
    background: var(--blue);
    border: 1px solid var(--gold);
}

.category {
    border-top-width: 4px;
    border-top-color: var(--gold);
}

.category .origin {
    color: var(--gold);
}

.past-winner {
    border-left: 4px solid var(--gold);
}

.past-winner small {
    color: var(--gold);
}

.suggested-category {
    border-top-color: var(--gold);
}

.category-group-title {
    color: var(--gold);
}

.category-group-title::after {
    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}

.method {
    border-left: 4px solid var(--gold);
}

.add {
    color: var(--gold);
    border: 1px solid var(--gold);
}

.submit {
    color: #06101e;
    background: linear-gradient(
        90deg,
        #b78b16,
        #efd46f,
        #c49a24
    );
}

.submit:hover {
    outline: 3px solid var(--blue-2);
}

html[data-theme="dark"] .submit:hover {
    outline-color: white;
}

.winner-detail {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}


/* ==========================================================
   DCA RESPONSIVE + CONTRAST PASS
   ========================================================== */

/* Let the site actually use wider screens */
main {
    width: min(1500px, calc(100% - 48px));
}

/* ---------- DARK MODE ---------- */

html[data-theme="dark"] {
    --page: #02060d;
    --surface: #07111f;
    --surface-2: #0c1b30;
    --text: #ffffff;
    --muted: #c0c9d6;
    --border: #28405f;
}

/* Major sections should separate from the page */
html[data-theme="dark"] section {
    background: #07111f;
    border-left: 1px solid #28405f;
    border-right: 1px solid #28405f;
    border-bottom: 1px solid #28405f;
}

/* Cards are darker than their section */
html[data-theme="dark"] .category {
    background: #020812;
    border-left: 1px solid #304865;
    border-right: 1px solid #304865;
    border-bottom: 1px solid #304865;
}

/* Winner box uses BLUE so it separates from black card */
html[data-theme="dark"] .past-winner {
    background: #0b3471;
    border-left: 5px solid #e0b72f;
}

/* Voting controls get their own surface */
html[data-theme="dark"] .choices label {
    background: #0a1525;
    border: 1px solid #385273;
}

html[data-theme="dark"] .choices label:hover {
    border-color: #e0b72f;
    background: #102544;
}

html[data-theme="dark"] .choices label:has(input:checked) {
    background: #e0b72f;
    border-color: #e0b72f;
    color: #06101e;
}

/* ---------- LIGHT MODE ---------- */

html[data-theme="light"] {
    --page: #e9edf4;
    --surface: #ffffff;
    --surface-2: #edf3fb;
    --text: #07152b;
    --muted: #526174;
    --border: #b7c3d2;
}

html[data-theme="light"] section {
    background: #ffffff;
}

html[data-theme="light"] .category {
    background: #ffffff;
    border-left: 1px solid #b7c3d2;
    border-right: 1px solid #b7c3d2;
    border-bottom: 1px solid #b7c3d2;
}

html[data-theme="light"] .past-winner {
    background: #eaf1fb;
    border-left: 5px solid #c59b1e;
}

html[data-theme="light"] .choices label {
    background: #f4f7fb;
    border-color: #aebbc9;
}

html[data-theme="light"] .choices label:hover {
    border-color: #092b63;
}

html[data-theme="light"] .choices label:has(input:checked) {
    background: #092b63;
    border-color: #092b63;
    color: #ffffff;
}

/* ---------- WINNER DISPLAY ---------- */

.past-winner {
    padding: 15px 17px;
}

.past-winner small {
    color: var(--gold-light);
    font-size: 11px;
}

html[data-theme="light"] .past-winner small {
    color: #8a6710;
}

.past-winner strong {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

.winner-detail {
    margin-top: 4px;
    font-size: 13px;
}

.no-winner {
    display: block;
    color: var(--text);
    font-weight: 800;
    font-size: 15px;
}

/* ---------- RESPONSIVE GRID ---------- */

/* Big desktop */
@media (min-width: 1450px) {
    main {
        width: min(1650px, calc(100% - 80px));
    }

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

    header {
        padding: 65px;
    }
}

/* Very large displays */
@media (min-width: 1900px) {
    main {
        width: min(1800px, calc(100% - 100px));
    }

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

/* Normal desktop */
@media (min-width: 900px) and (max-width: 1449px) {
    .categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile / tablet */
@media (max-width: 899px) {
    main {
        width: calc(100% - 20px);
    }

    .categories {
        grid-template-columns: 1fr;
    }
}


/* Multiple historical winners */
.winner-entry + .winner-entry {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(231, 203, 104, .45);
}

.no-winner-box {
    display: flex;
    align-items: center;
    min-height: 58px;
}


/* ==========================================================
   ROUND 2
   ========================================================== */

.preview-warning {
    display: inline-block;
    margin-top: 28px;
    padding: 10px 14px;
    color: #07111f;
    background: var(--gold-light);
    border: 2px solid var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.round2-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0 10px;
    padding: 13px 17px;
    border: 1px solid var(--gold);
    background: var(--surface-2);
}

.round2-counter strong {
    color: var(--gold);
    font-size: 28px;
}

.round2-counter span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.round2-category {
    cursor: pointer;
    padding: 0;
}

.round2-category > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.round2-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 23px;
}

.round2-category:has(.category-checkbox:checked) {
    border-color: var(--gold);
    outline: 2px solid var(--gold);
}

.round2-category:has(.category-checkbox:checked)
.round2-card-content {
    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 39, .13),
            transparent 55%
        );
}

.select-category {
    margin-top: auto;
    padding: 14px;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.checked-text {
    display: none;
}

.round2-category:has(.category-checkbox:checked)
.unchecked-text {
    display: none;
}

.round2-category:has(.category-checkbox:checked)
.checked-text {
    display: inline;
}

.round2-category:has(.category-checkbox:checked)
.select-category {
    color: #07111f;
    background: var(--gold-light);
}

.community-choice {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
    padding: 18px 20px;
    color: white;
    background: var(--blue);
    border-left: 5px solid var(--gold);
}

.community-choice span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.preview-submit {
    opacity: .55;
    cursor: not-allowed;
}


/* ==========================================================
   DCA ADMIN
   ========================================================== */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.admin-stat {
    padding: 24px;
    background: var(--surface-2);
    border: 1px solid var(--gold);
}

.admin-stat strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 6px;
}

.admin-stat span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.admin-results {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.admin-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 17px 20px;

    background: var(--surface-2);
    border-left: 4px solid var(--gold);
}

.vote-numbers {
    display: flex;
    gap: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.yes-count {
    color: var(--gold-light);
}

.no-count {
    color: var(--muted);
}

.moderation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.moderation-card {
    padding: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.moderation-card h3 {
    margin: 8px 0 15px;
    font-size: 24px;
}

.moderation-status {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .07em;
}

.moderation-status strong {
    color: var(--gold);
}

.admin-label {
    display: block;
    margin: 15px 0 7px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.admin-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;

    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
}

.admin-save {
    width: 100%;
    margin-top: 18px;
    padding: 13px;

    color: #07111f;
    background: var(--gold-light);
    border: 1px solid var(--gold);

    font-weight: 900;
    cursor: pointer;
}

.empty-admin {
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed var(--gold);
    color: var(--muted);
}

.admin-preview-link {
    display: inline-block;
    width: auto;
    text-decoration: none;
}

@media (max-width: 900px) {
    .admin-stats,
    .moderation-list {
        grid-template-columns: 1fr;
    }

    .admin-result {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ==========================================================
   ADMIN ROUND 1 — DASHBOARD POLISH
   ========================================================== */

body:has(.admin-results) section {
    padding: 54px 50px;
}

body:has(.admin-results) section + section {
    margin-top: 24px;
}


/* OVERVIEW */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.admin-stat {
    min-height: 135px;
    padding: 25px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
}

.admin-stat strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: clamp(36px, 4vw, 58px);
    line-height: .9;
    font-weight: 900;
}

.admin-stat span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}


/* RETURNING CATEGORY RESULTS */

.admin-results {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 30px;
}

.admin-result {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 20px !important;

    min-height: 72px;
    padding: 17px 19px !important;

    background: var(--surface-2) !important;
    border: 1px solid var(--border) !important;
    border-left: 4px solid var(--gold) !important;
}

.admin-result > div:first-child {
    min-width: 0;
}

.admin-result > div:first-child > strong,
.admin-result > strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}


/* YES / NO */

.vote-numbers {
    display: flex !important;
    align-items: center;
    gap: 7px !important;
    white-space: nowrap;
}

.yes-count,
.no-count {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-width: 64px;
    padding: 9px 10px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
}

.yes-count {
    color: var(--gold-light) !important;
    background: rgba(201, 162, 39, .10);
    border: 1px solid rgba(201, 162, 39, .55);
}

.no-count {
    color: var(--muted) !important;
    background: var(--surface);
    border: 1px solid var(--border);
}


/* MODERATION */

.moderation-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-top: 30px;
}

.moderation-card {
    padding: 25px !important;
    background: var(--surface-2) !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--gold) !important;
}

.moderation-card h3 {
    margin: 8px 0 8px;
    color: var(--text);
    font-size: 24px;
}

.moderation-status {
    display: inline-block;
    margin: 5px 0 20px;
    padding: 6px 9px;

    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.admin-label {
    display: block;
    margin: 17px 0 7px;

    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.admin-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;

    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);

    font: inherit;
}

.admin-input:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
}

.admin-save {
    width: 100%;
    margin-top: 20px;
    padding: 14px;

    color: #07111f;
    background: var(--gold-light);
    border: 1px solid var(--gold);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    cursor: pointer;
}


/* EMPTY STATE */

.empty-admin {
    margin-top: 25px;
    padding: 30px;

    color: var(--muted);
    background: var(--surface-2);

    border: 1px dashed var(--gold);
    text-align: center;
    font-weight: 700;
}


/* LIGHT MODE */

html[data-theme="light"] .admin-stat,
html[data-theme="light"] .admin-result,
html[data-theme="light"] .moderation-card {
    background: #ffffff !important;
    border-color: #cbd3df;
}

html[data-theme="light"] .yes-count {
    color: #725700 !important;
    background: #fff8dc;
    border-color: var(--gold);
}

html[data-theme="light"] .no-count,
html[data-theme="light"] .moderation-status,
html[data-theme="light"] .admin-input {
    background: #f0f3f7;
    border-color: #cbd3df;
}


/* WIDE SCREENS */

@media (min-width: 1500px) {
    .admin-results {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .moderation-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}


/* TABLET */

@media (max-width: 1050px) {
    .admin-results,
    .moderation-list {
        grid-template-columns: 1fr !important;
    }
}


/* MOBILE */

@media (max-width: 700px) {
    body:has(.admin-results) section {
        padding: 35px 22px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-result {
        grid-template-columns: 1fr !important;
        gap: 13px !important;
    }

    .vote-numbers {
        width: 100%;
    }

    .yes-count,
    .no-count {
        flex: 1;
    }
}


/* Round 2 admin controls */

.round2-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.round2-admin-actions form {
    margin: 0;
}

.round2-admin-actions .submit {
    width: auto;
    margin: 0;
}


/* Round 2 admin controls */

.round2-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.round2-admin-actions form {
    margin: 0;
}

.round2-admin-actions .submit {
    width: auto;
    margin: 0;
}



/* ==========================================================
   DCA ADMIN NAVIGATION
   ========================================================== */

.dca-admin-nav {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: min(1500px, calc(100% - 48px));
    box-sizing: border-box;

    margin: 0 auto;
    padding: 15px 20px;

    background: #061a38;
    border-bottom: 3px solid var(--gold);
}

.dca-admin-brand {
    flex-shrink: 0;

    color: var(--gold-light);
    text-decoration: none;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
}

.dca-admin-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dca-admin-links a {
    padding: 10px 13px;

    color: #d9e3f3;
    text-decoration: none;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;

    transition:
        background .15s ease,
        color .15s ease,
        border-color .15s ease;
}

.dca-admin-links a:hover {
    color: #ffffff;
    border-color: rgba(231, 203, 104, .5);
}

.dca-admin-links a.active {
    color: #07111f;
    background: var(--gold-light);
    border-color: var(--gold);
}


/* LIGHT MODE */

html[data-theme="light"] .dca-admin-nav {
    background: #092b63;
}

html[data-theme="light"] .dca-admin-links a {
    color: #e8eef8;
}

html[data-theme="light"] .dca-admin-links a.active {
    color: #07111f;
}


/* MOBILE */

@media (max-width: 750px) {

    .dca-admin-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;

        width: calc(100% - 24px);
        padding: 14px;
    }

    .dca-admin-links {
        width: 100%;
        overflow-x: auto;
    }

    .dca-admin-links a {
        flex-shrink: 0;
    }
}



/* ==========================================================
   DCA ADMIN DROPDOWN
   ========================================================== */

.dca-admin-menu {
    position: relative;
}

.dca-admin-menu-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 13px;

    color: var(--gold-light);
    background: transparent;

    border: 1px solid rgba(231, 203, 104, .45);

    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;

    cursor: pointer;
}

.dca-admin-menu-button:hover,
.dca-admin-menu.open .dca-admin-menu-button {
    color: #07111f;
    background: var(--gold-light);
    border-color: var(--gold);
}

.admin-chevron {
    font-size: 12px;
    transition: transform .15s ease;
}

.dca-admin-menu.open .admin-chevron {
    transform: rotate(180deg);
}


/* DROPDOWN PANEL */

.dca-admin-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 500;

    display: none;

    width: 285px;
    padding: 8px;

    background: #061a38;
    border: 1px solid var(--gold);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.dca-admin-menu.open .dca-admin-dropdown {
    display: block;
}

.admin-dropdown-label {
    padding: 10px 12px 8px;

    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.dca-admin-dropdown a {
    display: block;

    padding: 12px;

    color: #ffffff;
    text-decoration: none;

    border-left: 3px solid transparent;
}

.dca-admin-dropdown a + a {
    border-top: 1px solid rgba(255,255,255,.08);
}

.dca-admin-dropdown a span {
    display: block;

    margin-bottom: 3px;

    color: var(--gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.dca-admin-dropdown a:hover {
    background: rgba(255,255,255,.07);
    border-left-color: var(--gold);
}

.dca-admin-dropdown a.active {
    background: rgba(201,162,39,.12);
    border-left-color: var(--gold);
}

.dca-admin-dropdown a.disabled {
    opacity: .38;
    cursor: default;
}


/* LIGHT MODE */

html[data-theme="light"] .dca-admin-dropdown {
    background: #ffffff;
    border-color: var(--gold);
}

html[data-theme="light"] .dca-admin-dropdown a {
    color: #071a38;
}

html[data-theme="light"] .dca-admin-dropdown a + a {
    border-top-color: #dce2eb;
}

html[data-theme="light"] .dca-admin-dropdown a:hover,
html[data-theme="light"] .dca-admin-dropdown a.active {
    background: #eef3fa;
}


/* MOBILE */

@media (max-width: 750px) {

    .dca-admin-menu {
        width: 100%;
    }

    .dca-admin-menu-button {
        width: 100%;
        justify-content: space-between;
    }

    .dca-admin-dropdown {
        position: relative;
        top: 6px;

        width: 100%;
        box-sizing: border-box;

        box-shadow: none;
    }
}



/* ==========================================================
   DCA ADMIN DROPDOWN
   ========================================================== */

.dca-admin-menu {
    position: relative;
}

.dca-admin-menu-button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 13px;

    color: var(--gold-light);
    background: transparent;

    border: 1px solid rgba(231, 203, 104, .45);

    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;

    cursor: pointer;
}

.dca-admin-menu-button:hover,
.dca-admin-menu.open .dca-admin-menu-button {
    color: #07111f;
    background: var(--gold-light);
    border-color: var(--gold);
}

.admin-chevron {
    font-size: 12px;
    transition: transform .15s ease;
}

.dca-admin-menu.open .admin-chevron {
    transform: rotate(180deg);
}


/* DROPDOWN PANEL */

.dca-admin-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 500;

    display: none;

    width: 285px;
    padding: 8px;

    background: #061a38;
    border: 1px solid var(--gold);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.dca-admin-menu.open .dca-admin-dropdown {
    display: block;
}

.admin-dropdown-label {
    padding: 10px 12px 8px;

    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.dca-admin-dropdown a {
    display: block;

    padding: 12px;

    color: #ffffff;
    text-decoration: none;

    border-left: 3px solid transparent;
}

.dca-admin-dropdown a + a {
    border-top: 1px solid rgba(255,255,255,.08);
}

.dca-admin-dropdown a span {
    display: block;

    margin-bottom: 3px;

    color: var(--gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.dca-admin-dropdown a:hover {
    background: rgba(255,255,255,.07);
    border-left-color: var(--gold);
}

.dca-admin-dropdown a.active {
    background: rgba(201,162,39,.12);
    border-left-color: var(--gold);
}

.dca-admin-dropdown a.disabled {
    opacity: .38;
    cursor: default;
}


/* LIGHT MODE */

html[data-theme="light"] .dca-admin-dropdown {
    background: #ffffff;
    border-color: var(--gold);
}

html[data-theme="light"] .dca-admin-dropdown a {
    color: #071a38;
}

html[data-theme="light"] .dca-admin-dropdown a + a {
    border-top-color: #dce2eb;
}

html[data-theme="light"] .dca-admin-dropdown a:hover,
html[data-theme="light"] .dca-admin-dropdown a.active {
    background: #eef3fa;
}


/* MOBILE */

@media (max-width: 750px) {

    .dca-admin-menu {
        width: 100%;
    }

    .dca-admin-menu-button {
        width: 100%;
        justify-content: space-between;
    }

    .dca-admin-dropdown {
        position: relative;
        top: 6px;

        width: 100%;
        box-sizing: border-box;

        box-shadow: none;
    }
}



/* ==========================================================
   LITEFEET LEDGER — GLOBAL NAVIGATION
   ========================================================== */

.awards-global-nav {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 68px;
    padding: 0 28px;
    box-sizing: border-box;
    background: #0b2c5f;
    border-bottom: 2px solid var(--awards-gold, #d8ad27);
}

.awards-brand {
    flex: 0 0 auto;
    color: var(--awards-gold-light, #f0d778);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .11em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.awards-nav-groups {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-button,
.nav-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 68px;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.nav-dropdown-button:hover,
.nav-direct-link:hover,
.nav-dropdown.open .nav-dropdown-button {
    color: var(--awards-gold-light, #f0d778);
    border-bottom-color: var(--awards-gold, #d8ad27);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
    display: none;
    min-width: 220px;
    padding: 7px;
    background: #0b2c5f;
    border: 1px solid var(--awards-gold, #d8ad27);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 13px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: #071a38;
    background: var(--awards-gold-light, #f0d778);
}

.global-theme-control {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    white-space: nowrap;
}

.global-theme-toggle {
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.theme-toggle-track {
    position: relative;
    display: block;
    width: 36px;
    height: 19px;
    border: 1px solid var(--awards-gold, #d8ad27);
    border-radius: 20px;
}

.theme-toggle-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 13px;
    height: 13px;
    background: var(--awards-gold-light, #f0d778);
    border-radius: 50%;
    transition: transform .2s ease;
}

html[data-theme="dark"] .theme-toggle-dot {
    transform: translateX(17px);
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--awards-gold, #d8ad27);
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--awards-gold-light, #f0d778);
    transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 1180px) {
    .awards-global-nav {
        min-height: 64px;
        padding: 0 20px;
    }

    .awards-brand {
        font-size: 13px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .awards-nav-groups {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-height: calc(100vh - 64px);
        padding: 8px 20px 18px;
        box-sizing: border-box;
        overflow-y: auto;
        background: #0b2c5f;
        border-bottom: 2px solid var(--awards-gold, #d8ad27);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .24);
    }

    .awards-global-nav.mobile-nav-open .awards-nav-groups {
        display: flex;
    }

    .awards-nav-groups > * {
        width: 100%;
        box-sizing: border-box;
    }

    .nav-dropdown-button,
    .nav-direct-link {
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        font-size: 11px;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0 0 6px;
        padding: 3px 0 3px 12px;
        box-sizing: border-box;
        border: 0;
        border-left: 2px solid var(--awards-gold, #d8ad27);
        box-shadow: none;
    }

    .global-theme-control {
        min-height: 54px;
    }

    .awards-global-nav.mobile-nav-open
    .mobile-nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .awards-global-nav.mobile-nav-open
    .mobile-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .awards-global-nav.mobile-nav-open
    .mobile-nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 520px) {
    .awards-global-nav {
        min-height: 60px;
        padding: 0 14px;
    }

    .awards-brand {
        font-size: 11px;
        letter-spacing: .08em;
    }

    .mobile-nav-toggle {
        width: 38px;
        height: 38px;
    }

    .awards-nav-groups {
        max-height: calc(100vh - 60px);
        padding: 6px 14px 16px;
    }
}

/* =========================================================
   LITEFEET AWARDS — ARCHIVE CONTRIBUTION FORM
   ========================================================= */

.lfa-contribution-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-top: 34px;
}

.lfa-contribution-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;

    min-width: 0;

    color: var(--awards-text);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.lfa-contribution-form input,
.lfa-contribution-form select,
.lfa-contribution-form textarea {
    box-sizing: border-box;

    width: 100%;

    margin: 0;
    padding: 15px 16px;

    color: var(--awards-text);
    background: var(--awards-surface-alt);

    border: 1px solid var(--awards-border);
    border-radius: 0;

    font: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;

    appearance: none;
}

.lfa-contribution-form select {
    min-height: 52px;

    cursor: pointer;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--awards-gold) 50%
        ),
        linear-gradient(
            135deg,
            var(--awards-gold) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.lfa-contribution-form textarea {
    min-height: 125px;

    resize: vertical;
}

.lfa-contribution-form input:focus,
.lfa-contribution-form select:focus,
.lfa-contribution-form textarea:focus {
    border-color: var(--awards-gold);

    outline: 2px solid rgba(216, 173, 39, .18);
    outline-offset: 0;
}

.lfa-contribution-form label:nth-of-type(5),
.lfa-contribution-form label:nth-of-type(6) {
    grid-column: span 1;
}

.lfa-contribution-form label:nth-of-type(7) {
    grid-column: 1 / -1;
}

.lfa-contribution-form button[type="submit"] {
    grid-column: 1 / -1;

    width: 100%;

    margin-top: 8px;
    padding: 17px 22px;

    color: #071a38;
    background: var(--awards-gold);

    border: 1px solid var(--awards-gold);

    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;

    cursor: pointer;
}

.lfa-contribution-form button[type="submit"]:hover {
    filter: brightness(.96);
}

html[data-theme="dark"] .lfa-contribution-form input,
html[data-theme="dark"] .lfa-contribution-form select,
html[data-theme="dark"] .lfa-contribution-form textarea {
    color: var(--awards-text);
    background: var(--awards-surface-alt);
}


/* Make the archive section feel like the DCA sections. */

.archive-status-card {
    margin-top: 22px;
    padding: 48px 50px;

    color: var(--awards-text);
    background: var(--awards-surface);

    border-top: 4px solid var(--awards-gold);
    border-right: 1px solid var(--awards-border);
    border-bottom: 1px solid var(--awards-border);
    border-left: 1px solid var(--awards-border);
}

.archive-status-card h2 {
    margin: 14px 0 20px;

    font-size: clamp(34px, 4.5vw, 62px);
    line-height: .95;
    letter-spacing: -.035em;
}

.archive-status-card > p {
    max-width: 900px;

    color: var(--awards-muted);

    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 760px) {

    .lfa-contribution-form {
        grid-template-columns: 1fr;
    }

    .lfa-contribution-form label,
    .lfa-contribution-form label:nth-of-type(5),
    .lfa-contribution-form label:nth-of-type(6),
    .lfa-contribution-form label:nth-of-type(7),
    .lfa-contribution-form button[type="submit"] {
        grid-column: 1;
    }

    .archive-status-card {
        padding: 30px 24px;
    }
}


/* LFA simplified archive form */

.lfa-contribution-form .lfa-email-field {
    grid-column: 1 / -1;
}



/* ==========================================================
   LITEFEET LEDGER — SHARED FOOTER
   ========================================================== */

.ledger-footer {
    width: 100%;
    margin-top: 72px;
    background: #0b2c5f;
    color: #ffffff;
    border-top: 3px solid var(--awards-gold, #d8ad27);
}

.ledger-footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 48px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 38px;
}

.ledger-footer-brand a,
.ledger-footer-heading {
    color: var(--awards-gold-light, #f0d778);
    font-weight: 900;
    letter-spacing: .09em;
}

.ledger-footer-brand a {
    font-size: 15px;
    text-decoration: none;
}

.ledger-footer-brand p,
.ledger-footer-newsletter p {
    max-width: 420px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.6;
}

.ledger-footer-heading {
    font-size: 13px;
}

.ledger-newsletter-form {
    display: flex;
    width: 100%;
    margin-top: 16px;
}

.ledger-newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    box-sizing: border-box;
    background: #ffffff;
    color: #071a38;
    border: 1px solid #ffffff;
    border-radius: 0;
    font: inherit;
    font-size: 12px;
}

.ledger-newsletter-form button {
    min-height: 46px;
    padding: 0 18px;
    background: var(--awards-gold, #d8ad27);
    color: #071a38;
    border: 1px solid var(--awards-gold, #d8ad27);
    border-radius: 0;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    cursor: pointer;
}

.ledger-newsletter-form button:hover {
    background: var(--awards-gold-light, #f0d778);
}

.ledger-newsletter-message {
    min-height: 18px;
    margin-top: 8px !important;
    font-size: 11px !important;
}

.ledger-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.ledger-footer-links a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.ledger-footer-links a:hover {
    color: var(--awards-gold-light, #f0d778);
}

.ledger-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 22px;
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 10px;
    letter-spacing: .035em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 820px) {
    .ledger-footer {
        margin-top: 52px;
    }

    .ledger-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        width: min(100% - 32px, 620px);
        padding: 38px 0 30px;
    }

    .ledger-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        width: min(100% - 32px, 620px);
    }
}

@media (max-width: 480px) {
    .ledger-newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .ledger-newsletter-form button {
        width: 100%;
    }
}



/* ==========================================================
   DCA ROUND 2 — LIVE PREVIEW
   ========================================================== */

.round2-live-preview-label {
    display: inline-flex;
    margin: 14px 0 4px;
    padding: 7px 11px;
    background: var(--awards-gold, #d8ad27);
    color: #071a38;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.round2-preview-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.round2-preview-card {
    padding: 22px;
    border: 1px solid var(--border);
    background: var(--card);
}

.round2-preview-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.round2-preview-card h3 {
    margin: 6px 0 0;
}

.round2-history-label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.round2-status {
    max-width: 150px;
    padding: 6px 8px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.round2-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.round2-result {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--border);
}

.round2-result span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.round2-result strong {
    font-size: 24px;
}

.round2-result small,
.round2-response-count,
.round2-method-result small,
.round2-suggestion-item span {
    opacity: .7;
    font-size: 10px;
}

.round2-result-bar,
.round2-method-bar {
    position: relative;
    width: 100%;
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
    background: rgba(128, 128, 128, .22);
}

.round2-result-bar-keep,
.round2-method-bar span {
    display: block;
    height: 100%;
    background: var(--gold);
}

.round2-response-count {
    margin-top: 8px;
}

.round2-suggestion-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.round2-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    background: var(--card);
}

.round2-empty-state {
    margin-top: 24px;
    padding: 24px;
    border: 1px dashed var(--border);
    opacity: .7;
}

.round2-method-results {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.round2-method-result {
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--card);
}

.round2-method-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.round2-method-heading span {
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
}

.round2-preview-footer .submit {
    display: inline-flex;
    width: auto;
    margin-top: 18px;
    text-decoration: none;
}

@media (max-width: 760px) {
    .round2-preview-grid,
    .round2-method-results {
        grid-template-columns: 1fr;
    }

    .round2-preview-card-top {
        flex-direction: column;
    }

    .round2-status {
        max-width: none;
    }

    .round2-suggestion-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

/* LITEFEET LEDGER — AWARDS CONTROL RESTORE */

/* DCA text/action links */
main a:not(.site-nav a):not(.ledger-footer a),
.round-link,
.archive-link,
.round2-preview-footer .submit {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 44px;
    padding: 11px 16px;
    color: #071a38;
    background: var(--awards-gold, var(--gold, #d8ad27));
    border: 1px solid var(--awards-gold, var(--gold, #d8ad27));
    text-decoration: none;
    font-weight: 900;
    line-height: 1.15;
    cursor: pointer;
}

main a:not(.site-nav a):not(.ledger-footer a):hover,
.round-link:hover,
.archive-link:hover,
.round2-preview-footer .submit:hover {
    background: var(--awards-gold-light, var(--gold-light, #f0d778));
    text-decoration: none;
}

/* DCA category KEEP / REMOVE controls */
.choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.choices label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 16px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-weight: 900;
    cursor: pointer;
}

.choices label:hover,
.choices label:has(input:checked) {
    color: #071a38;
    background: var(--gold-light);
    border-color: var(--gold);
}

.choices input {
    width: auto;
    margin: 0 8px 0 0;
    accent-color: var(--gold);
}

/* DCA add/remove suggestion buttons */
.add,
.suggestion button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--gold);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

/* DCA submit */
.submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 15px;
    padding: 16px 22px;
    color: #071a38;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    cursor: pointer;
}

/* LFA fields */
.lfa-contribution-form input,
.lfa-contribution-form select,
.lfa-contribution-form textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 15px 16px;
    color: var(--awards-text);
    background: var(--awards-surface-alt);
    border: 1px solid var(--awards-border);
    border-radius: 0;
    font: inherit;
    font-size: 15px;
}

.lfa-contribution-form select {
    appearance: auto;
}

.lfa-contribution-form textarea {
    min-height: 125px;
}

/* LFA submit */
.lfa-contribution-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
    padding: 16px 22px;
    color: #071a38;
    background: var(--awards-gold, #d8ad27);
    border: 1px solid var(--awards-gold, #d8ad27);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    cursor: pointer;
}

@media (max-width: 620px) {
    .choices {
        grid-template-columns: 1fr;
    }
}



/* LITEFEET LEDGER — ADMIN CONTROL ROOM */

.ledger-admin-nav {
    padding: 18px clamp(18px, 4vw, 52px);
    color: var(--text);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.ledger-admin-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ledger-admin-nav__brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .05em;
}

.ledger-admin-nav__brand span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .14em;
}

.ledger-admin-nav__logout {
    padding: 9px 12px;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.ledger-admin-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 18px;
}

.ledger-admin-nav__links a {
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
}

.ledger-admin-nav__links a:hover {
    color: var(--gold);
}

.admin-control-room {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding-bottom: 80px;
}

.admin-control-room__header {
    padding-top: 56px;
}

.admin-module-section {
    margin-top: 54px;
}

.admin-section-heading {
    margin-bottom: 20px;
}

.admin-module-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.admin-module-card {
    min-height: 230px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.admin-module-card h3 {
    margin: 18px 0 10px;
    font-size: 20px;
}

.admin-module-card p {
    margin-bottom: 22px;
    line-height: 1.55;
}

.admin-module-card > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    color: #071a38;
    background: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.admin-module-card__status {
    display: inline-flex;
    padding: 5px 8px;
    color: #071a38;
    background: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.admin-module-card--planned {
    opacity: .72;
}

.admin-module-card--planned
.admin-module-card__status {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
}

.admin-lfa-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.admin-lfa-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
}

.admin-lfa-nav a:hover {
    color: #071a38;
    background: var(--gold);
    border-color: var(--gold);
}

.admin-lfa-table-wrap {
    overflow-x: auto;
}

.admin-lfa-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-lfa-table th,
.admin-lfa-table td {
    padding: 13px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.admin-lfa-table th {
    font-size: 10px;
    letter-spacing: .08em;
}

.admin-lfa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.admin-lfa-actions form {
    margin: 0;
}

.admin-lfa-actions button,
.admin-lfa-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    font: inherit;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
}


/* LITEFEET LEDGER — BETA MODE */

.ledger-beta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px clamp(18px, 4vw, 52px);
    color: #071a38;
    background: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.ledger-beta-bar__status,
.ledger-beta-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ledger-beta-dot {
    width: 7px;
    height: 7px;
    background: #071a38;
    border-radius: 50%;
}

.ledger-beta-bar a,
.ledger-beta-bar button {
    color: #071a38;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    font-size: inherit;
    font-weight: 900;
    letter-spacing: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.ledger-beta-bar form {
    margin: 0;
}

.beta-page {
    width: min(1050px, calc(100% - 36px));
    margin: 0 auto;
    padding-bottom: 70px;
}

.beta-hero {
    padding-top: 58px;
}

.beta-status-panel,
.beta-testing-section,
.beta-feedback-preview {
    margin-top: 36px;
    padding: clamp(22px, 4vw, 38px);
    background: var(--surface);
    border: 1px solid var(--border);
}

.beta-status-panel h2,
.beta-testing-section h2,
.beta-feedback-preview h2 {
    margin-top: 10px;
}

.beta-enter-form {
    max-width: 620px;
    margin-top: 24px;
}

.beta-enter-form label {
    display: grid;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
}

.beta-enter-form input {
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 15px;
}

.beta-empty-state {
    margin-top: 20px;
    padding: 22px;
    border: 1px dashed var(--border);
}

.ledger-footer__beta {
    margin-top: 18px;
}

.ledger-footer__beta a {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

@media (max-width: 620px) {
    .ledger-beta-bar {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* LITEFEET LEDGER — BETA FEATURE FLAGS */

.beta-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.beta-feature-card {
    min-height: 205px;
    padding: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.beta-feature-card h3 {
    margin: 16px 0 10px;
}

.beta-feature-card p {
    line-height: 1.5;
}

.beta-feature-card__status,
.beta-feature-badge {
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
}

.beta-feature-badge {
    margin-top: 12px;
    color: #071a38;
    background: var(--gold);
}

.beta-admin-legend {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.beta-admin-legend > div {
    display: grid;
    gap: 6px;
    padding: 15px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12px;
}

.beta-admin-list {
    display: grid;
    gap: 12px;
}

.beta-admin-feature {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(180px, 260px);
    gap: 24px;
    align-items: center;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.beta-admin-feature h2 {
    margin: 8px 0;
}

.beta-admin-feature code {
    font-size: 10px;
}

.beta-admin-feature__form {
    display: grid;
    gap: 10px;
}

.beta-admin-feature__form label {
    display: grid;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.beta-admin-feature__form select,
.beta-admin-feature__form button {
    box-sizing: border-box;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 11px;
    font-weight: 900;
}

.beta-admin-feature__form button {
    color: #071a38;
    background: var(--gold);
    border-color: var(--gold);
    cursor: pointer;
}

@media (max-width: 700px) {
    .beta-admin-feature {
        grid-template-columns: 1fr;
    }
}


/* LITEFEET LEDGER — FEATURE PLACEHOLDERS */

.ledger-feature-page {
    width: min(1100px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0 90px;
}

.ledger-feature-hero {
    max-width: 780px;
    margin-bottom: 42px;
}

.ledger-feature-hero h1 {
    margin: 10px 0 16px;
    font-size: clamp(42px, 8vw, 92px);
    line-height: .92;
    text-transform: uppercase;
}

.ledger-feature-status {
    display: inline-flex;
    margin-top: 18px;
    padding: 6px 9px;
    color: #071a38;
    background: var(--gold);
    border: 1px solid var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ledger-feature-placeholder {
    max-width: 760px;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.ledger-feature-placeholder h2 {
    max-width: 620px;
    margin: 10px 0 14px;
}

.ledger-feature-placeholder p {
    max-width: 650px;
    line-height: 1.6;
}

.ledger-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.ledger-feature-actions a,
.beta-feature-card__action a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 15px;
    color: #071a38;
    background: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.beta-feature-card__action {
    margin-top: 18px;
}


/* LITEFEET LEDGER — BETA FEEDBACK + CHANGELOG */

.admin-beta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.admin-beta-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
}

.admin-beta-nav a:hover {
    color: #071a38;
    background: var(--gold);
    border-color: var(--gold);
}

.beta-feedback-form,
.beta-changelog-form {
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-top: 22px;
}

.beta-feedback-form label,
.beta-changelog-form label {
    display: grid;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.beta-feedback-form select,
.beta-feedback-form textarea,
.beta-changelog-form input,
.beta-changelog-form select,
.beta-changelog-form textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 14px;
}

.beta-feedback-form textarea,
.beta-changelog-form textarea {
    min-height: 150px;
    resize: vertical;
}

.beta-feedback-admin-list,
.beta-changelog-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.beta-feedback-admin-card,
.beta-changelog-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.beta-feedback-admin-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.beta-feedback-admin-card__meta span {
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid var(--border);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.beta-feedback-message {
    white-space: pre-wrap;
    line-height: 1.55;
}

.beta-feedback-status-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
    margin-top: 18px;
}

.beta-feedback-status-form label {
    display: grid;
    gap: 6px;
    min-width: 180px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.beta-feedback-status-form select,
.beta-feedback-status-form button,
.beta-changelog-form button,
.beta-changelog-card button {
    min-height: 42px;
    padding: 10px 12px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
}

.beta-feedback-status-form button,
.beta-changelog-form button {
    color: #071a38;
    background: var(--gold);
    border-color: var(--gold);
    cursor: pointer;
}

.beta-changelog-section {
    margin-top: 36px;
    padding: clamp(22px, 4vw, 38px);
    background: var(--surface);
    border: 1px solid var(--border);
}


/* LITEFEET LEDGER — HEADER THEME CONTROL */

.global-header-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.global-header-controls .global-theme-control {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.global-header-controls .global-theme-control > span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    white-space: nowrap;
}

.global-header-controls .global-theme-toggle {
    flex: 0 0 auto;
}

@media (max-width: 720px) {
    .global-header-controls {
        gap: 9px;
    }

    .global-header-controls .global-theme-control > span {
        display: none;
    }
}


/* LITEFEET LEDGER — DCA EMAIL FIRST + COOLDOWN */

.dca-email-gate,
.dca-returning-voter {
    max-width: 720px;
    margin: 28px auto;
    padding: clamp(24px, 5vw, 42px);
    background: var(--surface);
    border: 1px solid var(--border);
}

.dca-email-gate h2,
.dca-returning-voter h2 {
    margin: 10px 0 12px;
}

.dca-email-gate label {
    display: block;
    margin: 24px 0 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.dca-email-gate input {
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
}

.dca-email-gate .submit {
    margin-top: 12px;
}

.dca-ballot-gated[hidden],
.dca-email-gate[hidden] {
    display: none !important;
}

.dca-vote-countdown {
    display: grid;
    gap: 7px;
    margin: 26px 0;
    padding: 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.dca-vote-countdown span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.dca-vote-countdown strong {
    font-size: clamp(32px, 8vw, 58px);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* LITEFEET LEDGER — BETA PLACEHOLDER PAGES */

.ledger-placeholder-page {
    width: min(100% - 32px, 1100px);
    margin: 0 auto;
}

.ledger-placeholder-hero {
    max-width: 820px;
    padding: clamp(54px, 9vw, 110px) 0;
}

.ledger-placeholder-hero h1 {
    margin: 10px 0 14px;
    font-size: clamp(48px, 10vw, 100px);
    line-height: .9;
}

.ledger-feature-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin: 0 0 24px;
    padding: 4px 9px;
    border: 1px solid currentColor;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.ledger-placeholder-description {
    max-width: 700px;
    font-size: clamp(18px, 2.5vw, 25px);
    line-height: 1.45;
}

.ledger-placeholder-status {
    max-width: 700px;
    margin: 34px 0;
    padding: 22px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.ledger-placeholder-status strong {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .08em;
}

.ledger-placeholder-status p {
    margin: 0;
}

.ledger-placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.beta-feature-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* LITEFEET LEDGER — BETA FEEDBACK ADMIN */

.admin-beta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.admin-beta-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
}

.beta-public-feedback {
    width: min(100% - 32px, 900px);
    margin: 50px auto;
    padding: clamp(24px, 5vw, 42px);
    background: var(--surface);
    border: 1px solid var(--border);
}

.beta-feedback-form,
.beta-changelog-form {
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-top: 24px;
}

.beta-feedback-form label,
.beta-changelog-form label {
    display: grid;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
}

.beta-feedback-form select,
.beta-feedback-form textarea,
.beta-changelog-form input,
.beta-changelog-form select,
.beta-changelog-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
}

.beta-feedback-form textarea,
.beta-changelog-form textarea {
    min-height: 150px;
    resize: vertical;
}

.beta-admin-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.beta-admin-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.beta-admin-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.beta-admin-meta span {
    padding: 5px 8px;
    border: 1px solid var(--border);
    font-size: 9px;
    font-weight: 900;
}

.beta-feedback-message {
    white-space: pre-wrap;
    line-height: 1.55;
}

.beta-admin-status-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.beta-admin-status-form select,
.beta-admin-status-form button,
.beta-changelog-form button,
.beta-admin-card button {
    min-height: 42px;
    padding: 10px 12px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
}

/* LITEFEET LEDGER — ARCHIVE ERA ADMIN */

.admin-archive-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.admin-archive-nav a,
.admin-archive-nav span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 11px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .05em;
}

.admin-archive-nav span {
    opacity: .55;
}

.ledger-era-list {
    display: grid;
    gap: 14px;
}

.ledger-era-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.ledger-era-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ledger-era-meta span {
    padding: 5px 8px;
    border: 1px solid var(--border);
    font-size: 9px;
    font-weight: 900;
}

.ledger-era-years {
    font-weight: 900;
}

.ledger-admin-form {
    display: grid;
    gap: 18px;
    max-width: 800px;
}

.ledger-admin-form label {
    display: grid;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
}

.ledger-admin-form input,
.ledger-admin-form select,
.ledger-admin-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font: inherit;
}

.ledger-admin-form textarea {
    min-height: 140px;
    resize: vertical;
}

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

.ledger-admin-form-note {
    margin: -8px 0 0;
    opacity: .7;
    font-size: 12px;
}

.ledger-admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ledger-admin-form-actions button,
.ledger-admin-form-actions a {
    min-height: 44px;
    padding: 11px 14px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

/* LITEFEET LEDGER — CONTROL ROOM HIERARCHY */

.admin-system-status {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.admin-system-status span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .05em;
}

.admin-module-section--primary {
    border-top-width: 3px;
}

.admin-module-subsystems {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .06em;
    opacity: .65;
}

.admin-module-card--development {
    border-style: solid;
}

.admin-module-grid--compact {
    grid-template-columns:
        repeat(auto-fit, minmax(190px, 1fr));
}

.admin-module-grid--compact
.admin-module-card {
    min-height: 170px;
}

.admin-module-section {
    scroll-margin-top: 140px;
}

/* LITEFEET LEDGER — ARCHIVE ADMIN NAV */

.admin-archive-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.admin-archive-nav a,
.admin-archive-nav__planned {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
}

.admin-archive-nav a {
    color: var(--text);
    text-decoration: none;
}

.admin-archive-nav a:hover {
    color: #071a38;
    background: var(--gold);
    border-color: var(--gold);
}

.admin-archive-nav__planned {
    opacity: .45;
}

/* DCA ADMIN — COMPACT RESULTS + VOTER ACTIVITY */

.admin-results--scroll {
    max-height: 285px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.admin-results--scroll .admin-result {
    margin-bottom: 10px;
}

.admin-results--scroll .admin-result:last-child {
    margin-bottom: 0;
}

.admin-voter-table-wrap {
    max-height: 340px;
    margin-top: 22px;
    overflow: auto;
    border: 1px solid var(--border);
}

.admin-voter-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-voter-table th,
.admin-voter-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.admin-voter-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--surface);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.admin-voter-table th:last-child,
.admin-voter-table td:last-child {
    width: 130px;
    text-align: center;
}

.admin-voter-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-voter-table__historical {
    opacity: .65;
}

/* DCA 2026 — PUBLIC CYCLE HUB */

.dca-cycle-hub {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 80px;
}

.dca-cycle-hero,
.dca-cycle-section,
.dca-cycle-manifesto {
    margin-bottom: 24px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    background: var(--surface);
}

.dca-cycle-hero h1 {
    max-width: 850px;
    margin: 12px 0 18px;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .88;
    letter-spacing: -.055em;
}

.dca-cycle-hero__lead {
    max-width: 720px;
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
}

.dca-cycle-status {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 10px 13px;
    border: 1px solid var(--gold);
}

.dca-cycle-status__label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    opacity: .65;
}

.dca-cycle-status strong {
    font-size: 11px;
    letter-spacing: .05em;
}

.dca-cycle-section__heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.dca-cycle-section__heading h2 {
    margin: 9px 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: .95;
}

.dca-cycle-section__heading p {
    margin: 0;
    line-height: 1.55;
}

.dca-stage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dca-stage-card {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.dca-stage-card--active {
    border-top: 5px solid var(--gold);
}

.dca-stage-card--preview {
    border-top: 5px solid var(--blue);
}

.dca-stage-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 40px;
}

.dca-stage-card__number {
    font-size: 13px;
    font-weight: 900;
}

.dca-stage-card__status {
    padding: 6px 8px;
    border: 1px solid currentColor;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
}

.dca-stage-card__eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    opacity: .65;
}

.dca-stage-card h3 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: .9;
}

.dca-stage-card p {
    max-width: 430px;
    margin: 0;
    line-height: 1.5;
}

.dca-stage-card__action {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 12px 14px;
    border: 1px solid var(--gold);
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.dca-stage-card__action:hover {
    background: var(--gold);
    color: #071a38;
}

.dca-roadmap {
    border-top: 1px solid var(--border);
}

.dca-roadmap-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.dca-roadmap-step > span {
    font-size: 13px;
    font-weight: 900;
}

.dca-roadmap-step strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.dca-roadmap-step p {
    max-width: 650px;
    margin: 0;
    line-height: 1.45;
}

.dca-roadmap-step--future {
    opacity: .55;
}

.dca-cycle-manifesto p {
    margin: 12px 0 0;
    font-size: clamp(36px, 6vw, 70px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.045em;
}

@media (max-width: 760px) {
    .dca-cycle-hub {
        width: min(100% - 24px, 1120px);
        padding-top: 20px;
    }

    .dca-stage-grid {
        grid-template-columns: 1fr;
    }

    .dca-stage-card {
        min-height: 360px;
    }

    .dca-roadmap-step {
        grid-template-columns: 44px 1fr;
    }
}
