:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07110f;
  color: #f3f8f6;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(65, 226, 167, 0.14), transparent 32rem),
    linear-gradient(145deg, #07110f 0%, #0b1815 55%, #07110f 100%);
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 48rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgba(176, 255, 224, 0.16);
  border-radius: 1.5rem;
  background: rgba(7, 17, 15, 0.78);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 4.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 0.7rem;
  background: #42e2a8;
  color: #06110e;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #75e9bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: #dcebe5;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.detail {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: #99afa7;
  line-height: 1.65;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 3.5rem;
  color: #b9cec6;
  font-size: 0.85rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #42e2a8;
  box-shadow: 0 0 1rem rgba(66, 226, 168, 0.7);
}

@media (max-width: 36rem) {
  .shell {
    padding: 1rem;
  }

  .card {
    padding: 2rem 1.5rem;
    border-radius: 1.15rem;
  }

  .brand {
    margin-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
