/* assets/style.css — Nep-webwinkel demo, licht thema (wit als basis) */

:root {
  --bg: #ffffff;
  --bg-2: #f6f4fb;
  --panel: #ffffff;
  --panel-2: #faf9fd;
  --line: #e6e2f0;
  --line-2: #efedf6;
  --text: #1c1830;
  --muted: #6b6580;
  --dim: #9c95ad;
  --brand: #8b3ff0;
  --brand-2: #ec4899;
  --accent: #0ea5e9;
  --gold: #d99e0b;
  --danger: #e02424;
  --danger-bg: #fdecec;
  --danger-line: #f6b8b8;
  --good: #16a34a;
  --good-bg: #eafaf0;
  --shadow: 0 10px 40px rgba(60,40,110,0.10);
  --shadow-sm: 0 4px 18px rgba(60,40,110,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(139,63,240,0.08), transparent 55%),
    radial-gradient(760px circle at 92% 0%, rgba(236,72,153,0.06), 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.86);
  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, #8b3ff0, #ec4899);
  -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,#8b3ff0,#ec4899); color: #fff;
  box-shadow: 0 6px 22px rgba(139,63,240,0.28);
}
.mode-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,63,240,0.36); }
.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 progress ---- */
.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: 160px; height: 10px; background: var(--bg-2); border-radius: 999px; overflow: hidden; }
.quiz-progress i { display: block; height: 100%; width: 0%; background: linear-gradient(120deg,#8b3ff0,#ec4899); 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; }

/* ---- Shop header ---- */
.shop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 30px; background: #fff; border-bottom: 1px solid var(--line);
  gap: 16px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg,#8b3ff0,#ec4899);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(139,63,240,0.35);
}
.logo-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.logo-name span { background: linear-gradient(120deg,#8b3ff0,#ec4899); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.nav { display: flex; gap: 20px; font-size: 0.86rem; color: var(--muted); }
.nav span { cursor: pointer; }
@media (max-width: 680px){ .nav { display: none; } }

/* ---- Flash bar ---- */
.flash-bar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 20px; background: var(--danger-bg); border-bottom: 1px solid var(--danger-line);
  font-size: 0.85rem; color: #b91c1c; font-weight: 500; position: relative; flex-wrap: wrap;
}
.countdown {
  font-family: 'SF Mono','Roboto Mono',ui-monospace,monospace;
  font-weight: 700; color: var(--danger); background: #fff;
  padding: 3px 9px; border-radius: 6px; border: 1px solid var(--danger-line);
}

/* ---- Product ---- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 780px){ .product { grid-template-columns: 1fr; } }
.product-img {
  background: linear-gradient(135deg, #f3effc, #fbeef6);
  padding: 40px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line); position: relative; min-height: 320px;
}
@media (max-width: 780px){ .product-img { border-right: none; border-bottom: 1px solid var(--line); } }
.img-box {
  width: 100%; max-width: 300px; aspect-ratio: 1; border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f2ecfb);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  box-shadow: inset 0 2px 24px rgba(139,63,240,0.10);
}
.discount-badge {
  position: absolute; top: 30px; left: 30px;
  background: var(--danger); color: #fff; font-weight: 800;
  padding: 8px 14px; border-radius: 10px; font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(224,36,36,0.32); transform: rotate(-6deg);
}
.product-info { padding: 36px 34px; }
.brand-line { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 700; margin-bottom: 8px; }
.product-info h2 { font-size: 1.6rem; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px; }
.rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.88rem; color: var(--muted); position: relative; }
.stars { color: var(--gold); letter-spacing: 2px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; position: relative; }
.price-now { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
.price-old { font-size: 1.1rem; color: var(--dim); text-decoration: line-through; }
.price-save { font-size: 0.85rem; color: var(--danger); font-weight: 700; margin-bottom: 18px; position: relative; display: inline-block; }
.stock { font-size: 0.85rem; color: #a16207; margin-bottom: 20px; position: relative; display: inline-flex; align-items: center; gap: 7px; }
.stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
.buy-btn {
  width: 100%; padding: 15px; background: linear-gradient(120deg,#8b3ff0,#ec4899);
  color: #fff; border: none; border-radius: 12px; font-family: inherit;
  font-weight: 700; font-size: 1rem; cursor: pointer; margin-bottom: 14px;
  transition: filter 0.2s, transform 0.12s;
}
.buy-btn:hover { filter: brightness(1.06); }
.buy-btn:active { transform: translateY(1px); }
.pay-methods { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); position: relative; }
.pay-chip { background: var(--bg-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 7px; font-weight: 600; font-size: 0.78rem; }

/* ---- Trust row ---- */
.trust-row {
  display: flex; justify-content: space-around; gap: 14px; flex-wrap: wrap;
  padding: 18px 30px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); position: relative; }
.trust-item .ic { font-size: 1.1rem; }

/* ---- Reviews ---- */
.reviews { padding: 26px 34px; background: #fff; position: relative; }
.reviews h3 { font-size: 1.05rem; margin-bottom: 16px; }
.review { padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.review:last-child { border-bottom: none; }
.review .rv-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.review .rv-name { font-weight: 600; font-size: 0.88rem; }
.review .rv-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.review p { font-size: 0.85rem; color: var(--muted); }

/* ---- Footer ---- */
.shop-footer {
  padding: 20px 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;
}
.shop-footer a { color: var(--muted); text-decoration: none; }
.footer-info, .footer-mail { position: relative; }
.footer-mail { font-family: 'SF Mono','Roboto Mono',ui-monospace,monospace; }

/* ---- Extra producten ---- */
.section-title {
  padding: 24px 30px 4px; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  background: #fff;
}
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  padding: 16px 30px 28px; background: #fff;
}
@media (max-width: 680px){ .product-grid { grid-template-columns: 1fr; } }
.mini-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: var(--panel);
  transition: box-shadow 0.25s, transform 0.25s;
}
.mini-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.mini-img {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(145deg,#ffffff,#f2ecfb); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem; position: relative;
}
.mini-body { flex: 1; min-width: 0; }
.mini-name { font-weight: 700; font-size: 0.98rem; line-height: 1.25; margin-bottom: 7px; position: relative; }
.mini-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.mini-badge {
  display: inline-block; background: var(--danger-bg); color: #b91c1c;
  border: 1px solid var(--danger-line); border-radius: 8px;
  padding: 4px 9px; font-size: 0.76rem; font-weight: 600; margin-bottom: 8px; position: relative;
}
.mini-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 10px; }
.mini-now { font-size: 1.3rem; font-weight: 800; }
.mini-old { font-size: 0.85rem; color: var(--dim); text-decoration: line-through; }
.mini-btn {
  border: none; border-radius: 9px; padding: 9px 14px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 0.82rem;
  background: linear-gradient(120deg,#8b3ff0,#ec4899); color: #fff;
  transition: filter 0.2s;
}
.mini-btn:hover { filter: brightness(1.06); }

/* ---- Flags (detectie-modus) ---- */
.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(224,36,36,0.25);} 50%{ outline-color: rgba(224,36,36,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(224,36,36,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 */
.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(60,40,110,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; }
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: 230px; } }

/* ---- 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); }
/* correct gevonden */
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(22,163,74,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; }
/* korte "mis"-flits bij verkeerd klikken */
.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(28,24,48,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(28,24,48,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,#8b3ff0,#ec4899); 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(139,63,240,0.07), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.check:hover { transform: translateY(-4px); border-color: rgba(139,63,240,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, #f4effd, #fdf0f7);
  border: 1px solid rgba(139,63,240,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: #3a3350; }
.green-flags li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 6px; background: rgba(139,63,240,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; } }
