/* assets/style.css — Nep-bank demo, licht thema met betaalscherm */

:root {
  --bg: #ffffff;
  --bg-2: #eef4f1;
  --panel: #ffffff;
  --panel-2: #f5f9f7;
  --line: #dde8e2;
  --line-2: #e8efec;
  --text: #14261f;
  --muted: #5f7268;
  --dim: #93a49b;
  --brand: #17805a;
  --brand-2: #0ea371;
  --brand-deep: #0f5f43;
  --accent: #2563eb;
  --gold: #c8912a;
  --danger: #d92d20;
  --danger-bg: #fdecec;
  --danger-line: #f3b9b4;
  --good: #12965a;
  --good-bg: #e7f6ee;
  --shadow: 0 10px 40px rgba(20,50,38,0.10);
  --shadow-sm: 0 4px 18px rgba(20,50,38,0.08);
}

/* Taalschakelaar rechtsboven (NL/EN) */
.lang-switch {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.lang-switch .lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 38px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch .lang-opt:hover { color: var(--text); }
.lang-switch .lang-opt.active {
  color: #fff;
  background: var(--brand);
}
@media (max-width: 640px) {
  .lang-switch { top: 8px; right: 8px; }
  .lang-switch .lang-opt { min-width: 32px; padding: 4px 8px; font-size: 0.72rem; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(700px circle at 12% -5%, rgba(23,128,90,0.08), transparent 55%),
    radial-gradient(760px circle at 92% 0%, rgba(37,99,235,0.05), transparent 55%);
  pointer-events: none; z-index: 0;
}
.wrap { position: relative; z-index: 1; }

/* ---- Banner ---- */
.demo-banner {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 20px; font-size: 0.8rem; color: var(--muted); text-align: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--danger-bg); color: var(--danger);
  border: 1px solid var(--danger-line);
  padding: 3px 10px; border-radius: 999px;
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.pill.good { background: var(--good-bg); color: var(--good); border-color: #b7e4c7; }

/* ---- Hero ---- */
.hero { max-width: 1080px; margin: 0 auto; padding: 60px 24px 16px; text-align: center; }
.hero .eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 800; margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, #17805a, #2563eb);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { max-width: 600px; margin: 0 auto 28px; color: var(--muted); font-size: 1.05rem; }

/* ---- Mode buttons ---- */
.mode-bar { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.mode-btn {
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  border: none; padding: 14px 24px; border-radius: 12px; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s, filter 0.2s, background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 9px;
}
.mode-btn.primary {
  background: linear-gradient(120deg,#17805a,#2563eb); color: #fff;
  box-shadow: 0 6px 22px rgba(23,128,90,0.26);
}
.mode-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(23,128,90,0.34); }
.mode-btn.ghost {
  background: #fff; color: var(--brand); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.mode-btn.ghost:hover { transform: translateY(-2px); border-color: var(--brand); }
.mode-btn.active { outline: 2px solid var(--brand); outline-offset: 2px; }
.mode-btn:active { transform: translateY(0); }
.mode-hint { margin-top: 16px; font-size: 0.88rem; color: var(--dim); min-height: 1.3em; transition: color 0.2s; }
body.detect-on .mode-hint { color: var(--danger); }
body.quiz-on .mode-hint { color: var(--brand); }

/* ---- Quiz HUD ---- */
.quiz-hud { display: none; max-width: 1000px; margin: 22px auto 0; padding: 0 24px; }
body.quiz-on .quiz-hud { display: block; }
.quiz-hud-inner {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.quiz-score { font-weight: 800; font-size: 1.1rem; }
.quiz-score span { color: var(--brand); }
.quiz-progress { flex: 1; min-width: 140px; height: 10px; background: var(--bg-2); border-radius: 999px; overflow: hidden; }
.quiz-progress i { display: block; height: 100%; width: 0%; background: linear-gradient(120deg,#17805a,#2563eb); transition: width 0.4s; }
.quiz-reset {
  font-family: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  background: var(--bg-2); color: var(--muted); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 9px; transition: background 0.2s;
}
.quiz-reset:hover { background: var(--line-2); }
.quiz-timer {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'SF Mono','Roboto Mono',ui-monospace,monospace; font-weight: 700; font-size: 1rem;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  padding: 7px 12px; border-radius: 9px; transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.quiz-timer.warn { color: var(--danger); border-color: var(--danger-line); background: var(--danger-bg); animation: pulse 1s ease-in-out infinite; }

/* ---- Browser ---- */
.browser { max-width: 1000px; margin: 26px auto 0; padding: 0 24px; }
.browser-inner {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.url-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 7px; flex-shrink: 0; }
.dots span { width: 12px; height: 12px; border-radius: 50%; }
.dots span:nth-child(1){background:#ff5f57}.dots span:nth-child(2){background:#febc2e}.dots span:nth-child(3){background:#28c840}
.url {
  flex: 1; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 14px; display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem; font-family: 'SF Mono','Roboto Mono',ui-monospace,monospace;
  color: var(--muted); position: relative; min-width: 0;
}
.url .u-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lock-open { color: var(--danger); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0; }

/* ---- Tabs (login / betaalscherm) ---- */
.screen-tabs {
  display: flex; gap: 4px; padding: 10px 18px 0; background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.screen-tab {
  font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--line); border-bottom: none; background: #fff; color: var(--muted);
  padding: 9px 16px; border-radius: 10px 10px 0 0; transition: color 0.2s, background 0.2s;
}
.screen-tab.active { color: var(--brand); background: #fff; box-shadow: inset 0 -3px 0 var(--brand); }
.screen { display: none; }
.screen.active { display: block; }

/* ---- Bank header ---- */
.bank-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 30px; background: linear-gradient(100deg, #0f5f43, #17805a);
  gap: 16px; flex-wrap: wrap; color: #fff;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: #fff; color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.logo-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.logo-name span { color: var(--gold); }
.logo-tag { font-size: 0.64rem; color: rgba(255,255,255,0.75); letter-spacing: 0.12em; text-transform: uppercase; }
.header-msg {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 8px 14px; border-radius: 10px; font-size: 0.83rem; font-weight: 500;
  max-width: 320px; position: relative;
}

/* ---- Login body ---- */
.bank-body { display: grid; grid-template-columns: 1fr 0.9fr; }
@media (max-width: 780px){ .bank-body { grid-template-columns: 1fr; } }
.promo { padding: 38px 34px; background: var(--panel); }
.promo .badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--danger); font-weight: 700; margin-bottom: 14px;
}
.promo h2 { font-size: 1.6rem; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.promo .urgent {
  background: var(--danger-bg); border: 1px solid var(--danger-line);
  border-radius: 12px; padding: 15px 17px; font-size: 0.92rem; color: #a02622;
  position: relative; margin-bottom: 16px;
}
.promo .sub-note { color: var(--muted); font-size: 0.92rem; }
.secure-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 12px; font-size: 0.8rem; color: var(--muted); position: relative;
}

.login { padding: 38px 34px; background: var(--panel-2); border-left: 1px solid var(--line); }
@media (max-width: 780px){ .login { border-left: none; border-top: 1px solid var(--line); } }
.login h3 { font-size: 1.25rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.login .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; position: relative; }
.field label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 7px; font-weight: 600; }
.field input {
  width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--text);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--dim); }
.field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(23,128,90,0.14); }
.primary-btn {
  width: 100%; padding: 14px; background: linear-gradient(120deg,#17805a,#0ea371);
  color: #fff; border: none; border-radius: 10px; font-family: inherit;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; margin-top: 6px;
  transition: filter 0.2s, transform 0.12s;
}
.primary-btn:hover { filter: brightness(1.06); }
.primary-btn:active { transform: translateY(1px); }
.login-foot { margin-top: 16px; font-size: 0.82rem; text-align: center; color: var(--muted); position: relative; }
.login-foot a { color: var(--accent); text-decoration: none; }

/* ---- Bank footer ---- */
.bank-footer {
  padding: 18px 30px; background: var(--bg-2); color: var(--dim);
  font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; position: relative;
}
.bank-footer a { color: var(--muted); text-decoration: none; }
.footer-info { position: relative; }

/* ---- Betaalscherm ---- */
.pay-wrap { padding: 34px; background: var(--bg-2); display: flex; justify-content: center; }
.pay-card {
  width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); overflow: hidden;
}
.pay-top {
  padding: 16px 20px; background: linear-gradient(100deg,#0f5f43,#17805a); color: #fff;
  display: flex; align-items: center; justify-content: space-between; position: relative;
}
.pay-top .ideal { font-weight: 800; letter-spacing: -0.02em; font-size: 1.05rem; }
.pay-top .ideal span { color: var(--gold); }
.pay-lock { font-size: 0.78rem; display: inline-flex; align-items: center; gap: 5px; opacity: 0.9; position: relative; }
.pay-timer-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 16px; background: var(--danger-bg); border-bottom: 1px solid var(--danger-line);
  font-size: 0.82rem; color: #a02622; font-weight: 600; position: relative;
}
.pay-timer-bar .cd { font-family: 'SF Mono','Roboto Mono',ui-monospace,monospace; font-weight: 800; color: var(--danger); background: #fff; padding: 2px 8px; border-radius: 6px; border: 1px solid var(--danger-line); }
.pay-body { padding: 22px 22px 26px; }
.pay-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2); position: relative;
}
.pay-row:last-of-type { border-bottom: none; }
.pay-row .k { font-size: 0.82rem; color: var(--muted); }
.pay-row .v { font-size: 0.92rem; font-weight: 600; text-align: right; }
.pay-amount .v { font-size: 1.5rem; font-weight: 800; color: var(--danger); }
.pay-fields { margin-top: 16px; }
.pay-btn {
  width: 100%; margin-top: 18px; padding: 14px; border: none; border-radius: 10px;
  background: linear-gradient(120deg,#17805a,#0ea371); color: #fff;
  font-family: inherit; font-weight: 700; font-size: 0.98rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter 0.2s, transform 0.12s; position: relative;
}
.pay-btn:hover { filter: brightness(1.06); }
.pay-btn:active { transform: translateY(1px); }
.pay-note { margin-top: 12px; font-size: 0.76rem; color: var(--dim); text-align: center; }
.card-row { display: flex; gap: 10px; }
.card-row .field { flex: 1; }

/* ---- Flags ---- */
.flag { position: relative; }
body.detect-on .flag, body.quiz-on .flag { cursor: pointer; }
body.detect-on .flag {
  outline: 1.5px dashed var(--danger-line); outline-offset: 4px;
  border-radius: 8px; animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ outline-color: rgba(217,45,32,0.25);} 50%{ outline-color: rgba(217,45,32,0.7);} }
.flag-marker {
  opacity: 0; transform: scale(0.5);
  position: absolute; top: -12px; right: -12px;
  width: 26px; height: 26px; background: var(--danger); color: #fff; border-radius: 50%;
  font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  z-index: 30; box-shadow: 0 4px 12px rgba(217,45,32,0.4);
  transition: opacity 0.3s, transform 0.3s; cursor: help; pointer-events: none;
}
body.detect-on .flag-marker { opacity: 1; transform: scale(1); }

.tooltip {
  opacity: 0; visibility: hidden; transform: translateY(6px);
  position: absolute; z-index: 100; top: calc(100% + 12px); left: 0; width: 290px;
  background: #fff; border: 1px solid var(--danger-line); color: var(--text);
  padding: 15px 17px; border-radius: 12px; font-size: 0.86rem; line-height: 1.5;
  box-shadow: 0 16px 40px rgba(20,50,38,0.18);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s; pointer-events: none;
}
.tooltip strong { color: var(--danger); display: block; margin-bottom: 6px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.tooltip em { color: var(--brand); font-style: normal; font-weight: 600; }
.tooltip::before {
  content: ''; position: absolute; top: -6px; left: 22px; width: 11px; height: 11px;
  background: #fff; border-left: 1px solid var(--danger-line); border-top: 1px solid var(--danger-line); transform: rotate(45deg);
}
.tooltip.left { left: auto; right: 0; }
.tooltip.left::before { left: auto; right: 22px; }
.tooltip.up { top: auto; bottom: calc(100% + 12px); transform: translateY(-6px); }
.tooltip.up::before { top: auto; bottom: -6px; border: none; border-right: 1px solid var(--danger-line); border-bottom: 1px solid var(--danger-line); }
body.detect-on .flag:hover .tooltip, body.detect-on .flag:focus-within .tooltip { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 500px){ .tooltip { width: 220px; } }

/* ---- Quiz-modus markeringen ---- */
body.quiz-on .flag { outline: 1.5px solid transparent; outline-offset: 4px; border-radius: 8px; transition: outline-color 0.2s, background 0.2s; }
body.quiz-on .flag:hover { outline-color: var(--brand); }
body.quiz-on .flag.found { outline: 2px solid var(--good); background: var(--good-bg); animation: none; cursor: default; }
body.quiz-on .flag.found .flag-marker { opacity: 1; transform: scale(1); background: var(--good); box-shadow: 0 4px 12px rgba(18,150,90,0.4); }
body.quiz-on .flag.found:hover .tooltip { opacity: 1; visibility: visible; transform: translateY(0); }
body.quiz-on .flag.found .tooltip { border-color: #b7e4c7; }
body.quiz-on .flag.found .tooltip strong { color: var(--good); }
body.quiz-on .flag.found .tooltip::before { border-color: #b7e4c7; }
.miss-flash { position: fixed; z-index: 400; pointer-events: none; color: var(--danger); font-weight: 800; font-size: 0.9rem; animation: floatup 0.9s ease-out forwards; }
@keyframes floatup { 0%{ opacity: 1; transform: translateY(0);} 100%{ opacity: 0; transform: translateY(-30px);} }

/* ---- Quiz eind-modal ---- */
.quiz-modal-bg {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(15,40,30,0.45); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.quiz-modal-bg.show { display: flex; }
.quiz-modal {
  background: #fff; border-radius: 20px; max-width: 460px; width: 100%;
  padding: 34px; text-align: center; box-shadow: 0 30px 80px rgba(15,40,30,0.35); animation: pop 0.3s ease-out;
}
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.quiz-modal .big { font-size: 3rem; margin-bottom: 6px; }
.quiz-modal h3 { font-size: 1.5rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.quiz-modal .final-score { font-size: 1.05rem; color: var(--muted); margin-bottom: 8px; }
.quiz-modal .final-score b { color: var(--brand); }
.quiz-modal p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.share-box {
  background: var(--bg-2); border: 1px dashed var(--line); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 20px; font-size: 0.9rem; line-height: 1.5;
  white-space: pre-line; text-align: left; color: var(--text);
}
.share-box.copied { border-color: var(--good); background: var(--good-bg); }
.quiz-modal .m-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.quiz-modal .m-btn { font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; padding: 12px 20px; border-radius: 11px; border: none; }
.m-btn.primary { background: linear-gradient(120deg,#17805a,#2563eb); color: #fff; }
.m-btn.ghost { background: var(--bg-2); color: var(--text); border: 1px solid var(--line); }

/* ---- Guide ---- */
.guide { max-width: 1080px; margin: 80px auto 0; padding: 0 24px; }
.guide-head { text-align: center; margin-bottom: 44px; }
.guide-head .eyebrow { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.guide-head h2 { font-size: clamp(1.6rem,4vw,2.4rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.guide-head p { color: var(--muted); max-width: 540px; margin: 0 auto; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 18px; }
.check { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: transform 0.25s, border 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.check::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(23,128,90,0.07), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.check:hover { transform: translateY(-4px); border-color: rgba(23,128,90,0.4); box-shadow: var(--shadow); }
.check:hover::after { opacity: 1; }
.check .icon { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.check .num { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--brand); font-weight: 700; text-transform: uppercase; }
.check h3 { font-size: 1.08rem; margin: 5px 0 8px; letter-spacing: -0.01em; }
.check p { font-size: 0.88rem; color: var(--muted); }

.green-flags { margin-top: 40px; background: linear-gradient(120deg, #e7f4ee, #e8f0fb); border: 1px solid rgba(23,128,90,0.22); border-radius: 18px; padding: 32px; }
.green-flags h3 { color: var(--brand); font-size: 1.2rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.green-flags ul { list-style: none; display: grid; gap: 12px; }
.green-flags li { padding-left: 30px; position: relative; font-size: 0.92rem; color: #26382f; }
.green-flags li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; background: rgba(23,128,90,0.14); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }

.page-foot { text-align: center; padding: 56px 20px 60px; font-size: 0.82rem; color: var(--dim); }
.page-foot .pill { margin-bottom: 12px; }
.page-foot .foot-disclaimer { max-width: 640px; margin: 16px auto 0; line-height: 1.6; }
.page-foot .foot-disclaimer strong { color: var(--text); }
.page-foot .foot-by { margin-top: 10px; }
.page-foot .foot-by a { color: var(--accent); font-weight: 700; text-decoration: none; }
.page-foot .foot-by a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
