:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101828;
  background: #f4f7fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #f4f7fa;
}

.page {
  width: min(1080px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 40px;
}

.identity {
  display: grid;
  grid-template-columns: 104px minmax(0, 720px);
  gap: 32px;
  align-items: start;
}

.mark {
  width: 104px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #0b1220;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: .08em;
}

.eyebrow {
  margin: 2px 0 14px;
  color: #4164d8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #53657a;
  font-size: 18px;
  line-height: 1.65;
}

.status {
  margin: 0 0 0 136px;
  color: #667085;
  font-size: 14px;
}

.status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #2f6fed;
}

@media (max-width: 700px) {
  .page { width: min(100% - 32px, 560px); gap: 28px; }
  .identity { grid-template-columns: 1fr; gap: 24px; }
  .mark { width: 88px; height: 54px; }
  h1 { font-size: 38px; }
  .lead { font-size: 16px; }
  .status { margin-left: 0; }
}
