/* Ocalt (Pty) Ltd — ocalt.com master stylesheet */

/* Fonts: paths match the naybar.com/font/ structure so the folder copies cleanly */
@font-face { font-family: 'AR One Sans'; src: url('/font/AROneSans-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'AR One Sans'; src: url('/font/AROneSans-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'AR One Sans'; src: url('/font/AROneSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'AR One Sans'; src: url('/font/AROneSans-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

@font-face { font-family: 'Rubik'; src: url('/font/Rubik-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('/font/Rubik-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('/font/Rubik-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('/font/Rubik-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

@font-face { font-family: 'Uber Move Text'; src: url('/font/UberMoveTextLight.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Uber Move Text'; src: url('/font/UberMoveTextRegular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Uber Move Text'; src: url('/font/UberMoveTextMedium.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Uber Move Text'; src: url('/font/UberMoveTextBold.otf') format('opentype'); font-weight: 700; font-display: swap; }

/* Product Sans. If files are not on the server, the stack falls back to Uber Move Text for UI. */
@font-face { font-family: 'Product Sans'; src: url('/font/ProductSans-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Product Sans'; src: url('/font/ProductSans-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Product Sans'; src: url('/font/ProductSans-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
    --font-wordmark: 'AR One Sans', ui-sans-serif, system-ui, sans-serif;
    --font-display:  'Uber Move Text', ui-sans-serif, system-ui, sans-serif;
    --font-ui:       'Product Sans', 'Uber Move Text', ui-sans-serif, system-ui, sans-serif;
    --font-body:     'Rubik', ui-sans-serif, system-ui, sans-serif;

    --ink:       #0a0a0a;
    --bg:        #ffffff;
    --muted:     #6b6b6b;
    --hairline:  #e6e6e6;
    --surface:   #f5f5f5;
    --overlay:   rgba(255, 255, 255, 0.82);

    --max:       1240px;
    --gutter:    clamp(1.25rem, 4vw, 3rem);

    color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink:       #f2f2f2;
        --bg:        #0a0a0a;
        --muted:     #8a8a8a;
        --hairline:  #1f1f1f;
        --surface:   #141414;
        --overlay:   rgba(10, 10, 10, 0.82);
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100svh;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* Header */
header.site {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem var(--gutter);
    background: var(--overlay);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--hairline);
}
.brand {
    display: inline-flex; align-items: center; gap: 0.625rem;
    font-family: var(--font-wordmark);
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand img {
    width: 26px; height: 26px; border-radius: 6px;
}
.switcher-toggle {
    width: 20px; height: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    padding: 0;
    transition: opacity 120ms ease;
}
.switcher-toggle span { display: block; background: var(--ink); border-radius: 1px; }
.switcher-toggle:hover { opacity: 0.6; }

/* Switcher panel (rhythm grid) */
.switcher-panel {
    position: fixed; inset: 0; z-index: 100;
    background: var(--bg);
    display: none; flex-direction: column;
    overflow-y: auto;
}
.switcher-panel.open { display: flex; }
.switcher-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--hairline);
    position: sticky; top: 0;
    background: var(--overlay);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
}
.switcher-close {
    font-family: var(--font-ui);
    font-size: 0.9375rem; font-weight: 500;
    padding: 0.5rem 1rem; margin-right: -1rem;
}
.switcher-close:hover { opacity: 0.6; }

.rhythm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--hairline);
}
.rhythm-tile {
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 2.75rem var(--gutter);
    min-height: 220px;
    background: var(--bg);
    transition: background 120ms ease;
}
.rhythm-tile[data-span="2"] { grid-column: 1 / -1; min-height: 260px; }
.rhythm-tile:hover { background: var(--surface); }
.rhythm-tile[aria-current="page"] { background: var(--surface); }
.rhythm-tile .name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.625rem, 2.6vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.rhythm-tile[data-span="2"] .name {
    font-size: clamp(2rem, 3.2vw, 3rem);
}
.rhythm-tile .status {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 1.25rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    letter-spacing: 0.02em;
}
.rhythm-tile .status::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--muted);
}
.rhythm-tile[data-state="install"] .status,
.rhythm-tile[data-state="visit"] .status { color: var(--ink); }
.rhythm-tile[data-state="install"] .status::before,
.rhythm-tile[data-state="visit"] .status::before { background: var(--ink); }

/* Home hero */
.hero {
    padding: clamp(4.5rem, 13vh, 11rem) var(--gutter) clamp(3rem, 9vh, 7rem);
    max-width: var(--max); margin: 0 auto;
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--muted);
}
.hero p {
    font-size: clamp(1.0625rem, 1.7vw, 1.375rem);
    line-height: 1.45;
    max-width: 46rem;
}

/* Mobile inline ecosystem grid (home) */
.mobile-grid {
    display: none;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.mobile-grid a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem var(--gutter);
    border-bottom: 1px solid var(--hairline);
    min-height: 64px;
}
.mobile-grid a:last-child { border-bottom: 0; }
.mobile-grid .name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1875rem;
    letter-spacing: -0.01em;
}
.mobile-grid .status {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--muted);
}
.mobile-grid { display: none; }

/* Services + quote form */
.services {
    padding: clamp(4.5rem, 11vh, 9rem) var(--gutter);
    max-width: var(--max); margin: 0 auto;
}
.services h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: clamp(1.25rem, 3vh, 2rem);
    max-width: 26ch;
}
.services > p {
    font-size: clamp(1rem, 1.45vw, 1.125rem);
    line-height: 1.55;
    max-width: 44rem;
    color: var(--muted);
    margin-bottom: clamp(1.5rem, 5vh, 3rem);
}
.scope-line {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--ink) !important;
    margin-bottom: clamp(2.5rem, 6vh, 4rem) !important;
    letter-spacing: -0.01em;
}
.quote {
    padding-top: clamp(2rem, 5vh, 3rem);
    border-top: 1px solid var(--hairline);
}
.quote h3 {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
}
.quote form { display: grid; gap: 1.25rem; max-width: 36rem; margin-bottom: 2rem; }
.quote label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.quote input[type="text"],
.quote input[type="email"],
.quote textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 0.625rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color 150ms ease;
}
.quote input:focus, .quote textarea:focus { border-color: var(--ink); }
.quote textarea { min-height: 6rem; resize: vertical; line-height: 1.5; }
.radio-group { display: flex; gap: 2rem; align-items: center; padding: 0.25rem 0; }
.radio-group .radio-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin: 0; color: var(--ink); font-size: 0.9375rem; cursor: pointer;
    font-family: var(--font-body); letter-spacing: 0; text-transform: none;
}
.radio-group input[type="radio"] {
    appearance: none; -webkit-appearance: none;
    width: 14px; height: 14px;
    border: 1px solid var(--muted); border-radius: 50%;
    cursor: pointer; position: relative; margin: 0;
}
.radio-group input[type="radio"]:checked { border-color: var(--ink); }
.radio-group input[type="radio"]:checked::after {
    content: ''; position: absolute; inset: 3px; border-radius: 50%;
    background: var(--ink);
}
.quote button[type="submit"] {
    justify-self: start;
    padding: 0.875rem 1.75rem;
    background: var(--ink); color: var(--bg);
    font-family: var(--font-ui); font-weight: 500; font-size: 0.9375rem;
    border-radius: 999px; letter-spacing: 0.01em;
    transition: opacity 150ms ease;
    margin-top: 0.5rem;
}
.quote button[type="submit"]:hover { opacity: 0.82; }
.whatsapp { font-family: var(--font-ui); font-size: 0.9375rem; color: var(--muted); }
.whatsapp a { color: var(--ink); border-bottom: 1px solid var(--hairline); padding-bottom: 2px; transition: border-color 150ms ease; }
.whatsapp a:hover { border-color: var(--ink); }

/* Flash messages */
.flash {
    padding: 1rem var(--gutter);
    background: var(--surface);
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--hairline);
    text-align: center;
}

/* Product page */
.product-hero {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(4rem, 10vh, 8rem) var(--gutter) clamp(2rem, 5vh, 4rem);
    text-align: center;
}
.product-kicker {
    font-family: var(--font-ui);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.product-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: clamp(1rem, 2.5vh, 1.75rem);
}
.product-hero .tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.4;
    max-width: 44rem;
    margin: 0 auto;
    color: var(--muted);
}
.product-visual {
    width: 100%;
    max-width: 920px;
    aspect-ratio: 16 / 10;
    background: var(--surface) center / cover no-repeat;
    border-radius: clamp(20px, 3vw, 36px);
    border: 1px solid var(--hairline);
    margin: clamp(3rem, 7vh, 5rem) auto clamp(2.5rem, 6vh, 4rem);
    overflow: hidden;
}
.cta-wrap { display: flex; justify-content: center; }
.primary-btn {
    display: inline-block;
    padding: 1.0625rem 2.75rem;
    background: var(--ink); color: var(--bg);
    font-family: var(--font-ui); font-weight: 500; font-size: 1rem;
    border-radius: 999px; letter-spacing: 0.01em;
    transition: opacity 150ms ease, transform 150ms ease;
    cursor: pointer;
}
.primary-btn:hover { opacity: 0.85; }
.primary-btn:active { transform: translateY(1px); }
.primary-btn.disabled {
    background: transparent; color: var(--muted);
    border: 1px solid var(--hairline);
    cursor: not-allowed; pointer-events: none;
}
.product-details {
    max-width: 660px;
    margin: clamp(3rem, 8vh, 5rem) auto 0;
    padding: clamp(3rem, 8vh, 5rem) var(--gutter) clamp(5rem, 12vh, 10rem);
    border-top: 1px solid var(--hairline);
}
.product-details p {
    font-size: 1.0625rem; line-height: 1.65; color: var(--ink);
    margin-bottom: 1.25rem;
}
.product-details p:last-child { margin-bottom: 0; }

/* Generic prose page (About, Terms, Policy, Updates entry) */
.prose {
    max-width: 760px; margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) var(--gutter) clamp(5rem, 12vh, 9rem);
}
.prose .kicker {
    font-family: var(--font-ui);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.prose h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}
.prose .deck {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 42rem;
}
.prose h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    margin: 3rem 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.prose h3 {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 1rem;
    margin: 2rem 0 0.5rem;
    letter-spacing: 0.02em;
}
.prose p { margin-bottom: 1.25rem; line-height: 1.65; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.55; }
.prose a {
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 1px;
    transition: border-color 150ms ease;
}
.prose a:hover { border-color: var(--ink); }
.prose .meta {
    font-family: var(--font-ui); font-size: 0.875rem; color: var(--muted);
    margin-bottom: 2.5rem;
}

/* Updates index */
.updates-list {
    max-width: 860px; margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) var(--gutter) clamp(5rem, 12vh, 9rem);
}
.updates-list .kicker {
    font-family: var(--font-ui); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 1.25rem;
}
.updates-list > h1 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1;
    letter-spacing: -0.035em; margin-bottom: 1rem;
}
.updates-list > .deck {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--muted); max-width: 42rem;
    margin-bottom: 3rem; line-height: 1.5;
}
.update-item {
    display: block;
    padding: 2rem 0;
    border-top: 1px solid var(--hairline);
    transition: opacity 150ms ease;
}
.update-item:last-child { border-bottom: 1px solid var(--hairline); }
.update-item:hover { opacity: 0.7; }
.update-item .type {
    font-family: var(--font-ui);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.update-item h3 {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.375rem, 2.2vw, 1.75rem);
    letter-spacing: -0.02em; line-height: 1.2;
    margin-bottom: 0.5rem;
}
.update-item p {
    color: var(--muted); max-width: 46rem; font-size: 1rem;
}
.update-item .date {
    font-family: var(--font-ui);
    font-size: 0.8125rem; color: var(--muted);
    margin-top: 0.5rem;
}
.empty-state {
    padding: 4rem 0; text-align: center;
    color: var(--muted); font-family: var(--font-ui);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

/* Sitemap page */
.sitemap-grid {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) var(--gutter) clamp(5rem, 12vh, 9rem);
}
.sitemap-section { margin-bottom: 3.5rem; }
.sitemap-section h2 {
    font-family: var(--font-ui);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.sitemap-section ul { list-style: none; }
.sitemap-section li { margin-bottom: 0.5rem; }
.sitemap-section a {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.sitemap-section a:hover { color: var(--muted); }

/* Footer */
footer.site {
    border-top: 1px solid var(--hairline);
    padding: clamp(3rem, 8vh, 5rem) var(--gutter) 2rem;
    font-family: var(--font-ui);
    background: var(--bg);
}
.footer-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
}
.footer-brand .brand { font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand .tag {
    font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 1rem;
}
.footer-brand .tag em { font-style: italic; color: var(--muted); }
.footer-brand p {
    font-family: var(--font-body); color: var(--muted);
    font-size: 0.9375rem; max-width: 30rem; line-height: 1.55;
}
.footer-col h4 {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.125rem;
}
.footer-col a {
    display: block;
    font-size: 0.9375rem; color: var(--ink);
    padding: 0.3125rem 0;
    transition: color 120ms ease;
}
.footer-col a:hover { color: var(--muted); }
.footer-legal {
    max-width: var(--max); margin: clamp(3rem, 6vh, 4rem) auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
    font-size: 0.8125rem; color: var(--muted);
}
@media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; margin-bottom: 1rem; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Admin */
.admin-wrap {
    max-width: 960px; margin: 0 auto;
    padding: 3rem var(--gutter);
}
.admin-wrap h1 {
    font-family: var(--font-display);
    font-size: 2.25rem; font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.admin-wrap h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 500;
    letter-spacing: -0.01em;
    margin: 2.5rem 0 1rem;
}
.admin-nav {
    display: flex; gap: 1.5rem;
    font-family: var(--font-ui); font-size: 0.9375rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.admin-nav a { color: var(--muted); transition: color 120ms ease; }
.admin-nav a.active, .admin-nav a:hover { color: var(--ink); }
.admin-form { display: grid; gap: 1.25rem; max-width: 640px; }
.admin-form label {
    display: block;
    font-family: var(--font-ui); font-size: 0.8125rem; font-weight: 500;
    color: var(--muted); margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%; background: transparent;
    border: 1px solid var(--hairline);
    padding: 0.75rem 0.875rem;
    font-family: var(--font-body); font-size: 1rem;
    color: var(--ink); border-radius: 6px;
    outline: none; transition: border-color 150ms ease;
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus {
    border-color: var(--ink);
}
.admin-form textarea { min-height: 12rem; resize: vertical; line-height: 1.55; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9375rem; }
.admin-form button {
    justify-self: start;
    padding: 0.75rem 1.5rem;
    background: var(--ink); color: var(--bg);
    font-family: var(--font-ui); font-weight: 500;
    border-radius: 999px;
    transition: opacity 150ms ease;
}
.admin-form button:hover { opacity: 0.85; }
.admin-table {
    width: 100%; border-collapse: collapse;
    font-family: var(--font-body); font-size: 0.9375rem;
}
.admin-table th, .admin-table td {
    text-align: left;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--hairline);
    vertical-align: top;
}
.admin-table th {
    font-family: var(--font-ui); font-weight: 500;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
}
.admin-table td.actions a {
    font-family: var(--font-ui); font-size: 0.875rem;
    color: var(--muted); margin-right: 0.75rem;
}
.admin-table td.actions a:hover { color: var(--ink); }
.login-wrap {
    max-width: 360px; margin: 6rem auto; padding: 0 var(--gutter);
}
.login-wrap h1 {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 500;
    margin-bottom: 1.5rem;
}
.error {
    color: #b00020; font-family: var(--font-ui);
    font-size: 0.875rem; margin-bottom: 1rem;
}
@media (prefers-color-scheme: dark) {
    .error { color: #ff6b6b; }
}
