:root {
  --bg-1: #071a1c;
  --bg-2: #102e2f;
  --ink: #f3f2eb;
  --muted: #b8c6bf;
  --accent: #90ff6d;
  --line: rgba(243, 242, 235, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 95% 0%, rgba(144, 255, 109, 0.1), transparent 62%),
    radial-gradient(900px 560px at 0% 100%, rgba(255, 214, 132, 0.1), transparent 65%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.2) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.15) 3px);
}

.shell {
  width: min(900px, 92vw);
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 2rem 0 1.6rem;
  gap: 2rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 700ms ease forwards;
}

.mark {
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px rgba(144, 255, 109, 0.24);
}

.brand {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  align-self: center;
  max-width: 44rem;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 900ms 120ms ease forwards;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.lead {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.65;
  max-width: 36rem;
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(144, 255, 109, 0.08);
}

.status {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(8px);
  animation: rise 800ms 220ms ease forwards;
}

.footer p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .shell {
    padding-top: 1.3rem;
    gap: 1.6rem;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }
}
