:root {
  --bg: #0b1115;
  --bg-soft: #10181d;
  --panel: rgba(16, 24, 29, 0.9);
  --line: rgba(151, 196, 171, 0.18);
  --text: #edf6f0;
  --muted: #a7bbb0;
  --accent: #8df26d;
  --accent-strong: #72de51;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: "Bahnschrift", "Trebuchet MS", "Verdana", sans-serif;
  background:
    radial-gradient(720px 320px at 50% -10%, rgba(114, 222, 81, 0.14), transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.site-header,
.site-footer,
.landing-shell {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.landing-shell {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 24px 0 40px;
}

.hero {
  width: min(760px, 100%);
  padding: 48px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

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

.hero h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead {
  margin: 16px auto 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  color: #102014;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 34px rgba(114, 222, 81, 0.22);
}

.btn-large {
  min-height: 50px;
  min-width: 220px;
}

.discord-link {
  margin: 18px 0 0;
  color: #cfe0d6;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 0 0 24px;
  text-align: center;
  color: #8ea498;
  font-size: 12px;
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 0;
    flex-direction: column;
  }

  .hero {
    padding: 36px 20px;
    border-radius: 18px;
  }

  .lead {
    font-size: 16px;
  }

  .btn-large {
    width: 100%;
    min-width: 0;
  }
}
