:root {
  --ink: #1b1d20;
  --muted: #5f646d;
  --paper: #ffffff;
  --soft: #f4f6f7;
  --line: #dfe3e6;
  --red: #e83f32;
  --red-dark: #b92c23;
  --teal: #087f76;
  --charcoal: #202326;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--red);
}

.primary-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
}

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

.authority-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #25292c;
}

.authority-hero::before,
.authority-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.authority-hero::before {
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.authority-hero::after {
  z-index: -1;
  background: rgba(17, 19, 21, 0.64);
}

.hero-content {
  max-width: 800px;
  padding: 90px 0 76px;
}

.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.authority-hero .eyebrow {
  color: #ffb4ad;
}

h1,
h2,
h3 {
  font-family: Outfit, Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 800;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.authority-hero .button-secondary {
  color: #fff;
  background: rgba(17, 19, 21, 0.45);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
  border-color: var(--red);
}

.crumb-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--red-dark);
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.content-column h2 {
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 800;
}

.section-head p,
.content-column > p {
  color: var(--muted);
  font-size: 17px;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.content-column > :last-child {
  margin-bottom: 0;
}

.fact-list,
.check-list,
.buyer-list {
  padding: 0;
  list-style: none;
}

.fact-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.fact-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list strong {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.fact-list span {
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 6px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.info-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.info-card a,
.text-link {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-panel {
  overflow: hidden;
  border-radius: 6px;
  background: #e8ebed;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  font-size: 13px;
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  background: #eef8f6;
}

.notice strong {
  display: block;
  margin-bottom: 5px;
}

.notice p {
  margin: 0;
  color: #3e5653;
}

.faq-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 100px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.faq-index strong {
  display: block;
  margin-bottom: 12px;
  font-family: Outfit, Arial, sans-serif;
}

.faq-index a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-index a:hover {
  color: var(--red);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.faq-item summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  cursor: pointer;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 20px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: #fff;
  background: var(--charcoal);
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f8f9f9;
}

.comparison-table strong {
  color: var(--red-dark);
}

.table-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.check-list,
.buyer-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.check-list li,
.buyer-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.buyer-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 2px;
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background: var(--charcoal);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  margin-bottom: 9px;
  font-size: 34px;
}

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #16181a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.site-footer .brand-copy strong,
.site-footer h2 {
  color: #fff;
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 15px;
}

.site-footer p {
  max-width: 390px;
  margin: 16px 0 0;
  font-size: 14px;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (max-width: 940px) {
  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .primary-nav {
    width: 100%;
    order: 2;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-grid,
  .split-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 18px;
  }

  .faq-index strong {
    grid-column: 1 / -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    font-size: 13px;
  }

  .primary-nav a {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .primary-nav .nav-cta {
    width: 100%;
    grid-column: 1 / -1;
    min-height: 38px;
    padding: 8px 13px;
  }

  .authority-hero {
    min-height: 470px;
  }

  .hero-content {
    padding: 72px 0 54px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .content-column h2 {
    font-size: 31px;
  }

  .card-grid,
  .process-grid,
  .faq-index,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .cta-inner h2 {
    font-size: 29px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
