:root {
  color-scheme: light;
  --surface: #ffffff;
  --depth: #050607;
  --ink-56: rgba(5, 6, 7, .56);
  --ink-32: rgba(5, 6, 7, .32);
  --line: rgba(5, 6, 7, .13);
  --line-faint: rgba(5, 6, 7, .06);
  --orange: #ff6b27;
  --mono: ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { min-width: 320px; min-height: 100%; margin: 0; }
html { overflow-x: hidden; background: var(--surface); }
body {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--surface);
  color: var(--depth);
  font-family: var(--sans);
}

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

.construction-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.construction-field::before,
.construction-field::after {
  position: absolute;
  content: "";
  left: 67%;
  top: 48%;
  border: 1px solid var(--line-faint);
  transform: translate(-50%, -50%);
}

.construction-field::before { width: 33vw; height: 46vh; }
.construction-field::after { width: 19vw; height: 28vh; border-color: var(--line); }

.construction-field i {
  position: absolute;
  left: 67%;
  top: 48%;
  width: 120vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform-origin: center;
}
.construction-field i:nth-child(1) { transform: translate(-50%, -50%) rotate(8deg); }
.construction-field i:nth-child(2) { transform: translate(-50%, -50%) rotate(22deg); }
.construction-field i:nth-child(3) { transform: translate(-50%, -50%) rotate(48deg); }
.construction-field i:nth-child(4) { transform: translate(-50%, -50%) rotate(76deg); }
.construction-field i:nth-child(5) { transform: translate(-50%, -50%) rotate(104deg); }
.construction-field i:nth-child(6) { transform: translate(-50%, -50%) rotate(132deg); }
.construction-field i:nth-child(7) { transform: translate(-50%, -50%) rotate(158deg); }
.construction-field i:nth-child(8) { transform: translate(-50%, -50%) rotate(174deg); }

.construction-field b {
  position: absolute;
  left: 67%;
  top: 48%;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 107, 39, .46);
  transform: translate(-50%, -50%);
}

.construction-header,
footer {
  position: relative;
  z-index: 2;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-color: var(--line-faint);
  font: 650 8px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.construction-header { border-bottom: 1px solid var(--line-faint); }
.construction-header a { font-size: 10px; letter-spacing: .28em; }
.construction-header span, footer { color: var(--ink-32); }

main {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  align-content: center;
  padding: clamp(68px, 10vh, 112px) clamp(20px, 7vw, 98px);
}

.construction-index {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(44px, 7vh, 72px);
  color: var(--ink-32);
  font: 650 8px/1 var(--mono);
  letter-spacing: .14em;
}
.construction-index span:first-child { color: var(--orange); }
.construction-index i { height: 1px; background: var(--line); }

.construction-lockup {
  position: absolute;
  left: min(68vw, 880px);
  top: 50%;
  width: clamp(150px, 20vw, 290px);
  transform: translate(-50%, -50%);
}
.construction-lockup img { display: block; width: 100%; height: auto; opacity: .14; }
.construction-lockup i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 130%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 107, 39, .2);
  transform: translate(-50%, -50%);
}

.construction-kicker {
  margin: 0 0 20px;
  color: var(--orange);
  font: 650 9px/1 var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.055em;
}

.construction-copy {
  margin: 28px 0 0;
  color: var(--ink-56);
  font-size: 13px;
}

nav {
  width: min(100%, 520px);
  display: grid;
  gap: 8px;
  margin-top: clamp(48px, 8vh, 84px);
}
nav a {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .04em;
}
nav a i { height: 1px; background: var(--line-faint); transition: background-color 180ms ease; }
nav a b { color: var(--ink-32); font: 650 8px/1 var(--mono); }
nav a:hover i, nav a:focus-visible i { background: var(--orange); }
nav a:focus-visible { outline: 1px solid var(--orange); outline-offset: 3px; }

footer { min-height: 52px; border-top: 1px solid var(--line-faint); }

@media (max-width: 680px) {
  .construction-header span, footer span:last-child { display: none; }
  main { padding-top: 64px; padding-bottom: 68px; }
  .construction-field::before { width: 54vw; height: 36vh; }
  .construction-field::after { width: 31vw; height: 21vh; }
  .construction-field i, .construction-field::before, .construction-field::after, .construction-field b { left: 76%; top: 34%; }
  .construction-lockup { left: 76%; top: 34%; width: 160px; }
  .construction-index { margin-bottom: 132px; }
  .construction-kicker { max-width: 24em; font-size: 8px; line-height: 1.5; }
  h1 { font-size: clamp(49px, 16vw, 70px); }
  footer { justify-content: flex-start; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
