
:root {
  --ink: #111318;
  --muted: #69727f;
  --line: #dfe3ea;
  --paper: #f5f6f8;
  --white: #ffffff;
  --red: #d71f36;
  --red-dark: #9f1426;
  --graphite: #242933;
  --blue: #16a7c8;
  --gold: #c49349;
  --shadow: 0 18px 48px rgba(12, 15, 22, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(245, 246, 248, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 41, 51, .12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #111318);
  border-radius: 8px;
  font-size: 13px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 9px 13px;
  color: #303744;
  font-size: 14px;
  font-weight: 750;
  border-radius: 8px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--graphite);
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111318;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, .88) 0%, rgba(8, 10, 14, .56) 46%, rgba(8, 10, 14, .14) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, .06) 50%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 9vh;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f5f8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
.hero h1 {
  max-width: 920px;
  margin: 18px 0 20px;
  font-size: clamp(44px, 7vw, 96px);
  text-transform: uppercase;
}
.hero p {
  max-width: 680px;
  color: #d8dde5;
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 850;
  box-shadow: 0 16px 30px rgba(215, 31, 54, .24);
}
.button.secondary {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
.metric { padding: 24px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: 28px; line-height: 1; }
.metric span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 86px auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}
.section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.feature-panel {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111318;
  color: #fff;
}
.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: .76;
}
.feature-panel div {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,0));
}
.feature-panel h3 { margin: 0 0 10px; font-size: 30px; }
.checklist {
  display: grid;
  gap: 14px;
}
.check {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}
.check strong { display: block; margin-bottom: 6px; font-size: 18px; }
.check p { margin: 0; color: var(--muted); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.article-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 24, 32, .06);
}
.article-card img { width: 100%; height: 210px; object-fit: cover; }
.article-card div { padding: 20px; }
.article-card time, .kicker {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-card h3 { margin: 8px 0 12px; font-size: 22px; }
.article-card p { margin: 0; color: var(--muted); }
.resource-band {
  background: #171b23;
  color: #fff;
  padding: 58px 0;
}
.resource-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
}
.resource-inner h2 { margin: 0; font-size: 36px; }
.resource-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.resource-links a {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  color: #e8edf3;
  background: rgba(255,255,255,.05);
}
.page-hero {
  padding: 72px 0 40px;
  color: #fff;
  background: linear-gradient(135deg, #171b23, #2b1118 58%, #26323c);
}
.page-hero .wrap, .article-layout, .simple-page, .site-footer .wrap {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}
.page-hero h1 {
  max-width: 900px;
  margin: 10px 0 14px;
  font-size: clamp(38px, 6vw, 70px);
}
.page-hero p { max-width: 760px; color: #d9dee7; font-size: 18px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
  margin-top: 54px;
  margin-bottom: 80px;
}
.article-body {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.article-body img {
  width: 100%;
  margin: 28px 0;
  border-radius: 8px;
}
.article-body h2 { margin-top: 42px; font-size: 32px; }
.article-body h3 { margin-top: 30px; font-size: 24px; }
.article-body p { font-size: 17px; }
.article-body a { color: var(--red-dark); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body ul { padding-left: 22px; }
.article-link-box {
  margin: 34px 0;
  padding: 22px;
  border-radius: 8px;
  background: #171b23;
  color: #eef3f8;
  border-left: 4px solid var(--red);
}
.article-link-box h3 { margin: 0 0 10px; color: #fff; }
.article-link-box p { margin: 0; color: #d7dee8; }
.article-link-box a { color: #fff; text-decoration-color: rgba(255,255,255,.55); }
.article-side {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 14px;
}
.side-box {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.side-box h3 { margin: 0 0 12px; font-size: 18px; }
.side-box a { display: block; margin: 9px 0; color: var(--red-dark); font-weight: 800; }
.simple-page {
  margin-top: 54px;
  margin-bottom: 86px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.simple-page h2 { margin-top: 34px; font-size: 30px; }
.simple-page a { color: var(--red-dark); font-weight: 800; text-decoration: underline; }
.site-footer {
  padding: 36px 0;
  color: #dfe5ee;
  background: #111318;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.site-footer a { color: #fff; font-weight: 800; }
@media (max-width: 900px) {
  .site-header { height: auto; min-height: 74px; align-items: flex-start; flex-direction: column; padding-top: 14px; padding-bottom: 14px; }
  .site-nav { flex-wrap: wrap; }
  .metrics, .feature-grid, .article-grid, .resource-inner, .article-layout { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .resource-links { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .section-head { display: block; }
  .hero { min-height: 760px; }
}
