:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #67615a;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: #ded6ca;
  --green: #28b36b;
  --coral: #e4573d;
  --cobalt: #2f63d8;
  --gold: #d7a62f;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.13);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 99, 216, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 23, 23, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(620px, 88vh) auto;
  gap: 24px;
  padding: 24px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  width: min(540px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  word-break: keep-all;
}

.status-row {
  width: fit-content;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 35px rgba(23, 23, 23, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(40, 179, 107, 0.15);
}

.visual-panel {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(215, 166, 47, 0.2), rgba(47, 99, 216, 0.16));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel img {
  width: min(86%, 390px);
  height: auto;
  display: block;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.info-band > div {
  min-height: 96px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-band strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

@media (max-width: 820px) {
  .site-shell {
    grid-template-rows: auto auto;
    padding: 22px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 76vh;
    padding-top: 32px;
  }

  .visual-panel {
    max-width: 360px;
    justify-self: start;
  }

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

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(3.7rem, 21vw, 5.8rem);
  }

  .lede {
    font-size: 1.08rem;
  }
}
