:root {
  --cs-bg: #030303;
  --cs-panel: #101010;
  --cs-panel-strong: #151515;
  --cs-text: #f5f5f5;
  --cs-muted: #a4a4a4;
  --cs-purple: #8800ff;
  --cs-purple-dark: #43007e;
  --cs-purple-soft: rgba(136, 0, 255, .18);
  --cs-line: rgba(255, 255, 255, .08);
  --cs-shadow: 0 0 35px rgba(136, 0, 255, .28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--cs-text);
  background:
    radial-gradient(circle at 74% 18%, rgba(136, 0, 255, .2), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(67, 0, 126, .2), transparent 26%),
    var(--cs-bg);
  font-family: Poppins, system-ui, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.cs-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.cs-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 82%);
}

.cs-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(136, 0, 255, .07) 48%, transparent 64%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .35) 100%);
}

.cs-page-glow {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(82px);
  opacity: .17;
  pointer-events: none;
}

.cs-page-glow-one {
  top: 9%;
  right: 9%;
  background: var(--cs-purple);
}

.cs-page-glow-two {
  left: 7%;
  bottom: 6%;
  background: var(--cs-purple-dark);
}

.cs-topbar {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 72px));
  height: 70px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--cs-line);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(18, 18, 18, .92);
  backdrop-filter: blur(16px);
}

.cs-brand {
  display: inline-flex;
  align-items: center;
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cs-purple);
  text-shadow: 0 0 14px rgba(136, 0, 255, .65);
}

.cs-brand span {
  color: #ffffff;
}

.cs-status {
  max-width: 50%;
  color: #dcdcdc;
  font-family: Orbitron, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cs-main {
  width: min(1120px, calc(100% - 96px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 56px 0 72px;
}

.cs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 84px;
}

.cs-copy {
  animation: csReveal .8s ease both;
}

.cs-eyebrow {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.cs-copy h1 {
  margin-bottom: 18px;
  color: var(--cs-purple);
  font-family: Orbitron, sans-serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 800;
  line-height: .96;
  text-shadow: 0 0 24px rgba(136, 0, 255, .48);
}

.cs-intro {
  max-width: 620px;
  color: var(--cs-muted);
  font-size: 15px;
  line-height: 1.8;
}

.cs-intro strong {
  color: #ffffff;
  font-weight: 600;
}

.cs-launch-line {
  display: inline-block;
}

.cs-launch-line strong {
  white-space: nowrap;
}

.cs-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin: 36px 0 24px;
}

.cs-time-card {
  position: relative;
  min-width: 0;
  padding: 22px 18px 20px;
  overflow: hidden;
  border: 1px solid var(--cs-line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 21, 21, .96), rgba(9, 9, 9, .98));
  box-shadow: 0 16px 32px rgba(0, 0, 0, .34);
  transform: translateZ(0);
  transition:
    transform .45s ease,
    border-color .45s ease,
    box-shadow .45s ease,
    background .45s ease;
  will-change: transform;
}

.cs-time-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 0, 255, .16), transparent 52%, rgba(255, 255, 255, .03));
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.cs-time-card::after {
  content: "";
  position: absolute;
  inset: auto 16% -34px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(136, 0, 255, .22), transparent 72%);
  filter: blur(14px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}

.cs-time-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(136, 0, 255, .42);
  background: linear-gradient(180deg, rgba(74, 16, 124, .38), rgba(18, 12, 24, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 16px 26px rgba(0, 0, 0, .26), 0 0 0 1px rgba(136, 0, 255, .12), 0 0 20px rgba(136, 0, 255, .1);
}

.cs-time-card:hover::before {
  opacity: 1;
}

.cs-time-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.cs-time-card strong,
.cs-time-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.cs-time-card strong {
  color: var(--cs-purple);
  font-family: Orbitron, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
  text-shadow: 0 0 16px rgba(136, 0, 255, .42);
}

.cs-time-card span {
  margin-top: 10px;
  color: var(--cs-muted);
  font-family: Orbitron, sans-serif;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.cs-launch-progress {
  position: relative;
  max-width: 640px;
  margin: 0 0 28px;
  padding: 10px 2px 4px;
  overflow: hidden;
  border-radius: 14px;
}

.cs-launch-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(136, 0, 255, .34), transparent);
  pointer-events: none;
}

.cs-progress-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 11px;
}

.cs-progress-head span,
.cs-progress-head strong {
  font-family: Orbitron, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.cs-progress-head span {
  color: #d9d9d9;
}

.cs-progress-head strong {
  color: var(--cs-purple);
  text-shadow: 0 0 14px rgba(136, 0, 255, .48);
}

.cs-progress-track {
  position: relative;
  z-index: 1;
  height: 7px;
  padding: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .65);
  overflow: hidden;
}

.cs-progress-track::before {
  content: "";
  position: absolute;
  inset: -10px 0;
  background: repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, .055) 24px 25px);
  opacity: .65;
  pointer-events: none;
}

.cs-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #c78dff 34%, var(--cs-purple) 100%);
  box-shadow: 0 0 16px rgba(136, 0, 255, .42);
  transition: width .8s cubic-bezier(.22, 1, .36, 1);
}

.cs-progress-track span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  transform: translateX(-110%);
  animation: csProgressScan 2.35s ease-in-out infinite;
}

.cs-progress-track span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, .72), 0 0 22px rgba(136, 0, 255, .48);
}

.cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cs-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--cs-purple);
  border-radius: 999px;
  overflow: hidden;
  color: #ffffff;
  cursor: pointer;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  font-weight: 700;
  isolation: isolate;
  transition:
    transform .45s ease,
    filter .45s ease,
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
  will-change: transform;
}

.cs-button span {
  position: relative;
  z-index: 1;
}

.cs-button::before {
  content: "";
  position: absolute;
  inset: -50% auto -50% -75%;
  z-index: -1;
  width: 48%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left .55s ease, opacity .35s ease;
}

.cs-button:hover,
.cs-button:focus-visible {
  transform: scale(1.045);
  filter: brightness(1.12);
}

.cs-button:hover::before,
.cs-button:focus-visible::before {
  left: 128%;
  opacity: 1;
}

.cs-button:focus-visible {
  outline: 2px solid rgba(136, 0, 255, .56);
  outline-offset: 4px;
}

.cs-button-primary {
  background: var(--cs-purple);
  box-shadow: var(--cs-shadow);
}

.cs-button-primary:hover,
.cs-button-primary:focus-visible {
  box-shadow: 0 0 42px rgba(136, 0, 255, .42), 0 18px 30px rgba(0, 0, 0, .24);
}

.cs-button-primary.is-copied {
  border-color: rgba(255, 255, 255, .36);
  background: linear-gradient(180deg, #9b2fff, #6f11d3);
  box-shadow: 0 0 44px rgba(136, 0, 255, .48), 0 18px 30px rgba(0, 0, 0, .24);
}

.cs-button-ghost {
  background: rgba(16, 16, 16, .82);
  color: #ffffff;
}

.cs-button-ghost:hover,
.cs-button-ghost:focus-visible {
  border-color: rgba(136, 0, 255, .66);
  background: rgba(136, 0, 255, .16);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .22), 0 0 0 1px rgba(136, 0, 255, .12);
}

.cs-panel {
  position: relative;
  width: 100%;
  min-height: 560px;
  border: 1px solid rgba(136, 0, 255, .28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 16, 16, .98), rgba(6, 6, 6, .98));
  box-shadow: 0 0 0 1px rgba(136, 0, 255, .08), 0 26px 60px rgba(0, 0, 0, .42);
  animation: csReveal .8s .16s ease both;
}

.cs-panel-inner {
  position: absolute;
  inset: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 44%, rgba(136, 0, 255, .32), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, .04), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 10, .95), rgba(4, 4, 4, .98));
}

.cs-panel-inner::before {
  content: "";
  position: absolute;
  inset: -12% 20% 28% -14%;
  background: linear-gradient(140deg, rgba(136, 0, 255, .24), transparent 56%);
  filter: blur(18px);
}

.cs-panel-inner::after {
  content: "";
  position: absolute;
  inset: auto -12% -10% 30%;
  height: 220px;
  background: radial-gradient(circle, rgba(136, 0, 255, .22), transparent 62%);
  filter: blur(16px);
}

.cs-brand-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.cs-panel-kicker {
  margin-bottom: 18px;
  color: #d9b5ff;
  font-family: Orbitron, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.cs-brand-visual strong {
  display: block;
  color: var(--cs-purple);
  font-family: Orbitron, sans-serif;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(136, 0, 255, .58);
}

.cs-brand-visual strong span {
  color: #ffffff;
}

.cs-brand-visual p:last-child {
  margin-top: 18px;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cs-brand-lines {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 38px;
  display: grid;
  gap: 12px;
}

.cs-brand-lines span {
  display: block;
  height: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, var(--cs-purple));
  opacity: .28;
  box-shadow: 0 0 16px rgba(136, 0, 255, .34);
}

.cs-brand-lines span:nth-child(2) {
  width: 74%;
  margin-left: auto;
  opacity: .18;
}

.cs-brand-lines span:nth-child(3) {
  width: 46%;
  opacity: .14;
}

.cs-launched .cs-brand-visual p:last-child {
  text-shadow: 0 0 12px rgba(136, 0, 255, .7);
}

.cs-launched .cs-status {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(136, 0, 255, .7);
}

@keyframes csReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes csProgressScan {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }

  18% {
    opacity: .8;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

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

@media (max-width: 1180px) {
  .cs-hero {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
  }

  .cs-panel {
    min-height: 520px;
  }

  .cs-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cs-topbar,
  .cs-main {
    width: calc(100% - 36px);
  }

  .cs-main {
    min-height: auto;
    padding: 48px 0 58px;
  }

  .cs-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cs-copy {
    text-align: left;
  }

  .cs-countdown {
    max-width: none;
  }

  .cs-panel {
    width: min(100%, 430px);
    min-height: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .cs-topbar {
    height: auto;
    min-height: 68px;
    padding: 18px;
    align-items: center;
    border-radius: 0 0 22px 22px;
  }

  .cs-brand {
    font-size: 22px;
    line-height: 1;
  }

  .cs-status {
    max-width: 145px;
    font-size: 8px;
    line-height: 1;
    text-align: right;
    white-space: normal;
  }

  .cs-main {
    width: calc(100% - 32px);
    padding: 40px 0 44px;
  }

  .cs-copy h1 {
    margin-bottom: 16px;
  }

  .cs-intro {
    font-size: 13px;
    line-height: 1.75;
  }

  .cs-launch-line {
    display: block;
    margin-top: 4px;
  }

  .cs-launch-line strong {
    white-space: normal;
  }

  .cs-countdown {
    gap: 12px;
    margin: 28px 0 18px;
  }

  .cs-time-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .cs-time-card span {
    font-size: 9px;
  }

  .cs-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cs-launch-progress {
    margin-bottom: 24px;
    padding: 8px 0 4px;
  }

  .cs-progress-head span,
  .cs-progress-head strong {
    font-size: 9px;
  }

  .cs-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
  }

  .cs-panel {
    min-height: 430px;
    border-radius: 24px;
  }

  .cs-panel-inner {
    inset: 14px;
    border-radius: 20px;
    padding: 24px;
  }

  .cs-brand-visual strong {
    font-size: 58px;
  }

  .cs-brand-visual p:last-child {
    font-size: 13px;
  }

  .cs-brand-lines {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }
}

@media (max-width: 390px) {
  .cs-countdown {
    grid-template-columns: 1fr;
  }

  .cs-panel {
    min-height: 430px;
  }
}
