:root {
    --font-ui: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
    --font-display: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
    --site-frame-max: 1200px;
    --site-frame-max-admin: 1360px;
    --site-frame-gutter: 56px;
    --bg: #fafafa;
    --paper: rgba(255, 255, 255, 0.88);
    --paper-strong: rgba(255, 255, 255, 0.96);
    --ink: #0f172a;
    --muted: #475569;
    --line: rgba(148, 163, 184, 0.22);
    --brand: #3159db;
    --brand-deep: #2548b9;
    --brand-soft: #6d86f2;
    --brand-strong: #2340a4;
    --brand-light: #eff6ff;
    --brand-gradient-strong: linear-gradient(135deg, #3159db 0%, #284bc0 58%, #2340a4 100%);
    --policy-rose: #a26167;
    --policy-rose-deep: #7b4349;
    --policy-rose-soft: #f8efef;
    --policy-rose-line: rgba(162, 97, 103, 0.22);
    --policy-rose-shadow: rgba(123, 67, 73, 0.12);
    --adult-earth: #8f655d;
    --adult-earth-deep: #6e4a44;
    --adult-earth-soft: #f7f1ef;
    --adult-earth-line: rgba(143, 101, 93, 0.22);
    --adult-earth-shadow: rgba(110, 74, 68, 0.14);
    --mint: #dcfce7;
    --mint-text: #22c55e;
    --sun: #fef9c3;
    --sun-text: #eab308;
    --pink: #fce7f3;
    --pink-text: #ec4899;
    --purple: #f3e8ff;
    --purple-text: #a855f7;
    --coral: #ff8b65;
    --shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #fafafa;
}

html[data-site-theme="dark"],
html[data-admin-theme="dark"] {
    background: #071220;
}

body {
    --site-display-text-scale: 1;
    --site-display-zoom: 1;
    --site-full-bleed-zoom-compensation: 1;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: calc(15px * var(--site-display-text-scale));
    background:
        radial-gradient(circle at top left, rgba(49, 89, 219, 0.07), transparent 28%),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.08), transparent 26%),
        radial-gradient(circle at bottom center, rgba(250, 204, 21, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 60%, #f8fbff 100%);
    overflow-x: hidden;
}

body.site-display-size-large {
    --site-display-text-scale: 1;
    --site-display-zoom: 1;
}

body.site-display-size-medium {
    --site-display-text-scale: 0.96;
    --site-display-zoom: 0.96;
    --site-full-bleed-zoom-compensation: 1.0416666667;
}

body.site-display-size-small {
    --site-display-text-scale: 0.92;
    --site-display-zoom: 0.92;
    --site-full-bleed-zoom-compensation: 1.0869565217;
}

@supports (zoom: 1) {
    body {
        zoom: var(--site-display-zoom);
    }

    /* Keep viewport-width sections flush to the edges even when the page is zoomed down. */
    .site-full-bleed {
        zoom: var(--site-full-bleed-zoom-compensation);
    }

    /* Footer content should keep the same inner rhythm as the rest of the page. */
    .site-footer.site-full-bleed .site-footer__inner {
        zoom: var(--site-display-zoom);
    }
}

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

.site-shell {
    width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    margin: 0 auto;
    padding: 112px 0 0;
}

.site-full-bleed {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

@supports (width: 100dvw) {
    .site-full-bleed {
        width: 100dvw;
        margin-left: calc(50% - 50dvw);
    }
}

.site-header,
.site-footer,
.hero-panel,
.page-hero,
.page-header,
.panel,
.cta-band {
    backdrop-filter: blur(18px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
}

.site-header__inner {
    width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--brand);
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(49, 89, 219, 0.24);
}

.brand-mark svg {
    overflow: visible;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
.site-nav a,
h1,
h2,
h3,
.value,
.button,
.eyebrow {
    font-family: var(--font-display);
}

.brand-copy strong {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-copy small {
    display: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 246, 255, 0.72) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 12px 28px -18px rgba(49, 89, 219, 0.28);
}

.site-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.site-nav a:hover {
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 20px -18px rgba(49, 89, 219, 0.4);
    transform: translateY(-1px);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-soft) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 22px -18px rgba(49, 89, 219, 0.45);
}

.site-nav a + a::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(49, 89, 219, 0.32) 0%, rgba(109, 134, 242, 0.16) 100%);
    transform: translateY(-50%);
    pointer-events: none;
}

.site-login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
}

.button-register {
    min-width: 168px;
    min-height: 46px;
    padding-inline: 24px;
    font-size: 13px;
    box-shadow: 0 10px 24px rgba(49, 89, 219, 0.24);
}

h2 svg,
h3 svg,
.button svg,
.site-login-link svg,
.hero-badge svg,
.floating-badge > svg,
.hero-helper-card strong svg,
.mini-card strong svg {
    vertical-align: middle;
    margin-right: 8px;
}

main {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.hero-panel,
.page-hero {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 24px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(180deg, var(--paper-strong) 0%, rgba(255, 255, 255, 0.84) 100%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.page-header {
    display: grid;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, var(--paper-strong) 0%, rgba(255, 255, 255, 0.82) 100%);
    box-shadow: var(--shadow);
}

.page-header--compact {
    gap: 12px;
    padding: 16px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(251, 253, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.page-header__main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.page-header--compact .page-header__main {
    align-items: center;
}

.page-header__copy {
    display: grid;
    gap: 8px;
    max-width: 720px;
}

.page-header--compact .page-header__copy {
    gap: 6px;
    max-width: 840px;
}

.page-header h1 {
    margin: 0;
    font-size: clamp(24px, 3.3vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.page-header--compact h1 {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.14;
}

.page-header .lead {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

.page-header--compact .lead {
    font-size: 13px;
    line-height: 1.65;
}

.page-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.page-header--compact .page-header__actions {
    gap: 10px;
}

.page-header--compact .page-header__actions .button {
    min-height: 46px;
    padding: 0 18px;
}

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

.page-header__fact {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 13px 14px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
}

.page-header__fact--link {
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-header__fact--link:hover,
.page-header__fact--link:focus-visible {
    border-color: rgba(49, 89, 219, 0.28);
    box-shadow: 0 14px 28px rgba(49, 89, 219, 0.12);
    transform: translateY(-1px);
}

.page-header__fact-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(99, 119, 235, 0.14));
    color: var(--brand);
}

.page-header__fact-copy {
    display: grid;
    gap: 2px;
}

.page-header__fact small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.page-header__fact strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.2;
}

.page-header__fact span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.hero-panel::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -120px -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.08);
    filter: blur(24px);
    pointer-events: none;
}

.hero-panel::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: -120px -100px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.08);
    filter: blur(24px);
    pointer-events: none;
}

.hero-copy,
.page-hero > div:first-child,
.hero-stats,
.page-hero__stats,
.stack,
.panel,
.section,
.news-list,
.timeline,
.leaderboard {
    display: grid;
    gap: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

h1 {
    margin: 0;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    text-wrap: balance;
}

.lead,
.panel p,
.job-card__summary,
.news-item p,
.mini-card p,
.voice-card p,
.site-footer p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.hero-actions,
.filter-actions,
.meta-inline,
.bullet-panel,
.footer-links,
.site-nav,
.inline-auth-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(24, 37, 61, 0.12);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.button-primary {
    border-color: transparent;
    background: var(--brand-gradient-strong);
    color: white;
    box-shadow: 0 14px 28px rgba(49, 89, 219, 0.24);
}

.button.is-disabled {
    pointer-events: none;
    cursor: default;
}

.feature-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(64, 115, 255, 0.2);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(242, 248, 255, 0.98) 0%, rgba(233, 244, 255, 0.96) 100%);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 18px -16px rgba(64, 115, 255, 0.5);
}

.feature-action-button.is-preparing,
.feature-action-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(64, 115, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(238, 246, 255, 0.95) 100%);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 14px 24px -22px rgba(64, 115, 255, 0.44);
}

.feature-action-chip.is-disabled {
    pointer-events: none;
    cursor: default;
}

.feature-text-status.is-preparing {
    color: color-mix(in srgb, var(--brand-deep) 72%, #5b7eff);
    pointer-events: none;
}

.hero-notes,
.stat-grid,
.feature-grid,
.split-layout,
.dual-panel,
.job-grid,
.triple-grid,
.catalog-grid,
.workspace-shell {
    display: grid;
    gap: 18px;
}

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

.note-card,
.feature-card,
.mini-card,
.voice-card,
.news-item,
.job-card,
.catalog-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 32px rgba(23, 48, 84, 0.08);
}

.note-card,
.feature-card,
.mini-card,
.news-item,
.voice-card,
.job-card,
.catalog-card {
    padding: 16px;
}

.catalog-card {
    display: grid;
    gap: 14px;
}

.feature-gated {
    position: relative;
}

.feature-gated__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.feature-gated__head--center {
    justify-content: center;
    flex-wrap: wrap;
}

.feature-gated.is-preparing {
    pointer-events: none;
    border-color: rgba(115, 153, 255, 0.22);
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(238, 245, 255, 0.96) 100%);
    box-shadow: 0 14px 28px rgba(64, 115, 255, 0.08);
}

.feature-gated.is-preparing::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(219, 234, 254, 0.18) 100%);
    pointer-events: none;
}

.stat-grid,
.job-card__stats,
.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-panel {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
}

.stat-panel-strong {
    background: var(--brand-gradient-strong);
    color: white;
    box-shadow: 0 20px 34px rgba(49, 89, 219, 0.24);
}

.label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.label.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.label.with-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.stat-panel-strong .label,
.stat-panel-strong .sub {
    color: rgba(255, 255, 255, 0.84);
}

.value {
    margin-top: 6px;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800;
    line-height: 1;
}

.sub,
.news-item span,
.meta-inline,
.muted {
    color: var(--muted);
    font-size: 13px;
}

.section-heading,
.job-card__footer,
.leaderboard-item,
.timeline-item,
.session-banner,
.flash-banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.section-heading > div,
.timeline-item > div:first-child,
.leaderboard-item > div:first-child,
.job-card__top > div:first-child,
.thread-card__head > div:first-child {
    display: grid;
    gap: 4px;
    min-width: 0;
    flex: 1 1 280px;
}

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

.workspace-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
}

.job-grid.single-column {
    grid-template-columns: 1fr;
}

.stack,
.timeline,
.job-grid,
.job-grid.single-column,
.security-overview-grid,
.thread-card__messages {
    min-width: 0;
}

.split-layout,
.dual-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.dual-panel--auth-entry {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
}

.dual-panel--auth-entry-admin {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 760px);
    margin: 0 auto;
}

.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.job-card__reward {
    display: grid;
    flex: 0 0 auto;
    justify-items: end;
    gap: 2px;
    max-width: 100%;
}

.job-card__reward span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-card__reward strong {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 700;
}

.pill-cool {
    background: var(--mint);
    color: var(--mint-text);
}

.pill-warm {
    background: var(--pink);
    color: var(--pink-text);
}

.pill-soft {
    background: var(--purple);
    color: var(--purple-text);
}

.job-card__info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 12px;
}

.job-card__info-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-inline > *,
.job-card__info-row span {
    min-width: 0;
    flex: 1 1 180px;
}

.job-card__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.job-card__progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-soft) 100%);
}

.job-card__stats,
.detail-grid {
    display: grid;
    gap: 12px;
    margin: 0;
}

.job-card__stats div,
.detail-grid div {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(238, 246, 255, 0.8);
}

.job-card__stats dt,
.detail-grid dt {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 12px;
}

.job-card__stats dd,
.detail-grid dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.job-card,
.catalog-card,
.panel,
.feature-card,
.workspace-sidebar,
.rank-card {
    min-width: 0;
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.job-card {
    display: grid;
    min-width: 0;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: white;
}

.job-card h3,
.job-card h3 a,
.job-card__summary,
.mini-card strong,
.mini-card p,
.timeline-item strong,
.timeline-item p,
.timeline-amount strong,
.timeline-amount span,
.leaderboard-item strong,
.leaderboard-item p,
.leaderboard-actions strong,
.leaderboard-actions span,
.meta-inline span,
.meta-inline a,
.job-card__info-row span,
.thread-card__head strong,
.thread-card__head p,
.thread-message p {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.job-card h3 a {
    transition: color 180ms ease;
}

.job-card:hover h3 a {
    color: var(--brand);
}

.catalog-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.catalog-card > .eyebrow,
.catalog-card > h2,
.catalog-card > p,
.section-heading .eyebrow,
.section-heading h2,
.section-heading p {
    margin: 0;
}

.catalog-card__chips {
    margin: -2px 0 0;
}

.catalog-card__note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.catalog-card__delivery,
.request-type-summary__card {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(238, 246, 255, 0.72);
}

.catalog-card__delivery p,
.request-type-summary__card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

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

.catalog-card__delivery--soft {
    background: rgba(255, 255, 255, 0.84);
    border: 1px dashed rgba(148, 163, 184, 0.22);
}

.catalog-card__meta-label {
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.request-type-summary {
    display: grid;
    gap: 14px;
}

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

.request-type-page {
    align-content: start;
}

.request-builder-layout {
    display: block;
}

.request-builder-main {
    display: grid;
    gap: 18px;
}

.request-builder-main,
.request-builder-side {
    min-width: 0;
}

.request-builder-side {
    display: grid;
    gap: 18px;
}

.section-heading--compact {
    gap: 10px;
    margin-bottom: 0;
}

.request-builder-lead,
.request-builder-block__lead {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.78;
}

.request-builder-form {
    gap: 18px;
    padding: 22px;
}

.request-builder-overview {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.request-builder-overview__card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.request-builder-overview__card--accent {
    background: linear-gradient(135deg, rgba(244, 249, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(49, 89, 219, 0.16);
}

.request-builder-overview__card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.request-builder-overview__card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.request-builder-overview__card .button {
    justify-self: start;
}

.request-builder-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.request-builder-chip-list span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(244, 248, 255, 0.96);
    border: 1px solid rgba(130, 156, 190, 0.16);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.request-builder-flow-compact {
    display: grid;
    gap: 10px;
}

.request-builder-flow-compact__item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.request-builder-flow-compact__item > span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(79, 116, 234, 0.22));
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
}

.request-builder-flow-compact__item div {
    display: grid;
    gap: 2px;
}

.request-builder-flow-compact__item strong {
    font-size: 13px;
    line-height: 1.5;
}

.request-builder-flow-compact__item small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.request-builder-block {
    display: grid;
    gap: 14px;
}

.request-builder-block--fields {
    padding-top: 4px;
    border-top: 1px solid rgba(130, 156, 190, 0.16);
}

.request-builder-form__head {
    display: grid;
    gap: 4px;
}

.request-builder-form__head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

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

.request-field {
    min-width: 0;
}

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

.request-builder-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.request-builder-form__actions p {
    width: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.request-builder-assist-card {
    margin-bottom: 14px;
}

.request-builder-assist__actions {
    display: grid;
    gap: 12px;
}

.request-builder-assist__actions p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.request-plan-picker__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.request-plan-picker__intro {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.request-plan-picker__intro-card {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 16px 30px -34px rgba(49, 89, 219, 0.42);
}

.request-plan-picker__intro-card strong {
    color: var(--brand-deep);
    font-size: 14px;
    line-height: 1.55;
}

.request-plan-picker__intro-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.request-plan-option {
    display: block;
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.request-plan-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.request-plan-option__card {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 100%;
    padding: 16px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.request-plan-option__selection-badge {
    position: absolute;
    top: 14px;
    right: -30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 28px;
    padding: 0 12px;
    background: linear-gradient(135deg, rgba(255, 155, 69, 0.96), rgba(255, 100, 74, 0.96));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 24px -18px rgba(255, 114, 75, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: rotate(34deg) translateY(-6px);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.request-plan-option__card small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.request-plan-option__card strong {
    color: var(--brand-deep);
    font-size: 16px;
    line-height: 1.52;
}

.request-plan-option__card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.request-plan-option__card .portal-chip-group {
    margin-top: 2px;
}

.request-plan-option__card .meta-inline {
    gap: 8px;
    align-items: flex-start;
}

.request-plan-option__card .meta-inline span {
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(244, 248, 255, 0.96);
    border: 1px solid rgba(130, 156, 190, 0.14);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.request-plan-option:hover .request-plan-option__card {
    transform: translateY(-2px);
    border-color: rgba(49, 89, 219, 0.32);
    box-shadow: 0 18px 30px -24px rgba(49, 89, 219, 0.34);
}

.request-plan-option__input:checked + .request-plan-option__card {
    border-color: rgba(49, 89, 219, 0.44);
    background: linear-gradient(180deg, rgba(241, 246, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 22px 36px -28px rgba(49, 89, 219, 0.42);
}

.request-plan-option__input:checked + .request-plan-option__card .request-plan-option__selection-badge {
    opacity: 1;
    transform: rotate(34deg) translateY(0);
}

.request-plan-picker__summary {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(238, 244, 255, 0.76);
    color: var(--brand-deep);
    font-size: 13px;
    line-height: 1.72;
}

.request-plan-picker__detail {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(130, 156, 190, 0.2);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 22px 36px -32px rgba(49, 89, 219, 0.24);
}

.request-plan-picker__detail.is-empty {
    background: linear-gradient(180deg, rgba(249, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-color: rgba(130, 156, 190, 0.16);
    box-shadow: none;
}

.request-plan-picker__detail.is-highlighted {
    animation: request-plan-detail-focus 820ms ease;
}

.request-plan-picker__detail-flag {
    position: absolute;
    top: -12px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 155, 69, 0.96), rgba(255, 100, 74, 0.96));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 30px -22px rgba(255, 114, 75, 0.82);
}

.request-plan-picker__detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.request-plan-picker__detail-heading {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.request-plan-picker__detail-heading strong {
    color: var(--brand-deep);
    font-size: 18px;
    line-height: 1.55;
}

.request-plan-picker__detail-heading small {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.request-plan-picker__detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.request-plan-picker__detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(130, 156, 190, 0.18);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.request-plan-picker__detail-body {
    display: grid;
    gap: 12px;
}

.request-plan-picker__detail-body p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

@keyframes request-plan-detail-focus {
    0% {
        border-color: rgba(255, 145, 78, 0.54);
        box-shadow: 0 0 0 0 rgba(255, 145, 78, 0.22), 0 26px 40px -34px rgba(49, 89, 219, 0.2);
    }
    45% {
        border-color: rgba(255, 145, 78, 0.72);
        box-shadow: 0 0 0 12px rgba(255, 145, 78, 0.08), 0 26px 40px -30px rgba(255, 145, 78, 0.3);
    }
    100% {
        border-color: rgba(130, 156, 190, 0.2);
        box-shadow: 0 22px 36px -32px rgba(49, 89, 219, 0.24);
    }
}

.request-builder-disclosure {
    padding: 0;
}

.request-builder-disclosure__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    list-style: none;
    cursor: pointer;
}

.request-builder-disclosure__summary::-webkit-details-marker {
    display: none;
}

.request-builder-disclosure__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
}

.request-builder-disclosure__toggle-icon {
    transition: transform 180ms ease;
}

.request-builder-disclosure:not([open]) .request-builder-disclosure__toggle-label--open,
.request-builder-disclosure[open] .request-builder-disclosure__toggle-label--closed {
    display: none;
}

.request-builder-disclosure[open] .request-builder-disclosure__toggle-icon {
    transform: rotate(180deg);
}

.request-builder-disclosure__body {
    display: grid;
    gap: 14px;
    padding: 0 20px 20px;
}

.request-template-picker__guide {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.96);
    border: 1px solid rgba(130, 156, 190, 0.16);
}

.request-template-picker__guide p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.request-template-picker__guide strong {
    color: var(--brand-deep);
}

.request-template-picker__viewport {
    position: relative;
}

.request-template-picker__edge {
    position: absolute;
    top: 0;
    bottom: 6px;
    width: 76px;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
    z-index: 2;
}

.request-template-picker__edge--left {
    left: 0;
    justify-content: flex-start;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 18%, rgba(255, 255, 255, 0));
}

.request-template-picker__edge--right {
    right: 0;
    justify-content: flex-end;
    padding-right: 10px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 18%, rgba(255, 255, 255, 0));
}

.request-template-picker__edge-marker {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(130, 156, 190, 0.14);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 20px 34px -30px rgba(49, 89, 219, 0.46);
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.request-template-picker__edge-marker::before {
    content: "›";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(37, 72, 185, 0.68);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(1px);
}

.request-template-picker__edge--left .request-template-picker__edge-marker::before {
    content: "‹";
    transform: translateX(-1px);
}

.request-template-picker__viewport.has-overflow:not(.is-start) .request-template-picker__edge--left,
.request-template-picker__viewport.has-overflow:not(.is-end) .request-template-picker__edge--right {
    opacity: 1;
}

.request-template-picker__viewport.has-overflow.is-start .request-template-picker__edge--right .request-template-picker__edge-marker {
    animation: request-template-edge-cue 2.3s ease-in-out infinite;
}

.request-template-picker__viewport.has-overflow.is-end .request-template-picker__edge--right {
    opacity: 0;
}

@keyframes request-template-edge-cue {
    0%,
    100% {
        transform: translateX(0);
        box-shadow: 0 20px 34px -30px rgba(49, 89, 219, 0.42);
    }
    45% {
        transform: translateX(3px);
        box-shadow: 0 24px 36px -28px rgba(49, 89, 219, 0.52);
    }
}

.request-template-picker__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding-bottom: 6px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.request-template-picker__grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.request-template-picker__grid.is-dragging .request-template-option {
    user-select: none;
}

.request-template-option {
    display: grid;
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
    scroll-snap-align: start;
}

.request-template-option:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 89, 219, 0.28);
    box-shadow: 0 20px 34px -28px rgba(49, 89, 219, 0.32);
}

.request-template-option.is-selected {
    border-color: rgba(49, 89, 219, 0.44);
    background: linear-gradient(180deg, rgba(241, 246, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 24px 38px -32px rgba(49, 89, 219, 0.4);
}

.request-template-option__body,
.request-template-option__actions {
    display: grid;
    gap: 10px;
}

.request-template-option__body p,
.request-template-option__body small {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

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

.request-template-picker__summary {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(238, 244, 255, 0.76);
    color: var(--brand-deep);
    font-size: 13px;
    line-height: 1.72;
}

.request-outline-list,
.request-step-list {
    display: grid;
    gap: 12px;
}

.request-outline-item,
.request-step-card,
.request-support-plan,
.request-draft-plan {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
}

.request-outline-item strong,
.request-step-card strong,
.request-support-plan strong,
.request-draft-plan strong {
    font-size: 15px;
    line-height: 1.45;
}

.request-step-card {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
}

.request-step-card__index {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(79, 116, 234, 0.22));
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
}

.request-step-card p,
.request-support-plan p,
.request-draft-plan p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.request-support-plan .button {
    justify-self: start;
    margin-top: 4px;
}

.panel {
    min-width: 0;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
}

.page-hero__stats {
    align-content: start;
}

.stat-panel {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
}

.stat-panel:not(.stat-panel-strong) .value {
    font-size: clamp(28px, 3vw, 42px);
}

.visual-card {
    border-radius: 28px;
}

.legacy-ribbon {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
}

.news-item,
.voice-card,
.mini-card {
    border-radius: 22px;
    background: white;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--muted);
    font-size: 12px;
}

.text-link {
    color: var(--brand);
    font-weight: 700;
}

.timeline-item,
.leaderboard-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.timeline-item:last-child,
.leaderboard-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-item p,
.leaderboard-item p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.timeline-amount,
.leaderboard-actions {
    display: grid;
    flex: 0 1 160px;
    justify-items: end;
    gap: 4px;
    width: min(100%, 160px);
    max-width: 160px;
    text-align: right;
}

.catalog-card h2 {
    font-size: clamp(20px, 2.3vw, 27px);
    line-height: 1.18;
}

.section-heading h2 {
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.22;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    border: 1px solid rgba(255, 139, 101, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 247, 241, 0.92) 100%);
    box-shadow: var(--shadow);
}

.legacy-ribbon,
.visual-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(23, 48, 84, 0.08);
}

.legacy-ribbon {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.legacy-ribbon img,
.visual-card img {
    width: 100%;
    border-radius: 16px;
}

.legacy-ribbon p {
    margin: 6px 0 0;
}

.visual-card {
    padding: 14px;
}

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

.filter-grid label,
.fake-form label {
    display: grid;
    gap: 8px;
}

.filter-grid span,
.fake-form span {
    font-size: 13px;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="datetime-local"],
select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(130, 156, 190, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font: inherit;
}

textarea {
    width: 100%;
    min-height: 132px;
    padding: 14px;
    border: 1px solid rgba(130, 156, 190, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font: inherit;
    resize: vertical;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 31px;
}

.fake-form label.checkbox-line,
.filter-grid label.checkbox-line {
    display: flex;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
}

.fake-form,
.prose-panel,
.prose-block {
    display: grid;
    gap: 10px;
}

.form-field {
    position: relative;
}

.form-field--error {
    padding: 12px 14px 14px;
    border: 1px solid rgba(198, 63, 91, 0.26);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 247, 249, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
    box-shadow: 0 20px 34px -30px rgba(198, 63, 91, 0.36);
    scroll-margin-top: 120px;
}

.form-field--error > span:first-child {
    color: rgba(146, 28, 68, 0.96);
}

.form-field--error input[type="text"],
.form-field--error input[type="email"],
.form-field--error input[type="password"],
.form-field--error input[type="url"],
.form-field--error input[type="number"],
.form-field--error input[type="datetime-local"],
.form-field--error select,
.form-field--error textarea {
    border-color: rgba(198, 63, 91, 0.52);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.14);
}

.form-field-error {
    margin: -2px 0 0;
    color: rgba(164, 24, 87, 0.96);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
}

.portfolio-form,
.portfolio-picker,
.portfolio-list,
.proposal-portfolio-list,
.portfolio-choice-list,
.portfolio-card__body,
.proposal-portfolio-item__body,
.portfolio-choice__body {
    display: grid;
    gap: 12px;
}

.portfolio-picker {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.portfolio-picker legend {
    padding: 0 8px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
}

.portfolio-picker > p,
.portfolio-guide-card p,
.portfolio-empty-card p,
.portfolio-card__body p,
.proposal-portfolio-item__body p {
    margin: 0;
}

.portfolio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.portfolio-card,
.proposal-portfolio-item {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 248, 255, 0.9) 100%);
    box-shadow: 0 18px 30px -28px rgba(49, 89, 219, 0.22);
}

.portfolio-card__media,
.proposal-portfolio-item__media,
.portfolio-choice__media {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(232, 240, 255, 0.82);
}

.portfolio-card__media img,
.proposal-portfolio-item__media img,
.portfolio-choice__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card__media {
    aspect-ratio: 16 / 10;
}

.portfolio-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.portfolio-card__head span {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.portfolio-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.workspace-profile-page,
.workspace-profile-summary-grid,
.workspace-profile-basic-grid,
.workspace-profile-helper-grid,
.workspace-ai-policy-grid,
.workspace-profile-form,
.workspace-ai-policy-form,
.workspace-profile-intro-card {
    display: grid;
    gap: 16px;
}

.workspace-profile-overview-panel,
.workspace-profile-editor-panel {
    align-content: start;
}

.workspace-profile-jump,
.workspace-profile-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.workspace-profile-jump .support-helper-link,
.workspace-profile-form__actions .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.workspace-profile-summary-grid,
.workspace-profile-editor-layout {
    align-items: start;
}

.workspace-profile-summary-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
}

.workspace-profile-intro-card p,
.workspace-profile-summary-card .detail-grid {
    margin: 0;
}

.workspace-profile-basic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

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

.workspace-profile-helper-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.workspace-ai-policy-grid {
    align-items: start;
}

.workspace-ai-policy-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workspace-ai-policy-grid--details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-ai-policy-grid__wide {
    grid-column: 1 / -1;
}

.workspace-ai-checkbox {
    min-height: 46px;
    padding-top: 0;
    align-self: end;
}

.workspace-ai-checkbox span {
    font-size: 14px;
}

.portfolio-form label > span small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.portfolio-choice {
    display: grid;
    grid-template-columns: auto 78px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.9);
    cursor: pointer;
}

.portfolio-choice input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.portfolio-choice__media {
    width: 78px;
    aspect-ratio: 1;
}

.portfolio-choice__body {
    gap: 4px;
}

.portfolio-choice__body small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.proposal-portfolio-item {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
}

.proposal-portfolio-item__media {
    aspect-ratio: 4 / 3;
}

.support-helper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.support-helper-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.support-helper-card > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.support-helper-card--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 244, 255, 0.92) 100%);
}

.support-faq-list {
    display: grid;
    gap: 10px;
}

.support-faq-item {
    padding: 12px 14px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 18px;
    background: rgba(238, 244, 255, 0.7);
}

.support-faq-item summary {
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.support-faq-item summary::-webkit-details-marker {
    display: none;
}

.support-faq-item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.support-helper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.support-helper-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(238, 244, 255, 0.9);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.support-helper-link:hover {
    transform: translateY(-1px);
    background: rgba(222, 234, 255, 0.98);
    box-shadow: 0 16px 30px -24px rgba(49, 89, 219, 0.4);
}

.email-safety-card {
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.email-safety-card > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.email-safety-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.72;
}

.email-safety-list li {
    margin: 0;
}

@media (max-width: 960px) {
    .portfolio-list {
        grid-template-columns: 1fr;
    }

    .proposal-portfolio-item {
        grid-template-columns: 1fr;
    }

    .support-helper-grid {
        grid-template-columns: 1fr;
    }

    .workspace-profile-summary-grid,
    .workspace-profile-basic-grid,
    .workspace-profile-helper-grid,
    .workspace-ai-policy-grid--top,
    .workspace-ai-policy-grid--details {
        grid-template-columns: 1fr;
    }
}

.auth-entry-panel {
    align-content: start;
    gap: 12px;
}

.auth-entry-panel__intro {
    margin: 0;
    max-width: 52ch;
}

.auth-support-panel,
.auth-trust-panel,
.auth-activity-panel {
    align-content: start;
    gap: 14px;
}

.auth-section-lead {
    margin: 0;
    max-width: 58ch;
}

.active-form {
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 24px;
    background: rgba(243, 249, 255, 0.74);
}

.auth-entry-form {
    gap: 14px;
    padding: 20px;
}

.auth-entry-form .choice-grid {
    margin-top: 2px;
}

.auth-entry-form .inline-auth-form {
    padding-top: 4px;
}

.auth-support-card,
.auth-trust-item {
    gap: 10px;
}

.auth-support-card strong,
.auth-trust-item strong {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-support-card--cta {
    border-color: rgba(49, 89, 219, 0.14);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.auth-mode-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-followup {
    align-items: start;
}

.auth-trust-grid,
.auth-activity-list {
    display: grid;
    gap: 12px;
}

.auth-activity-item {
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.auth-activity-meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1 1 280px;
}

.auth-rank-badge {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.18));
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.auth-activity-item .leaderboard-actions strong {
    font-size: 24px;
}

.auth-activity-item p {
    margin: 0;
}

.workspace-sidebar {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.88) 100%);
    box-shadow: 0 20px 42px -28px rgba(49, 89, 219, 0.18);
    position: sticky;
    top: 96px;
    align-self: start;
    height: calc(100vh - 124px);
    height: calc(100dvh - 124px);
    max-height: calc(100vh - 124px);
    max-height: calc(100dvh - 124px);
    overflow: hidden;
}

.workspace-sidebar--collapsible {
    grid-template-rows: repeat(3, auto) minmax(0, 1fr);
}

.workspace-sidebar__menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 2px 0;
}

.workspace-sidebar__label {
    display: inline-flex;
    color: rgba(37, 72, 185, 0.74);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workspace-sidebar__expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.92) 100%);
    color: rgba(37, 72, 185, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 16px 28px -24px rgba(49, 89, 219, 0.24);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.workspace-sidebar__expand:hover {
    background: rgba(239, 246, 255, 0.94);
    border-color: rgba(49, 89, 219, 0.2);
    color: var(--brand-deep);
    box-shadow: 0 18px 30px -24px rgba(49, 89, 219, 0.3);
    transform: translateY(-1px);
}

.workspace-sidebar.is-menu-expanded {
    position: static;
    top: auto;
    height: auto;
    max-height: none;
    overflow: visible;
}

.workspace-sidebar.is-menu-expanded .workspace-nav {
    min-height: auto;
    overflow: visible;
    padding-right: 0;
    margin-right: 0;
}

.workspace-sidebar.is-menu-expanded .workspace-sidebar__expand {
    background: rgba(239, 246, 255, 0.94);
    border-color: rgba(49, 89, 219, 0.24);
    color: var(--brand-deep);
}

.workspace-sidebar.is-menu-expanded .workspace-nav__group-summary {
    cursor: pointer;
    pointer-events: auto;
}

.workspace-sidebar.is-menu-expanded .workspace-nav__group > .workspace-nav__group-items {
    display: grid !important;
}

.workspace-sidebar.is-menu-expanded .workspace-nav__group-caret {
    transform: rotate(180deg);
}

.job-detail-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: start;
}

.job-next-panel {
    align-self: start;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    background: linear-gradient(180deg, rgba(252, 254, 255, 0.96) 0%, rgba(242, 247, 255, 0.92) 100%);
    box-shadow: 0 24px 50px -36px rgba(49, 89, 219, 0.28);
    position: sticky;
    top: 112px;
}

.job-next-panel__lead {
    margin: 0;
    color: rgba(71, 85, 105, 0.92);
    font-size: 14px;
    line-height: 1.85;
}

.job-next-steps {
    gap: 12px;
}

.job-next-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.92) 100%);
    box-shadow: 0 20px 36px -34px rgba(49, 89, 219, 0.34);
}

.job-next-card__step {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.1);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.job-next-card strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    line-height: 1.45;
}

.job-next-card strong svg,
.job-next-card__link svg {
    color: var(--brand);
}

.job-next-card p {
    margin: 0;
}

.job-next-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.job-next-card__link:hover {
    color: var(--brand-deep);
}

.job-next-card__link:hover svg {
    transform: translateX(2px);
}

.workspace-sidebar__head {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.16), rgba(79, 116, 234, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.workspace-sidebar__head span,
.workspace-nav__description {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.workspace-sidebar__head strong,
.workspace-nav__title-row strong {
    font-family: var(--font-display);
}

.workspace-sidebar__head span {
    color: rgba(37, 72, 185, 0.76);
    letter-spacing: 0.12em;
}

.workspace-sidebar__head strong {
    color: var(--brand-deep);
}

.workspace-sidebar__head small {
    color: rgba(71, 85, 105, 0.84);
    font-size: 12px;
    line-height: 1.6;
}

.workspace-sidebar__badges {
    margin-top: 4px;
}

.workspace-sidebar__current {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 28px -26px rgba(49, 89, 219, 0.22);
}

.workspace-sidebar__current-label {
    color: rgba(37, 72, 185, 0.74);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workspace-sidebar__current strong {
    display: block;
    margin: 0;
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.45;
    word-break: keep-all;
}

.workspace-sidebar__current p {
    margin: 0;
    color: rgba(71, 85, 105, 0.9);
    font-size: 13px;
    line-height: 1.68;
}

.workspace-nav {
    display: grid;
    gap: 8px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    padding-right: 6px;
    margin-right: -6px;
    scrollbar-gutter: stable;
}

.workspace-nav__group {
    display: grid;
    gap: 6px;
}

.workspace-nav__group + .workspace-nav__group {
    padding-top: 8px;
    border-top: 1px solid rgba(130, 156, 190, 0.14);
}

.workspace-nav__group > .workspace-nav__group-summary {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 255, 0.9) 100%);
    box-shadow: 0 16px 28px -30px rgba(49, 89, 219, 0.22);
    list-style: none !important;
    list-style-type: none !important;
    overflow: hidden;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    min-height: 0;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.workspace-nav__group > .workspace-nav__group-summary::-webkit-details-marker {
    display: none !important;
}

.workspace-nav__group > .workspace-nav__group-summary::marker {
    content: '' !important;
    display: none;
    font-size: 0;
}

.workspace-nav__group > .workspace-nav__group-summary::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(49, 89, 219, 0.78) 0%, rgba(104, 132, 237, 0.38) 100%);
}

.workspace-nav__group > .workspace-nav__group-summary:hover {
    border-color: rgba(49, 89, 219, 0.22);
    box-shadow: 0 22px 38px -30px rgba(49, 89, 219, 0.28);
    transform: translateY(-1px);
}

.workspace-nav__group > .workspace-nav__group-summary:focus-visible {
    outline: 2px solid rgba(49, 89, 219, 0.34);
    outline-offset: 2px;
}

.workspace-nav__group[open] > .workspace-nav__group-summary {
    border-color: rgba(49, 89, 219, 0.2);
    background: linear-gradient(135deg, rgba(241, 246, 255, 0.98) 0%, rgba(232, 240, 255, 0.9) 100%);
    box-shadow: 0 18px 34px -32px rgba(49, 89, 219, 0.26);
}

.workspace-nav__group-summary-main {
    display: flex;
    align-items: center;
    min-width: 0;
    padding-left: 4px;
}

.workspace-nav__group-title {
    color: rgba(37, 72, 185, 0.82);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.workspace-nav__group-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.workspace-nav__group-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(49, 89, 219, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: rgba(37, 72, 185, 0.76);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.workspace-nav__group-caret {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.1);
    color: rgba(37, 72, 185, 0.72);
    font-size: 12px;
    line-height: 1;
    transition: transform 180ms ease;
}

.workspace-nav__group[open] .workspace-nav__group-caret {
    transform: rotate(180deg);
}

.workspace-nav__group-items {
    display: grid;
    gap: 8px;
    padding: 0 2px;
}

.workspace-nav__link {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    padding: 13px;
    border-radius: 17px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.96) 0%, rgba(243, 247, 255, 0.84) 100%);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.workspace-nav__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(79, 116, 234, 0.22));
    color: var(--brand-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.workspace-nav__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.workspace-nav__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    min-width: 0;
}

.workspace-nav__title-row strong {
    min-width: 0;
    line-height: 1.35;
}

.workspace-nav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.1);
    color: var(--brand-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.workspace-nav__badge--waiting {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.94), rgba(86, 133, 255, 0.94));
    color: #fff;
}

.workspace-nav__badge--active {
    background: rgba(37, 72, 185, 0.1);
    color: rgba(37, 72, 185, 0.88);
}

.workspace-nav__description {
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.workspace-nav__link.is-preparing {
    pointer-events: none;
    cursor: default;
    transform: none;
    border-color: rgba(115, 153, 255, 0.22);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(236, 245, 255, 0.95) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 14px 28px -24px rgba(64, 115, 255, 0.34);
}

.workspace-nav__link.is-preparing .workspace-nav__icon {
    background: linear-gradient(135deg, rgba(86, 133, 255, 0.18), rgba(126, 168, 255, 0.26));
    color: color-mix(in srgb, var(--brand-deep) 84%, #5b7eff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.workspace-nav__link.is-preparing strong {
    color: var(--brand-deep);
}

.workspace-nav__link.is-preparing .workspace-nav__description {
    color: rgba(67, 85, 122, 0.86);
}

.workspace-nav__link.is-active,
.workspace-nav__link:hover {
    transform: translateY(-1px);
    border-color: rgba(49, 89, 219, 0.22);
    box-shadow: 0 18px 30px -24px rgba(49, 89, 219, 0.3);
}

.workspace-nav__link.is-active .workspace-nav__icon,
.workspace-nav__link:hover .workspace-nav__icon {
    background: var(--brand-gradient-strong);
    color: white;
    box-shadow: 0 14px 28px -18px rgba(49, 89, 219, 0.5);
}

.workspace-nav__link.is-active strong,
.workspace-nav__link:hover strong {
    color: var(--brand-deep);
}

.workspace-nav__link.is-active .workspace-nav__description,
.workspace-nav__link:hover .workspace-nav__description {
    color: rgba(37, 72, 185, 0.72);
}

.workspace-main {
    display: grid;
    gap: 18px;
}

.page-header--workspace-compact {
    gap: 14px;
    padding: 22px 24px;
    border-radius: 24px;
}

.page-header--workspace-compact .page-header__main {
    align-items: flex-start;
    gap: 14px;
}

.page-header--workspace-compact .page-header__copy {
    gap: 4px;
    max-width: 860px;
}

.page-header--workspace-compact h1 {
    font-size: clamp(22px, 2.3vw, 28px);
    line-height: 1.14;
}

.page-header--workspace-compact .lead {
    max-width: 64ch;
    font-size: 13px;
    line-height: 1.62;
}

.page-header--workspace-compact .page-header__actions {
    gap: 8px;
    align-self: flex-start;
}

.page-header--workspace-compact .page-header__actions .button {
    min-height: 42px;
    padding: 0 16px;
}

.page-header--workspace-compact .page-header__facts {
    gap: 10px;
}

.page-header--workspace-compact .page-header__fact {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 13px;
    border-radius: 16px;
}

.page-header--workspace-compact .page-header__fact-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.page-header--workspace-compact .page-header__fact strong {
    font-size: 15px;
}

.page-header--workspace-compact .page-header__fact span {
    line-height: 1.45;
}

.page-header--workspace-compact + .page-verification-badges {
    margin-top: -10px;
}

.page-verification-badges {
    margin-top: -4px;
}

.verification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.verification-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.verification-pill--contact {
    background: rgba(219, 234, 254, 0.96);
    color: #1d4ed8;
}

.verification-pill--identity {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.16), rgba(35, 64, 164, 0.18));
    color: var(--brand-deep);
}

.verification-pill--muted {
    background: rgba(226, 232, 240, 0.72);
    color: rgba(71, 85, 105, 0.9);
}

.fake-form small,
.sample-chip span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.service-upload-group {
    display: grid;
    gap: 14px;
}

.service-upload-group__label {
    font-size: 13px;
    font-weight: 700;
}

.service-upload {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px dashed rgba(49, 89, 219, 0.26);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(49, 89, 219, 0.1), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 139, 101, 0.08), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 248, 255, 0.94) 52%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 18px 36px -30px rgba(49, 89, 219, 0.42);
    cursor: pointer;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        background 180ms ease;
}

.service-upload:hover,
.service-upload:focus-visible,
.service-upload.is-dragging {
    border-color: rgba(49, 89, 219, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 24px 44px -30px rgba(49, 89, 219, 0.5);
    transform: translateY(-1px);
}

.service-upload:focus-visible {
    outline: 0;
}

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

.service-upload__hero {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.service-upload__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.16), rgba(99, 119, 235, 0.24));
    color: var(--brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.service-upload__copy {
    display: grid;
    gap: 4px;
}

.service-upload__copy strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.35;
}

.service-upload__copy small {
    margin: 0;
}

.service-upload__action {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.1);
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.service-upload__selection {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
}

.service-upload__selection strong {
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.4;
}

.service-upload__selection small {
    margin: 0;
}

.service-upload__thumbs,
.service-upload-existing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 12px;
}

.service-upload-thumb,
.service-upload-existing-card {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.service-upload-current,
.service-upload-existing-card,
.service-upload-current__body,
.service-upload-existing-card__body {
    min-width: 0;
}

.service-upload-current,
.service-upload-existing-card {
    overflow: hidden;
}

.service-upload-current__media,
.service-upload-existing-card__media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(226, 232, 240, 0.7) 0%, rgba(248, 250, 252, 0.92) 100%);
}

.service-upload-thumb img,
.service-upload-current__media img,
.service-upload-existing-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: rgba(226, 232, 240, 0.7);
}

.service-upload-thumb figcaption,
.service-upload-existing-card__body p,
.service-upload-current__body p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    word-break: break-word;
}

.service-upload-current {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
}

.service-upload-current__body,
.service-upload-existing-card__body {
    display: grid;
    gap: 10px;
}

.service-upload-current__body strong,
.service-upload-existing-card__body strong {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.35;
}

.service-upload-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.service-upload-toggle input {
    width: 16px;
    height: 16px;
    margin: 0;
}

@media (max-width: 760px) {
    .service-upload {
        padding: 18px;
    }

    .service-upload__hero {
        grid-template-columns: 1fr;
    }

    .service-upload__action {
        width: fit-content;
    }

    .service-upload-current {
        grid-template-columns: 1fr;
    }
}

.specialty-service-card {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.specialty-service-card--horizontal {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    align-items: start;
}

.specialty-service-card__media {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    background:
        radial-gradient(circle at top right, rgba(49, 89, 219, 0.18), transparent 34%),
        linear-gradient(140deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.82) 52%, rgba(37, 99, 235, 0.76) 100%);
    box-shadow: 0 24px 40px -34px rgba(49, 89, 219, 0.44);
}

.specialty-service-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.18) 100%);
    pointer-events: none;
}

.specialty-service-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-service-card__media--placeholder {
    display: grid;
    align-items: end;
    padding: 18px;
}

.specialty-service-card__placeholder-copy {
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, 0.96);
}

.specialty-service-card__placeholder-copy strong {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.specialty-service-card__placeholder-copy span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.specialty-service-card__body {
    display: grid;
    gap: 12px;
    min-width: 0;
    align-content: start;
}

.specialty-service-card__title {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.16;
    letter-spacing: -0.03em;
    text-wrap: pretty;
}

.specialty-service-card__title,
.specialty-service-card__title a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.specialty-service-card__title a {
    color: inherit;
    text-decoration: none;
}

.specialty-service-card__title a:hover {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.specialty-service-card__summary {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.specialty-service-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.specialty-service-card__number {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specialty-service-card__chips {
    margin-top: -2px;
}

.specialty-service-card--compact .specialty-service-card__title {
    font-size: clamp(17px, 1.5vw, 22px);
}

.specialty-service-card--home {
    gap: 14px;
}

.specialty-service-card--home .specialty-service-card__media {
    margin: -20px -20px 2px;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 22px 22px 18px 18px;
    box-shadow: none;
}

.specialty-service-card--home .specialty-service-card__title {
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.18;
}

.specialty-service-card--home .specialty-service-card__summary {
    font-size: 12px;
    line-height: 1.7;
}

.specialty-service-showcase__hero {
    margin-bottom: 4px;
}

.specialty-service-gallery__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 860px) {
    .specialty-service-card--horizontal {
        grid-template-columns: 1fr;
    }
}

.compact-stack {
    gap: 12px;
}

.sample-grid {
    display: grid;
    gap: 10px;
}

.sample-chip {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px dashed rgba(130, 156, 190, 0.36);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.mini-card-link {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(23, 48, 84, 0.12);
}

.workspace-quick-card {
    display: grid;
    align-content: start;
    gap: 8px;
}

.workspace-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 18px;
    align-items: start;
}

.workspace-focus-panel {
    display: grid;
    gap: 16px;
    border-color: rgba(49, 89, 219, 0.14);
    background:
        radial-gradient(circle at top right, rgba(49, 89, 219, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.workspace-focus-panel .section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.workspace-focus-list,
.workspace-signal-stack {
    display: grid;
    gap: 12px;
}

.workspace-focus-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
}

.workspace-focus-item__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.18));
    color: var(--brand-deep);
}

.workspace-focus-item__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.workspace-focus-item__body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.workspace-focus-item .text-link {
    justify-self: end;
    white-space: nowrap;
}

.workspace-flow-guide {
    display: grid;
    gap: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(49, 89, 219, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.18);
}

.workspace-flow-guide__head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.workspace-flow-guide__head > div,
.workspace-flow-guide__notes-label {
    display: grid;
    gap: 8px;
}

.workspace-flow-guide__head h2 {
    margin: 0;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
}

.workspace-flow-guide__head p,
.workspace-flow-guide__notes-label p,
.workspace-flow-guide__step p,
.workspace-flow-guide__note p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.workspace-flow-guide__notes-label {
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.workspace-flow-guide__notes-label strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.25;
}

.workspace-flow-guide__body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
    align-items: start;
}

.workspace-flow-guide__steps,
.workspace-flow-guide__notes {
    display: grid;
    gap: 10px;
}

.workspace-flow-guide__step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    background: rgba(255, 255, 255, 0.88);
}

.workspace-flow-guide__step-body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.workspace-flow-guide__step-index {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--brand-gradient-strong);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
}

.workspace-flow-guide__step strong,
.workspace-flow-guide__note strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.28;
}

.workspace-flow-guide__step p {
    margin-top: 0;
}

.workspace-flow-guide__note {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.workspace-flow-guide__note-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(99, 119, 235, 0.16));
    color: var(--brand);
}

.workspace-flow-guide__note p {
    margin-top: 3px;
}

.catalog-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

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

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

.choice-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.choice-card__body {
    display: grid;
    gap: 6px;
    min-height: 108px;
    padding: 16px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 22px;
    background: rgba(248, 252, 255, 0.82);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.choice-card__body strong {
    font-family: var(--font-display);
    font-size: 16px;
}

.choice-card__body small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.choice-card input:checked + .choice-card__body,
.choice-card:hover .choice-card__body {
    transform: translateY(-1px);
    border-color: rgba(23, 101, 209, 0.22);
    box-shadow: 0 16px 28px rgba(35, 63, 101, 0.1);
}

.choice-card input:checked + .choice-card__body {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.1), rgba(99, 119, 235, 0.12));
}

.nav-inline-form {
    display: inline-flex;
    margin: 0;
}

.nav-inline-button {
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 139, 101, 0.14);
    color: #a44b2d;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.session-banner,
.flash-banner {
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    scroll-margin-top: 124px;
}

.session-banner {
    border-color: rgba(49, 89, 219, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.88) 100%);
    box-shadow: 0 18px 34px -26px rgba(49, 89, 219, 0.18);
}

.session-banner__summary span,
.flash-banner span {
    color: var(--muted);
    font-size: 13px;
}

.session-banner__summary {
    display: grid;
    gap: 4px;
}

.flash-banner-success {
    border-color: rgba(62, 215, 180, 0.32);
    background: rgba(240, 255, 250, 0.92);
}

.flash-banner-error {
    border-color: rgba(255, 139, 101, 0.32);
    background: rgba(255, 247, 243, 0.92);
}

.flash-banner-warning {
    border-color: rgba(234, 179, 8, 0.28);
    background: rgba(255, 251, 235, 0.96);
}

.flash-banner-soft {
    border-color: rgba(49, 89, 219, 0.18);
    background: rgba(243, 247, 255, 0.92);
}

.flash-banner strong {
    color: var(--ink);
}

.flash-banner:focus {
    outline: 0;
}

.session-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mode-switcher-wrap {
    display: grid;
    gap: 8px;
}

.mode-switcher {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.mode-switcher__label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mode-switcher__link,
.mode-switcher__chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.mode-switcher__link {
    border: 1px solid rgba(49, 89, 219, 0.14);
    background: rgba(247, 250, 255, 0.92);
    color: var(--muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

.mode-switcher__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mode-switcher__name {
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.mode-switcher__link small,
.mode-switcher__chip small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.mode-switcher__chip {
    background: var(--brand-gradient-strong);
    color: white;
    box-shadow: 0 14px 26px -18px rgba(49, 89, 219, 0.46);
    pointer-events: none;
}

.mode-switcher__chip small {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
}

.mode-switcher__link small {
    background: rgba(49, 89, 219, 0.1);
    color: rgba(37, 72, 185, 0.82);
}

.mode-switcher__link.is-available:hover {
    color: var(--brand-deep);
    border-color: rgba(49, 89, 219, 0.22);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 26px -20px rgba(49, 89, 219, 0.32);
}

.mode-switcher__link.is-setup {
    border-color: rgba(49, 89, 219, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 255, 0.94) 100%);
    color: rgba(37, 72, 185, 0.9);
}

.mode-switcher__link.is-setup:hover {
    color: var(--brand-deep);
    border-color: rgba(49, 89, 219, 0.28);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 26px -20px rgba(49, 89, 219, 0.32);
}

.mode-switcher__helper {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.session-tool {
    display: grid;
    gap: 8px;
}

.session-tool__label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.session-tool__form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.session-tool__select {
    min-width: min(100%, 360px);
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.session-tool--impersonation .button {
    border-color: rgba(165, 88, 46, 0.2);
    background: rgba(255, 251, 247, 0.92);
    color: #7f4121;
}

.site-notice-stack {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.public-announcement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 24px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.88) 100%);
    box-shadow: 0 16px 34px rgba(49, 89, 219, 0.08);
}

.public-announcement__copy {
    display: grid;
    gap: 12px;
}

.public-announcement__copy strong {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.2;
    text-wrap: balance;
}

.public-announcement__copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.public-announcement__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-announcement__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.public-announcement__actions .button,
.public-announcement__actions .public-announcement__status {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
}

.public-announcement__status {
    border-color: rgba(24, 37, 61, 0.08);
    background: linear-gradient(135deg, #697487 0%, #4d5767 100%);
    color: white;
    box-shadow: 0 12px 24px rgba(24, 37, 61, 0.14);
}

.maintenance-shell {
    display: grid;
    gap: 24px;
    padding: 24px 0 32px;
}

.maintenance-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 22px;
    padding: 32px;
    border: 1px solid rgba(49, 89, 219, 0.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(191, 219, 254, 0.3), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.94) 100%);
    box-shadow: 0 34px 66px -48px rgba(49, 89, 219, 0.3);
}

.maintenance-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(49, 89, 219, 0.14) 0%, rgba(49, 89, 219, 0) 72%);
    pointer-events: none;
}

.maintenance-card__head,
.maintenance-card__body,
.maintenance-card__detail,
.maintenance-card__notes,
.maintenance-card__alert,
.maintenance-card__signup {
    position: relative;
    z-index: 1;
}

.maintenance-card__head {
    display: grid;
    gap: 12px;
}

.maintenance-card__head h1 {
    margin: 0;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    text-wrap: balance;
}

.maintenance-card__body {
    display: grid;
    gap: 12px;
}

.maintenance-card__body p,
.maintenance-card__detail p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.maintenance-card__detail {
    padding: 18px 20px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
}

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

.maintenance-card__alert {
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.maintenance-card__alert--success {
    border-color: rgba(16, 185, 129, 0.22);
    background: rgba(236, 253, 245, 0.94);
    color: #0f766e;
}

.maintenance-card__alert--error {
    border-color: rgba(244, 63, 94, 0.22);
    background: rgba(255, 241, 242, 0.94);
    color: #be123c;
}

.maintenance-card__alert ul {
    margin: 0;
    padding-left: 18px;
}

.maintenance-card__signup {
    display: grid;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 246, 255, 0.88) 100%);
}

.maintenance-card__signup-copy {
    display: grid;
    gap: 10px;
}

.maintenance-card__signup-copy h2 {
    margin: 0;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 30px);
    line-height: 1.2;
}

.maintenance-card__signup-copy p,
.maintenance-card__signup-copy ul {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.maintenance-card__signup-copy ul {
    padding-left: 18px;
}

.maintenance-signup-form {
    display: grid;
    gap: 14px;
}

.maintenance-signup-form__field,
.maintenance-signup-form__checkbox {
    display: grid;
    gap: 8px;
}

.maintenance-signup-form__field span,
.maintenance-signup-form__checkbox span {
    color: #334155;
    font-size: 14px;
    line-height: 1.7;
}

.maintenance-signup-form__field input[type="email"] {
    width: 100%;
    border: 1px solid rgba(191, 207, 232, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    padding: 14px 16px;
    color: #0f172a;
    font: 500 15px/1.5 var(--font-display);
}

.maintenance-signup-form__field input[type="email"]:focus {
    outline: none;
    border-color: rgba(49, 89, 219, 0.48);
    box-shadow: 0 0 0 4px rgba(49, 89, 219, 0.12);
}

.maintenance-signup-form__checkbox {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: flex-start;
}

.maintenance-signup-form__checkbox input {
    margin-top: 4px;
    accent-color: var(--brand);
}

.maintenance-signup-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.maintenance-signup-form small {
    color: var(--muted);
    line-height: 1.7;
}

.bug-report-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.bug-report-widget__launcher {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #3159db 0%, #1f44b5 100%);
    color: #fff;
    font: 700 13px/1 var(--font-display);
    box-shadow: 0 18px 40px -24px rgba(49, 89, 219, 0.7);
    cursor: pointer;
}

.bug-report-widget__panel {
    width: min(340px, calc(100vw - 24px));
    display: none;
    border-radius: 22px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 60px -34px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.bug-report-widget.is-open .bug-report-widget__panel {
    display: block;
}

.bug-report-widget.is-open .bug-report-widget__launcher {
    display: none;
}

.bug-report-widget__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    background: linear-gradient(180deg, rgba(238, 242, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.bug-report-widget__header strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
}

.bug-report-widget__header p {
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
}

.bug-report-widget__close {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.bug-report-widget__notice {
    margin: 0 16px 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #eef2ff;
    color: #284bc0;
    font-size: 12px;
    line-height: 1.6;
}

.bug-report-widget__notice.is-hidden {
    display: none;
}

.bug-report-widget__notice.is-success {
    background: #ecfdf3;
    color: #047857;
}

.bug-report-widget__notice.is-error {
    background: #fff1f2;
    color: #be123c;
}

.bug-report-widget__form {
    padding: 0 16px 16px;
}

.bug-report-widget__type {
    display: flex;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}

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

.bug-report-widget__type-option {
    position: relative;
    flex: 1 1 0;
}

.bug-report-widget__type-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.bug-report-widget__type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid #dbe3f4;
    border-radius: 999px;
    background: rgba(246, 249, 255, 0.9);
    color: #47607f;
    font: 700 12px/1 var(--font-display);
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bug-report-widget__type-option input:checked + span {
    border-color: rgba(49, 89, 219, 0.4);
    background: rgba(49, 89, 219, 0.12);
    color: #284bc0;
    box-shadow: 0 10px 20px -18px rgba(49, 89, 219, 0.6);
}

.bug-report-widget__type-option input:focus-visible + span {
    outline: none;
    box-shadow: 0 0 0 4px rgba(91, 124, 240, 0.14);
}

.bug-report-widget__field {
    display: block;
    margin-bottom: 12px;
}

.bug-report-widget__field span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}

.bug-report-widget__field input,
.bug-report-widget__field textarea {
    width: 100%;
    border: 1px solid #dbe3f4;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    padding: 10px 12px;
    font: 500 13px/1.6 var(--font-display);
    resize: vertical;
}

.bug-report-widget__field textarea {
    min-height: 108px;
}

.bug-report-widget__field input:focus,
.bug-report-widget__field textarea:focus {
    outline: none;
    border-color: #5b7cf0;
    box-shadow: 0 0 0 4px rgba(91, 124, 240, 0.14);
}

.bug-report-widget__help,
.bug-report-widget__page {
    margin: 0 0 12px;
    font-size: 11px;
    line-height: 1.7;
    color: #64748b;
}

.bug-report-widget__actions {
    display: flex;
    justify-content: flex-end;
}

.bug-report-widget__actions .button {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
}

.bug-report-widget__actions .button[disabled] {
    opacity: 0.7;
    cursor: progress;
}

.maintenance-card__note {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.maintenance-card__note strong {
    color: #0f172a;
    font-size: 15px;
}

.maintenance-card__note span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.site-cta {
    position: relative;
    display: grid;
    gap: 24px;
    justify-items: center;
    margin-top: 20px;
    padding: 72px 28px;
    border-radius: 0;
    background: var(--brand-gradient-strong);
    color: white;
    overflow: hidden;
    box-shadow: 0 24px 42px rgba(49, 89, 219, 0.22);
}

.site-cta__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(18px);
    pointer-events: none;
}

.site-cta__orb-right {
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: white;
}

.site-cta__orb-left {
    left: -70px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background: rgba(252, 231, 243, 0.92);
}

.site-cta__content,
.site-cta__body,
.site-cta__actions {
    position: relative;
    z-index: 1;
}

.site-cta__content {
    display: grid;
    gap: 18px;
    width: min(100%, 920px);
    justify-items: center;
    margin: 0 auto;
    text-align: center;
}

.site-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-cta__body {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.site-cta__body h2 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 40px);
    color: white;
}

.site-cta__body p {
    margin: 0;
    max-width: 680px;
    color: rgba(219, 234, 254, 0.96);
    font-size: 15px;
    line-height: 1.7;
}

.site-cta__body small {
    color: rgba(219, 234, 254, 0.92);
    font-size: 13px;
    line-height: 1.72;
}

.site-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.site-cta__button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-color: transparent;
    background: white;
    color: var(--brand);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.site-cta__button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(19, 86, 178, 0.7);
    color: white;
}

.site-footer {
    display: grid;
    gap: 26px;
    padding: 18px 0 8px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 28px;
    padding-top: 12px;
}

.site-footer__brand {
    display: grid;
    gap: 18px;
}

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

.site-footer__links div {
    display: grid;
    gap: 10px;
}

.site-footer__links strong,
.site-footer__bottom span {
    font-family: var(--font-display);
}

.site-footer__links strong {
    font-size: 15px;
}

.site-footer__links a,
.site-footer__bottom a,
.site-footer__bottom span {
    color: var(--muted);
    font-size: 14px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.bullet-panel div {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(238, 246, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.pager-link {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    font-weight: 700;
}

.pager-link--disabled {
    color: #9aabbe;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px dashed rgba(130, 156, 190, 0.4);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.landing-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 36px 0 24px;
    position: relative;
    overflow: hidden;
}

.landing-stage {
    position: relative;
    overflow: hidden;
    padding: 8px 0 18px;
}

.landing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.72;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.landing-orb-blue {
    top: -12%;
    left: -8%;
    width: 360px;
    height: 360px;
    background: rgba(191, 219, 254, 0.88);
}

.landing-orb-pink {
    top: 16%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: rgba(251, 207, 232, 0.82);
}

.landing-orb-yellow {
    bottom: -22%;
    left: 18%;
    width: 420px;
    height: 420px;
    background: rgba(254, 240, 138, 0.78);
}

.landing-stage .landing-hero {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
}

.hero-badge__pulse {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(49, 89, 219, 0.12);
}

.hero-headline {
    display: grid;
    gap: 22px;
}

.hero-headline h1 span {
    color: transparent;
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 48%, var(--brand-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 34px);
}

.trust-item strong span {
    color: var(--brand);
}

.trust-item span {
    color: var(--muted);
    font-size: 12px;
}

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

.hero-helper-card,
.feature-card,
.note-card {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

.glass-showcase {
    padding: 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
}

.landing-showcase-wrap {
    position: relative;
    padding-top: 26px;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 14px 30px rgba(49, 89, 219, 0.14);
}

.floating-badge-top {
    position: absolute;
    top: 0;
    right: -12px;
    z-index: 3;
}

.floating-badge__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
}

.floating-badge__icon-yellow {
    background: var(--sun);
    color: var(--sun-text);
}

.floating-badge strong {
    font-family: var(--font-display);
    font-size: 20px;
}

.floating-badge span {
    color: var(--muted);
    font-size: 12px;
}

.mock-board {
    display: grid;
    gap: 14px;
}

.mock-board__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mock-board__head h3 {
    font-size: 20px;
}

.mock-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
}

.mock-job {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: white;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.mock-job__row,
.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mock-job__title {
    font-weight: 700;
    line-height: 1.6;
}

.mock-job__price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--brand);
}

.mock-job__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 12px;
}

.ticker-band {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: white;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
}

.ticker-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding-left: 28px;
    animation: ticker-move 36s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.ticker-item strong {
    color: var(--brand);
    font-family: var(--font-display);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint-text);
}

.soft-section {
    display: grid;
    gap: 22px;
    padding: 36px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.74);
}

.section-headline {
    max-width: 680px;
}

.rank-card {
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: white;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
}

.rank-item__place {
    width: 28px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--sun-text);
}

.rank-item:nth-child(2) .rank-item__place {
    color: #94a3b8;
}

.rank-item:nth-child(3) .rank-item__place {
    color: var(--coral);
}

.page-stack {
    display: grid;
    gap: 28px;
}

.page-header--portal {
    position: relative;
    overflow: hidden;
    padding: 26px 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(99, 119, 235, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.88) 100%);
    box-shadow: 0 30px 70px -54px rgba(49, 89, 219, 0.4);
}

.page-header--portal::before,
.portal-showcase::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.page-header--portal::before {
    top: -120px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(49, 89, 219, 0.1);
    filter: blur(16px);
}

.page-header--portal::after {
    content: "";
    position: absolute;
    inset: auto auto -60px 6%;
    width: 240px;
    height: 140px;
    border-radius: 999px;
    background: rgba(189, 198, 255, 0.22);
    filter: blur(20px);
    pointer-events: none;
}

.page-header--portal .page-header__main,
.page-header--portal .page-header__facts,
.portal-showcase__head,
.portal-note-list,
.portal-step-grid {
    position: relative;
    z-index: 1;
}

.page-header--portal .page-header__copy {
    gap: 12px;
}

.page-header--portal .page-header__actions {
    align-self: flex-start;
}

.page-header--portal .page-header__fact {
    background: rgba(255, 255, 255, 0.92);
}

.portal-showcase {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 255, 0.86) 100%);
    box-shadow: 0 24px 50px -42px rgba(15, 23, 42, 0.24);
    overflow: hidden;
}

.portal-showcase::before {
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: rgba(49, 89, 219, 0.08);
    filter: blur(18px);
}

.portal-showcase--accent {
    border-color: transparent;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%),
        var(--brand-gradient-strong);
    color: white;
    box-shadow: 0 30px 60px -36px rgba(49, 89, 219, 0.42);
}

.portal-showcase--accent::before {
    background: rgba(255, 255, 255, 0.12);
}

.portal-showcase__head {
    display: grid;
    gap: 12px;
}

.portal-showcase__head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.portal-showcase--accent .portal-showcase__head p {
    color: rgba(255, 255, 255, 0.84);
}

.portal-showcase--accent .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

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

.portal-step-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.88);
}

.portal-showcase--accent .portal-step-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
}

.portal-step-card__index {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.12);
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
}

.portal-showcase--accent .portal-step-card__index {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.portal-step-card strong,
.portal-note-item strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.28;
}

.portal-step-card small,
.portal-note-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.portal-showcase--accent .portal-step-card small {
    color: rgba(255, 255, 255, 0.82);
}

.portal-note-list {
    display: grid;
    gap: 12px;
}

.portal-note-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.portal-note-item__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(99, 119, 235, 0.16));
    color: var(--brand);
}

.portal-note-item p {
    margin: 4px 0 0;
}

.portal-chip-group,
.portal-statline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portal-chip,
.portal-statline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.84);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.portal-statline span {
    color: var(--muted);
}

.portal-showcase--accent .portal-chip,
.portal-showcase--accent .portal-statline span {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.portal-list-tight {
    gap: 0;
}

.portal-list-tight .timeline-item,
.portal-list-tight .leaderboard-item {
    padding: 16px 0;
}

.portal-cta-copy {
    display: grid;
    gap: 8px;
}

@media (max-width: 1080px) {
    .portal-step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .page-stack {
        gap: 22px;
    }

    .page-header--portal,
    .portal-showcase {
        padding: 22px;
        border-radius: 26px;
    }
}

@keyframes ticker-move {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.password-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 245, 250, 0.92) 100%);
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.08);
}

.password-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.password-card__header h3 {
    margin: 0;
    font-size: 18px;
}

.password-card__header p,
.password-card__helper {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.password-card__account {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.08);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
}

.password-card__grid,
.security-settings-grid,
.security-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.password-card__field {
    display: grid;
    gap: 8px;
}

.password-card__field--error input {
    border-color: rgba(236, 72, 153, 0.52);
    background: rgba(255, 241, 244, 0.96);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.08);
}

.password-card__toolbar,
.thread-card__head,
.password-card__meter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.password-card__meter {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
}

.password-card__meter-head span,
.password-card__meter-head strong {
    font-size: 14px;
}

.password-card__bar {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.6);
    overflow: hidden;
}

.password-card__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--line);
    transition: width 180ms ease, background 180ms ease;
}

.password-card__hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.password-card__error {
    color: var(--pink-text);
    font-size: 12px;
    line-height: 1.6;
}

.signup-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.88fr);
    gap: 28px;
    align-items: start;
}

.signup-card,
.signup-side-card {
    overflow: hidden;
}

.signup-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.signup-card__head--enhanced {
    gap: 24px;
    margin-bottom: 24px;
}

.signup-card__intro {
    display: grid;
    gap: 12px;
    max-width: 720px;
}

.signup-card__summary {
    display: grid;
    gap: 12px;
    justify-items: end;
    flex: 0 0 220px;
}

.signup-card__head h2,
.signup-side-card h2 {
    margin: 6px 0 0;
}

.signup-card__head p,
.signup-side-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.signup-card__badge {
    display: grid;
    gap: 4px;
    min-width: 112px;
    padding: 16px 18px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(250, 245, 255, 0.88));
    box-shadow: 0 18px 34px rgba(49, 89, 219, 0.1);
    text-align: center;
}

.signup-card__badge strong {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--brand);
}

.signup-card__badge span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.signup-card__chips {
    justify-content: flex-end;
}

.signup-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.signup-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.signup-step strong {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.56);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
}

.signup-step.is-active {
    border-color: rgba(49, 89, 219, 0.14);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(248, 250, 252, 0.94));
    color: var(--ink);
}

.signup-step.is-active strong {
    background: var(--brand-gradient-strong);
    color: white;
}

.signup-form {
    gap: 18px;
}

.signup-section {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 28px rgba(23, 48, 84, 0.05);
}

.signup-section--scope .choice-grid {
    margin-top: 2px;
}

.signup-section__head {
    display: grid;
    gap: 4px;
}

.signup-section__head strong {
    font-family: var(--font-display);
    font-size: 18px;
}

.signup-section__head small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

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

.signup-inline-note {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(49, 89, 219, 0.16);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(248, 250, 252, 0.92));
}

.signup-inline-note strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.4;
}

.signup-inline-note p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.signup-inline-note--subtle {
    border-color: rgba(130, 156, 190, 0.18);
    background: rgba(248, 252, 255, 0.78);
}

.signup-optional {
    border: 1px dashed rgba(130, 156, 190, 0.34);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
}

.signup-optional summary {
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--ink);
}

.signup-optional summary::-webkit-details-marker {
    display: none;
}

.signup-optional summary::after {
    content: "＋";
    float: right;
    color: var(--brand);
    font-size: 18px;
    line-height: 1;
}

.signup-optional[open] summary::after {
    content: "−";
}

.signup-optional__body {
    display: grid;
    gap: 14px;
    padding: 0 18px 18px;
}

.signup-submit {
    display: grid;
    gap: 10px;
    justify-items: start;
    padding-top: 8px;
}

.signup-submit--panel {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px 24px;
    padding: 22px 24px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.92));
    box-shadow: 0 22px 44px -36px rgba(49, 89, 219, 0.32);
}

.signup-submit__copy {
    display: grid;
    gap: 10px;
}

.signup-submit__copy strong {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.signup-submit__copy p {
    margin: 0;
}

.signup-submit__chips {
    margin-top: 2px;
}

.signup-submit__actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.signup-submit__actions .button {
    min-width: 260px;
}

.signup-submit p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.mode-setup-summary {
    margin-bottom: 18px;
}

.mode-setup-preview-note {
    margin-bottom: 14px;
}

.mode-setup-preview-note .signup-submit__copy strong {
    font-size: clamp(20px, 2.3vw, 24px);
}

.mode-setup-summary.signup-submit--panel,
.mode-setup-preview-note.signup-submit--panel {
    gap: 14px 18px;
    padding: 18px 20px;
    border-radius: 24px;
}

.mode-setup-summary .signup-submit__copy,
.mode-setup-preview-note .signup-submit__copy {
    gap: 8px;
}

.mode-setup-summary .signup-submit__copy strong,
.mode-setup-preview-note .signup-submit__copy strong {
    font-size: clamp(18px, 2.2vw, 23px);
}

.mode-setup-summary .signup-submit__actions,
.mode-setup-preview-note .signup-submit__actions {
    gap: 10px;
}

.mode-setup-form--preview {
    opacity: 0.94;
}

.mode-setup-form--preview input[disabled],
.mode-setup-form--preview textarea[disabled] {
    cursor: not-allowed;
    color: rgba(25, 41, 74, 0.82);
    background: rgba(247, 250, 255, 0.86);
}

.mode-setup-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 18px;
    background: rgba(248, 252, 255, 0.84);
}

.mode-setup-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.mode-setup-consent span {
    font-size: 14px;
    line-height: 1.75;
}

.mode-setup-consent a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.mode-setup-consent a:hover {
    text-decoration: underline;
}

.mode-setup-consent--policy {
    border-color: var(--policy-rose-line);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 239, 239, 0.88) 100%);
    box-shadow: 0 18px 30px -28px var(--policy-rose-shadow);
}

.mode-setup-consent--error {
    border-color: rgba(198, 63, 91, 0.42);
    background: linear-gradient(135deg, rgba(255, 247, 249, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 20px 34px -30px rgba(198, 63, 91, 0.36);
    scroll-margin-top: 120px;
}

.mode-setup-consent--policy span {
    color: rgba(61, 49, 52, 0.92);
}

.mode-setup-consent--policy a {
    color: var(--policy-rose-deep);
}

.signup-legal-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.legal-summary-grid {
    margin-bottom: 24px;
}

.policy-alert {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--policy-rose-line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 239, 239, 0.94) 52%, rgba(246, 248, 252, 0.96) 100%);
    box-shadow: 0 20px 34px -28px var(--policy-rose-shadow);
}

.policy-alert--compact {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
}

.policy-alert__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(162, 97, 103, 0.14), rgba(49, 89, 219, 0.08));
    color: var(--policy-rose-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.policy-alert--compact .policy-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
}

.policy-alert__body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.policy-alert__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(162, 97, 103, 0.12);
    color: var(--policy-rose-deep);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.policy-alert strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.policy-alert p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.78;
}

.policy-alert__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-alert__list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.policy-alert__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--policy-rose) 0%, rgba(49, 89, 219, 0.52) 100%);
}

.policy-alert__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.policy-alert__footer .text-link {
    color: var(--policy-rose-deep);
}

@media (max-width: 720px) {
    .policy-alert,
    .policy-alert--compact {
        grid-template-columns: 1fr;
    }

    .policy-alert__icon,
    .policy-alert--compact .policy-alert__icon {
        width: 38px;
        height: 38px;
    }
}

.adult-alert {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--adult-earth-line);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 239, 0.96) 52%, rgba(246, 248, 252, 0.96) 100%);
    box-shadow: 0 20px 34px -28px var(--adult-earth-shadow);
}

.adult-alert--compact {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
}

.adult-alert__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(143, 101, 93, 0.14), rgba(49, 89, 219, 0.08));
    color: var(--adult-earth-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.adult-alert--compact .adult-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
}

.adult-alert__body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.adult-alert__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(143, 101, 93, 0.12);
    color: var(--adult-earth-deep);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.adult-alert strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: rgba(53, 39, 36, 0.96);
}

.adult-alert p {
    margin: 0;
    color: rgba(96, 76, 71, 0.88);
    font-size: 13px;
    line-height: 1.78;
}

.adult-alert__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.adult-alert__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(96, 76, 71, 0.88);
    font-size: 13px;
    line-height: 1.72;
}

.adult-alert__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--adult-earth) 0%, rgba(49, 89, 219, 0.52) 100%);
}

.adult-alert__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.adult-alert__footer .text-link {
    color: var(--adult-earth-deep);
}

.pill-restricted {
    background: rgba(143, 101, 93, 0.12);
    color: var(--adult-earth-deep);
}

.job-card--adult {
    border-color: var(--adult-earth-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 239, 0.72) 100%);
    box-shadow: 0 20px 34px -30px var(--adult-earth-shadow);
}

.job-card--adult .job-card__progress-bar {
    background: linear-gradient(135deg, rgba(143, 101, 93, 0.92), rgba(49, 89, 219, 0.52));
}

.job-card__title--restricted a,
.job-card__summary--restricted {
    color: rgba(72, 55, 51, 0.92);
}

.request-plan-option__card--adult-locked {
    border-color: var(--adult-earth-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 239, 0.72) 100%);
    box-shadow: 0 18px 28px -26px var(--adult-earth-shadow);
}

.adult-content-card {
    position: relative;
    border-color: var(--adult-earth-line) !important;
    box-shadow: 0 20px 36px -32px var(--adult-earth-shadow) !important;
}

.adult-content-card__title {
    color: rgba(53, 39, 36, 0.96);
}

.adult-content-card__summary {
    color: rgba(96, 76, 71, 0.88) !important;
}

.adult-confirm-summary {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--adult-earth-line);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 239, 0.72) 100%);
}

.adult-confirm-summary h2 {
    margin: 6px 0 0;
    font-family: var(--font-display);
    font-size: 22px;
}

.adult-confirm-summary__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.adult-confirm-summary__grid div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(143, 101, 93, 0.14);
}

.adult-confirm-summary__grid dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(96, 76, 71, 0.7);
}

.adult-confirm-summary__grid dd {
    margin: 6px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: rgba(53, 39, 36, 0.96);
}

.adult-confirm-panel {
    align-self: start;
}

.adult-confirm-consent {
    margin-top: 8px;
}

.adult-confirm-actions {
    margin-top: 18px;
}

.adult-confirm-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .adult-alert,
    .adult-alert--compact {
        grid-template-columns: 1fr;
    }

    .adult-alert__icon,
    .adult-alert--compact .adult-alert__icon {
        width: 38px;
        height: 38px;
    }

    .adult-confirm-summary__grid {
        grid-template-columns: 1fr;
    }
}

.legal-summary-card {
    display: grid;
    gap: 10px;
    min-height: 100%;
}

.legal-summary-card strong,
.legal-section h2 {
    font-size: 20px;
}

.legal-document {
    padding: 28px;
}

.legal-document__body {
    display: grid;
    gap: 28px;
}

.legal-section {
    display: grid;
    gap: 16px;
    padding-top: 8px;
}

.legal-paragraph {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.legal-list {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 10px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.legal-definition-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.legal-definition-list.compact {
    gap: 10px;
}

.legal-definition-list div {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 18px;
}

.legal-definition-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-definition-list dd {
    margin: 0;
    display: grid;
    gap: 6px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.legal-definition-list dd span {
    color: inherit;
}

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

.legal-service-card {
    gap: 14px;
}

.signup-aside {
    display: grid;
    gap: 20px;
}

.signup-side-card--highlight {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 112px;
    border: 1px solid rgba(49, 89, 219, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.9) 100%);
    box-shadow: 0 26px 52px -40px rgba(49, 89, 219, 0.28);
}

.signup-note-list {
    gap: 12px;
}

.signup-side-card__section {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(130, 156, 190, 0.16);
}

.signup-side-card__section strong {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.3;
}

.signup-side-card__section p {
    margin: 0;
}

.signup-side-card__chips {
    margin-top: 2px;
}

.signup-points {
    display: grid;
    gap: 12px;
}

.signup-points div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 18px;
    background: rgba(248, 252, 255, 0.84);
}

.signup-points strong {
    font-family: var(--font-display);
}

.signup-points p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.security-status-card,
.security-settings-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
}

.security-status-card strong,
.security-settings-card h3,
.thread-card strong {
    font-family: var(--font-display);
}

.security-status-card p,
.security-settings-card p,
.thread-card p,
.thread-message p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.security-settings-card {
    align-content: start;
}

.verification-overview-grid {
    margin-top: 16px;
}

.verification-status-card {
    gap: 10px;
}

.verification-status-card small,
.verification-success-card small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.verification-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.verification-step {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
}

.verification-step strong {
    font-family: var(--font-display);
}

.verification-step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.verification-step--verified,
.verification-step--done {
    border-color: rgba(49, 89, 219, 0.18);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.verification-step--pending {
    border-color: rgba(250, 204, 21, 0.22);
    background: rgba(254, 249, 195, 0.36);
}

.verification-summary-card,
.verification-public-card,
.verification-help-card,
.verification-success-card {
    display: grid;
    gap: 10px;
}

.verification-preview-note {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px dashed rgba(49, 89, 219, 0.26);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(248, 250, 252, 0.94));
}

.verification-preview-note strong {
    font-family: var(--font-display);
    color: var(--brand-deep);
}

.verification-preview-note code {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(35, 64, 164, 0.08);
    color: var(--brand-deep);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.verification-preview-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.verification-detail-grid dd .verification-badges {
    margin-top: -2px;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    background: rgba(248, 252, 255, 0.76);
}

.toggle-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
}

.thread-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 30px rgba(35, 63, 101, 0.06);
}

.thread-card__messages {
    display: grid;
    gap: 12px;
}

.thread-message {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248, 252, 255, 0.88);
    border: 1px solid rgba(130, 156, 190, 0.16);
}

.thread-message--admin {
    background: rgba(239, 246, 255, 0.94);
    border-color: rgba(49, 89, 219, 0.14);
}

.thread-message--user {
    background: rgba(252, 245, 250, 0.9);
    border-color: rgba(236, 72, 153, 0.12);
}

.thread-message--requester {
    background: rgba(252, 245, 250, 0.92);
    border-color: rgba(236, 72, 153, 0.16);
}

.thread-message--partner {
    background: rgba(239, 246, 255, 0.94);
    border-color: rgba(49, 89, 219, 0.16);
}

.thread-message--system {
    background: rgba(248, 250, 252, 0.96);
    border-color: rgba(148, 163, 184, 0.18);
}

.thread-message small {
    color: var(--muted);
    font-size: 12px;
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    gap: 24px;
    align-items: start;
}

.contact-sidebar,
.contact-card,
.contact-quick-list,
.contact-step-list,
.contact-history,
.contact-history__list {
    display: grid;
    gap: 18px;
}

.contact-card--form {
    padding: 30px;
}

.contact-card--aside {
    padding: 28px;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.contact-card__head {
    display: grid;
    gap: 10px;
}

.contact-card__head h2 {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.18;
}

.contact-lead {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.contact-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(239, 246, 255, 0.88);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
}

.contact-form {
    gap: 16px;
}

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

.contact-help-text,
.contact-form__message small {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.contact-account-card {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(49, 89, 219, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.9) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.contact-account-card strong {
    font-size: 15px;
    line-height: 1.45;
}

.contact-account-card p,
.contact-thread-card__preview,
.contact-quick-item p,
.contact-step__body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.contact-form__message {
    gap: 10px;
}

.contact-form__optional {
    margin-top: 2px;
}

.contact-submit-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px 24px;
    padding: 20px 22px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.contact-submit-bar__copy {
    display: grid;
    gap: 4px;
}

.contact-submit-bar__copy strong {
    font-size: 14px;
    line-height: 1.45;
}

.contact-submit-bar__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.contact-submit-bar__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.contact-quick-item {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
}

.contact-quick-item strong,
.contact-step__body strong {
    font-size: 15px;
    line-height: 1.45;
}

.contact-step {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.contact-step__index {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.2));
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
}

.contact-step__body {
    display: grid;
    gap: 4px;
}

.contact-history__list {
    gap: 14px;
}

.contact-thread-card {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.88) 100%);
    box-shadow: 0 18px 30px rgba(35, 63, 101, 0.06);
}

.contact-thread-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 1080px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-submit-bar {
        grid-template-columns: 1fr;
    }

    .contact-submit-bar__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .contact-card--form,
    .contact-card--aside {
        padding: 22px;
    }

    .contact-identity-grid {
        grid-template-columns: 1fr;
    }

    .contact-submit-bar {
        padding: 18px;
        border-radius: 20px;
    }

    .contact-submit-bar__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-submit-bar__actions .button {
        width: 100%;
        justify-content: center;
    }
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.status-pill--open {
    background: rgba(254, 249, 195, 0.92);
    color: var(--sun-text);
}

.status-pill--waiting {
    background: rgba(239, 246, 255, 0.94);
    color: var(--brand);
}

.status-pill--resolved {
    background: rgba(220, 252, 231, 0.92);
    color: var(--mint-text);
}

.status-pill--closed {
    background: rgba(226, 232, 240, 0.94);
    color: rgba(51, 65, 85, 0.92);
}

.status-pill--active {
    background: rgba(239, 246, 255, 0.94);
    color: var(--brand);
}

.status-pill--pending,
.status-pill--attention {
    background: rgba(254, 249, 195, 0.92);
    color: var(--sun-text);
}

.status-pill--completed {
    background: rgba(220, 252, 231, 0.92);
    color: var(--mint-text);
}

.room-card {
    gap: 14px;
}

.room-card__excerpt {
    margin: 0;
    color: rgba(71, 85, 105, 0.94);
    line-height: 1.8;
}

.workspace-room-layout,
.workspace-room-panel,
.workspace-room-card-grid {
    display: grid;
    gap: 18px;
}

.workspace-room-layout {
    grid-template-columns: minmax(0, 1fr);
}

.workspace-room-panel,
.room-summary-panel {
    align-content: start;
}

.workspace-room-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.workspace-room-card-grid--guide {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.room-summary-card {
    display: grid;
    gap: 10px;
    height: 100%;
    border: 1px solid rgba(49, 89, 219, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.92) 100%);
}

.room-summary-card p,
.room-summary-card__meta {
    margin: 0;
    line-height: 1.7;
}

.room-summary-card__meta {
    color: var(--muted);
    font-size: 13px;
}

.room-delivery-issue {
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(254, 249, 195, 0.72);
    color: var(--sun-text);
    font-size: 13px;
    line-height: 1.7;
}

.article-market-card {
    gap: 14px;
}

.article-market-action {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
    padding-top: 8px;
}

.article-market-action label {
    min-width: 180px;
    flex: 1 1 180px;
}

.article-market-action span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(53, 76, 120, 0.78);
}

.article-market-action input {
    width: 100%;
}

.article-market-filter {
    margin-bottom: 18px;
}

.article-stock-card {
    gap: 10px;
}

.article-order-item {
    align-items: start;
    gap: 18px;
}

.article-order-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.article-order-list span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(223, 232, 255, 0.78);
    color: rgba(45, 66, 108, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .hero-panel,
    .page-hero,
    .page-header,
    .landing-hero,
    .split-layout,
    .dual-panel,
    .triple-grid,
    .job-grid,
    .feature-grid,
    .workspace-shell,
    .workspace-overview-grid,
    .cta-band,
    .signup-shell {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

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

    .home-trust-grid,
    .hero-helper-grid,
    .verification-flow,
    .site-footer__grid,
    .site-footer__links,
    .password-card__grid,
    .security-settings-grid,
    .security-overview-grid,
    .signup-form-grid,
    .page-header__facts,
    .request-builder-layout,
    .request-builder-form__grid,
    .request-plan-picker__grid,
    .request-plan-picker__intro,
    .request-template-option__actions,
    .legal-service-grid {
        grid-template-columns: 1fr;
    }

    .signup-card__head {
        flex-direction: column;
    }

    .signup-card__summary,
    .signup-card__chips,
    .signup-submit__actions {
        justify-items: start;
        justify-content: flex-start;
    }

    .signup-side-card--highlight {
        position: static;
        top: auto;
    }

    .signup-submit--panel {
        grid-template-columns: 1fr;
    }

    .workspace-sidebar {
        position: static;
        height: auto;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .workspace-sidebar__menu-head {
        display: flex;
    }

    .workspace-nav__group-summary {
        padding: 12px 13px;
    }

    .workspace-nav {
        overflow: visible;
        padding-right: 0;
        margin-right: 0;
    }

    .page-header__main {
        flex-direction: column;
        align-items: stretch;
    }

    .request-builder-disclosure__summary {
        flex-direction: column;
        align-items: stretch;
    }

    .request-plan-picker__detail-head {
        flex-direction: column;
    }

    .request-plan-picker__detail-meta {
        justify-content: flex-start;
    }

    .request-plan-picker__detail-flag {
        right: 16px;
    }

    .request-template-option {
        flex-basis: calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
    }

    .request-template-picker__edge {
        width: 60px;
    }

    .request-template-picker__edge-marker {
        width: 30px;
        height: 30px;
    }

    .request-template-picker__edge-marker::before {
        font-size: 14px;
    }

    .floating-badge-top {
        position: static;
        margin-bottom: 12px;
    }

    .public-announcement,
    .site-cta,
    .site-footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .public-announcement__actions,
    .site-cta__actions {
        justify-content: flex-start;
    }

    .job-next-panel {
        position: static;
        top: auto;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
        padding-top: 120px;
    }

    .request-plan-option__selection-badge {
        min-width: 102px;
        min-height: 26px;
        font-size: 10px;
        right: -30px;
    }

    .request-plan-picker__detail-flag {
        top: -10px;
        right: 14px;
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    .site-header,
    .hero-panel,
    .page-hero,
    .page-header,
    .landing-hero,
    .panel,
    .cta-band {
        padding: 18px;
        border-radius: 20px;
    }

    .hero-notes,
    .stat-grid,
    .job-card__stats,
    .detail-grid,
    .catalog-card__info-grid,
    .request-type-summary__grid,
    .request-builder-form__grid,
    .verification-flow,
    .filter-grid,
    .legacy-ribbon,
    .home-trust-grid,
    .hero-helper-grid,
    .choice-grid--two,
    .choice-grid--three,
    .password-card__grid,
    .security-settings-grid,
    .security-overview-grid,
    .signup-form-grid,
    .page-header__facts {
        grid-template-columns: 1fr;
    }

    .request-template-picker__grid {
        gap: 0;
    }

    .request-template-option {
        flex-basis: 100%;
        max-width: 100%;
    }

    .request-template-picker__edge {
        width: 44px;
    }

    .request-template-picker__edge-marker {
        width: 26px;
        height: 26px;
    }

    .request-template-picker__edge-marker::before {
        font-size: 12px;
    }

    .signup-section,
    .signup-optional__body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .signup-optional summary {
        padding-left: 16px;
        padding-right: 16px;
    }

    .signup-step {
        width: 100%;
        justify-content: flex-start;
    }

    .signup-card__summary {
        width: 100%;
    }

    .signup-inline-note,
    .signup-submit--panel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .signup-submit__actions {
        width: 100%;
    }

    .signup-submit__actions .button {
        width: 100%;
        min-width: 0;
    }

    .page-header--workspace-compact {
        padding: 18px;
        border-radius: 22px;
    }

    .page-header--workspace-compact .page-header__actions .button {
        width: 100%;
    }

    .portfolio-choice {
        grid-template-columns: auto 64px minmax(0, 1fr);
        padding: 12px;
    }

    .portfolio-choice__media {
        width: 64px;
    }

    .portfolio-card,
    .proposal-portfolio-item {
        padding: 14px;
    }

    .workspace-profile-jump .support-helper-link,
    .workspace-profile-form__actions .button {
        width: 100%;
        justify-content: center;
    }

    .workspace-ai-checkbox {
        min-height: 0;
        align-self: start;
    }

    .portfolio-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .workspace-flow-guide {
        padding: 18px;
        border-radius: 22px;
    }

    .workspace-flow-guide__head,
    .workspace-flow-guide__body {
        grid-template-columns: 1fr;
    }

    .workspace-flow-guide__step,
    .workspace-flow-guide__note {
        padding: 13px 14px;
    }

    .workspace-focus-item {
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: start;
    }

    .workspace-focus-item .text-link {
        grid-column: 2;
        justify-self: start;
    }

    .mode-setup-summary.signup-submit--panel,
    .mode-setup-preview-note.signup-submit--panel {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-heading,
    .timeline-item,
    .leaderboard-item,
    .job-card__top,
    .thread-card__head,
    .request-builder-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-amount,
    .leaderboard-actions,
    .job-card__reward {
        justify-items: start;
        text-align: left;
        max-width: 100%;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .article-market-action {
        align-items: stretch;
    }

    .article-market-action .button {
        width: 100%;
    }

    .site-actions {
        width: 100%;
        justify-content: stretch;
    }

    .session-banner {
        align-items: stretch;
    }

    .session-banner__actions {
        width: 100%;
        justify-content: space-between;
    }

    .workspace-sidebar {
        display: none;
    }

    .workspace-main {
        min-width: 0;
    }

    .job-next-panel {
        padding: 20px;
    }

    .job-next-card {
        padding: 16px;
    }

    .site-header {
        padding: 12px 0;
    }

    .site-header__inner {
        width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    }

    .site-nav a,
    .site-nav .site-nav__link,
    .site-login-link,
    .button-register,
    .nav-inline-form {
        flex: 1 1 calc(50% - 10px);
    }

    .site-nav a,
    .site-nav .site-nav__link,
    .site-login-link,
    .button-register,
    .nav-inline-button {
        text-align: center;
    }

    .site-nav .site-nav__link + .site-nav__link::before {
        display: none;
    }

    .public-announcement,
    .site-cta {
        padding: 20px 18px;
        border-radius: 0;
    }

    .maintenance-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .maintenance-card__notes {
        grid-template-columns: 1fr;
    }

    .maintenance-card__signup {
        padding: 18px;
    }

    .bug-report-widget {
        right: 12px;
        bottom: 12px;
        left: auto;
        align-items: flex-end;
    }

    .bug-report-widget__launcher {
        width: auto;
        min-width: 0;
        padding: 10px 14px;
        font-size: 12px;
    }

    .bug-report-widget__panel {
        width: min(320px, calc(100vw - 18px));
    }

    .password-card,
    .thread-card {
        padding: 18px;
        border-radius: 22px;
    }

    .legal-definition-list div {
        grid-template-columns: 1fr;
    }

    .public-announcement__actions .button,
    .site-cta__actions .button {
        width: 100%;
    }
}

/* Shared top-page shell theme */
:root {
    --brand: #3159db;
    --brand-deep: #2548b9;
    --brand-soft: #6d86f2;
    --brand-strong: #2340a4;
    --brand-light: #eef2ff;
    --brand-glow: rgba(49, 89, 219, 0.18);
    --brand-rgb: 49, 89, 219;
    --brand-gradient-strong: linear-gradient(135deg, #3159db 0%, #284bc0 58%, #2340a4 100%);
    --shadow: 0 18px 52px -30px rgba(15, 23, 42, 0.18);
}

body {
    background:
        radial-gradient(circle at top left, rgba(49, 89, 219, 0.1), transparent 28%),
        radial-gradient(circle at top right, rgba(99, 119, 235, 0.08), transparent 26%),
        radial-gradient(circle at bottom center, rgba(189, 198, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fafbff 58%, #f6f8ff 100%);
}

.site-shell {
    width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    padding: 116px 0 0;
}

.site-shell--admin {
    width: min(var(--site-frame-max-admin), calc(100vw - var(--site-frame-gutter)));
}

.site-header--top {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(245, 248, 255, 0.54) 100%);
    backdrop-filter: blur(26px) saturate(165%);
    -webkit-backdrop-filter: blur(26px) saturate(165%);
    box-shadow: 0 24px 48px -36px rgba(15, 23, 42, 0.22);
}

.site-header__inner--top {
    width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    min-height: 54px;
    gap: 16px;
}

.brand--top,
.brand--footer {
    gap: 12px;
}

.brand-mark--top {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--brand-gradient-strong);
    box-shadow:
        0 18px 34px -20px rgba(49, 89, 219, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand--top .brand-copy strong,
.brand--footer .brand-copy strong {
    font-size: 30px;
}

.brand-mark--footer {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #111827;
    box-shadow: none;
}

.brand--footer .brand-copy small {
    display: none;
}

.site-nav--top {
    flex: 1 1 auto;
    justify-content: center;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 248, 255, 0.56) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 42px -34px rgba(49, 89, 219, 0.34);
}

.site-nav--member {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-nav--member::-webkit-scrollbar {
    display: none;
}

.site-nav--member .site-nav__link {
    flex: 0 0 auto;
    white-space: nowrap;
}

.site-nav--top .site-nav__link {
    min-height: 40px;
    padding: 0 17px;
    font-size: 13px;
}

.site-nav__link-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-nav__link--preparing {
    pointer-events: none;
    cursor: default;
    color: rgba(67, 85, 122, 0.96);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(238, 245, 255, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-nav--top .site-nav__status {
    min-height: 22px;
    padding: 0 8px;
    font-size: 10px;
}

.site-nav--top .site-nav__link:hover {
    color: var(--brand-deep);
    box-shadow: 0 14px 28px -24px rgba(49, 89, 219, 0.42);
}

.site-nav--top .site-nav__link--preparing:hover {
    color: rgba(67, 85, 122, 0.96);
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(238, 245, 255, 0.92) 100%);
    box-shadow: none;
    transform: none;
}

.site-nav--top .site-nav__link::after {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-soft) 100%);
}

.site-nav--top .site-nav__link.is-active {
    box-shadow: 0 16px 30px -26px rgba(49, 89, 219, 0.45);
}

.site-nav--top .site-nav__link + .site-nav__link::before {
    background: linear-gradient(180deg, rgba(49, 89, 219, 0.28) 0%, rgba(109, 134, 242, 0.16) 100%);
}

.site-actions--top {
    flex-shrink: 0;
    gap: 10px;
}

.site-login-link--top,
.site-top-primary,
.site-mobile-drawer__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.site-inline-form {
    margin: 0;
}

.site-login-link--top {
    gap: 8px;
    padding: 0 14px;
    color: #4b5563;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-login-link--top:hover,
.site-mobile-drawer__secondary:hover {
    transform: translateY(-1px);
    color: var(--brand-deep);
    border-color: rgba(49, 89, 219, 0.2);
    box-shadow: 0 16px 30px -26px rgba(49, 89, 219, 0.28);
}

.site-login-link--aux {
    background: rgba(238, 244, 255, 0.86);
    color: var(--brand-deep);
}

.site-top-primary {
    padding: 0 20px;
    color: white;
    background: #111827;
    box-shadow: 0 16px 28px -20px rgba(15, 23, 42, 0.62);
}

.site-top-primary.feature-action-button.is-preparing {
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(238, 246, 255, 0.95) 100%);
    color: var(--brand-deep);
    border-color: rgba(64, 115, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 14px 24px -22px rgba(64, 115, 255, 0.42);
}

.site-top-primary:hover,
.site-footer__brand-action:hover {
    transform: translateY(-1px);
    background: #1f2937;
    box-shadow: 0 22px 34px -24px rgba(15, 23, 42, 0.56);
}

.site-theme-toggle,
.site-theme-toggle__copy,
.site-theme-toggle__icons {
    display: inline-flex;
    align-items: center;
}

.site-theme-toggle {
    gap: 10px;
    min-height: 42px;
    padding: 6px 10px 6px 8px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #4b5563;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.site-theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(49, 89, 219, 0.24);
    box-shadow: 0 16px 30px -26px rgba(49, 89, 219, 0.28);
}

.site-theme-toggle__icons {
    position: relative;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.18));
    color: var(--brand-deep);
    overflow: hidden;
}

.site-theme-toggle__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-theme-toggle__icon--moon {
    opacity: 0;
    transform: scale(0.84) translateY(4px);
}

.site-theme-toggle.is-dark .site-theme-toggle__icon--sun {
    opacity: 0;
    transform: scale(0.84) translateY(-4px);
}

.site-theme-toggle.is-dark .site-theme-toggle__icon--moon {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.site-theme-toggle__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
}

.site-theme-toggle__copy strong {
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1.15;
}

.site-theme-toggle__copy small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.2;
}

.site-theme-toggle__switch {
    position: relative;
    flex-shrink: 0;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.28);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.16);
}

.site-theme-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.22);
    transition: transform 180ms ease, background-color 180ms ease;
}

.site-theme-toggle.is-dark .site-theme-toggle__switch {
    background: rgba(49, 89, 219, 0.36);
}

.site-theme-toggle.is-dark .site-theme-toggle__thumb {
    transform: translateX(16px);
    background: #eff6ff;
}

.site-theme-toggle--header .site-theme-toggle__copy strong {
    display: none;
}

.site-theme-toggle--drawer {
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 20px;
}

.site-theme-toggle--drawer .site-theme-toggle__icons {
    width: 36px;
    height: 36px;
}

.site-theme-toggle--drawer .site-theme-toggle__copy strong {
    font-size: 13px;
}

.site-theme-toggle--drawer .site-theme-toggle__copy small {
    font-size: 12px;
}

.site-theme-toggle--drawer .site-theme-toggle__switch {
    margin-left: auto;
}

.site-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(49, 89, 219, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-deep);
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 16px 28px -24px rgba(49, 89, 219, 0.34);
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease;
}

.site-mobile-toggle__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform-origin: center;
    transition:
        opacity 180ms ease,
        transform 220ms ease;
}

.site-mobile-toggle__icon svg {
    overflow: visible;
}

.site-mobile-toggle__icon--menu {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.site-mobile-toggle__icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.82);
}

.site-mobile-toggle.is-open {
    background: rgba(239, 246, 255, 0.98);
    border-color: rgba(49, 89, 219, 0.24);
    color: var(--brand-deep);
}

.home-ranking-list {
    display: grid;
    gap: 12px;
}

.home-ranking-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.96) 100%);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 24px 48px -36px rgba(49, 89, 219, 0.18);
}

.home-ranking-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
}

.home-ranking-panel__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2;
}

.home-ranking-panel__icon {
    flex-shrink: 0;
}

.home-ranking-panel__link {
    flex-shrink: 0;
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.home-ranking-panel__link:hover {
    color: var(--brand);
}

.home-ranking-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
    box-shadow: 0 16px 32px -28px rgba(49, 89, 219, 0.14);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.home-ranking-item:hover {
    transform: translateY(-1px);
    border-color: rgba(49, 89, 219, 0.18);
    box-shadow: 0 20px 40px -30px rgba(49, 89, 219, 0.22);
}

.home-ranking-item--top {
    border-color: rgba(250, 204, 21, 0.34);
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.98) 0%, rgba(255, 247, 214, 0.9) 100%);
}

.home-ranking-item__rank {
    display: grid;
    place-items: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
}

.home-ranking-item__rank--gold {
    background: linear-gradient(180deg, #facc15 0%, #eab308 100%);
    color: #fffdf5;
    box-shadow: 0 12px 20px -16px rgba(234, 179, 8, 0.6);
}

.home-ranking-item__rank--silver {
    background: linear-gradient(180deg, #e5e7eb 0%, #cbd5e1 100%);
    color: #475569;
}

.home-ranking-item__rank--bronze {
    background: linear-gradient(180deg, #fed7aa 0%, #fdba74 100%);
    color: #9a3412;
}

.home-ranking-item__rank--plain {
    background: rgba(241, 245, 249, 0.96);
    color: #64748b;
}

.home-ranking-item__body {
    display: grid;
    gap: 4px;
    min-width: 0;
    align-content: center;
}

.home-ranking-item__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-ranking-item__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.home-ranking-item__amount {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
    text-align: right;
}

.home-ranking-item__amount--top,
.home-ranking-item--top .home-ranking-item__amount-value {
    color: var(--brand);
}

.home-ranking-item__amount-value {
    color: #0f172a;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.home-ranking-item__amount-unit {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.home-ranking-item__note {
    min-width: 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.site-mobile-drawer {
    display: none;
}

body.site-mobile-menu-open {
    overflow: hidden;
}

.site-cta {
    border: 1px solid rgba(49, 89, 219, 0.12);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
        radial-gradient(circle at bottom left, rgba(191, 219, 254, 0.2), transparent 30%),
        var(--brand-gradient-strong);
    box-shadow: 0 28px 58px -40px rgba(49, 89, 219, 0.42);
}

.site-cta__eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.96);
}

.site-cta__body h2 {
    color: white;
}

.site-cta__body p,
.site-cta__body small {
    color: rgba(239, 246, 255, 0.96);
}

.site-cta__button-primary {
    border-color: transparent;
    background: white;
    color: var(--brand);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.site-cta__button-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(17, 24, 39, 0.34);
    color: white;
}

.site-footer--top {
    gap: 32px;
    margin-top: 0;
    padding: 48px 0 32px;
}

.site-footer__grid--top {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.48fr);
    gap: 56px;
    padding: 0;
    border-top: 0;
}

.site-footer__brand--top {
    gap: 20px;
}

.site-footer__brand--top p {
    max-width: 320px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

.site-footer__brand-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: #111827;
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 28px -20px rgba(15, 23, 42, 0.56);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.site-footer__links--top {
    gap: 28px;
}

.site-footer__links--top div {
    gap: 12px;
}

.site-footer__links--top strong {
    color: #111827;
    font-size: 16px;
}

.site-footer__links--top a,
.footer-links--top a,
.site-footer__bottom--top span {
    color: #6b7280;
}

.site-footer__links--top a:hover,
.footer-links--top a:hover {
    color: var(--brand);
}

.site-footer__bottom--top {
    padding: 0 0 8px;
    border-top: 1px solid rgba(229, 231, 235, 0.78);
}

.footer-links--top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links--top a {
    font-size: 12px;
}

@media (max-width: 1080px) {
    .site-footer__grid--top,
    .site-footer__links--top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .site-shell,
    .site-shell--admin {
        width: min(1400px, calc(100vw - var(--site-frame-gutter)));
        padding-top: 108px;
    }

    .site-header__inner--top {
        width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    }

    .site-nav--top,
    .site-actions--top {
        display: none;
    }

    .site-mobile-toggle {
        display: inline-flex;
    }

    .site-mobile-toggle:hover {
        transform: translateY(-1px);
        border-color: rgba(49, 89, 219, 0.22);
        box-shadow: 0 22px 38px -28px rgba(49, 89, 219, 0.38);
    }

    .site-mobile-toggle.is-open .site-mobile-toggle__icon--menu {
        opacity: 0;
        transform: rotate(90deg) scale(0.82);
    }

    .site-mobile-toggle.is-open .site-mobile-toggle__icon--close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .site-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: block;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transition:
            opacity 220ms ease,
            visibility 220ms ease;
    }

    .site-mobile-drawer.is-open {
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }

    .site-mobile-drawer__backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(15, 23, 42, 0.42);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        cursor: pointer;
    }

    .site-mobile-drawer__panel {
        position: relative;
        display: grid;
        gap: 16px;
        width: min(calc(100vw - 20px), 420px);
        max-height: calc(100vh - 32px);
        margin: 16px auto 0;
        padding: 16px;
        overflow: auto;
        border: 1px solid rgba(255, 255, 255, 0.64);
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.96) 100%);
        box-shadow:
            0 44px 80px -48px rgba(15, 23, 42, 0.58),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
        transform: translateY(-18px) scale(0.98);
        transition: transform 220ms ease;
    }

    .site-mobile-drawer.is-open .site-mobile-drawer__panel {
        transform: translateY(0) scale(1);
    }

    .site-mobile-drawer__header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }

    .site-mobile-drawer__title-wrap {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    .site-mobile-drawer__eyebrow {
        display: inline-flex;
        width: fit-content;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(49, 89, 219, 0.08);
        color: var(--brand);
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
    }

    .site-mobile-drawer__title-wrap strong {
        color: #111827;
        font-family: var(--font-display);
        font-size: 20px;
        line-height: 1.2;
    }

    .site-mobile-drawer__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(148, 163, 184, 0.16);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.88);
        color: #111827;
        cursor: pointer;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .site-mobile-drawer__close:hover {
        transform: translateY(-1px);
        border-color: rgba(49, 89, 219, 0.18);
        box-shadow: 0 18px 32px -28px rgba(49, 89, 219, 0.34);
    }

    .site-mobile-drawer__links,
    .site-mobile-drawer__actions {
        display: grid;
        gap: 12px;
    }

    .site-mobile-drawer__group {
        display: grid;
        gap: 10px;
    }

    .site-mobile-drawer__group-title {
        padding: 0 4px;
        color: #64748b;
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.14em;
    }

    .site-mobile-drawer__group-links {
        display: grid;
        gap: 12px;
    }

    .site-mobile-drawer__link,
    .site-mobile-drawer__secondary {
        padding: 14px 16px;
        border-radius: 20px;
        border: 1px solid rgba(148, 163, 184, 0.14);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
        transition:
            transform 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease,
            color 180ms ease;
    }

    .site-mobile-drawer__link:hover,
    .site-mobile-drawer__secondary:hover {
        transform: translateY(-1px);
        border-color: rgba(49, 89, 219, 0.18);
        box-shadow: 0 20px 36px -30px rgba(49, 89, 219, 0.32);
        color: var(--brand-deep);
    }

    .site-mobile-drawer__link.is-active {
        color: var(--brand-deep);
        border-color: rgba(49, 89, 219, 0.18);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 20px 36px -30px rgba(49, 89, 219, 0.32);
    }

    .site-mobile-drawer__link {
        color: #374151;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 700;
    }

    .site-mobile-drawer__link.is-preparing {
        pointer-events: none;
        color: rgba(67, 85, 122, 0.96);
        cursor: default;
        background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(236, 245, 255, 0.95) 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 12px 22px -20px rgba(64, 115, 255, 0.34);
    }

    .site-mobile-drawer__link.is-preparing:hover {
        transform: none;
        border-color: rgba(64, 115, 255, 0.18);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 12px 22px -20px rgba(64, 115, 255, 0.34);
        color: rgba(67, 85, 122, 0.96);
    }

    .site-mobile-drawer__actions .site-top-primary,
    .site-mobile-drawer__actions form,
    .site-mobile-drawer__actions form button,
    .site-mobile-drawer__actions .site-mobile-drawer__secondary,
    .site-mobile-drawer__actions .site-theme-toggle {
        width: 100%;
    }

    .site-mobile-drawer__actions {
        padding-top: 4px;
        border-top: 1px solid rgba(229, 231, 235, 0.72);
    }

    .site-mobile-drawer__actions .site-top-primary {
        min-height: 50px;
    }

    .site-mobile-drawer__secondary {
        min-height: 48px;
    }

    .site-mobile-drawer__panel::-webkit-scrollbar {
        width: 10px;
    }

    .site-mobile-drawer__panel::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(148, 163, 184, 0.4);
    }

    .site-mobile-drawer__panel::-webkit-scrollbar-track {
        background: transparent;
    }

    .site-footer__grid--top {
        gap: 32px;
        padding-top: 0;
    }

    .site-footer__bottom--top,
    .footer-links--top {
        justify-content: flex-start;
    }

    .home-ranking-panel {
        padding: 20px 18px;
    }

    .home-ranking-panel__header {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .home-ranking-panel__title {
        gap: 8px;
        font-size: 17px;
    }

    .home-ranking-panel__link {
        font-size: 11px;
    }

    .home-ranking-list {
        gap: 8px;
    }

    .home-ranking-item {
        align-items: center;
        gap: 10px;
        padding: 12px;
        border-radius: 18px;
    }

    .home-ranking-item__summary {
        gap: 6px;
    }

    .home-ranking-item__rank {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .home-ranking-item__name,
    .home-ranking-item__amount-value {
        font-size: 14px;
        line-height: 1.35;
    }

    .home-ranking-item__amount-unit {
        font-size: 10px;
    }

    .home-ranking-item__note {
        font-size: 10px;
        line-height: 1.4;
    }
}

@media (max-width: 560px) {
    .home-ranking-panel__header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .home-ranking-panel__link {
        white-space: normal;
    }

    .home-ranking-item {
        grid-template-columns: 30px minmax(0, 1fr);
        padding: 11px 10px;
    }

    .home-ranking-item__summary {
        align-items: start;
    }

    .home-ranking-item__body {
        gap: 3px;
    }

    .home-ranking-item__name,
    .home-ranking-item__amount-value {
        font-size: 13px;
    }

    .home-ranking-item__note {
        font-size: 9.5px;
    }
}

.admin-theme-toggle,
.admin-theme-toggle__copy,
.admin-theme-toggle__icons {
    display: inline-flex;
    align-items: center;
}

.admin-theme-toggle {
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.88) 100%);
    color: var(--ink);
    box-shadow: 0 18px 34px -28px rgba(15, 23, 42, 0.26);
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.admin-theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(49, 89, 219, 0.24);
    box-shadow: 0 24px 38px -30px rgba(49, 89, 219, 0.32);
}

.admin-theme-toggle__icons {
    position: relative;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.18));
    color: var(--brand-deep);
    overflow: hidden;
}

.admin-theme-toggle__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.admin-theme-toggle__icon--moon {
    opacity: 0;
    transform: scale(0.84) translateY(4px);
}

.admin-theme-toggle.is-dark .admin-theme-toggle__icon--sun {
    opacity: 0;
    transform: scale(0.84) translateY(-4px);
}

.admin-theme-toggle.is-dark .admin-theme-toggle__icon--moon {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.admin-theme-toggle__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.admin-theme-toggle__copy strong {
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.2;
}

.admin-theme-toggle__copy small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.admin-theme-toggle__switch {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 30px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.28);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.16);
}

.admin-theme-toggle__thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.22);
    transition: transform 180ms ease, background-color 180ms ease;
}

.admin-theme-toggle.is-dark .admin-theme-toggle__switch {
    background: rgba(49, 89, 219, 0.36);
}

.admin-theme-toggle.is-dark .admin-theme-toggle__thumb {
    transform: translateX(22px);
    background: #eff6ff;
}

.auth-theme-toggle-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
}

body.admin-auth-theme {
    --admin-auth-bg:
        radial-gradient(circle at top left, rgba(49, 89, 219, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 22%),
        radial-gradient(circle at bottom center, rgba(109, 134, 242, 0.14), transparent 22%),
        linear-gradient(180deg, #eef4ff 0%, #f6f9ff 54%, #fcfeff 100%);
    --admin-auth-surface: rgba(255, 255, 255, 0.86);
    --admin-auth-surface-strong: rgba(255, 255, 255, 0.94);
    --admin-auth-surface-soft: rgba(244, 248, 255, 0.88);
    --admin-auth-border: rgba(130, 156, 190, 0.2);
    --admin-auth-border-strong: rgba(49, 89, 219, 0.24);
    --admin-auth-ink: #10203a;
    --admin-auth-muted: #5c718f;
    --admin-auth-header: rgba(255, 255, 255, 0.84);
    --admin-auth-header-border: rgba(148, 163, 184, 0.16);
    --admin-auth-nav: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 246, 255, 0.74) 100%);
    --admin-auth-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    --admin-auth-cta:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(191, 219, 254, 0.18), transparent 30%),
        linear-gradient(135deg, #3159db 0%, #284bc0 58%, #2340a4 100%);
    --paper: var(--admin-auth-surface);
    --paper-strong: var(--admin-auth-surface-strong);
    --line: var(--admin-auth-border);
    --ink: var(--admin-auth-ink);
    --muted: var(--admin-auth-muted);
    --brand-light: rgba(49, 89, 219, 0.12);
    background: var(--admin-auth-bg);
    color: var(--admin-auth-ink);
}

html[data-admin-theme="dark"] body.admin-auth-theme {
    --admin-auth-bg:
        radial-gradient(circle at top left, rgba(49, 89, 219, 0.28), transparent 24%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 22%),
        radial-gradient(circle at bottom center, rgba(99, 102, 241, 0.14), transparent 22%),
        linear-gradient(180deg, #071220 0%, #0b1323 52%, #111827 100%);
    --admin-auth-surface: rgba(12, 19, 35, 0.82);
    --admin-auth-surface-strong: rgba(12, 19, 35, 0.94);
    --admin-auth-surface-soft: rgba(15, 23, 42, 0.78);
    --admin-auth-border: rgba(148, 163, 184, 0.16);
    --admin-auth-border-strong: rgba(109, 134, 242, 0.34);
    --admin-auth-ink: #e7eefc;
    --admin-auth-muted: #9fb0c8;
    --admin-auth-header: rgba(6, 17, 31, 0.86);
    --admin-auth-header-border: rgba(148, 163, 184, 0.14);
    --admin-auth-nav: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(17, 24, 39, 0.82) 100%);
    --admin-auth-shadow: 0 26px 56px rgba(2, 8, 23, 0.44);
    --admin-auth-cta:
        radial-gradient(circle at top right, rgba(148, 163, 184, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(49, 89, 219, 0.12), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #13203a 52%, #162648 100%);
}

body.admin-auth-theme .site-header {
    border-bottom-color: var(--admin-auth-header-border);
    background: var(--admin-auth-header);
    box-shadow: var(--admin-auth-shadow);
}

body.admin-auth-theme .brand-copy strong,
body.admin-auth-theme .page-header h1,
body.admin-auth-theme h2,
body.admin-auth-theme h3,
body.admin-auth-theme .button,
body.admin-auth-theme .eyebrow,
body.admin-auth-theme .mini-card strong,
body.admin-auth-theme .flash-banner strong,
body.admin-auth-theme .leaderboard-actions strong,
body.admin-auth-theme .choice-card__body strong,
body.admin-auth-theme .site-footer__links--top strong {
    color: var(--admin-auth-ink);
}

body.admin-auth-theme .brand-copy small,
body.admin-auth-theme .site-nav a,
body.admin-auth-theme .site-login-link--top,
body.admin-auth-theme .site-mobile-toggle,
body.admin-auth-theme .site-mobile-drawer__links a,
body.admin-auth-theme .site-mobile-drawer__secondary,
body.admin-auth-theme .panel p,
body.admin-auth-theme .lead,
body.admin-auth-theme .mini-card p,
body.admin-auth-theme .auth-section-lead,
body.admin-auth-theme .auth-entry-panel__intro,
body.admin-auth-theme .leaderboard-item p,
body.admin-auth-theme .choice-card__body small,
body.admin-auth-theme .flash-banner span,
body.admin-auth-theme .site-footer__links--top a,
body.admin-auth-theme .site-footer__bottom--top span,
body.admin-auth-theme .footer-links--top a {
    color: var(--admin-auth-muted);
}

body.admin-auth-theme .site-nav {
    border-color: var(--admin-auth-header-border);
    background: var(--admin-auth-nav);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 28px -18px rgba(15, 23, 42, 0.24);
}

body.admin-auth-theme .site-nav a:hover,
body.admin-auth-theme .site-nav a.is-active {
    color: var(--admin-auth-ink);
    background: rgba(255, 255, 255, 0.08);
}

body.admin-auth-theme .site-login-link--top,
body.admin-auth-theme .site-mobile-toggle,
body.admin-auth-theme .site-mobile-drawer__links a,
body.admin-auth-theme .site-mobile-drawer__secondary {
    border-color: var(--admin-auth-border);
    background: var(--admin-auth-surface-soft);
}

body.admin-auth-theme .flash-banner {
    border-color: var(--admin-auth-border);
    background: linear-gradient(180deg, var(--admin-auth-surface-strong) 0%, var(--admin-auth-surface) 100%);
    box-shadow: var(--admin-auth-shadow);
}

body.admin-auth-theme .flash-banner-success {
    border-color: var(--admin-auth-border-strong);
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(236, 244, 255, 0.92) 100%);
}

body.admin-auth-theme .flash-banner-error {
    border-color: rgba(255, 139, 101, 0.26);
    background: linear-gradient(180deg, rgba(255, 249, 246, 0.98) 0%, rgba(255, 241, 236, 0.92) 100%);
}

body.admin-auth-theme .flash-banner-warning {
    border-color: rgba(234, 179, 8, 0.24);
    background: linear-gradient(180deg, rgba(255, 252, 241, 0.98) 0%, rgba(255, 247, 214, 0.9) 100%);
}

body.admin-auth-theme .page-header,
body.admin-auth-theme .panel,
body.admin-auth-theme .mini-card,
body.admin-auth-theme .leaderboard-item,
body.admin-auth-theme .note-card,
body.admin-auth-theme .feature-card,
body.admin-auth-theme .voice-card,
body.admin-auth-theme .news-item,
body.admin-auth-theme .job-card,
body.admin-auth-theme .catalog-card,
body.admin-auth-theme .site-footer--top {
    border-color: var(--admin-auth-border);
    background: linear-gradient(180deg, var(--admin-auth-surface-strong) 0%, var(--admin-auth-surface) 100%);
    box-shadow: var(--admin-auth-shadow);
}

body.admin-auth-theme .choice-card__body,
body.admin-auth-theme input[type="text"],
body.admin-auth-theme input[type="email"],
body.admin-auth-theme input[type="password"],
body.admin-auth-theme input[type="url"],
body.admin-auth-theme input[type="number"],
body.admin-auth-theme input[type="datetime-local"],
body.admin-auth-theme select,
body.admin-auth-theme textarea,
body.admin-auth-theme .button:not(.button-primary) {
    border-color: var(--admin-auth-border);
    background: var(--admin-auth-surface-soft);
    color: var(--admin-auth-ink);
}

body.admin-auth-theme input::placeholder,
body.admin-auth-theme textarea::placeholder {
    color: rgba(159, 176, 200, 0.82);
}

body.admin-auth-theme .choice-card input:checked + .choice-card__body,
body.admin-auth-theme .choice-card:hover .choice-card__body {
    border-color: var(--admin-auth-border-strong);
}

body.admin-auth-theme .choice-card input:checked + .choice-card__body {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.16), rgba(99, 119, 235, 0.18));
}

body.admin-auth-theme .text-link,
body.admin-auth-theme .site-footer__links--top a:hover,
body.admin-auth-theme .footer-links--top a:hover {
    color: #bfd0ff;
}

body.admin-auth-theme .site-footer__bottom--top {
    border-top-color: var(--admin-auth-border);
}

body.admin-auth-theme .admin-theme-toggle {
    border-color: var(--admin-auth-border-strong);
    background: linear-gradient(180deg, var(--admin-auth-surface-strong) 0%, var(--admin-auth-surface-soft) 100%);
    color: var(--admin-auth-ink);
    box-shadow: 0 20px 36px -28px rgba(15, 23, 42, 0.18);
}

body.admin-auth-theme .admin-theme-toggle:hover {
    border-color: rgba(49, 89, 219, 0.34);
    box-shadow: 0 26px 42px -32px rgba(49, 89, 219, 0.22);
}

body.admin-auth-theme .admin-theme-toggle__icons {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.14), rgba(109, 134, 242, 0.22));
    color: var(--brand-deep);
}

body.admin-auth-theme .admin-theme-toggle__switch {
    background: rgba(148, 163, 184, 0.2);
}

body.admin-auth-theme .site-cta {
    background: var(--admin-auth-cta);
}

body.admin-auth-theme .site-cta__button-primary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand);
}

html[data-admin-theme="dark"] body.admin-auth-theme h1,
html[data-admin-theme="dark"] body.admin-auth-theme .leaderboard-item strong,
html[data-admin-theme="dark"] body.admin-auth-theme .auth-rank-badge,
html[data-admin-theme="dark"] body.admin-auth-theme .pill {
    color: #e7eefc;
}

html[data-admin-theme="dark"] body.admin-auth-theme .active-form,
html[data-admin-theme="dark"] body.admin-auth-theme .auth-support-card--cta,
html[data-admin-theme="dark"] body.admin-auth-theme .auth-activity-item {
    border-color: var(--admin-auth-border-strong);
    background: linear-gradient(180deg, rgba(20, 31, 52, 0.92) 0%, rgba(12, 19, 35, 0.86) 100%);
    box-shadow: 0 24px 42px rgba(2, 8, 23, 0.32);
}

html[data-admin-theme="dark"] body.admin-auth-theme .auth-rank-badge,
html[data-admin-theme="dark"] body.admin-auth-theme .pill {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.3), rgba(109, 134, 242, 0.24));
}

html[data-admin-theme="dark"] body.admin-auth-theme .pill-soft {
    background: rgba(109, 134, 242, 0.16);
    color: #dfe7ff;
}

html[data-admin-theme="dark"] body.admin-auth-theme .flash-banner-success {
    border-color: rgba(109, 134, 242, 0.34);
    background: linear-gradient(180deg, rgba(20, 31, 52, 0.94) 0%, rgba(12, 19, 35, 0.88) 100%);
}

html[data-admin-theme="dark"] body.admin-auth-theme .flash-banner-error {
    border-color: rgba(255, 139, 101, 0.34);
    background: linear-gradient(180deg, rgba(58, 25, 24, 0.9) 0%, rgba(40, 18, 19, 0.84) 100%);
}

html[data-admin-theme="dark"] body.admin-auth-theme .flash-banner-warning {
    border-color: rgba(234, 179, 8, 0.3);
    background: linear-gradient(180deg, rgba(57, 43, 18, 0.9) 0%, rgba(37, 28, 13, 0.84) 100%);
}

html[data-admin-theme="dark"] body.admin-auth-theme .admin-theme-toggle {
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.92) 0%, rgba(21, 32, 54, 0.86) 100%);
    box-shadow: 0 26px 46px -34px rgba(2, 8, 23, 0.48);
}

html[data-admin-theme="dark"] body.admin-auth-theme .admin-theme-toggle__icons {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.24), rgba(109, 134, 242, 0.3));
    color: #dbe7ff;
}

html[data-admin-theme="dark"] body.admin-auth-theme .admin-theme-toggle__switch {
    background: rgba(148, 163, 184, 0.18);
}

html[data-admin-theme="dark"] body.admin-auth-theme .admin-theme-toggle.is-dark .admin-theme-toggle__switch {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.72), rgba(109, 134, 242, 0.68));
}

html[data-admin-theme="dark"] body.admin-auth-theme .site-cta {
    border-color: rgba(109, 134, 242, 0.18);
    box-shadow: 0 28px 58px -44px rgba(2, 8, 23, 0.62);
}

html[data-admin-theme="dark"] body.admin-auth-theme .site-cta__eyebrow {
    background: rgba(109, 134, 242, 0.18);
    color: #eef4ff;
}

html[data-admin-theme="dark"] body.admin-auth-theme .site-cta__body p,
html[data-admin-theme="dark"] body.admin-auth-theme .site-cta__body small {
    color: rgba(223, 231, 255, 0.9);
}

html[data-admin-theme="dark"] body.admin-auth-theme .site-cta__button-primary {
    border-color: rgba(109, 134, 242, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #eef4ff;
    box-shadow: none;
}

html[data-admin-theme="dark"] body.admin-auth-theme .site-cta__button-secondary {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(10, 15, 28, 0.66);
    color: #eef4ff;
}

html[data-site-theme="dark"] body.site-theme-shell {
    --paper: rgba(12, 19, 35, 0.82);
    --paper-strong: rgba(12, 19, 35, 0.94);
    --line: rgba(148, 163, 184, 0.16);
    --ink: #e7eefc;
    --muted: #9fb0c8;
    --brand-light: rgba(49, 89, 219, 0.14);
    background:
        radial-gradient(circle at top left, rgba(49, 89, 219, 0.24), transparent 28%),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 26%),
        radial-gradient(circle at bottom center, rgba(99, 102, 241, 0.12), transparent 28%),
        linear-gradient(180deg, #071220 0%, #0b1323 52%, #111827 100%);
    color: var(--ink);
}

html[data-site-theme="dark"] body.site-theme-shell .site-header {
    border-bottom-color: rgba(148, 163, 184, 0.12);
    background: linear-gradient(180deg, rgba(6, 17, 31, 0.78) 0%, rgba(8, 18, 34, 0.68) 100%);
    backdrop-filter: blur(26px) saturate(165%);
    -webkit-backdrop-filter: blur(26px) saturate(165%);
    box-shadow: 0 24px 48px -36px rgba(2, 8, 23, 0.54);
}

html[data-site-theme="dark"] body.site-theme-shell .brand-copy strong,
html[data-site-theme="dark"] body.site-theme-shell h1,
html[data-site-theme="dark"] body.site-theme-shell h2,
html[data-site-theme="dark"] body.site-theme-shell h3,
html[data-site-theme="dark"] body.site-theme-shell .button,
html[data-site-theme="dark"] body.site-theme-shell .eyebrow,
html[data-site-theme="dark"] body.site-theme-shell .mini-card strong,
html[data-site-theme="dark"] body.site-theme-shell .flash-banner strong,
html[data-site-theme="dark"] body.site-theme-shell .leaderboard-actions strong,
html[data-site-theme="dark"] body.site-theme-shell .choice-card__body strong,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__links--top strong,
html[data-site-theme="dark"] body.site-theme-shell .page-header__fact strong,
html[data-site-theme="dark"] body.site-theme-shell .workspace-nav__title-row strong,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__title-wrap strong {
    color: var(--ink);
}

html[data-site-theme="dark"] body.site-theme-shell .brand-copy small,
html[data-site-theme="dark"] body.site-theme-shell .site-nav a,
html[data-site-theme="dark"] body.site-theme-shell .site-login-link--top,
html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-toggle,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__links a,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__secondary,
html[data-site-theme="dark"] body.site-theme-shell .panel p,
html[data-site-theme="dark"] body.site-theme-shell .lead,
html[data-site-theme="dark"] body.site-theme-shell .mini-card p,
html[data-site-theme="dark"] body.site-theme-shell .leaderboard-item p,
html[data-site-theme="dark"] body.site-theme-shell .choice-card__body small,
html[data-site-theme="dark"] body.site-theme-shell .flash-banner span,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__links--top a,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__bottom--top span,
html[data-site-theme="dark"] body.site-theme-shell .footer-links--top a,
html[data-site-theme="dark"] body.site-theme-shell .workspace-nav__description,
html[data-site-theme="dark"] body.site-theme-shell .page-header__fact span,
html[data-site-theme="dark"] body.site-theme-shell .page-header__fact small,
html[data-site-theme="dark"] body.site-theme-shell .catalog-card__note,
html[data-site-theme="dark"] body.site-theme-shell .catalog-card__delivery p,
html[data-site-theme="dark"] body.site-theme-shell .request-type-summary__card p,
html[data-site-theme="dark"] body.site-theme-shell input::placeholder,
html[data-site-theme="dark"] body.site-theme-shell textarea::placeholder {
    color: var(--muted);
}

html[data-site-theme="dark"] body.site-theme-shell .site-nav {
    border-color: rgba(148, 163, 184, 0.12);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(17, 24, 39, 0.68) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 28px -18px rgba(2, 8, 23, 0.36);
}

html[data-site-theme="dark"] body.site-theme-shell .site-nav a:hover,
html[data-site-theme="dark"] body.site-theme-shell .site-nav a.is-active,
html[data-site-theme="dark"] body.site-theme-shell .site-nav__link:hover,
html[data-site-theme="dark"] body.site-theme-shell .site-nav__link.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
}

html[data-site-theme="dark"] body.site-theme-shell .site-login-link--top,
html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-toggle,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__panel,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__link,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__secondary,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__close {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.84) 0%, rgba(21, 32, 54, 0.74) 100%);
    color: var(--ink);
}

html[data-site-theme="dark"] body.site-theme-shell .site-login-link--top,
html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 30px -26px rgba(2, 8, 23, 0.4);
}

html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle__icons {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__backdrop {
    background: rgba(2, 8, 23, 0.62);
}

html[data-site-theme="dark"] body.site-theme-shell .page-header,
html[data-site-theme="dark"] body.site-theme-shell .panel,
html[data-site-theme="dark"] body.site-theme-shell .mini-card,
html[data-site-theme="dark"] body.site-theme-shell .leaderboard-item,
html[data-site-theme="dark"] body.site-theme-shell .note-card,
html[data-site-theme="dark"] body.site-theme-shell .feature-card,
html[data-site-theme="dark"] body.site-theme-shell .voice-card,
html[data-site-theme="dark"] body.site-theme-shell .news-item,
html[data-site-theme="dark"] body.site-theme-shell .job-card,
html[data-site-theme="dark"] body.site-theme-shell .catalog-card,
html[data-site-theme="dark"] body.site-theme-shell .site-footer--top,
html[data-site-theme="dark"] body.site-theme-shell .workspace-nav__link,
html[data-site-theme="dark"] body.site-theme-shell .page-header__fact,
html[data-site-theme="dark"] body.site-theme-shell .job-card__stats div,
html[data-site-theme="dark"] body.site-theme-shell .detail-grid div,
html[data-site-theme="dark"] body.site-theme-shell .catalog-card__delivery,
html[data-site-theme="dark"] body.site-theme-shell .request-type-summary__card,
html[data-site-theme="dark"] body.site-theme-shell .workspace-flow-guide,
html[data-site-theme="dark"] body.site-theme-shell .workspace-flow-guide__step,
html[data-site-theme="dark"] body.site-theme-shell .workspace-flow-guide__note,
html[data-site-theme="dark"] body.site-theme-shell .workspace-sidebar,
html[data-site-theme="dark"] body.site-theme-shell .rank-card,
html[data-site-theme="dark"] body.site-theme-shell .flash-banner,
html[data-site-theme="dark"] body.site-theme-shell .session-banner {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.92) 0%, rgba(12, 19, 35, 0.86) 100%);
    box-shadow: 0 26px 56px -38px rgba(2, 8, 23, 0.52);
}

html[data-site-theme="dark"] body.site-theme-shell .choice-card__body,
html[data-site-theme="dark"] body.site-theme-shell input[type="text"],
html[data-site-theme="dark"] body.site-theme-shell input[type="email"],
html[data-site-theme="dark"] body.site-theme-shell input[type="password"],
html[data-site-theme="dark"] body.site-theme-shell input[type="url"],
html[data-site-theme="dark"] body.site-theme-shell input[type="number"],
html[data-site-theme="dark"] body.site-theme-shell input[type="datetime-local"],
html[data-site-theme="dark"] body.site-theme-shell select,
html[data-site-theme="dark"] body.site-theme-shell textarea,
html[data-site-theme="dark"] body.site-theme-shell .button:not(.button-primary):not(.site-top-primary):not(.site-footer__brand-action) {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.78);
    color: var(--ink);
}

html[data-site-theme="dark"] body.site-theme-shell .service-upload,
html[data-site-theme="dark"] body.site-theme-shell .service-upload__selection,
html[data-site-theme="dark"] body.site-theme-shell .service-upload-thumb,
html[data-site-theme="dark"] body.site-theme-shell .service-upload-current,
html[data-site-theme="dark"] body.site-theme-shell .service-upload-existing-card,
html[data-site-theme="dark"] body.site-theme-shell .service-upload-toggle {
    border-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.92) 0%, rgba(12, 19, 35, 0.86) 100%);
    box-shadow: 0 26px 56px -38px rgba(2, 8, 23, 0.52);
}

html[data-site-theme="dark"] body.site-theme-shell .service-upload__icon {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.2), rgba(99, 119, 235, 0.26));
}

html[data-site-theme="dark"] body.site-theme-shell .service-upload__action {
    background: rgba(49, 89, 219, 0.18);
    color: #dbeafe;
}

html[data-site-theme="dark"] body.site-theme-shell .choice-card input:checked + .choice-card__body,
html[data-site-theme="dark"] body.site-theme-shell .choice-card:hover .choice-card__body {
    border-color: rgba(109, 134, 242, 0.34);
}

html[data-site-theme="dark"] body.site-theme-shell .choice-card input:checked + .choice-card__body {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.16), rgba(99, 119, 235, 0.18));
}

html[data-site-theme="dark"] body.site-theme-shell .workspace-nav__icon,
html[data-site-theme="dark"] body.site-theme-shell .page-header__fact-icon,
html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle__icons {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.24), rgba(109, 134, 242, 0.3));
    color: #dbe7ff;
}

html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle__switch {
    background: rgba(148, 163, 184, 0.18);
}

html[data-site-theme="dark"] body.site-theme-shell .site-theme-toggle.is-dark .site-theme-toggle__switch {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.72), rgba(109, 134, 242, 0.68));
}

html[data-site-theme="dark"] body.site-theme-shell .site-top-primary,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__brand-action {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.94), rgba(86, 133, 255, 0.94));
    color: #eef4ff;
    box-shadow: 0 20px 34px -24px rgba(49, 89, 219, 0.42);
}

html[data-site-theme="dark"] body.site-theme-shell .site-top-primary:hover,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__brand-action:hover {
    background: linear-gradient(135deg, rgba(64, 115, 255, 0.96), rgba(99, 119, 235, 0.96));
}

html[data-site-theme="dark"] body.site-theme-shell .site-nav__link--preparing,
html[data-site-theme="dark"] body.site-theme-shell .site-mobile-drawer__link.is-preparing,
html[data-site-theme="dark"] body.site-theme-shell .site-top-primary.feature-action-button.is-preparing {
    border-color: rgba(109, 134, 242, 0.24);
    background: linear-gradient(180deg, rgba(20, 31, 52, 0.94) 0%, rgba(12, 19, 35, 0.9) 100%);
    color: #dbe7ff;
    box-shadow: 0 18px 34px -28px rgba(2, 8, 23, 0.4);
}

html[data-site-theme="dark"] body.site-theme-shell .text-link,
html[data-site-theme="dark"] body.site-theme-shell .site-footer__links--top a:hover,
html[data-site-theme="dark"] body.site-theme-shell .footer-links--top a:hover,
html[data-site-theme="dark"] body.site-theme-shell .home-ranking-panel__link:hover {
    color: #bfd0ff;
}

html[data-site-theme="dark"] body.site-theme-shell .home-ranking-panel__title,
html[data-site-theme="dark"] body.site-theme-shell .home-ranking-item__name,
html[data-site-theme="dark"] body.site-theme-shell .home-ranking-item__amount-value {
    color: #eef4ff;
}

html[data-site-theme="dark"] body.site-theme-shell .home-ranking-panel__link,
html[data-site-theme="dark"] body.site-theme-shell .home-ranking-item__amount-unit,
html[data-site-theme="dark"] body.site-theme-shell .home-ranking-item__note {
    color: #9fb0c8;
}

html[data-site-theme="dark"] body.site-theme-shell .home-ranking-item--top .home-ranking-item__amount-value {
    color: #8fb0ff;
}

html[data-site-theme="dark"] body.site-theme-shell .site-footer__bottom--top {
    border-top-color: rgba(148, 163, 184, 0.16);
}

html[data-site-theme="dark"] body.site-theme-shell .site-cta {
    border-color: rgba(109, 134, 242, 0.18);
    background:
        radial-gradient(circle at top right, rgba(148, 163, 184, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(49, 89, 219, 0.12), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #13203a 52%, #162648 100%);
    box-shadow: 0 28px 58px -44px rgba(2, 8, 23, 0.62);
}

html[data-site-theme="dark"] body.site-theme-shell .site-cta__eyebrow {
    background: rgba(109, 134, 242, 0.18);
    color: #eef4ff;
}

html[data-site-theme="dark"] body.site-theme-shell .site-cta__body p,
html[data-site-theme="dark"] body.site-theme-shell .site-cta__body small {
    color: rgba(223, 231, 255, 0.9);
}

html[data-site-theme="dark"] body.site-theme-shell .site-cta__button-primary {
    border-color: rgba(109, 134, 242, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #eef4ff;
    box-shadow: none;
}

html[data-site-theme="dark"] body.site-theme-shell .site-cta__button-secondary {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(10, 15, 28, 0.66);
    color: #eef4ff;
}

@media (max-width: 960px) {
    :root {
        --site-frame-gutter: 28px;
    }

    .site-shell,
    .site-shell--admin {
        width: min(1400px, calc(100vw - var(--site-frame-gutter)));
        padding-top: 108px;
    }

    .site-header__inner--top {
        width: min(var(--site-frame-max), calc(100vw - var(--site-frame-gutter)));
    }

    .auth-theme-toggle-row .admin-theme-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    .site-theme-toggle--header {
        display: none;
    }
}

.button-small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
}

.workspace-notice-panel__status,
.workspace-notice-list__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.workspace-notice-panel,
.workspace-notice-list,
.workspace-notice-list__body,
.workspace-notice-list__heading,
.home-news-item__body {
    display: grid;
    gap: 14px;
}

.workspace-notice-list {
    gap: 18px;
}

.workspace-notice-search-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.workspace-notice-search-form__main {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.workspace-notice-search-form__label {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.4;
}

.workspace-notice-search-form .news-search-form__field {
    display: flex;
    align-items: stretch;
}

.workspace-notice-search-form .news-search-form__field input,
.workspace-notice-search-form .news-search-form__actions .button {
    min-height: 58px;
}

.workspace-notice-list__summary-layout {
    display: grid;
    gap: 20px;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
}

.workspace-notice-list__summary-layout--text-only {
    grid-template-columns: minmax(0, 1fr);
}

.workspace-notice-list__heading strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.2;
}

.workspace-notice-list__heading p,
.home-news-item p {
    margin: 0;
    color: rgba(71, 85, 105, 0.92);
    line-height: 1.8;
}

.workspace-notice-list__meta,
.home-news-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.workspace-notice-list__card,
.home-news-item,
.news-card {
    border: 1px solid rgba(130, 156, 190, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.92));
    box-shadow: 0 18px 30px rgba(35, 63, 101, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workspace-notice-list__card:hover,
.home-news-item:hover,
.news-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 89, 219, 0.18);
    box-shadow: 0 24px 38px rgba(35, 63, 101, 0.1);
}

.workspace-notice-list__disclosure {
    padding: 22px;
    border-radius: 28px;
    overflow: hidden;
}

.workspace-notice-list__summary {
    display: grid;
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

.workspace-notice-list__summary::marker,
.workspace-notice-list__summary::-webkit-details-marker {
    display: none;
}

.workspace-notice-list__summary-shell {
    display: grid;
    gap: 16px;
}

.workspace-notice-list__summary-main {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.workspace-notice-list__summary-foot {
    display: flex;
    justify-content: flex-start;
}

.workspace-notice-list__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(49, 89, 219, 0.16);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.96));
    color: rgb(49, 89, 219);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.workspace-notice-list__toggle::before {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(49, 89, 219, 0.12);
    color: rgb(49, 89, 219);
    font-size: 16px;
    line-height: 1;
}

.workspace-notice-list__disclosure:hover .workspace-notice-list__toggle {
    border-color: rgba(49, 89, 219, 0.24);
    box-shadow: 0 10px 20px rgba(49, 89, 219, 0.1);
}

.workspace-notice-list__disclosure[open] .workspace-notice-list__toggle::before {
    content: '-';
}

.workspace-notice-list__disclosure[open] .workspace-notice-list__toggle {
    background: linear-gradient(135deg, rgba(49, 89, 219, 0.12), rgba(109, 134, 242, 0.08));
}

.workspace-notice-list__body {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.workspace-notice-list__actions {
    justify-content: flex-start;
}

.workspace-notice-list__disclosure[open] {
    border-color: rgba(49, 89, 219, 0.18);
    box-shadow: 0 24px 38px rgba(35, 63, 101, 0.1);
}

.workspace-notice-media,
.workspace-notice-list__thumb,
.news-card__thumb,
.news-feature-card__media,
.home-news-item__media,
.news-detail-card__eyecatch {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(130, 156, 190, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.workspace-notice-media img,
.workspace-notice-list__thumb img,
.news-card__thumb img,
.news-feature-card__media img,
.home-news-item__media img,
.news-detail-card__eyecatch img {
    display: block;
    width: 100%;
    height: auto;
}

.workspace-notice-media figcaption,
.workspace-notice-gallery__item figcaption,
.news-detail-card__eyecatch figcaption {
    padding: 10px 14px 14px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.workspace-notice-content {
    display: grid;
    gap: 14px;
}

.workspace-notice-content > :first-child {
    margin-top: 0;
}

.workspace-notice-content > :last-child {
    margin-bottom: 0;
}

.workspace-notice-content a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.news-title-link {
    color: inherit;
    text-decoration: none;
}

.news-title-link:hover {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.workspace-notice-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.workspace-notice-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
}

.workspace-notice-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.workspace-notice-list__thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-news-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    color: inherit;
    text-decoration: none;
}

.home-news-item.is-text-only {
    grid-template-columns: minmax(0, 1fr);
}

.home-news-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-news-item h4 {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.55;
}

.home-news-item__media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-news-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.home-news-item__cta::after {
    content: '→';
    font-size: 0.9em;
}

.notice-empty-card {
    padding: 22px 24px;
    border: 1px dashed rgba(130, 156, 190, 0.26);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(247, 250, 255, 0.96), rgba(255, 255, 255, 0.94));
    box-shadow: 0 18px 30px rgba(35, 63, 101, 0.05);
}

.news-page-shell {
    display: grid;
    gap: 24px;
}

.news-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    background: rgba(255, 255, 255, 0.92);
}

.news-search-form__field {
    display: block;
}

.news-search-form__field input {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(130, 156, 190, 0.22);
    background: rgba(244, 247, 255, 0.88);
    font: inherit;
    color: inherit;
}

.news-search-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: stretch;
}

.news-search-form__actions .button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.workspace-notice-search-form .news-search-form__actions .button {
    min-width: 148px;
}

.news-hero {
    display: grid;
    gap: 12px;
}

.news-feature-card,
.news-detail-layout {
    display: grid;
    gap: 24px;
}

.news-feature-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    padding: 28px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.92));
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
}

.news-feature-card__body,
.news-card__body,
.news-detail-card {
    display: grid;
    gap: 16px;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.news-card {
    overflow: hidden;
}

.news-card__thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-detail-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.7fr);
    align-items: start;
}

.news-detail-card__body {
    color: rgba(51, 65, 85, 0.95);
    line-height: 1.9;
}

.news-detail-card--specialty .section-heading > div {
    min-width: 0;
    max-width: 100%;
}

.news-detail-card--specialty .section-heading h1 {
    margin: 0;
    font-size: clamp(36px, 4.8vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: pretty;
    overflow-wrap: normal;
}

.news-share-bar {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(130, 156, 190, 0.16);
    background: rgba(245, 248, 255, 0.82);
}

.news-share-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.news-share-button:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.news-share-button.is-x {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.news-share-button.is-facebook {
    background: linear-gradient(135deg, #2563eb, #3159DB);
}

.news-share-button.is-line {
    background: linear-gradient(135deg, #06c755, #14b86b);
}

.news-share-button.is-copy {
    background: linear-gradient(135deg, #7c8eb5, #5b6d88);
}

.news-aside {
    display: grid;
    gap: 18px;
}

@media (max-width: 1080px) {
    .workspace-notice-list__summary-layout,
    .news-feature-card,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .workspace-notice-list__disclosure,
    .home-news-item {
        padding: 18px;
        border-radius: 22px;
    }

    .workspace-notice-search-form {
        grid-template-columns: 1fr;
    }

    .home-news-item {
        grid-template-columns: 1fr;
    }

    .news-detail-card--specialty .section-heading h1 {
        font-size: clamp(30px, 10vw, 46px);
    }

    .news-search-form {
        grid-template-columns: 1fr;
    }

    .news-search-form__actions {
        justify-content: stretch;
    }

    .news-search-form__actions .button {
        width: 100%;
    }

    .news-share-bar__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .news-share-button {
        width: 100%;
    }

    .workspace-notice-panel__status,
    .workspace-notice-list__actions {
        justify-content: flex-start;
    }
}
