:root {
  color-scheme: light;
  --ink: #0b0b0b;
  --paper: #f7f7f4;
  --muted: #6f6f68;
  --accent: #d92818;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(11 11 11 / 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgb(11 11 11 / 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 45%, black 0, transparent 68%);
  pointer-events: none;
}

.hero {
  position: relative;
  width: min(1280px, 100%);
  min-height: calc(100svh - clamp(48px, 8vw, 112px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 58%);
  padding-top: clamp(72px, 12vh, 132px);
}

h1 {
  margin: 0;
  max-width: 8.8ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, ui-serif, serif;
  font-size: clamp(70px, 9.8vw, 140px);
  font-weight: 600;
  line-height: 0.82;
  text-wrap: balance;
  text-shadow:
    0 1px 0 var(--paper),
    0 0 28px var(--paper);
}

.line {
  margin: clamp(22px, 3vw, 38px) 0 0;
  max-width: 17ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, ui-serif, serif;
  font-size: clamp(26px, 3.7vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-shadow:
    0 1px 0 var(--paper),
    0 0 22px var(--paper);
}

.soon {
  margin: clamp(18px, 2.5vw, 36px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.35;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: clamp(0px, 4vw, 56px);
  z-index: 1;
  width: min(390px, 33vw);
  margin: 0;
  transform: translateY(-45%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 52px rgb(11 11 11 / 0.18));
}

.domain {
  position: absolute;
  top: clamp(20px, 4vw, 48px);
  left: clamp(20px, 4vw, 48px);
  z-index: 1;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.domain:hover {
  color: var(--accent);
}

.baseline {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 52px);
  left: clamp(20px, 4vw, 52px);
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  animation: breathe 2800ms ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: scaleX(0.22);
    opacity: 0.45;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .page-shell {
    align-items: flex-start;
    min-height: auto;
    overflow-x: hidden;
    padding-top: 84px;
    padding-bottom: 112px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(52px, 14.5vw, 64px);
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(82vw, 360px);
    margin: clamp(34px, 9vw, 52px) auto 0;
    transform: none;
  }
}
