:root {
    --paper: #f5f1e8;
    --paper-light: #fbfaf6;
    --ink: #17221d;
    --muted: #657069;
    --line: #d7d2c8;
    --accent: #315c47;
    --accent-dark: #244735;
    --warm: #c86d42;
    --danger: #9f342d;
    --danger-soft: #f8e5e1;
    --success-soft: #dfece3;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(23, 34, 29, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid #d58b65;
    outline-offset: 3px;
}

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: white;
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell,
.site-header,
.site-footer,
.admin-bar,
.admin-shell {
    width: min(100% - 2rem, 1160px);
    margin-inline: auto;
}

.site-header,
.admin-bar {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.wordmark span {
    color: var(--warm);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--ink);
}

.hero {
    padding-block: clamp(5rem, 13vw, 10rem) clamp(4.5rem, 9vw, 7rem);
}

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1,
.auth-card h1,
.admin-heading h1,
.error-page h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(3.25rem, 10vw, 7.8rem);
}

.hero h1 em {
    color: var(--warm);
    font-weight: 400;
}

.hero__intro {
    max-width: 650px;
    margin: 2.25rem 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.issue-preview {
    padding-block: 3.5rem;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: grid;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.section-heading .eyebrow {
    margin-bottom: 0.5rem;
}

.section-heading h2,
.primary-task h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.empty-state {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.4rem, 4vw, 2.5rem);
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.empty-state p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.empty-state .empty-state__label {
    margin-bottom: 0.45rem;
    color: var(--ink);
    font-weight: 750;
}

.latest-issue {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    padding: clamp(1.5rem, 5vw, 3rem);
    color: white;
    background: var(--accent);
    border-radius: var(--radius);
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.latest-issue:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.latest-issue__meta {
    margin: 0 0 1rem;
    color: #cde0d4;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.latest-issue ol {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.4rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.3;
}

.latest-issue__action {
    font-weight: 750;
    white-space: nowrap;
}

.latest-issue__action span {
    display: inline-block;
    margin-left: 0.35rem;
    transition: transform 160ms ease;
}

.latest-issue:hover .latest-issue__action span {
    transform: translateX(4px);
}

.demo-note {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.status-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 30px;
    padding: 0.3rem 0.7rem;
    color: var(--accent-dark);
    background: #e2e8dc;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 750;
    white-space: nowrap;
}

.status-badge--success {
    background: var(--success-soft);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-block: 2.5rem 7rem;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.principles article {
    padding: 2rem;
    background: var(--paper-light);
}

.principles article > span {
    color: var(--warm);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
}

.principles h2 {
    margin: 2.5rem 0 0.6rem;
    font-size: 1.1rem;
}

.principles p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 2rem 3rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--muted);
    font-weight: 650;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ink);
}

.archive-hero {
    padding-block: clamp(4rem, 10vw, 8rem) clamp(3.5rem, 7vw, 5.5rem);
}

.archive-hero h1,
.research-issue__header h1 {
    max-width: 980px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.1rem, 8vw, 6.8rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.archive-hero h1 em {
    color: var(--warm);
    font-weight: 400;
}

.archive-hero > p:last-child {
    max-width: 650px;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.demo-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    color: #5d301d;
    background: #f4dfd2;
    border: 1px solid #e2bda7;
    border-radius: 12px;
}

.demo-banner strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.demo-banner--inline {
    width: 100%;
    margin: 2rem 0 0;
}

.archive-list {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.archive-list__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ink);
}

.archive-list__heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.archive-list__heading span {
    color: var(--muted);
    font-size: 0.85rem;
}

.archive-issue {
    border-bottom: 1px solid var(--line);
}

.archive-issue > a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
    padding-block: clamp(2rem, 5vw, 3.5rem);
    text-decoration: none;
}

.archive-issue > a:hover h3,
.archive-issue > a:hover .archive-issue__arrow {
    color: var(--warm);
}

.archive-issue__date {
    display: grid;
    gap: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.archive-issue__date span:first-child {
    color: var(--ink);
    font-weight: 750;
}

.archive-issue__content h3 {
    margin: 0 0 1.25rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.12;
    transition: color 140ms ease;
}

.archive-issue__content ol {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.archive-issue__arrow {
    color: var(--accent);
    font-size: 1.6rem;
    line-height: 1;
    transition: color 140ms ease, transform 140ms ease;
}

.archive-issue > a:hover .archive-issue__arrow {
    transform: translateX(4px);
}

.research-issue {
    width: min(100% - 2rem, 1040px);
    padding-block: 2rem 7rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.breadcrumbs a:hover {
    color: var(--ink);
}

.research-issue__header {
    padding-block: clamp(4rem, 10vw, 8rem) clamp(3rem, 7vw, 5rem);
}

.research-issue__header h1 {
    max-width: 920px;
    font-size: clamp(3rem, 7vw, 6.2rem);
}

.research-issue__meta {
    margin: 2rem 0 0;
    color: var(--muted);
}

.research-items {
    border-top: 1px solid var(--ink);
}

.research-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    padding-block: clamp(3.5rem, 8vw, 6rem);
    border-bottom: 1px solid var(--line);
}

.research-item__number {
    padding-top: 0.35rem;
    color: var(--warm);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.research-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.research-item__tags span {
    padding: 0.25rem 0.55rem;
    color: var(--muted);
    background: #eae6dc;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.research-item h2 {
    max-width: 800px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.7rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.research-item__finding {
    max-width: 780px;
    margin: 1.5rem 0 2.25rem;
    color: #354039;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.better-boss-box {
    max-width: 820px;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #e1e9df;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

.better-boss-box h3,
.evidence-grid h3 {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.better-boss-box p,
.evidence-grid p {
    margin: 0;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 820px;
    margin-top: 2.5rem;
}

.evidence-grid > div {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.evidence-grid p {
    color: var(--muted);
    font-size: 0.92rem;
}

.research-item__footer {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 1rem;
    align-items: stretch;
    max-width: 820px;
    margin-top: 2.5rem;
}

.verdict,
.source-link {
    padding: 1.15rem;
    border-radius: 12px;
}

.verdict {
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.verdict > span {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
}

.verdict strong {
    display: block;
    margin: 0.15rem 0 0.25rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.verdict--skip strong {
    color: var(--danger);
}

.verdict p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.source-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background: var(--ink);
    font-weight: 750;
    text-decoration: none;
}

.source-link:hover {
    background: var(--accent-dark);
}

.source-link small {
    display: block;
    margin-top: 0.35rem;
    color: #b7c0bb;
    font-size: 0.72rem;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.method-note {
    max-width: 760px;
    margin: 5rem 0 0 82px;
}

.method-note h2 {
    margin: 0 0 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.method-note p {
    margin: 0;
    color: var(--muted);
}

.auth-shell {
    min-height: calc(100vh - 80px);
    display: grid;
    place-items: center;
    padding: 3rem 1rem 6rem;
}

.setup-shell {
    width: min(100% - 2rem, 760px);
    margin-inline: auto;
    padding-block: clamp(3rem, 8vw, 6rem);
}

.setup-card {
    padding: clamp(1.5rem, 5vw, 3rem);
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.setup-card h1 {
    max-width: 620px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
}

.setup-intro {
    max-width: 620px;
    margin: 1rem 0 2rem;
    color: var(--muted);
}

.setup-form {
    gap: 1.5rem;
}

.setup-form fieldset {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.setup-form legend {
    padding-inline: 0.35rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.setup-form fieldset label:first-of-type {
    margin-top: 0;
}

.field-hint {
    margin: 0 0 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.setup-success {
    margin-block: 1.5rem;
    padding: 1rem;
    color: var(--accent-dark);
    background: var(--success-soft);
    border-radius: 10px;
}

.auth-card {
    width: min(100%, 480px);
    padding: clamp(1.5rem, 5vw, 3rem);
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-card h1,
.admin-heading h1,
.error-page h1 {
    font-size: clamp(2.5rem, 7vw, 4.25rem);
}

.auth-card__intro {
    margin: 1rem 0 2rem;
    color: var(--muted);
}

.stack-form {
    display: grid;
    gap: 0.65rem;
}

.stack-form label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 750;
}

.stack-form input {
    width: 100%;
    min-height: 52px;
    padding: 0.7rem 0.85rem;
    color: var(--ink);
    background: white;
    border: 1px solid #bcb9b1;
    border-radius: 10px;
}

.stack-form input:hover {
    border-color: var(--muted);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    color: white;
    background: var(--accent);
    border: 0;
    border-radius: 10px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.primary-button:hover {
    background: var(--accent-dark);
}

.alert {
    margin-bottom: 1.25rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
}

.alert--error {
    color: #6e211c;
    background: var(--danger-soft);
    border: 1px solid #e9b8b0;
}

.alert--success {
    color: var(--accent-dark);
    background: var(--success-soft);
    border: 1px solid #b9d1c0;
}

.alert--info {
    color: #5d301d;
    background: #f4dfd2;
    border: 1px solid #e2bda7;
}

.admin-bar {
    width: min(100% - 2rem, 1240px);
}

.admin-bar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-identity {
    color: var(--muted);
    font-size: 0.85rem;
}

.admin-bar form {
    margin: 0;
}

.text-button {
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 0.85rem;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.admin-shell {
    width: min(100% - 2rem, 1240px);
    padding-block: clamp(3rem, 8vw, 6rem);
}

.admin-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-heading .eyebrow {
    margin-bottom: 0.75rem;
}

.primary-task {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.25rem;
    padding: clamp(1.5rem, 5vw, 3rem);
    color: white;
    background: var(--accent);
    border-radius: var(--radius);
}

.primary-task__meta {
    margin: 0 0 1rem;
    color: #cde0d4;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.primary-task p:last-child {
    max-width: 650px;
    margin: 1rem 0 0;
    color: #dceae1;
}

.primary-task__content {
    width: min(100%, 720px);
}

.primary-task__content > p:not(.primary-task__meta) {
    max-width: 650px;
    margin: 1rem 0 0;
    color: #dceae1;
}

.manual-run-form {
    display: grid;
    justify-items: start;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.confirmation-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.65rem;
    max-width: 620px;
    color: white;
    cursor: pointer;
}

.confirmation-control input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    accent-color: var(--warm);
}

.admin-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 0.35rem;
    padding: 0.7rem 1.1rem;
    color: var(--accent-dark);
    background: white;
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.admin-primary-button:hover {
    color: white;
    background: var(--warm);
}

.manual-run-form small {
    color: #cde0d4;
}

.research-loading[hidden] {
    display: none;
}

.research-loading {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(23, 34, 29, 0.84);
    backdrop-filter: blur(8px);
}

.research-loading__card {
    width: min(100%, 560px);
    padding: clamp(2rem, 7vw, 4rem);
    color: var(--ink);
    background: var(--paper-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.research-loading__spinner {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 1.5rem;
    border: 5px solid #d9e3dc;
    border-top-color: var(--warm);
    border-radius: 50%;
    animation: research-spin 850ms linear infinite;
}

.research-loading__eyebrow {
    margin: 0 0 0.65rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.research-loading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.research-loading__card > p:last-child {
    max-width: 440px;
    margin: 1.25rem auto 0;
    color: var(--muted);
}

.research-is-loading {
    overflow: hidden;
}

@keyframes research-spin {
    to {
        transform: rotate(360deg);
    }
}

.primary-task__number {
    color: #9bb8a8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.8;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.admin-card {
    min-height: 220px;
    padding: 1.75rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-card__value {
    margin: 0 0 2.5rem;
    color: var(--warm);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    line-height: 1;
}

.admin-card h2 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.admin-card p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.private-preview-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    color: var(--accent-dark);
    background: var(--success-soft);
    border: 1px solid #b9d1c0;
    border-radius: 12px;
}

.private-preview-banner p {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
}

.private-preview-banner a {
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 750;
}

.error-page {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 5rem;
}

.error-code {
    margin: 0 0 1rem;
    color: var(--warm);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.error-page > p:not(.error-code) {
    max-width: 560px;
    color: var(--muted);
}

.debug-detail {
    max-width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    overflow-wrap: anywhere;
    background: var(--danger-soft);
    border-radius: 8px;
    font-family: ui-monospace, monospace;
    font-size: 0.82rem;
}

@media (max-width: 760px) {
    .empty-state,
    .site-footer,
    .admin-heading,
    .private-preview-banner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .latest-issue,
    .archive-issue > a,
    .research-item__footer,
    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .latest-issue {
        align-items: start;
    }

    .archive-issue > a {
        gap: 1.25rem;
    }

    .archive-issue__arrow {
        display: none;
    }

    .demo-banner {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .research-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .method-note {
        margin-left: 0;
    }

    .principles h2 {
        margin-top: 1.5rem;
    }

    .admin-identity {
        display: none;
    }

    .primary-task {
        align-items: flex-start;
    }

    .primary-task__number {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .research-loading__spinner {
        animation: none;
        border-color: var(--warm);
    }
}
