:root {
  color-scheme: dark;
  --bg: #070908;
  --ink: #f4f1e8;
  --muted: #aab3ad;
  --line: rgba(244, 241, 232, 0.2);
  --shade: rgba(7, 9, 8, 0.76);
  --accent: #7dc6b6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.page-shell::before {
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.54) 45%, rgba(7, 9, 8, 0.28)),
    radial-gradient(circle at 68% 42%, rgba(125, 198, 182, 0.12), transparent 34%),
    var(--shade);
}

.page-shell::after {
  border: 1px solid rgba(244, 241, 232, 0.05);
  background-image:
    linear-gradient(rgba(244, 241, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 232, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 72%, transparent);
}

.presence {
  width: min(100%, 920px);
  padding-block: clamp(28px, 8vh, 96px);
}

.eyebrow,
.status {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  line-height: 1.6;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: lowercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--accent);
  content: "";
}

h1 {
  max-width: 11ch;
  margin: 18px 0 20px;
  font-size: clamp(1.8rem, 6vw, 4.75rem);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: 0;
}

.status {
  max-width: 34ch;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 680px) {
  .page-shell {
    place-items: end start;
    padding: 28px;
  }

  .page-shell::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 8, 0.52), rgba(7, 9, 8, 0.9) 70%),
      var(--shade);
  }

  h1 {
    max-width: 100%;
    margin-block: 14px 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ambient {
    animation: slow-breathe 18s ease-in-out infinite alternate;
  }
}

@keyframes slow-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}
