/* ============================================================
   NET.collect — emergency page
   Black-and-white editorial style, red hand-drawn accent.
   ============================================================ */

:root {
  --background: #faf9f6;
  --foreground: #1c1a17;
  --muted-foreground: #5c5852;
  --accent: #c22a1e;
  --accent-foreground: #faf9f6;

  --font-display: "Space Mono", "Courier New", monospace;
  --font-body: "Work Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* ---------- Layout ---------- */

.notice {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}

@media (min-width: 640px) {
  .notice {
    padding: 3.5rem 2rem;
  }
}

.notice__inner {
  max-width: 56rem;
}

/* ---------- Label ---------- */

.notice__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice__dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
}

/* ---------- Headline ---------- */

.notice__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.94;
}

/* ---------- Body copy ---------- */

.notice__body {
  margin-top: 2.25rem;
  max-width: 42rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
}

@media (min-width: 640px) {
  .notice__body {
    margin-top: 3rem;
    padding-left: 1.75rem;
  }
}

.notice__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .notice__lead {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.notice__secondary {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ---------- Button ---------- */

.notice__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding: 0 1.25rem;
  height: 3rem;
  background: var(--foreground);
  color: var(--accent-foreground);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.notice__button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--accent);
}

.notice__button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .notice__button {
    margin-top: 2.75rem;
  }
}

/* ---------- Entrance animation ---------- */

.notice__inner {
  opacity: 0;
  transform: translateY(14px);
}

.notice__inner.is-ready {
  animation: net-rise 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes net-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice__inner {
    opacity: 1;
    transform: none;
  }
  .notice__inner.is-ready {
    animation: none;
  }
  .notice__button {
    transition: none;
  }
}
