:root {
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --accent: #f7e7a6;
  --page-pad: 15px;
  --container: 1340px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: #fff;
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.container {
  width: min(100%, calc(var(--container) + (var(--page-pad) * 2)));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.video-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-picture,
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.38) 100%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 36px;
}

.brand-mark,
.navbar-right {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.navbar-right {
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-spring);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-index {
  font-size: 8px;
  line-height: 12px;
  letter-spacing: -0.08px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-label,
.time-city,
.live-clock {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  font-weight: 500;
  text-transform: uppercase;
}

.live-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}

.time-zones {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.time-city {
  opacity: 0.72;
}

.time-value {
  min-width: 74px;
  text-align: right;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.hero-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  gap: 150px;
  padding-top: 190px;
}

.hero-top,
.hero-bottom {
  display: flex;
  width: 100%;
}

.hero-top {
  align-items: flex-end;
}

.launch-kicker {
  flex: 4;
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  font-weight: 500;
  text-transform: uppercase;
}

.launch-kicker span,
.availability {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  font-weight: 500;
  text-transform: uppercase;
}

.availability {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.availability-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 2px rgba(247, 231, 166, 0.18),
    0 0 12px rgba(247, 231, 166, 0.95);
  animation: dotPulse 1.6s ease-in-out infinite;
  transition:
    background-color 500ms ease,
    box-shadow 500ms ease;
}

.hero-bottom {
  align-items: flex-end;
  padding-bottom: 60px;
}

.name-wrap {
  flex: 2;
  min-width: 0;
}

.hero-name {
  margin: 0;
  font-size: clamp(82px, 8.9vw, 128px);
  line-height: 0.88;
  letter-spacing: -3.4px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.star-i {
  position: relative;
  display: inline-block;
}

.star-i::before {
  content: "*";
  position: absolute;
  top: -0.34em;
  left: 50%;
  color: #fff;
  font-size: 0.32em;
  line-height: 1;
  transform: translateX(-50%);
}

.hero-copy {
  flex: 1;
  padding-left: 50px;
}

.hero-copy p {
  max-width: 380px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  font-weight: 500;
}

.signup-form {
  width: min(100%, 560px);
}

.hidden-field {
  display: none;
}

.email-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.email-row {
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.email-row input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 44px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  transition:
    border-color 280ms ease,
    color 280ms ease;
}

.email-row input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.email-row input:focus {
  border-color: #fff;
}

.email-row input:-webkit-autofill,
.email-row input:-webkit-autofill:hover,
.email-row input:-webkit-autofill:focus {
  border-bottom-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}

.email-row input::selection {
  background: rgba(247, 231, 166, 0.32);
  color: #fff;
}

.project-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 44px;
  padding: 0 0 10px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.14px;
  font-weight: 500;
  text-transform: lowercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 360ms var(--ease-spring),
    border-color 360ms var(--ease-spring);
}

.project-button::before {
  content: none;
}

.project-button:hover,
.project-button:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.project-button:hover::before,
.project-button:focus-visible::before {
  transform: none;
}

.hero-inner-confirmation {
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0;
}

.confirmation-panel {
  width: min(100%, 560px);
}

.success-mark {
  width: 46px;
  height: 1px;
  margin-top: 26px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(247, 231, 166, 0.72);
}

.confirmation-title {
  margin: 24px 0 20px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.94;
  letter-spacing: -3px;
  font-weight: 500;
  text-transform: uppercase;
}

.confirmation-panel p:not(.launch-kicker) {
  max-width: 420px;
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  font-weight: 500;
}

.manifest-shell {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
  isolation: isolate;
}

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

.manifest-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: contrast(1.12);
}

.manifest-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.86) 100%);
}

.manifest-main {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 170px 0 80px;
}

.manifest-content {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(320px, 620px);
  align-items: start;
  gap: 70px;
}

.manifest-text {
  max-width: 620px;
}

.manifest-text p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.012em;
  font-weight: 500;
}

.manifest-text p + p {
  margin-top: 1.05em;
}

.manifest-back {
  margin-left: auto;
}

.reveal {
  opacity: 0;
  animation-duration: 900ms;
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-spring);
}

.reveal-up.is-visible {
  animation-name: revealUp;
}

.reveal-right.is-visible {
  animation-name: revealRight;
}

.project-button.reveal-right {
  animation-delay: 80ms;
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  padding: 14px 18px;
  background: #fff;
  color: #000;
  font-size: 14px;
}

@keyframes videoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.45);
  }
}

@media (min-width: 810px) and (max-width: 1199.98px) {
  :root {
    --page-pad: 18px;
  }

  .navbar {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .brand-mark,
  .navbar-right {
    gap: 16px;
  }

  .time-zones {
    gap: 12px;
  }

  .hero-inner {
    gap: 112px;
  }

  .hero-bottom {
    gap: 28px;
    padding-bottom: 52px;
  }

  .hero-name {
    font-size: clamp(70px, 9vw, 96px);
    line-height: 0.92;
    letter-spacing: -3px;
  }

  .hero-copy {
    padding-left: 24px;
  }
}

@media (max-width: 809.98px) {
  :root {
    --page-pad: 18px;
  }

  .site-shell {
    min-height: 100svh;
    overflow-y: auto;
  }

  .navbar {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .navbar {
    align-items: flex-start;
    gap: 20px;
  }

  .navbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .time-zones {
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }

  .live-clock {
    gap: 6px;
  }

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

  .hero-inner {
    min-height: 100svh;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 72px;
    padding-top: 140px;
  }

  .hero-top,
  .hero-bottom {
    flex-direction: column;
  }

  .hero-top {
    align-items: flex-start;
    gap: 28px;
  }

  .launch-kicker,
  .availability,
  .name-wrap,
  .hero-copy {
    flex: none;
    width: 100%;
  }

  .availability {
    min-width: 0;
  }

  .hero-bottom {
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 44px;
  }

  .hero-name {
    font-size: clamp(46px, 13.5vw, 64px);
    line-height: 0.96;
    letter-spacing: -2px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy p {
    max-width: 420px;
    margin-bottom: 26px;
  }

  .email-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .project-button {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-inner-confirmation {
    justify-content: flex-end;
    padding-bottom: 44px;
  }

  .confirmation-title {
    font-size: clamp(48px, 15vw, 72px);
    letter-spacing: -2px;
  }

  .manifest-main {
    padding: 138px 0 54px;
  }

  .manifest-background img {
    object-position: 46% center;
    opacity: 0.34;
  }

  .manifest-content {
    display: block;
  }

  .manifest-content .launch-kicker {
    margin-bottom: 58px;
  }

  .manifest-text p {
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.38;
  }
}

@media (max-width: 440px) {
  .hero-name {
    white-space: normal;
  }

  .navbar-right {
    max-width: 164px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
