@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #f3f0e8;
  --muted: #8b8984;
  --acid: #c7ff36;
  --violet: #8a5cff;
  --orange: #ff5c35;
  --black: #050507;
  --line: rgba(243, 240, 232, 0.16);
  color-scheme: dark;
  font-family: "Manrope", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #050507;
  background: var(--acid);
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  width: max-content;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.wordmark-star {
  margin: 0 0.12em;
  color: var(--acid);
  font-size: 0.78em;
}

.signal,
.contact-link,
.eyebrow,
.section-index,
footer,
.orbit-label,
.scroll-cue {
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.signal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: blink 2.4s ease-in-out infinite;
}

.contact-link {
  justify-self: end;
  transition: color 180ms ease;
}

.contact-link span,
.text-link span {
  color: var(--acid);
}

.contact-link:hover,
.text-link:hover {
  color: var(--acid);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25vw 100%, 25vw 100%;
  background-position: -1px 0;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 62% 49%, transparent 0, rgba(5, 5, 7, 0.08) 25%, rgba(5, 5, 7, 0.75) 72%);
}

#nova {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-copy {
  align-self: end;
  width: 100%;
  padding: 0 3vw 5.5vh;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  width: min(46rem, 63vw);
  margin: 0 0 1.7rem;
  color: var(--muted);
}

h1 {
  max-width: 94vw;
  margin: 0;
  font-size: clamp(4.1rem, 10.4vw, 10.6rem);
  font-weight: 700;
  line-height: 0.77;
  letter-spacing: -0.082em;
}

.title-line {
  display: block;
}

.title-line--top {
  padding-left: 0.7em;
}

.title-line--bottom {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.period {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3rem;
  padding-left: 7vw;
}

.hero-foot p {
  margin: 0;
  color: #aaa7a0;
  font-size: clamp(0.74rem, 0.9vw, 0.92rem);
  line-height: 1.6;
}

.detonate {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.detonate-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--acid);
  transition: 240ms ease;
}

.detonate:hover .detonate-icon {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
  rotate: 90deg;
  scale: 1.08;
}

.orbit-label {
  position: absolute;
  color: rgba(243, 240, 232, 0.42);
}

.orbit-label--one {
  top: 25%;
  right: 11%;
}

.orbit-label--two {
  top: 45%;
  right: 3vw;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  left: 3vw;
  top: clamp(7.5rem, 15vh, 10rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(243, 240, 232, 0.35);
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 46px;
  background: currentColor;
}

.manifesto {
  min-height: 88vh;
  padding: 7rem 3vw;
  color: #111113;
  background: var(--ink);
}

.section-index {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(5, 5, 7, 0.2);
}

.manifesto-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 6vw;
  align-items: end;
  padding-top: 5.5rem;
}

.manifesto h2 {
  margin: 0;
  font-size: clamp(3.6rem, 8.3vw, 9rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.manifesto h2 em {
  color: transparent;
  font-family: Georgia, serif;
  font-weight: 400;
  -webkit-text-stroke: 1.5px #111113;
}

.manifesto-side {
  max-width: 22rem;
  padding-bottom: 0.6rem;
}

.manifesto-side p {
  margin: 0 0 2rem;
  color: #494846;
  font-size: 0.95rem;
  line-height: 1.7;
}

.manifesto-stats {
  margin: 0 0 2.75rem;
  border-top: 1px solid rgba(5, 5, 7, 0.2);
}

.manifesto-stats div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(5, 5, 7, 0.2);
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.07em;
}

.manifesto-stats dt {
  color: #77746e;
}

.manifesto-stats dd {
  margin: 0;
  color: #111113;
  font-weight: 500;
  text-align: right;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #111113;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 160px;
  padding: 2rem 3vw;
  color: var(--muted);
  background: var(--black);
}

footer p:last-child {
  justify-self: end;
}

.wordmark--footer {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.2rem;
}

@keyframes blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0 5vw;
  }

  .signal { display: none; }
  .contact-link { font-size: 0; }
  .contact-link span { font-size: 1rem; }

  .hero {
    min-height: 100svh;
    background-size: 50vw 100%, 50vw 100%;
  }

  .hero-copy { padding: 0 5vw 5vh; }
  .eyebrow { width: 100%; }
  .eyebrow span:last-child { display: none; }

  h1 {
    font-size: clamp(4rem, 22vw, 7.2rem);
    line-height: 0.8;
  }

  .title-line--top { padding-left: 0; }
  .hero-foot { padding-left: 0; margin-top: 2.5rem; }
  .hero-foot p { max-width: 15rem; }
  .detonate span:last-child { display: none; }
  .orbit-label--one { top: 22%; right: 5vw; }
  .orbit-label--two, .scroll-cue { display: none; }

  .manifesto { min-height: auto; padding: 5rem 5vw; }
  .manifesto-content { grid-template-columns: 1fr; padding-top: 4rem; }
  .manifesto h2 { font-size: clamp(3.4rem, 17vw, 6rem); }
  .manifesto-side { margin-left: auto; }

  footer {
    grid-template-columns: 1fr 1fr;
    min-height: 130px;
    padding: 2rem 5vw;
  }
  footer p:first-of-type { display: none; }
}

@media (max-height: 720px) and (min-width: 761px) {
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .signal-dot { animation: none; }
}
