:root {
  color-scheme: dark;
  --paper: #171917;
  --ink: #f1efe7;
  --muted: #afb0a8;
  --rule: #4d504b;
  --turquoise: #2e9fa5;
  --violet: #9584e8;
  --violet-light: #ded8ff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: clamp(18px, 3.5vw, 54px);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

.site {
  width: min(1320px, 100%);
  min-height: calc(100vh - clamp(36px, 7vw, 108px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0 17px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.eyebrow,
.site-mark {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--ink);
}

.site-mark {
  color: var(--violet);
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(345px, 52vh, 620px);
  padding: clamp(60px, 9vw, 128px) 0 clamp(46px, 6vw, 84px);
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(4.35rem, 11.6vw, 10.6rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.79;
}

h1 span {
  display: block;
  width: fit-content;
}

.title-main {
  white-space: nowrap;
}

.title-accent {
  margin-left: clamp(0.1rem, 8.5vw, 8rem);
  color: var(--violet-light);
}

.details {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
  padding: clamp(24px, 4vw, 52px) 0;
  border-top: 1px solid var(--ink);
}

.intro {
  grid-column: 1 / span 7;
  max-width: 37rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.65vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.status {
  grid-column: 9 / -1;
  align-self: start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--turquoise);
  border-left: 5px solid var(--turquoise);
  color: var(--ink);
  background: #222723;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.25em;
  border-radius: 50%;
  background: var(--turquoise);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.76rem;
}

a {
  color: var(--ink);
  text-decoration-color: var(--turquoise);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--violet);
  text-decoration-color: currentColor;
}

@media (max-width: 760px) {
  .hero {
    min-height: clamp(300px, 48vh, 430px);
  }

  .hero::before {
    left: 77%;
    width: 86vw;
  }

  .hero::after {
    left: 77%;
    width: 52vw;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro,
  .status {
    grid-column: auto;
  }

  .status {
    max-width: 26rem;
  }
}

@media (max-width: 580px) {
  body {
    padding: 18px;
  }

  .masthead {
    align-items: flex-start;
  }

  .eyebrow {
    max-width: 14rem;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6rem);
    line-height: 0.82;
  }

  .title-main {
    white-space: normal;
  }

  .title-accent {
    margin-left: clamp(1.4rem, 12vw, 4rem);
  }

  footer {
    flex-direction: column;
  }
}
