@font-face {
  font-family: "Obviously Italic";
  src: url("assets/fonts/ObviouslyNarrow-BlackItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #050505;
  --paper: #f4ead2;
  --muted: rgba(244, 234, 210, 0.72);
  --yellow: #ffd92c;
  --line: rgba(244, 234, 210, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 174, 222, 0.18), transparent 34%),
    var(--black);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.intro {
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.logo {
  width: min(720px, 92vw);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.58));
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-family: "Obviously Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.intro p {
  max-width: 780px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.14;
}

.intro .status-note {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
}

.contact-tab {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  display: grid;
  gap: 8px;
  min-width: min(320px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.86);
  backdrop-filter: blur(14px);
}

.contact-tab p {
  margin: 0;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-tab a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .page-shell {
    align-items: center;
    padding: 24px 18px 150px;
  }

  .contact-tab {
    left: 16px;
    right: 16px;
    min-width: 0;
  }
}
