:root {
  color-scheme: light;
  --bg: #f8f7f3;
  --ink: #1d1c18;
  --muted: #6e6a62;
  --line: #ded9cc;
  --accent: #255f46;
  --accent-hover: #1c4936;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 64px);
}

.notice {
  width: min(1180px, 100%);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding: clamp(32px, 6vw, 76px);
  border: 1px solid var(--line);
  background: #fffefb;
}

.brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.brand-logo {
  width: min(100%, 480px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

.actions {
  margin-top: 34px;
}

.primary-action {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.primary-action:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.primary-action:focus-visible {
  outline: 3px solid rgba(37, 95, 70, 0.26);
  outline-offset: 4px;
}

.support-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.support-text a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: rgba(37, 95, 70, 0.35);
  text-underline-offset: 4px;
}

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

  .notice {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 22px 34px;
  }

  .brand-panel {
    min-height: 150px;
    justify-content: flex-start;
  }

  .brand-logo {
    width: min(82vw, 420px);
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .primary-action {
    width: 100%;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .notice {
    padding: 26px 18px 30px;
  }

  .brand-panel {
    min-height: 128px;
  }
}
