:root {
  color-scheme: dark;
  --ink: #f6f0e8;
  --muted: #b9c0c2;
  --soft: #829099;
  --panel: rgba(8, 12, 17, 0.66);
  --line: rgba(255, 255, 255, 0.14);
  --teal: #4fd1c5;
  --coral: #ff7a59;
  --gold: #f6b45b;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #080c11;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: 0;
  background: #080c11;
}

strong {
  color: #fff8ed;
  font-weight: 750;
}

.notice-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/sunset-server-notice.png");
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.96) 0%, rgba(7, 10, 14, 0.82) 34%, rgba(7, 10, 14, 0.28) 70%, rgba(7, 10, 14, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 10, 14, 0.42) 0%, rgba(7, 10, 14, 0.1) 42%, rgba(7, 10, 14, 0.88) 100%);
}

.notice-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(79, 209, 197, 0.36);
  border-radius: 999px;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  background: rgba(79, 209, 197, 0.08);
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.status-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 28px 0;
  padding: 12px 14px;
  border: 1px solid rgba(246, 180, 91, 0.32);
  border-radius: 8px;
  color: #ffe2b8;
  background: rgba(8, 12, 17, 0.56);
  backdrop-filter: blur(18px);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(246, 180, 91, 0.92);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.timeline__item {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.timeline__label {
  display: block;
  margin: 0 0 10px;
  color: var(--coral);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.timeline__item p,
.body-copy,
.contact-note,
.contact-actions {
  margin: 0;
  color: var(--muted);
}

.timeline__item p {
  color: var(--soft);
}

.body-copy {
  max-width: 66ch;
}

.contact-note {
  max-width: 64ch;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #dfebe9;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(79, 209, 197, 0.35);
  border-radius: 8px;
  color: #ecfffb;
  font-weight: 700;
  text-decoration: none;
  background: rgba(79, 209, 197, 0.12);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: rgba(246, 180, 91, 0.72);
  background: rgba(246, 180, 91, 0.16);
  transform: translateY(-1px);
}

.contact-actions a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 18px;
  }

  .hero__image {
    background-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 10, 14, 0.22) 0%, rgba(7, 10, 14, 0.56) 30%, rgba(7, 10, 14, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 10, 14, 0.78), rgba(7, 10, 14, 0.36));
  }

  h1 {
    max-width: 9ch;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 12px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .status-strip {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: pulse 2.8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,
    100% {
      opacity: 0.72;
      transform: scale(0.92);
    }

    50% {
      opacity: 1;
      transform: scale(1);
    }
  }
}
