@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

:root {
  --black: #050505;
  --black-soft: #0b0b0c;
  --white: #f7f7f5;
  --muted: #88878a;
  --orange: #ff4b00;
  --red: #ef1200;
  --grey: #5d5b5e;
  --font: "Cal Sans", "Arial Black", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  height: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon {
  position: relative;
  height: 100%;
  height: 100svh;
  max-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  padding:
    max(20px, env(safe-area-inset-top))
    clamp(20px, 4.5vw, 76px)
    max(20px, env(safe-area-inset-bottom));
}

.background,
.grid,
.grain,
.glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.background {
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.55;
  filter: contrast(1.08) brightness(0.85);
}

.video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.glow {
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  animation: glowPulse 7s ease-in-out infinite alternate;
}

.glow--one {
  width: min(62vw, 900px);
  height: min(62vw, 900px);
  left: -28vw;
  top: -34vw;
  background: radial-gradient(circle, rgba(255, 73, 0, 0.55), rgba(238, 18, 0, 0.08) 55%, transparent 72%);
}

.glow--two {
  width: min(54vw, 760px);
  height: min(54vw, 760px);
  right: -24vw;
  bottom: -33vw;
  animation-delay: -3s;
  background: radial-gradient(circle, rgba(255, 67, 0, 0.34), rgba(239, 18, 0, 0.08) 54%, transparent 72%);
}

.grid {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 0 28%, transparent 74%);
  mask-image: radial-gradient(circle at 50% 48%, #000 0 28%, transparent 74%);
}

.grain {
  opacity: .16;
  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)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 25, 0.5);
  box-shadow: 0 0 36px rgba(255, 60, 0, .15), inset 0 0 24px rgba(255, 78, 0, .08);
  animation: float 8s ease-in-out infinite;
}

.orb--one {
  width: 18px;
  height: 18px;
  left: 12%;
  top: 27%;
}

.orb--two {
  width: 8px;
  height: 8px;
  right: 16%;
  top: 24%;
  animation-delay: -2.2s;
}

.orb--three {
  width: 13px;
  height: 13px;
  right: 10%;
  bottom: 22%;
  animation-delay: -5s;
}

.topbar,
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .18em;
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 74, 0, .85);
  animation: statusPulse 1.5s ease-in-out infinite;
}

.hero {
  width: min(100%, 1100px);
  margin: auto;
  padding: clamp(16px, 3vh, 36px) 0 clamp(14px, 2.5vh, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrap {
  width: clamp(180px, 20vw, 300px);
  margin-bottom: clamp(18px, 3.5vh, 36px);
}

.logo-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.38));
}

.eyebrow {
  margin: 0 0 clamp(12px, 1.8vh, 22px);
  color: var(--orange);
  font-size: clamp(11px, 1.3vw, 16px);
  letter-spacing: .29em;
  text-shadow: 0 0 14px rgba(255, 75, 0, 0.4);
  animation: reveal .9s cubic-bezier(.2,.72,.2,1) forwards, eyebrowPulse 3.5s ease-in-out infinite alternate;
  animation-delay: .28s, 1.2s;
}

.headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(52px, 8.5vw, 136px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.046em;
}

.headline__line {
  display: block;
  white-space: nowrap;
  text-shadow: 0 18px 48px rgba(0,0,0,.55);
}

.headline__line--accent {
  margin-top: .05em;
  padding: 0 .08em .25em;
  color: transparent;
  background: linear-gradient(110deg, #ff1600 0%, #ff6a00 30%, #fffbf0 50%, #ff6a00 70%, #ef1200 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: reveal .9s cubic-bezier(.2,.72,.2,1) forwards, gradientShimmer 5s ease-in-out infinite alternate;
  animation-delay: .58s, 1.48s;
}

.tagline-wrap {
  min-height: 36px;
  margin-top: clamp(20px, 3.5vh, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  color: rgba(255,255,255,.66);
  font-size: clamp(14px, 1.65vw, 22px);
}

.tagline-prefix {
  color: rgba(255,255,255,.92);
  letter-spacing: .09em;
  white-space: nowrap;
}

.tagline-divider {
  width: clamp(24px, 3vw, 42px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,74,0,.1));
}

.tagline {
  min-width: min(470px, 55vw);
  margin: 0;
  text-align: left;
  transition: opacity .34s ease, transform .34s ease;
}

.tagline.is-changing {
  opacity: 0;
  transform: translateY(9px);
}

.signal {
  height: 34px;
  margin-top: clamp(22px, 3.8vh, 44px);
  display: flex;
  align-items: center;
  gap: 7px;
}

.signal span {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--red));
  box-shadow: 0 0 12px rgba(255, 69, 0, .34);
  animation: signal 1.25s ease-in-out infinite;
}

.signal span:nth-child(1) { height: 9px; animation-delay: -.48s; }
.signal span:nth-child(2) { height: 17px; animation-delay: -.36s; }
.signal span:nth-child(3) { height: 28px; animation-delay: -.24s; }
.signal span:nth-child(4) { height: 17px; animation-delay: -.12s; }
.signal span:nth-child(5) { height: 9px; }

.footer {
  align-self: end;
}

.footer p {
  margin: 0;
}

.footer__launch {
  color: rgba(255,255,255,.84);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal .9s cubic-bezier(.2,.72,.2,1) forwards;
}

.reveal--logo { animation-delay: .1s; }
.reveal--eyebrow { animation-delay: .28s; }
.reveal--line-1 {
  animation: reveal .9s cubic-bezier(.2,.72,.2,1) forwards, textFloat 5s ease-in-out infinite alternate;
  animation-delay: .43s, 1.33s;
}
.reveal--line-2 { animation-delay: .58s; }
.reveal--tagline { animation-delay: .78s; }
.reveal--signal { animation-delay: .98s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShimmer {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 14px rgba(255, 75, 0, 0.35));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 28px rgba(255, 90, 0, 0.65));
  }
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 14px rgba(255, 75, 0, 0.35));
  }
}

@keyframes textFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

@keyframes eyebrowPulse {
  0% {
    opacity: 0.88;
    text-shadow: 0 0 10px rgba(255, 75, 0, 0.3);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 22px rgba(255, 95, 0, 0.85);
  }
}

@keyframes statusPulse {
  0%, 100% { opacity: .45; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes signal {
  0%, 100% { transform: scaleY(.55); opacity: .46; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-18px); opacity: .8; }
}

@keyframes glowPulse {
  from { transform: scale(.96); opacity: .21; }
  to { transform: scale(1.05); opacity: .34; }
}

@media (max-width: 720px) {
  .coming-soon {
    padding-inline: 20px;
  }

  .topbar__label {
    max-width: 155px;
    line-height: 1.45;
  }

  .hero {
    padding-top: 54px;
  }

  .logo-wrap {
    width: min(64vw, 270px);
  }

  .headline {
    font-size: clamp(55px, 18vw, 88px);
    line-height: .96;
  }

  .headline__line {
    white-space: normal;
  }

  .tagline-wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .tagline-prefix {
    width: auto;
  }

  .tagline {
    min-width: 100%;
    width: 100%;
    text-align: center;
    line-height: 1.45;
  }

  .footer {
    align-items: flex-end;
    font-size: 9px;
    line-height: 1.5;
  }

  .footer p:first-child {
    max-width: 150px;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .hero {
    padding-block: 34px;
  }

  .logo-wrap {
    width: 215px;
    margin-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .headline {
    font-size: clamp(70px, 11vh, 108px);
  }

  .tagline-wrap {
    margin-top: 26px;
  }

  .signal {
    margin-top: 28px;
  }
}

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