:root {
  color-scheme: light;
  --carbon: #0a0a09;
  --stock: #f1ede4;
  --muted: #6d6961;
  --registration: #c7442d;
  --line: rgba(10, 10, 9, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--carbon);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--carbon);
  color: var(--carbon);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--stock);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.social-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.social-link span {
  display: inline-block;
  margin-left: 0.2rem;
  transition: transform 180ms var(--ease-out);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  min-height: calc(100svh - 72px);
}

.hero-copy {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  padding: clamp(40px, 6vw, 96px) 32px 24px;
}

.copy-inner {
  width: min(100%, 680px);
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(24px, 4vh, 52px);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: var(--registration);
  content: "";
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.2rem, 8.6vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.intro {
  max-width: 500px;
  margin: clamp(34px, 6vh, 66px) 0 0;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.45;
}

.waitlist {
  max-width: 570px;
  margin-top: clamp(30px, 5vh, 52px);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 2px solid var(--carbon);
}

.form-row:focus-within {
  border-bottom-color: var(--registration);
}

input[type="email"] {
  min-width: 0;
  height: 52px;
  padding: 0 14px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--carbon);
  font-size: 1rem;
}

input[type="email"]::placeholder {
  color: #8a867f;
  opacity: 1;
}

button {
  min-width: 136px;
  height: 42px;
  align-self: center;
  padding: 0 18px;
  border: 1px solid var(--carbon);
  border-radius: 0;
  background: var(--carbon);
  color: var(--stock);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 120ms var(--ease-out);
}

button:active {
  transform: scale(0.97);
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-note a {
  text-underline-offset: 3px;
}

.form-status {
  min-height: 1.05rem;
  color: var(--carbon);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #a32c1c;
}

.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-object {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--carbon);
  color: var(--stock);
}

.hero-object img {
  width: 100%;
  height: calc(100% - 48px);
  display: block;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.025);
  animation: object-in 900ms 80ms var(--ease-out) forwards;
}

.hero-object figcaption {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  color: rgba(241, 237, 228, 0.7);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.privacy-page {
  background: var(--stock);
}

.privacy {
  max-width: 720px;
  padding: clamp(56px, 10vw, 140px) 32px;
}

.privacy h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.86;
}

.privacy h2 {
  margin-top: 48px;
  font-size: 1rem;
}

.privacy p {
  max-width: 620px;
  color: #4f4c46;
  line-height: 1.65;
}

.privacy .back {
  display: inline-block;
  margin-bottom: 56px;
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

@keyframes object-in {
  to {
    transform: scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover span {
    transform: translate(2px, -2px);
  }

  button:hover:not(:disabled) {
    background: transparent;
    color: var(--carbon);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(100svh - 72px);
    padding-top: 54px;
  }

  .hero-object {
    min-height: 72vw;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 60px;
    padding: 0 18px;
  }

  .social-link {
    font-size: 0.68rem;
  }

  .hero-copy {
    min-height: calc(100svh - 60px);
    padding: 38px 18px 18px;
  }

  .copy-inner {
    align-self: start;
  }

  .eyebrow {
    margin-bottom: 34px;
    font-size: 0.64rem;
  }

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

  .intro {
    margin-top: 34px;
    font-size: 1rem;
  }

  .waitlist {
    margin-top: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    border-bottom: 0;
  }

  .form-row:focus-within {
    border-bottom-color: transparent;
  }

  input[type="email"] {
    width: 100%;
    border-bottom: 2px solid var(--carbon);
  }

  input[type="email"]:focus {
    border-bottom-color: var(--registration);
  }

  button {
    width: 100%;
    height: 46px;
  }

  .site-footer {
    margin-top: 42px;
  }

  .hero-object {
    min-height: 96vw;
  }

  .hero-object img {
    object-position: 56% center;
  }

  .privacy {
    padding: 40px 18px 64px;
  }
}

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