@import url("https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Narrow:wght@400;700&family=Space+Mono:wght@400;700&display=swap");

:root {
    --black: #101010;
    --black-soft: #191919;
    --red: #d71920;
    --red-dark: #8f151a;
    --yellow: #f7c600;
    --yellow-soft: #fff6c9;
    --white: #ffffff;
    --paper: #fbfaf7;
    --ink: #1f1f1f;
    --muted: #6f6f6f;
    --line: #e8e1d4;
    --success: #067647;
    --warning: #a15c00;
    --danger: #b42318;
    --shadow: 0 18px 45px rgba(16, 16, 16, .10);
    --shadow-soft: 0 10px 28px rgba(16, 16, 16, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(247, 198, 0, .12), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(215, 25, 32, .10), transparent 30%),
        linear-gradient(180deg, #f6f1e7 0, var(--paper) 260px);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.topbar {
    align-items: center;
    background: rgba(16, 16, 16, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 32px rgba(16, 16, 16, .22);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 clamp(16px, 4vw, 36px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    align-items: center;
    color: var(--white);
    display: inline-flex;
    font-size: 16px;
    font-weight: 900;
    gap: 10px;
    letter-spacing: 0;
    max-width: 52vw;
}

.brand::before {
    background:
        linear-gradient(135deg, var(--red) 0 50%, var(--yellow) 50% 100%);
    border: 2px solid var(--yellow);
    border-radius: 8px;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, .18);
    content: "";
    height: 28px;
    flex: 0 0 28px;
    width: 28px;
}

.topnav {
    align-items: center;
    display: flex;
    gap: 8px;
    max-width: 100%;
    min-width: 0;
    scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
    display: none;
}

.topnav a,
.sidebar a {
    border-radius: 8px;
    color: #555;
    display: block;
    font-weight: 750;
    padding: 10px 12px;
}

.sidebar a {
    align-items: center;
    border: 1px solid transparent;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    min-height: 40px;
}

.sidebar a::after {
    color: rgba(16, 16, 16, .28);
    content: ">";
    font-size: 13px;
    line-height: 1;
}

.topnav a.active,
.topnav a:hover,
.sidebar a.active,
.sidebar a:hover {
    background: var(--black);
    color: var(--yellow);
}

.sidebar a.active,
.sidebar a:hover {
    border-color: rgba(16, 16, 16, .12);
    box-shadow: 0 8px 18px rgba(16, 16, 16, .08);
}

.sidebar a.active::after,
.sidebar a:hover::after {
    color: var(--yellow);
}

.topnav a {
    color: rgba(255, 255, 255, .72);
}

.topnav a.active,
.topnav a:hover {
    background: var(--yellow);
    color: var(--black);
}

.public-shell {
    margin: 0;
    max-width: none;
    padding: 0 0 64px;
    width: 100%;
}

.public-shell .content > :not(.hero) {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    width: calc(100% - clamp(32px, 7vw, 96px));
}

.public-shell .hero + .grid {
    margin-top: -46px;
    position: relative;
    z-index: 2;
}

.public-shell .grid.cols-3 {
    gap: 16px;
}

.public-shell .grid.cols-2 {
    gap: 16px;
}

.app-shell {
    display: grid;
    gap: 20px;
    grid-template-columns: 280px minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1520px;
    padding: 22px clamp(14px, 3vw, 30px) 48px;
}

.sidebar {
    align-self: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 240, .96));
    border: 1px solid rgba(16, 16, 16, .08);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 3px;
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 12px;
    position: sticky;
    top: 92px;
}

.profile-box {
    background:
        linear-gradient(135deg, var(--black), #2a1112);
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 8px;
    padding: 16px;
}

.profile-box strong,
.profile-box span {
    display: block;
}

.profile-box strong {
    font-size: 15px;
}

.profile-box span {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    margin-top: 3px;
}

.content {
    align-content: start;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.content > *,
.panel,
.page-title,
.table-wrap,
.form-grid,
.filter-bar,
.actions {
    max-width: 100%;
    min-width: 0;
}

.app-shell .content > * {
    width: 100%;
}

.panel,
.card {
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(16, 16, 16, .08);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(16, 16, 16, .07);
}

.panel {
    padding: clamp(18px, 2.2vw, 24px);
    position: relative;
}

.public-shell .panel,
.public-shell .card {
    border-color: rgba(16, 16, 16, .08);
    box-shadow: 0 14px 38px rgba(16, 16, 16, .07);
}

.panel h2 {
    color: var(--black);
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 16px;
}

.panel p:first-child,
.panel h2 + p {
    margin-top: 0;
}

.hero {
    align-items: center;
    background:
        radial-gradient(circle at 82% 22%, rgba(247, 198, 0, .30), transparent 30%),
        linear-gradient(120deg, rgba(16, 16, 16, .96), rgba(66, 9, 11, .90)),
        repeating-linear-gradient(135deg, var(--yellow) 0 18px, var(--red) 18px 36px, var(--black) 36px 54px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--white);
    display: grid;
    min-height: clamp(420px, 50vh, 540px);
    overflow: hidden;
    padding: clamp(44px, 7vw, 82px) clamp(28px, 7vw, 96px) clamp(76px, 8vw, 112px);
    position: relative;
}

.hero::after {
    background: linear-gradient(90deg, var(--yellow), var(--red), var(--black));
    bottom: 0;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    right: 0;
}

.hero h1,
.page-title h1 {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.02;
    margin: 0 0 12px;
}

.hero h1 {
    max-width: 760px;
}

.hero p,
.page-title p {
    color: inherit;
    margin: 0;
    max-width: 760px;
}

.hero p {
    color: rgba(255, 255, 255, .88);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 650;
}

.hero > div {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

.page-title {
    background:
        radial-gradient(circle at 94% 18%, rgba(247, 198, 0, .30), transparent 24%),
        linear-gradient(135deg, #121212 0%, #341013 58%, #95171d 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(16, 16, 16, .17);
    color: var(--white);
    margin-bottom: 0;
    overflow: hidden;
    padding: clamp(22px, 3vw, 32px);
    position: relative;
}

.page-title::after {
    background: linear-gradient(90deg, var(--yellow), var(--red));
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.page-title h1 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 44px);
}

.page-title p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    font-weight: 650;
}

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

.grid {
    display: grid;
    gap: 14px;
}

.grid.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 245, .98));
    border-top: 0;
    min-height: 112px;
    padding: 20px;
    position: relative;
}

.stat::before {
    background: linear-gradient(180deg, var(--yellow), var(--red));
    border-radius: 999px;
    bottom: 18px;
    content: "";
    left: 0;
    position: absolute;
    top: 18px;
    width: 5px;
}

.stat::after {
    background: var(--red);
    border-radius: 999px;
    content: "";
    height: 8px;
    position: absolute;
    right: 16px;
    top: 18px;
    width: 8px;
}

.stat strong {
    color: var(--black);
    display: block;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.stat span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 7px;
    text-transform: uppercase;
}

.section-gap {
    margin-top: 22px;
}

.app-shell .section-gap {
    margin-top: 0;
}

.public-shell .section-gap {
    margin-top: 18px;
}

.public-shell .hero + .grid + .grid {
    margin-top: 22px;
}

.table-wrap {
    border: 1px solid rgba(16, 16, 16, .08);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    overflow-x: auto;
}

table {
    background: var(--white);
    border-collapse: collapse;
    min-width: 820px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

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

th {
    background: #141414;
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

tbody tr:hover {
    background: #fff8df;
}

.form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    color: #303030;
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    background: #fffdfa;
    border: 1px solid #d9d0c0;
    border-radius: 8px;
    color: var(--ink);
    min-height: 42px;
    padding: 9px 12px;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, .12);
    outline: 0;
}

input[type="checkbox"] {
    accent-color: var(--red);
    min-height: auto;
    width: auto;
}

textarea {
    min-height: 104px;
    resize: vertical;
}

.actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 16px;
}

.button {
    align-items: center;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(215, 25, 32, .20);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-weight: 850;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover {
    background: var(--red-dark);
    box-shadow: 0 12px 24px rgba(215, 25, 32, .25);
    transform: translateY(-1px);
}

.button.secondary {
    background: var(--yellow);
    border-color: #e6b800;
    box-shadow: none;
    color: var(--black);
}

.button.secondary:hover {
    background: #eab900;
}

.button.danger {
    background: var(--danger);
    border-color: var(--danger);
}

.badge {
    align-items: center;
    background: #efefef;
    border-radius: 999px;
    color: #363636;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    padding: 5px 10px;
}

.badge.success {
    background: #dcfae6;
    color: var(--success);
}

.badge.warning {
    background: #fff4d8;
    color: var(--warning);
}

.badge.danger {
    background: #fee4e2;
    color: var(--danger);
}

.alert {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    font-weight: 750;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.alert.success {
    background: #dcfae6;
    color: var(--success);
}

.alert.warning {
    background: #fff4d8;
    color: var(--warning);
}

.alert.danger {
    background: #fee4e2;
    color: var(--danger);
}

.page-login {
    background: #0a0a0b;
    color: #e5e2e3;
    font-family: "Archivo Narrow", Inter, Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-login .topbar {
    background: rgba(19, 19, 20, .82);
    border-bottom: 1px solid #353436;
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.page-login .brand {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-login .topnav a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.page-login .topnav a.active,
.page-login .topnav a:hover {
    background: #c3f400;
    color: #161e00;
    transform: skewX(-8deg);
}

.page-login .public-shell {
    background:
        linear-gradient(rgba(204, 255, 0, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, .035) 1px, transparent 1px),
        radial-gradient(circle at 72% 24%, rgba(195, 244, 0, .14), transparent 26%),
        radial-gradient(circle at 18% 80%, rgba(0, 238, 252, .10), transparent 24%),
        #0a0a0b;
    background-size: 32px 32px, 32px 32px, auto, auto, auto;
    min-height: calc(100vh - 72px);
    padding: 0;
}

.page-login .content {
    display: block;
}

.page-login .public-shell .content > * {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

.page-login .alert {
    border: 1px solid #444933;
    border-radius: 0;
    font-family: "Space Mono", monospace;
    left: 50%;
    margin: 0;
    max-width: min(440px, calc(100vw - 40px));
    position: fixed;
    top: 88px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 30;
}

.page-login .alert.danger {
    background: #2a0b0e;
    color: #ffb4ab;
}

.page-login .alert.success {
    background: #17240d;
    color: #c3f400;
}

.login-screen {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 72px);
    overflow: hidden;
    padding: 88px 20px 86px;
    position: relative;
}

.login-mesh {
    background-image: radial-gradient(#1a1a1c 22%, transparent 23%);
    background-size: 8px 8px;
    inset: 0;
    opacity: .28;
    pointer-events: none;
    position: fixed;
}

.login-scanline {
    animation: login-scan 4s linear infinite;
    background: rgba(204, 255, 0, .11);
    height: 2px;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 25;
}

@keyframes login-scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.login-ghost-word {
    color: rgba(255, 255, 255, .035);
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(120px, 18vw, 260px);
    line-height: 1;
    pointer-events: none;
    position: fixed;
    right: -42px;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    user-select: none;
}

.login-box {
    margin: 0 auto;
    max-width: 440px;
    position: relative;
    width: min(440px, calc(100vw - 40px));
    z-index: 2;
}

.login-heading {
    margin-bottom: 28px;
    text-align: center;
}

.login-heading span,
.login-heading p,
.login-support,
.login-footnote span,
.login-footer {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.login-heading > span {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    letter-spacing: .22em;
    margin-bottom: 16px;
}

.login-heading strong {
    color: #c3f400;
}

.login-heading h1 {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(72px, 13vw, 118px);
    font-weight: 400;
    line-height: .86;
    margin: 0;
    text-transform: uppercase;
}

.login-heading p {
    border-bottom: 1px solid #444933;
    border-top: 1px solid #444933;
    color: #c4c9ac;
    font-size: 12px;
    letter-spacing: .30em;
    margin: 14px 0 0;
    padding: 10px 0;
}

.login-card {
    background: rgba(28, 27, 28, .92);
    border: 1px solid #353436;
    box-shadow: 0 0 38px rgba(195, 244, 0, .12), 0 26px 80px rgba(0, 0, 0, .38);
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.login-card::before {
    background: linear-gradient(90deg, #c3f400, rgba(255, 178, 184, .65), transparent);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.login-wave {
    align-items: end;
    bottom: 0;
    display: flex;
    gap: 5px;
    height: 54px;
    left: 0;
    opacity: .11;
    padding: 0 18px;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.login-wave span {
    background: #c3f400;
    display: block;
    width: 10px;
}

.login-wave span:nth-child(1),
.login-wave span:nth-child(8) {
    height: 16px;
}

.login-wave span:nth-child(2),
.login-wave span:nth-child(9) {
    height: 32px;
}

.login-wave span:nth-child(3),
.login-wave span:nth-child(6) {
    height: 24px;
}

.login-wave span:nth-child(4),
.login-wave span:nth-child(10) {
    height: 42px;
}

.login-wave span:nth-child(5),
.login-wave span:nth-child(7) {
    height: 52px;
}

.login-form {
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.login-field {
    display: grid;
    gap: 8px;
}

.login-field label {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 16px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: transform .18s ease;
}

.login-field:focus-within label {
    transform: translateX(8px);
}

.login-input-wrap {
    background: #0e0e0f;
    border-bottom: 2px solid rgba(195, 244, 0, .34);
    box-shadow: 0 0 5px rgba(204, 255, 0, .18);
    position: relative;
    transition: .18s ease;
}

.login-input-wrap:focus-within {
    border-bottom-color: #c3f400;
    box-shadow: 0 0 18px rgba(204, 255, 0, .35);
}

.login-input-wrap input {
    background: transparent;
    border: 0;
    color: #e5e2e3;
    font-family: "Space Mono", monospace;
    min-height: 58px;
    outline: none;
    padding: 16px 72px 16px 16px;
    text-transform: uppercase;
    width: 100%;
}

.login-input-wrap input::placeholder {
    color: rgba(196, 201, 172, .38);
}

.login-input-wrap span {
    color: rgba(195, 244, 0, .55);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.login-submit {
    align-items: center;
    background: #c3f400;
    border: 0;
    color: #161e00;
    cursor: pointer;
    display: flex;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    gap: 12px;
    justify-content: center;
    letter-spacing: .14em;
    min-height: 60px;
    padding: 14px 18px;
    text-transform: uppercase;
    transition: .16s ease;
    width: 100%;
}

.login-submit:hover {
    background: #ffffff;
    box-shadow: 0 0 24px rgba(204, 255, 0, .58);
    color: #000000;
    transform: translateY(-1px);
}

.login-submit strong {
    font-family: "Space Mono", monospace;
    font-size: 11px;
}

.login-support {
    align-items: center;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    padding-top: 4px;
}

.login-support a,
.login-support span {
    color: #c4c9ac;
}

.login-support a:hover {
    color: #c3f400;
}

.login-footnote {
    margin-top: 34px;
    text-align: center;
}

.login-footnote span {
    background: rgba(195, 244, 0, .08);
    border: 1px solid rgba(195, 244, 0, .22);
    color: #c3f400;
    display: inline-block;
    font-size: 12px;
    padding: 8px 12px;
}

.login-footnote p {
    color: rgba(196, 201, 172, .58);
    font-size: 18px;
    margin: 12px 0 0;
    text-transform: uppercase;
}

.login-footer {
    align-items: center;
    background: #0e0e0f;
    border-top: 1px dashed #444933;
    bottom: 0;
    color: #c4c9ac;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    left: 0;
    padding: 18px clamp(20px, 5vw, 64px);
    position: absolute;
    right: 0;
    z-index: 2;
}

.page-schedule {
    background: #131314;
    color: #e5e2e3;
    font-family: "Archivo Narrow", Inter, Arial, sans-serif;
}

.page-schedule .topbar {
    background: rgba(19, 19, 20, .92);
    border-bottom: 2px solid #444933;
    box-shadow: 0 0 24px rgba(195, 244, 0, .14);
}

.page-schedule .brand {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-schedule .topnav a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-schedule .topnav a.active,
.page-schedule .topnav a:hover {
    background: #c3f400;
    color: #161e00;
    transform: skewX(-8deg);
}

.page-schedule .public-shell {
    background: #131314;
    color: #e5e2e3;
    padding: 0;
}

.page-schedule .content {
    display: block;
}

.page-schedule .public-shell .content > * {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

.schedule-hero {
    align-items: end;
    border-bottom: 4px double #444933;
    display: flex;
    min-height: 430px;
    overflow: hidden;
    padding: 72px clamp(20px, 6vw, 64px) 48px;
    position: relative;
}

.schedule-hero-bg {
    background:
        linear-gradient(to top, #131314 0%, rgba(19, 19, 20, .55) 44%, rgba(19, 19, 20, .18) 100%),
        radial-gradient(circle at 76% 18%, rgba(0, 238, 252, .18), transparent 22%),
        radial-gradient(circle at 24% 70%, rgba(195, 244, 0, .16), transparent 24%),
        repeating-linear-gradient(45deg, rgba(195, 244, 0, .16), rgba(195, 244, 0, .16) 15px, rgba(255, 178, 184, .10) 15px, rgba(255, 178, 184, .10) 30px, rgba(0, 0, 0, .56) 30px, rgba(0, 0, 0, .56) 45px),
        #0e0e0f;
    inset: 0;
    position: absolute;
}

.schedule-hero-copy {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.schedule-live-row {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.schedule-live-row span {
    background: #ffb2b8;
    color: #67001d;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 8px;
    text-transform: uppercase;
}

.schedule-live-row i {
    background-image: linear-gradient(90deg, #444933 50%, transparent 50%);
    background-size: 10px 1px;
    display: block;
    flex: 1;
    height: 2px;
}

.schedule-hero h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 400;
    line-height: .95;
    margin: 0;
    text-transform: uppercase;
}

.schedule-hero p {
    color: #c4c9ac;
    font-size: 21px;
    font-weight: 700;
    margin: 18px 0 0;
    max-width: 620px;
}

.schedule-page {
    align-items: start;
    display: grid;
    gap: clamp(28px, 5vw, 48px);
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1280px;
    padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 64px);
}

.schedule-status {
    display: grid;
    gap: 24px;
    align-self: start;
    position: sticky;
    top: 100px;
}

.schedule-status-card,
.schedule-mini-grid div,
.schedule-card,
.schedule-empty {
    background: #201f20;
    border: 1px solid #444933;
}

.schedule-status-card {
    padding: 24px;
}

.schedule-status-card span,
.schedule-mini-grid span,
.schedule-card small,
.schedule-meta span,
.schedule-meta em {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.schedule-status-card > span {
    color: #c3f400;
    display: block;
    margin-bottom: 10px;
}

.segmented-bar {
    background: linear-gradient(90deg, #abd600 0%, #abd600 60%, #ffb2b8 100%);
    height: 28px;
    mask-image: linear-gradient(to right, black 2px, transparent 2px);
    mask-size: 4px 100%;
    margin: 10px 0 14px;
    width: 100%;
}

.schedule-status-card p,
.schedule-card p,
.schedule-empty p {
    color: #c4c9ac;
    font-size: 17px;
    margin: 0;
}

.schedule-location {
    border-left: 4px solid #c3f400;
    padding-left: 20px;
}

.schedule-location h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: .98;
    margin: 0;
    text-transform: uppercase;
}

.schedule-location span {
    color: #c4c9ac;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

.schedule-mini-grid {
    display: grid;
    gap: 12px;
}

.schedule-mini-grid div {
    padding: 16px;
}

.schedule-mini-grid span {
    color: #c3f400;
    display: block;
    margin-bottom: 8px;
}

.schedule-mini-grid strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.schedule-timeline {
    border-left: 1px solid #444933;
    display: grid;
    gap: clamp(32px, 5vw, 56px);
    padding-left: clamp(24px, 5vw, 64px);
    position: relative;
}

.schedule-item {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 108px minmax(0, 1fr);
    position: relative;
}

.schedule-dot {
    background: #c3f400;
    border: 4px solid #131314;
    border-radius: 999px;
    height: 18px;
    left: calc(clamp(24px, 5vw, 64px) * -1 - 9px);
    position: absolute;
    top: 4px;
    transition: .16s ease;
    width: 18px;
}

.schedule-item:hover .schedule-dot {
    transform: scale(1.42);
}

.schedule-time strong {
    color: #c3f400;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.schedule-time span {
    color: #c4c9ac;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    margin-top: 6px;
    text-transform: uppercase;
}

.schedule-card {
    padding: 24px;
    transition: .16s ease;
}

.schedule-card:hover {
    border-color: #c3f400;
}

.schedule-card-head {
    align-items: start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.schedule-card small {
    color: #c3f400;
    display: block;
    margin-bottom: 9px;
}

.schedule-card h2,
.schedule-empty h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.schedule-card-head > span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
}

.schedule-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.schedule-meta span,
.schedule-meta em {
    background: #353436;
    color: #e5e2e3;
    font-style: normal;
    padding: 5px 8px;
}

.schedule-meta em {
    color: #c3f400;
}

.schedule-item.is-peak {
    transform: scale(1.02);
    transform-origin: left center;
}

.schedule-item.is-peak .schedule-dot {
    animation: schedule-pulse 1.1s ease-in-out infinite;
    background: #00eefc;
    height: 26px;
    width: 26px;
}

.schedule-item.is-peak .schedule-time strong,
.schedule-item.is-peak .schedule-time span,
.schedule-item.is-peak .schedule-card small,
.schedule-item.is-peak .schedule-card-head > span {
    color: #00eefc;
}

.schedule-item.is-peak .schedule-card {
    background: #2a2a2b;
    border: 2px solid #00eefc;
    box-shadow: 0 0 30px rgba(0, 238, 252, .18);
}

@keyframes schedule-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 238, 252, 0);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 24px rgba(0, 238, 252, .55);
        transform: scale(1.12);
    }
}

.schedule-empty {
    padding: 32px;
}

.schedule-empty span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.schedule-empty h2 {
    margin: 12px 0;
}

.schedule-visualizer {
    align-items: center;
    background: #0e0e0f;
    border-bottom: 4px double #444933;
    border-top: 4px double #444933;
    display: flex;
    height: 260px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.schedule-bars {
    align-items: center;
    display: flex;
    gap: 10px;
    inset: 0;
    justify-content: center;
    opacity: .24;
    position: absolute;
}

.schedule-bars span {
    background: #c3f400;
    display: block;
    height: 10%;
    transition: height .08s linear, opacity .08s linear;
    width: 8px;
}

.schedule-visualizer h2 {
    color: rgba(142, 147, 121, .32);
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 8vw, 86px);
    font-weight: 400;
    letter-spacing: .08em;
    margin: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

.schedule-footer {
    margin-top: 0;
}

.page-lineup {
    background: #131314;
    color: #e5e2e3;
    font-family: "Archivo Narrow", Inter, Arial, sans-serif;
}

.page-lineup .topbar {
    background: rgba(19, 19, 20, .92);
    border-bottom: 2px solid #444933;
    box-shadow: 0 0 24px rgba(195, 244, 0, .14);
}

.page-lineup .brand {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-lineup .topnav a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-lineup .topnav a.active,
.page-lineup .topnav a:hover {
    background: #c3f400;
    color: #161e00;
    transform: skewX(-8deg);
}

.page-lineup .public-shell {
    background: #131314;
    color: #e5e2e3;
    padding: 0;
}

.page-lineup .content {
    display: block;
}

.page-lineup .public-shell .content > * {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

.lineup-hero {
    align-items: center;
    border-bottom: 4px double #444933;
    display: flex;
    min-height: clamp(280px, 34vh, 360px);
    overflow: hidden;
    padding: 34px clamp(20px, 5vw, 56px) 34px;
    position: relative;
}

.lineup-hero-bg {
    background:
        linear-gradient(to top, #131314 0%, rgba(19, 19, 20, .68) 45%, rgba(19, 19, 20, .22) 100%),
        radial-gradient(circle at 76% 22%, rgba(0, 238, 252, .20), transparent 23%),
        radial-gradient(circle at 20% 78%, rgba(195, 244, 0, .17), transparent 24%),
        repeating-linear-gradient(45deg, rgba(195, 244, 0, .14), rgba(195, 244, 0, .14) 16px, rgba(255, 178, 184, .10) 16px, rgba(255, 178, 184, .10) 32px, rgba(0, 0, 0, .55) 32px, rgba(0, 0, 0, .55) 48px),
        #0e0e0f;
    inset: 0;
    position: absolute;
}

.lineup-hero-copy {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.lineup-hero-copy > span {
    background: #c3f400;
    color: #161e00;
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .20em;
    padding: 7px 10px;
    text-transform: uppercase;
}

.lineup-hero h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(44px, 6vw, 74px);
    font-weight: 400;
    line-height: .90;
    margin: 18px 0 14px;
    text-transform: uppercase;
}

.lineup-hero p {
    color: #c4c9ac;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    max-width: 640px;
}

.lineup-hero-mark {
    display: flex;
    gap: 6px;
    position: absolute;
    right: clamp(20px, 6vw, 64px);
    top: 56px;
}

.lineup-hero-mark i {
    background: #abd600;
    display: block;
    height: 56px;
    width: 6px;
}

.lineup-hero-mark i:nth-child(2) {
    opacity: .55;
}

.lineup-hero-mark i:nth-child(3) {
    opacity: .25;
}

.lineup-filter {
    background: #0e0e0f;
    border-bottom: 1px solid #444933;
    padding: 24px clamp(20px, 6vw, 64px);
}

.lineup-filter form {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.lineup-filter-left {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lineup-filter-left > span,
.lineup-filter-left strong,
.lineup-filter-left a,
.lineup-search input,
.lineup-search button {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lineup-filter-left > span,
.lineup-filter-left strong {
    color: #c3f400;
}

.lineup-filter-left a {
    border: 1px solid #444933;
    color: #c4c9ac;
    padding: 7px 10px;
}

.lineup-filter-left a.active,
.lineup-filter-left a:hover {
    background: #c3f400;
    border-color: #c3f400;
    color: #161e00;
}

.lineup-search {
    align-items: center;
    border-bottom: 1px solid #c3f400;
    display: flex;
    min-width: min(320px, 100%);
}

.lineup-search input {
    background: transparent;
    border: 0;
    color: #e5e2e3;
    min-height: 42px;
    outline: none;
    padding: 8px 10px;
    width: 100%;
}

.lineup-search input::placeholder {
    color: #8e9379;
}

.lineup-search button {
    background: transparent;
    border: 0;
    color: #c3f400;
    cursor: pointer;
    padding: 8px 0 8px 10px;
}

.lineup-grid-section {
    padding: clamp(48px, 7vw, 80px) clamp(16px, 3vw, 40px);
}

.lineup-summary {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 32px;
    max-width: none;
    width: 100%;
}

.lineup-summary div,
.lineup-card,
.lineup-empty {
    background: #201f20;
    border: 1px solid #444933;
}

.lineup-summary div {
    padding: 18px;
}

.lineup-summary span {
    color: #c3f400;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lineup-summary strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    line-height: 1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.lineup-grid {
    display: grid;
    gap: clamp(20px, 3vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin: 0;
    max-width: none;
    width: 100%;
}

.lineup-card {
    overflow: hidden;
    position: relative;
    transition: .18s ease;
}

.lineup-card:hover {
    border-color: #c3f400;
    transform: translateY(-3px);
}

.lineup-visual {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 20% 70%, rgba(195, 244, 0, .18), transparent 24%),
        linear-gradient(135deg, #0e0e0f, #2a2a2b);
    overflow: hidden;
    position: relative;
}

.lineup-speakers {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    inset: 18px;
    opacity: .86;
    position: absolute;
}

.lineup-logo {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.lineup-logo + em {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .30);
}

.lineup-speakers span {
    background:
        radial-gradient(circle, #0a0a0b 0 30%, #c3f400 31% 35%, #353436 36% 65%, #111 66%);
    border: 1px solid #444933;
    filter: grayscale(.35);
}

.lineup-card:hover .lineup-speakers span {
    filter: grayscale(0);
}

.lineup-visual em {
    background: #ffdadb;
    color: #67001d;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    padding: 7px 10px;
    position: absolute;
    right: 12px;
    text-transform: uppercase;
    top: 12px;
}

.lineup-card-body {
    padding: 22px;
}

.lineup-card-head {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.lineup-card h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.lineup-card-head p {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    margin: 8px 0 0;
    text-transform: uppercase;
}

.lineup-card-head > span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    font-weight: 700;
}

.lineup-details {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px 0;
}

.lineup-details div {
    background: #2a2a2b;
    padding: 10px;
}

.lineup-details dt,
.lineup-meter span,
.lineup-meter strong {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.lineup-details dt {
    color: #c3f400;
    margin-bottom: 4px;
}

.lineup-details dd {
    color: #e5e2e3;
    margin: 0;
    overflow-wrap: anywhere;
}

.lineup-meter > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}

.lineup-meter span,
.lineup-meter strong {
    color: #8e9379;
}

.lineup-meter i {
    background: linear-gradient(90deg, #abd600 0%, #abd600 72%, #ffb2b8 100%);
    display: block;
    height: 5px;
    mask-image: linear-gradient(to right, black 3px, transparent 3px);
    mask-size: 8px 100%;
}

.lineup-empty {
    margin: 0 auto;
    max-width: 760px;
    padding: 32px;
}

.lineup-empty span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lineup-empty h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin: 10px 0;
    text-transform: uppercase;
}

.lineup-empty p {
    color: #c4c9ac;
    margin: 0;
}

.lineup-marquee {
    background: #353436;
    border-bottom: 4px double #444933;
    border-top: 4px double #444933;
    color: #c3f400;
    display: flex;
    gap: 48px;
    margin: 64px calc(clamp(16px, 3vw, 40px) * -1) -80px;
    overflow: hidden;
    padding: 26px clamp(16px, 3vw, 40px);
    white-space: nowrap;
}

.lineup-marquee span {
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.lineup-footer {
    margin-top: 0;
}

.admin-shell {
    background:
        radial-gradient(circle, rgba(68, 73, 51, .42) 1px, transparent 1px),
        radial-gradient(circle at 80% 12%, rgba(195, 244, 0, .10), transparent 24%),
        radial-gradient(circle at 12% 86%, rgba(0, 238, 252, .08), transparent 22%),
        #131314;
    background-size: 24px 24px, auto, auto, auto;
    color: #e5e2e3;
    font-family: "Archivo Narrow", Inter, Arial, sans-serif;
}

.admin-shell .topbar {
    background: rgba(19, 19, 20, .92);
    border-bottom: 2px solid #444933;
    box-shadow: 0 0 24px rgba(195, 244, 0, .14);
}

.admin-shell .brand {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.admin-shell .topnav a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-shell .topnav a.active,
.admin-shell .topnav a:hover {
    background: #c3f400;
    color: #161e00;
    transform: skewX(-8deg);
}

.admin-shell .app-shell {
    max-width: none;
    padding: 28px clamp(16px, 4vw, 64px) 64px;
}

.admin-shell .sidebar {
    background: rgba(28, 27, 28, .94);
    border: 1px solid #444933;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .30);
    scrollbar-width: thin;
    scrollbar-color: #abd600 #131314;
}

.admin-shell .profile-box {
    background:
        linear-gradient(135deg, rgba(195, 244, 0, .12), rgba(0, 238, 252, .05)),
        #0e0e0f;
    border: 1px solid #444933;
    border-radius: 0;
}

.admin-shell .profile-box strong {
    color: #ffffff;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-shell .profile-box span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-shell .sidebar a {
    border-radius: 0;
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.admin-shell .sidebar a::after {
    color: #8e9379;
}

.admin-shell .sidebar a.active,
.admin-shell .sidebar a:hover {
    background: #0e0e0f;
    border-color: #444933;
    box-shadow: none;
    color: #c3f400;
}

.admin-shell .panel,
.admin-shell .card,
.admin-shell .table-wrap {
    background: rgba(32, 31, 32, .96);
    border: 1px solid #444933;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .20);
    color: #e5e2e3;
}

.admin-shell .card.stat strong,
.admin-shell .stat strong {
    color: #ffffff !important;
}

.admin-shell .card.stat span,
.admin-shell .stat span {
    color: #c4c9ac !important;
}

.admin-shell .admin-modal-card {
    background:
        radial-gradient(circle at 88% 8%, rgba(195, 244, 0, .08), transparent 24%),
        linear-gradient(180deg, #201f20, #151516);
    border: 1px solid #444933;
    border-radius: 0;
    border-top: 5px solid #d71920;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .62);
    color: #e5e2e3;
    scrollbar-color: #8e9379 #0e0e0f;
}

.admin-shell .admin-modal-card::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.admin-shell .admin-modal-card::-webkit-scrollbar-track {
    background: #0e0e0f;
}

.admin-shell .admin-modal-card::-webkit-scrollbar-thumb {
    background: #8e9379;
}

.admin-shell .admin-modal-head h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.admin-shell .admin-modal-head p {
    color: #c4c9ac;
}

.admin-shell .admin-modal-card input,
.admin-shell .admin-modal-card select,
.admin-shell .admin-modal-card textarea {
    background: #0e0e0f;
    border-color: #444933;
    color: #ffffff;
}

.admin-shell .admin-modal-card input::file-selector-button {
    background: #353436;
    border: 1px solid #444933;
    color: #c3f400;
    cursor: pointer;
    font-family: "Space Mono", monospace;
    margin-right: 10px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.admin-shell .admin-modal-card .icon-button {
    background: #0e0e0f;
    border-color: #444933;
    color: #ffffff;
}

.admin-shell .admin-modal-card .icon-button:hover {
    background: #c3f400;
    color: #161e00;
}

.modal-open .committee-waveform,
.modal-open .committee-pulse-line,
.modal-open .committee-division-card i {
    animation-play-state: paused;
    opacity: 0;
}

.modal-open .content > :not(.admin-modal):not(.finance-modal) {
    filter: brightness(.45);
}

.admin-shell .page-title {
    background:
        radial-gradient(circle at 85% 22%, rgba(195, 244, 0, .18), transparent 24%),
        repeating-linear-gradient(45deg, rgba(195, 244, 0, .10), rgba(195, 244, 0, .10) 14px, rgba(255, 178, 184, .08) 14px, rgba(255, 178, 184, .08) 28px, rgba(0, 0, 0, .48) 28px, rgba(0, 0, 0, .48) 42px),
        #0e0e0f;
    border: 1px solid #444933;
    border-radius: 0;
    color: #ffffff;
}

.admin-shell .page-title::after {
    background: linear-gradient(90deg, #abd600, #00eefc, #ffb2b8);
}

.admin-shell .page-title h1,
.admin-shell .panel h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.admin-shell .page-title p,
.admin-shell .panel p,
.admin-shell .muted {
    color: #c4c9ac;
}

.admin-shell label {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.admin-shell input,
.admin-shell select,
.admin-shell textarea {
    background: #0e0e0f;
    border-color: #444933;
    border-radius: 0;
    color: #e5e2e3;
}

.admin-shell input:focus,
.admin-shell select:focus,
.admin-shell textarea:focus {
    background: #0e0e0f;
    border-color: #c3f400;
    box-shadow: 0 0 0 3px rgba(195, 244, 0, .14);
}

.admin-shell table {
    background: #201f20;
    color: #e5e2e3;
}

.admin-shell td {
    border-color: #353436;
}

.admin-shell tbody tr:hover {
    background: #2a2a2b;
}

.admin-shell .button {
    border-radius: 0;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-shell .button.secondary {
    background: #353436;
    color: #c3f400;
}

.admin-shell .badge {
    border-radius: 0;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-dashboard-head {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.admin-dashboard-head h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: .95;
    margin: 0;
    text-transform: uppercase;
}

.admin-dashboard-head p {
    align-items: center;
    color: #c3f400;
    display: flex;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    margin: 10px 0 0;
    text-transform: uppercase;
}

.admin-status-panel {
    align-items: center;
    background: #2a2a2b;
    border: 1px solid #444933;
    display: flex;
    gap: 22px;
    padding: 14px 18px;
}

.admin-status-panel span,
.admin-status-panel strong {
    display: block;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-status-panel span {
    color: #c4c9ac;
    font-size: 11px;
}

.admin-status-panel strong {
    color: #ffffff;
    font-size: 14px;
}

.admin-status-panel i {
    background: #444933;
    display: block;
    height: 40px;
    width: 1px;
}

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

.admin-metric,
.admin-live-panel,
.admin-activity-panel,
.admin-info-panel,
.admin-permit-panel,
.admin-user-panel,
.admin-announcement-panel {
    background: #201f20;
    border: 1px solid #444933;
    color: #e5e2e3;
    overflow: hidden;
    position: relative;
}

.admin-metric {
    grid-column: span 4;
    min-height: 178px;
    padding: 24px;
}

.admin-metric::after {
    color: rgba(195, 244, 0, .08);
    content: "VOL";
    font-family: "Anton", Impact, sans-serif;
    font-size: 76px;
    line-height: 1;
    position: absolute;
    right: 16px;
    top: 12px;
}

.admin-metric span,
.admin-metric small,
.admin-live-head p,
.admin-live-head > span,
.admin-meter-labels,
.admin-panel-title h2,
.admin-activity-list span,
.admin-info-panel dt,
.admin-permit-grid span,
.admin-user-panel span,
.admin-announcement-panel span {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-metric span {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    margin-bottom: 10px;
}

.admin-metric strong {
    color: #c3f400;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 400;
    line-height: .95;
    overflow-wrap: anywhere;
}

.admin-metric small {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    margin-top: 12px;
}

.admin-metric i {
    background: #abd600;
    bottom: 0;
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
}

.admin-live-panel {
    border: 2px solid #abd600;
    grid-column: span 8;
    min-height: 360px;
    padding: 24px;
}

.admin-live-head {
    align-items: start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.admin-live-head h2,
.admin-info-panel h2,
.admin-permit-panel h2,
.admin-user-panel h2,
.admin-announcement-panel h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.admin-live-head p {
    color: #c3f400;
    font-size: 12px;
    margin: 8px 0 0;
}

.admin-live-head > span {
    animation: admin-pulse 1s infinite;
    background: #abd600;
    color: #161e00;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
}

@keyframes admin-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .72;
    }
}

.admin-bass-meter {
    align-items: end;
    display: flex;
    gap: 4px;
    height: 150px;
    margin-top: 44px;
}

.admin-bass-meter span {
    background: #353436;
    display: block;
    flex: 1 1 4px;
    min-width: 3px;
    transition: height .08s ease, background .08s ease;
}

.admin-bass-meter span.low {
    background: #abd600;
    box-shadow: 0 0 7px rgba(171, 214, 0, .65);
}

.admin-bass-meter span.mid {
    background: #00dbe9;
    box-shadow: 0 0 8px rgba(0, 219, 233, .65);
}

.admin-bass-meter span.peak {
    background: #ffb4ab;
    box-shadow: 0 0 12px rgba(255, 180, 171, .85);
}

.admin-meter-labels {
    color: #c4c9ac;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin-top: 14px;
}

.admin-activity-panel {
    display: flex;
    flex-direction: column;
    grid-column: span 4;
}

.admin-panel-title {
    background: #2a2a2b;
    border-bottom: 1px solid #444933;
    padding: 18px;
}

.admin-panel-title h2 {
    color: #c3f400;
    font-size: 14px;
    margin: 0;
}

.admin-activity-list {
    display: grid;
    gap: 16px;
    max-height: 302px;
    overflow: auto;
    padding: 20px;
}

.admin-activity-list div {
    align-items: start;
    display: flex;
    gap: 12px;
}

.admin-activity-list i {
    background: #abd600;
    border-radius: 999px;
    display: block;
    flex: 0 0 9px;
    height: 9px;
    margin-top: 7px;
}

.admin-activity-list p {
    color: #e5e2e3;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    margin: 0;
}

.admin-activity-list span {
    color: #8e9379;
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.admin-info-panel,
.admin-permit-panel,
.admin-user-panel,
.admin-announcement-panel {
    padding: 22px;
}

.admin-info-panel {
    grid-column: span 5;
}

.admin-info-panel > strong,
.admin-user-panel > strong {
    color: #c3f400;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    margin-top: 18px;
    text-transform: uppercase;
}

.admin-info-panel p,
.admin-user-panel p,
.admin-announcement-panel p {
    color: #c4c9ac;
    margin: 12px 0 0;
}

.admin-info-panel dl {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.admin-info-panel dl div {
    background: #2a2a2b;
    padding: 10px;
}

.admin-info-panel dt {
    color: #c3f400;
    font-size: 11px;
}

.admin-info-panel dd {
    color: #e5e2e3;
    margin: 4px 0 0;
}

.admin-permit-panel {
    grid-column: span 3;
}

.admin-permit-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.admin-permit-grid div {
    background: #2a2a2b;
    padding: 12px;
}

.admin-permit-grid span {
    color: #c4c9ac;
    display: block;
    font-size: 11px;
}

.admin-permit-grid strong {
    color: #c3f400;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

.admin-user-panel {
    grid-column: span 4;
}

.admin-user-panel span {
    background: #c3f400;
    color: #161e00;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
    padding: 7px 10px;
}

.admin-announcement-panel {
    grid-column: span 12;
}

.admin-announcement-panel article {
    border-top: 1px solid #444933;
    padding: 14px 0;
}

.admin-announcement-panel article:first-of-type {
    margin-top: 12px;
}

.admin-announcement-panel article strong,
.admin-announcement-panel article span {
    display: block;
}

.admin-announcement-panel article strong {
    color: #ffffff;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.admin-announcement-panel article span {
    color: #8e9379;
    font-size: 12px;
    margin-top: 4px;
}

.admin-sound-wall {
    background:
        linear-gradient(to top, #131314 0%, rgba(19, 19, 20, .44) 55%, rgba(19, 19, 20, .12)),
        #0e0e0f;
    border: 4px solid #444933;
    margin-top: 24px;
    min-height: 360px;
    overflow: hidden;
    padding: 8px;
    position: relative;
}

.admin-sound-pattern {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    inset: 24px;
    opacity: .72;
    position: absolute;
}

.admin-sound-pattern span {
    background:
        radial-gradient(circle, #0a0a0b 0 28%, #abd600 29% 33%, #353436 34% 66%, #111 67%);
    border: 1px solid #444933;
}

.admin-sound-wall > div:last-child {
    bottom: 28px;
    left: 28px;
    position: absolute;
    z-index: 1;
}

.admin-sound-wall > div:last-child span {
    background: #ffffff;
    color: #131314;
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    text-transform: uppercase;
}

.admin-sound-wall h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: .95;
    margin: 16px 0 0;
    text-transform: uppercase;
}

.participant-admin-head {
    align-items: end;
    border-left: 8px solid #abd600;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-left: 24px;
}

.participant-admin-head h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: .95;
    margin: 0;
    text-transform: uppercase;
}

.participant-admin-head p {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    margin: 8px 0 0;
    text-transform: uppercase;
}

.participant-admin-metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.participant-admin-metrics div,
.participant-admin-filter,
.participant-admin-form,
.participant-admin-table {
    background: #201f20;
    border: 1px solid #444933;
    color: #e5e2e3;
}

.participant-admin-metrics div {
    min-height: 126px;
    padding: 22px;
    position: relative;
}

.participant-admin-metrics div:last-child {
    border-right: 4px solid #abd600;
}

.participant-admin-metrics span,
.participant-admin-metrics strong,
.participant-section-title span,
.participant-table-footer,
.participant-status,
.participant-mono,
.participant-muted,
.participant-name-cell small,
.participant-name-cell span,
.participant-power span {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.participant-admin-metrics span {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    margin-bottom: 18px;
}

.participant-admin-metrics strong {
    color: #ffffff;
    display: block;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
}

.participant-admin-metrics div:nth-child(2) strong {
    color: #00eefc;
}

.participant-admin-metrics div:nth-child(3) strong {
    color: #ffb2b8;
}

.participant-admin-metrics div:nth-child(4) strong {
    color: #abd600;
    font-size: 18px;
    margin-top: 8px;
}

.participant-admin-filter {
    margin-bottom: 24px;
    padding: 18px;
}

.participant-admin-filter form {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.participant-admin-filter label {
    display: grid;
    gap: 8px;
}

.participant-admin-filter label span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.participant-admin-form {
    margin-bottom: 24px;
    padding: 24px;
}

.participant-section-title {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.participant-section-title h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.participant-section-title span {
    background: rgba(195, 244, 0, .10);
    border: 1px solid #444933;
    color: #c3f400;
    font-size: 12px;
    padding: 8px 10px;
}

.participant-admin-table {
    overflow: hidden;
}

.participant-strip {
    display: flex;
    height: 5px;
    width: 100%;
}

.participant-strip i:first-child {
    background: #abd600;
    width: 34%;
}

.participant-strip i:nth-child(2) {
    background: #00eefc;
    width: 18%;
}

.participant-strip i:last-child {
    background: #444933;
    flex: 1;
}

.participant-table-scroll {
    overflow-x: auto;
}

.participant-admin-table table {
    background: #0e0e0f;
    min-width: 980px;
}

.participant-admin-table th {
    background: #1c1b1c;
    border-bottom: 2px solid #8e9379;
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    padding: 18px 20px;
}

.participant-admin-table td {
    border-bottom: 1px solid #444933;
    padding: 18px 20px;
}

.participant-admin-table tr:hover {
    background: rgba(53, 52, 54, .62);
}

.participant-name-cell {
    align-items: center;
    display: flex;
    gap: 16px;
}

.participant-avatar {
    align-items: center;
    background:
        radial-gradient(circle, #0a0a0b 0 30%, #abd600 31% 35%, #353436 36% 65%, #111 66%);
    border: 1px solid #abd600;
    color: #c3f400;
    display: flex;
    flex: 0 0 54px;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.participant-avatar img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.participant-name-cell strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.participant-name-cell span,
.participant-name-cell small,
.participant-muted {
    color: #c4c9ac;
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.participant-power {
    display: grid;
    gap: 8px;
    min-width: 160px;
}

.participant-power span,
.participant-mono {
    color: #e5e2e3;
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.participant-power div {
    background: #201f20;
    height: 8px;
    overflow: hidden;
    width: 120px;
}

.participant-power i {
    background: linear-gradient(90deg, #abd600 0%, #abd600 70%, #ffdadb 90%, #c90041 100%);
    display: block;
    height: 100%;
}

.participant-status {
    border: 1px solid #444933;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 10px;
}

.participant-status.verified {
    border-color: #abd600;
    color: #abd600;
}

.participant-status.pending {
    border-color: #ffb2b8;
    color: #ffb2b8;
}

.participant-status.danger {
    border-color: #ffb4ab;
    color: #ffb4ab;
}

.participant-actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.finance-head {
    background:
        radial-gradient(circle at 90% 20%, rgba(195, 244, 0, .22), transparent 24%),
        linear-gradient(135deg, #131314, #2a2a2b);
    border: 1px solid #444933;
    color: #e5e2e3;
    padding: clamp(22px, 4vw, 42px);
}

.finance-head h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(46px, 7vw, 86px);
    font-weight: 400;
    line-height: .95;
    margin: 10px 0 12px;
    text-transform: uppercase;
}

.finance-head p {
    color: #c4c9ac;
    font-size: 18px;
    max-width: 760px;
}

.finance-summary {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.finance-summary div {
    background: #201f20;
    border: 1px solid #444933;
    border-top: 4px solid #c3f400;
    padding: 18px;
}

.finance-summary span {
    color: #c3f400;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.finance-summary strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
}

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

.finance-tabs {
    align-items: center;
    border: 1px solid #444933;
    display: flex;
    gap: 0;
    margin: 24px 0 16px;
    max-width: 640px;
}

.admin-page-toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.admin-modal {
    display: none;
    inset: 0;
    place-items: center;
    position: fixed;
    z-index: 1000;
}

.admin-modal.is-open {
    display: grid;
}

.admin-modal-backdrop {
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(3px);
    inset: 0;
    position: absolute;
}

.admin-modal-card {
    background: #ffffff;
    border: 1px solid rgba(16, 16, 16, .12);
    border-top: 5px solid var(--red);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
    max-height: min(88vh, 760px);
    max-width: 900px;
    overflow: auto;
    padding: clamp(18px, 2.4vw, 28px);
    position: relative;
    width: min(calc(100vw - 32px), 900px);
}

.admin-modal-head {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.admin-modal-head h2 {
    margin: 0 0 4px;
}

.admin-modal-head p {
    color: var(--muted);
    margin: 0;
}

.committee-control-panel {
    background:
        linear-gradient(rgba(68, 73, 51, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 73, 51, .08) 1px, transparent 1px),
        radial-gradient(circle at 82% 6%, rgba(195, 244, 0, .12), transparent 24%),
        #0a0a0b;
    background-size: 40px 40px, 40px 40px, auto, auto;
    border: 1px solid #444933;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
    color: #e5e2e3;
    overflow: hidden;
    padding: clamp(18px, 2.5vw, 32px);
    position: relative;
}

.committee-control-panel::before {
    border-left: 2px solid #c3f400;
    border-top: 2px solid #c3f400;
    content: "";
    height: 18px;
    left: 14px;
    position: absolute;
    top: 14px;
    width: 18px;
}

.committee-waveform {
    background: repeating-linear-gradient(90deg, #c3f400 0 1px, transparent 1px 12px);
    display: none;
    height: 120px;
    left: 0;
    mask-image: linear-gradient(to bottom, black, transparent);
    opacity: .055;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.committee-control-head,
.committee-tier,
.committee-command-center,
.committee-card-grid,
.committee-ground-control {
    position: relative;
    z-index: 2;
}

.committee-control-head {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    margin-bottom: clamp(22px, 3vw, 38px);
}

.committee-control-head::after {
    background:
        linear-gradient(90deg, #c3f400 0 54%, #00eefc 54% 72%, #444933 72% 100%),
        #201f20;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 100% 5px;
    border: 1px solid #444933;
    color: #e5e2e3;
    content: "COMMAND ONLINE\A 13 POSISI STRUKTUR\A ROUTE CREW READY";
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
    padding: 18px 20px 24px;
    text-transform: uppercase;
    white-space: pre-line;
}

.committee-control-head span,
.committee-tier-title span,
.committee-command-card em,
.committee-division-card span,
.committee-ground-control span {
    color: #c3f400;
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.committee-control-head span {
    background: #c3f400;
    color: #161e00;
    padding: 7px 10px;
}

.committee-control-head h2 {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 400;
    line-height: .9;
    margin: 14px 0 10px;
    text-transform: uppercase;
}

.committee-control-head p {
    color: #c4c9ac;
    font-size: clamp(16px, 1.55vw, 20px);
    max-width: 680px;
}

.committee-tier {
    margin-top: clamp(20px, 3vw, 38px);
}

.committee-control-panel > .committee-tier:first-of-type {
    margin-top: 0;
}

.committee-tier-title {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.committee-tier-title.centered {
    justify-content: center;
}

.committee-tier-title span {
    border: 1px solid #444933;
    min-width: 48px;
    padding: 8px 9px;
    text-align: center;
}

.committee-tier-title h3,
.committee-ground-control strong {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.committee-card-grid {
    display: grid;
    gap: 16px;
}

.committee-tier,
.committee-command-center,
.committee-card-grid.three,
.committee-ground-control {
    margin-left: auto;
    margin-right: auto;
    max-width: 1480px;
    width: 100%;
}

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

.committee-card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(24px, 3vw, 40px);
}

.committee-command-center {
    margin-top: clamp(30px, 4vw, 56px);
}

.committee-command-center .committee-tier-title {
    margin-bottom: 16px;
}

.committee-command-card {
    align-items: center;
    background: #1c1b1c;
    border: 1px solid #444933;
    display: flex;
    gap: 18px;
    min-height: 132px;
    padding: 20px;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.committee-command-card::before {
    border-left: 2px solid #c3f400;
    border-top: 2px solid #c3f400;
    content: "";
    height: 12px;
    left: -2px;
    position: absolute;
    top: -2px;
    width: 12px;
}

.committee-command-card:hover {
    border-color: #c3f400;
    box-shadow: 4px 4px 0 #c3f400;
    transform: translate(-2px, -2px);
}

.committee-command-card.chief {
    background: #2a2a2b;
    border-color: #c3f400;
    margin: 0 auto;
    min-height: 132px;
    text-align: left;
    width: min(100%, calc((100% - 16px) / 2));
}

.committee-command-card.core.accent {
    border-color: #00eefc;
}

.committee-command-card.chief {
    align-items: center;
    flex-direction: row;
}

.committee-card-avatar {
    align-items: center;
    background: #353436;
    border: 1px solid #444933;
    color: #c3f400;
    display: inline-flex;
    flex: 0 0 92px;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    height: 92px;
    justify-content: center;
    width: 92px;
}

.committee-command-card.chief .committee-card-avatar {
    border: 1px solid #c3f400;
    flex-basis: 92px;
    font-size: 34px;
    height: 92px;
    width: 92px;
}

.committee-command-card strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 58px);
    font-weight: 400;
    line-height: .94;
    margin-top: 6px;
    text-transform: uppercase;
}

.committee-command-card:not(.chief) strong {
    font-size: clamp(24px, 2.6vw, 38px);
}

.committee-command-card.chief strong {
    font-size: clamp(24px, 2.6vw, 38px);
}

.committee-command-card.chief small {
    font-size: 12px;
    white-space: nowrap;
}

.committee-command-card small {
    color: #c4c9ac;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    margin-top: 8px;
    text-transform: uppercase;
}

.committee-pulse-line {
    display: none;
}

.committee-pulse-line + .committee-tier {
    margin-top: clamp(30px, 4vw, 54px);
}

.committee-pulse-line.vertical {
    animation-name: committee-line-flow-vertical;
    background:
        repeating-linear-gradient(180deg, #444933 0 18px, #c3f400 18px 28px, #00eefc 28px 38px, #444933 38px 56px);
    background-size: 100% 200%;
    height: 64px;
    width: 3px;
}

.committee-pulse-line.split {
    max-width: 740px;
    width: 58%;
}

.committee-pulse-line.wide {
    max-width: 1180px;
    width: 86%;
}

.committee-division-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.committee-division-card {
    background: #0e0e0f;
    border: 1px solid #444933;
    min-height: 164px;
    padding: 18px;
    position: relative;
    transition: background .18s ease, border-color .18s ease;
}

.committee-division-card:hover {
    background: #2a2a2b;
    border-color: #c3f400;
}

.committee-division-card strong {
    color: #ffffff;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    margin: 18px 0 8px;
    text-transform: uppercase;
}

.committee-division-card small {
    color: #c4c9ac;
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.committee-division-card::after {
    background: #444933;
    bottom: 18px;
    content: "";
    height: 4px;
    left: 18px;
    position: absolute;
    right: 18px;
}

.committee-division-card i {
    background: #c3f400;
    bottom: 18px;
    display: block;
    height: 4px;
    left: 18px;
    max-width: calc(100% - 36px);
    position: absolute;
    z-index: 1;
}

.committee-ground-control {
    align-items: center;
    background: #201f20;
    border: 2px dashed #444933;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 38px;
    padding: 26px;
}

.committee-ground-control small {
    color: #c4c9ac;
    display: block;
    font-family: "Space Mono", monospace;
    margin-top: 6px;
    text-transform: uppercase;
}

.committee-ground-control div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.committee-ground-control b {
    background: #353436;
    border: 1px solid #444933;
    color: #e5e2e3;
    font-family: "Space Mono", monospace;
    padding: 8px 14px;
    text-transform: uppercase;
}

.committee-ground-control b:last-child {
    background: #c3f400;
    color: #161e00;
}

.letter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.letter-tabs a {
    background: #1c1b1c;
    border: 1px solid #444933;
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 11px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.letter-tabs a.active,
.letter-tabs a:hover {
    background: #c3f400;
    color: #161e00;
}

.settings-tabs {
    background:
        linear-gradient(90deg, rgba(195, 244, 0, .12), transparent 42%),
        #1c1b1c;
    border: 1px solid #444933;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding: 12px;
}

.settings-tabs a {
    background: #0e0e0f;
    border: 1px solid #444933;
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    padding: 11px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.settings-tabs a.active,
.settings-tabs a:hover {
    background: #c3f400;
    border-color: #c3f400;
    color: #161e00;
}

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

.letter-summary-grid article {
    background: #201f20;
    border: 1px solid #444933;
    border-left: 4px solid #c3f400;
    min-height: 96px;
    padding: 18px;
}

.letter-summary-grid span,
.letter-form-section h3,
.letter-table-wrap small {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.letter-summary-grid strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
    overflow-wrap: anywhere;
}

.letter-toolbar {
    align-items: center;
    background: #1c1b1c;
    border: 1px solid #444933;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 18px;
}

.letter-toolbar h2 {
    color: #ffffff;
    margin: 0 0 4px;
}

.letter-toolbar p {
    color: #c4c9ac;
    margin: 0;
}

.letter-builder {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
}

.letter-panel,
.letter-preview-panel,
.letter-filter {
    background: #1c1b1c;
    border: 1px solid #444933;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    padding: clamp(16px, 2vw, 24px);
}

.letter-builder > * {
    min-width: 0;
}

.letter-panel .panel-heading,
.letter-preview-panel .panel-heading {
    display: block;
}

.letter-panel .panel-heading h2,
.letter-preview-panel .panel-heading h2 {
    margin-bottom: 8px;
}

.letter-filter form {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto auto;
}

.letter-filter input,
.letter-filter select {
    background: #0e0e0f;
    border: 1px solid #444933;
    color: #e5e2e3;
    min-width: 0;
    padding: 11px 12px;
}

.letter-preview-panel {
    max-height: calc(100vh - 112px);
    overflow: auto;
    position: sticky;
    top: 92px;
}

.letter-builder .letter-preview-panel .letter-paper {
    margin-left: 0;
    margin-right: 0;
    transform-origin: top left;
    zoom: .7;
}

.letter-settings-builder {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
}

.letter-settings-builder > * {
    min-width: 0;
}

.letter-form-section {
    border-top: 1px solid #444933;
    margin-top: 18px;
    padding-top: 18px;
}

.letter-form-section:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.letter-form-section h3 {
    color: #c3f400;
    margin: 0 0 14px;
}

.letter-form-section .field.wide {
    grid-column: 1 / -1;
}

.letter-modal-card {
    background:
        radial-gradient(circle at 88% 8%, rgba(195, 244, 0, .08), transparent 24%),
        linear-gradient(180deg, #201f20, #151516);
    background-color: #201f20 !important;
    border: 1px solid #444933;
    border-radius: 0;
    border-top: 5px solid #d71920;
    color: #e5e2e3;
    max-width: min(1180px, calc(100vw - 40px));
}

.letter-table-wrap {
    background: #1c1b1c;
    border-color: #444933;
    border-radius: 0;
    box-shadow: none;
}

.letter-table-wrap table {
    color: #e5e2e3;
}

.letter-table-wrap thead th {
    background: #0e0e0f;
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.letter-table-wrap tbody td {
    background: #151516;
    border-color: #2f3228;
    vertical-align: top;
}

.letter-table-wrap td strong {
    color: #ffffff;
    display: block;
}

.letter-table-wrap small {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    margin-top: 5px;
    max-width: 520px;
    text-transform: none;
}

.empty-state {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    padding: 28px !important;
    text-align: center;
    text-transform: uppercase;
}

.mini-check {
    align-items: center;
    color: #c4c9ac;
    display: flex;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    gap: 8px;
    margin-top: 8px;
}

.letter-paper {
    --letter-kop-font: "Amasis MT Pro Black", "Amasis MT Pro", Georgia, "Times New Roman", serif;
}

@font-face {
    font-family: "Amasis MT Pro Black";
    font-style: normal;
    font-weight: 900;
    src: url("fonts/AmasisMTProBlack.ttf") format("truetype");
}

.letter-paper {
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .36);
    color: #111111;
    font-family: "Times New Roman", Times, serif;
    font-size: 12pt;
    line-height: 1.15;
    margin: 0 auto;
    min-height: 1123px;
    padding: 2cm 2cm 2cm 2.5cm;
    width: 794px;
}

.letter-kop {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 90px minmax(0, 1fr) 130px;
    text-align: center;
}

.letter-logo {
    align-items: center;
    border: 1px dashed #999999;
    color: #555555;
    display: flex;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    justify-content: center;
    overflow: hidden;
}

.letter-logo.has-logo {
    border: 0;
}

.letter-logo img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.letter-logo-left {
    justify-self: start;
}

.letter-logo-right {
    justify-self: end;
}

.letter-kop-text h2,
.letter-kop-text h3,
.letter-kop-text h4,
.letter-kop-text p {
    font-family: var(--letter-kop-font);
    font-weight: 900;
    margin: 0;
}

.letter-kop-text h2 {
    font-size: 18pt;
}

.letter-kop-text h3 {
    font-size: 14pt;
}

.letter-kop-text h4 {
    font-size: 13pt;
}

.letter-line {
    background: transparent !important;
    border-top: 3px solid #111111;
    height: 0 !important;
    margin: 10px 0 20px;
}

.letter-meta {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 22px;
}

.letter-meta p,
.letter-to p,
.letter-body p {
    margin: 0 0 6px;
}

.letter-meta span {
    display: inline-block;
    width: 72px;
}

.letter-meta [data-preview-field] {
    display: inline;
    width: auto;
}

.letter-to {
    margin-bottom: 18px;
}

.letter-body p {
    margin-bottom: 10px;
    text-align: justify;
}

.letter-body p.indent {
    text-indent: 36px;
}

.letter-body .event-details {
    background: transparent !important;
    border: 0 !important;
    border-collapse: collapse;
    box-shadow: none !important;
    color: #111111 !important;
    display: inline-table;
    margin: 4px 0 12px 36px;
    max-width: calc(100% - 36px);
    min-width: 0 !important;
    overflow: visible;
    table-layout: auto;
    width: auto !important;
}

.letter-body .event-details tr {
    background: transparent !important;
    border: 0 !important;
}

.letter-body .event-details td {
    background: transparent !important;
    border: 0 !important;
    color: #111111 !important;
    font-family: "Times New Roman", Times, serif !important;
    font-size: 12pt;
    line-height: 1.15;
    padding: 1px 0 !important;
    vertical-align: top;
}

.letter-body .event-details td:first-child {
    width: 112px;
}

.letter-body .event-details td:nth-child(2) {
    text-align: center;
    width: 16px;
}

.letter-note {
    border-left: 3px solid #111111;
    padding-left: 10px;
}

.letter-signatures {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 72px;
    text-align: center;
}

.letter-signatures strong {
    display: block;
    margin-top: 82px;
    text-decoration: underline;
    text-transform: uppercase;
}

.print-letter-body {
    background: #ffffff;
    margin: 0;
}

.print-letter-body .letter-paper {
    box-shadow: none;
    min-height: auto;
}

@media print {
    @page {
        margin: 0;
        size: A4;
    }

    body {
        background: #ffffff !important;
    }

    .letter-paper {
        box-shadow: none;
        margin: 0;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .letter-line {
        background: transparent !important;
    }
}

@keyframes committee-wave {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 160px 0;
    }
}

@keyframes committee-line-flow {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 0;
    }
}

@keyframes committee-line-flow-vertical {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 200%;
    }
}

@keyframes committee-signal {
    0%,
    100% {
        opacity: .72;
        filter: drop-shadow(0 0 0 rgba(195, 244, 0, 0));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(195, 244, 0, .72));
    }
}

.finance-tab {
    color: #c4c9ac;
    flex: 1;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 14px 16px;
    text-align: center;
    text-transform: uppercase;
}

.finance-tab + .finance-tab {
    border-left: 1px solid #444933;
}

.finance-tab.active {
    background: #c3f400;
    color: #161e00;
}

.finance-tab-panel {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.finance-panel-head,
.finance-toolbar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.finance-panel-head h2,
.finance-toolbar h2 {
    margin-bottom: 4px;
}

.finance-panel-head p,
.finance-toolbar p {
    color: #c4c9ac;
    margin: 0;
}

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

.finance-compact-table th,
.finance-compact-table td {
    padding: 12px 14px;
}

.finance-modal {
    display: none;
    inset: 0;
    place-items: center;
    position: fixed;
    z-index: 1000;
}

.finance-modal.is-open {
    display: grid;
}

.finance-modal-backdrop {
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(3px);
    inset: 0;
    position: absolute;
}

.finance-modal-card {
    background: #201f20;
    border: 1px solid #444933;
    border-top: 4px solid #c3f400;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
    max-height: min(86vh, 720px);
    max-width: 760px;
    overflow: auto;
    padding: 24px;
    position: relative;
    width: min(calc(100vw - 32px), 760px);
}

.finance-modal-head {
    align-items: start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.icon-button {
    align-items: center;
    background: #131314;
    border: 1px solid #444933;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: "Space Mono", monospace;
    font-size: 18px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.icon-button:hover {
    background: #c3f400;
    color: #161e00;
}

.participant-table-footer {
    align-items: center;
    background: #201f20;
    border-top: 2px solid #444933;
    color: #c4c9ac;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    padding: 18px 20px;
}

.schedule-admin-head {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.schedule-admin-head h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: .95;
    margin: 0;
    text-transform: uppercase;
}

.schedule-admin-head h1 span {
    color: #abd600;
}

.schedule-admin-head p {
    color: #c4c9ac;
    font-size: 19px;
    margin: 10px 0 0;
    max-width: 760px;
}

.schedule-admin-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.schedule-admin-metrics div,
.schedule-admin-filter,
.schedule-admin-form,
.schedule-control-row {
    background: #201f20;
    border: 1px solid #444933;
    color: #e5e2e3;
}

.schedule-admin-metrics div {
    min-height: 116px;
    padding: 20px;
}

.schedule-admin-metrics span,
.schedule-admin-metrics strong,
.schedule-admin-section-title span,
.schedule-control-time span,
.schedule-control-copy > div > span,
.schedule-control-copy p,
.schedule-control-copy small {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.schedule-admin-metrics span {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}

.schedule-admin-metrics strong {
    color: #ffffff;
    display: block;
    font-size: 32px;
    line-height: 1;
}

.schedule-admin-metrics div:nth-child(3) strong {
    color: #00eefc;
}

.schedule-admin-metrics div:nth-child(4) strong {
    color: #abd600;
}

.schedule-admin-filter {
    margin-bottom: 24px;
    padding: 18px;
}

.schedule-admin-filter form {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr) auto;
}

.schedule-admin-filter label {
    display: grid;
    gap: 8px;
}

.schedule-admin-filter label span {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.schedule-admin-form {
    margin-bottom: 24px;
    padding: 24px;
}

.schedule-admin-section-title {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.schedule-admin-section-title h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.schedule-admin-section-title span {
    background: #abd600;
    color: #161e00;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
}

.schedule-control-list {
    display: grid;
    gap: 12px;
}

.schedule-control-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    overflow: hidden;
    position: relative;
}

.schedule-control-row::before {
    background: #444933;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.schedule-control-row.is-live {
    background: rgba(53, 52, 54, .62);
    border-color: #abd600;
}

.schedule-control-row.is-live::before {
    background: #abd600;
    box-shadow: 0 0 18px rgba(171, 214, 0, .65);
}

.schedule-control-row.is-complete {
    opacity: .68;
}

.schedule-control-time {
    align-items: center;
    background: #0e0e0f;
    border-right: 1px solid #444933;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    text-align: center;
}

.schedule-control-time strong {
    color: #ffffff;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.schedule-control-time span {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    margin-top: 8px;
}

.schedule-control-row.is-live .schedule-control-time strong,
.schedule-control-row.is-live .schedule-control-time span {
    color: #abd600;
}

.schedule-control-body {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 22px;
}

.schedule-control-copy {
    min-width: 0;
}

.schedule-control-copy > div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-control-copy > div > span {
    background: #353436;
    color: #c3f400;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 8px;
}

.schedule-control-copy h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(28px, 3.3vw, 40px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.schedule-control-copy p {
    color: #8e9379;
    font-size: 12px;
    margin: 10px 0 0;
}

.schedule-control-copy small {
    color: #c4c9ac;
    display: block;
    font-size: 12px;
    margin-top: 8px;
}

.schedule-mini-meter {
    align-items: end;
    display: flex;
    gap: 5px;
    height: 28px;
    margin-top: 12px;
    width: 160px;
}

.schedule-mini-meter i {
    background: #abd600;
    box-shadow: 0 0 8px rgba(171, 214, 0, .65);
    display: block;
    flex: 1;
    height: 50%;
    transition: height .12s ease;
}

.schedule-control-actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.filter-bar {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
}

.thumb {
    border: 2px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(16, 16, 16, .16);
    height: 58px;
    object-fit: cover;
    width: 88px;
}

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

.gallery-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.gallery-item img {
    aspect-ratio: 4 / 3;
    background: #1b1b1b;
    display: block;
    object-fit: cover;
    width: 100%;
}

.gallery-item div {
    padding: 14px;
}

.gallery-item strong,
.gallery-item span {
    display: block;
}

.gallery-item strong {
    color: var(--black);
}

.gallery-item span {
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 800;
}

.gallery-item p {
    color: var(--muted);
    margin: 8px 0 0;
}

.empty {
    background: #fffaf0;
    border: 1px dashed #d7c7a4;
    border-radius: 8px;
    color: var(--muted);
    padding: 24px;
    text-align: center;
}

.page-route_schedule .app-shell {
    max-width: 1500px;
    grid-template-columns: 260px minmax(0, 1fr);
}

.page-route_schedule .content {
    display: grid;
    gap: 16px;
}

.page-route_schedule .content > *,
.route-hero-card,
.route-control-grid,
.route-kpi-grid,
.route-timeline-panel,
.route-panel {
    max-width: 100%;
    min-width: 0;
}

.route-hero-card {
    align-items: stretch;
    background:
        radial-gradient(circle at 88% 12%, rgba(247, 198, 0, .34), transparent 28%),
        linear-gradient(135deg, #111 0%, #3b0d10 52%, #b0181f 100%);
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(16, 16, 16, .20);
    color: var(--white);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(280px, 1.2fr) minmax(420px, .95fr);
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    position: relative;
}

.route-hero-card::after {
    background: linear-gradient(90deg, var(--yellow), var(--red));
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.route-hero-copy {
    align-content: end;
    display: grid;
    min-height: 210px;
}

.eyebrow {
    color: var(--yellow);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.route-hero-copy h1 {
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: .98;
    margin: 0 0 12px;
    max-width: 760px;
    overflow-wrap: anywhere;
}

.route-hero-copy p {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    font-weight: 650;
    margin: 0;
    max-width: 720px;
}

.route-kpi-grid {
    align-self: center;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-kpi {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 18px;
}

.route-kpi span {
    color: rgba(255, 255, 255, .72);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.route-kpi strong {
    color: var(--white);
    display: block;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.1;
    margin-top: 8px;
}

.route-control-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
}

.route-panel {
    align-self: start;
    padding: 20px;
}

.panel-heading {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
}

.panel-heading h2 {
    margin: 0;
}

.form-grid.compact {
    gap: 12px;
}

.form-grid.compact textarea {
    min-height: 82px;
}

.page-route_schedule input,
.page-route_schedule select,
.page-route_schedule textarea {
    min-height: 40px;
}

.route-timeline-panel {
    padding: 20px;
}

.route-timeline {
    display: grid;
    gap: 12px;
}

.route-point-card {
    align-items: stretch;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 14px;
    position: relative;
}

.route-point-card::before {
    background: linear-gradient(180deg, var(--yellow), var(--red));
    border-radius: 999px;
    bottom: -13px;
    content: "";
    left: 39px;
    position: absolute;
    top: 66px;
    width: 4px;
}

.route-point-card:last-child::before {
    display: none;
}

.route-point-index {
    align-items: center;
    background: var(--black);
    border: 3px solid var(--yellow);
    border-radius: 999px;
    color: var(--yellow);
    display: inline-flex;
    font-size: 18px;
    font-weight: 950;
    height: 52px;
    justify-content: center;
    width: 52px;
    z-index: 1;
}

.route-point-body {
    min-width: 0;
}

.route-point-top {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.route-point-top strong {
    display: block;
    font-size: 19px;
    line-height: 1.2;
}

.route-point-top span:not(.badge) {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 750;
    margin-top: 3px;
}

.route-point-body p {
    color: var(--muted);
    margin: 10px 0;
}

.route-point-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.route-point-meta span {
    background: var(--yellow-soft);
    border-radius: 999px;
    color: #5a3b00;
    font-size: 12px;
    font-weight: 850;
    padding: 5px 9px;
}

.compact-actions {
    margin-top: 12px;
}

.compact-actions .button {
    min-height: 34px;
    padding: 7px 10px;
}

.page-route_schedule .table-wrap {
    border-color: #ddd3c1;
    max-width: 100%;
    width: 100%;
}

.page-route_schedule table {
    min-width: 980px;
}

.page-route_schedule th,
.page-route_schedule td {
    padding: 10px 12px;
}

.page-route_schedule td .button,
.page-route_schedule table .button {
    min-height: 34px;
    padding: 7px 10px;
}

.page-route_schedule table select,
.page-route_schedule table input {
    min-height: 36px;
    padding: 7px 9px;
}

.page-route_schedule .app-shell {
    max-width: none;
    grid-template-columns: 280px minmax(0, 1fr);
}

.page-route_schedule .route-hero-card {
    background:
        radial-gradient(circle at 86% 16%, rgba(195, 244, 0, .16), transparent 25%),
        radial-gradient(circle at 16% 88%, rgba(0, 238, 252, .10), transparent 22%),
        repeating-linear-gradient(45deg, rgba(195, 244, 0, .10), rgba(195, 244, 0, .10) 14px, rgba(255, 178, 184, .08) 14px, rgba(255, 178, 184, .08) 28px, rgba(0, 0, 0, .42) 28px, rgba(0, 0, 0, .42) 42px),
        #0e0e0f;
    border: 1px solid #444933;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
    color: #e5e2e3;
}

.page-route_schedule .route-hero-card::after {
    background: linear-gradient(90deg, #abd600, #00eefc, #ffb2b8);
}

.page-route_schedule .eyebrow {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: .14em;
}

.page-route_schedule .route-hero-copy h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.page-route_schedule .route-hero-copy p {
    color: #c4c9ac;
}

.page-route_schedule .route-kpi {
    background: rgba(32, 31, 32, .86);
    border: 1px solid #444933;
    border-radius: 0;
}

.page-route_schedule .route-kpi span {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
}

.page-route_schedule .route-kpi strong {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-weight: 400;
}

.page-route_schedule .route-control-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.page-route_schedule .route-panel,
.page-route_schedule .route-timeline-panel {
    background: #201f20;
    border: 1px solid #444933;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .20);
}

.page-route_schedule .panel-heading {
    border-bottom: 1px solid #444933;
}

.page-route_schedule .panel-heading h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.page-route_schedule .route-timeline {
    gap: 16px;
}

.page-route_schedule .route-point-card {
    background: #0e0e0f;
    border: 1px solid #444933;
    border-left: 4px solid #abd600;
    border-radius: 0;
    box-shadow: none;
    padding: 18px;
}

.page-route_schedule .route-point-card::before {
    background: linear-gradient(180deg, #abd600, #00eefc);
    border-radius: 0;
    left: 43px;
    opacity: .85;
}

.page-route_schedule .route-point-index {
    background: #201f20;
    border: 2px solid #abd600;
    border-radius: 0;
    color: #c3f400;
    font-family: "Space Mono", monospace;
}

.page-route_schedule .route-point-top strong {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-route_schedule .route-point-top span:not(.badge),
.page-route_schedule .route-point-body p {
    color: #c4c9ac;
}

.page-route_schedule .route-point-meta span {
    background: #2a2a2b;
    border-radius: 0;
    color: #c3f400;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.page-route_schedule .table-wrap {
    border-color: #444933;
    border-radius: 0;
    box-shadow: none;
}

.page-home {
    background: #131314;
    color: #e5e2e3;
    font-family: "Archivo Narrow", Inter, Arial, sans-serif;
}

.page-home .topbar {
    background: rgba(19, 19, 20, .92);
    border-bottom: 2px solid #444933;
    box-shadow: 0 0 24px rgba(195, 244, 0, .14);
}

.page-home .brand {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-home .topnav a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-home .topnav a.active,
.page-home .topnav a:hover {
    background: #c3f400;
    color: #161e00;
    transform: skewX(-8deg);
}

.page-home .public-shell {
    background: #131314;
    color: #e5e2e3;
    padding: 0;
}

.page-home .public-shell .content {
    display: block;
}

.page-home .public-shell .content > .festival-hero,
.page-home .public-shell .content > .festival-countdown,
.page-home .public-shell .content > .festival-footer {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

.page-home .public-shell .content > :not(.festival-hero):not(.festival-countdown):not(.festival-footer) {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    padding-left: clamp(16px, 3.5vw, 48px);
    padding-right: clamp(16px, 3.5vw, 48px);
    width: 100%;
}

.festival-hero {
    align-items: center;
    background: #0e0e0f;
    display: flex;
    justify-content: center;
    min-height: clamp(560px, 72vh, 720px);
    overflow: hidden;
    padding: clamp(32px, 5vw, 64px) 20px;
    position: relative;
    text-align: center;
}

.festival-hero-bg {
    background:
        linear-gradient(to top, #131314 0%, rgba(19, 19, 20, .78) 38%, rgba(19, 19, 20, .34) 100%),
        radial-gradient(circle at 50% 42%, rgba(195, 244, 0, .22), transparent 25%),
        repeating-linear-gradient(45deg, rgba(171, 214, 0, .28), rgba(171, 214, 0, .28) 14px, rgba(255, 178, 184, .16) 14px, rgba(255, 178, 184, .16) 28px, rgba(0, 0, 0, .60) 28px, rgba(0, 0, 0, .60) 42px),
        linear-gradient(135deg, #111 0%, #2a0c11 44%, #263200 100%);
    inset: 0;
    opacity: .92;
    position: absolute;
}

.festival-hero-bg::after {
    background:
        radial-gradient(circle at 14% 82%, rgba(0, 238, 252, .18), transparent 18%),
        radial-gradient(circle at 84% 20%, rgba(255, 178, 184, .20), transparent 20%);
    content: "";
    inset: 0;
    position: absolute;
}

.festival-hero-content {
    max-width: 1040px;
    position: relative;
    z-index: 2;
}

.festival-tag,
.festival-kicker {
    background: #c3f400;
    color: #161e00;
    display: inline-flex;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 6px 10px;
    text-transform: uppercase;
}

.festival-hero h1 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(52px, 8.6vw, 108px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .9;
    margin: 16px 0 18px;
    text-transform: uppercase;
}

.festival-hero h1 span {
    color: #c3f400;
}

.glitch-text {
    text-shadow: 3px 0 #abd600, -3px 0 #ffb2b8;
}

.festival-hero p {
    color: #c4c9ac;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    margin: 0 auto;
    max-width: 760px;
}

.festival-hero-actions {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 28px;
}

.festival-cta {
    background: #c3f400;
    color: #161e00;
    display: inline-flex;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(23px, 2.6vw, 31px);
    padding: 14px 34px;
    text-transform: uppercase;
    transform: skewX(-7deg);
    transition: .15s ease;
}

.festival-cta:hover {
    background: #ffffff;
    color: #000000;
}

.festival-date {
    border-left: 4px solid #c3f400;
    display: grid;
    gap: 3px;
    padding-left: 16px;
    text-align: left;
}

.festival-date span,
.festival-date small {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.festival-date strong {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 400;
    line-height: .95;
}

.festival-date strong + small {
    margin-bottom: 8px;
}

.festival-countdown {
    background: #1c1b1c;
    border-bottom: 2px solid #444933;
    border-top: 2px solid #444933;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.festival-countdown div {
    align-items: center;
    border-right: 1px solid #444933;
    display: flex;
    flex-direction: column;
    padding: clamp(18px, 3.2vw, 30px) 12px;
}

.festival-countdown div:last-child {
    border-right: 0;
}

.festival-countdown strong {
    color: #c3f400;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 400;
    line-height: .9;
}

.festival-countdown span {
    color: #e5e2e3;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.festival-section {
    padding-bottom: clamp(40px, 5.5vw, 68px);
    padding-top: clamp(40px, 5.5vw, 68px);
}

.festival-section h2 {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    line-height: .98;
    margin: 10px 0 16px;
    text-transform: uppercase;
}

.festival-section p {
    color: #c4c9ac;
    font-size: 18px;
}

.festival-about {
    align-items: center;
    display: grid;
    gap: clamp(28px, 4.5vw, 54px);
    grid-template-columns: minmax(300px, .9fr) minmax(320px, 1fr);
}

.festival-visual {
    position: relative;
}

.sound-horeg-photo {
    aspect-ratio: 16 / 10;
    background: #0e0e0f;
    border: 1px solid #444933;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.sound-horeg-photo::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .5)),
        repeating-linear-gradient(45deg, rgba(195, 244, 0, .12) 0 10px, transparent 10px 22px);
    content: "";
    inset: 0;
    mix-blend-mode: screen;
    opacity: .18;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.sound-horeg-photo::after {
    border: 1px solid rgba(195, 244, 0, .22);
    content: "";
    inset: 18px;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.sound-horeg-photo img {
    display: block;
    filter: saturate(1.12) contrast(1.05) brightness(.86);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.speaker-wall {
    aspect-ratio: 1;
    background: #0e0e0f;
    border: 1px solid #444933;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px;
}

.speaker-wall span {
    background:
        radial-gradient(circle, #111 0 34%, #c3f400 35% 38%, #2a2a2b 39% 64%, #0e0e0f 65%);
    border: 1px solid #353436;
}

.festival-visual small {
    background: #131314;
    border: 1px solid #8e9379;
    bottom: 18px;
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    left: 18px;
    padding: 8px 12px;
    position: absolute;
    text-transform: uppercase;
}

.festival-feature-list {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.festival-feature-list span {
    color: #e5e2e3;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    text-transform: uppercase;
}

.festival-bento {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bento-main,
.bento-card {
    background: #201f20;
    border: 1px solid #444933;
    color: #e5e2e3;
    min-height: 170px;
    padding: 24px;
}

.bento-main {
    background: #c3f400;
    color: #161e00;
    grid-column: span 2;
    grid-row: span 2;
    min-height: 340px;
}

.bento-main h2 {
    color: #161e00;
}

.bento-main p {
    color: #283500;
}

.material-fallback {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 18px;
    font-weight: 700;
}

.bento-card span {
    color: #c3f400;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bento-card strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1;
    overflow-wrap: anywhere;
}

.bento-card small {
    color: #c4c9ac;
    display: block;
    margin-top: 12px;
}

.bento-card.wide {
    grid-column: span 2;
}

.split-section {
    display: grid;
    gap: 28px;
}

.festival-table {
    border: 1px solid #444933;
    overflow-x: auto;
}

.festival-table table {
    background: #131314;
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.festival-table th {
    background: #0e0e0f;
    color: #c3f400;
    font-family: "Space Mono", monospace;
}

.festival-table td {
    border-color: #353436;
    color: #e5e2e3;
}

.festival-table tbody tr:hover {
    background: #1c1b1c;
}

.live-route-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 24px 0;
}

.live-route-grid div {
    background: #201f20;
    border: 1px solid #444933;
    padding: 20px;
}

.live-route-grid span {
    color: #c3f400;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.live-route-grid strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin-top: 8px;
}

.public-route-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 10px 0 18px;
}

.public-route-summary div {
    background: linear-gradient(180deg, #201f20, #161617);
    border: 1px solid #444933;
    border-top: 4px solid #c3f400;
    min-height: 94px;
    padding: 16px;
}

.public-route-summary span,
.public-route-table th span,
.public-route-table td span,
.public-route-table td small {
    color: #c4c9ac;
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.public-route-summary strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    line-height: 1;
    margin-top: 8px;
}

.public-route-table {
    min-width: 980px;
}

.public-route-table th {
    white-space: nowrap;
    vertical-align: bottom;
}

.public-route-table .route-status-heading,
.public-route-table .route-status-cell {
    min-width: 148px;
    text-align: right;
    width: 164px;
}

.public-route-table td:first-child {
    min-width: 220px;
}

.public-route-table td strong {
    color: #ffffff;
}

.public-route-table td:not(:first-child) strong {
    color: #c3f400;
    font-family: "Space Mono", monospace;
    font-size: 18px;
}

.public-route-table td small {
    color: #8e9379;
    margin-top: 4px;
}

.public-route-table .route-status-badge {
    align-items: center;
    background: #2a2a2b;
    border: 1px solid #8e9379;
    border-radius: 999px;
    color: #e5e2e3;
    display: inline-flex;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: .08em;
    line-height: 1;
    min-width: 126px;
    padding: 9px 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

.public-route-table .route-status-badge.warning {
    background: rgba(255, 196, 0, .12);
    border-color: #ffc400;
    color: #ffc400;
}

.public-route-table .route-status-badge.success {
    background: rgba(195, 244, 0, .12);
    border-color: #c3f400;
    color: #c3f400;
}

.public-route-table .route-status-badge.danger {
    background: rgba(255, 180, 171, .12);
    border-color: #ffb4ab;
    color: #ffb4ab;
}

.section-heading-row {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.bass-meter {
    background: linear-gradient(90deg, #abd600 0%, #abd600 70%, #ffb2b8 100%);
    height: 16px;
    mask-image: linear-gradient(to right, black 2px, transparent 2px);
    mask-size: 4px 100%;
    width: 260px;
}

.festival-video-placeholder {
    align-items: center;
    aspect-ratio: 16 / 7;
    background:
        linear-gradient(rgba(0, 0, 0, .44), rgba(0, 0, 0, .68)),
        repeating-linear-gradient(45deg, #353436 0 16px, #131314 16px 32px);
    border: 1px solid #444933;
    display: grid;
    justify-items: center;
    place-content: center;
    text-align: center;
}

.festival-video-placeholder span {
    align-items: center;
    background: #c3f400;
    border-radius: 999px;
    color: #161e00;
    display: flex;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    height: 92px;
    justify-content: center;
    margin-bottom: 20px;
    width: 92px;
}

.festival-video-placeholder strong {
    color: #ffffff;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
}

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

.page-home .gallery-item {
    background: #201f20;
    border-color: #444933;
    color: #ffffff;
}

.page-home .gallery-item span,
.page-home .gallery-item p {
    color: #c4c9ac;
}

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

.village-grid article {
    background: #201f20;
    border: 1px solid #444933;
    padding: 20px;
}

.village-grid strong {
    color: #ffffff;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 28px;
    font-weight: 400;
}

.village-grid span,
.village-grid p {
    color: #c4c9ac;
}

.festival-footer {
    align-items: center;
    background: #0e0e0f;
    border-top: 4px double #444933;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 40px clamp(20px, 6vw, 64px);
}

.festival-footer strong {
    color: #c3f400;
    display: block;
    font-family: "Anton", Impact, sans-serif;
    font-size: 34px;
    font-weight: 400;
}

.festival-footer span,
.festival-footer a {
    color: #c4c9ac;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.festival-footer div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 980px) {
    .finance-summary,
    .finance-compact-grid {
        grid-template-columns: 1fr;
    }

    .finance-toolbar,
    .finance-panel-head,
    .admin-modal-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-page-toolbar {
        justify-content: stretch;
    }

    .admin-page-toolbar .button {
        width: 100%;
    }

    .committee-control-panel {
        padding: 24px 14px;
    }

    .committee-control-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .committee-control-head::after {
        width: 100%;
    }

    .committee-card-grid.two,
    .committee-card-grid.three,
    .committee-division-grid {
        grid-template-columns: 1fr;
    }

    .committee-command-center,
    .committee-card-grid.three,
    .committee-pulse-line + .committee-tier {
        margin-top: 24px;
    }

    .committee-command-card.chief {
        width: 100%;
    }

    .committee-control-head h2 {
        font-size: clamp(48px, 16vw, 72px);
    }

    .committee-command-card,
    .committee-ground-control {
        align-items: stretch;
        flex-direction: column;
    }

    .committee-card-avatar {
        flex-basis: 76px;
        height: 76px;
        width: 76px;
    }

    .committee-pulse-line.split,
    .committee-pulse-line.wide {
        display: none;
    }

    .committee-ground-control div:last-child {
        justify-content: flex-start;
    }

    .letter-builder,
    .letter-settings-builder,
    .letter-summary-grid,
    .letter-filter form {
        grid-template-columns: 1fr;
    }

    .letter-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .letter-preview-panel {
        max-width: 100%;
        max-height: none;
        position: static;
    }

    .letter-paper {
        min-height: 0;
        padding: 24px;
        transform: none;
        width: 100%;
    }

    .letter-builder .letter-preview-panel .letter-paper {
        zoom: 1;
    }

    .letter-kop {
        grid-template-columns: 64px minmax(0, 1fr) 64px;
    }

    .letter-meta,
    .letter-signatures {
        grid-template-columns: 1fr;
    }

    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        max-height: none;
        position: static;
    }

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

    .page-route_schedule .app-shell,
    .route-hero-card,
    .route-control-grid {
        grid-template-columns: 1fr;
    }

    .route-hero-copy {
        min-height: 0;
    }

    .festival-about,
    .festival-bento,
    .live-route-grid {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-card.wide {
        grid-column: auto;
    }

    .festival-gallery,
    .village-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    body {
        background: var(--paper);
    }

    .app-shell,
    .form-grid,
    .grid.cols-2,
    .grid.cols-3,
    .filter-bar,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .brand {
        max-width: 100%;
    }

    .topnav {
        overflow-x: auto;
        padding-bottom: 2px;
        width: 100%;
    }

    .topnav a {
        white-space: nowrap;
    }

    .public-shell {
        padding-top: 0;
    }

    .hero {
        min-height: 430px;
        padding: 30px 18px 78px;
    }

    .public-shell .content > :not(.hero) {
        width: calc(100% - 28px);
    }

    .public-shell .hero + .grid {
        margin-top: -42px;
    }

    .hero p {
        font-size: 16px;
    }

    .page-title {
        padding: 18px;
    }

    .panel {
        padding: 18px;
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .route-kpi-grid {
        grid-template-columns: 1fr;
    }

    .route-point-card {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .route-point-index {
        height: 42px;
        width: 42px;
    }

    .route-point-card::before {
        left: 33px;
        top: 56px;
    }

    .route-point-top {
        align-items: stretch;
        flex-direction: column;
    }

    .page-home .topbar {
        position: sticky;
    }

    .page-home .brand {
        font-size: 20px;
    }

    .page-home .public-shell .content > :not(.festival-hero):not(.festival-countdown):not(.festival-footer) {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .festival-hero {
        min-height: 620px;
        padding: 42px 18px;
    }

    .festival-hero h1 {
        font-size: clamp(46px, 15vw, 66px);
    }

    .festival-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .festival-date {
        text-align: left;
    }

    .festival-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .festival-countdown div:nth-child(2) {
        border-right: 0;
    }

    .festival-section {
        padding-bottom: 42px;
        padding-top: 42px;
    }

    .festival-section h2 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .section-heading-row,
    .festival-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .bass-meter {
        width: 100%;
    }

    .festival-gallery,
    .public-route-summary,
    .village-grid {
        grid-template-columns: 1fr;
    }

    .public-route-table {
        min-width: 860px;
    }

    .page-login .topbar {
        align-items: flex-start;
        gap: 10px;
    }

    .page-login .brand {
        font-size: 21px;
    }

    .login-screen {
        min-height: calc(100vh - 112px);
        padding: 64px 16px 104px;
    }

    .login-heading > span {
        letter-spacing: .14em;
    }

    .login-heading h1 {
        font-size: clamp(68px, 24vw, 94px);
    }

    .login-heading p {
        letter-spacing: .18em;
    }

    .login-card {
        padding: 16px;
    }

    .login-support,
    .login-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .login-ghost-word {
        display: none;
    }

    .page-schedule .topbar {
        align-items: flex-start;
    }

    .page-schedule .brand {
        font-size: 21px;
    }

    .schedule-hero {
        min-height: 390px;
        padding: 54px 16px 36px;
    }

    .schedule-hero h1 {
        font-size: clamp(46px, 15vw, 62px);
    }

    .schedule-hero p {
        font-size: 18px;
    }

    .schedule-page {
        grid-template-columns: 1fr;
        padding: 46px 16px;
    }

    .schedule-status {
        position: static;
    }

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

    .schedule-mini-grid div {
        padding: 12px;
    }

    .schedule-mini-grid strong {
        font-size: 26px;
    }

    .schedule-timeline {
        padding-left: 26px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
    }

    .schedule-dot {
        left: -35px;
    }

    .schedule-item.is-peak {
        transform: none;
    }

    .schedule-card {
        padding: 18px;
    }

    .schedule-card-head {
        flex-direction: column;
    }

    .schedule-visualizer {
        height: 210px;
    }

    .schedule-bars {
        gap: 5px;
    }

    .schedule-bars span {
        width: 5px;
    }

    .page-lineup .topbar {
        align-items: flex-start;
    }

    .page-lineup .brand {
        font-size: 21px;
    }

    .lineup-hero {
        align-items: center;
        min-height: 300px;
        padding: 34px 16px 28px;
    }

    .lineup-hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .lineup-hero p {
        font-size: 18px;
    }

    .lineup-hero-mark {
        display: none;
    }

    .lineup-filter {
        padding: 18px 16px;
    }

    .lineup-filter form {
        align-items: stretch;
        flex-direction: column;
    }

    .lineup-filter-left {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .lineup-filter-left::-webkit-scrollbar {
        display: none;
    }

    .lineup-filter-left a,
    .lineup-filter-left strong {
        flex: 0 0 auto;
    }

    .lineup-search {
        min-width: 0;
        width: 100%;
    }

    .lineup-grid-section {
        padding: 42px 16px;
    }

    .lineup-summary,
    .lineup-grid {
        grid-template-columns: 1fr;
    }

    .lineup-card-body {
        padding: 18px;
    }

    .lineup-details {
        grid-template-columns: 1fr;
    }

    .lineup-marquee {
        margin: 44px -16px -42px;
        overflow-x: auto;
        padding: 22px 16px;
    }

    .admin-shell .app-shell {
        padding: 16px 14px 48px;
    }

    .admin-shell .brand {
        font-size: 21px;
    }

    .admin-dashboard-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-status-panel {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .admin-status-panel i {
        height: 1px;
        width: 100%;
    }

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

    .admin-metric,
    .admin-live-panel,
    .admin-activity-panel,
    .admin-info-panel,
    .admin-permit-panel,
    .admin-user-panel,
    .admin-announcement-panel {
        grid-column: auto;
    }

    .admin-live-head {
        flex-direction: column;
    }

    .admin-bass-meter {
        height: 110px;
        margin-top: 28px;
    }

    .admin-sound-pattern {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .admin-sound-wall {
        min-height: 300px;
    }

    .participant-admin-head {
        align-items: stretch;
        flex-direction: column;
        padding-left: 16px;
    }

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

    .participant-admin-filter form {
        grid-template-columns: 1fr;
    }

    .participant-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .participant-admin-form {
        padding: 18px;
    }

    .participant-table-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .schedule-admin-head {
        align-items: stretch;
        flex-direction: column;
    }

    .schedule-admin-metrics,
    .schedule-admin-filter form {
        grid-template-columns: 1fr;
    }

    .schedule-admin-form {
        padding: 18px;
    }

    .schedule-admin-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-control-row {
        grid-template-columns: 1fr;
    }

    .schedule-control-time {
        align-items: flex-start;
        border-bottom: 1px solid #444933;
        border-right: 0;
        text-align: left;
    }

    .schedule-control-body {
        align-items: stretch;
        flex-direction: column;
    }

    .schedule-control-actions {
        justify-content: flex-start;
    }

    .page-route_schedule .route-control-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 14px;
    }

    .brand::before {
        box-shadow: 3px 3px 0 var(--black);
        height: 24px;
        flex-basis: 24px;
        width: 24px;
    }

    table {
        min-width: 680px;
    }

    .letter-tabs,
    .settings-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .letter-tabs a,
    .settings-tabs a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

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