/* ============================================================================
   Roots — shared marketing site design system
   ----------------------------------------------------------------------------
   One stylesheet for every marketing page (home, for-communities hub, and the
   per-audience landing pages under /for-communities/*). Adding a new landing
   page = new HTML that links this file; the palette and components live here,
   in one place.

   Convention: pages that are audience landing pages set <body class="lp">.
   That switches the hero to the centered "outreach" treatment; the home page
   omits it and gets the two-column app-showcase hero. Everything else
   (header, buttons, sections, cards, footer) is shared verbatim.
   ============================================================================ */

:root {
    --teal: #0d5c69;
    --gold: #c99a2e;
    --clay: #b85c3a;
    --blue: #4F7CFF;
    --depth: #0a1f24;
    --ground: #f5f2ed;
    --surface: #ffffff;
    --text: #0a1f24;
    --muted: #4a6369;
    --border: rgba(13, 92, 105, 0.12);
    --radius: 16px;
    --shadow: 0 12px 40px rgba(10, 31, 36, 0.08);
    --max: 1120px;
    --display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --body: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--ground);
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
}
a { color: var(--teal); font-weight: 500; text-decoration: none; }
a:hover { color: var(--clay); }

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 242, 237, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(10, 31, 36, 0.06); }
.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--depth);
    letter-spacing: -0.02em;
}
.logo:hover { color: var(--teal); }
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    font-size: 0.9rem;
}
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--teal); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ── Hero (home / default: two-column app showcase) ── */
.hero {
    background:
        radial-gradient(ellipse 80% 60% at 70% 0%, rgba(79, 124, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 100%, rgba(13, 92, 105, 0.15) 0%, transparent 50%),
        linear-gradient(168deg, var(--depth) 0%, #0d2e3a 45%, #0d4a5c 100%);
    color: #fff;
    padding: clamp(3.5rem, 9vw, 6rem) 1.25rem 4.5rem;
}
.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 3rem;
    }
}
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.hero-visual { display: none; }
@media (min-width: 900px) {
    .hero-visual { display: block; }
    .hero-visual img {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        border-radius: 28px;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
    }
}

/* ── Hero (landing pages: centered outreach treatment) ── */
body.lp .hero {
    background:
        radial-gradient(ellipse 70% 55% at 80% 10%, rgba(13, 92, 105, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 5% 90%, rgba(184, 92, 58, 0.1) 0%, transparent 50%),
        linear-gradient(162deg, var(--depth) 0%, #0a2d38 40%, #0d3d4e 100%);
    padding: clamp(4rem, 10vw, 7rem) 1.25rem clamp(3.5rem, 7vw, 5.5rem);
}
body.lp .hero-inner {
    display: block;
    max-width: 52rem;
}
body.lp .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.35rem;
    border: 1px solid rgba(201, 154, 46, 0.35);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.12em;
}
body.lp .hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    line-height: 1.07;
    margin-bottom: 1.5rem;
}
body.lp .hero h1 em { font-style: normal; color: rgba(255, 255, 255, 0.55); }
body.lp .hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 38rem;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}
.hero-subtext {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.01em;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.72rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--depth); }
.btn-primary:hover { filter: brightness(1.06); color: var(--depth); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn-outline {
    background: var(--surface);
    color: var(--teal);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--ground); color: var(--teal); }
.btn-store {
    background: var(--depth);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.6rem 1.25rem;
}
.btn-store:hover { background: #1a3540; color: #fff; }
.btn-store small {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1;
}
.btn-store strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

/* ── Trust band (home) ── */
.trust-band {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 1.25rem;
}
.trust-band-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.trust-band p {
    font-family: var(--display);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--teal);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.45;
}
.trust-band span {
    color: var(--muted);
    font-family: var(--body);
    font-weight: 400;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.5rem;
}

/* ── Value pills (home) ── */
.values {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}
.value-pill {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(13, 92, 105, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

/* ── Generic section ── */
.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(3rem, 5.5vw, 5rem) 1.25rem;
}
.section-head { margin-bottom: 2.5rem; }
.section-head h2 {
    font-family: var(--display);
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.65rem;
    color: var(--depth);
}
.section-head p { color: var(--muted); max-width: 40rem; font-size: 1.02rem; line-height: 1.65; }
.section-head .accent-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ── Mission block (home) ── */
.mission-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: var(--shadow);
}
.mission-block p { font-size: 1.05rem; color: var(--muted); margin-bottom: 1rem; }
.mission-block p:last-child { margin-bottom: 0; }
.mission-block strong { color: var(--depth); }

/* ── Screenshots (home) ── */
.shots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .shots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .shots-grid { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; } }
.shot {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: 0 20px 56px rgba(10, 31, 36, 0.14); }
.shot img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    background: linear-gradient(180deg, #c8e0f0 0%, #e8e4de 100%);
}
.shot figcaption {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    line-height: 1.4;
}

/* ── Feature cards (home) ── */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 2px 8px rgba(10, 31, 36, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { border-color: rgba(13, 92, 105, 0.22); box-shadow: var(--shadow); }
.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(79, 124, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}
.card h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--depth);
}
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ── Is / Is not (home) ── */
.not-section {
    background: var(--depth);
    color: rgba(255, 255, 255, 0.75);
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem;
}
.not-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}
.not-inner h2 {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.not-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.not-list li {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.not-list.is li {
    background: rgba(79, 124, 255, 0.3);
    border-color: rgba(79, 124, 255, 0.45);
    color: rgba(255, 255, 255, 0.9);
}
.not-list.is-not li {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(184, 92, 58, 0.55);
}

/* ── Download (home) ── */
.download {
    text-align: center;
    padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.download .section-head { margin-left: auto; margin-right: auto; }
.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.download-note { font-size: 0.9rem; color: var(--muted); max-width: 28rem; margin: 1.25rem auto 0; }

/* ── Pain band (landing) ── */
.pain-band { background: var(--depth); padding: clamp(2.25rem, 4vw, 3.25rem) 1.25rem; }
.pain-inner { max-width: var(--max); margin: 0 auto; }
.pain-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
}
.pain-list { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; }
.pain-list li {
    font-size: 0.875rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.pain-list li::before { content: '— '; color: var(--clay); font-weight: 700; }

/* ── Upgrade cards (landing) ── */
.upgrades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.upgrade-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: 0 2px 8px rgba(10, 31, 36, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.upgrade-card:hover {
    border-color: rgba(13, 92, 105, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.upgrade-num {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.upgrade-card h3 {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--depth);
}
.upgrade-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ── Contrast section (landing) ── */
.contrast-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.contrast-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(3rem, 5.5vw, 4.5rem) 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 700px) {
    .contrast-inner { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}
.contrast-col h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: var(--depth);
}
.contrast-col h3.bad { color: rgba(10, 31, 36, 0.45); }
.contrast-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contrast-list li {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.contrast-list.bad li { background: rgba(184, 92, 58, 0.05); border: 1px solid rgba(184, 92, 58, 0.1); }
.contrast-list.bad li::before {
    content: '✕';
    color: var(--clay);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.contrast-list.good li { background: rgba(13, 92, 105, 0.05); border: 1px solid rgba(13, 92, 105, 0.12); }
.contrast-list.good li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Quote block (landing) ── */
.quote-block {
    background: var(--depth);
    color: rgba(255, 255, 255, 0.82);
    padding: clamp(3rem, 6vw, 5rem) 1.25rem;
    text-align: center;
}
.quote-inner { max-width: 46rem; margin: 0 auto; }
.quote-text {
    font-family: var(--display);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.quote-text em { font-style: normal; color: var(--gold); }
.quote-sub { font-size: 0.92rem; color: rgba(255, 255, 255, 0.45); letter-spacing: 0.01em; }

/* ── CTA section (landing) ── */
.cta-section {
    text-align: center;
    padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.cta-section h2 {
    font-family: var(--display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--depth);
    margin-bottom: 0.85rem;
}
.cta-section p {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}
.cta-note { font-size: 0.85rem; color: var(--muted); margin-top: 1.25rem; }

/* ── Segment cards (for-communities hub → audience landing pages) ── */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.segment-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: 0 2px 8px rgba(10, 31, 36, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.segment-card:hover {
    border-color: rgba(13, 92, 105, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    text-decoration: none;
}
.segment-card .seg-eyebrow {
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.segment-card h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--depth);
}
.segment-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; flex: 1; }
.segment-card .seg-arrow {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
}
.segment-card:hover .seg-arrow { color: var(--clay); }

/* In-app embed (WebView opens legal pages with ?source=app) — hide site chrome
   so the document reads as a clean embedded doc, not the marketing site. */
.in-app .header, .in-app .footer { display: none; }

/* ── Content / legal pages (prose) ── */
.page-hero {
    background:
        radial-gradient(ellipse 60% 60% at 85% 0%, rgba(13, 92, 105, 0.25) 0%, transparent 55%),
        linear-gradient(162deg, var(--depth) 0%, #0a2d38 55%, #0d3d4e 100%);
    color: #fff;
    padding: clamp(3rem, 7vw, 4.5rem) 1.25rem clamp(2rem, 4vw, 2.75rem);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero h1 {
    font-family: var(--display);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}
.page-hero p { color: rgba(255, 255, 255, 0.7); margin-top: 0.75rem; font-size: 1rem; max-width: 46rem; }
.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
}
.prose > :first-child { margin-top: 0; }
.prose h2 {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--depth);
    letter-spacing: -0.02em;
    margin: 2.25rem 0 0.75rem;
}
.prose h3 {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--depth);
    margin: 1.5rem 0 0.5rem;
}
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 1rem 0; padding-left: 1.35rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--teal); font-weight: 500; }
.prose a:hover { color: var(--clay); }
.prose strong { color: var(--depth); }
.prose .updated {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}
.prose th, .prose td {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
}
.prose th {
    background: rgba(13, 92, 105, 0.05);
    color: var(--depth);
    font-family: var(--display);
    font-weight: 700;
}
.prose .contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    box-shadow: 0 2px 8px rgba(10, 31, 36, 0.04);
    margin-bottom: 1rem;
}
.prose .contact-card h3 { margin-top: 0; }

/* ── Footer ── */
.footer {
    background: var(--depth);
    color: rgba(255, 255, 255, 0.72);
    padding: 3rem 1.25rem 2rem;
    font-size: 0.875rem;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer h3 {
    font-family: var(--display);
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.footer a { color: rgba(255, 255, 255, 0.75); font-weight: 400; }
.footer a:hover { color: #fff; }
.footer-tagline {
    font-family: var(--display);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.35rem;
}
.footer-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 0.35rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-bottom {
    max-width: var(--max);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
