:root {
  --bg: #070b12;
  --bg-2: #0d1422;
  --ink: #f2f6ff;
  --muted: #8f9fbd;
  --line: rgba(148, 178, 242, 0.26);
  --panel: rgba(14, 20, 34, 0.78);
  --chip: rgba(18, 26, 44, 0.8);
  --accent: #42ffc2;
  --accent-2: #2ec8ff;
  --accent-3: #ff8a3d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Bricolage Grotesque", "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(1200px 620px at 4% 0%, rgba(46, 200, 255, 0.16), transparent 55%),
    radial-gradient(900px 520px at 94% 100%, rgba(255, 138, 61, 0.17), transparent 52%),
    linear-gradient(150deg, var(--bg) 0%, var(--bg-2) 50%, #050810 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(129, 167, 247, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 167, 247, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 95%);
  opacity: 0.32;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(7, 11, 18, 0.6) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.wrapper {
  width: min(1120px, 92vw);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.4rem, 2.4vw, 2.3rem);
  align-items: center;
}

.hero {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
  background: linear-gradient(160deg, rgba(16, 24, 40, 0.92), rgba(10, 16, 30, 0.85));
  box-shadow:
    0 20px 56px rgba(4, 8, 20, 0.6),
    inset 0 0 0 1px rgba(147, 177, 236, 0.14);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(66, 255, 194, 0.16), transparent 35%, rgba(255, 138, 61, 0.14) 88%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0.48rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(66, 255, 194, 0.44);
  color: #d0fff0;
  background: rgba(66, 255, 194, 0.1);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(66, 255, 194, 0.65);
  animation: pulse 1.8s ease-out infinite;
}

.title {
  margin: 0;
  font-size: clamp(2.7rem, 7.8vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-transform: uppercase;
  font-weight: 800;
}

.title span {
  display: inline-block;
  background: linear-gradient(110deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(46, 200, 255, 0.12);
}

.lead {
  margin: 1.2rem 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 2.15vw, 1.28rem);
  line-height: 1.52;
  color: #e7edff;
}

.chips {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.chips span {
  border: 1px solid rgba(141, 170, 232, 0.34);
  background: var(--chip);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.cta {
  margin-top: 1.8rem;
  display: inline-block;
  color: #07111f;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(105deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  padding: 0.72rem 1.02rem;
  box-shadow: 0 14px 38px rgba(39, 173, 212, 0.33);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(39, 173, 212, 0.43);
}

.panel {
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.3rem;
  background: var(--panel);
  box-shadow:
    0 20px 50px rgba(4, 8, 20, 0.55),
    inset 0 0 0 1px rgba(146, 173, 229, 0.14);
}

.panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.panel-value {
  margin: 0.4rem 0 0.95rem;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.45rem;
}

.progress-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: var(--muted);
}

.progress-value {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #d4eaff;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.progress-track {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(141, 170, 232, 0.36);
  background: rgba(7, 12, 20, 0.65);
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 20px rgba(66, 255, 194, 0.35);
  transition: width 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.panel-foot {
  margin: 0.95rem 0 0;
  color: #b2c2df;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

body.is-ready .reveal {
  animation: rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

body.is-ready .reveal:nth-child(1) { animation-delay: 0ms; }
body.is-ready .reveal:nth-child(2) { animation-delay: 70ms; }
body.is-ready .reveal:nth-child(3) { animation-delay: 140ms; }
body.is-ready .reveal:nth-child(4) { animation-delay: 210ms; }
body.is-ready .reveal:nth-child(5) { animation-delay: 280ms; }

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 255, 194, 0.65);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(66, 255, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 255, 194, 0);
  }
}

@media (max-width: 930px) {
  .wrapper {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .panel {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .wrapper {
    width: min(92vw, 560px);
    padding: 1.4rem 0 2rem;
  }

  .hero {
    padding: 1.25rem;
  }

  .title {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .lead {
    font-size: 1rem;
  }

  .chips span {
    font-size: 0.75rem;
  }

  .panel {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
