:root {
  color-scheme: dark;
  --ink: #f3f0e8;
  --muted: #979b94;
  --acid: #d9ff57;
  --night: #0b0d0c;
  --line: rgba(243, 240, 232, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--night);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 255, 87, 0.08), transparent 32%),
    var(--night);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.field,
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grain {
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.header,
.footer,
.hero {
  position: relative;
  z-index: 2;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 64px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(217, 255, 87, 0.45);
  animation: beacon 2.4s infinite;
}

.hero {
  display: flex;
  min-height: calc(100svh - 168px);
  flex-direction: column;
  justify-content: center;
  padding: 6vh clamp(22px, 7vw, 112px) 10vh;
}

.eyebrow {
  margin: 0 0 clamp(22px, 4vh, 42px);
  color: var(--acid);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(48px, 7.4vw, 126px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

h1 span {
  display: block;
}

.accent {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  transform: translateX(clamp(0px, 5vw, 78px));
}

.quiet {
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 232, 0.6);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(34px, 7vh, 78px);
  padding-left: clamp(0px, 30vw, 460px);
}

.lead {
  max-width: 500px;
  margin: 0;
  color: #b9bcb5;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.55;
}

.disturb {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding: 13px 13px 13px 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(11, 13, 12, 0.5);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.disturb:hover {
  border-color: rgba(217, 255, 87, 0.7);
  transform: translateY(-2px);
}

.disturb b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #11140d;
  background: var(--acid);
  font-size: 16px;
}

.footer {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 clamp(22px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes beacon {
  70% { box-shadow: 0 0 0 10px rgba(217, 255, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 255, 87, 0); }
}

@media (max-width: 760px) {
  body { overflow-y: auto; }
  .status { font-size: 0; }
  .status i { display: block; }
  .hero { min-height: calc(100svh - 150px); padding-top: 10vh; }
  h1 { font-size: clamp(46px, 15vw, 78px); }
  .accent { transform: none; }
  .hero-bottom { align-items: flex-start; flex-direction: column; padding-left: 0; }
  .footer { height: 62px; }
  .coordinates { display: none; }
}

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