/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── DESIGN TOKENS ─── */
:root {
    --paper: #F4EDE0;
    --paper-deep: #ECE2D0;
    --paper-soft: #F8F2E7;
    --ink: #15140F;
    --ink-soft: #3A3830;
    --ink-mute: #7C7868;
    --ink-faint: #B5AE9C;
    --vermillion: #D9482F;
    --vermillion-deep: #B33820;
    --bg-dark: #28241D;
    --serif: "Fraunces", "Instrument Serif", Georgia, serif;
    --serif-display: "Instrument Serif", "Fraunces", Georgia, serif;
    --sans: "Inter", -apple-system, system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg-dark);
    color: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}

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

/* ─── NAVBAR ─── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(40, 36, 29, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(244, 237, 224, 0.08);
    padding: 0 24px;
}
.nav-container, .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo, .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo img, .nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.nav-logo .logo-text, .logo-text {
    font-family: var(--serif-display);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: var(--paper) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.nav-menu, .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}
.nav-link, .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-faint);
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    padding: 0;
}
.nav-link:hover, .nav-links a:hover { color: var(--paper); }
.nav-cta {
    background: var(--vermillion) !important;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--vermillion-deep) !important;
}

/* ─── DROPDOWN ─── */
.dropdown { position: relative; }
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--paper);
    border: 1px solid var(--ink-faint);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 1000;
    list-style: none;
}
.dropdown:hover .dropdown-menu,
.dropdown-toggle:hover + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.dropdown-menu a,
.dropdown-item,
.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.dropdown-menu a:hover,
.dropdown-item:hover,
.dropdown-menu li a:hover {
    background: var(--vermillion);
    color: #fff;
}
.dropdown-menu li { list-style: none; }

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.bar, .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    padding: 80px 24px 64px;
    background: var(--bg-dark);
}
.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title {
    font-family: var(--serif-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    color: var(--paper);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-main {
    font-family: var(--serif-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-style: italic;
    font-weight: 400;
    color: var(--paper);
    line-height: 1.1;
}
.hero-subtitle {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--vermillion);
    font-weight: 600;
}
.hero-tagline {
    font-family: var(--serif-display);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-style: italic;
    color: var(--ink-faint);
    line-height: 1.3;
}
.hero-description {
    font-size: 1.05rem;
    color: var(--ink-faint);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating elements */
.floating-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.floating-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 237, 224, 0.08);
    border: 1px solid rgba(244, 237, 224, 0.12);
    color: var(--ink-faint);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}
.floating-card i { color: var(--vermillion); }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--vermillion);
    color: #fff;
}
.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(217, 72, 47, 0.35);
}
.btn-secondary {
    background: rgba(244, 237, 224, 0.08);
    color: var(--paper);
    border: 1px solid rgba(244, 237, 224, 0.12);
}
.btn-secondary:hover {
    background: rgba(244, 237, 224, 0.15);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--paper);
    border: 1px solid rgba(244, 237, 224, 0.25);
    padding: 9px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
    background: rgba(244, 237, 224, 0.1);
    border-color: var(--vermillion);
    color: var(--vermillion);
}

/* ─── SECTION COMPONENTS ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vermillion);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--serif-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-style: italic;
    font-weight: 400;
    color: var(--paper);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--ink-faint);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── FEATURES ─── */
.features {
    padding: 80px 24px;
    background: var(--bg-dark);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: rgba(244, 237, 224, 0.06);
    border: 1px solid rgba(244, 237, 224, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--vermillion);
}
.feature-card h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--paper);
    margin: 14px 0 8px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--ink-faint);
    line-height: 1.65;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(217, 72, 47, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--vermillion);
    margin-bottom: 4px;
}

/* ─── APP ICON HERO ─── */
.app-icon-hero {
    width: 240px;
    height: 240px;
    border-radius: 52px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(217, 72, 47, 0.15);
    object-fit: cover;
}

/* ─── APP MOCKUP FRAME ─── */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-frame {
    background: rgba(244, 237, 224, 0.06);
    border: 1px solid rgba(244, 237, 224, 0.1);
    border-radius: 36px;
    padding: 16px;
}
.app-screen {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ─── PAPER SECTIONS (light alternating) ─── */
.paper-section, .about, .privacy-policy, .terms-of-use, .policy {
    background: var(--paper);
    padding: 80px 24px;
}
.paper-section .section-title,
.about .section-title,
.privacy-policy .section-title,
.terms-of-use .section-title,
.policy .section-title { color: var(--ink); }
.paper-section .section-subtitle,
.about .section-subtitle,
.privacy-policy .section-subtitle,
.terms-of-use .section-subtitle,
.policy .section-subtitle { color: var(--ink-soft); }
.paper-section .section-eyebrow,
.about .section-eyebrow,
.privacy-policy .section-eyebrow,
.terms-of-use .section-eyebrow,
.policy .section-eyebrow { color: var(--vermillion); }
.paper-section h3, .paper-section h4 { color: var(--ink); }
.paper-section p { color: var(--ink-soft); }
.paper-section .feature-card {
    background: var(--paper-soft);
    border-color: var(--ink-faint);
    color: var(--ink);
}
.paper-section .feature-card h3 { color: var(--ink); }
.paper-section .feature-card p { color: var(--ink-soft); }

/* ─── SUPPORT SECTION ─── */
.support {
    padding: 80px 24px;
    background: var(--paper);
}
.support .section-title { color: var(--ink); }
.support .section-subtitle { color: var(--ink-soft); }
.support .section-eyebrow { color: var(--vermillion); }
.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.support-card {
    background: var(--paper-soft);
    border: 1px solid var(--ink-faint);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}
.support-card:hover {
    transform: translateY(-3px);
    border-color: var(--vermillion);
}
.support-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
    color: var(--vermillion);
}
.support-card h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}
.support-card p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
}
.support-card .btn-outline {
    color: var(--vermillion);
    border-color: rgba(217, 72, 47, 0.3);
}
.support-card .btn-outline:hover {
    background: rgba(217, 72, 47, 0.08);
}
.support-url {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--paper-soft);
    border: 1px solid var(--ink-faint);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.support-url h4 { color: var(--ink-mute); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.support-url code {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--vermillion);
}

/* ─── CONTACT SECTION ─── */
.contact {
    padding: 80px 24px;
    background: var(--bg-dark);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--ink-faint);
}
.contact-item i {
    font-size: 1.2rem;
    color: var(--vermillion);
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-item p, .contact-item a {
    font-size: 0.9rem;
    color: var(--ink-faint);
}
.contact-item a:hover { color: var(--vermillion); }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(244, 237, 224, 0.06);
    border: 1px solid rgba(244, 237, 224, 0.12);
    border-radius: 8px;
    color: var(--paper);
    font-family: var(--sans);
    font-size: 0.92rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--vermillion);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-mute); }
.form-group select option { background: #2a2520; color: var(--paper); }

/* ─── FEATURE STRIP ─── */
.feature-strip {
    background: var(--vermillion);
    padding: 40px 24px;
}
.feature-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.strip-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}
.strip-item h4 { font-size: 0.9rem; font-weight: 700; color: #fff; }
.strip-item p { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ─── POLICY CONTENT (inline usage on landing pages) ─── */
.policy-content {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink-soft);
    line-height: 1.8;
}
.policy-content h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin: 2rem 0 0.75rem;
}
.policy-content p { margin-bottom: 1rem; }
.policy-content ul, .policy-content ol {
    margin: 0.5rem 0 1rem 1.5rem;
}
.policy-content li { margin-bottom: 0.5rem; }
.policy-content a { color: var(--vermillion); }
.policy-content a:hover { text-decoration: underline; }
.policy-content strong { color: var(--ink); }

/* ─── POLICY WRAP (full legal pages) ─── */
.policy-wrap {
    padding: 80px 24px 60px;
    background: var(--paper);
}
.policy-wrap .policy-content {
    background: var(--paper-soft);
    border: 1px solid var(--ink-faint);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(21, 20, 15, 0.08);
}
.policy-wrap .policy-content h1 {
    font-family: var(--serif-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    text-align: center;
    margin-bottom: 0.5rem;
}
.policy-wrap .policy-content .last-updated {
    text-align: center;
    color: var(--ink-mute);
    font-size: 0.88rem;
    margin-bottom: 2.5rem;
}
.policy-wrap .policy-content h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(217, 72, 47, 0.2);
}
.policy-wrap .policy-content p,
.policy-wrap .policy-content li {
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* ─── FOOTER ─── */
.footer {
    background: #1C1916;
    padding: 64px 24px 32px;
    border-top: 1px solid rgba(244, 237, 224, 0.06);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(244, 237, 224, 0.06);
    margin-bottom: 28px;
}
.footer-brand h3 {
    font-family: var(--serif-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--paper);
    margin-bottom: 6px;
}
.footer-brand > p {
    font-size: 0.85rem;
    color: var(--ink-mute);
    margin-bottom: 20px;
}
.footer-brand-quote {
    max-width: 280px;
    padding-top: 16px;
    border-top: 1px solid rgba(244, 237, 224, 0.08);
}
.footer-brand-quote p {
    font-family: var(--serif);
    font-size: 0.82rem;
    font-style: italic;
    color: var(--ink-mute);
    line-height: 1.6;
    margin-bottom: 6px;
}
.footer-brand-quote cite {
    font-size: 0.75rem;
    color: var(--vermillion);
    font-style: normal;
}
.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.footer-section h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-faint);
    margin-bottom: 16px;
}
.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section a {
    font-size: 0.88rem;
    color: var(--ink-mute);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section a:hover { color: var(--paper); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    color: var(--ink-mute);
}

/* ─── ABOUT SECTION VARIANT (dark) ─── */
section.about-dark, .about-section {
    padding: 80px 24px;
    background: rgba(244, 237, 224, 0.03);
    border-top: 1px solid rgba(244, 237, 224, 0.06);
    border-bottom: 1px solid rgba(244, 237, 224, 0.06);
}

/* ─── VALUES / HOW IT WORKS ─── */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.value-item {
    text-align: center;
    padding: 24px;
}
.value-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.value-item h4 { color: var(--ink); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-item p { color: var(--ink-soft); font-size: 0.88rem; }

/* ─── SERVICES GRID ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--paper-soft);
    border: 1px solid var(--ink-faint);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--vermillion); }
.service-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.65; }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-visual { order: -1; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(40, 36, 29, 0.98);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(244, 237, 224, 0.1);
        z-index: 99;
    }
    .nav-menu.active, .nav-links.mobile-open {
        display: flex;
    }
    .hamburger { display: flex; }
    .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-links { gap: 28px; }
}

@media (max-width: 480px) {
    .feature-strip-inner { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2rem; }
    .app-icon-hero { width: 180px; height: 180px; border-radius: 36px; }
    .policy-wrap .policy-content { padding: 1.5rem; }
}

/* ─── LEGAL PAGE BODY OVERRIDE ─── */
body.legal-page {
    background: var(--paper);
    color: var(--ink);
}
body.legal-page .navbar {
    background: rgba(244, 237, 224, 0.95);
    border-bottom: 1px solid rgba(21, 20, 15, 0.08);
}
body.legal-page .logo-text,
body.legal-page .nav-logo .logo-text { color: var(--ink) !important; }
body.legal-page .nav-link { color: var(--ink-mute) !important; }
body.legal-page .nav-link:hover { color: var(--vermillion) !important; }
body.legal-page .bar,
body.legal-page .hamburger span { background: var(--ink); }
body.legal-page .footer {
    background: var(--paper-deep);
    border-top: 1px solid rgba(21, 20, 15, 0.08);
}
body.legal-page .footer-brand h3,
body.legal-page .footer-section h4 { color: var(--ink); }
body.legal-page .footer-brand > p,
body.legal-page .footer-brand-quote p { color: var(--ink-mute); }
body.legal-page .footer-section a { color: var(--ink-mute); }
body.legal-page .footer-section a:hover { color: var(--ink); }
body.legal-page .footer-bottom { color: var(--ink-mute); }
