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

/* Honeypot / screen-reader-only (contact form) */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --ink: #1a1714;
  --ink-mid: #4a4642;
  --ink-soft: #7a7570;
  --ink-faint: #b8b4af;
  --paper: #f7f4ef;
  --paper-warm: #efe9df;
  --paper-card: #fdfaf6;
  --red: #c0392b;
  --red-light: #fdf2f0;
  --amber: #9a6200;
  --amber-light: #fdf8ed;
  --green: #1e6b3e;
  --green-light: #f0f8f3;
  --rule: rgba(26,23,20,0.12);
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
}
.nav-logo {
  font-size: 15px;
  font-weight: 500;
  color: rgba(247,244,239,0.9);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  font-size: 15px;
  color: rgba(247,244,239,0.55);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: rgba(247,244,239,0.9); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: rgba(247,244,239,0.95); background: rgba(255,255,255,0.09); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(247,244,239,0.7);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── ALERT BANNER ── */
.alert-banner {
  background: var(--red);
  color: #fff;
  padding: 14px 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  background:
    linear-gradient(rgba(26,23,20,0.82), rgba(26,23,20,0.88)),
    url('../erdnase-scam.png') top / cover no-repeat;
  color: var(--paper);
  padding: 80px 40px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.4);
  margin: 0 auto 24px;
  position: relative;
  text-align: center;
}
.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
.hero h1 em { font-style: italic; color: #d4786a; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(247,244,239,0.65);
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 15px;
  color: rgba(247,244,239,0.5);
  position: relative;
  letter-spacing: 0.02em;
}
.hero-pill .strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

/* ── PAGE HERO (smaller, for inner pages) ── */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 40px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}
.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.page-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.35);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: #d4786a; }
.page-hero p {
  font-size: 1rem;
  color: rgba(247,244,239,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ── WRAPPER ── */
.wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTIONS ── */
section {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}
section:last-of-type { border-bottom: none; }

.section-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--ink);
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

p {
  color: var(--ink-mid);
  font-size: 1rem;
  margin-bottom: 18px;
}
p:last-child { margin-bottom: 0; }

/* ── CALLOUT BOXES ── */
.callout {
  border-radius: 12px;
  padding: 22px 26px;
  margin: 26px 0;
  border-left: 4px solid;
}
.callout-red { background: var(--red-light); border-color: var(--red); }
.callout-amber { background: var(--amber-light); border-color: var(--amber); }
.callout-green { background: var(--green-light); border-color: var(--green); }
.callout p { margin-bottom: 0; font-size: 0.93rem; }
.callout-red p { color: #7a1f18; }
.callout-amber p { color: #5c3a00; }
.callout-green p { color: #0e3d22; }
.callout strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.callout-red strong { color: var(--red); }
.callout-amber strong { color: var(--amber); }
.callout-green strong { color: var(--green); }

/* ── NUMBERED LIST ── */
.how-list { list-style: none; margin: 28px 0; }
.how-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 20px;
  margin-bottom: 26px;
  align-items: start;
}
.how-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.how-text strong {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.how-text span {
  font-size: 0.91rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px;
}
.card-icon { font-size: 1.3rem; margin-bottom: 10px; display: block; }
.card h3 { font-size: 1rem; margin-bottom: 6px; }
.card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; line-height: 1.6; }

/* ── REPORT LINKS ── */
.report-links { margin: 26px 0; display: flex; flex-direction: column; gap: 10px; }
.report-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.15s;
}
.report-link:hover { border-color: var(--ink-soft); transform: translateX(3px); }
.report-link-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.report-link-body { flex: 1; min-width: 0; }
.report-link-title { font-weight: 500; font-size: 0.93rem; display: block; margin-bottom: 2px; }
.report-link-desc { font-size: 0.82rem; color: var(--ink-soft); }
.report-link-arrow { color: var(--ink-soft); font-size: 20px; }

/* ── STEP LIST ── */
.step-list { margin: 26px 0; display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--ink-faint);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
  margin-top: -2px;
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { font-size: 0.92rem; margin-bottom: 0; }

/* ── FAQ ── */
.faq-list { margin: 28px 0; }
.faq-item { border-bottom: 1px solid var(--rule); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-q:hover { color: var(--red); }
.faq-q-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--ink-soft);
  transition: transform 0.25s, border-color 0.2s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); border-color: var(--red); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 20px; font-size: 0.93rem; color: var(--ink-mid); line-height: 1.75; }

/* ── REFUND STEPS ── */
.refund-steps {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 26px;
  margin: 26px 0;
}
.refund-step { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.refund-step:last-child { margin-bottom: 0; }
.refund-step-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); flex-shrink: 0; margin-top: 8px; }
.refund-step p { font-size: 0.9rem; color: var(--ink-mid); margin-bottom: 0; }
.refund-step p strong { color: var(--ink); font-weight: 500; }

/* ── INLINE CTA ── */
.page-nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.page-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--ink);
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  color: var(--paper);
  transition: opacity 0.2s;
}
.page-nav-card:hover { opacity: 0.88; }
.page-nav-card-label { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.4); }
.page-nav-card-title { font-weight: 500; font-size: 0.95rem; color: rgba(247,244,239,0.9); }
.page-nav-card-arrow { font-size: 20px; color: rgba(247,244,239,0.3); margin-top: 8px; }

/* ── EVIDENCE FIGURES ── */
.evidence-figure {
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 24px rgba(26,23,20,0.08);
}
.evidence-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.evidence-figure figcaption {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--paper-card);
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}

/* ── SCAM FIGURE ── */
.scam-figure {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(26,23,20,0.10);
  max-width: 480px;
}
.scam-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── DIVIDER ── */
.divider { width: 44px; height: 2px; background: var(--ink); opacity: 0.12; margin: 28px 0; }

/* ── LAST UPDATED ── */
.last-updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-faint); margin-top: 28px; letter-spacing: 0.04em;
}
.last-updated-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ── CONTACT FORM ── */
.contact-form { margin: 28px 0; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--ink-soft); font-weight: 400; font-size: 14px; margin-left: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--paper-card);
  border: 1px solid rgba(26,23,20,0.18);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,23,20,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.form-submit:hover { opacity: 0.85; }
.form-note { font-size: 14px; color: var(--ink-soft); margin-top: 14px; }

.invalid-feedback {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
}
form.needs-validation.was-validated .form-input:invalid,
form.needs-validation.was-validated .form-textarea:invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.2);
}
form.needs-validation.was-validated .form-input:invalid ~ .invalid-feedback,
form.needs-validation.was-validated .form-textarea:invalid ~ .invalid-feedback {
  display: block;
}

.contact-form-error {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--red-light);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: #7a1f18;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(247,244,239,0.4);
  padding: 48px 40px 40px;
  font-size: 15px;
  line-height: 1.7;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  font-size: 15px;
  font-weight: 500;
  color: rgba(247,244,239,0.7);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 16px; }
.footer-links a { color: rgba(247,244,239,0.45); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: rgba(247,244,239,0.7); }
.footer-legal { font-size: 13px; opacity: 0.5; margin-top: 10px; max-width: 480px; }

/* ── FADE IN ── */
.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; gap: 2px; position: absolute; top: 56px; left: 0; right: 0; background: var(--ink); padding: 12px 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .hero { padding: 56px 24px 48px; }
  .page-hero { padding: 40px 24px 36px; }
  .alert-banner { padding: 12px 24px; font-size: 14px; }
  section { padding: 48px 0; }
  footer { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
