:root {
    color-scheme: dark;
    --bg: #090a0c;
    --panel: #101318;
    --panel-2: #171b21;
    --line: rgba(255, 255, 255, 0.14);
    --text: #f5f2ec;
    --muted: #b8b0a3;
    --red: #e63131;
    --gold: #d8aa46;
    --teal: #4ac5b3;
    --blue: #6ba6ff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body[data-auth-gated] .dashboard-shell {
    opacity: 0;
}

body[data-auth-gated].is-auth-ready .dashboard-shell {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body::selection {
    background: rgba(230, 49, 49, 0.35);
}

a {
    color: inherit;
}

code {
    padding: 0.1rem 0.34rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.94em;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 64px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 10, 12, 0.78);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 30px);
    color: rgba(245, 242, 236, 0.78);
    font-size: 0.94rem;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 28px);
}

.auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.auth-button:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.13);
}

.hero {
    position: relative;
    min-height: min(860px, 96vh);
    overflow: hidden;
    background-image: url("assets/client-texture.jpg");
    background-position: center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 10, 12, 0.95) 0%, rgba(9, 10, 12, 0.82) 42%, rgba(9, 10, 12, 0.55) 100%),
        linear-gradient(180deg, rgba(9, 10, 12, 0.05) 0%, rgba(9, 10, 12, 0.86) 100%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 78px);
    width: min(1180px, calc(100% - 36px));
    min-height: min(860px, 96vh);
    margin: 0 auto;
    padding: 116px 0 72px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(4.4rem, 9vw, 8.7rem);
    line-height: 0.88;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(245, 242, 236, 0.84);
    font-size: clamp(1.02rem, 1.8vw, 1.26rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(230, 49, 49, 0.25);
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.button.wide {
    width: 100%;
}

.button.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.client-preview {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(11, 13, 16, 0.7);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.preview-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
}

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

.preview-panel {
    min-height: 178px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(16, 19, 24, 0.92);
}

.preview-panel h2 {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    line-height: 1.1;
}

.preview-panel p {
    margin: 8px 0;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(245, 242, 236, 0.82);
    font-size: 0.9rem;
}

.accent-red h2 {
    color: #ff6a6a;
}

.accent-gold h2 {
    color: #ffd36c;
}

.accent-teal h2 {
    color: #74ebd9;
}

.accent-blue h2 {
    color: #9cc5ff;
}

.section {
    padding: clamp(64px, 9vw, 118px) 0;
}

.section-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.feature-band {
    background: #0d0f12;
}

.feature-grid,
.feature-groups {
    display: grid;
    gap: 14px;
}

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

.feature-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-heading {
    max-width: 780px;
}

.feature-card,
.module-group,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.feature-card {
    min-height: 250px;
    padding: 24px;
}

.feature-kicker {
    display: block;
    margin-bottom: 30px;
    color: var(--red);
    font-weight: 900;
}

.feature-card p,
.section-copy {
    color: var(--muted);
}

.feature-card p {
    margin: 14px 0 0;
}

.module-group {
    padding: 20px;
}

.module-group-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    cursor: pointer;
    list-style: none;
}

.module-group-header::-webkit-details-marker {
    display: none;
}

.module-group:not([open]) .module-group-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.module-group-header span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.module-group-header span::after {
    content: " +";
    color: var(--gold);
}

.module-group[open] .module-group-header span::after {
    content: " -";
}

.module-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.module-list li {
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(245, 242, 236, 0.84);
    font-size: 0.9rem;
}

.build-band {
    background: #111318;
}

.split,
.access-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: start;
}

.section-copy {
    max-width: 620px;
    margin: 22px 0 0;
    font-size: 1.04rem;
}

.build-list {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-2);
    overflow: hidden;
}

.build-list div {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.build-list div:last-child {
    border-bottom: 0;
}

.build-list dt {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.build-list dd {
    margin: 0;
    color: var(--text);
    font-weight: 750;
}

.hash {
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.access-band {
    background: #0b0c0f;
}

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

.verify-steps article {
    min-height: 168px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.verify-steps span {
    display: block;
    margin-bottom: 26px;
    color: var(--red);
    font-weight: 900;
}

.verify-steps h3 {
    margin-bottom: 10px;
}

.verify-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.pricing-card {
    padding: 24px;
    box-shadow: var(--shadow);
}

.pricing-label {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.plan-option {
    min-height: 150px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.plan-option span {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-option strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 1.08rem;
}

.plan-option p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.other-plan-details summary {
    cursor: pointer;
    list-style: none;
}

.other-plan-details summary::-webkit-details-marker {
    display: none;
}

.other-price-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.other-price-list p {
    margin: 0;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
    color: rgba(245, 242, 236, 0.82);
}

.pricing-card li {
    padding-left: 18px;
    border-left: 3px solid rgba(230, 49, 49, 0.75);
}

.support-link {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    text-align: center;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 4vw, 64px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #08090b;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--text);
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.app-main {
    min-height: calc(100vh - 82px);
    padding: 112px 0 72px;
    background:
        linear-gradient(90deg, rgba(9, 10, 12, 0.94), rgba(9, 10, 12, 0.78)),
        url("assets/client-texture.jpg") center / cover fixed;
}

.auth-shell,
.dashboard-shell,
.content-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.58fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: start;
}

.auth-copy {
    padding-top: 32px;
}

.auth-copy h1,
.dashboard-hero h1,
.page-hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.auth-panel,
.dashboard-panel,
.status-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(16, 19, 24, 0.9);
    box-shadow: var(--shadow);
}

.auth-panel {
    padding: 24px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.auth-tab {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--muted);
    font: inherit;
    font-weight: 800;
}

.auth-tab.is-active {
    background: var(--red);
    color: #fff;
}

.field-grid,
.auth-form {
    display: grid;
    gap: 14px;
}

.auth-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.auth-form input,
.auth-form select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font: inherit;
}

.auth-form small,
.form-note {
    color: var(--muted);
    font-size: 0.86rem;
}

.auth-status {
    margin: 0 0 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

.auth-status[data-tone="success"] {
    border-color: rgba(74, 197, 179, 0.45);
    color: #a8fff3;
}

.auth-status[data-tone="warning"] {
    border-color: rgba(216, 170, 70, 0.45);
    color: #ffe0a0;
}

.discord-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin: 22px 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.discord-divider::before,
.discord-divider::after {
    content: "";
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.dashboard-hero {
    max-width: 780px;
    margin-bottom: 34px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: 16px;
    align-items: start;
}

.dashboard-panel {
    padding: 24px;
}

.dashboard-panel h2,
.doc-panel h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 1.05;
}

.dashboard-panel .section-copy,
.doc-panel .section-copy {
    margin-top: 14px;
}

.status-grid,
.dashboard-plans {
    display: grid;
    gap: 12px;
}

.status-grid {
    margin-top: 18px;
}

.other-plan-options {
    margin-top: 12px;
}

.status-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.status-row span {
    color: var(--muted);
    font-weight: 800;
}

.status-row strong {
    color: #fff;
}

.dashboard-notice {
    margin: 16px 0 0;
    padding: 12px;
    border: 1px solid rgba(74, 197, 179, 0.4);
    border-radius: 8px;
    background: rgba(74, 197, 179, 0.08);
    color: #a8fff3;
}

.dashboard-notice[data-tone="warning"],
.notice-panel[data-tone="warning"] {
    border-color: rgba(216, 170, 70, 0.45);
    background: rgba(216, 170, 70, 0.08);
    color: #ffe0a0;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
}

.text-button:hover {
    background: rgba(255, 255, 255, 0.11);
}

.text-button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.dashboard-notice a,
.notice-panel a {
    color: #fff;
    font-weight: 900;
}

.page-hero {
    max-width: 820px;
    margin-bottom: 32px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.52fr);
    gap: 16px;
    align-items: start;
}

.content-grid.equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.doc-panel,
.notice-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(16, 19, 24, 0.9);
    box-shadow: var(--shadow);
}

.doc-panel {
    padding: 24px;
}

.notice-panel {
    padding: 16px;
    color: var(--muted);
}

.doc-panel h3 {
    margin-top: 24px;
    font-size: 1.08rem;
}

.doc-panel p,
.doc-panel li {
    color: var(--muted);
}

.doc-list,
.check-list,
.timeline-list,
.kv-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.doc-list li,
.check-list li,
.timeline-list li,
.kv-list li {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.check-list li::before {
    content: "Ready";
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.timeline-list time,
.kv-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(216, 170, 70, 0.45);
    border-radius: 999px;
    background: rgba(216, 170, 70, 0.1);
    color: #ffe0a0;
    font-size: 0.82rem;
    font-weight: 900;
}

.code-block {
    display: block;
    overflow-x: auto;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.86rem;
    white-space: pre;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1fr);
    gap: 16px;
    align-items: start;
}

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

.admin-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font: inherit;
}

.admin-form textarea {
    min-height: 92px;
    padding-top: 10px;
    resize: vertical;
}

.admin-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.admin-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    text-align: left;
}

.admin-table th {
    color: #fff;
    font-size: 0.78rem;
    text-transform: uppercase;
}

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

@media (max-width: 920px) {
    .hero-inner,
    .split,
    .access-layout,
    .auth-shell,
    .dashboard-grid,
    .content-grid,
    .content-grid.equal,
    .admin-grid,
    .feature-grid,
    .feature-groups,
    .verify-steps {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 118px;
    }

    .client-preview {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: sticky;
        min-height: auto;
        padding: 12px 18px;
    }

    .nav-links {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .auth-button {
        min-height: 36px;
        padding: 0 11px;
        font-size: 0.82rem;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    h1 {
        font-size: clamp(3.2rem, 18vw, 5rem);
    }

    .hero-inner {
        width: min(100% - 28px, 1180px);
        padding: 44px 0 58px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

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

    .module-list {
        grid-template-columns: 1fr;
    }

    .plan-options,
    .status-row {
        grid-template-columns: 1fr;
    }

    .build-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links,
    .button-row,
    .dashboard-actions {
        width: 100%;
    }

    .footer-links a,
    .button-row .text-button,
    .dashboard-actions .text-button,
    .dashboard-actions .button {
        justify-content: center;
        width: 100%;
    }
}
