/* Rippa satellite base stylesheet. Each site sets its own theme variables and
   archetype classes on <html> (data-archetype, data-mode); the rules below react to them. */
:root {
  --navy: #182d82; --ink: #060b1f; --blue: #2463ff; --sky: #8fc0ff; --red: #e5281e; --white: #fff;
  /* theme-overridable */
  --display: "Inter", system-ui, sans-serif; --body: "Inter", system-ui, sans-serif;
  --radius: 12px; --wrap: 1280px; --gutter: clamp(16px, 4vw, 40px);
  --accent: var(--blue); --accent-text: #fff;
  --display-weight: 800; --display-transform: none; --display-spacing: -.02em;
  /* light mode defaults */
  --bg: #f5f7fb; --bg2: #ffffff; --panel: #ffffff; --panel2: #eef2fa; --line: #dfe4ef; --text: #101528; --muted: #5d6784; --heading: #060b1f;
  --hero-bg: var(--ink); --hero-text: #fff; --hero-muted: rgba(255,255,255,.75);
  --hdr-bg: #ffffff; --hdr-text: #101528; --hdr-line: #dfe4ef; --logo-white: 0;
  --ftr-bg: #060b1f; --ftr-text: rgba(255,255,255,.72); --ftr-heading: #fff;
}
html[data-mode="dark"] {
  --bg: #060b1f; --bg2: #0d1533; --panel: #0d1533; --panel2: #121c44; --line: rgba(255,255,255,.1); --text: #e8ecf7; --muted: #9aa5c8; --heading: #fff;
  --hero-bg: #060b1f; --hdr-bg: rgba(6,11,31,.9); --hdr-text: #e8ecf7; --hdr-line: rgba(255,255,255,.1); --logo-white: 1;
  --ftr-bg: #040816; --ftr-text: #9aa5c8; --ftr-heading: #fff;
}
html[data-mode="cream"] {
  --bg: #faf7f1; --bg2: #ffffff; --panel: #ffffff; --panel2: #f1ece2; --line: #e2dccd; --text: #1c2030; --muted: #6b6f80; --heading: #060b1f;
  --hero-bg: #f1ece2; --hero-text: #060b1f; --hero-muted: #6b6f80; --hdr-bg: #faf7f1; --hdr-text: #1c2030; --hdr-line: #e2dccd;
  --ftr-bg: #1c2030; --ftr-text: rgba(255,255,255,.72);
}
html[data-mode="navy"] {
  --bg: #eef2fa; --bg2: #ffffff; --panel: #ffffff; --panel2: #e2e9f8; --line: #cfd8ec; --text: #101528; --muted: #55608a; --heading: #182d82;
  --hero-bg: #182d82; --hero-text: #fff; --hero-muted: rgba(255,255,255,.78); --hdr-bg: #182d82; --hdr-text: #fff; --hdr-line: rgba(255,255,255,.15); --logo-white: 1;
  --ftr-bg: #0f1d5c; --ftr-text: rgba(255,255,255,.72);
}
html[data-mode="steel"] {
  --bg: #e9edf3; --bg2: #ffffff; --panel: #ffffff; --panel2: #dfe5ee; --line: #c9d2df; --text: #0b1026; --muted: #4f5b76; --heading: #0b1026;
  --hero-bg: #ffffff; --hero-text: #0b1026; --hero-muted: #4f5b76; --hdr-bg: #0b1026; --hdr-text: #fff; --hdr-line: rgba(255,255,255,.12); --logo-white: 1;
  --ftr-bg: #0b1026; --ftr-text: rgba(255,255,255,.7);
}
html[data-mode="sky"] {
  --bg: #ffffff; --bg2: #f3f8ff; --panel: #ffffff; --panel2: #e6f0ff; --line: #cfe0ff; --text: #0b1026; --muted: #4f5b76; --heading: #0b1026;
  --hero-bg: #e6f0ff; --hero-text: #0b1026; --hero-muted: #4f5b76; --hdr-bg: #ffffff; --hdr-text: #0b1026; --hdr-line: #cfe0ff;
  --ftr-bg: #182d82; --ftr-text: rgba(255,255,255,.75);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .9; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: var(--display-weight); letter-spacing: var(--display-spacing); text-transform: var(--display-transform); line-height: 1.08; margin: 0 0 .5em; color: var(--heading); }
h1 { font-size: clamp(34px, 5.2vw, 60px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: clamp(19px, 2.2vw, 24px); }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding: clamp(44px, 6.5vw, 88px) 0; }
.section--panel { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow, .tag, .kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); }
.tag { background: var(--panel2); padding: 5px 12px; border-radius: 999px; }
.lead { font-size: 18px; color: var(--muted); max-width: 64ch; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: calc(var(--radius) * .6); font-weight: 700; font-family: var(--display); text-transform: var(--display-transform); letter-spacing: .02em; font-size: 15px; border: 1px solid var(--line); background: var(--panel); color: var(--text); cursor: pointer; transition: .18s; }
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn--primary, .btn--fill { background: var(--accent); border-color: var(--accent); color: var(--accent-text); box-shadow: 0 10px 24px -12px var(--accent); }
.btn--primary:hover, .btn--fill:hover { filter: brightness(1.08); color: var(--accent-text); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--block { width: 100%; }
.hero .btn--ghost { color: var(--hero-text); }

/* ---------- header archetypes ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--hdr-bg); color: var(--hdr-text); border-bottom: 1px solid var(--hdr-line); backdrop-filter: blur(10px); }
.hdr a { color: inherit; }
.hdr__top { font-size: 13px; opacity: .8; border-bottom: 1px solid var(--hdr-line); }
.hdr__top .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; flex-wrap: wrap; }
.hdr__row { display: flex; align-items: center; gap: 22px; min-height: 72px; }
.hdr__logo img { height: 40px; width: auto; }
.hdr__logo .is-white { display: none; }
html[data-logo="white"] .hdr__logo .is-navy { display: none; }
html[data-logo="white"] .hdr__logo .is-white { display: block; }
.nav { display: flex; gap: 2px; margin-left: auto; flex-wrap: wrap; }
.nav a { padding: 8px 12px; font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: var(--display-transform); border-radius: 8px; }
.nav a:hover, .nav a.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }
.hdr__cta { margin-left: 8px; }
.hdr .btn--primary, .side .btn--primary, .band .btn--primary { color: var(--accent-text); }
.band .btn--primary { color: var(--navy); }
.nav { flex-wrap: nowrap; }
.burger { display: none; background: none; border: 1px solid var(--hdr-line); color: inherit; border-radius: 8px; padding: 7px 10px; margin-left: auto; font-size: 18px; }
@media (max-width: 960px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; background: var(--hdr-bg); padding: 12px var(--gutter) 20px; border-bottom: 1px solid var(--hdr-line); }
  .nav.is-open { display: flex; }
  .burger { display: inline-flex; }
  .hdr__cta, .hdr__top { display: none; }
}
/* masthead: centred logo, nav row below */
html[data-archetype="masthead"] .hdr__row { display: grid; grid-template-columns: 1fr auto 1fr; justify-items: center; padding: 18px 0 12px; min-height: 0; }
html[data-archetype="masthead"] .hdr__logo img { height: 48px; }
html[data-archetype="masthead"] .hdr__cta { justify-self: end; margin: 0; }
html[data-archetype="masthead"] .hdr__date { justify-self: start; font-size: 14px; opacity: .8; font-style: italic; }
html[data-archetype="masthead"] .nav { margin: 0; justify-content: center; border-top: 1px solid var(--hdr-line); padding: 4px 0; }
html[data-archetype="masthead"] .nav a { padding: 10px 14px; }
@media (max-width: 960px) { html[data-archetype="masthead"] .hdr__row { grid-template-columns: 1fr auto; } html[data-archetype="masthead"] .hdr__date { display: none; } html[data-archetype="masthead"] .nav { border: 0; } }
/* split: logo left, nav centred, cta right, thicker bar */
html[data-archetype="split"] .hdr__row { min-height: 84px; }
html[data-archetype="split"] .nav { margin: 0 auto; }
html[data-archetype="split"] .nav a { border-bottom: 2px solid transparent; border-radius: 0; }
html[data-archetype="split"] .nav a:hover, html[data-archetype="split"] .nav a.is-active { background: none; border-bottom-color: var(--accent); }
/* banner: transparent header over full-bleed hero */
html[data-archetype="banner"] .hdr { position: absolute; left: 0; right: 0; width: 100%; background: transparent; border-bottom: 1px solid rgba(255,255,255,.15); color: #fff; backdrop-filter: none; }
html[data-archetype="banner"] .hdr__top { display: none; }
html[data-archetype="banner"] body.has-sticky .hdr { position: sticky; background: var(--hdr-bg); color: var(--hdr-text); }
html[data-archetype="banner"] .nav a:hover, html[data-archetype="banner"] .nav a.is-active { background: rgba(255,255,255,.12); color: #fff; }
html[data-archetype="banner"] .hdr .burger { border-color: rgba(255,255,255,.4); }
/* minimal: thin single row, small logo, text nav right */
html[data-archetype="minimal"] .hdr__row { min-height: 60px; }
html[data-archetype="minimal"] .hdr__logo img { height: 30px; }
html[data-archetype="minimal"] .hdr__top { display: none; }
html[data-archetype="minimal"] .nav a { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
/* sidebar: fixed left column */
html[data-archetype="sidebar"] .shell { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 100vh; }
html[data-archetype="sidebar"] .side { background: var(--panel); border-right: 1px solid var(--line); padding: 22px 18px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; gap: 22px; }
.side__logo img { height: 40px; width: auto; }
.side__group { display: grid; gap: 2px; }
.side__group small { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 0 10px 6px; }
.side__group a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; color: var(--text); font-weight: 600; font-size: 14px; }
.side__group a:hover { background: var(--bg); }
.side__group a.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }
.side__group a .ic { width: 22px; height: 22px; border-radius: 6px; background: var(--panel2); display: grid; place-items: center; font-size: 12px; color: var(--accent); flex: none; }
.side__cta { margin-top: auto; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 18px; }
.side__cta strong { display: block; font-size: 16px; margin-bottom: 4px; }
.side__cta p { font-size: 13px; color: rgba(255,255,255,.7); margin: 0 0 12px; }
html[data-archetype="sidebar"] .main { padding: 0 clamp(16px, 3vw, 40px) 40px; }
html[data-archetype="sidebar"] .main .wrap { width: 100%; }
html[data-archetype="sidebar"] .topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); margin-bottom: 20px; font-size: 14px; color: var(--muted); }
html[data-archetype="sidebar"] .topbar a { color: var(--muted); }
@media (max-width: 960px) {
  html[data-archetype="sidebar"] .shell { grid-template-columns: 1fr; }
  html[data-archetype="sidebar"] .side { position: fixed; inset: 0 auto 0 0; width: min(320px, 85vw); z-index: 60; transform: translateX(-100%); transition: .25s; box-shadow: 0 0 60px rgba(0,0,0,.2); }
  html[data-archetype="sidebar"] .side.is-open { transform: none; }
  html[data-archetype="sidebar"] .burger { display: inline-flex; margin: 0; }
}

/* ---------- hero variants ---------- */
.hero { position: relative; overflow: hidden; background: var(--hero-bg); color: var(--hero-text); padding: clamp(52px, 8vw, 110px) 0; }
.hero h1, .hero h2 { color: var(--hero-text); }
.hero .lead { color: var(--hero-muted); }
.hero__bg { position: absolute; inset: 0; background: url(/img/rp-hero-dig.webp) center/cover; opacity: .16; filter: saturate(.5); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--hero-bg) 25%, transparent); }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__stats { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.hero__stats strong { display: block; font: 800 32px/1 var(--display); color: var(--hero-text); }
.hero__stats span { font-size: 12px; color: var(--hero-muted); text-transform: uppercase; letter-spacing: .1em; }
.hero__art img { filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } .hero__art { order: -1; max-width: 340px; } }
html[data-hero="full"] .hero { min-height: 78vh; display: grid; align-items: end; padding-top: 140px; }
html[data-hero="full"] .hero__bg { opacity: .55; filter: none; }
html[data-hero="full"] .hero__bg::after { background: linear-gradient(180deg, rgba(6,11,31,.35), var(--hero-bg) 90%); }
html[data-hero="full"] .hero .wrap { grid-template-columns: 1fr; max-width: 900px; }
html[data-hero="full"] .hero__art { display: none; }
html[data-hero="stack"] .hero { text-align: center; }
html[data-hero="stack"] .hero .wrap { grid-template-columns: 1fr; justify-items: center; }
html[data-hero="stack"] .hero__ctas, html[data-hero="stack"] .hero__stats { justify-content: center; }
html[data-hero="stack"] .hero__art { max-width: 520px; order: 1; }
html[data-hero="stack"] .hero__bg { display: none; }
html[data-hero="panel"] .hero { background: var(--bg); color: var(--text); padding: clamp(24px, 4vw, 48px) 0; }
html[data-hero="panel"] .hero .wrap { background: var(--hero-bg); color: var(--hero-text); border-radius: calc(var(--radius) * 1.6); padding: clamp(28px, 4vw, 56px); }
html[data-hero="panel"] .hero__bg { display: none; }
html[data-hero="panel"] .hero h1 { color: var(--hero-text); }
html[data-hero="panel"] .hero .lead { color: var(--hero-muted); }
html[data-hero="panel"] .hero__stats strong { color: var(--hero-text); }
html[data-hero="left"] .hero__art { order: -1; }
html[data-hero="left"] .hero .wrap { grid-template-columns: 1fr 1.15fr; }

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: .18s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -18px rgba(6,11,31,.4); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.card__media { aspect-ratio: 4/3; background: #fff; display: grid; place-items: center; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.card__badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--accent-text); font: 700 12px/1 var(--display); letter-spacing: .1em; padding: 6px 10px; border-radius: 6px; z-index: 1; }
.card__save { position: absolute; top: 12px; right: 12px; background: var(--red); color: #fff; font: 700 12px/1 var(--display); padding: 6px 8px; border-radius: 6px; z-index: 1; }
.card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body small, .card__type { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.card__title, .card__body strong { font-family: var(--display); font-weight: var(--display-weight); font-size: 18px; line-height: 1.2; color: var(--heading); text-transform: var(--display-transform); }
.specs { display: flex; flex-wrap: wrap; gap: 6px; }
.specs span { font-size: 12px; background: var(--panel2); border: 1px solid var(--line); padding: 3px 8px; border-radius: 6px; }
.price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price strong, .price b { font: 800 22px/1 var(--display); color: var(--heading); }
.price s { color: var(--muted); font-size: 13px; }
.price .save { font-size: 12px; color: var(--red); font-weight: 700; }
.card .btn { justify-content: center; }
.card__note { font-size: 11px; color: var(--muted); text-align: center; }
.acard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.acard:hover { border-color: var(--accent); }
.acard__media { aspect-ratio: 16/9; background: #fff; overflow: hidden; }
.acard__media img { width: 100%; height: 100%; object-fit: cover; }
.acard__body { padding: 18px; display: grid; gap: 8px; }
.acard__cat, .acard__body small { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.acard h3 { font-size: 20px; margin: 0; }
.acard p { color: var(--muted); font-size: 14px; margin: 0; }
.acard a.stretch::after, .acard h3 a::after { content: ""; position: absolute; inset: 0; }
.tools { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.tool { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: grid; gap: 8px; position: relative; }
.tool:hover { border-color: var(--accent); }
.tool .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--panel2); display: grid; place-items: center; font-size: 20px; color: var(--accent); }
.tool h3 { margin: 6px 0 0; }
.tool p { color: var(--muted); font-size: 14px; margin: 0; }
.tool a::after { content: ""; position: absolute; inset: 0; }
.head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 0 0 24px; flex-wrap: wrap; }
.head h2 { margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.chips a, .chips button { background: var(--panel); border: 1px solid var(--line); color: var(--text); padding: 8px 14px; border-radius: 999px; font: 600 13px var(--body); cursor: pointer; }
.chips a.is-active, .chips button.is-active, .chips a:hover { border-color: var(--accent); background: var(--accent); color: var(--accent-text); }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 6px; }

/* ---------- tables, panels, forms ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-family: var(--display); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; background: var(--panel2); color: var(--heading); }
tbody tr:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
td.num, .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.panel, .box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.panel h3, .box h3 { font-size: 18px; }
.panel ul, .box ul { list-style: none; padding: 0; margin: 0; }
.panel li + li, .box li + li { border-top: 1px solid var(--line); }
.panel li a, .box li a { display: block; padding: 8px 0; color: var(--text); font-weight: 600; font-size: 14px; }
.panel li a:hover { color: var(--accent); }
.article-grid, .article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; }
@media (max-width: 960px) { .article-grid, .article { grid-template-columns: 1fr; } }
.aside, .side-col { position: sticky; top: 90px; display: grid; gap: 18px; align-self: start; }
.finder, .two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .finder, .two { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }
.field select, .field input { background: var(--bg2); border: 1px solid var(--line); color: var(--text); padding: 11px 12px; border-radius: 10px; font: inherit; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.field .hint { font-size: 12px; color: var(--muted); }
.result { border: 1px solid var(--accent); background: var(--panel); border-radius: var(--radius); padding: 20px; }
.result h3 { color: var(--accent); }
.stat { background: var(--panel2); border-radius: 12px; padding: 14px 16px; }
.stat small { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.stat b { display: block; font-size: 26px; color: var(--accent); }
.ok { color: #0f7a40; font-weight: 700; } .bad { color: var(--red); font-weight: 700; } .warn { color: #b35c00; font-weight: 700; }
.result-list { display: grid; gap: 10px; }
.result-row { display: flex; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.result-row img { width: 72px; height: 54px; object-fit: contain; background: #fff; border-radius: 6px; }
.result-row .grow { flex: 1; min-width: 0; }
.result-row strong { display: block; font-size: 15px; }
.result-row span { font-size: 13px; color: var(--muted); }
.disclaimer { font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 16px; }

/* ---------- article prose ---------- */
.prose { max-width: 74ch; font-size: 17px; }
.prose h2 { font-size: 28px; margin-top: 1.6em; }
.prose h3 { font-size: 21px; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .35em 0; }
.prose table { font-size: 15px; margin: 1em 0; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.4em 0; padding: .4em 1.2em; color: var(--muted); background: var(--panel2); border-radius: 0 10px 10px 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); }
.article-meta, .meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.byline { font-style: italic; color: var(--muted); font-size: 15px; }

/* ---------- areas, faq ---------- */
.areas { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.area { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: grid; gap: 6px; }
.area h3 { margin: 0; }
.area p { color: var(--muted); font-size: 14px; margin: 0; }
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 18px; }
.faq summary { cursor: pointer; padding: 14px 0; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--heading); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 14px; margin: 0; color: var(--muted); }

/* ---------- CTA band & footer ---------- */
.band { background: linear-gradient(135deg, var(--navy), var(--accent)); color: #fff; }
.band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 40px; }
.band h2 { margin: 0; color: #fff; }
.band p { margin: 4px 0 0; color: rgba(255,255,255,.85); }
.band .btn--primary { background: #fff; color: var(--navy); box-shadow: none; }
.ftr { background: var(--ftr-bg); color: var(--ftr-text); padding: 48px 0 28px; font-size: 14px; }
.ftr__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
.ftr h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ftr-heading); }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin: 6px 0; }
.ftr a { color: var(--ftr-text); }
.ftr a:hover { color: #fff; }
.ftr__logo img { height: 34px; margin-bottom: 14px; }
.ftr__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; }
html[data-archetype="minimal"] .ftr { background: var(--bg2); color: var(--muted); border-top: 1px solid var(--line); }
html[data-archetype="minimal"] .ftr h4, html[data-archetype="minimal"] .ftr a:hover { color: var(--heading); }
html[data-archetype="minimal"] .ftr a { color: var(--muted); }
html[data-archetype="minimal"] .ftr__bottom { border-top-color: var(--line); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
