/* ===========================================================
   B22 Murilo LP — shared base (v2)
   Dark editorial / finance · mobile-first (≤430px)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* neutrals */
  --bg-0:        #0A0E1A;
  --bg-1:        #101528;
  --bg-2:        #171C33;
  --line:        rgba(255,255,255,.08);
  --line-soft:   rgba(255,255,255,.05);
  --text:        #F3F1EA;
  --text-dim:    #A7ABBE;
  --text-mute:   #6B6F83;

  /* brand */
  --brand:       #7F56D9;
  --brand-soft:  rgba(127,86,217,.18);

  /* per-page accent (overridden per <body data-accent>) */
  --accent:      #E8B84A;
  --accent-soft: rgba(232,184,74,.14);
  --accent-line: rgba(232,184,74,.35);

  /* semantic */
  --online:      #2FD878;
  --danger:      #E8554A;

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
}

body[data-accent="gold"]   { --accent:#E8B84A; --accent-soft:rgba(232,184,74,.14); --accent-line:rgba(232,184,74,.35); }
body[data-accent="mint"]   { --accent:#4ADE9E; --accent-soft:rgba(74,222,158,.14); --accent-line:rgba(74,222,158,.35); }
body[data-accent="amber"]  { --accent:#FF8A3D; --accent-soft:rgba(255,138,61,.14); --accent-line:rgba(255,138,61,.35); }
body[data-accent="violet"] { --accent:#A78BFA; --accent-soft:rgba(167,139,250,.16); --accent-line:rgba(167,139,250,.38); }

html, body {
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: #060812;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── SHELL ─────────────────────────────────────────────── */
.lp {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg-0);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,.5);
}

.lp-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 40% at 85% 0%,   var(--accent-soft) 0%, transparent 70%),
    radial-gradient(70% 50% at 10% 30%, var(--brand-soft)  0%, transparent 75%),
    radial-gradient(100% 60% at 50% 120%, rgba(127,86,217,.10) 0%, transparent 70%);
}
.lp-bg::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 40%, transparent 80%);
}
.lp > * { position: relative; z-index: 1; }

/* ── TOPBAR ────────────────────────────────────────────── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(10,14,26,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky; top: 0;
  z-index: 10;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.3px;
  color: var(--text);
}
.brand b { color: var(--accent); font-style: normal; }
.brand__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-left: 6px;
}
.pill {
  font-size: 9px; font-weight: 600; line-height: 1.35;
  color: var(--text-dim);
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 5px 10px;
  border-radius: 999px;
  text-align: right;
  white-space: nowrap;
}
.pill b { color: var(--accent); font-weight: 700; }

/* ── CONTENT RHYTHM ────────────────────────────────────── */
main.content {
  display: flex; flex-direction: column;
  gap: 22px;
  padding: 20px 18px 28px;
}

/* eyebrow kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 10px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}

/* headline + sub */
.headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(30px, 8.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -.6px;
  color: var(--text);
  text-wrap: pretty;
}
.headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.sub {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 38ch;
  text-wrap: pretty;
}

/* ── FRAMED HERO IMAGE ─────────────────────────────────── */
.hero-frame {
  position: relative;
  padding: 10px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 20px 40px -20px rgba(0,0,0,.6),
    0 0 0 1px var(--accent-line);
  overflow: hidden;
}
.hero-frame::before {
  content:""; position:absolute; inset:6px;
  border-radius: calc(var(--r-lg) - 4px);
  border: 1px solid var(--accent-line);
  pointer-events: none;
  z-index: 2;
}
.hero-frame::after {
  content:"";
  position:absolute; inset: 2px;
  border-radius: calc(var(--r-lg) - 2px);
  background:
    linear-gradient(var(--accent), var(--accent)) top left / 14px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top left / 1px 14px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top right / 14px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) top right / 1px 14px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom left / 14px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom left / 1px 14px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right / 14px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) bottom right / 1px 14px no-repeat;
  pointer-events:none;
  opacity:.75;
  z-index:3;
}
.hero-frame__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: calc(var(--r-lg) - 10px);
  overflow: hidden;
  background: #060810 radial-gradient(60% 80% at 50% 100%, var(--accent-soft), transparent 70%);
}
.hero-frame__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: saturate(.95) contrast(1.02);
}
/* subtle top-to-bottom vignette for readability of badge */
.hero-frame__media::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,8,16,.55) 100%);
  pointer-events:none;
}
.hero-frame__badge {
  position: absolute;
  left: 16px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10,14,26,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: 10.5px; font-weight: 600;
  color: var(--text);
  letter-spacing: .2px;
  z-index: 4;
}
.hero-frame__badge i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 3px rgba(47,216,120,.22);
  animation: blink 2s ease-in-out infinite;
}
.hero-frame__caption {
  position: absolute;
  right: 16px; top: 16px;
  display: inline-flex; flex-direction: column;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(10,14,26,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: 9.5px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 4;
}
.hero-frame__caption b {
  display: block; color: var(--text); font-size: 11px; letter-spacing: .2px; text-transform: none; font-weight: 700;
  margin-top: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: var(--accent);
  color: #0A0E1A;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: .1px;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 10px 24px -8px color-mix(in srgb, var(--accent) 55%, transparent),
    0 2px 0 rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:active { transform: translateY(1px); }
.cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta__hint {
  text-align: center;
  font-size: 11px;
  color: var(--text-mute);
  margin-top: -12px;
}

/* ── VALUE BLOCK ───────────────────────────────────────── */
.values {
  display: grid;
  gap: 10px;
}
.value {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--line);
  transition: border-color .2s ease;
}
.value:hover { border-color: var(--accent-line); }
.value__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--accent-line);
}
.value__body { min-width: 0; }
.value__t {
  font-size: 13.5px; font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.25;
}
.value__d {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-dim);
}

/* ── TRUST BLOCK ───────────────────────────────────────── */
.trust {
  padding: 16px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border: 1px solid var(--line);
}
.trust__h {
  font-family: 'Fraunces', serif;
  font-size: 15px; font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.2px;
}
.trust__grid {
  display: grid; gap: 11px;
}
.trust__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.35;
}
.trust__row b { color: var(--text); font-weight: 600; }
.trust__row svg {
  flex-shrink: 0; width: 16px; height: 16px; color: var(--accent);
}
.trust__proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.trust__proof-img {
  flex-shrink: 0;
  width: 84px; height: 62px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .2s ease;
}
.trust__proof-img:hover { transform: scale(1.04); }
.trust__proof-cap {
  font-size: 11px; line-height: 1.4;
  color: var(--text-mute);
}
.trust__proof-cap b { display:block; color: var(--text); font-size:12px; font-weight:600; margin-bottom:2px; }
.trust__proof-cap em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ── SOCIAL PROOF STRIP ────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat {
  background: var(--bg-1);
  padding: 14px 10px;
  text-align: center;
}
.stat__n {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.5px;
}
.stat__l {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.35;
  letter-spacing: .2px;
}

/* ── WHY / MINI ────────────────────────────────────────── */
.why {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  border: 1px dashed var(--accent-line);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}
.why b { color: var(--accent); font-weight: 700; }

/* ── QUIZ ──────────────────────────────────────────────── */
.quiz {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
}
.quiz::before {
  content:"";
  position:absolute; left:0; right:0; top:0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}
.quiz__step {
  display: none;
  animation: fadein .28s ease;
}
.quiz__step.is-active { display: block; }
@keyframes fadein { from{opacity:0; transform: translateY(4px);} to{opacity:1; transform:none;} }

.quiz__meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.quiz__prog {
  display:flex; gap:6px;
}
.quiz__prog i {
  width: 26px; height: 3px; border-radius: 2px;
  background: var(--line);
  transition: background .25s ease;
}
.quiz__prog i.is-done { background: var(--accent); }
.quiz__counter {
  font-size: 10px; font-weight: 600;
  color: var(--text-mute);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.quiz__q {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.2px;
  text-wrap: pretty;
}
.quiz__opts {
  display: grid; gap: 8px;
  list-style: none;
}
.quiz__opt {
  width: 100%;
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.quiz__opt::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--text-mute);
  flex-shrink: 0;
  transition: border-color .15s ease, background .15s ease;
}
.quiz__opt:hover { border-color: var(--accent-line); }
.quiz__opt:active { transform: scale(.99); }
.quiz__opt.is-picked::before {
  border-color: var(--accent);
  background: var(--accent) radial-gradient(circle at 50% 50%, var(--bg-0) 24%, transparent 26%);
}
.quiz__opt.is-picked { border-color: var(--accent-line); background: var(--accent-soft); }

.quiz__result {
  display: grid; gap: 14px;
  animation: fadein .3s ease;
}
.quiz__result-h {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.3px;
  text-wrap: pretty;
}
.quiz__result-h em { color: var(--accent); font-style: italic; font-weight: 500; }
.quiz__result-p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}
.quiz__result-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.quiz__result-tag {
  font-size: 10.5px; font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
}
.quiz__teaser {
  display: grid; gap: 8px;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.quiz__teaser-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.35;
}
.quiz__teaser-row::before {
  content:""; flex-shrink:0;
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--accent);
  margin-top: 2px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' stroke='black' stroke-width='3' fill='none'/></svg>") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' stroke='black' stroke-width='3' fill='none'/></svg>") center/70% no-repeat;
}
.quiz__teaser-row.is-locked { color: var(--text-mute); }
.quiz__teaser-row.is-locked::before {
  background: var(--text-mute);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='11' width='16' height='9' rx='2' stroke='black' stroke-width='2' fill='none'/><path d='M8 11V7a4 4 0 0 1 8 0v4' stroke='black' stroke-width='2' fill='none'/></svg>") center/75% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='11' width='16' height='9' rx='2' stroke='black' stroke-width='2' fill='none'/><path d='M8 11V7a4 4 0 0 1 8 0v4' stroke='black' stroke-width='2' fill='none'/></svg>") center/75% no-repeat;
}
.quiz__lock {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.4;
}
.quiz__lock svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--accent); }

/* ── DEMO CARD (for 03, 04) ────────────────────────────── */
.demo {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
}
.demo::before {
  content:"";
  position:absolute; left:0; right:0; top:0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}
.demo__head {
  display:flex; align-items:center; justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
.demo__h {
  font-family: 'Fraunces', serif;
  font-size: 14.5px; font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
  display: flex; align-items: center; gap: 8px;
}
.demo__h::before {
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}
.demo__tag {
  font-size: 9.5px; font-weight: 700;
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.demo__row {
  display: grid; grid-template-columns: 84px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
}
.demo__row:first-of-type { border-top: none; padding-top: 0; }
.demo__k {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: 1px;
}
.demo__v { color: var(--text); line-height: 1.45; }
.demo__v b { color: var(--accent); font-weight: 700; }
.demo__v .pos { color: var(--online); font-weight: 700; }
.demo__v .neg { color: var(--danger); font-weight: 700; }

/* ── CHART (trading 03) ──────────────────────────────── */
.chart {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
}
.chart__labels {
  display:flex; justify-content: space-between;
  font-size: 9px; letter-spacing:.6px;
  color: var(--text-mute);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.candles {
  display: flex; align-items: flex-end; gap: 3px;
  height: 54px;
  position: relative;
}
.candles i {
  flex: 1;
  border-radius: 1px;
  background: var(--online);
  opacity: .9;
  position: relative;
}
.candles i.red { background: var(--danger); }
.candles i::after {
  /* wick */
  content:"";
  position:absolute; left:50%; top:-4px;
  width:1px; height:8px;
  background: inherit;
  transform: translateX(-50%);
  opacity:.6;
}
.chart__anno {
  display:flex; align-items:center; justify-content:space-between;
  margin-top: 8px;
  font-size: 10.5px; color: var(--text-dim);
}
.chart__anno b { color: var(--accent); font-weight:700; }
.chart__anno .up { color: var(--online); font-weight:700; }

/* ── FLOW (ia 04) — animated pipeline ──────────────────── */
.flow {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items:center; gap: 8px;
}
.flow__node {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  font-size: 10px; font-weight:600;
  color: var(--text);
  letter-spacing:.4px;
}
.flow__node svg { width:18px; height:18px; color: var(--accent); margin-bottom: 4px; display:block; margin-left:auto; margin-right:auto; }
.flow__node b { display:block; color: var(--accent); font-size:9px; letter-spacing:1px; text-transform:uppercase; margin-bottom:2px; font-weight:700; }
.flow__arrow {
  width:16px; height:10px;
  position:relative;
  color: var(--accent);
}
.flow__arrow::before, .flow__arrow::after {
  content:""; position:absolute; background: currentColor;
}
.flow__arrow::before { left:0; top:50%; width:100%; height:1px; transform: translateY(-50%); }
.flow__arrow::after { right:0; top:50%; width:5px; height:5px; border-top:1px solid currentColor; border-right:1px solid currentColor; transform: translateY(-50%) rotate(45deg); background:transparent; }

/* ── SECTION HEADING ───────────────────────────────────── */
.section-h {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
  line-height: 1.15;
  margin-top: 6px;
}
.section-h em { font-style: italic; font-weight: 500; color: var(--accent); }

/* ── TESTIMONIAL-LIKE QUOTE ────────────────────────────── */
.quote {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-1);
  border: 1px solid var(--line);
  position: relative;
}
.quote__mark {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 40px;
  line-height: .8;
  color: var(--accent);
  opacity: .4;
  margin-bottom: 4px;
}
.quote__body {
  font-family: 'Fraunces', serif;
  font-size: 14.5px; font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.1px;
}
.quote__who {
  font-size: 11px;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
}
.quote__who::before {
  content:""; width: 16px; height: 1px; background: var(--accent);
}
.quote__who b { color: var(--text); font-weight: 600; margin-right: 4px; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  margin-top: auto;
  padding: 18px 18px 22px;
  border-top: 1px solid var(--line);
  background: rgba(10,14,26,.6);
}
footer p {
  font-size: 9.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.flinks {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.flinks a {
  font-size: 10px;
  color: var(--text-dim);
  text-decoration: none;
}
.flinks a:hover { color: var(--accent); }

/* ── CERTIFICATE MODAL ─────────────────────────────────── */
.cert-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(5,7,15,.88);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.cert-modal.is-open { display: flex; }
.cert-modal img {
  max-width: 100%; max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  background: #fff;
}
.cert-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ── A11Y ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
