:root {
  color-scheme: dark;
  --background: #07100c;
  --surface: rgba(13, 29, 21, 0.72);
  --text: #f4fff9;
  --muted: #a8bdb1;
  --accent: #39e58c;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 30%, rgba(57, 229, 140, 0.15), transparent 34rem),
    linear-gradient(145deg, #050806, var(--background));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-logo {
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(57, 229, 140, .28));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

main {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(38px, 8vw, 72px);
  text-align: center;
  border: 1px solid rgba(57, 229, 140, 0.22);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}

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

h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(52px, 12vw, 104px);
  line-height: .95;
  letter-spacing: -.06em;
  text-shadow: 0 0 45px rgba(57, 229, 140, .16);
}

.signature {
  margin: 24px 0 12px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 750;
}

.description {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.landing-actions a {
  padding: 12px 16px;
  color: var(--text);
  border: 1px solid rgba(57, 229, 140, .24);
  border-radius: 999px;
  background: rgba(57, 229, 140, .06);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.landing-actions a:hover,
.landing-actions a:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(57, 229, 140, .12);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 10px 15px;
  color: #dfffee;
  border: 1px solid rgba(57, 229, 140, .2);
  border-radius: 999px;
  background: rgba(57, 229, 140, .07);
  font-size: 13px;
  font-weight: 700;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

