:root {
  --ink: #0a0a0a;
  --coal: #121212;
  --paper: #f3efe7;
  --paper-deep: #e3dccf;
  --muted: #a49b8e;
  --line: rgba(243, 239, 231, 0.18);
  --red: #b5191c;
  --red-dark: #7f1114;
  --field: #1b1b1b;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 32px;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-silent {
  position: relative;
  display: inline-block;
}

.brand-silent::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.12em;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(181, 25, 28, 0.65);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 76px 40px 54px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.8vw, 112px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 64px);
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d8d0c4;
  font-size: 19px;
}

.hero-slogan {
  margin: 22px 0 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary,
.submit-button {
  background: var(--paper);
  color: var(--ink);
}

.secondary {
  color: var(--paper);
}

.button:hover,
.submit-button:hover {
  transform: translateY(-1px);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-align: center;
}

.ticker span {
  padding: 22px 12px;
  border-right: 1px solid var(--line);
}

.ticker span:last-child {
  border-right: 0;
}

.mission,
.dossier,
.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  padding: 90px 40px;
  border-bottom: 1px solid var(--line);
}

.mission > p,
.dossier-copy > p,
.form-intro p {
  margin: 8px 0 0;
  max-width: 760px;
  color: #d4ccc0;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.stats-heading {
  grid-column: 1 / -1;
  padding: 56px 32px 28px;
  border-bottom: 1px solid var(--line);
}

.stats-heading h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 56px);
}

.stats article {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stat-number {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier {
  align-items: center;
}

.dossier-panel {
  min-height: 320px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(181, 25, 28, 0.22), transparent 1px),
    #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dossier-panel span {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.9;
}

.dossier-panel strong {
  display: block;
  margin-top: 74px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.dossier-panel p {
  max-width: 280px;
  margin: 18px 0 0;
  color: var(--muted);
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.dossier-grid span {
  padding: 16px;
  background: #161616;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #ded6cc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-section {
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 104px;
}

.case-form {
  display: grid;
  gap: 22px;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

fieldset {
  margin: 0;
  padding: 30px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding: 0 10px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.required-mark {
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  background: var(--field);
  border: 1px solid rgba(243, 239, 231, 0.26);
  border-radius: 6px;
  color: var(--paper);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

select {
  height: 52px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 144px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 25, 28, 0.65);
  outline-offset: 1px;
}

.wide-label {
  margin-top: 22px;
}

label:has(input[name="consumerGovProtocol"]),
label:has(input[name="proconProtocol"]) {
  grid-template-rows: 42px 52px;
  align-content: start;
}

.upload-field input {
  padding: 10px;
}

.consent {
  display: grid;
  gap: 14px;
}

.consent label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: #d9d0c5;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.consent input {
  min-height: 18px;
  margin-top: 2px;
}

.submit-button {
  width: fit-content;
  cursor: pointer;
}

.form-feedback {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(181, 25, 28, 0.12);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.form-feedback.duplicate-feedback {
  border-left-color: var(--muted);
  background: rgba(243, 239, 231, 0.08);
}

.form-feedback.error-feedback {
  border-left-color: var(--red);
  background: rgba(181, 25, 28, 0.12);
}

footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px 32px;
  align-items: center;
  padding: 26px 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer span:last-child {
  justify-self: end;
  max-width: 560px;
  text-align: right;
}

.seo-page {
  border-bottom: 1px solid var(--line);
}

.seo-hero {
  padding: 86px 40px 70px;
  border-bottom: 1px solid var(--line);
}

.seo-hero h1 {
  max-width: 1040px;
  font-size: clamp(46px, 6vw, 98px);
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
  padding: 76px 40px 90px;
}

.article-body {
  max-width: 860px;
}

.article-body h2 {
  margin-top: 52px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body p {
  margin: 18px 0 0;
  color: #d8d0c4;
  font-size: 18px;
}

.evidence-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  min-height: 92px;
  padding: 18px 18px 18px 78px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #d8d0c4;
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.step-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
}

.step-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.inline-button {
  margin-top: 22px;
}

.complaint-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.complaint-options div {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) 1fr;
  gap: 18px;
  padding: 16px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.complaint-options span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.complaint-options strong {
  color: var(--paper);
  font-size: 15px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.channel-grid a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  font-weight: 800;
}

.channel-grid a:hover {
  border-color: rgba(181, 25, 28, 0.8);
  color: #fff;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.guide-grid a {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-grid a:hover {
  border-color: rgba(181, 25, 28, 0.8);
}

.guide-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-grid strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.evidence-list li {
  position: relative;
  padding: 14px 14px 14px 34px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #ded6cc;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.sample-complaint {
  position: relative;
  margin-top: 22px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius);
  color: var(--ink);
}

.sample-complaint p {
  color: #27221d;
  font-size: 17px;
}

.sample-complaint p:first-child {
  margin-top: 0;
}

.copy-box {
  padding-top: 64px;
}

.copy-button {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 36px;
  padding: 0 12px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.copy-button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.article-cta {
  margin-top: 58px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(181, 25, 28, 0.24), transparent 1px),
    #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .button {
  margin-top: 24px;
}

.mini-cta {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 22px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-cta strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.mini-cta p {
  margin: 0;
  color: var(--muted);
}

.mini-cta .button {
  width: fit-content;
  margin-top: 6px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.sidebar-box {
  padding: 20px;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-box strong {
  display: block;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.sidebar-box p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sources a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #ddd4ca;
  font-size: 14px;
}

.sources a:hover {
  color: var(--paper);
}

@media (max-width: 980px) {
  .hero,
  .mission,
  .dossier,
  .form-section,
  .seo-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .form-intro {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

  .ticker,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding: 16px 18px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 28px;
    font-size: 16px;
  }

  .brand-word {
    gap: 5px;
    font-size: 18px;
  }

  .brand-silent::after {
    height: 2px;
  }

  nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 8px;
  }

  .site-header.menu-open nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  nav a {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 38px;
    justify-self: end;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--paper);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .mission,
  .dossier,
  .form-section,
  .seo-hero,
  .seo-content {
    padding: 52px 18px;
  }

  .hero {
    gap: 22px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.02;
  }

  .seo-hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.02;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .lead,
  .mission > p,
  .dossier-copy > p,
  .form-intro p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .button,
  .submit-button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .ticker,
  .stats,
  .field-grid,
  .dossier-grid,
  .complaint-options div,
  .channel-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .ticker span,
  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  fieldset {
    padding: 20px 16px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 18px;
  }

  footer span:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand-word {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 26px;
    font-size: 14px;
  }

  h1,
  .seo-hero h1 {
    font-size: 36px;
  }

  .lead,
  .mission > p,
  .dossier-copy > p,
  .form-intro p,
  .article-body p {
    font-size: 15px;
  }
}
