:root {
  --bg: #090a0f;
  --text: #f2e9c9;
  --muted: #9c9880;
  --green: #8bc93c;
  --green-glow: #b8e26b;
  --font: "Jost", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: var(--bg);
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--text);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.content {
  text-align: center;
  margin-top: 6vh;
  padding: 0 1.25rem;
  max-width: 100%;
}

.logo {
  display: block;
  width: clamp(300px, 78vw, 680px);
  height: auto;
  margin: 0 auto;
}

.tagline-wrap {
  position: relative;
  margin-top: clamp(-160px, -18vw, -60px);
}

/* .tagline-rim {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 90px;
  transform: translate(-50%, -50%);
  background: var(--green-glow);
  filter: blur(40px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
} */

.tagline {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 34ch;
  margin: 0 auto;
}

.lead {
  font-weight: 600;
  font-size: clamp(0.85rem, 1.2vw + 0.35rem, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 1rem;
}

footer {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding: 1.5rem;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--muted);
  line-height: 1.7;
}
