/* ===================================================
   Fixed Match Scam Awareness — Global Stylesheet
   Design system: Navy + Crimson, light warm neutrals
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --navy:        #042C53;
  --navy-light:  #0C447C;
  --navy-dim:    #E6F1FB;
  --red:         #E24B4A;
  --red-dark:    #A32D2D;
  --red-dim:     #FCEBEB;
  --green:       #2F8F56;
  --gold:        #B8860B;
  --gold-dim:    #FDF6E3;

  /* Surfaces */
  --bg:          #F1EFE8;
  --surface:     #FFFFFF;
  --border:      #e0ddd6;

  /* Text */
  --text:        #1a1a1a;
  --muted:       #6b6b6b;

  /* Radii, shadows, timing */
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 2px rgba(4,44,83,.04);
  --shadow-md:   0 4px 14px rgba(4,44,83,.08);
  --shadow-lg:   0 12px 32px rgba(4,44,83,.12);
  --transition:  0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); text-decoration: underline; }

main { flex: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p  { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 80px 0; }

/* Alternating section backgrounds */
main > section { background: var(--bg); }
main > section:nth-of-type(even) { background: var(--surface); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--navy-light); text-decoration: none; }

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  text-decoration: none;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: .5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--red-dark);
  color: #fff !important;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 0;
    padding: .5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .85rem 1.5rem;
    font-size: 1rem;
  }
  .nav-cta { margin: .5rem 1.5rem; border-radius: var(--radius-sm); }
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-block;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  letter-spacing: -0.005em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-secondary {
  background: var(--navy-light);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: #050F1F !important;
  color: #fff;
  padding: 96px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}
.hero::before { display: none; }
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(204, 41, 54, 0.15);
  color: #CC2936;
  border: 1px solid rgba(204, 41, 54, 0.4);
  border-radius: 99px;
  padding: .35rem 1rem;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #FFFFFF;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto .85rem;
}
.hero h1 span { color: #CC2936; }

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
.hero-sub strong { color: #fff; }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero-specific button overrides */
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.hero .btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ===================================================
   STATS STRIP
   =================================================== */
.stats { padding: 56px 0 !important; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: .25rem;
  letter-spacing: -0.03em;
}
.stat-label { font-size: .9rem; color: var(--muted); }

/* ===================================================
   HOW THE SCAM WORKS
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.step-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  opacity: .25;
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  display: block;
}

/* ===================================================
   CARDS / REPORTS TEASER
   =================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.report-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
  gap: 1rem;
}

.platform-badge {
  background: var(--navy-dim);
  color: var(--navy-light);
  border: 1px solid rgba(12,68,124,.12);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
}

.amount-lost {
  color: var(--red-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.report-card p { font-size: .92rem; color: var(--muted); }

.redacted {
  background: var(--border);
  color: transparent;
  border-radius: 3px;
  user-select: none;
}

/* ===================================================
   SECTION HEADER
   =================================================== */
.section-header { margin-bottom: 2.5rem; }
.section-header p { max-width: 580px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: .5rem;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .icon {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
  font-weight: 700;
}

/* ===================================================
   CALLOUTS
   =================================================== */
.callout {
  border-left: 4px solid var(--red);
  background: var(--red-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.callout p { color: var(--text); margin: 0; }
.callout strong { color: var(--red-dark); }

/* "Informational" variant — navy instead of red */
.callout-gold {
  border-left-color: var(--navy);
  background: var(--navy-dim);
}
.callout-gold p { color: var(--text); }
.callout-gold strong { color: var(--navy); }

/* ===================================================
   WARNING FLAGS
   =================================================== */
.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.flag-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.flag-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.flag-card h3 { font-size: 1rem; color: var(--text); margin-bottom: .35rem; }
.flag-card p  { font-size: .9rem; color: var(--muted); }

.flag-icon { font-size: 1.5rem; margin-bottom: .5rem; display: block; }

/* Steps list */
.steps-list { list-style: none; margin-top: 1.5rem; counter-reset: step; }
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
  background: var(--red);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.steps-list li .content { color: var(--muted); font-size: .95rem; }
.steps-list li .content strong { color: var(--text); }

/* ===================================================
   PLATFORMS LIST
   =================================================== */
.platform-list {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid #e8e6df;
}
.platform-row:last-child { border-bottom: none; }

.platform-left {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.platform-left .fa-brands {
  font-size: 36px;
  flex-shrink: 0;
}
.platform-name {
  font-size: 18px;
  font-weight: 700;
  color: #042C53;
}
.platform-desc {
  flex: 1;
  font-size: 15px;
  color: #5a6a7e;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .platform-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 20px;
  }
  .platform-left {
    width: auto;
    justify-content: flex-start;
  }
}

/* ===================================================
   SCAMMERS TABLE
   =================================================== */
.table-wrapper {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
thead th {
  background: var(--bg);
  color: var(--navy);
  text-align: left;
  padding: .95rem 1.1rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg); }
tbody td { padding: .95rem 1.1rem; color: var(--text); vertical-align: top; }
tbody td.muted { color: var(--muted); font-size: .88rem; }

.tag {
  display: inline-block;
  background: var(--red-dim);
  color: var(--red-dark);
  border: 1px solid rgba(163,45,45,.15);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .7rem;
}

/* ===================================================
   FORMS
   =================================================== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  max-width: 680px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: .88rem; font-weight: 600; color: var(--text); }
.label-optional { color: var(--muted); font-weight: 400; }

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: .7rem .9rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input::placeholder, textarea::placeholder { color: #a5a5a5; }
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(12,68,124,.12);
}
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  color: var(--muted);
  font-size: .9rem;
}
.checkbox-group input { width: auto; accent-color: var(--red); }

.form-success {
  display: none;
  background: rgba(47,143,86,.08);
  border: 1px solid rgba(47,143,86,.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--green);
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* ---------- Report form: optional sub-section ---------- */
.form-helper {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .35rem;
  line-height: 1.45;
}
.form-section-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
  padding-top: 1.25rem;
  margin-top: .25rem;
  border-top: 1px solid var(--border);
}
.form-section-label .label-optional { font-weight: 400; margin-left: .25rem; }

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--navy); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--navy); }
.faq-item.open .faq-question { color: var(--navy); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner { padding-bottom: 1.2rem; }
.faq-answer-inner p { font-size: .95rem; color: var(--muted); }

/* ===================================================
   AUTHORITY LINKS
   =================================================== */
.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.authority-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.authority-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
  border-left-color: var(--red);
}
.authority-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.authority-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.authority-card p { font-size: .82rem; color: var(--muted); margin: 0; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(226,75,74,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .section-label {
  display: block;
  margin-bottom: .5rem;
  color: #F5B6B5;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .6rem;
}
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 620px;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 32px;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: .75rem;
}
.footer-brand .nav-logo:hover { color: rgba(255,255,255,.85); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.disclaimer {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  max-width: 660px;
}

/* ===================================================
   UTILITIES
   =================================================== */
.text-red  { color: var(--red-dark) !important; }
.text-gold { color: var(--navy) !important; }       /* repurposed → navy */
.text-muted{ color: var(--muted) !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ===================================================
   RESPONSIVE TWEAKS
   =================================================== */
@media (max-width: 820px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .page-hero { padding: 56px 0 40px; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .form-card { padding: 20px; }
  .container { padding: 0 1.25rem; }
}

/* ===================================================
   CONTACT PAGE LAYOUT
   =================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===================================================
   CONTACT CHANNEL ROWS
   =================================================== */
.channel-list {
  border: 1px solid #e0ddd6;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border-bottom: 0.5px solid #e0ddd6;
  transition: background 0.15s ease;
}
.channel-row:last-child { border-bottom: none; }
.channel-row:hover { background: #f6f5f1; text-decoration: none; color: var(--text); }

.channel-row-icon {
  font-size: 22px;
  width: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.15s ease;
}
.channel-row:hover .channel-row-icon { filter: brightness(1.25); }

.channel-row-info { flex: 1; min-width: 0; }

.channel-row-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.channel-row-handle {
  font-size: 13px;
  color: #6b6b6b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-row-arrow {
  color: #c0bbb3;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.15s ease, color 0.15s ease;
  line-height: 1;
}
.channel-row:hover .channel-row-arrow {
  transform: translateX(3px);
  color: var(--navy);
}

.channel-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.channel-badge-red  { background: var(--red-dim); color: var(--red-dark); }
.channel-badge-blue { background: var(--navy-dim); color: var(--navy-light); }

/* ===================================================
   ANIMATIONS — added for dynamic effects
   =================================================== */

/* ---------- Page load fade ---------- */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.4s ease-out both; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Smooth scroll ---------- */
html { scroll-behavior: smooth; }

/* ---------- Navbar scrolled state ---------- */
.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 4px 20px rgba(4,44,83,.08);
}
.nav-inner { transition: height 0.3s ease; }
.navbar.scrolled .nav-inner { height: 60px; }
@media (max-width: 820px) {
  .navbar.scrolled .nav-inner { height: 56px; }
  .navbar.scrolled + * .nav-links,
  .navbar.scrolled .nav-links { top: 60px; }
}

/* ---------- Nav link underline slide-in ---------- */
.nav-links li > a:not(.nav-cta) {
  position: relative;
  padding: 6px 0;
}
.nav-links li > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav-links li > a:not(.nav-cta):hover::after,
.nav-links li > a:not(.nav-cta).active::after {
  transform: scaleX(1);
}
@media (max-width: 820px) {
  .nav-links li > a:not(.nav-cta)::after { display: none; }
}

/* ===================================================
   IMAGE DIVIDER (protect.html)
   =================================================== */
.img-divider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.img-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,44,83,0.5), rgba(4,44,83,0.7));
}
.img-divider-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  text-align: center;
}
.img-divider-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #CC2936;
  flex-shrink: 0;
}
.img-divider-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  max-width: 700px;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 768px) {
  .img-divider { height: 280px; }
  .img-divider-quote { font-size: 22px; }
}

/* ===================================================
   ABOUT PAGE — WHO WE ARE
   =================================================== */
.who-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.who-image {
  flex-shrink: 0;
}
.who-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.who-text {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .who-grid {
    flex-direction: column;
    align-items: center;
  }
  .who-image img {
    width: 100%;
    max-width: 320px;
    height: 280px;
  }
}

/* ===================================================
   ABOUT PAGE — ACTIVITY CARDS
   =================================================== */
.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity-card {
  background: #042C53;
  color: #ffffff;
  border-radius: 16px;
  padding: 40px;
}
.activity-icon {
  font-size: 48px;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.activity-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.activity-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
@media (max-width: 768px) {
  .activity-cards-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   ABOUT PAGE — STORY TIMELINE
   =================================================== */

/* ── Block 1: dark intro bar ── */
.tl-intro {
  background: #042C53;
  padding: 80px 0;
}
.tl-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tl-intro-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
.tl-intro-year {
  text-align: right;
  flex-shrink: 0;
}
.tl-intro-year-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  color: #CC2936;
  line-height: 1;
  display: block;
}
.tl-intro-year-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 640px) {
  .tl-intro-inner { flex-direction: column; text-align: center; }
  .tl-intro-year { text-align: center; }
}

/* ── Alternating content blocks ── */
.tl-block {
  padding: 80px 0;
  background: #ffffff;
}
.tl-block:nth-of-type(even) {
  background: #F1EFE8;
}
.tl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tl-text {}
.tl-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #042C53;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}
.tl-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
.tl-img {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
}
.tl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .tl-img { height: 260px; }
}

/* Mobile: single column, image always on top */
@media (max-width: 768px) {
  .tl-block { padding: 52px 0; }
  .tl-inner  { grid-template-columns: 1fr; gap: 28px; }
  .tl-img    { order: -1; }
}

/* ── Block 5: stats bar ── */
.tl-stats {
  background: #042C53;
  padding: 50px 0;
}
.tl-stats-inner {
  display: flex;
  justify-content: center;
  gap: 72px;
  text-align: center;
  flex-wrap: wrap;
}
.tl-stat {}
.tl-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}
.tl-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .tl-stats-inner { gap: 40px; }
  .tl-stats { padding: 50px 0; }
}

/* ---------- Button micro-interactions ---------- */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.18s ease,
              box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0) scale(0.97);
  transition: transform 0.08s ease;
}

/* ---------- Hero red button override (#CC2936) ---------- */
.hero .btn-primary {
  background: #CC2936;
  animation: heroPulse 1.3s ease-out 0.9s 1 both;
}
.hero .btn-primary:hover { background: #A8202B; }

@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(204, 41, 54, .55); }
  70%  { box-shadow: 0 0 0 14px rgba(204, 41, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 41, 54, 0); }
}

/* ---------- Hero word-by-word fade ---------- */
.word-fade {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordIn 0.5s ease-out forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero animated background: floating orbs ---------- */
.hero::after { display: none; }

.hero .hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.orb-1 {
  width: 380px; height: 380px;
  background: rgba(12, 68, 124, 0.4);
  top: -8%; left: -5%;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}
.orb-2 {
  width: 260px; height: 260px;
  background: rgba(204, 41, 54, 0.25);
  top: 48%; left: 8%;
  animation: orbFloat2 14s ease-in-out infinite alternate;
}
.orb-3 {
  width: 340px; height: 340px;
  background: rgba(12, 68, 124, 0.4);
  top: 12%; right: 4%;
  animation: orbFloat3 20s ease-in-out infinite alternate;
}
.orb-4 {
  width: 220px; height: 220px;
  background: rgba(204, 41, 54, 0.25);
  top: 62%; right: 18%;
  animation: orbFloat4 12s ease-in-out infinite alternate;
}
.orb-5 {
  width: 300px; height: 300px;
  background: rgba(12, 68, 124, 0.4);
  top: 36%; left: 42%;
  animation: orbFloat5 17s ease-in-out infinite alternate;
}
.orb-6 {
  width: 200px; height: 200px;
  background: rgba(204, 41, 54, 0.25);
  top: 2%; left: 58%;
  animation: orbFloat6 15s ease-in-out infinite alternate;
}

@keyframes orbFloat1 { from { transform: translate(0, 0);       } to { transform: translate(80px, 60px);    } }
@keyframes orbFloat2 { from { transform: translate(0, 0);       } to { transform: translate(-70px, -80px);  } }
@keyframes orbFloat3 { from { transform: translate(0, 0);       } to { transform: translate(-90px, 60px);   } }
@keyframes orbFloat4 { from { transform: translate(0, 0);       } to { transform: translate(70px, -70px);   } }
@keyframes orbFloat5 { from { transform: translate(0, 0);       } to { transform: translate(10px, 100px);   } }
@keyframes orbFloat6 { from { transform: translate(0, 0);       } to { transform: translate(60px, -90px);   } }

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
}

/* ---------- Cards hover (stronger lift) ---------- */
.stat-card,
.step-card,
.report-card,
.flag-card,
.platform-card,
.authority-card,
.form-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover,
.step-card:hover,
.report-card:hover,
.flag-card:hover,
.platform-card:hover,
.authority-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Table row red-tint hover ---------- */
tbody tr {
  transition: background 0.25s ease;
}
tbody tr:hover {
  background: rgba(226,75,74,.06);
}

/* ---------- "Verified / Warning" tag glow pulse (blacklist only) ---------- */
@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,75,74,0); }
  50%      { box-shadow: 0 0 0 6px rgba(226,75,74,.12); }
}
.table-wrapper .tag {
  animation: tagGlow 2.8s ease-in-out infinite;
}

/* ---------- Form focus (enhanced) ---------- */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
}

/* ---------- Submit button states ---------- */
.btn .btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn .btn-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -4px;
}
.btn.is-loading { pointer-events: none; opacity: .9; }
.btn.is-success { background: var(--green) !important; }

/* ---------- Form success slide-in ---------- */
.form-success {
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.form-success.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Staggered reveal helpers (inline transition-delay from JS) ---------- */
.reveal[data-stagger] { transition-delay: var(--stagger, 0ms); }

/* ===================================================
   PRINT
   =================================================== */
@media print {
  .navbar, footer, .hamburger, .nav-cta { display: none; }
  body { background: #fff; color: #000; animation: none; }
  section { page-break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
