:root {
    --ink-950: #14171a;
    --ink-900: #1c2024;
    --ink-800: #262b30;
    --ink-700: #333a41;
    --accent: #2596be;
    --accent-soft: #6bb8d3;
    --accent-strong: #1b6c89;
    --paper: #f5f3ef;
    --white: #fff;
    --ink: #1f2429;
    --muted: #5b6570;
    --line: rgba(28, 32, 36, .14);
    --shadow: 0 22px 60px rgba(20, 20, 20, .18);
    --radius: 6px;
    --shell: min(1180px, calc(100% - 40px));
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
    margin: 0;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.08;
}
h1 { font-size: clamp(2.7rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.28rem; }
p { margin: 0; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(72px, 9vw, 128px); }
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 100;
    padding: 10px 14px; background: var(--accent); color: var(--ink-950);
    transform: translateY(-150%); font-weight: 800; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    color: var(--accent-strong); font-size: .74rem; font-weight: 800; letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--accent); content: ""; }
.button {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px;
    padding: 0 24px; border: 1px solid var(--accent); border-radius: var(--radius);
    background: var(--accent); color: var(--white); font-weight: 700; text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
}
.button:hover, .button:focus-visible { background: var(--accent-strong); border-color: var(--accent-strong); transform: translateY(-2px); outline: 0; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--white); border-color: var(--white); color: var(--ink-950); }
.button-small { min-height: 38px; padding-inline: 16px; font-size: .85rem; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 50;
    display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 24px;
    padding: 10px max(20px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(20,23,26,.86); color: var(--white); backdrop-filter: blur(14px);
    transition: background .25s ease, min-height .25s ease;
}
.site-header.is-scrolled { min-height: 76px; background: rgba(20,23,26,.98); }
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.site-brand-mark { display: block; width: 40px; height: 40px; flex: 0 0 auto; object-fit: contain; }
.footer-brand .site-brand-mark { width: 52px; height: 52px; }
.site-brand-text strong { display: block; font-size: 1.05rem; line-height: 1.15; }
.site-brand-text small { display: block; margin-top: 2px; color: rgba(255,255,255,.6); font-size: .68rem; line-height: 1.2; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 11px; color: rgba(255,255,255,.78); font-size: .87rem; font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--accent-soft); outline: 0; }
.site-nav .nav-cta { margin-left: 8px; padding: 11px 18px; background: var(--accent); color: var(--white); border-radius: var(--radius); font-weight: 700; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--white); background: var(--accent-strong); }
.nav-toggle { display: none; position: relative; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); border-radius: 6px; background: transparent; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    position: absolute; left: 11px; right: 11px; top: 21px; height: 2px; background: var(--white); content: "";
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { top: -7px; left: 0; right: 0; }
.nav-toggle span::after { top: 7px; left: 0; right: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative; display: grid; align-items: center;
    min-height: clamp(640px, 92svh, 840px); overflow: hidden;
    background: var(--ink-950);
    color: var(--white);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero-overlay { position: absolute; inset: 0; pointer-events: none;
    background:
        linear-gradient(90deg, rgba(20,23,26,.96) 0%, rgba(20,23,26,.88) 38%, rgba(20,23,26,.42) 72%, rgba(20,23,26,.18)),
        linear-gradient(0deg, rgba(20,23,26,.55), transparent 45%);
}
.hero-content { position: relative; z-index: 2; width: var(--shell); max-width: 640px; margin-inline: max(20px, calc((100vw - 1180px) / 2)) auto; padding-block: 148px 64px; }
.hero .eyebrow { color: var(--accent-soft); }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--accent-soft); }
.hero-lead { max-width: 560px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-proof { display: flex; gap: 26px; flex-wrap: wrap; margin: 46px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; }
.hero-proof li::before { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent-soft); font-size: .68rem; content: "✓"; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--accent); color: var(--white); }
.trust-strip div { display: grid; gap: 2px; min-height: 108px; align-content: center; padding: 20px clamp(16px, 3vw, 40px); border-right: 1px solid rgba(255,255,255,.22); }
.trust-strip strong { font-size: 1.55rem; font-weight: 800; line-height: 1.05; }
.trust-strip span { font-size: .74rem; font-weight: 700; letter-spacing: .04em; }

.services { background: var(--paper); }
.section-intro { display: grid; grid-template-columns: 1.1fr .75fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.section-intro > p { max-width: 600px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card {
    position: relative; display: flex; min-height: 380px; flex-direction: column; padding: 30px 26px;
    background: var(--white); border-right: 1px solid var(--line); transition: transform .25s ease, background .25s ease, color .25s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { z-index: 2; background: var(--ink-900); color: var(--white); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover p { color: rgba(255,255,255,.68); }
.service-card:hover a, .service-card:hover .service-number { color: var(--accent-soft); }
.service-card.service-featured::after { position: absolute; inset: 0 0 auto; height: 4px; background: var(--accent); content: ""; }
.service-number { color: #9aa2a8; font-size: .78rem; font-weight: 700; }
.service-icon { display: grid; width: 62px; height: 62px; place-items: center; margin: 40px 0 30px; border: 1px solid var(--line); border-radius: 10px; color: var(--accent); }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { color: var(--muted); font-size: .89rem; }
.service-card a { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 26px; color: var(--ink-700); font-size: .8rem; font-weight: 700; text-decoration: none; }

.craft { overflow: hidden; background: var(--ink-900); color: var(--white); }
.craft-grid { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.craft-visual { position: relative; max-width: 380px; }
.craft-visual::before { position: absolute; z-index: 0; inset: -20px auto auto -20px; width: 46%; height: 58%; border: 1px solid rgba(37,150,190,.4); content: ""; }
.craft-visual img {
    position: relative; z-index: 1; width: 100%; height: clamp(380px, 40vw, 480px); border-radius: var(--radius);
    object-fit: cover; object-position: 68% 22%; filter: saturate(.92) contrast(1.03);
}
.experience-badge { position: absolute; z-index: 2; right: -18px; bottom: 24px; display: grid; width: 148px; height: 100px; place-content: center; padding: 12px; border-radius: var(--radius); background: var(--accent); color: var(--white); text-align: center; box-shadow: var(--shadow); }
.experience-badge strong { font-size: 1.2rem; line-height: 1.1; }
.experience-badge span { font-size: .68rem; font-weight: 700; line-height: 1.3; }
.craft-copy .eyebrow { color: var(--accent-soft); }
.craft-copy h2 { color: var(--white); }
.craft-copy .lead { max-width: 600px; margin-top: 22px; color: rgba(255,255,255,.68); font-size: 1.02rem; }
.benefit-list { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.13); }
.benefit-list article { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.benefit-list article > span { color: var(--accent-soft); font-weight: 800; }
.benefit-list h3 { color: var(--white); font-size: .96rem; }
.benefit-list p { margin-top: 5px; color: rgba(255,255,255,.56); font-size: .84rem; }
.text-link { display: inline-flex; gap: 14px; margin-top: 28px; color: var(--accent-soft); font-weight: 700; text-decoration: none; }

.audiences { padding-block: clamp(64px, 8vw, 108px); background: var(--ink-800); color: var(--white); }
.audiences .eyebrow { color: var(--accent-soft); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.audience-grid h2 { color: var(--white); }
.audience-note { max-width: 440px; margin-top: 20px; color: rgba(255,255,255,.64); }
.audience-grid ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.audience-grid li { display: grid; grid-template-columns: 46px 1fr; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 1.12rem; font-weight: 700; }
.audience-grid li span { color: var(--accent-soft); font-size: .72rem; font-weight: 800; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .6fr 1fr; gap: 80px; align-items: start; }
.faq-grid > div:first-child > p:last-child { margin-top: 18px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent-strong); font-size: 1.2rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 45px 22px 0; color: var(--muted); font-size: .9rem; }

.contact { background: var(--ink-900); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: start; }
.contact .eyebrow { color: var(--accent-soft); }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin-top: 20px; color: rgba(255,255,255,.64); }
.contact-options { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-options a { display: grid; gap: 2px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.contact-options a:hover strong { color: var(--accent-soft); }
.contact-options span { color: var(--accent-soft); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-options strong { font-size: 1rem; }
.contact-options small { color: rgba(255,255,255,.45); }
.contact-address { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); font-size: .86rem; font-style: normal; line-height: 1.7; }
.contact-form { display: grid; gap: 16px; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: grid; gap: 7px; color: var(--ink-700); font-size: .78rem; font-weight: 700; }
input, textarea, select {
    width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #d3d3ce; border-radius: 5px;
    background: #faf9f6; color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); outline: 3px solid rgba(226,121,42,.22); }
textarea { min-height: 130px; resize: vertical; }
.check-row { display: grid; grid-template-columns: 19px 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.5; }
.check-row input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--accent); }
.check-row a { font-weight: 700; }
.form-note { color: var(--muted); }
.honeypot { position: absolute; left: -10000px; }

.legal-hero { padding: 156px 0 72px; background: var(--ink-900); color: var(--white); }
.legal-hero h1 { max-width: 14ch; font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
.legal-hero > div > p:last-child { max-width: 640px; margin-top: 20px; color: rgba(255,255,255,.62); }
.legal-hero .button { margin-top: 26px; }
.legal-content { display: grid; gap: 16px; padding-block: 64px 100px; }
.legal-content article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.legal-content h2 { margin-bottom: 12px; font-size: 1.5rem; }
.legal-content p { color: var(--muted); }
.placeholder-alert { padding: 16px 18px; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; background: #fff2e3; color: #6b3d10; }

.site-flash { position: fixed; z-index: 60; top: 96px; right: 20px; max-width: 440px; padding: 14px 18px; border-radius: var(--radius); background: var(--accent); color: var(--white); box-shadow: var(--shadow); font-weight: 700; }
.site-flash-error { background: #f4d9d1; color: #7a2b16; }
.site-footer {
    display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 28px; align-items: start;
    padding: 48px max(20px, calc((100vw - 1180px) / 2)); background: var(--ink-950); color: var(--white);
}
.footer-brand { display: flex; gap: 13px; align-items: center; }
.footer-brand p, .site-footer address, .footer-meta span, .footer-note { color: rgba(255,255,255,.5); font-size: .78rem; font-style: normal; }
.site-footer address a, .footer-meta a { color: var(--white); text-decoration: none; }
.contact-options strong, .site-footer a { overflow-wrap: anywhere; }
.footer-meta { display: grid; gap: 6px; text-align: right; }
.footer-note { grid-column: 1/-1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-credit { grid-column: 1/-1; margin-top: 4px; font-size: .7rem; color: rgba(255,255,255,.32); }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: rgba(255,255,255,.6); }

.call-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 40; display: flex; align-items: center; gap: 10px;
    height: 54px; padding: 0 20px 0 16px; border-radius: 999px;
    background: var(--accent); color: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.28);
    font-size: .85rem; font-weight: 700; text-decoration: none;
}
.call-float:hover, .call-float:focus-visible { background: var(--accent-strong); outline: 0; }
.call-float svg { width: 20px; height: 20px; }

.cookie-banner {
    position: fixed; inset: auto 16px 16px; z-index: 70; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
    max-width: 560px; padding: 16px 18px; border-radius: var(--radius); background: var(--ink-900); color: rgba(255,255,255,.86);
    box-shadow: var(--shadow); font-size: .85rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1 1 260px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 1050px) {
    .site-nav a:not(.nav-cta) { padding-inline: 7px; font-size: .8rem; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(2) { border-right: 0; }
    .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .hero-content { max-width: none; }
}

@media (max-width: 960px) {
    :root { --shell: min(100% - 32px, 680px); }
    html { scroll-padding-top: 86px; }
    .site-header { min-height: 78px; }
    .site-header.is-scrolled { min-height: 78px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed; inset: 78px 0 0; display: none; align-content: start; overflow-y: auto;
        padding: 24px max(20px, calc((100vw - 680px) / 2)) calc(40px + env(safe-area-inset-bottom));
        background: rgba(20,23,26,.99); overscroll-behavior: contain;
    }
    .site-nav.is-open { display: grid; }
    .site-nav a, .site-nav a:not(.nav-cta) { padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
    .site-nav .nav-cta { margin: 18px 0 0; text-align: center; }
    .hero { min-height: clamp(680px, 92svh, 820px); align-items: end; }
    .hero-bg { object-position: 66% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(20,23,26,.97) 15%, rgba(20,23,26,.78) 60%, rgba(20,23,26,.24)); }
    .hero-content { padding-top: 128px; padding-bottom: 56px; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .trust-strip div:nth-child(2) { border-right: 0; }
    .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
    .section-intro, .craft-grid, .audience-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
    .section-intro, .faq-grid { gap: 28px; }
    .craft-grid { gap: 60px; }
    .craft-visual { max-width: 320px; margin-inline: auto; }
    .site-footer { grid-template-columns: 1fr; }
    .footer-meta { text-align: left; }
}

@media (max-width: 580px) {
    :root { --shell: calc(100% - 28px); }
    html { scroll-padding-top: 78px; }
    body { font-size: 15px; }
    .section-pad { padding-block: clamp(58px, 16vw, 78px); }
    .site-header, .site-header.is-scrolled { min-height: 72px; gap: 12px; padding-inline: max(14px, env(safe-area-inset-left)) max(14px, env(safe-area-inset-right)); }
    .nav-toggle { width: 42px; height: 42px; flex: 0 0 auto; }
    .site-nav { inset: 72px 0 0; }
    h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
    .eyebrow { gap: 8px; margin-bottom: 12px; font-size: .68rem; letter-spacing: .1em; }
    .eyebrow::before { width: 22px; flex: 0 0 auto; }
    .hero-content { padding-top: 108px; padding-bottom: 32px; }
    .hero-lead { margin-top: 20px; font-size: 1rem; line-height: 1.55; }
    .hero-actions { display: grid; gap: 10px; margin-top: 24px; }
    .hero .button { width: 100%; }
    .hero-proof { display: grid; gap: 9px; margin-top: 24px; }
    .trust-strip strong { font-size: 1.3rem; }
    .trust-strip div { min-height: 92px; padding: 14px 12px; }
    .section-intro { margin-bottom: 32px; }
    .service-grid, .form-row { grid-template-columns: 1fr; }
    .service-card, .service-card:nth-child(2), .service-card:last-child { border: 0; border-bottom: 1px solid var(--line); }
    .service-card { min-height: 0; padding: 24px 20px; }
    .service-icon { margin-block: 22px 18px; }
    .craft-grid { gap: 32px; }
    .experience-badge { right: 8px; bottom: 8px; width: 132px; height: 88px; padding: 10px; }
    .experience-badge strong { font-size: 1rem; }
    .experience-badge span { font-size: .6rem; }
    .audience-grid { gap: 36px; }
    .audience-grid li { grid-template-columns: 38px 1fr; font-size: 1rem; }
    .faq-list summary { min-height: 54px; align-items: center; padding-block: 16px; }
    .faq-list details p { padding-right: 0; }
    .contact-form { padding: 20px 16px; }
    .contact-form .button { width: 100%; }
    .site-footer { gap: 22px; padding: 36px 14px calc(96px + env(safe-area-inset-bottom)); }
    .footer-brand { display: grid; justify-items: start; }
    .call-float { right: max(14px, env(safe-area-inset-right)); bottom: calc(14px + env(safe-area-inset-bottom)); height: 50px; padding: 0 16px 0 14px; }
    .call-float-label { display: none; }
    .site-flash { top: 80px; right: 14px; left: 14px; max-width: none; }
    .cookie-banner { inset: auto 10px 10px; }
}

@media (hover: none) {
    .service-card:hover { background: var(--white); color: var(--ink); transform: none; box-shadow: none; }
    .service-card:hover p { color: var(--muted); }
    .service-card:hover a { color: var(--ink-700); }
    .service-card:hover .service-number { color: #9aa2a8; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}

.system-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; background: var(--paper); }
.system-message { max-width: 780px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.system-message h1 { font-size: 1.6rem; }
.system-message p { margin-top: 12px; color: var(--muted); }
