/*
 * Noirplume — the published theme.
 *
 * Checked in and copied verbatim into every build. No Vite runs on a queue
 * worker, so what is written here is exactly what a reader downloads.
 *
 * The accent is the one value the builder injects, as a `:root{--accent}` rule
 * ahead of this file. Everything else derives from it, so an owner changing
 * one colour restyles the whole site.
 */

@font-face {
    font-family: 'Geist';
    font-style: normal;
    /* One variable file covers the range; a static file would have the
       browser synthesise the heavier weights, which looks worse but works. */
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/geist-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('fonts/geist-mono-latin.woff2') format('woff2');
}

:root {
    --bg: #09090b;
    --panel: #0c0c0e;
    --panel-2: #0e0e10;
    --panel-3: #121214;
    --line: #27272a;
    --line-soft: #1f1f23;
    --line-strong: #3f3f46;
    --fg: #fafafa;
    --muted: #a1a1aa;
    --dim: #71717a;
    --dimmer: #52525b;
    --radius: 14px;
    --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    /* The theme is dark by construction: form controls and scrollbars should
       follow rather than render as light chrome on a black page. */
    color-scheme: dark;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img,
video,
iframe {
    max-width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Never rely on colour alone for focus: the accent is owner-configurable and
   could land anywhere on the contrast scale. */
:focus-visible {
    outline: 2px solid var(--fg);
    outline-offset: 2px;
    border-radius: 4px;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.narrow {
    max-width: 760px;
}

/* Only reachable by keyboard, and only the first tab stop: the nav is long
   and a reader using one should be able to get past it. */
.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 10px 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    z-index: 10;
}

.skip:focus {
    left: 16px;
    top: 16px;
}

/* ---------- announcement ---------- */

/*
 * The accent strip above the nav. Rendered only when the owner wrote one, so
 * a site with nothing to announce gets no empty bar.
 */
.announce {
    padding: 7px 16px;
    background: var(--accent);
    color: color-contrast(var(--accent) vs #09090b, #fafafa);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

@supports not (color: color-contrast(#000 vs #fff, #111)) {
    .announce {
        color: #09090b;
    }
}

/* ---------- nav ---------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
}

/* Full-bleed like the reference bar: brand and links grouped on the left,
   actions on the right, 28px off the viewport edge rather than inside the
   1200px wrap. */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 60px;
    padding: 0 28px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 34px;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fg);
    font-weight: 700;
    letter-spacing: -0.2px;
    font-size: 16px;
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: inline-block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--fg);
    text-decoration: none;
}

.nav-links a[aria-current='page'] {
    color: var(--fg);
}

/* ---------- nav actions ---------- */

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

@media (max-width: 768px) {
    .nav-inner {
        height: auto;
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 10px 14px;
    }

    .nav-left {
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }
}

.btn-sm {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

/*
 * Revealed by the script, so a reader without JavaScript never sees a search
 * field that cannot search. `hidden` is on the element in the markup.
 */
.search {
    position: relative;
}

.search-field {
    width: 168px;
    height: 36px;
    padding: 0 30px 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--fg);
    font-family: var(--mono);
    font-size: 13px;
}

.search-field::placeholder {
    color: var(--dim);
}

.search-field:focus {
    border-color: var(--line-strong);
    outline: none;
}

.search-key {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    padding: 1px 5px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 11px;
    pointer-events: none;
}

.search-field:focus ~ .search-key {
    opacity: 0;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    max-height: 320px;
    overflow-y: auto;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    box-shadow: 0 18px 40px rgb(0 0 0 / 0.45);
    z-index: 6;
}

.search-results a {
    display: block;
    padding: 8px 10px;
    border-radius: 7px;
    color: var(--fg);
}

.search-results a:hover,
.search-results a:focus-visible {
    background: var(--panel-3);
    text-decoration: none;
}

.search-kind {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--dim);
    margin-top: 1px;
}

.search-empty {
    padding: 10px;
    color: var(--dim);
    font-size: 13px;
}

/* ---------- shared type ---------- */

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--dimmer);
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1,
h2,
h3 {
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

h1 {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

.section {
    padding: 44px 0;
}

.section-head {
    margin-bottom: 24px;
}

/* Heading on the left, a link to the whole section opposite it. A modifier
   rather than the default, because most heads have nothing on the right and
   would otherwise put their eyebrow beside their title. */
.section-head.is-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

/* The "View all →" that sits opposite a section heading. */
.section-more {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.section-more:hover {
    color: var(--fg);
    text-decoration: none;
}

.lede {
    color: var(--muted);
    font-size: 16px;
    margin: 14px 0 0;
    max-width: 60ch;
}

.muted {
    color: var(--muted);
}

.mono {
    font-family: var(--mono);
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    padding: 76px 0 66px;
}

/* The glow the demo drew with a stack of divs, as one radial gradient. */
.hero::before {
    content: '';
    position: absolute;
    inset: -40% 30% auto -10%;
    height: 520px;
    background: radial-gradient(
        closest-side,
        color-mix(in srgb, var(--accent) 22%, transparent),
        transparent
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

.hero .lede {
    font-size: 17px;
}

/*
 * Two columns where there is a product to show on the right, one where there
 * is not. auto-fit rather than a media query: a site with no products should
 * not leave a column-shaped hole beside its headline.
 */
.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
    .hero-grid.has-figure {
        grid-template-columns: minmax(0, 1fr) 440px;
    }
}

/* The pill above the headline: "New · the winter drop is live". */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 24px;
    padding: 0 10px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    color: var(--muted);
    font-size: 12px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

/* The framed lead product beside the headline. */
.hero-figure {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    overflow: hidden;
    color: inherit;
    transition: border-color 0.15s ease;
}

.hero-figure:hover {
    border-color: var(--line-strong);
    text-decoration: none;
}

.hero-figure .card-media,
.hero-figure .card-media--drawn {
    aspect-ratio: 4 / 5;
}

.hero-figure .card-body {
    align-items: center;
    border-top: 1px solid var(--line-soft);
}

/* Counted from what is actually published; nothing here is a claim the site
   cannot back up. */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 44px;
}

.stat-value {
    font-family: var(--mono);
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    color: var(--dim);
    margin-top: 2px;
}

/* ---------- marquee ---------- */

.marquee {
    border-bottom: 1px solid var(--line-soft);
    background: #0b0b0d;
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--dimmer);
    animation: marquee 28s linear infinite;
}

/*
 * Two identical runs, translated by half the track, so the loop is seamless.
 * The duplicate is aria-hidden: a screen reader should hear the list once.
 */
.marquee-run {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.marquee-sep {
    color: var(--accent);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Motion that never stops is exactly what this setting is for. */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--fg);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.btn:hover {
    border-color: var(--line-strong);
    text-decoration: none;
}

.btn-accent {
    border-color: transparent;
    background: var(--accent);
    /* The accent is arbitrary, so the label picks whichever of black or white
       actually reads against it rather than assuming. */
    color: color-contrast(var(--accent) vs #09090b, #fafafa);
    font-weight: 600;
}

@supports not (color: color-contrast(#000 vs #fff, #111)) {
    .btn-accent {
        color: #09090b;
    }
}

.btn-accent:hover {
    filter: brightness(1.08);
}

/* ---------- grids and cards ---------- */

/* The reference storefront lays every product row out as a fixed three-up;
   auto-fill would stretch to four on a wide screen and read as a different
   page. Below 860px the row reflows to whatever fits. */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

.card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    overflow: hidden;
    color: inherit;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
    text-decoration: none;
}

.card-media {
    aspect-ratio: 4 / 5;
    background: var(--panel-3);
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*
 * The stand-in for a product with no photograph. The demo had no images at
 * all and drew every mask this way, so it is the theme's native look rather
 * than a placeholder apologising for a missing file.
 */
.card-media--drawn {
    position: relative;
    background:
        radial-gradient(
            circle at 50% 42%,
            color-mix(in srgb, var(--glow, var(--accent)) 34%, transparent),
            transparent 62%
        ),
        linear-gradient(160deg, var(--panel-2), var(--panel));
}

.card-media--drawn::after {
    content: '';
    position: absolute;
    inset: 26% 30%;
    border: 1px solid color-mix(in srgb, var(--glow, var(--accent)) 55%, transparent);
    border-radius: 50% 50% 46% 46%;
    box-shadow: 0 0 26px color-mix(in srgb, var(--glow, var(--accent)) 40%, transparent);
}

.card-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
}

.card-sub {
    font-size: 12px;
    color: var(--dim);
    margin-top: 2px;
}

.price {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--accent);
    white-space: nowrap;
}

.tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
}

/* ---------- filters ---------- */

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    width: fit-content;
    max-width: 100%;
}

.filters button {
    padding: 7px 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.filters button[aria-pressed='true'] {
    background: var(--bg);
    color: var(--fg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ---------- entry pages ---------- */

.entry {
    padding: 48px 0 64px;
}

.entry-head {
    margin-bottom: 28px;
}

.meta {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--dim);
    margin-top: 12px;
}

.split {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
        align-items: start;
    }
}

.gallery {
    display: grid;
    gap: 12px;
}

.gallery-stage {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-3);
}

.gallery-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* A scroller rather than a wrap: a strip that reflows to two rows pushes the
   product's name off the first screen on a phone. */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    scrollbar-width: thin;
}

.gallery-thumb {
    display: block;
    width: 72px;
    flex: 0 0 72px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    /* Unselected sit back and come forward on hover, so which one is on the
       stage is legible without reading a border colour. */
    opacity: 0.5;
    transition:
        opacity 0.15s ease,
        border-color 0.15s ease;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--line-strong);
}

.gallery-thumb[aria-current='true'] {
    opacity: 1;
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stage {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.embed iframe,
.embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.rule {
    height: 1px;
    background: var(--line-soft);
    margin: 26px 0;
    border: 0;
}

.swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.swatch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
}

.swatch::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--swatch);
    box-shadow: 0 0 10px var(--swatch);
}

/* ---------- prose ---------- */

.prose {
    color: #e6e6e9;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose h2 {
    font-size: 22px;
    margin: 34px 0 12px;
}

.prose h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 26px 0 10px;
}

.prose p,
.prose ul,
.prose ol {
    margin: 0 0 16px;
}

.prose li {
    margin-bottom: 6px;
}

.prose img,
.prose video {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: block;
    margin: 22px 0;
}

.prose blockquote {
    margin: 22px 0;
    padding: 2px 0 2px 18px;
    border-left: 2px solid var(--accent);
    color: var(--muted);
}

.prose code {
    font-family: var(--mono);
    font-size: 0.9em;
    padding: 2px 6px;
    border-radius: 5px;
    background: var(--panel-3);
}

.prose pre {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel-2);
    overflow-x: auto;
}

.prose pre code {
    padding: 0;
    background: none;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 14px;
}

.prose th,
.prose td {
    border: 1px solid var(--line);
    padding: 8px 12px;
    text-align: left;
}

.prose hr {
    border: 0;
    border-top: 1px solid var(--line-soft);
    margin: 30px 0;
}

/* ---------- post list ---------- */

.posts {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-soft);
}

.posts li {
    border-bottom: 1px solid var(--line-soft);
}

.posts a {
    display: block;
    padding: 22px 0;
    color: inherit;
}

.posts a:hover {
    text-decoration: none;
}

.posts a:hover .post-title {
    color: var(--accent);
}

.post-title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.post-excerpt {
    color: var(--muted);
    margin-top: 6px;
    font-size: 14px;
}

/* ---------- empty states and footer ---------- */

.empty {
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    color: var(--dim);
    font-size: 14px;
}

.footer {
    border-top: 1px solid var(--line-soft);
    margin-top: 40px;
    padding: 30px 0 44px;
    color: var(--dim);
    font-size: 13px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- section extras ---------- */

.section-sub {
    color: var(--dim);
    font-size: 14px;
    margin: 8px 0 0;
}

/* ---------- craft steps ---------- */

.steps {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.step-number {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
}

.step-title {
    font-size: 17px;
    font-weight: 600;
}

.step-text {
    color: var(--muted);
    font-size: 14px;
    margin: 8px 0 0;
}

/* ---------- spec strip ---------- */

.specs {
    border-block: 1px solid var(--line-soft);
    background: #0b0b0d;
    padding: 30px 0;
}

.specs-inner {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.spec-value {
    font-family: var(--mono);
    font-size: 26px;
    font-weight: 700;
}

.spec-label {
    color: var(--dim);
    font-size: 13px;
    margin-top: 4px;
}

/* ---------- lookbook ---------- */

.shot {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-3);
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.shot:hover img {
    transform: scale(1.03);
}

/* ---------- signature banner ---------- */

.banner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    color: inherit;
    transition: border-color 0.15s ease;
}

.banner:hover {
    border-color: var(--line-strong);
    text-decoration: none;
}

.banner-art {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 50% 45%,
            color-mix(in srgb, var(--glow, var(--accent)) 40%, transparent),
            transparent 64%
        ),
        var(--panel-3);
}

.banner-body {
    flex: 1;
    min-width: 0;
}

.banner-title {
    display: block;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 4px;
}

.banner-text {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

.banner .price {
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

/* ---------- testimonials ---------- */

.quote {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.quote blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.quote figcaption {
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--dim);
}

/* ---------- closing cta ---------- */

.cta {
    position: relative;
    overflow: hidden;
    padding: 48px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    inset: -60% 20% auto;
    height: 320px;
    background: radial-gradient(
        closest-side,
        color-mix(in srgb, var(--accent) 20%, transparent),
        transparent
    );
    pointer-events: none;
}

.cta > * {
    position: relative;
}

.cta .lede {
    margin-inline: auto;
}

.cta .actions {
    justify-content: center;
}

/* ---------- footer columns ---------- */

.footer-cols {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(130px, 1fr));
    padding: 44px 0 32px;
}

.footer-blurb {
    color: var(--dim);
    font-size: 13px;
    margin: 12px 0 0;
    max-width: 42ch;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 8px;
    font-size: 13px;
}

.footer-col a,
.footer-col span {
    color: var(--muted);
}

.footer-col a:hover {
    color: var(--fg);
    text-decoration: none;
}

.footer-head {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dimmer);
    margin: 0 0 2px;
}
