* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #05070d;
  color: #f5f7fb;
  overflow-x: hidden;
}

.background-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(80, 145, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 145, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -3;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(57, 114, 255, 0.22), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(0, 255, 200, 0.08), transparent 30%),
    linear-gradient(to bottom, #0a0d14, #030407);
  z-index: -4;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.16;
  pointer-events: none;
  z-index: -2;
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  z-index: -1;
}

.glow-one {
  background: #2d6bff;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-two {
  background: #00ffc8;
  bottom: -180px;
  right: -80px;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.logo::first-letter {
  color: #5da2ff;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: #b7c0d5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.nav a:hover {
  color: #ffffff;
}

.header-button {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.2s;
}

.header-button:hover {
  border-color: #5da2ff;
  box-shadow: 0 0 25px rgba(93, 162, 255, 0.25);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 70px 0 60px;
}

.eyebrow {
  color: #6db2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -4px;
  max-width: 760px;
}

h1 span {
  display: block;
  color: #71b7ff;
  text-shadow: 0 0 35px rgba(67, 137, 255, 0.55);
}

.hero-description {
  margin-top: 28px;
  max-width: 610px;
  color: #b8c2d8;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: 0.2s;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #2f7dff, #6eb8ff);
  box-shadow: 0 0 30px rgba(47, 125, 255, 0.32);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(47, 125, 255, 0.55);
}

.secondary-button {
  color: #dce8ff;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.035);
}

.secondary-button:hover {
  border-color: rgba(93, 162, 255, 0.65);
}

.status-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(8, 13, 24, 0.58);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.status-row div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row div:last-child {
  border-right: none;
}

.status-row strong {
  display: block;
  color: #7dbdff;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.status-row span {
  color: #ffffff;
  font-size: 14px;
}

.monster-panel {
  position: relative;
  border: 1px solid rgba(122, 177, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(18, 26, 42, 0.92), rgba(5, 8, 14, 0.92)),
    radial-gradient(circle at center, rgba(58, 120, 255, 0.24), transparent 70%);
  box-shadow:
    0 0 70px rgba(30, 90, 255, 0.18),
    inset 0 0 55px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.monster-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent, rgba(91, 167, 255, 0.26), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.panel-top {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.panel-top p {
  margin-left: 10px;
  color: #aebbd1;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.red {
  background: #ff5d5d;
}

.yellow {
  background: #ffcc4d;
}

.green {
  background: #57e389;
}

.monster-box {
  position: relative;
  height: 430px;
  padding: 24px;
}

.monster-placeholder {
  height: 100%;
  border: 1px dashed rgba(125, 189, 255, 0.45);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 35%, rgba(105, 177, 255, 0.26), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  overflow: hidden;
}

.monster-placeholder::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(110, 184, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(73, 145, 255, 0.18);
}

.monster-placeholder::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 420px;
  background: linear-gradient(transparent, rgba(98, 178, 255, 0.35), transparent);
  transform: rotate(28deg);
}

.monster-eye {
  width: 86px;
  height: 34px;
  border-radius: 50%;
  background: #76bdff;
  box-shadow: 0 0 45px rgba(118, 189, 255, 0.95);
  position: relative;
  z-index: 1;
}

.monster-horns {
  width: 190px;
  height: 60px;
  border-top: 4px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.monster-placeholder p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #ffffff;
}

.monster-placeholder span {
  position: relative;
  z-index: 1;
  color: #9fb0c9;
  font-size: 14px;
}

.scan-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.scan-lines div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.scan-lines div:last-child {
  border-right: none;
}

.scan-lines span {
  display: block;
  color: #7a879c;
  font-size: 12px;
  margin-bottom: 8px;
}

.scan-lines strong {
  color: #ffffff;
  font-size: 13px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0 90px;
}

.feature-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.015);
}

.feature-card span {
  color: #66b3ff;
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 16px;
  font-size: 22px;
}

.feature-card p {
  margin-top: 12px;
  color: #aeb8cc;
  line-height: 1.6;
}

.devlog-preview {
  margin-bottom: 80px;
}

.section-heading p {
  color: #6db2ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -2px;
}

.timeline {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 24px;
  border-left: 3px solid rgba(109, 178, 255, 0.35);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 12px 12px 0;
}

.timeline-item.active {
  border-left-color: #68b7ff;
  box-shadow: 0 0 35px rgba(79, 150, 255, 0.12);
}

.timeline-item span {
  color: #7dbdff;
  font-size: 13px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 8px;
  font-size: 22px;
}

.timeline-item p {
  margin-top: 8px;
  color: #aeb8cc;
  line-height: 1.6;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 50px;
  color: #7f8ba3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .status-row,
  .scan-lines {
    grid-template-columns: 1fr;
  }

  .status-row div,
  .scan-lines div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  h1 {
    letter-spacing: -2px;
  }
}