:root {
  color-scheme: light;
  --ink: #17212f;
  --muted: #607086;
  --line: #d9e1ea;
  --paper: #ffffff;
  --wash: #eef4f8;
  --navy: #12324a;
  --teal: #0d7f73;
  --gold: #b88922;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(18, 50, 74, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(13, 127, 115, 0.1), transparent 36%),
    var(--wash);
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
}

.verification-panel {
  width: min(960px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(23, 33, 47, 0.14);
  overflow: hidden;
}

.status-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #37d399;
  box-shadow: 0 0 0 5px rgba(55, 211, 153, 0.18);
}

.hero,
.statement,
.footer {
  padding: 32px;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.summary-grid article {
  min-height: 136px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-grid article:nth-child(even) {
  border-right: 0;
}

.summary-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-grid strong,
.footer strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.company {
  color: inherit;
  font-weight: 800;
}

.statement h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.statement p {
  max-width: 820px;
  color: #334155;
  font-size: 17px;
  line-height: 1.75;
}

.statement p:last-child {
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.footer strong {
  font-size: 16px;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 16px;
    align-items: start;
  }

  .hero,
  .statement,
  .footer,
  .summary-grid article {
    padding: 22px;
  }

  .status-strip {
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.45;
  }

  h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .summary-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .summary-grid article,
  .summary-grid article:nth-child(even),
  .summary-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-grid article:last-child {
    border-bottom: 0;
  }

  .summary-grid strong {
    font-size: 18px;
  }

  .statement p {
    font-size: 16px;
    line-height: 1.68;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding: 10px;
  }

  .verification-panel {
    border-radius: 6px;
  }

  .hero,
  .statement,
  .footer,
  .summary-grid article {
    padding: 18px;
  }

  h1 {
    font-size: 29px;
  }

  .summary-grid article {
    min-height: auto;
  }

  .footer strong {
    overflow-wrap: anywhere;
  }
}
