:root {
  color-scheme: dark;
  --brand-ink: #242529;
  --brand-yellow: #fdde47;
  --brand-yellow-soft: #fff3a7;
  --night: #17181c;
  --night-deep: #0e0f12;
  --paper: #f7f6ef;
  --paper-muted: #d8d7ce;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --radius: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--night-deep);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 12%, rgba(253, 222, 71, 0.08), transparent 32rem),
    linear-gradient(145deg, var(--night) 0%, var(--night-deep) 82%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

body::after {
  position: fixed;
  inset: -25%;
  z-index: -3;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 18% 30%, rgba(253, 222, 71, 0.12), transparent 23%),
    radial-gradient(circle at 78% 62%, rgba(255, 243, 167, 0.055), transparent 26%);
  transform-origin: center;
  animation: atmosphere-shift 22s ease-in-out infinite alternate;
}

.launch {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.75rem);
}

.launch-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(75rem, 100%);
  min-height: min(45rem, calc(100svh - 5.5rem));
  overflow: hidden;
  grid-template-columns: minmax(22rem, 0.96fr) minmax(28rem, 1.04fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(27, 28, 32, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: card-arrival 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-panel {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: visible;
  align-content: center;
  justify-items: center;
  padding: clamp(2.25rem, 5vw, 4.75rem) clamp(1.5rem, 4vw, 3.75rem);
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 30% 20%, #ffffff 0%, transparent 27rem),
    var(--paper);
}

.brand-panel::before {
  position: absolute;
  inset: 1rem;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(36, 37, 41, 0.08);
  border-radius: calc(var(--radius) - 0.7rem);
}

.brand-panel::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -5.25rem;
  bottom: 0;
  width: 6.5rem;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 246, 239, 0) 0%,
    rgba(126, 126, 124, 0.12) 32%,
    rgba(38, 39, 43, 0.62) 73%,
    rgba(23, 24, 28, 0.98) 100%
  );
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(132%, 40rem);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.25rem 2rem rgba(36, 37, 41, 0.08));
  animation:
    logo-arrival 1s 160ms cubic-bezier(0.22, 1, 0.36, 1) both,
    logo-float 7s 1.2s ease-in-out infinite;
}

.brand-orbit {
  position: absolute;
  top: 12%;
  right: -15%;
  width: 15rem;
  aspect-ratio: 1;
  border: 1px solid rgba(36, 37, 41, 0.12);
  border-radius: 50%;
}

.brand-orbit::after {
  position: absolute;
  top: 19%;
  left: 7%;
  width: 0.65rem;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 0.45rem rgba(253, 222, 71, 0.2);
  animation: orbit-pulse 4s ease-in-out infinite;
}

.brand-caption {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.75rem);
  left: 50%;
  width: max-content;
  max-width: calc(100% - 3rem);
  margin: 0;
  transform: translateX(-50%);
  color: rgba(36, 37, 41, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.message-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 6vw, 5.75rem) clamp(2rem, 6vw, 5.75rem);
  background:
    linear-gradient(90deg, rgba(247, 246, 239, 0.34) 0, rgba(23, 24, 28, 0.72) 4.75rem, rgba(23, 24, 28, 0) 7rem),
    radial-gradient(circle at 105% 90%, rgba(253, 222, 71, 0.13), transparent 22rem),
    rgba(23, 24, 28, 0.88);
}

.message-panel::before {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 21rem;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(253, 222, 71, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(253, 222, 71, 0.018),
    0 0 0 7rem rgba(253, 222, 71, 0.012);
  animation: halo-drift 12s ease-in-out infinite alternate;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(2.75rem, 8vh, 5.5rem);
  color: rgba(247, 246, 239, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.eyebrow span {
  width: 1.8rem;
  height: 0.16rem;
  border-radius: 99px;
  background: var(--brand-yellow);
}

.copy {
  margin-block: auto;
}

h1 {
  display: grid;
  gap: 0.12em;
  max-width: 12ch;
  margin: 0 0 clamp(1.7rem, 4vh, 2.6rem);
  font-size: clamp(3.5rem, 5.4vw, 5.65rem);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1;
}

.headline-top,
.headline-accent {
  display: block;
  line-height: 1;
}

.headline-top {
  white-space: nowrap;
}

.headline-accent {
  color: var(--brand-yellow);
}

.lead,
.support {
  max-width: 34rem;
  margin: 0;
  text-wrap: pretty;
}

.lead {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.support {
  margin-top: 1rem;
  color: rgba(247, 246, 239, 0.58);
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  line-height: 1.65;
}

.status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.85rem;
  margin: clamp(3rem, 8vh, 5.5rem) 0 0;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(253, 222, 71, 0.28);
  border-radius: 999px;
  color: var(--brand-yellow-soft);
  background: rgba(253, 222, 71, 0.075);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  letter-spacing: 0.15em;
}

.status-signal {
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 0.38rem rgba(253, 222, 71, 0.12);
  animation: status-breathe 3s ease-in-out infinite;
}

.site-note {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.75rem);
  bottom: 1.1rem;
  z-index: 2;
  margin: 0;
  color: rgba(247, 246, 239, 0.32);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(86px);
  opacity: 0.19;
  background: radial-gradient(circle, var(--brand-yellow), rgba(253, 222, 71, 0.1) 62%, transparent 74%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.ambient-one {
  top: -13rem;
  right: -8rem;
}

.ambient-two {
  bottom: -18rem;
  left: -12rem;
  animation-delay: -8s;
  animation-direction: alternate-reverse;
}

@keyframes card-arrival {
  from {
    opacity: 0;
    transform: translateY(1.4rem) scale(0.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes logo-arrival {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(4rem, 2rem, 0) scale(1.12);
  }
}

@keyframes atmosphere-shift {
  50% {
    transform: translate3d(-2%, 3%, 0) rotate(2deg) scale(1.04);
  }
  to {
    transform: translate3d(3%, -2%, 0) rotate(-1deg) scale(1.08);
  }
}

@keyframes logo-float {
  50% {
    transform: translateY(-0.45rem);
    filter: drop-shadow(0 1.7rem 2.4rem rgba(36, 37, 41, 0.12));
  }
}

@keyframes halo-drift {
  to {
    transform: translate3d(-1.5rem, 1.25rem, 0) scale(1.06);
    opacity: 0.58;
  }
}

@keyframes orbit-pulse {
  50% {
    transform: scale(1.22);
    box-shadow: 0 0 0 0.75rem rgba(253, 222, 71, 0.08);
  }
}

@keyframes status-breathe {
  50% {
    opacity: 0.62;
    transform: scale(0.88);
  }
}

@media (max-width: 850px) {
  .launch {
    align-items: start;
    padding-block: 1rem 3.25rem;
  }

  .launch-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: clamp(17rem, 48vh, 24rem);
    padding: 2rem 2rem 2.5rem;
  }

  .brand-panel::after {
    top: auto;
    right: 0;
    bottom: -4.5rem;
    left: 0;
    width: auto;
    height: 5.5rem;
    background: linear-gradient(
      180deg,
      rgba(247, 246, 239, 0) 0%,
      rgba(126, 126, 124, 0.12) 32%,
      rgba(38, 39, 43, 0.62) 73%,
      rgba(23, 24, 28, 0.98) 100%
    );
  }

  .brand-logo {
    width: min(92%, 37rem);
  }

  .brand-caption {
    bottom: 1.25rem;
  }

  .message-panel {
    min-height: 30rem;
    padding: clamp(2.25rem, 9vw, 4.5rem) clamp(1.5rem, 7vw, 3.5rem);
    background:
      linear-gradient(180deg, rgba(247, 246, 239, 0.28) 0, rgba(23, 24, 28, 0.72) 4.5rem, rgba(23, 24, 28, 0) 7rem),
      radial-gradient(circle at 105% 90%, rgba(253, 222, 71, 0.13), transparent 22rem),
      rgba(23, 24, 28, 0.88);
  }

  .eyebrow {
    margin-bottom: 2.7rem;
  }

  h1 {
    font-size: clamp(3.25rem, 10vw, 4.9rem);
  }

  .status {
    margin-top: 3.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --radius: 1.4rem;
  }

  .launch {
    padding: 0.65rem 0.65rem 3rem;
  }

  .brand-panel {
    min-height: 15.5rem;
    padding: 1.5rem;
  }

  .brand-panel::before {
    inset: 0.65rem;
  }

  .brand-logo {
    width: min(108%, 24rem);
  }

  .brand-caption {
    bottom: 1rem;
    font-size: 0.57rem;
    letter-spacing: 0.11em;
  }

  .message-panel {
    min-height: min(31rem, calc(100svh - 16.8rem));
    padding: 2.25rem 1.35rem 1.6rem;
  }

  .eyebrow {
    margin-bottom: 2.2rem;
  }

  h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    gap: 0.14em;
    line-height: 1.02;
  }

  .lead {
    font-size: 1rem;
  }

  .support {
    font-size: 0.88rem;
  }

  .status {
    margin-top: 2.5rem;
    padding: 0.78rem 0.9rem;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
  }

  .site-note {
    right: 1rem;
    bottom: 0.9rem;
  }
}

@media (max-height: 660px) and (min-width: 851px) {
  .launch-card {
    min-height: calc(100svh - 2rem);
  }

  .brand-logo {
    width: min(126%, 34rem);
  }

  .message-panel {
    padding-block: 2.6rem;
  }

  .eyebrow,
  .status {
    margin-block: 0 2rem;
  }

  .status {
    margin-block: 2rem 0;
  }

  h1 {
    font-size: clamp(3.5rem, 8vh, 5rem);
  }
}

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