:root {
  --page: #07090d;
  --ink: #f4f7fb;
  --muted: #9aa7b6;
  --line: #253040;
  --cyan: #42d7e6;
  --amber: #f2b84b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header span:first-child {
  color: var(--ink);
}

.page-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 62vh;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 12vw, 8.6rem);
  line-height: 0.92;
  font-weight: 900;
}

.lede {
  max-width: 660px;
  margin-bottom: 18px;
  color: #d7dee8;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
}

.status-line {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brief-grid article {
  min-height: 184px;
  padding: 24px;
  background: transparent;
}

.brief-grid article + article {
  border-left: 1px solid var(--line);
}

.brief-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 800;
}

.brief-grid h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.brief-grid p {
  max-width: 240px;
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 840px) {
  .page-shell,
  .site-header,
  footer {
    width: min(100% - 28px, 680px);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 6.2rem);
  }

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

  .brief-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brief-grid article {
    min-height: 148px;
  }
}
