:root {
  --black: #000000;
  --white: #f2f0ed;
  --dim: #929292;
  --line: #272727;
  --orange: #db7512;
  --way-blue: #2a4a8a;
  --marquee-speed: 26s;
  /* lower = faster scroll */
  --marquee-gap: 56px
  /* space between logos */
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #000000;
  color: var(--white);
  font-family: "DM Sans", sans-serif
}

.landing-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 50% 50%;
  overflow: hidden
}

.copy-panel {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  padding: 48px 5.2vw 42px;
  display: flex;
  flex-direction: column;
  background: #000
}

.brand-bar {
  display: flex;
  justify-content: right
}

.brand {
  color: #eee;
  text-decoration: none;
  font: 500 14px/1 "DM Mono", monospace;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-left: clamp(10px, 5vw, 72px)
}

.brand .prompt {
  font-family: monospace;
  color: #f52e16
}

.brand .brand-cursor {
  color: #f52e16;
  animation: brand-blink .9s infinite
}

@keyframes brand-blink {
  0%, 45% {
    opacity: 1
  }
  46%, 100% {
    opacity: 0
  }
}

.copy-lower {
  margin-top: auto;
  margin-bottom: clamp(28px, 5vh, 48px);
  max-width: 440px
}

.copy-lower h1 {
  font: 400 clamp(34px, 4vw, 52px)/1.08 "Inter", sans-serif;
  letter-spacing: -.06em;
  margin: 28px 0px 18px;
}

.copy-lower h1 em,
.headline-em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: 0;
  display: inline-grid;
  vertical-align: baseline;
}

.headline-word {
  grid-area: 1 / 1;
  display: inline-block;
  transition: opacity .65s ease, transform .65s ease, color .65s ease;
  opacity: 0;
  transform: translateY(.42em);
  white-space: nowrap;
  pointer-events: none;
}

.headline-word.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.headline-word[data-scene="horizon"] {
  color: var(--orange);
}

.headline-word[data-scene="way"] {
  color: var(--way-blue);
}

.description {
  color: #979797;
  max-width: 370px;
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.signup-block {
  margin-bottom: clamp(18px, 3vh, 24px);
}

.bottom-meta {
  margin-top: auto;
  width: 100%;
  max-width: 440px;
  padding-top: 0;
}

.notify-form {
  height: 48px;
  width: min(430px, 100%);
  display: flex;
  align-items: stretch;
  gap: 2px;
  background: #232323;
  border-radius: 999px;
  padding: 4px
}

.notify-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #f2f2f2;
  font-size: 13px;
  padding-left: 13px
}

.notify-form input::placeholder {
  color: #929292
}

.notify-form button {
  flex: 0 0 auto;
  height: auto;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #f0edf0;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform .2s ease, background .2s ease
}

.notify-form button:hover {
  transform: translateX(2px);
  background: #fff
}

.notify-form button span {
  font-size: 18px;
  vertical-align: -1px;
  margin-left: 10px
}

.form-note {
  color: #656565;
  font-size: 10px;
  margin: 10px 8px 0
}

.waitlist {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #929292;
  font-size: 10px;
  white-space: nowrap
}

.waitlist strong {
  color: #e8e8e8;
  font-weight: 500
}

.avatar-stack {
  display: flex
}

.avatar-stack img {
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #080808;
  border-radius: 50%;
  margin-left: -6px;
  object-fit: cover;
  background: #141414;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.trusted {
  margin-top: clamp(32px, 8vh, 120px)
}

.trusted p {
  font-size: 10px;
  color: #858585;
  margin: 0 0 14px
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--marquee-gap);
  animation: marquee-scroll var(--marquee-speed) linear infinite
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused
}

.logo-track img {
  flex: 0 0 auto;
  height: 24px;
  width: auto;
  opacity: .72;
  filter: grayscale(1) brightness(1.55);
  transition: opacity .2s ease
}

.logo-track img:hover {
  opacity: 1
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none
  }

  .headline-word {
    transition: none;
  }

  .liquid-art-stack .liquid-art {
    transition: none;
  }
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 24px;
  font-size: 10px;
  color: #888
}

.footer-bar nav {
  display: flex;
  gap: 21px
}

.footer-bar a {
  color: #888;
  text-decoration: none
}

.liquid-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #120a1e
}

.liquid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none
}

.liquid-art-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.liquid-art-stack .liquid-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .85s ease;
}

.liquid-art-stack .liquid-art.is-active {
  opacity: 1;
}

.liquid-art-stack.is-fallback-visible {
  display: block;
}

.liquid-art-stack:not(.is-fallback-visible) {
  display: none;
}

.liquid-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.liquid-label,
.liquid-corner {
  position: absolute;
  z-index: 2;
  font: 10px "DM Mono", monospace;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase
}

.liquid-label {
  top: 38px;
  right: 40px;
  display: flex;
  gap: 8px;
  align-items: center
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #ffbe28;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 190, 40, .2);
  animation: pulse 2s infinite
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 190, 40, 0)
  }
}

.liquid-corner {
  bottom: 35px;
  right: 40px
}

.scene-toggle {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 35px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .82);
  font: 10px "DM Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.scene-toggle:hover {
  background: rgba(0, 0, 0, .52);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.scene-toggle[aria-pressed="true"] {
  border-color: rgba(42, 74, 138, .55);
  color: #b8c9e8;
}

.scene-toggle-icon {
  font-size: 12px;
  line-height: 1;
  opacity: .85;
}

@media(max-width:850px) {
  .landing-shell {
    grid-template-columns: 1fr
  }

  .copy-panel {
    min-height: auto;
    padding: clamp(28px, 6vh, 40px) 8vw clamp(24px, 5vh, 32px)
  }

  .copy-lower {
    margin-top: clamp(24px, 5vh, 40px);
    margin-bottom: clamp(20px, 4vh, 32px)
  }

  .bottom-meta {
    margin-top: auto;
    max-width: none
  }

  .signup-block {
    margin-bottom: clamp(16px, 3vh, 22px);
  }

  .waitlist {
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 6px
  }

  .trusted {
    margin-top: clamp(28px, 7vh, 64px)
  }

  .liquid-panel {
    min-height: 0;
    width: 100%;
    aspect-ratio: 5 / 4;
    max-height: min(72vh, 640px);
    min-height: clamp(300px, 52vh, 520px);
  }

  .liquid-canvas,
  .liquid-art {
    object-position: center center;
  }

  .liquid-label {
    top: 24px;
    right: 24px
  }

  .liquid-corner {
    bottom: 24px;
    right: 24px
  }

  .scene-toggle {
    left: 24px;
    bottom: 24px;
  }
}

@media(max-width:500px) {
  .copy-panel {
    padding-left: 7vw;
    padding-right: 7vw
  }

  .copy-lower h1 {
    font-size: clamp(30px, 9vw, 42px)
  }

  .description {
    font-size: 13px;
  }

  .signup-block {
    margin-bottom: 16px;
  }

  .notify-form {
    height: auto;
    background: transparent;
    display: block;
    padding: 0
  }

  .notify-form input {
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    background: #232323;
    padding: 0 18px;
    margin-bottom: 8px
  }

  .notify-form button {
    width: 100%;
    height: 46px;
    justify-content: center
  }

  .waitlist {
    font-size: 9px;
    gap: 8px
  }

  .trusted {
    margin-top: clamp(24px, 6vh, 48px)
  }

  .logo-track {
    gap: 36px
  }

  .logo-track img {
    height: 20px
  }

  .footer-bar {
    font-size: 9px;
    flex-wrap: wrap;
    row-gap: 8px
  }

  .footer-bar nav {
    gap: 10px
  }

  .liquid-panel {
    aspect-ratio: 4 / 5;
    min-height: clamp(280px, 48vh, 440px);
    max-height: 68vh;
  }

  .scene-toggle {
    left: 16px;
    bottom: 16px;
    padding: 9px 12px;
    font-size: 9px;
  }
}

@media(max-width:360px) {
  .copy-panel {
    padding-left: 6vw;
    padding-right: 6vw
  }

  .copy-lower h1 {
    font-size: clamp(26px, 9vw, 34px)
  }

  .waitlist {
    font-size: 8px
  }

  .footer-bar nav {
    gap: 8px
  }
}

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