/* ============================================================
   Adlumeno Landing - shared design system
   Brand: Marketbox internal Google Ads management tool
   Tokens derived from OmniMuze design-system.md, adapted.
   ============================================================ */

:root {
    /* Brand */
    --accent-from: #F81F01;
    --accent-to:   #EE076E;
    --accent:      #EE076E;
    --accent-hover:#d4005f;
    --accent-soft: rgba(238, 7, 110, 0.08);
    --accent-glow: rgba(238, 7, 110, 0.15);
    --gradient:        linear-gradient(145deg, #F81F01 0%, #EE076E 100%);
    --gradient-subtle: linear-gradient(145deg, rgba(248, 31, 1, 0.06) 0%, rgba(238, 7, 110, 0.06) 100%);
    --shadow-glow:     0 4px 24px rgba(238, 7, 110, 0.25);

    /* Surfaces */
    --bg-base:       #f4f4f9;
    --bg-surface:    #f0f0f7;
    --bg-card:       #ffffff;
    --bg-card-hover: #faf9ff;

    /* Borders */
    --border:        #e5e5f0;
    --border-strong: #d0d0e0;

    /* Text */
    --text-primary: #1a1a2e;
    --text-muted:   #5c5c7a;
    --text-dim:     #9898b8;

    /* Fonts */
    --font-head: 'Poppins', system-ui, sans-serif;
    --font-ui:   'Montserrat', system-ui, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --font-mono: 'Fira Code', ui-monospace, monospace;

    /* Radius */
    --radius:    14px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    /* Shadow */
    --shadow-sm: 0 1px 4px rgba(26, 26, 46, 0.06);
    --shadow:    0 2px 8px rgba(26, 26, 46, 0.07), 0 8px 28px rgba(26, 26, 46, 0.09);
    --shadow-lg: 0 4px 16px rgba(26, 26, 46, 0.10), 0 16px 48px rgba(26, 26, 46, 0.13);

    /* Layout */
    --layout-max:    1180px;
    --content-max:   880px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-page {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-base);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: var(--layout-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ───────── Topnav ───────── */
.topnav {
    position: fixed;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 1180px);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    padding: 10px 14px 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 100;
}
.topnav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.wordmark {
    font-family: var(--font-head);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.wordmark .w-ad { font-weight: 400; color: var(--text-primary); }
.wordmark .w-lumeno {
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.topnav-meta {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-left: 2px solid var(--accent);
    padding: 1px 0 1px 9px;
    display: inline-flex;
    align-items: baseline;
}
.topnav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topnav .links {
    display: flex;
    gap: 2px;
}
.topnav .nav-link {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 50px;
    transition: all 0.18s ease;
}
.topnav .nav-link:hover {
    background: var(--accent-soft);
    color: var(--text-primary);
}
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 12px; right: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--accent-soft); }

@media (max-width: 760px) {
    .topnav .links { display: none; }
    .topnav-meta { display: none; }
    .mobile-toggle { display: inline-flex; }
}

/* ───────── Buttons ───────── */
.btn {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 13px;
    padding: 11px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.18s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    opacity: 0.92;
    color: #fff;
    box-shadow: 0 6px 28px rgba(238, 7, 110, 0.32);
}
.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--text-dim);
}
.btn-lg {
    font-size: 14px;
    padding: 14px 28px;
}

/* ───────── Section base ───────── */
section { padding: 96px 0; position: relative; }
section + section { padding-top: 0; }

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-label::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--accent);
}

h1, h2, h3 {
    font-family: var(--font-head);
    color: var(--text-primary);
    margin: 0;
}
h1 {
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -1.2px;
    line-height: 1.08;
}
h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 38px);
    letter-spacing: -0.6px;
    line-height: 1.15;
}
h3 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.2px;
}
.lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}
.grad-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ───────── Hero ───────── */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-sub {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 22px 0 32px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.hero-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hero-meta i {
    color: var(--accent);
    font-size: 13px;
}

/* Hero visual mockup */
.hero-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    position: relative;
}
.hero-visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.hero-visual-head h4 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}
.hero-visual-head .sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.insight-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}
.insight-row:last-child { border-bottom: none; }
.insight-row i {
    font-size: 16px;
    flex-shrink: 0;
}
.insight-row .label {
    color: var(--text-primary);
    flex: 1;
}
.insight-row .value {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}
.insight-row.danger i { color: #dc2626; }
.insight-row.warning i { color: #d97706; }
.insight-row.info i { color: #0284c7; }
.insight-row.success i { color: #059669; }

/* ───────── Stat band ───────── */
.stat-band {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 24px;
}
@media (max-width: 760px) {
    .stat-band { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 22px; }
}
.stat .value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat .value .grad-text { display: inline-block; }
.stat .label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ───────── Generic card grids ───────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: var(--shadow-sm);
}
.why-card .head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.why-card .icon-square {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.why-card h3 { font-size: 17px; }
.why-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.step-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 10px; }
.step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Is / Isn't comparison */
.about {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 48px;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}
@media (max-width: 820px) {
    .about { grid-template-columns: 1fr; padding: 32px 28px; gap: 32px; }
}
.about-col h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.about-col ul { margin: 0; padding: 0; list-style: none; }
.about-col li {
    padding: 9px 0;
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.about-col li i {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 2px;
}
.about-col.is i { color: var(--accent); }
.about-col.isnt i { color: var(--text-dim); }
.about-col.isnt li { color: var(--text-muted); }

/* FAQ */
.faq {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 22px 28px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.15s ease;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--accent); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a > div { padding: 0 28px 22px; }

/* CTA section */
.cta-section { margin-top: 24px; padding: 96px 0 120px; }
.cta-box {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 56px 48px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-box::after {
    content: "";
    position: absolute;
    top: -60%; left: -10%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.cta-box h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    margin: 0 auto 28px;
    max-width: 580px;
    position: relative; z-index: 1;
}
.cta-box .btn-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    position: relative; z-index: 1;
}
.cta-box .btn-primary:hover {
    background: #fff;
    color: var(--accent-hover);
    opacity: 1;
}
.cta-box .cta-meta {
    margin-top: 22px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    position: relative; z-index: 1;
}

/* Contact form */
.contact { padding-bottom: 96px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 44px 48px;
}
@media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; padding: 32px 28px; gap: 36px; }
}
.contact-info h3 {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.contact-info .item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-info .item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
    width: 22px;
    flex-shrink: 0;
}
.contact-info .item .k {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.contact-info .item .v {
    font-size: 15px;
    color: var(--text-primary);
}
.contact-info .item .v a { color: var(--text-primary); }
.contact-info .item .v a:hover { color: var(--accent); }

.form-field { margin-bottom: 16px; }
.form-field label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-base);
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(238, 7, 110, 0.12);
    background: var(--bg-card);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-consent {
    font-size: 12.5px;
    color: var(--text-dim);
    margin-bottom: 18px;
    line-height: 1.5;
}
.form-consent label {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    cursor: pointer;
}
.form-consent input { margin-top: 3px; }

/* ───────── Legal pages (privacy, terms) ───────── */
.legal-page {
    padding: 140px 0 60px;
    position: relative;
}
.legal-page::before {
    content: "";
    position: absolute;
    top: 0; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.legal-hero {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}
.legal-hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 14px;
}
.legal-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.legal-meta strong {
    color: var(--text-primary);
    font-weight: 600;
}
.legal-meta-sep {
    display: inline-block;
    margin: 0 8px;
    color: var(--text-dim);
}

.legal-toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}
.legal-toc-label {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.legal-toc ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
    columns: 2;
    column-gap: 32px;
}
@media (max-width: 620px) { .legal-toc ol { columns: 1; } }
.legal-toc li {
    counter-increment: toc;
    padding: 4px 0;
    font-size: 14px;
    break-inside: avoid;
}
.legal-toc li::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    margin-right: 10px;
}
.legal-toc a {
    color: var(--text-primary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}
.legal-toc a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.legal-section {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.legal-section h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
    padding-bottom: 8px;
    position: relative;
    display: inline-block;
}
.legal-section h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 44px; height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.legal-section h3 {
    font-size: 16px;
    margin: 22px 0 8px;
}
.legal-section p,
.legal-section li {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.7;
}
.legal-section ul,
.legal-section ol {
    margin: 8px 0 8px 22px;
}
.legal-section li { margin-bottom: 5px; }
.legal-section code {
    font-family: var(--font-mono);
    background: var(--accent-soft);
    color: var(--accent-hover);
    padding: 1px 6px;
    border-radius: var(--radius-xs);
    font-size: 13px;
}

.legal-callout {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 18px 0;
    box-shadow: var(--shadow-sm);
}
.legal-callout strong {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 18px 0;
}
.legal-table thead tr {
    background: var(--gradient);
}
.legal-table th {
    background: transparent;
    color: #fff;
    text-align: left;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 16px;
    border: none;
}
.legal-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-primary);
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody tr:nth-child(even) td { background: var(--bg-surface); }

/* ───────── Footer ───────── */
.landing-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 36px 0 28px;
    margin-top: 40px;
}
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.foot-left {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}
.foot-left .wordmark {
    font-size: 16px;
    margin-right: 8px;
    vertical-align: -1px;
}
.foot-right {
    display: flex;
    gap: 22px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}
.foot-right a { color: var(--text-muted); }
.foot-right a:hover { color: var(--accent); }
.foot-copy {
    width: 100%;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
