:root {
  color-scheme: light;
  --paper: #f0efe9;
  --ink: #171714;
  --muted: #6f6d65;
  --line: rgba(23, 23, 20, 0.2);
  --accent: #e2542f;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 34%, rgba(255, 255, 255, 0.8), transparent 29rem),
    var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header,
.site-footer,
.hero {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  text-decoration: none;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.1em;
}

.wordmark span {
  color: var(--accent);
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(226, 84, 47, 0.3);
  animation: pulse 2.4s ease-out infinite;
}

main {
  display: grid;
  align-items: center;
}

.hero {
  min-height: min(720px, calc(100svh - 185px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
  padding-block: 64px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 6.7rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.intro {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.visual {
  position: relative;
  width: min(100%, 550px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 91%;
  height: 91%;
}

.orbit-two {
  width: 68%;
  height: 68%;
  border-style: dashed;
  animation: rotate 36s linear infinite;
}

.orbit-three {
  width: 43%;
  height: 43%;
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(23, 23, 20, 0.24);
}

.core span {
  margin-top: -0.1em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-style: italic;
  line-height: 1;
}

.satellite {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.satellite-one {
  top: 10.4%;
  left: 61%;
  width: 18px;
  height: 18px;
  background: var(--accent);
}

.satellite-two {
  right: 13%;
  bottom: 19%;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.visual-note {
  position: absolute;
  right: 2%;
  top: 49%;
  margin: 0;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.site-footer {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer > :last-child {
  text-align: right;
}

.location {
  display: flex;
  gap: 20px;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(226, 84, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(226, 84, 47, 0);
  }
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .hero {
    width: min(100% - 40px, 1440px);
  }

  .site-header {
    padding-block: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 56px;
  }

  .visual {
    width: min(88vw, 450px);
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .location {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-footer,
  .hero {
    width: min(100% - 32px, 1440px);
  }

  .status {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .intro {
    margin-top: 28px;
  }

  .site-footer > :last-child {
    max-width: 14ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
