:root {
  --bg-night: #090d10;
  --bg-deep: #111923;
  --ink: #ebefe8;
  --muted: #9eaba2;
  --ember: #d9662b;
  --gold: #eab464;
  --jade: #78baa0;
  --glass: rgba(8, 14, 19, 0.72);
  --stroke: rgba(120, 186, 160, 0.18);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 102, 43, 0.18), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(120, 186, 160, 0.14), transparent 28%),
    linear-gradient(145deg, var(--bg-night), var(--bg-deep) 56%, #0d141b);
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  width: min(1160px, 94vw);
  margin: 0 auto;
  min-height: 100vh;
  padding: 2.4rem 0 1.6rem;
}

.puzzle-field {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
  font-family: "Space Mono", monospace;
  font-size: clamp(0.76rem, 1.4vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(235, 239, 232, 0.1);
  user-select: none;
  pointer-events: none;
  transform: perspective(900px) rotateX(56deg) rotateZ(-14deg);
  transform-origin: center;
}

.puzzle-field p {
  margin: 0;
  white-space: nowrap;
  animation: drift 18s linear infinite;
}

.puzzle-field p:nth-child(even) {
  animation-duration: 23s;
  animation-direction: reverse;
}

.word-hit {
  color: rgba(234, 180, 100, 0.58);
  text-shadow: 0 0 18px rgba(234, 180, 100, 0.2);
}

.coming-shell {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
}

.eyebrow {
  margin: 0;
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.92;
  max-width: 8ch;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(8, 14, 19, 0.86), rgba(12, 21, 29, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.status-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-value {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.tease-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.tease-card {
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

h2 {
  font-size: 2rem;
}

.tease-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.6rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .status-panel,
  .tease-grid {
    grid-template-columns: 1fr;
  }

  .puzzle-field {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    transform: perspective(800px) rotateX(60deg) rotateZ(-10deg);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(94vw, 100%);
    padding-top: 1.2rem;
  }

  .coming-shell {
    padding-top: 3rem;
  }

  h1 {
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .puzzle-field {
    inset: 1rem -12vw;
    font-size: 0.58rem;
    line-height: 1.55;
  }
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2.4rem);
  }
}