:root {
  color-scheme: light;
  --background: #f7f7f4;
  --foreground: #151514;
  --muted: #6f706c;
  --border: #dedfd9;
  --button-hover: #2b2b29;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: 0 clamp(24px, 5vw, 80px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding-top: 8px;
}

.site-logo {
  display: block;
  width: 280px;
  height: auto;
}

.announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.message {
  max-width: 670px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
}

.signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  text-align: left;
}

.signature img {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(21, 21, 20, 0.1);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
}

.signature p {
  margin: 0;
}

.signature-name {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.3;
}

.signature-role {
  margin-top: 2px !important;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.next-step {
  width: min(100%, 420px);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.next-step p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.next-step a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--foreground);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.next-step a:hover {
  background: var(--button-hover);
  transform: translateY(-1px);
}

.next-step a:focus-visible {
  outline: 3px solid rgba(21, 21, 20, 0.25);
  outline-offset: 4px;
}

.next-step svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .page-shell {
    padding: 0 20px;
  }

  .site-header {
    min-height: 88px;
    padding-top: 4px;
  }

  .site-logo {
    width: 224px;
  }

  .announcement {
    padding: 48px 0 64px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 52px);
    line-height: 1.02;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .message {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.65;
  }

  .signature {
    margin-top: 28px;
  }

  .next-step {
    margin-top: 40px;
  }

  .next-step a {
    width: 100%;
    padding: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .next-step a {
    transition: none;
  }
}
