:root {
  --black: #070707;
  --black-soft: #111111;
  --panel: #171717;
  --red: #c70000;
  --red-dark: #740000;
  --red-deep: #3d0000;
  --white: #ffffff;
  --muted: #c7c7c7;
  --line: #2c2c2c;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.97);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:not(.nav-button):hover,
.main-nav a:not(.nav-button):focus-visible {
  color: #ff3c3c;
}

.nav-button {
  padding: 10px 16px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}

.nav-button:hover,
.nav-button:focus-visible {
  background: #e00000;
}

.menu-button {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid #3a3a3a;
  background: #151515;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  padding: 34px 0 58px;
  background:
    linear-gradient(180deg, #100000 0%, #070707 65%),
    var(--black);
  border-bottom: 1px solid #250000;
}

.hero-banner {
  width: 100%;
  border: 1px solid #3f0c0c;
  background: #0a0a0a;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: end;
  gap: 30px;
  padding: 36px 4px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: #ff3535;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-copy,
.section-intro,
.section p,
.point p,
.site-footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.button-row,
.link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #e00000;
}

.button-outline {
  border-color: #555555;
  background: #121212;
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: #8d8d8d;
  background: #1b1b1b;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.two-column > div:first-child p {
  max-width: 720px;
  font-size: 1.03rem;
}

.logo-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  background: #111111;
  border: 1px solid #3a1212;
  border-left: 5px solid var(--red);
}

.logo-panel img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.logo-panel div {
  display: grid;
  gap: 4px;
}

.logo-panel strong {
  font-size: 1.2rem;
}

.logo-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.card {
  min-height: 180px;
  padding: 24px;
  background: #0b0b0b;
  border: 1px solid #2d2d2d;
  border-top: 4px solid var(--red-dark);
}

.card p {
  margin-bottom: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.panel-copy {
  position: sticky;
  top: 110px;
}

.points {
  border-top: 1px solid var(--line);
}

.point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.point > span {
  color: #ff3838;
  font-weight: 900;
  font-size: 1.05rem;
}

.point p {
  margin-bottom: 0;
}

.section-red {
  padding: 70px 0;
  background: var(--red-dark);
  border-top: 6px solid var(--red);
}

.section-label.light {
  color: #ffb4b4;
}

.link-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}

.link-box h2 {
  margin-bottom: 10px;
}

.link-box p {
  max-width: 640px;
  margin-bottom: 0;
  color: #f0d7d7;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover,
.button-light:focus-visible {
  background: #eeeeee;
}

.button-black {
  background: var(--black);
  color: var(--white);
  border-color: #2a2a2a;
}

.button-black:hover,
.button-black:focus-visible {
  background: #161616;
}

.site-footer {
  padding: 28px 0;
  background: #050505;
  border-top: 1px solid #222222;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

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

.site-footer p {
  margin-bottom: 0;
  font-size: 0.84rem;
  text-align: right;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 20px 22px;
    background: #090909;
    border-bottom: 1px solid #333333;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid #222222;
  }

  .main-nav .nav-button {
    margin-top: 12px;
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid var(--red);
  }

  .hero-actions,
  .two-column,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: start;
  }

  .two-column,
  .split-panel {
    gap: 36px;
  }

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

  .panel-copy {
    position: static;
  }

  .link-box,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    padding: 16px 0 44px;
  }

  .hero-banner {
    min-height: 180px;
    object-fit: cover;
    object-position: center;
  }

  .hero-actions {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section {
    padding: 68px 0;
  }

  .button-row,
  .link-buttons {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-panel img {
    width: 105px;
    height: 105px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .point {
    grid-template-columns: 42px 1fr;
  }
}
