/* ── FONTS ── */
@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fixel Text';
  src: url('../fonts/FixelText-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fixel Display';
  src: url('../fonts/FixelDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fixel Display';
  src: url('../fonts/FixelDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── FONTS ── */







.cta-logo { height: 42px; }

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #D41DC3;
  --pink-dark:   #A8169A;
  --pink-light:  #F9E8F8;
  --pink-mid:    #EFC0EB;
  --dark:        #0E0C1C;
  --dark-2:      #1B1829;
  --text:        #1A1726;
  --text-mid:    #5B526E;
  --text-muted:  #9188A6;
  --surface:     #F9F7FF;
  --surface-2:   #F1EBF9;
  --border:      #DDD4EE;
  --border-dark: #CCC0E4;
  --white:       #FFFFFF;
  --correct-bg:  #E8F5E9;
  --wrong-bg:    #FCE4E4;
  --radius:      12px;
  --radius-sm:   8px;
}

body {
  font-family: 'Fixel Text', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #F2F2F2;
}

/* ── TOP NAV ── */
.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-nav img { height: 72px; }
.top-nav-cta {
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--pink);
  text-decoration: none;
  border: 1.5px solid var(--pink);
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.top-nav-cta:hover { background: var(--pink); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
  max-width: 760px;
  margin: 24px auto 0;
  border-radius: var(--radius);
}
.hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  opacity: 0.35;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Fixel Display', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 600px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.5;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ── SECTION HEADINGS ── */
.section-heading {
  font-family: 'Fixel Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin: 48px 0 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.section-heading:first-child { margin-top: 0; }
.section-lead {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

/* ── SCAM CARDS ── */
.scam-cards { display: flex; flex-direction: column; gap: 10px; }

.scam-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.scam-card:hover { border-color: var(--pink-mid); }
.scam-card.open { border-color: var(--pink); box-shadow: 0 2px 16px rgba(212,29,195,0.08); }

.scam-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  gap: 12px;
}
.scam-card-header:hover { background: var(--surface); }
.scam-card.open .scam-card-header { background: var(--surface); }

.scam-card-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.scam-num {
  font-family: 'Fixel Text', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.scam-card-title {
  font-family: 'Fixel Display', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.3;
}
.toggle-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
  line-height: 1;
}
.scam-card.open .toggle-icon { transform: rotate(45deg); color: var(--pink); }

.scam-card-body {
  display: none;
  padding: 0 18px 20px;
  border-top: 1px solid var(--border);
}
.scam-card.open .scam-card-body { display: block; }

.card-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 16px 0 12px;
  display: block;
}
.card-img-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
  margin-bottom: 12px;
  font-style: italic;
}

.scam-card-body p {
  margin: 14px 0 8px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.red-flags-label {
  display: inline-block;
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 14px 0 10px;
}

ul.red-flags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
ul.red-flags li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 12px 8px 36px;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}
ul.red-flags li::before {
  content: "⚑";
  position: absolute;
  left: 12px;
  top: 8px;
  color: var(--pink);
  font-size: 13px;
}

.what-to-do {
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--pink);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.what-to-do strong {
  display: block;
  font-family: 'Fixel Text', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 5px;
}

.source-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}
.source-link:hover { text-decoration: underline; }

/* ── QUIZ ── */
.quiz-container {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.quiz-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}
.question-block { display: none; }
.question-block.active { display: block; }

.question-counter {
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.question-text {
  font-family: 'Fixel Display', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}
.scenario-box {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 0.91rem;
  font-style: italic;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

.options { display: flex; flex-direction: column; gap: 8px; }
.option-btn {
  text-align: left;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 11px 16px;
  font-size: 0.93rem;
  font-family: 'Fixel Text', sans-serif;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s;
}
.option-btn:hover:not(:disabled) { border-color: var(--pink-mid); background: var(--surface); }
.option-btn:disabled { cursor: default; }
.option-btn.correct { border-color: #66bb6a; background: var(--correct-bg); }
.option-btn.wrong   { border-color: #e57373; background: var(--wrong-bg); }

.feedback-box {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
  display: none;
  line-height: 1.55;
}
.feedback-box.show { display: block; }
.feedback-box.pass { background: var(--correct-bg); border-left: 3px solid #66bb6a; }
.feedback-box.fail { background: var(--wrong-bg); border-left: 3px solid #e57373; }
.feedback-box .verdict {
  font-family: 'Fixel Text', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.feedback-box.pass .verdict { color: #388e3c; }
.feedback-box.fail .verdict { color: #c62828; }
.feedback-box.pass .verdict::before { content: "✓  "; }
.feedback-box.fail .verdict::before { content: "✗  "; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 8px;
}
.quiz-nav-btn {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  padding: 8px 22px;
  cursor: pointer;
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.quiz-nav-btn:hover:not(:disabled) { border-color: var(--pink); color: var(--pink); }
.quiz-nav-btn:disabled { opacity: 0.3; cursor: default; }

.quiz-score {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
}
.quiz-score .score-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.quiz-score .score-num {
  font-family: 'Fixel Display', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
}
.quiz-score p { font-size: 0.95rem; color: var(--text); margin-bottom: 20px; max-width: 400px; margin-left: auto; margin-right: auto; }
.quiz-restart-btn {
  border: 1.5px solid var(--pink);
  border-radius: 20px;
  background: transparent;
  padding: 9px 28px;
  cursor: pointer;
  font-family: 'Fixel Text', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pink);
  transition: background 0.15s, color 0.15s;
}
.quiz-restart-btn:hover { background: var(--pink); color: var(--white); }

/* ── CHECKLIST ── */
.checklist-container {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.checklist-intro { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }

.checklist-items { display: flex; flex-direction: column; gap: 8px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.checklist-item:hover { border-color: var(--pink-mid); background: var(--surface); }
.checklist-item.checked {
  background: var(--surface-2);
  border-color: var(--pink-mid);
}
.checklist-item.checked .check-label { color: var(--text-muted); text-decoration: line-through; }
.checklist-item.checked .check-sublabel { color: var(--text-muted); }

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border-dark);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--pink);
  font-weight: 700;
  transition: border-color 0.15s, background 0.15s;
}
.checklist-item.checked .check-box {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.check-label { font-size: 0.92rem; line-height: 1.5; color: var(--text); font-weight: 500; }
.check-sublabel { font-size: 0.79rem; color: var(--text-mid); display: block; margin-top: 2px; font-weight: 400; }

.checklist-progress {
  margin-top: 16px;
  font-family: 'Fixel Text', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.progress-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 3px;
  transition: width 0.35s ease;
}

/* ── CTA BOX ── */
.cta-box {
  background: #291F50;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  line-height: 1.65;
}
.cta-logo-header {
  background: var(--white);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.cta-text-body {
  padding: 24px 28px;
}
.cta-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.cta-content strong {
  display: block;
  font-family: 'Fixel Display', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.cta-content a { color: var(--pink); font-weight: 600; text-decoration: none; }
.cta-content a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
footer a { color: var(--text-mid); }

/* ── MOBILE ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-heading { font-size: 1.25rem; }
  .cta-box { flex-direction: column; gap: 10px; }
  .quiz-nav { flex-wrap: wrap; }
  main { padding: 28px 16px 48px; }
}
#progress-fill { width: 0%; }
.footer-legal { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.footer-legal a { color: var(--text-mid); text-decoration: underline; }
.footer-legal a:hover { color: var(--dark); }
.footer-legal span { margin: 0 6px; }