:root {
  --bg: #f6f7fb;
  /* UPDATED to match screenshot */
  --text: #0b1220;
  --muted: #6b7280;
  --line: #e7ecf3;

  --shadow: 0 22px 70px rgba(11, 18, 32, .12);

  --red: #e11d2e;
  --red2: #ff4a4a;

  --chip: #ffe9ea;
  --card: #fff;

  --critical-bg: #ffe8ea;
  --critical-tx: #b42318;

  --warning-bg: #fff2d9;
  --warning-tx: #b54708;

  --moderate-bg: #e9f8ee;
  --moderate-tx: #027a48;

  --radius: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
HEADER
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(14px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center
}

.brand-img {
  height: 70px;
  width: auto;
  display: block
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  font-weight: 600;
  color: var(--muted);
  padding: 10px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--text)
}

.nav-link.active,
.nav-link.is-current {
  color: var(--text)
}

.nav-link.active::after,
.nav-link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  margin: auto;
  width: 28px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hamburger::before {
  top: -6px
}

.hamburger::after {
  top: 6px
}

/* ===========================
BUTTONS (global)
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:active {
  transform: translateY(1px)
}

.btn-ic {
  font-size: 16px
}

.btn-primary {
  background: linear-gradient(180deg, var(--red2), var(--red));
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 29, 46, .22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(225, 29, 46, .26)
}

.btn-ghost {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #d7ddeb
}

.btn-read {
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  width: fit-content;
}

.btn-read:hover {
  border-color: #d7ddeb
}

/* ===========================
HERO (match screenshot)
=========================== */
.hero {
  position: relative;
  padding: 56px 0 34px;
  /* UPDATED */
  overflow: hidden;
}

/* soft “white wash” over bg like screenshot */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 620px at 50% 5%,
      rgba(255, 255, 255, .90),
      rgba(255, 255, 255, .55) 55%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  /* UPDATED */
  gap: 44px;
  /* UPDATED */
  align-items: start;
}

.hero-glow {
  position: absolute;
  inset: -260px -220px auto -220px;
  height: 680px;
  background:
    radial-gradient(640px 380px at 20% 42%, rgba(255, 74, 74, .14), transparent 70%),
    radial-gradient(860px 540px at 72% 30%, rgba(225, 29, 46, .10), transparent 72%),
    radial-gradient(900px 620px at 52% 92%, rgba(11, 18, 32, .06), transparent 74%);
  filter: blur(18px);
  pointer-events: none;
  z-index: -2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 233, 234, .95);
  border: 1px solid #ffd0d3;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.pill-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ffd0d3;
}

.hero-title {
  margin: 20px 0 14px;
  font-size: 78px;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.hero-title .accent {
  color: var(--red)
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 64ch;
}

/* screenshot has NO buttons */
.hero-actions {
  display: none !important;
}

/* stats + divider like screenshot */
.stats {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.stat-num {
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -.03em;
}

.stat-label {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* illustration removed */
.hero-illustration {
  display: none !important;
}

/* ===========================
FORM CARD (match screenshot + tighter top + smaller TCPA)
=========================== */
.hero-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  /* UPDATED */
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .92);
  /* UPDATED */
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.form-card {
  padding: 22px 30px 18px;
  /* UPDATED */
  text-align: center;
  background:
    radial-gradient(560px 360px at 85% 8%, rgba(255, 74, 74, .11), transparent 58%),
    radial-gradient(520px 320px at 18% 92%, rgba(11, 18, 32, .06), transparent 60%),
    rgba(255, 255, 255, .88);
}

/* tighter icon area */
.form-icon {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 8px;
}

.form-icon-inner {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff1f2;
  border: 1px solid #ffd0d3;
  font-size: 18px;
}

.form-title {
  margin: 6px 0 6px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.form-subtitle {
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 54ch;
}

/* Inputs - grey pill rows */
.inputs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 auto;
}

.input {
  width: 100%;
  background: #eceff4;
  border: 1px solid #e3e7ef;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  color: var(--text);
}

.input::placeholder {
  color: #6b7280
}

.input:focus {
  background: #fff;
  border-color: #d9a5aa;
  box-shadow: 0 0 0 4px rgba(225, 29, 46, .10);
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

/* CTA */
.btn-cta {
  width: 100%;
  margin: 16px auto 10px;
  padding: 16px 18px;
  /* slightly taller like screenshot */
  font-size: 15px;
  border-radius: 999px;
}

/* TCPA: smaller font + less spacing */
.tcpa {
  text-align: left;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tcpa-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.tcpa-row input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--red);
}

.link {
  color: #4b5563;
  text-decoration: underline;
}

.link:hover {
  color: #111827
}

/* Trust row */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

/* ===========================
SECTIONS + CARDS
=========================== */
.section {
  padding: 46px 0
}

.section-head {
  margin-bottom: 22px
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px
}

.section-title h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -.03em
}

.section-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff1f2;
  border: 1px solid #ffd0d3;
}

.section-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 80ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, .06);
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid transparent;
}

.badge-critical {
  background: var(--critical-bg);
  color: var(--critical-tx);
  border-color: #ffc6ca
}

.badge-warning {
  background: var(--warning-bg);
  color: var(--warning-tx);
  border-color: #ffd9a3
}

.badge-moderate {
  background: var(--moderate-bg);
  color: var(--moderate-tx);
  border-color: #bfe8cd
}

.date {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.card-title {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.01em
}

.card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px
}

/* ===========================
FOOTER
=========================== */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  height: 70px;
  width: auto;
  display: block
}

.footer-desc {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 44ch;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  color: #2a3344;
}

.footer-col a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-col a:hover {
  color: var(--text)
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
}

/* ===========================
ABOUT (optional)
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, .06);
}

.about-h {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.01em
}

.about-p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.about-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9
}

.about-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* ===========================
CONTACT (optional)
=========================== */
.contact-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* outer card look */
.contact-banner {
  /* match hero card vibe (soft glass + border) */
  background:
    radial-gradient(620px 360px at 85% 10%, rgba(255, 74, 74, .14), transparent 60%),
    rgba(255, 255, 255, .92);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 18px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* remove old arrow */
.contact-banner::after {
  content: none;
}

/* subtle icon chip like hero */
.contact-banner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-banner span::before {
  content: "✉️";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #ffd0d3;
  font-size: 16px;
}

/* form container */
.contact-form {
  background:
    radial-gradient(720px 420px at 85% 0%, rgba(255, 74, 74, .10), transparent 58%),
    radial-gradient(560px 360px at 12% 100%, rgba(11, 18, 32, .06), transparent 60%),
    rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 22px 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* grid spacing like hero form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

/* match hero inputs */
.contact-input,
.contact-textarea {
  width: 100%;
  background: #eceff4;
  border: 1px solid #e3e7ef;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  color: var(--text);
  box-shadow: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #6b7280;
}

.contact-input:focus,
.contact-textarea:focus {
  background: #fff;
  border-color: #d9a5aa;
  box-shadow: 0 0 0 4px rgba(225, 29, 46, .10);
}

.contact-textarea {
  margin-top: 14px;
  resize: vertical;
  min-height: 160px;
}

/* CTA button = hero primary */
.contact-submit {
  margin-top: 16px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, var(--red2), var(--red));
  box-shadow: 0 14px 30px rgba(225, 29, 46, .22);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-submit:hover {
  box-shadow: 0 18px 40px rgba(225, 29, 46, .26);
}

.contact-submit:active {
  transform: translateY(1px);
}

/* TCPA area: same as hero tcpa */
.tcpa-row--contact {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.tcpa-row--contact input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--red);
}

/* optional: soften section spacing */
.section .contact-wrap {
  padding-top: 6px;
}

/* responsive */
@media (max-width: 860px) {
  .contact-banner {
    border-radius: 18px 18px 0 0;
  }

  .contact-form {
    border-radius: 0 0 18px 18px;
    padding: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-textarea {
    min-height: 140px;
  }
}

/* ===========================
RESPONSIVE
=========================== */
@media (max-width:1100px) {
  .hero-title {
    font-size: 62px
  }

  .hero-grid {
    gap: 26px
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    row-gap: 24px
  }

  .footer-col:last-child {
    grid-column: 1 / -1
  }
}

@media (max-width:860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    padding: 14px 20px 18px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(180%) blur(14px);
    display: none;
    flex-direction: column;
    gap: 6px;
  }

  .nav.open {
    display: flex
  }

  .header-cta {
    display: none
  }

  .hero {
    padding: 26px 0 18px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .form-card {
    padding: 18px 18px 14px
  }

  .form-title {
    font-size: 24px
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .cards {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:520px) {
  .hero-title {
    font-size: 44px
  }
}

/* ===========================
HERO IMAGE (fills the empty space under stats)
=========================== */
.hero-media {
  margin-top: 22px;
  width: 100%;
  min-height: 280px;
  /* gives it presence */

  overflow: hidden;

}

.hero-media-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 420px;
  /* controls how tall it gets on desktop */
  object-fit: cover;
  /* crop nicely */
  display: block;
}

/* Hide hero image on mobile */
@media (max-width:860px) {
  .hero-media {
    display: none;
  }
}


@media (max-width:860px) {

  /* less space around hero */
  .hero {
    padding: 18px 0 12px;
  }

  /* center the red pill */
  .pill {
    margin: 0 auto;
    justify-content: center;
  }

  /* title/subtitle tighter on mobile */
  .hero-title {
    margin: 14px 0 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  /* stats: 3 inline */
  .stats {
    margin-top: 18px;
    padding-top: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    text-align: center;
  }

  .stat-num {
    font-size: 26px;
    /* smaller */
    line-height: 1.1;
  }

  .stat-label {
    font-size: 12px;
    /* smaller */
    margin-top: 4px;
  }
}

/* if you want even tighter on very small phones */
@media (max-width:520px) {
  .stats {
    gap: 10px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ===========================
ARTICLE PAGE STYLES
(Add to styles.css)
=========================== */

.article-hero {
  padding: 42px 0 54px;
}

.article-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 14px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 60px rgba(11, 18, 32, .08);
  overflow: hidden;
}

.article-head {
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(560px 360px at 85% 8%, rgba(255, 74, 74, .08), transparent 58%),
    rgba(255, 255, 255, .88);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.article-date {
  color: var(--muted);
  font-weight: 800;
}

.article-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.article-dek {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 75ch;
}

.article-body {
  padding: 22px 26px 26px;
  color: var(--text);
}

.article-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.article-body h2 {
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--text);
}

.article-body ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.article-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-disclaimer {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13.5px;
}

@media (max-width:860px) {
  .article-hero {
    padding: 22px 0 34px;
  }

  .article-head {
    padding: 20px 18px 14px;
  }

  .article-body {
    padding: 18px 18px 20px;
  }

  .article-title {
    font-size: 24px;
  }

  .article-meta {
    align-items: flex-start;
  }
}