:root {
  --danger-orange: #ff6b35;
  --tactical-amber: #ffb627;
  --concrete-dark: #0a0a0a;
  --concrete-mid: #151515;
  --concrete-light: #242424;
  --copy: #e8e8e8;
  --copy-muted: #b5b5b5;
  --border: rgba(255, 107, 53, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 32%),
    linear-gradient(180deg, #070707 0%, #111111 100%);
  color: var(--copy);
}

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

a {
  color: var(--danger-orange);
}

a:hover {
  color: #ff8555;
}

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

.topbar,
.page,
.site-footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  color: var(--copy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.nav a {
  color: var(--copy-muted);
  text-decoration: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav a.cta-link {
  color: var(--copy);
}

.page {
  padding: 3rem 0 5rem;
}

.hero,
.section,
.site-footer {
  margin-top: 1.5rem;
}

.hero,
.section,
.site-footer-inner {
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.hero,
.section {
  padding: 2.4rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--tactical-amber);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

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

h3 {
  font-size: 1.35rem;
}

.lede,
.section-intro {
  max-width: 60rem;
  color: var(--copy-muted);
  font-size: 1.06rem;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  color: var(--copy-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--copy-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--danger-orange);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--danger-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  background: var(--danger-orange);
}

.button.secondary {
  background: transparent;
  color: var(--copy);
  border-color: rgba(255, 255, 255, 0.18);
}

.meta-line {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #d0d0d0;
}

.review-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: #d7d7d7;
}

.section-header {
  margin-bottom: 1.25rem;
}

.card-grid,
.link-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.card-grid,
.link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.link-card,
.faq-item,
.callout {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.2rem;
}

.feature-media {
  margin: 0;
}

.feature-media img {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.feature-media figcaption {
  margin-top: 0.7rem;
  color: var(--copy-muted);
  font-size: 0.95rem;
}

.timeline-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--danger-orange);
  background: rgba(255, 255, 255, 0.03);
  color: #d7d7d7;
}

.link-card a {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.25rem;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.callout strong,
.faq-item strong {
  color: var(--copy);
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-item h3 {
  margin-bottom: 0.4rem;
}

.site-footer {
  padding-bottom: 4rem;
}

.site-footer-inner {
  padding: 2rem 2.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--copy-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--danger-orange);
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero,
  .section,
  .site-footer-inner {
    padding: 1.5rem;
  }
}
