:root {
  color-scheme: dark;
  --ink: #f6f2e8;
  --muted: #b9c1c9;
  --paper: rgba(246, 242, 232, 0.1);
  --line: rgba(255, 255, 255, 0.18);
  --accent: #40d6b0;
  --accent-2: #ffbc42;
  --press: #223348;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #11151c;
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(64, 214, 176, 0.11), transparent 36%, rgba(255, 188, 66, 0.1)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 44%);
  pointer-events: none;
}

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
  padding: 56px 0;
}

.copy {
  max-width: 720px;
  padding-bottom: 28px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  font-weight: 850;
}

.lede {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.status {
  width: fit-content;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(9, 13, 18, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  color: #e9eef2;
  font-size: 14px;
  font-weight: 700;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(64, 214, 176, 0.75);
  animation: pulse 1.8s ease-out infinite;
}

.panel {
  align-self: end;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: rgba(9, 13, 18, 0.58);
  backdrop-filter: blur(22px);
  border-radius: 8px;
  overflow: hidden;
}

.panel-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
  font-size: 14px;
}

.panel-row strong {
  color: var(--ink);
  font-size: 15px;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 14px rgba(64, 214, 176, 0);
  }
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }

  .shell {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 32px 0;
  }

  h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .lede {
    font-size: 17px;
  }

  .panel {
    width: 100%;
    margin-bottom: 0;
  }
}
