:root {
  --red: #ed1c24;
  --ink: #181818;
  --muted: #666a70;
  --line: #e6e8eb;
  --paper: #ffffff;
  --soft: #f7f7f8;
  --charcoal: #24272b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
}

.contact-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.contact-bar a:hover {
  color: #ffb7bb;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

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

.hero {
  min-height: min(760px, calc(88svh - 70px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow,
.section-heading span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: #3f4348;
  font-size: clamp(17px, 1.7vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

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

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

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

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.entity-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.entity-strip div {
  min-height: 110px;
  padding: 22px;
  background: var(--charcoal);
  color: #fff;
}

.entity-strip span {
  display: block;
  color: #cfd3d8;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.entity-strip strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.content-section,
.faq,
.cta {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 480px;
}

.section-body {
  color: #3f4348;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.metric-grid,
.feature-grid,
.image-grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.feature-link,
.article-list article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.metric strong {
  display: block;
  color: var(--red);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1;
}

.metric span,
.feature-link span {
  display: block;
  margin-top: 10px;
  color: #4f545a;
}

.feature-link {
  text-decoration: none;
}

.feature-link:hover {
  border-color: var(--red);
}

.feature-link strong {
  display: block;
  font-size: 19px;
}

.image-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-grid figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  width: 34%;
  color: var(--ink);
  background: var(--soft);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.article-list article {
  background: #fff;
}

.article-list a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.article-list a:hover h3 {
  color: var(--red);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.contact-cards article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-cards strong {
  font-size: 20px;
  line-height: 1.2;
}

.contact-cards span {
  color: #4f545a;
}

.contact-cards a {
  color: var(--red);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: #4f545a;
}

.cta {
  display: block;
  background: var(--charcoal);
  color: #fff;
}

.cta p {
  max-width: 740px;
  color: #d7dbe0;
}

.cta .button {
  margin-top: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #111;
  color: #fff;
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 8px;
  color: #c9cdd2;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .content-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .entity-strip,
  .metric-grid,
  .feature-grid,
  .image-grid,
  .article-list,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 38px;
  }

  .entity-strip,
  .metric-grid,
  .feature-grid,
  .image-grid,
  .article-list,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
