/* teorihuset.no — homepage / app-visitor conversion page
 *
 * Design direction: calm Norwegian business site. Trust and clarity over
 * flair. Generous whitespace, one accent colour, neutral sans (Inter /
 * Inter Tight — consistent with the niche LPs). No decorative eyebrows,
 * counters or oversized artistic headings.
 */

:root {
  --bg:        #FBFBF9;
  --surface:   #FFFFFF;
  --surface-2: #F4F5F3;
  --ink:       #1A1D21;
  --ink-2:     #43484E;
  --ink-3:     #6B7177;
  --line:      #E4E5E1;
  --line-2:    #D3D5D0;

  --accent:    #1F4FD8;       /* deep, trustworthy blue */
  --accent-ink:#163CA8;
  --accent-soft:#EAF0FE;

  --ok:        #157A4E;       /* bestått-garanti / success */
  --ok-soft:   #E7F4ED;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1120px;
  /* Layered, soft shadows — depth without heaviness (Stripe/fintech feel). */
  --shadow-sm: 0 1px 2px rgba(20,24,30,.05), 0 1px 3px rgba(20,24,30,.04);
  --shadow:    0 2px 4px rgba(20,24,30,.04), 0 10px 26px rgba(20,24,30,.08);
  --shadow-lg: 0 4px 10px rgba(20,24,30,.05), 0 26px 56px rgba(20,24,30,.13);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Inter Tight', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; letter-spacing: -0.012em; color: var(--ink); }
h1 { font-size: clamp(28px, 4.4vw, 40px); font-weight: 700; }
h2 { font-size: clamp(23px, 3vw, 30px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 600; }
p  { color: var(--ink-2); }
a  { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 680px; }

section { padding: 64px 0; }
.section-head { max-width: 620px; margin-bottom: 36px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p  { font-size: 16px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: background .15s ease, border-color .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary:disabled { background: var(--line-2); color: #fff; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg { padding: 16px 28px; font-size: 16px; width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---- Header ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,249,.85); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 18px; text-decoration: none; letter-spacing: -0.02em; }
.brand-mark { display: block; width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 2px 6px rgba(20,40,60,.12); }

/* ---- Hero ---- */
.hero {
  position: relative; padding: 56px 0 72px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(31,79,216,.10) 0%, rgba(31,79,216,0) 55%),
    linear-gradient(180deg, var(--accent-soft) 0%, rgba(234,240,254,0) 64%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-bg-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .11;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
}
.hero-copy { min-width: 0; }
.hero-continuity {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--accent-ink);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px 7px 12px; margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-continuity svg { color: var(--accent); }
.hero h1 { margin-bottom: 16px; max-width: 17ch; }
.hero .lead { font-size: 18px; color: var(--ink-2); max-width: 50ch; margin-bottom: 28px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-cta-row .btn-primary { box-shadow: 0 6px 16px rgba(31,79,216,.28); }
.hero-microtrust {
  display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 26px;
  font-size: 14px; color: var(--ink-2);
}
.hero-microtrust span { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.hero-microtrust svg { color: var(--ok); }

/* Garanti seal — a small element with weight, not just text */
.seal {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 16px; margin-top: 24px; box-shadow: var(--shadow-sm);
}
.seal-mark {
  flex: none; width: 38px; height: 38px; border-radius: 999px;
  background: var(--ok-soft); color: var(--ok); display: grid; place-items: center;
}
.seal-text b { font-family: var(--font-head); font-size: 14.5px; color: var(--ink); display: block; }
.seal-text span { font-size: 13px; color: var(--ink-3); }

/* ---- Device mockup (app-faithful render — 2026-06 "ett samlet uttrykk") ----
 * Mirrors the live app quiz screen: #EDF1F5 canvas, navy Mulish headings,
 * white option cards with a green check on the correct answer, yellow "Neste".
 * Colours are hardcoded (not the page's blue tokens) so the phone reads as
 * the actual product regardless of the surrounding landing-page theme. */
.hero-visual { display: flex; justify-content: center; }
.device {
  position: relative; width: 290px; flex: none;
  background: #11151B; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,24,30,.06);
}
.device::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #11151B; border-radius: 0 0 16px 16px; z-index: 3;
}
.device-screen {
  position: relative; background: #EDF1F5; border-radius: 32px; overflow: hidden;
  aspect-ratio: 9 / 19; display: flex; flex-direction: column;
  font-family: 'Mulish', var(--font);
}
.appx-top { height: 34px; }
/* App bar: ‹ Tilbake · count pill · menu */
.appx-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 15px 10px;
}
.appx-back {
  display: inline-flex; align-items: center; gap: 2px;
  font-weight: 800; font-size: 12.5px; color: #15293B;
}
.appx-count {
  font-weight: 800; font-size: 12px; color: #15293B;
  background: #fff; border: 1px solid #E7ECF1; border-radius: 999px;
  padding: 4px 14px; box-shadow: 0 2px 6px rgba(20,40,60,.05);
}
.appx-menu { color: #15293B; display: inline-flex; }
.appx-body { padding: 6px 16px 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.appx-plan {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12.5px; color: #5C7082; letter-spacing: .01em;
}
.appx-title-emoji { display: inline-block; height: 1em; width: 1em; vertical-align: -0.15em; margin-left: 0.35em; user-select: none; }
.appx-q {
  font-weight: 800; font-size: 15.5px; line-height: 1.32;
  color: #15293B; letter-spacing: -0.01em; text-align: center;
}
.appx-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.appx-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 13px; font-weight: 600; color: #15293B; background: #fff;
  border: 1px solid #E5EBF0; border-radius: 16px; padding: 14px 15px;
  box-shadow: 0 1px 2px rgba(20,40,60,.04), 0 6px 16px rgba(20,40,60,.05);
}
.appx-opt-text { flex: 1; }
.appx-opt.is-correct { background: #D9F6E7; border-color: #25C083; }
.appx-opt-check {
  flex: none; display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 999px; background: #25C083; color: #fff;
}
.appx-btn {
  margin-top: auto; background: #F5B40C; color: #15293B; text-align: center;
  font-weight: 800; font-size: 14px; padding: 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(245,180,12,.35);
}
.appx-swap {
  transition:
    opacity .65s cubic-bezier(.4, 0, .2, 1),
    transform .65s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}
.appx-swap.is-out { opacity: 0; transform: translateY(6px); }
.appx-swap.is-in  { opacity: 1; transform: none; }

/* ---- Exam picker (color-coded product grid) ---- */
.exam-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px;
}
.exam-card {
  --c: var(--accent); --soft: var(--surface-2);
  position: relative; display: flex; align-items: center; gap: 16px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; cursor: pointer; font-family: var(--font);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.exam-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--c); }
.exam-card:active { transform: translateY(-1px); }
.exam-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.exam-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }

.exam-card-icon {
  flex: none; width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; color: var(--c); background: var(--soft);
  transition: transform .16s ease;
}
.exam-card:hover .exam-card-icon { transform: scale(1.06) rotate(-2deg); }
.exam-card-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.exam-card-name { display: block; font-weight: 650; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.exam-card-sub  { display: block; font-size: 13px; color: var(--ink-3); margin-top: 4px; line-height: 1.45; }
.exam-card-go {
  flex: none; color: var(--ink-3);
  transition: transform .16s ease, color .16s ease;
}
.exam-card:hover .exam-card-go { transform: translateX(4px); color: var(--c); }
.exam-card.is-selected .exam-card-go { display: none; }
.exam-card-check {
  flex: none; width: 26px; height: 26px; border-radius: 999px;
  background: var(--accent); color: #fff; display: none; place-items: center;
}
.exam-card.is-selected .exam-card-check { display: grid; }

/* ---- Feature list ---- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px; }
.feature { display: flex; gap: 14px; }
.feature-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); flex: none; }
.feature h3 { margin-bottom: 3px; }
.feature p { font-size: 14.5px; }

/* ---- Pricing / checkout ---- */
.checkout-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: start; }

.tier-list { display: flex; flex-direction: column; gap: 12px; }
.tier {
  position: relative; text-align: left; width: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease;
  font-family: var(--font); display: flex; align-items: center; gap: 16px;
}
.tier { box-shadow: var(--shadow-sm); }
.tier:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.tier--popular { border-color: var(--accent); box-shadow: var(--shadow); }
.tier.is-selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.tier:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.tier-radio { width: 20px; height: 20px; border-radius: 999px; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; }
.tier.is-selected .tier-radio { border-color: var(--accent); background: var(--accent); color: #fff; }
.tier-body { flex: 1; }
.tier-name { font-weight: 600; font-size: 15.5px; color: var(--ink); }
.tier-tagline { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.tier-price { text-align: right; flex: none; }
.tier-amount { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); }
.tier-vat { font-size: 12px; color: var(--ink-3); }
.tier-ribbon {
  position: absolute; top: -10px; left: 18px;
  background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; letter-spacing: .01em;
}

.checkout {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); position: sticky; top: 84px;
}
.checkout-summary { padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.checkout-sumrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.checkout-sumrow strong { font-size: 15px; font-weight: 600; }
.checkout-sumamt { font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.checkout-subnote { font-size: 13px; color: var(--ink-3); margin-top: 6px; }

.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field-input {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field-input:disabled, .field-input[readonly] { background: var(--surface-2); color: var(--ink-2); cursor: default; }
.field-hint { font-size: 13px; color: var(--ink-3); margin-top: 7px; display: flex; gap: 7px; }
.field-hint.is-locked { color: var(--ok); }
.field-hint.is-warn { color: #9a6b00; }
.field-hint svg { flex: none; margin-top: 2px; }

.checkout-error {
  background: #FCEDED; color: #9F2A2A; border: 1px solid #F3C9C9;
  font-size: 14px; padding: 11px 14px; border-radius: var(--radius-sm); margin-bottom: 14px;
}
.checkout-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: 13px; color: var(--ink-3); justify-content: center; }
.checkout-trust span { display: inline-flex; align-items: center; gap: 6px; }
.checkout-legal { margin-top: 14px; font-size: 12.5px; line-height: 1.5; color: var(--ink-3); text-align: center; }
.checkout-legal a { text-decoration: underline; }

/* ---- Trust band ---- */
.trust-band { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.trust-chip svg { color: var(--ok); }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 14.5px; color: var(--ink); }
.quote-by { font-size: 13px; color: var(--ink-3); margin-top: 12px; }

.company-line {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 6px 18px;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: 16px; font-weight: 600; color: var(--ink); text-align: left; padding: 18px 20px;
}
.faq-icon { color: var(--ink-3); transition: transform .2s ease; flex: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { font-size: 14.5px; padding: 0 20px 18px; }

/* ---- Footer ---- */
footer { background: var(--surface); border-top: 1px solid var(--line); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.footer-brand p { font-size: 14px; color: var(--ink-3); margin-top: 12px; max-width: 38ch; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col-btn {
  font-size: 14px; color: var(--ink-3); text-decoration: none;
  background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font); text-align: left;
}
.footer-col a:hover, .footer-col-btn:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}

/* ---- Mobile sticky checkout bar ---- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(20,24,30,.07);
  transform: translateY(110%); transition: transform .25s ease;
  padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; max-width: var(--maxw); margin: 0 auto; }
.stickybar-meta { display: flex; flex-direction: column; }
.stickybar-label { font-size: 13px; color: var(--ink-3); }
.stickybar-amt { font-family: var(--font-head); font-weight: 700; font-size: 17px; }

/* ---- Load animation (subtle, single) ---- */
.fade-up { opacity: 0; transform: translateY(10px); animation: fadeUp .5s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; order: 1; }
  .hero h1, .hero .lead { max-width: 24ch; }
  .hero-visual { order: 2; }
  .hero-microtrust, .hero-cta-row { justify-content: center; }
  .exam-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout { position: static; }
  .features { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  section { padding: 48px 0; }
  .hero { padding: 36px 0 48px; }
  .exam-grid { grid-template-columns: 1fr; }
  .hero-cta-row .btn { width: 100%; }
  .device { width: 248px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* === Skip-to-content link (a11y / WCAG 2.4.1) — added 2026-05-20 === */
.skip-link {
  position: absolute;
  top: -64px;
  left: 8px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font: 600 14px/1.2 system-ui, -apple-system, sans-serif;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
/* === Cross-LP footer strip (SEO cluster linking) — added 2026-05-20 === */
.ft-cross-lp {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid var(--line, rgba(0,0,0,0.1));
  font-size: 13.5px;
}
.ft-cross-lp-label {
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.65;
  margin-right: 4px;
}
.ft-cross-lp-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.ft-cross-lp-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.15s ease;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 1px;
}
.ft-cross-lp-link:hover { opacity: 1; }
@media (max-width: 540px) {
  .ft-cross-lp { font-size: 13px; gap: 6px 12px; }
}

/* ---- Niche accent (set by JS via body.niche-tinted + --accent-niche / --niche-soft).
   Brand-blue CTAs, seal-green and header logo intentionally stay untouched.
   Delete this block + the niche useEffect in app.jsx to fully revert. ---- */
.hero-bg-svg { color: var(--accent); }
body.niche-tinted .hero-bg-svg { color: var(--accent-niche, var(--accent)); }
body.niche-tinted .hero-continuity { border-color: var(--accent-niche, var(--accent)); }
body.niche-tinted .hero-continuity svg { color: var(--accent-niche, var(--accent)); }
body.niche-tinted .tier--popular { border-color: var(--accent-niche, var(--accent)); }
body.niche-tinted .tier.is-selected { border-color: var(--accent-niche, var(--accent)); box-shadow: 0 0 0 2px var(--accent-niche, var(--accent)), var(--shadow); }
body.niche-tinted .tier.is-selected .tier-radio { border-color: var(--accent-niche, var(--accent)); background: var(--accent-niche, var(--accent)); }
body.niche-tinted .tier-ribbon { background: var(--accent-niche, var(--accent)); }
body.niche-tinted .feature-ic { background: var(--niche-soft, var(--accent-soft)); color: var(--accent-niche, var(--accent)); }
/* Cookie banner theme moved to consent-styles.css (shared across all LPs). */