:root {
  color-scheme: light;
  --ink: #101112;
  --ink-soft: #4d5150;
  --line: rgba(16, 17, 18, 0.16);
  --paper: #f7f7f4;
  --paper-clear: rgba(247, 247, 244, 0.72);
  --steel: #b9c0bb;
  --mint: #a9d8c3;
  --amber: #d8b265;
  --white: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(16, 17, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 17, 18, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px, 88px 88px, auto;
}

button,
input {
  font: inherit;
}

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

#studio-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 28px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 43%, var(--ink) 44% 56%, transparent 57%),
    linear-gradient(45deg, var(--mint) 0 50%, var(--white) 50% 100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  width: min(100% - 40px, 1200px);
  min-height: calc(84svh - 48px);
  margin: 0 auto;
  padding: clamp(64px, 8vh, 116px) 0 clamp(22px, 3.5vh, 38px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(0.76rem, 1vw, 0.84rem);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(5.4rem, 13vw, 12.2rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.lede {
  max-width: 590px;
  margin: clamp(28px, 4vw, 44px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.46;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(180px, 330px) auto;
  gap: 10px;
  width: min(100%, 492px);
  margin-top: 34px;
}

.notify-form input,
.notify-form button {
  min-height: 50px;
  border-radius: 0;
}

.notify-form input {
  width: 100%;
  border: 1px solid rgba(16, 17, 18, 0.22);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  padding: 0 16px;
  outline: none;
  backdrop-filter: blur(18px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.notify-form input::placeholder {
  color: rgba(77, 81, 80, 0.72);
}

.notify-form input:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 3px rgba(169, 216, 195, 0.44);
}

.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 0 21px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.notify-form button:hover,
.notify-form button:focus-visible {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.form-note:empty {
  display: none;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin-top: clamp(46px, 7vh, 88px);
  border-block: 1px solid var(--line);
  background: var(--line);
}

.hero-meta div {
  min-height: 78px;
  padding: 18px 18px 16px;
  background: var(--paper-clear);
  backdrop-filter: blur(14px);
}

.hero-meta span {
  display: block;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-meta strong {
  display: block;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.3;
}

.studio-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
}

.studio-strip p {
  min-height: 112px;
  margin: 0;
  padding: 22px clamp(20px, 4vw, 42px);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
}

.studio-strip p:first-child {
  color: var(--ink);
}

.studio-strip p:last-child {
  border-right: 0;
}

.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;
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 1200px);
    padding-top: 18px;
  }

  .nav-links {
    font-size: 0.72rem;
  }

  .hero {
    width: min(100% - 28px, 1200px);
    min-height: calc(84svh - 38px);
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(4.4rem, 24vw, 7.6rem);
  }

  .notify-form {
    grid-template-columns: 1fr;
    max-width: 410px;
  }

  .notify-form button {
    width: 100%;
  }

  .hero-meta,
  .studio-strip {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    margin-top: 56px;
  }

  .hero-meta div,
  .studio-strip p {
    min-height: auto;
  }

  .studio-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-strip p:last-child {
    border-bottom: 0;
  }
}

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