:root {
    --primary: #0f2a44;
    --secondary: #3fa9f5;
    --accent: #d4af37;
    --bg-light: #f4f6f8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --muted: #5d6a78;
    --border: rgba(15, 42, 68, 0.12);
    --shadow: 0 18px 48px rgba(10, 26, 47, 0.14);
    --radius: 18px;
    --radius-sm: 10px;
    --container: 1120px;
    --surface: rgba(255, 255, 255, 0.78);
    --header-offset: 0px;
}

html[data-theme="dark"] {
    --bg-light: #081321;
    --text-dark: #edf3f8;
    --muted: #b9cadb;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    --surface: rgba(10, 26, 47, 0.78);
}

html {
    scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 20%),
        linear-gradient(180deg, var(--bg-light), color-mix(in srgb, var(--bg-light) 88%, #ffffff 12%));
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

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

.site-header {
    position: relative;
    top: 0;
    z-index: 8;
    background: transparent;
    border-bottom: 0;
}

.page-home .site-header {
    display: none;
}

.header-shell, .footer-shell, .hero-grid, .split-grid, .cards-grid, .stats-grid {
    display: grid;
    gap: 1.5rem;
}

.header-shell {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 1rem 0 0.4rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.hero, .section { padding: 5rem 0; }

.admin-stack {
    display: grid;
    gap: 1.5rem;
}

.hero-grid, .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-copy h1, .split-grid h1, .narrow-stack h1, .request-aside h2, .support-card h2 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 0.95;
    margin: 0.35rem 0 1rem;
}

.hero-copy p,
.split-grid p,
.panel p,
.helper,
.brand span,
.feature-card p,
.receipt-row span,
.request-aside p,
.support-card p,
.request-note p {
    color: var(--muted);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(63, 169, 245, 0.14);
    color: var(--primary);
}

.hero-actions, .submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-points {
    padding-left: 1.1rem;
    line-height: 1.9;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 180ms ease;
}

.btn-primary { background: var(--secondary); color: var(--text-light); }
.btn-primary:hover { background: #2f8cd0; }

.btn-secondary {
    background: transparent;
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: rgba(63, 169, 245, 0.42);
    background: rgba(63, 169, 245, 0.08);
}

.panel, .feature-card, .stat-card, .support-card, .request-note {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.panel, .feature-card, .stat-card, .support-card { padding: 1.5rem; }

.banner-story {
    position: relative;
    min-height: 320svh;
    background:
        radial-gradient(circle at 18% 20%, rgba(63, 169, 245, 0.18), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.14), transparent 24%),
        linear-gradient(180deg, #071121 0%, #0a1a2f 52%, #0d223a 100%);
    overflow: clip;
}

.banner-stage {
    position: sticky;
    top: calc(var(--header-offset) + 0.9rem);
    height: calc(100svh - var(--header-offset) - 1.4rem);
}

.banner-shell {
    position: relative;
    height: 100%;
    margin: 0 clamp(0.85rem, 2vw, 1.5rem) 1.5rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(7, 17, 33, 0.96), rgba(10, 26, 47, 0.88)),
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.26), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 82px rgba(2, 11, 22, 0.45);
    transform: translate3d(0, var(--banner-stage-shift, 0px), 0);
}

.banner-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.banner-grid {
    position: relative;
    display: grid;
    height: 100%;
    padding: clamp(0.5rem, 1.8vw, 1rem);
    isolation: isolate;
}

.banner-media,
.banner-copy-intro,
.banner-copy-outro {
    grid-area: 1 / 1;
}

.banner-media {
    position: relative;
    width: min(100%, 930px);
    height: min(68svh, 760px);
    justify-self: center;
    align-self: center;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(63, 169, 245, 0.22), transparent 36%),
        linear-gradient(180deg, rgba(8, 19, 33, 0.92), rgba(7, 17, 33, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 36px 90px rgba(0, 0, 0, 0.38);
}

.banner-fallback,
.banner-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-fallback {
    object-fit: cover;
    transform: scale(var(--banner-media-scale, 1.01)) translateY(var(--banner-media-shift, 0px));
    filter: saturate(1.03) contrast(1.02);
    transition: opacity 260ms ease;
}

.banner-canvas {
    display: block;
    opacity: 0;
    transition: opacity 280ms ease;
}

[data-banner-sequence][data-sequence-ready="true"] .banner-canvas {
    opacity: 1;
}

[data-banner-sequence][data-sequence-ready="true"] .banner-fallback {
    opacity: 0.16;
}

.banner-sheen {
    position: absolute;
    inset: -18%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 30%),
        linear-gradient(125deg, transparent 22%, rgba(255, 255, 255, 0.09) 48%, transparent 64%);
    mix-blend-mode: screen;
    opacity: calc(0.16 + var(--sequence-progress, 0) * 0.18);
    pointer-events: none;
}

.banner-aura {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.36;
}

.banner-aura-left {
    inset: -10% auto auto -4%;
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    background: rgba(63, 169, 245, 0.34);
}

.banner-aura-right {
    inset: auto -3% -14% auto;
    width: min(30vw, 360px);
    height: min(30vw, 360px);
    background: rgba(212, 175, 55, 0.22);
}

.banner-copy {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    transition: opacity 180ms linear, transform 180ms linear;
    will-change: opacity, transform;
}

.banner-copy .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    backdrop-filter: blur(12px);
}

.banner-copy h1 {
    margin: 0.45rem 0 1rem;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.9;
    max-width: 12ch;
}

.banner-copy p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
}

.banner-copy .hero-actions {
    margin-top: 1.35rem;
}

.banner-copy .btn-secondary {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.16);
}

.banner-copy .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.banner-copy-intro {
    justify-self: start;
    align-self: end;
    max-width: min(42vw, 36rem);
    padding: clamp(0.75rem, 2vw, 1.5rem);
}

.banner-copy-outro {
    justify-self: end;
    align-self: center;
    max-width: min(32vw, 24rem);
    padding: clamp(0.75rem, 2vw, 1.5rem);
    pointer-events: none;
}

.banner-outro-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.35rem;
    border-radius: 22px;
    background: rgba(8, 19, 33, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.banner-outro-card strong {
    font-size: 1.35rem;
    line-height: 1.15;
}

.banner-outro-card p {
    color: rgba(255, 255, 255, 0.74);
}

.banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.banner-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    backdrop-filter: blur(14px);
}

.banner-progress-track {
    position: absolute;
    left: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: 1.15rem;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.banner-progress-track span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.banner-hint {
    position: absolute;
    left: 50%;
    bottom: 2.45rem;
    transform: translateX(-50%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    backdrop-filter: blur(16px);
    white-space: nowrap;
}

.request-section,
.section-tight {
    scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.request-section {
    position: relative;
    padding-top: 4rem;
}

.request-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.request-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.request-aside h2 {
    max-width: 12ch;
}

.request-checklist {
    display: grid;
    gap: 1rem;
    margin-top: 0.6rem;
}

.request-note {
    padding: 1.2rem 1.25rem;
    background: color-mix(in srgb, var(--surface) 92%, #ffffff 8%);
}

.request-note strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.request-note p {
    margin: 0;
}

.request-form-panel {
    padding: clamp(1.35rem, 2vw, 2rem);
    background: color-mix(in srgb, var(--surface) 92%, #ffffff 8%);
    backdrop-filter: blur(16px);
}

.request-page {
    padding-top: 4.5rem;
}

.request-page-grid {
    align-items: start;
}

.request-page-copy {
    display: grid;
    gap: 1rem;
}

.request-page-copy p {
    max-width: 36rem;
}

.section-tight {
    padding-top: 1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.support-card {
    display: grid;
    gap: 0.85rem;
    min-height: 100%;
}

.support-card h2 {
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1;
    margin: 0;
}

.support-card p {
    margin: 0;
}

.hero-cinematic {
    position: relative;
    min-height: 220svh;
    background:
        radial-gradient(circle at 20% 18%, rgba(63, 169, 245, 0.22), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(212, 175, 55, 0.16), transparent 20%),
        linear-gradient(180deg, #040c16 0%, #071828 48%, #0a2338 100%);
    overflow: clip;
}

.hero-cinematic-stage {
    position: sticky;
    top: var(--header-offset);
    height: calc(100svh - var(--header-offset));
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 2vw, 1.8rem);
}

.hero-cinematic-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

.hero-cinematic-stage::after {
    content: "";
    position: absolute;
    inset: -12%;
    background:
        radial-gradient(circle at 50% 54%, rgba(255, 255, 255, calc(var(--banner-highlight, 0.16) * 0.42)), transparent 22%),
        radial-gradient(circle at 50% 54%, rgba(63, 169, 245, calc(var(--banner-highlight, 0.16) * 0.35)), transparent 34%);
    filter: blur(var(--banner-depth-blur, 10px));
    transform: translate3d(var(--banner-depth-shift, 0px), 0, 0);
    pointer-events: none;
    z-index: 1;
}

.hero-cinematic-aura {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.46;
}

.hero-cinematic-aura-left {
    width: min(30vw, 420px);
    height: min(30vw, 420px);
    top: 14%;
    left: 6%;
    background: rgba(63, 169, 245, 0.26);
}

.hero-cinematic-aura-right {
    width: min(26vw, 360px);
    height: min(26vw, 360px);
    right: 8%;
    bottom: 16%;
    background: rgba(212, 175, 55, 0.18);
}

.hero-cinematic-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-cinematic-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(5, 15, 28, 0.92) 0%, rgba(8, 24, 40, 0.88) 100%);
    transform: translate3d(0, var(--banner-stage-shift, 0px), 0) scale(var(--banner-media-scale, 1.01));
    transform-origin: center center;
    isolation: isolate;
}

.hero-cinematic-media::before {
    content: "";
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at 28% 34%, rgba(63, 169, 245, 0.14), transparent 20%),
        radial-gradient(circle at 72% 62%, rgba(212, 175, 55, 0.1), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.42;
    pointer-events: none;
    z-index: 1;
}

.hero-cinematic-media::after {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, calc(var(--banner-highlight, 0.18) * 0.4)), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(63, 169, 245, calc(var(--banner-highlight, 0.18) * 0.3)), transparent 28%),
        linear-gradient(180deg, rgba(5, 15, 28, 0.06), transparent 18%, transparent 82%, rgba(5, 15, 28, 0.14));
    filter: blur(calc(var(--banner-depth-blur, 10px) * 0.75));
    transform: translate3d(calc(var(--banner-depth-shift, 0px) * -0.35), 0, 0);
    pointer-events: none;
    z-index: 2;
}

.hero-cinematic-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(10, 26, 47, 0.34), rgba(15, 42, 68, 0.26));
    pointer-events: none;
}

.hero-cinematic-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 18, 31, 0.18), rgba(6, 18, 31, 0.34)),
        radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.08), transparent 30%);
    z-index: 1;
}

.hero-cinematic-backdrop-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(68vw, 520px);
    max-width: 68vh;
    height: auto;
    opacity: 0.14;
    transform:
        translate3d(
            calc(-50% + var(--banner-backdrop-shift-x, 0px)),
            calc(-50% + var(--banner-backdrop-shift-y, 0px)),
            0
        )
        rotateX(var(--banner-backdrop-rotate-x, 0deg))
        rotateY(var(--banner-backdrop-rotate-y, 0deg))
        rotateZ(var(--banner-backdrop-rotate-z, 0deg))
        scale(var(--banner-backdrop-scale, 1.04));
    transform-style: preserve-3d;
    transform-origin: center center;
    filter:
        blur(var(--banner-backdrop-blur, 1px))
        saturate(0.92)
        brightness(0.82)
        drop-shadow(0 0 32px rgba(63, 169, 245, 0.14));
    transition:
        transform 3200ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 320ms ease,
        filter 320ms ease;
    will-change: transform;
    z-index: 0;
}

.hero-cinematic-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, var(--banner-video-shift, 0px), 0) scale(var(--banner-video-scale, 1.02));
    filter: saturate(1.08) contrast(1.04) brightness(1.04);
    opacity: 0;
    transition: opacity 420ms ease;
    z-index: 1;
}

.hero-cinematic[data-banner-ready="true"] .hero-cinematic-video {
    opacity: 1;
}

.hero-cinematic .banner-fallback,
.hero-cinematic .banner-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-cinematic .banner-fallback {
    object-fit: cover;
    transform: translate3d(0, var(--banner-media-shift, 0px), 0);
    filter: saturate(1.16) contrast(1.08) brightness(1.18);
}

.hero-cinematic .banner-canvas {
    display: block;
    opacity: 0;
    filter: saturate(1.18) contrast(1.08) brightness(1.16);
    transition: opacity 260ms ease;
}

[data-banner-sequence][data-sequence-ready="true"] .banner-canvas,
.hero-cinematic[data-sequence-ready="true"] .banner-canvas {
    opacity: 1;
}

[data-banner-sequence][data-sequence-ready="true"] .banner-fallback,
.hero-cinematic[data-sequence-ready="true"] .banner-fallback {
    opacity: 0.04;
}

.hero-cinematic-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 44%, rgba(4, 12, 22, 0.02) 74%, rgba(4, 12, 22, 0.12) 100%),
        linear-gradient(180deg, rgba(4, 12, 22, 0.04), transparent 18%, transparent 82%, rgba(4, 12, 22, 0.16));
    pointer-events: none;
    z-index: 3;
}

.hero-cinematic-glass {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 84%, rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.03));
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 4;
}

.hero-cinematic-sparkles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-cinematic-spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.42) 38%, transparent 72%);
    filter: blur(0.4px);
    opacity: 0;
    animation: sparkleFloat 5.6s ease-in-out infinite;
}

.hero-cinematic-spark::before,
.hero-cinematic-spark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: translate(-50%, -50%);
}

.hero-cinematic-spark::after {
    width: 18px;
    height: 1px;
}

.hero-cinematic-spark-a {
    top: 24%;
    left: 18%;
    animation-delay: 0s;
}

.hero-cinematic-spark-b {
    top: 34%;
    right: 21%;
    animation-delay: 1.1s;
}

.hero-cinematic-spark-c {
    bottom: 26%;
    left: 30%;
    animation-delay: 2.1s;
}

.hero-cinematic-spark-d {
    bottom: 18%;
    right: 28%;
    animation-delay: 3.2s;
}

.hero-cinematic-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.06), transparent 18%),
        linear-gradient(180deg, rgba(6, 18, 31, 0.22), rgba(6, 18, 31, 0.38));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 360ms ease, visibility 360ms ease;
}

.hero-cinematic[data-sequence-loading="true"] .hero-cinematic-loader,
.hero-cinematic[data-banner-loading="true"] .hero-cinematic-loader {
    opacity: 1;
    visibility: visible;
}

.hero-cinematic-loader-core {
    position: relative;
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    min-width: min(62vw, 240px);
    padding: 1.35rem 1.4rem 1.2rem;
    border-radius: 28px;
    background: rgba(7, 18, 33, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.hero-cinematic-loader-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-cinematic-loader-glow-a {
    width: 44px;
    height: 44px;
    top: 0.75rem;
    left: 0.8rem;
    background: rgba(63, 169, 245, 0.46);
    animation: loaderSpark 2.2s ease-in-out infinite;
}

.hero-cinematic-loader-glow-b {
    width: 36px;
    height: 36px;
    right: 1rem;
    bottom: 2.4rem;
    background: rgba(212, 175, 55, 0.34);
    animation: loaderSpark 2.2s ease-in-out infinite 0.45s;
}

.hero-cinematic-loader-logo {
    width: clamp(72px, 8vw, 96px);
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
    animation: loaderPulse 1.75s ease-in-out infinite;
}

.hero-cinematic-loader-bar {
    width: min(44vw, 180px);
    height: 5px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-cinematic-loader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--sequence-load-progress, 0.02));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: inherit;
}

.hero-cinematic-loader-dots {
    display: inline-flex;
    gap: 0.45rem;
}

.hero-cinematic-loader-dots span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(205, 225, 255, 0.62));
    box-shadow: 0 0 14px rgba(63, 169, 245, 0.3);
    animation: loaderDot 1.2s ease-in-out infinite;
}

.hero-cinematic-loader-dots span:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-cinematic-loader-dots span:nth-child(3) {
    animation-delay: 0.36s;
}

.hero-cinematic-dock {
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 2vw, 1.6rem);
    z-index: 5;
    display: grid;
    gap: 0.65rem;
    width: min(90vw, 520px);
    transform: translateX(-50%);
    justify-items: center;
    transition: opacity 300ms ease, transform 300ms ease;
}

.hero-cinematic[data-sequence-loading="true"] .hero-cinematic-dock,
.hero-cinematic[data-banner-loading="true"] .hero-cinematic-dock {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
}

.hero-cinematic-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-cinematic-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.hero-cinematic-cue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(8, 19, 33, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-cinematic-cue-arrows {
    position: relative;
    width: 1.3rem;
    height: 1.5rem;
}

.hero-cinematic-cue-arrows span {
    position: absolute;
    left: 50%;
    width: 0.78rem;
    height: 0.78rem;
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.88);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 0.08rem;
    animation: cueArrowBounce 1.8s ease-in-out infinite;
}

.hero-cinematic-cue-arrows span:last-child {
    top: 0.42rem;
    opacity: 0.5;
    animation-delay: 0.14s;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.92;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes loaderSpark {
    0%, 100% {
        transform: scale(0.86);
        opacity: 0.26;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.82;
    }
}

@keyframes loaderDot {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

@keyframes cueArrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
        opacity: 0.58;
    }

    45% {
        transform: translateX(-50%) translateY(4px) rotate(45deg);
        opacity: 1;
    }

    70% {
        transform: translateX(-50%) translateY(1px) rotate(45deg);
        opacity: 0.82;
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.7);
        opacity: 0;
    }

    18% {
        opacity: 0.88;
    }

    50% {
        transform: translate3d(8px, -14px, 0) scale(1);
        opacity: 0.6;
    }

    78% {
        opacity: 0.2;
    }
}

.request-section {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 4rem 0 5rem;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg-light) 88%, #dce5ee 12%), var(--bg-light));
}

.request-shell {
    width: min(100%, 980px);
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.request-shell-head {
    display: grid;
    gap: 0.45rem;
    justify-items: start;
    padding-inline: 0.35rem;
}

.request-shell-head h1 {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 0.95;
}

.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.filters-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.filters-search {
    grid-column: span 2;
}

.filters-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.request-toolbar {
    display: grid;
    gap: 1rem;
}

.request-toolbar-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.request-toolbar-head h2 {
    margin: 0;
}

.inline-search {
    display: grid;
    gap: 0.55rem;
    min-width: min(100%, 320px);
    font-weight: 600;
}

.inline-search input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
}

.bulk-form {
    display: grid;
    gap: 1rem;
}

.bulk-bar {
    display: grid;
    grid-template-columns: auto auto 200px 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.bulk-bar select,
.bulk-bar input {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
}

.bulk-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.form-grid label {
    display: grid;
    gap: 0.55rem;
    font-weight: 600;
}

.filters-grid label {
    display: grid;
    gap: 0.55rem;
    font-weight: 600;
}

.form-grid input, .form-grid select, .form-grid textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
}

.filters-grid input,
.filters-grid select,
.settings-grid input,
.catalog-form input,
.catalog-form select,
.catalog-item input,
.catalog-item select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
}

.inline-status-form {
    display: grid;
    gap: 0.5rem;
    min-width: 220px;
}

.inline-status-form select,
.inline-status-form input {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-dark);
}

.btn-small {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

html[data-theme="dark"] .form-grid input,
html[data-theme="dark"] .form-grid select,
html[data-theme="dark"] .form-grid textarea,
html[data-theme="dark"] .filters-grid input,
html[data-theme="dark"] .filters-grid select,
html[data-theme="dark"] .settings-grid input,
html[data-theme="dark"] .inline-search input,
html[data-theme="dark"] .bulk-bar select,
html[data-theme="dark"] .bulk-bar input,
html[data-theme="dark"] .catalog-form input,
html[data-theme="dark"] .catalog-form select,
html[data-theme="dark"] .catalog-item input,
html[data-theme="dark"] .catalog-item select,
html[data-theme="dark"] .inline-status-form select,
html[data-theme="dark"] .inline-status-form input {
    background: rgba(255, 255, 255, 0.05);
}

.full-span { grid-column: 1 / -1; }
.narrow-stack { width: min(100%, 820px); }
.receipt-card, .callout, .chart-card { display: grid; gap: 1rem; }

.receipt-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.receipt-row:last-child { border-bottom: 0; padding-bottom: 0; }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.table-card {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-head h2 {
    margin: 0;
}

.catalog-form,
.catalog-item {
    display: grid;
    gap: 0.75rem;
}

.catalog-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.catalog-item {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.45);
}

html[data-theme="dark"] .catalog-item {
    background: rgba(255, 255, 255, 0.03);
}

.catalog-list {
    display: grid;
    gap: 0.85rem;
    max-height: 640px;
    overflow: auto;
}

.catalog-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.settings-actions {
    display: flex;
    align-items: center;
}

.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pagination-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.history-stack {
    display: grid;
    gap: 0.5rem;
    min-width: 220px;
}

.history-item {
    display: grid;
    gap: 0.15rem;
    padding: 0.7rem 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(63, 169, 245, 0.08);
}

.history-item span,
.history-item em {
    color: var(--muted);
    font-size: 0.85rem;
}

.history-item em {
    font-style: normal;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.status-pill {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(63, 169, 245, 0.12);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.stat-card strong {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    display: block;
    margin-top: 0.45rem;
}

.site-footer {
    position: relative;
    padding: 2.5rem 0 3.5rem;
    background:
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.1), transparent 24%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 20%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-light) 92%, #dfe7ef 8%), var(--bg-light));
}

.footer-shell {
    position: relative;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.12), transparent 28%);
    box-shadow: 0 26px 70px rgba(10, 26, 47, 0.12);
    overflow: hidden;
}

.footer-shell::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(63, 169, 245, 0.78), rgba(212, 175, 55, 0.58), rgba(63, 169, 245, 0));
    pointer-events: none;
}

.footer-shell::after {
    content: "";
    position: absolute;
    inset: auto -10% -55% auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(63, 169, 245, 0.12);
    filter: blur(60px);
    pointer-events: none;
}

.footer-brand img {
    width: 46px;
    height: 46px;
}

.footer-brand {
    position: relative;
    z-index: 1;
    padding-right: 1rem;
}

.footer-brand strong {
    font-size: 1.2rem;
}

.footer-brand span {
    display: block;
    margin-top: 0.1rem;
}

.footer-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 169, 245, 0.14);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer-nav a,
.footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.05rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    font-weight: 600;
    transition: 180ms ease;
}

.footer-nav a:hover,
.footer-action:hover {
    background: rgba(63, 169, 245, 0.14);
    border-color: rgba(63, 169, 245, 0.28);
    transform: translateY(-1px);
}

.footer-session-form {
    margin: 0;
}

.theme-switch {
    position: relative;
    border: 1px solid rgba(63, 169, 245, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: inherit;
    cursor: pointer;
    padding: 0.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.theme-switch-track {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 76px;
    height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(180deg, rgba(244, 246, 248, 0.92), rgba(223, 231, 239, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
    overflow: hidden;
}

.theme-switch-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 220ms ease, opacity 220ms ease, color 220ms ease;
}

.theme-switch-sun {
    color: #d78f18;
    opacity: 1;
    transform: translateX(0);
}

.theme-switch-moon {
    position: relative;
    justify-self: end;
    color: #5b6ea6;
    opacity: 0.56;
    transform: translateX(0);
}

.theme-switch-moon::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(6, 16, 31, 0.22);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.theme-switch-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #dce8f2);
    box-shadow: 0 6px 14px rgba(15, 42, 68, 0.16);
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

html[data-theme="dark"] .theme-switch-sun {
    opacity: 0.5;
    transform: translateX(-2px) scale(0.92);
}

html[data-theme="dark"] .theme-switch-moon {
    opacity: 1;
    color: #d7def8;
    transform: translateX(2px);
}

html[data-theme="dark"] .theme-switch-moon::before {
    background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .theme-switch-track {
    background: linear-gradient(180deg, rgba(8, 19, 33, 0.88), rgba(16, 34, 56, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .theme-switch-knob {
    transform: translateX(34px);
    background: linear-gradient(180deg, #d7def8, #9ca8c9);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.theme-switch:hover .theme-switch-track,
.theme-switch:focus-visible .theme-switch-track {
    background: linear-gradient(180deg, rgba(232, 242, 250, 0.96), rgba(214, 230, 243, 0.96));
}

.theme-switch:focus-visible {
    outline: none;
}

html[data-theme="dark"] .site-footer {
    background:
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 18%),
        linear-gradient(180deg, #091727 0%, #081321 100%);
}

html[data-theme="dark"] .request-section {
    background: linear-gradient(180deg, #0d2740 0%, #081321 100%);
}

html[data-theme="dark"] .request-form-panel {
    background:
        linear-gradient(145deg, rgba(14, 32, 54, 0.92), rgba(10, 26, 47, 0.84)),
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.08), transparent 28%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .footer-shell {
    background:
        linear-gradient(145deg, rgba(10, 26, 47, 0.86), rgba(8, 19, 33, 0.72)),
        radial-gradient(circle at top left, rgba(63, 169, 245, 0.14), transparent 28%);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .footer-nav,
html[data-theme="dark"] .theme-switch {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .footer-nav a:hover,
html[data-theme="dark"] .footer-action:hover {
    background: rgba(63, 169, 245, 0.14);
}

@media (max-width: 1180px) {
    .hero-cinematic-frame {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .split-grid,
    .cards-grid,
    .stats-grid,
    .form-grid,
    .footer-shell,
    .header-shell,
    .request-stage,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .filters-grid,
    .settings-grid,
    .admin-grid,
    .catalog-form {
        grid-template-columns: 1fr;
    }

    .request-toolbar-head,
    .bulk-bar {
        grid-template-columns: 1fr;
    }

    .request-toolbar-head {
        align-items: stretch;
    }

    .pagination-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-search {
        grid-column: auto;
    }

    .hero-cinematic {
        min-height: 180svh;
    }

    .hero-cinematic-stage {
        top: var(--header-offset);
        height: calc(100svh - var(--header-offset));
        padding: 0.9rem;
    }

    .hero-cinematic-frame {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 0;
    }

    .hero-cinematic-media {
        border-radius: 0;
    }

    .hero-cinematic .banner-fallback {
        object-fit: contain;
    }

    .hero-cinematic-video {
        object-fit: contain;
        object-position: center center;
    }

    .hero-cinematic-backdrop {
        background:
            radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.14), transparent 38%),
            linear-gradient(180deg, rgba(10, 26, 47, 0.5), rgba(15, 42, 68, 0.42));
    }

    .hero-cinematic-backdrop-logo {
        width: min(88vw, 520px);
        max-width: none;
        opacity: 0.22;
        --banner-backdrop-blur: 0.4px;
    }

    .hero-cinematic-loader-core {
        min-width: min(74vw, 220px);
        padding: 1.15rem 1.15rem 1rem;
    }

    .hero-cinematic-cue {
        width: 3.5rem;
        height: 3.5rem;
    }

    .request-section {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .footer-controls {
        justify-content: flex-start;
    }

    .footer-shell {
        padding: 1.25rem;
    }

    .hero,
    .section {
        padding: 3.6rem 0;
    }
}

@media (max-width: 640px) {
    .hero-cinematic {
        min-height: 160svh;
    }

    .hero-cinematic-stage {
        padding: 0.65rem;
    }

    .hero-cinematic-frame {
        height: 100%;
        padding: 0;
        border-radius: 0;
    }

    .hero-cinematic-media {
        border-radius: 0;
    }

    .hero-cinematic-dock {
        width: calc(100% - 1.2rem);
        bottom: 0.75rem;
    }

    .hero-cinematic-backdrop {
        background:
            radial-gradient(circle at 50% 50%, rgba(63, 169, 245, 0.16), transparent 42%),
            linear-gradient(180deg, rgba(10, 26, 47, 0.62), rgba(15, 42, 68, 0.48));
    }

    .hero-cinematic-backdrop-logo {
        width: 92vw;
        opacity: 0.26;
        --banner-backdrop-blur: 0.25px;
    }

    .hero-cinematic-loader-core {
        min-width: min(78vw, 210px);
        gap: 0.8rem;
        padding: 1rem 1rem 0.9rem;
        border-radius: 22px;
    }

    .hero-cinematic-loader-logo {
        width: 70px;
    }

    .hero-cinematic-cue {
        width: 3.2rem;
        height: 3.2rem;
    }

    .request-form-panel {
        padding: 1.2rem;
    }

    .request-shell-head h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .footer-shell {
        padding: 1rem;
        border-radius: 22px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
    }

    .footer-nav a,
    .footer-action {
        flex: 1 1 auto;
    }

    .theme-switch {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }

    .inline-status-form,
    .history-stack {
        min-width: 180px;
    }
}
