*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #000;
  color-scheme: dark;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  background: #000;
  color: #fff;
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: #fff;
  color: #000;
}

.stage {
  position: fixed;
  inset: 0;
  background: #000;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.core {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3.4vw, 34px);
  text-align: center;
}

.logo {
  width: clamp(176px, 41.6vw, 448px);
  line-height: 0;
}

.mark {
  display: block;
  width: 100%;
  height: auto;
}

  .mark path {
    fill: #fff;
  }

.rule {
  width: clamp(120px, 18vw, 210px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 50%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  animation: rule .7s cubic-bezier(.2,.7,.2,1) forwards 1.25s;
}

.slogan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: .5em;
  font-weight: 500;
  font-size: clamp(12px, 2.16vw, 21px);
  letter-spacing: .01em;
  color: #fff;
}

.motion {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: clamp(200px, 60vw, 280px);
  opacity: 0;
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards 2.3s;
}

.cta-btn {
  width: 100%;
  padding: 11px 20px;
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity .2s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

  .cta-btn:hover {
    opacity: .8;
  }

.cta-primary {
  background: #fff;
  color: #000;
}

.cta-secondary {
  background: transparent;
  color: #787878;
  border: 1px solid #2a2a2a;
}

.cta-divider {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  color: #3a3a3a;
  text-transform: uppercase;
}

.chrome {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(18px,3vw,30px) clamp(22px,5vw,48px);
  padding-left: max(clamp(22px,5vw,48px), env(safe-area-inset-left));
  padding-right: max(clamp(22px,5vw,48px), env(safe-area-inset-right));
  padding-bottom: max(clamp(18px,3vw,30px), env(safe-area-inset-bottom));
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #787878;
}

.soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 1px rgba(255,255,255,.7);
  animation: pulse 2.4s ease-in-out infinite;
}

.chrome a {
  color: #787878;
  text-decoration: none;
  transition: color .25s;
}

.chrome a:hover, .chrome a:focus-visible {
  color: #fff;
}

.chrome a:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}


.lead {
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.04);
  animation: focusIn 1.3s cubic-bezier(.2,.7,.2,1) forwards .25s;
}

.slogan .state {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
}

.s1 {
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards 1.5s;
}

.s2 {
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards 1.72s;
}

.s3 {
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards 1.94s;
}
