:root {
  --ink: #10201a;
  --muted: #64736d;
  --line: #d8e1dd;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #0a6b50;
  --green-dark: #064734;
  --gold: #c8902f;
  --shadow: 0 22px 70px rgba(10, 28, 21, 0.18);
}

* {
  box-sizing: border-box;
}

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

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

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

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(620px, 1fr) auto;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 20, 15, 0.86) 0%, rgba(5, 20, 15, 0.64) 48%, rgba(5, 20, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 20, 15, 0.18), rgba(5, 20, 15, 0.65));
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  padding: 32px 0 48px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}

.masthead {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.masthead__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #172f80;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.masthead__eyebrow,
.masthead__name,
.hero__kicker,
.hero__summary {
  margin: 0;
}

.masthead__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.masthead__name {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 700;
}

.hero__copy {
  align-self: center;
  max-width: 690px;
  color: var(--white);
}

.hero__kicker {
  color: #f2c66b;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 12px 0 12px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__summary {
  max-width: 560px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

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

.action {
  min-height: 58px;
  padding: 0 20px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.62);
  outline: none;
}

.action--primary {
  min-width: 210px;
  background: var(--green);
  border-color: var(--green);
}

.action--primary:hover,
.action--primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.status {
  width: min(1120px, calc(100% - 40px));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(25, 42, 35, 0.12);
  overflow: hidden;
}

.status div {
  min-height: 76px;
  padding: 16px 20px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-left: 1px solid var(--line);
}

.status div:first-child {
  border-left: 0;
}

.status__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status__value {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .shell {
    grid-template-rows: minmax(560px, 1fr) auto;
  }

  .hero,
  .hero__content {
    min-height: 560px;
  }

  .hero__content {
    width: min(100% - 28px, 1120px);
    padding: 22px 0 36px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 20, 15, 0.82) 0%, rgba(5, 20, 15, 0.66) 56%, rgba(5, 20, 15, 0.82) 100%);
  }

  .actions {
    display: grid;
  }

  .action {
    width: 100%;
  }

  .status {
    width: min(100% - 28px, 1120px);
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .status div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .status div:first-child {
    border-top: 0;
  }
}
