:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f4f4f5;
  --muted: #b6bbc6;
  --line: rgba(255, 255, 255, 0.18);
  --orange: #f7931a;
  --orange-soft: rgba(247, 147, 26, 0.18);
  --panel: rgba(10, 12, 15, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background: #050505;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(28px, 5vw, 72px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/fed-breakout.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 46%, rgba(247, 147, 26, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 37%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.1) 34%);
}

.hero-copy {
  width: min(720px, 100%);
  padding-top: 4vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #f1a64a;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.38;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--orange);
  color: #15100a;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.status-strip {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 46px);
  left: clamp(18px, 4vw, 58px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.status-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(6, 7, 9, 0.78);
  color: #f4d4ad;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.content-band {
  padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #050505 0%, #090b0e 100%);
}

.section-head {
  max-width: 900px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

h3 {
  margin-bottom: 10px;
  color: #fff1df;
  font-size: 18px;
  letter-spacing: 0;
}

article p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
    align-items: flex-start;
    padding-top: 54px;
  }

  .hero::before {
    background-position: 62% center;
  }

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

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