:root {
    --pc-consult: #406088;
    --pc-consult-dark: #355074;
    --pc-consult-tint: #eaeef5;
    --pc-consult-line: #c8d2e3;
    --pc-group: #A090A8;
    --pc-body: #1A1A1A;
    --pc-sub: #6b6b6b;
    --pc-soft-sub: #888888;
    --pc-paper: #FAFAF7;
    --pc-rule: #D8D4CC;
    --pc-red: #b8332e;
    --pc-red-tint: #fbe9e8;
    --pc-amber: #b8761f;
    --pc-amber-tint: #fbf1de;
    --pc-green: #2d6a4f;
    --pc-green-tint: #e3f1ea;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #f4f3ee;
    color: var(--pc-body);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
}

/* ── Site header ───────────────────────────────────────────── */
.site-header {
    background: white;
    border-bottom: 1px solid var(--pc-rule);
    padding: 14px 0;
}
.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo-mark {
    width: 32px; height: 32px; border-radius: 6px;
    background: var(--pc-group);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 500; font-size: 13px;
}
.site-logo-text { font-size: 16px; font-weight: 500; color: var(--pc-body); }
.site-nav { display: flex; gap: 24px; font-size: 14px; }
.site-nav a { color: var(--pc-sub); text-decoration: none; }
.site-nav a:hover { color: var(--pc-consult); }
.site-nav a.active { color: var(--pc-consult); font-weight: 500; }
.site-user {
    font-size: 13px; color: var(--pc-sub);
    display: flex; align-items: center; gap: 8px;
}
.site-user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--pc-consult-tint); color: var(--pc-consult);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 500;
}
.signout-link {
    color: var(--pc-sub); text-decoration: none; font-size: 12px;
    margin-left: 12px; padding-left: 12px; border-left: 1px solid var(--pc-rule);
}
.signout-link:hover { color: var(--pc-consult); }

.breadcrumb {
    max-width: 1100px; margin: 0 auto; padding: 14px 28px 0;
    font-size: 12px; color: var(--pc-sub);
}
.breadcrumb a { color: var(--pc-sub); text-decoration: none; }
.breadcrumb a:hover { color: var(--pc-consult); }
.breadcrumb-sep { margin: 0 6px; color: var(--pc-rule); }

/* ── Main container ────────────────────────────────────────── */
.container { max-width: 880px; margin: 0 auto; padding: 18px 28px 60px; }

.page-intro { margin-bottom: 28px; }
.page-title {
    font-size: 26px; font-weight: 500; color: var(--pc-consult);
    margin: 0 0 8px;
}
.page-subtitle {
    font-size: 15px; color: var(--pc-sub); margin: 0;
    max-width: 640px; line-height: 1.6;
}

/* ── Disclaimer banner ─────────────────────────────────────── */
.disclaimer-banner {
    background: var(--pc-consult-tint);
    border-left: 3px solid var(--pc-consult);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--pc-body);
    line-height: 1.5;
}
.disclaimer-banner strong { color: var(--pc-consult); font-weight: 500; }

/* ── Panels (form, output, sections) ───────────────────────── */
.panel {
    background: white;
    border: 1px solid var(--pc-rule);
    border-radius: 8px;
    padding: 24px 26px;
    margin-bottom: 18px;
}
.panel-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--pc-consult);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Form ──────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-full { grid-column: 1 / -1; }
.field label {
    display: block; font-size: 13px; color: var(--pc-body);
    margin-bottom: 6px; font-weight: 500;
}
.field-help { font-size: 12px; color: var(--pc-sub); margin: 0 0 6px; }
.field input,
.field select,
.field textarea {
    width: 100%; font-family: var(--font-sans); font-size: 14px; color: var(--pc-body);
    border: 1px solid var(--pc-consult-line); border-radius: 6px;
    padding: 10px 12px; background: white;
}
.field textarea { resize: vertical; min-height: 200px; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none; border-color: var(--pc-consult);
    box-shadow: 0 0 0 2px var(--pc-consult-tint);
}
.char-counter { font-size: 11px; color: var(--pc-sub); text-align: right; margin-top: 4px; }

/* ── Buttons ───────────────────────────────────────────────── */
.actions {
    display: flex; gap: 12px; align-items: center; margin-top: 20px;
    padding-top: 18px; border-top: 1px solid var(--pc-rule); flex-wrap: wrap;
}
.btn-primary {
    background: var(--pc-consult); color: white; border: none; border-radius: 6px;
    padding: 11px 26px; font-size: 14px; font-weight: 500; cursor: pointer;
    font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--pc-consult-dark); }
.btn-primary:disabled { background: #b5bbc6; cursor: not-allowed; }
.btn-ghost {
    background: transparent; color: var(--pc-sub); border: 1px solid var(--pc-consult-line);
    border-radius: 6px; padding: 10px 18px; font-size: 14px; cursor: pointer;
    font-family: var(--font-sans);
}
.btn-ghost:hover { background: var(--pc-paper); }
.actions-info { margin-left: auto; font-size: 12px; color: var(--pc-sub); font-style: italic; }

/* ── Output panel ──────────────────────────────────────────── */
.output {
    background: white; border: 1px solid var(--pc-rule); border-radius: 8px;
    padding: 0; margin-top: 24px; overflow: hidden;
}
.output.visible { display: block; }

.output-header {
    padding: 18px 26px;
    display: flex; align-items: center; gap: 12px;
}
.output-header.red { background: var(--pc-red-tint); border-bottom: 1px solid #f0c0bc; }
.output-header.amber { background: var(--pc-amber-tint); border-bottom: 1px solid #e8d2a4; }
.output-header.green { background: var(--pc-green-tint); border-bottom: 1px solid #b8d8c4; }
.output-header.unrated { background: var(--pc-paper); border-bottom: 1px solid var(--pc-rule); }

.output-rating-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 500; color: white; flex-shrink: 0;
}
.output-rating-icon.red { background: var(--pc-red); }
.output-rating-icon.amber { background: var(--pc-amber); }
.output-rating-icon.green { background: var(--pc-green); }
.output-rating-icon.unrated { background: var(--pc-sub); }

.output-rating-text { flex: 1; min-width: 0; }
.output-rating-title { font-size: 16px; font-weight: 500; margin: 0; }
.output-rating-title.red { color: var(--pc-red); }
.output-rating-title.amber { color: var(--pc-amber); }
.output-rating-title.green { color: var(--pc-green); }
.output-rating-summary { font-size: 13px; margin: 2px 0 0; color: var(--pc-body); }

.output-body { padding: 22px 26px; }

.result-content { font-size: 13.5px; line-height: 1.65; color: var(--pc-body); }
.result-content h1 { font-size: 18px; font-weight: 500; color: var(--pc-consult); margin: 0 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--pc-consult-line); }
.result-content h2 { font-size: 16px; font-weight: 500; color: var(--pc-consult); margin: 20px 0 10px; padding-bottom: 5px; border-bottom: 1px solid var(--pc-consult-line); }
.result-content h3 { font-size: 14px; font-weight: 500; margin: 16px 0 8px; }
.result-content p { margin: 6px 0; }
.result-content ul, .result-content ol { margin: 6px 0 12px; padding-left: 22px; }
.result-content li { margin-bottom: 5px; }
.result-content strong { font-weight: 500; }
.result-content code { background: var(--pc-consult-tint); color: var(--pc-consult); padding: 1px 6px; border-radius: 3px; font-size: 12px; font-family: var(--font-mono); }
.result-content blockquote { border-left: 3px solid var(--pc-consult); background: var(--pc-paper); margin: 14px 0; padding: 10px 16px; font-size: 12px; color: var(--pc-sub); }
.result-content hr { border: none; border-top: 1px solid var(--pc-rule); margin: 16px 0; }

.approver-prompt {
    background: var(--pc-paper); border: 1px solid var(--pc-rule);
    border-radius: 6px; padding: 14px 18px; margin-top: 18px;
    font-size: 13px; color: var(--pc-body); line-height: 1.55;
}
.approver-prompt strong { color: var(--pc-consult); font-weight: 500; }

.output-footer {
    background: var(--pc-paper); padding: 14px 26px;
    border-top: 1px solid var(--pc-rule);
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.mini-btn {
    background: white; border: 1px solid var(--pc-consult-line); color: var(--pc-consult);
    border-radius: 5px; padding: 7px 13px; font-size: 12px; cursor: pointer;
    font-family: var(--font-sans);
}
.mini-btn:hover { background: var(--pc-consult-tint); }
.mini-btn.escalate { color: var(--pc-amber); border-color: #e8d2a4; }
.mini-btn.escalate:hover { background: var(--pc-amber-tint); }
.escalated-confirm { font-size: 12px; color: var(--pc-amber); font-style: italic; }
.output-footer-info { margin-left: auto; font-size: 11px; color: var(--pc-sub); }

/* ── Loading ───────────────────────────────────────────────── */
.loading {
    text-align: center; padding: 50px 0; color: var(--pc-sub); font-size: 14px;
}
.loading-dots span {
    display: inline-block; width: 8px; height: 8px; background: var(--pc-consult);
    border-radius: 50%; margin: 0 3px; animation: pulse 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

/* ── Error state ───────────────────────────────────────────── */
.error {
    background: var(--pc-red-tint); color: var(--pc-red);
    padding: 14px 18px; border-radius: 6px; font-size: 13px;
}

/* ── Admin table ───────────────────────────────────────────── */
.admin-table {
    width: 100%; border-collapse: collapse; font-size: 13px;
}
.admin-table th {
    text-align: left; padding: 10px 8px; font-weight: 500;
    color: var(--pc-consult); border-bottom: 2px solid var(--pc-consult-line);
}
.admin-table td {
    padding: 10px 8px; border-bottom: 1px solid var(--pc-rule);
    vertical-align: top;
}
.admin-table tbody tr:hover { background: var(--pc-paper); }

.rating-pill {
    display: inline-block; padding: 2px 8px; border-radius: 3px;
    font-size: 11px; font-weight: 500;
}
.rating-pill.red { background: var(--pc-red-tint); color: var(--pc-red); }
.rating-pill.amber { background: var(--pc-amber-tint); color: var(--pc-amber); }
.rating-pill.green { background: var(--pc-green-tint); color: var(--pc-green); }
.rating-pill.unrated { background: var(--pc-rule); color: var(--pc-sub); }

.code-block {
    background: var(--pc-paper); border: 1px solid var(--pc-rule);
    border-radius: 6px; padding: 12px; font-family: var(--font-mono);
    font-size: 12px; white-space: pre-wrap; overflow-x: auto;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: white; border-top: 1px solid var(--pc-rule);
    padding: 18px 0; margin-top: 60px; font-size: 11px; color: var(--pc-soft-sub);
}
.site-footer-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 28px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 700px) {
    .grid { grid-template-columns: 1fr; }
    .site-nav { display: none; }
    .actions { flex-wrap: wrap; }
    .actions-info { width: 100%; margin-left: 0; margin-top: 8px; }
    .admin-table { font-size: 12px; }
    .admin-table th, .admin-table td { padding: 8px 4px; }
}

/* ── Division pills (top-right) ───────────────────────────── */
/* Added during Phase 1.5 - match paradigm.co.uk header treatment */
:root {
    --pc-mortgages: #9070A0;
    --pc-protect:   #289088;
}

.site-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-pills {
    display: flex;
    gap: 4px;
}

.pill {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    line-height: 1;
    transition: transform 120ms ease, filter 120ms ease;
}

.pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.pill-group     { background: var(--pc-group); }
.pill-consult   { background: var(--pc-consult); }
.pill-mortgages { background: var(--pc-mortgages); }
.pill-protect   { background: var(--pc-protect); }

@media (max-width: 700px) {
    .site-pills { display: none; }
}

/* ============================================================
   FinProm Check v2 additions.

   Append to wwwroot/css/paradigm.css.

   The custom property block below is defensive. The v2 page markup referred to
   --pc-rule and --pc-paper, which the v2.0 draft assumed existed. Confirmed in use
   already are --pc-consult and --pc-sub. If the two new ones are already defined
   further up the file, delete the :root block here so the existing values win.
   ============================================================ */


/* Channel picker ------------------------------------------------ */

.channel-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.channel-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--pc-rule, #E5E7EB);
    border-radius: 20px;
    background: var(--pc-paper, #FAFAF7);
    cursor: pointer;
    font-size: 13px;
    user-select: none;
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.channel-check input {
    margin: 0;
    accent-color: var(--pc-consult, #406088);
}

.channel-check.is-selected {
    background: var(--pc-consult, #406088);
    border-color: var(--pc-consult, #406088);
    color: #FFFFFF;
}

.channel-check:focus-within {
    outline: 2px solid var(--pc-consult, #406088);
    outline-offset: 2px;
}

.field-required {
    color: #B91C1C;
}

.field-error {
    color: #B91C1C;
    font-size: 12px;
    margin-top: 6px;
}

.field-ok {
    color: #065F46;
    font-size: 12px;
    margin-top: 6px;
}

/* Helpdesk referral banner -------------------------------------- */

.helpdesk-banner {
    background: #FEF3C7;
    border-left: 4px solid #B45309;
    padding: 14px 28px;
}

.helpdesk-banner-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B45309;
    margin-bottom: 6px;
}

.helpdesk-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Assessment detail toggle -------------------------------------- */

.detail-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pc-sub, #888888);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pc-rule, #E5E7EB);
    cursor: pointer;
    user-select: none;
}

.detail-toggle input {
    margin: 0;
    accent-color: var(--pc-consult, #406088);
}

/* Recheck and confirmation strips ------------------------------- */

.recheck-badge {
    margin-top: 20px;
    padding: 10px 14px;
    background: #F0F9FF;
    border-left: 3px solid #0369A1;
    font-size: 13px;
}

.rewrite-panel {
    border-top: 1px solid var(--pc-rule, #E5E7EB);
    background: var(--pc-paper, #FAFAF7);
}

.email-sent-confirm {
    margin: 16px 28px;
    padding: 10px 14px;
    background: #ECFDF5;
    border-left: 3px solid #10B981;
    font-size: 13px;
    color: #065F46;
}

.image-preview {
    margin-top: 10px;
    max-width: 220px;
    max-height: 220px;
    border: 1px solid var(--pc-rule, #E5E7EB);
    border-radius: 4px;
    display: block;
}

/* ============================================================
   Admin detail panel additions, v2.
   Append to wwwroot/css/paradigm.css.
   ============================================================ */

.admin-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-section {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--pc-consult, #406088);
}

/* Key and value table in the detail panel */
.admin-meta {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-meta th {
    text-align: left;
    vertical-align: top;
    width: 190px;
    padding: 5px 12px 5px 0;
    font-weight: 500;
    color: var(--pc-sub, #888888);
    white-space: nowrap;
}

.admin-meta td {
    padding: 5px 0;
    vertical-align: top;
}

.admin-image {
    max-width: 340px;
    max-height: 340px;
    border: 1px solid var(--pc-rule, #D8D4CC);
    border-radius: 4px;
    display: block;
}

/* Row flags in the submissions table */
.admin-flags {
    white-space: nowrap;
}

.admin-flag {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    margin-right: 3px;
    cursor: default;
}

.flag-referral {
    background: #FEF3C7;
    color: #B45309;
}

.flag-image {
    background: #E0E7FF;
    color: #3730A3;
}

/* Highlight the row whose detail is open above */
.admin-table tbody tr.is-viewing {
    background: var(--pc-paper, #FAFAF7);
    box-shadow: inset 3px 0 0 var(--pc-consult, #406088);
}

/* Escalate action inside the Helpdesk referral banner ----------- */

.helpdesk-banner-action {
    display: inline-block;
    margin-top: 12px;
}

/* ------------------------------------------------------------------
   Dead circuit notice.

   Blazor flips this to display:block when the server connection fails.
   Without it a failed circuit is silent: the page keeps showing the last
   state it rendered and every button stops working, which reads as a
   broken button rather than a broken connection.
   ------------------------------------------------------------------ */
#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 22px;
    background: #b3261e;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

#blazor-error-ui a {
    color: #fff;
    text-decoration: underline;
    margin-left: 14px;
}

/* Status messages on the access page. Sticky because the page is long. */
.access-status {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 8px 0;
    background: var(--pc-bg, #f4f3ee);
}

/* ------------------------------------------------------------------
   Landing page and terms of use.

   Added 25 August 2026, when /welcome became the page every unauthenticated
   visitor lands on rather than a fork nobody saw. No new colours: everything
   below uses the Paradigm Consulting tokens already defined at the top of
   this file.
   ------------------------------------------------------------------ */

.hero {
    background: var(--pc-consult);
    color: #ffffff;
    padding: 56px 0 48px;
}

.hero-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 28px;
}

.hero-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-title {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
}

.hero-lede {
    margin: 0 0 26px;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-hero {
    display: inline-block;
    background: #ffffff;
    color: var(--pc-consult);
    border-radius: 6px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.btn-hero:hover { background: var(--pc-consult-tint); }

.btn-hero-ghost {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    padding: 11px 22px;
    font-size: 15px;
    text-decoration: none;
}

.btn-hero-ghost:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.1); }

.hero-note {
    margin: 22px 0 0;
    max-width: 620px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

/* Sections below the hero ---------------------------------------- */

.landing-section { margin: 40px 0; }

.landing-heading {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--pc-consult);
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature {
    background: white;
    border: 1px solid var(--pc-rule);
    border-radius: 8px;
    padding: 20px 22px;
}

.feature-rule {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--pc-consult);
    margin-bottom: 12px;
}

.feature-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pc-body);
}

.feature p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--pc-sub);
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--pc-rule);
    border-radius: 8px;
    padding: 18px 22px;
}

.step-number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pc-consult-tint);
    color: var(--pc-consult);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
}

.step-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pc-body);
}

.step p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--pc-sub);
}

.landing-fineprint {
    margin: 22px 0 0;
    font-size: 12px;
    color: var(--pc-sub);
}

.landing-fineprint a { color: var(--pc-consult); }

/* Terms of use ---------------------------------------------------- */

.terms-meta {
    margin: 0;
    font-size: 13px;
    color: var(--pc-sub);
}

.legal { line-height: 1.65; }

.legal h2 {
    margin: 26px 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pc-consult);
}

.legal h2:first-child { margin-top: 0; }

.legal p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--pc-body);
    max-width: 68ch;
}

.legal a { color: var(--pc-consult); }

.accept-bar {
    background: var(--pc-amber-tint);
    border-left: 3px solid var(--pc-amber);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.55;
}

.accept-bar strong { color: var(--pc-amber); font-weight: 500; }

.footer-link { color: var(--pc-soft-sub); text-decoration: underline; }
.footer-link:hover { color: var(--pc-consult); }
.footer-sep { margin: 0 6px; color: var(--pc-rule); }

@media (max-width: 700px) {
    .hero { padding: 40px 0 34px; }
    .hero-title { font-size: 27px; }
    .landing-grid { grid-template-columns: 1fr; }
}
