:root {
  color-scheme: light;
  --ink: #222;
  --muted: #4b4b4b;
  --card: #b8f4f5;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--card);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.brand {
  position: absolute;
  top: 24px;
  left: 24px;
}

.brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.announcement {
  width: min(980px, 92vw);
  background: transparent;
  border-radius: 0;
  padding: 54px 56px;
  box-shadow: none;
}

.content {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.2;
}

h1 span {
  font-weight: 700;
}

.lead {
  margin: 0 0 26px;
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-block;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.note a {
  color: #000;
}

@media (max-width: 640px) {
  .announcement {
    padding: 40px 28px;
  }
}
