:root {
  color-scheme: dark;
  font-family: "Space Grotesk", sans-serif;
  color: #f7f5fb;
  background: #09070f;
  font-synthesis: none;
  --cyan: #00d4ff;
  --pink: #e91e63;
  --muted: rgba(247, 245, 251, 0.56);
  --hairline: rgba(247, 245, 251, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #09070f;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #09070f;
  background-size: 64px 64px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, transparent 0, rgba(9, 7, 15, 0.16) 52%, rgba(9, 7, 15, 0.9) 100%);
  z-index: 1;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' 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='.12'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.12;
}

.orb--cyan {
  top: -22vw;
  left: -8vw;
  background: var(--cyan);
}

.orb--pink {
  right: -18vw;
  bottom: -25vw;
  background: var(--pink);
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 3;
}

.site-header {
  width: 100%;
  padding: 28px clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.wordmark__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.55);
  border-radius: 9px;
  color: var(--cyan);
  letter-spacing: 0;
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1), 0 0 25px rgba(0, 212, 255, 0.08);
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
  animation: pulse 2.4s ease-in-out infinite;
}

main {
  display: grid;
}

.hero {
  width: min(1400px, 100%);
  margin: auto;
  padding: clamp(70px, 9vh, 120px) clamp(24px, 7vw, 104px) 32px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: reveal 700ms 100ms both;
}

.eyebrow span {
  color: var(--cyan);
  margin-right: 14px;
}

h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(74px, 12vw, 184px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.76;
}

h1 span {
  display: block;
  animation: reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1 span:first-child {
  background: linear-gradient(100deg, #ffffff 30%, #b8f5ff 68%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

h1 .hero__outline {
  margin-left: 0.45em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 245, 251, 0.44);
  animation-delay: 140ms;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  margin-top: clamp(54px, 8vh, 96px);
}

.simulation-notice {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-left: 3px solid var(--cyan);
  background: linear-gradient(110deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.015));
  animation: reveal 800ms 280ms both;
}

.simulation-notice__label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.simulation-notice__copy {
  margin: 0;
  color: rgba(247, 245, 251, 0.86);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.55;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(65px, 1fr));
  gap: 16px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  animation: reveal 800ms 360ms both;
}

.countdown__item strong {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
}

.countdown__item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown__separator {
  display: none;
}

.market-line {
  height: clamp(70px, 12vh, 130px);
  margin-top: clamp(28px, 6vh, 68px);
  opacity: 0.65;
  animation: reveal 1s 440ms both;
}

.market-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.market-line path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: draw 2.2s 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-footer {
  padding: 22px clamp(24px, 4vw, 64px) 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer__topline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer span {
  color: var(--pink);
}

.site-footer__meta {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.site-footer__disclaimer {
  max-width: 980px;
  color: rgba(247, 245, 251, 0.38);
  font-size: 10px;
  line-height: 1.55;
}

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

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 760px) {
  .site-header {
    padding-block: 20px;
  }

  .status-pill {
    padding: 8px 10px;
    font-size: 9px;
  }

  .hero {
    padding-top: 60px;
  }

  h1 {
    font-size: clamp(64px, 22vw, 118px);
    line-height: 0.82;
  }

  h1 .hero__outline {
    margin-top: 0.18em;
    margin-left: 0;
  }

  .hero__lower {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 56px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown__item strong {
    font-size: clamp(25px, 9vw, 42px);
  }

  .site-footer {
    gap: 14px;
  }

  .site-footer__topline {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}
