:root {
  --unik-black: #000000;
  --unik-mint: #87dec5;
  --white: #ffffff;
  --paper: #f4f3ef;
  --graphite: #454545;
  --ink: var(--white);
  --muted: rgba(255, 255, 255, 0.58);
  --signal: var(--unik-mint);
  --line: rgba(135, 222, 197, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 74% 48%, rgba(135, 222, 197, 0.055), transparent 32%),
    var(--unik-black);
  color: var(--ink);
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  font-family: "Manrope", Arial, sans-serif;
}

a {
  color: inherit;
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.ready #field {
  opacity: 1;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(22px, 3.2vw, 52px);
  pointer-events: none;
}

.masthead,
.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
}

.brand-name {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.brand-discipline,
.status,
.eyebrow,
.footer {
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-discipline {
  color: var(--unik-mint);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(135, 222, 197, 0.45);
  animation: pulse 2.4s infinite;
}

.hero {
  width: min(950px, 88vw);
  align-self: center;
  padding: 9vh 0 7vh;
}

.eyebrow {
  margin: 0 0 clamp(22px, 4vh, 46px);
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(3.65rem, 9.1vw, 9.4rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.072em;
}

h1 em {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  -webkit-text-stroke: 1.2px var(--unik-mint);
}

.intro {
  max-width: 500px;
  margin: clamp(32px, 5vh, 62px) 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
}

.footer {
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 24px;
}

.footer a {
  position: relative;
  text-decoration: none;
}

.footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.footer a:hover::after,
.footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--unik-mint);
}

.copyright {
  color: var(--muted);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(135, 222, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(135, 222, 197, 0); }
}

::selection {
  background: var(--unik-mint);
  color: var(--unik-black);
}

@media (max-width: 700px) {
  .brand-discipline {
    display: none;
  }

  .hero {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
    line-height: 0.9;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 18px;
  }

  .footer > p:first-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }

  #field {
    transition: none;
  }
}
