/* OpiFix prototype — design system */
:root {
  --bg: #f5f0e4;            /* cream (secondary) */
  --surface: #ffffff;
  --ink: #1f2a24;
  --ink-soft: #5f6b62;
  --line: #e6e0d2;          /* warm hairline to suit cream */
  --brand: #205a40;         /* OpiFix green (primary) */
  --brand-dark: #17402c;
  --brand-soft: #e7f0ea;    /* pale green tint */
  --accent: #205a40;        /* CTAs in brand green */
  --green: #1f9d57;
  --green-soft: #e3f6ec;
  --amber: #c77700;
  --amber-soft: #fdf2dc;
  --red: #d23b3b;
  --red-soft: #fbe6e6;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(20,30,50,.08), 0 6px 20px rgba(20,30,50,.05);
  --shadow-lg: 0 10px 40px rgba(20,30,50,.14);
  --maxw: 1120px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .4em; }
h1 { font-size: 1.9rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 .8em; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--brand);
  border-bottom: 1px solid var(--brand-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; height: 94px;
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 8px; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 78px; width: auto; display: block; }
/* On narrow screens the slogan logo + nav can't share one row without
   overlapping, so stack them: logo centred on top, nav centred underneath.
   The logo also scales by viewport width so it never runs off the edge. */
@media (max-width: 600px) {
  .topbar { flex-direction: column; align-items: center; justify-content: center;
    height: auto; min-height: 0; padding: 8px 12px; gap: 4px; }
  .brand { justify-content: center; width: 100%; }
  .brand-logo { height: auto; max-height: 50px; max-width: 80vw; width: auto; object-fit: contain; }
  .topnav { width: 100%; justify-content: center; }
}
@media (max-width: 380px) { .brand-logo { max-height: 44px; } }
.topnav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.topnav .navlink { padding: 8px 12px; border-radius: 8px; color: rgba(245,240,228,.9); font-weight: 600; font-size: .9rem; }
.topnav .navlink:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.topnav .navlink.active { color: #fff; background: rgba(255,255,255,.2); }
.login-group { display: inline-flex; align-items: center; gap: 2px; }
.login-group .login-sep { color: rgba(245,240,228,.5); font-weight: 400; padding: 0 1px; }
.consent { display: grid; gap: 10px; margin: 4px 0 14px; }
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start;
  font-size: .82rem; color: var(--ink-soft); line-height: 1.45; cursor: pointer; }
.consent-row input { width: auto; margin: 2px 0 0; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { margin-bottom: 2px; }
.legal .updated { color: var(--ink-soft); font-size: .85rem; margin: 0 0 8px; }
.legal .lead { color: var(--ink-soft); font-size: 1.02rem; }
.legal h2 { font-size: 1.16rem; margin: 26px 0 8px; }
.legal p, .legal li { line-height: 1.62; }
.legal ul { margin: 8px 0 8px 20px; display: grid; gap: 6px; }
.legal table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: .86rem; }
.legal th, .legal td { text-align: left; border: 1px solid var(--line); padding: 8px 10px; vertical-align: top; }
.legal th { background: var(--bg); }
.legal code { background: var(--bg); padding: 1px 5px; border-radius: 5px; font-size: .85em; }

/* Cookie consent banner (Manage consent) */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  display: flex; justify-content: center; padding: 16px; pointer-events: none; }
.cookie-card { pointer-events: auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg); max-width: 560px; width: 100%; padding: 18px 20px; }
.cookie-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cookie-head b { font-size: 1.05rem; }
.cookie-logo { width: 28px; height: 28px; border-radius: 6px; }
.cookie-intro { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 12px; }
.cookie-cat { background: var(--bg); border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
.cookie-cat-h { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700; font-size: .92rem; }
.cookie-cat p { font-size: .8rem; color: var(--ink-soft); margin: 6px 0 0; line-height: 1.45; }
.cookie-always { color: #1f8a4c; font-weight: 700; font-size: .82rem; white-space: nowrap; }
.cookie-actions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; justify-content: center; min-width: 120px; }
.cookie-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider { position: absolute; inset: 0; cursor: pointer; background: #c4ccc7; border-radius: 999px; transition: .2s; }
.cookie-slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: .2s; }
.cookie-switch input:checked + .cookie-slider { background: #e8772e; }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(18px); }

/* Inline form error banner (shown at the top of a form box) */
.form-err { background: var(--red-soft); border: 1px solid #f1c4c4; color: #a32020;
  border-radius: 8px; padding: 9px 12px; margin-bottom: 12px; font-size: .88rem; font-weight: 600; }
.form-err[hidden] { display: none; }

/* Modal dialog (forgot-password popup, etc.) */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,25,20,.45); z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-card { background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-lg);
  max-width: 420px; width: 100%; padding: 20px 22px; }
.modal-card h3 { margin-bottom: 4px; }
.role-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 6px 5px 12px; font-size: .85rem; }
.role-pill .who { font-weight: 700; }

/* ---------- layout ---------- */
.app { max-width: var(--maxw); margin: 0 auto; padding: 24px 20px 60px; }
.app.full { max-width: 100%; padding: 0; }
.grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.spread { justify-content: space-between; }
.muted { color: var(--ink-soft); }
.small { font-size: .85rem; }
.center { text-align: center; }
.mt { margin-top: 16px; } .mb { margin-bottom: 16px; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px; }
.card.pad-lg { padding: 24px; }
.card.click { cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.card.click:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font-weight: 600; font-size: .9rem;
  padding: 9px 16px; border-radius: 9px; transition: background .12s, border-color .12s, transform .05s; }
.btn:hover { background: var(--bg); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-dark); }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.accent:hover { filter: brightness(.95); }
.btn.success { background: var(--green); border-color: var(--green); color: #fff; }
.btn.success:hover { filter: brightness(.95); }
.btn.danger-outline { color: var(--red); border-color: #f1c4c4; }
.btn.danger-outline:hover { background: var(--red-soft); }
.btn.sm { padding: 6px 11px; font-size: .82rem; }
.btn.block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- badges / pills ---------- */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; letter-spacing: .02em; text-transform: uppercase; }
.badge.green { background: var(--green-soft); color: var(--green); }
.badge.amber { background: var(--amber-soft); color: var(--amber); }
.badge.red { background: var(--red-soft); color: var(--red); }
.badge.blue { background: var(--brand-soft); color: var(--brand); }
.badge.grey { background: var(--bg); color: var(--ink-soft); }
.chip { display: inline-flex; align-items: center; gap: 5px; background: var(--bg); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px; font-size: .8rem; color: var(--ink-soft); }
.verified { color: var(--green); font-weight: 700; }

.stars { color: #f5a623; letter-spacing: 1px; }
.rating-num { font-weight: 800; }

/* ---------- forms ---------- */
label { display: block; font-weight: 600; font-size: .85rem; margin: 0 0 5px; }
input, select, textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
textarea { min-height: 90px; resize: vertical; }
.field { margin-bottom: 14px; }
.help { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- hero / landing ---------- */
.hero { background: linear-gradient(135deg, #205a40 0%, #17402c 100%); color: #fff;
  border-radius: 18px; padding: 48px 40px; margin-bottom: 28px; box-shadow: var(--shadow-lg); }
/* No artificial max-width: the heading/intro use the full hero width and only
   wrap when the viewport actually gets narrower (was clamped to 16ch/54ch,
   which forced a squashed multi-line column even on wide screens). */
.hero h1 { font-size: 2.4rem; color: #fff; max-width: none; }
.hero p { color: #dceae0; font-size: 1.05rem; max-width: none; }
.searchbar { background: #fff; border-radius: 14px; padding: 14px; display: grid; gap: 10px;
  grid-template-columns: 1.4fr 1fr .9fr .9fr auto; align-items: end; box-shadow: var(--shadow); }
.searchbar label { color: var(--ink-soft); }
@media (max-width: 860px) { .searchbar { grid-template-columns: 1fr; } }
.searchbar .svc-field { grid-column: 1 / -1; margin-bottom: 2px; }
/* Homepage search omits the Min-rating filter (kept on the results page),
   so it uses a tighter 3-column row: postcode · within · button. */
.searchbar-home { grid-template-columns: 1.6fr 1fr auto; }
@media (max-width: 860px) { .searchbar-home { grid-template-columns: 1fr; } }
/* Live postcode autocomplete */
.pc-ac { position: relative; }
.pc-ac-input { width: 100%; }
.pc-ac-list { position: absolute; top: calc(100% + 2px); left: 0; right: 0; z-index: 40;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); max-height: 240px; overflow-y: auto; }
.pc-ac-list[hidden] { display: none; }
.pc-ac-item { padding: 9px 12px; cursor: pointer; font-size: .9rem; color: var(--ink); }
.pc-ac-item:hover { background: var(--brand-soft); }
.svc-multi { display: flex; flex-wrap: wrap; gap: 6px; max-height: 132px; overflow-y: auto; }
.svc-multi .svc-chip { cursor: pointer; background: var(--bg); color: var(--ink-soft); user-select: none; }
.svc-multi .svc-chip.on { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-dark); font-weight: 600; }
.stat-strip { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.stat-strip .s { color: #cfe0d5; }
.stat-strip .s b { display: block; color: #fff; font-size: 1.5rem; }

.svc-grid .svc { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 10px; text-align: center; }
.svc .ic { font-size: 1.8rem; }
.svc .nm { font-weight: 600; font-size: .9rem; }
/* branded service badge icons */
.svc-img { width: 52px; height: 52px; object-fit: contain; display: block; }
.svc-ic { width: 18px; height: 18px; object-fit: contain; vertical-align: -4px; }

/* ---------- company cards ---------- */
.co-logo { width: 46px; height: 46px; border-radius: 11px; background: var(--brand-soft);
  display: grid; place-items: center; font-size: 1.4rem; flex: none; overflow: hidden; }
.co-logo.lg { width: 64px; height: 64px; font-size: 1.9rem; }
.co-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.co-logo.brandfill { background: var(--brand); }
.co-logo.brandfill img { object-fit: contain; padding: 22%; box-sizing: border-box; }
.logo-preview { width: 64px; height: 64px; border-radius: 11px; object-fit: cover;
  border: 1px solid var(--line); display: block; flex: none; }
span.logo-preview { display: grid; place-items: center; overflow: hidden; }
span.logo-preview.brandfill { background: var(--brand); }
span.logo-preview img { width: 60%; height: 60%; object-fit: contain; }
/* ---------- reliability score + achievements ---------- */
.rel { margin: 6px 0; }
.rel-score { font-weight: 800; font-size: 1.4rem; color: var(--brand); }
.ach-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ach { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; border: 1px solid var(--line); background: var(--surface); }
.ach.on { background: var(--brand-soft); color: var(--brand-dark); border-color: var(--brand-soft); }
.ach.off { opacity: .45; filter: grayscale(1); }
.ach-ic { font-size: 1rem; }
.list { display: flex; flex-direction: column; gap: 12px; }

/* ---------- portal shell ---------- */
.portal { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 88px); }
@media (max-width: 860px) { .portal { grid-template-columns: 1fr; } }
.side { background: var(--surface); border-right: 1px solid var(--line); padding: 18px 12px; }
.side .who { padding: 10px 12px; margin-bottom: 10px; border-radius: 10px; background: var(--bg); }
.side .who b { display: block; }
.side a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  color: var(--ink-soft); font-weight: 600; font-size: .9rem; }
.side a:hover { background: var(--bg); text-decoration: none; }
.side a.active { background: var(--brand-soft); color: var(--brand); }
.side a .ic { width: 18px; text-align: center; }
.portal-main { padding: 24px; max-width: 1000px; }

.kpi { display: flex; flex-direction: column; gap: 2px; }
.kpi .n { font-size: 1.9rem; font-weight: 800; }
.kpi .l { color: var(--ink-soft); font-size: .85rem; }

/* ---------- tables ---------- */
table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); font-size: .9rem; }
table.data th { color: var(--ink-soft); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; }
table.data tr:last-child td { border-bottom: none; }

/* ---------- calendar ---------- */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal .day { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 8px; min-height: 92px; }
.cal .day .dow { font-size: .72rem; color: var(--ink-soft); text-transform: uppercase; font-weight: 700; }
.cal .day .dom { font-weight: 800; margin-bottom: 6px; }
.cal .day.today { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft); }
.cal .ev { background: var(--brand-soft); color: var(--brand-dark); font-size: .74rem; font-weight: 600;
  padding: 3px 6px; border-radius: 6px; margin-bottom: 4px; }
@media (max-width: 860px) { .cal { grid-template-columns: 1fr; } .cal .day { min-height: auto; } }

/* ---------- photos / thumbs ---------- */
.thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumbs img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }

/* ---------- quote builder ---------- */
.qline { display: grid; grid-template-columns: 1fr 120px auto; gap: 8px; margin-bottom: 8px; align-items: center; }
.qline .rm { cursor: pointer; color: var(--red); border: none; background: none; font-size: 1.1rem; }
.qtotal { font-size: 1.3rem; font-weight: 800; }

/* ---------- empty states ---------- */
.empty { text-align: center; color: var(--ink-soft); padding: 40px 20px; }
.empty .ic { font-size: 2.2rem; display: block; margin-bottom: 8px; }

/* ---------- timeline ---------- */
.steps { display: flex; gap: 0; margin: 6px 0 4px; }
.steps .step { flex: 1; text-align: center; font-size: .72rem; color: var(--ink-soft); position: relative; padding-top: 18px; }
.steps .step::before { content: ''; position: absolute; top: 5px; left: 50%; width: 11px; height: 11px;
  border-radius: 50%; background: var(--line); transform: translateX(-50%); }
.steps .step::after { content: ''; position: absolute; top: 10px; left: 50%; width: 100%; height: 2px; background: var(--line); }
.steps .step:last-child::after { display: none; }
.steps .step.done::before { background: var(--green); }
.steps .step.done { color: var(--green); font-weight: 700; }

/* ---------- toast ---------- */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 100; }
.toast { background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow-lg);
  font-size: .9rem; max-width: 320px; animation: slidein .2s ease; }
.toast.ok { background: #16331f; border-left: 4px solid var(--green); }
.toast.info { background: #14233f; border-left: 4px solid var(--brand); }
@keyframes slidein { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--surface); padding: 34px 20px 24px;
  color: var(--ink-soft); font-size: .85rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr; gap: 28px; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); margin: 0 0 10px; }
.footer-col a { display: block; color: var(--ink-soft); padding: 3px 0; }
.footer-col a:hover { color: var(--brand); text-decoration: none; }
.footer-brand .footer-word { font-weight: 800; font-size: 1.25rem; color: var(--brand); letter-spacing: -.01em; }
.footer-brand .footer-tag { margin: 8px 0 10px; max-width: 34ch; line-height: 1.5; }
.footer-brand .footer-contact { margin: 0; }
.footer-brand .footer-contact a { color: var(--brand); font-weight: 600; }
.footer-bottom { max-width: var(--maxw); margin: 24px auto 0; padding-top: 16px;
  border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: .8rem; line-height: 1.5; }
.footer-bottom .footer-legal-entity { color: var(--ink-soft); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--line); margin: 16px 0; }
.notice { background: var(--amber-soft); border: 1px solid #f0dca8; color: #6b4e00; padding: 10px 14px;
  border-radius: 9px; font-size: .85rem; }
.tag-list { display: flex; gap: 6px; flex-wrap: wrap; }

/* ---------- gamification ---------- */
.rank-pill { display:inline-flex; align-items:center; gap:6px; background:var(--brand-soft); color:var(--brand-dark);
  border:1px solid #cfe0d5; padding:4px 11px; border-radius:999px; font-weight:700; font-size:.8rem; }
.xpbar { height:8px; background:var(--line); border-radius:999px; overflow:hidden; margin:7px 0 4px; }
.xpbar > span { display:block; height:100%; background:var(--brand); border-radius:999px; transition:width .4s ease; }
.diff { display:inline-flex; align-items:center; gap:4px; font-size:.68rem; font-weight:800; padding:2px 8px;
  border-radius:999px; text-transform:uppercase; letter-spacing:.03em; }
.diff.bronze{ background:#f1e6d5; color:#8a6d3b; } .diff.silver{ background:#e9ecef; color:#5b6675; }
.diff.gold{ background:#fbf0cf; color:#9a7a0b; } .diff.platinum{ background:#dfeaf5; color:#2f5d99; }
.diff.mythic{ background:#efe1f5; color:#6f3aa0; }
.clan-card { background:linear-gradient(135deg,#205a40,#17402c); color:#fff; border-radius:14px; padding:20px; box-shadow:var(--shadow); }
.clan-card h2 { color:#fff; }
.clan-card .rank-pill { background:rgba(255,255,255,.16); color:#fff; border-color:rgba(255,255,255,.28); }
.clan-card .xpbar { background:rgba(255,255,255,.22); } .clan-card .xpbar > span { background:#dceae0; }
.rank-ic { width:20px; height:20px; object-fit:contain; vertical-align:middle; flex:none; }
.clan-ic { width:40px; height:40px; object-fit:contain; flex:none; }
.diff-ic { width:14px; height:14px; object-fit:contain; }
.rank-pill img { width:18px; height:18px; object-fit:contain; }
/* level-up celebration */
.levelup-overlay { position:fixed; inset:0; background:rgba(23,40,30,.62); display:grid; place-items:center; z-index:200; animation:slidein .2s ease; padding:20px; }
.levelup-card { background:#fff; border-radius:18px; padding:28px 32px 24px; text-align:center; max-width:360px; box-shadow:var(--shadow-lg); }
.levelup-card .burst { font-size:1.7rem; letter-spacing:6px; }
.levelup-icon { width:130px; height:130px; object-fit:contain; margin:6px auto 2px; display:block; filter:drop-shadow(0 6px 14px rgba(20,30,50,.18)); }
.levelup-card h2 { color:var(--brand); margin:.25em 0 .1em; }
