:root {
  --bg: #060606;
  --surface: #121212;
  --surface-2: #161616;
  --text: #f4f4f4;
  --muted: #bcbcbc;
  --line: #2a2a2a;
  --purple: #8f38ff;
  --purple-strong: #6b1fe0;
  --deep-blue: #2938d9;
  --yellow: #ffe436;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Work Sans", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-a {
  width: 520px;
  height: 520px;
  background: rgba(143, 56, 255, 0.28);
  top: -180px;
  left: -110px;
}

.bg-glow-b {
  width: 400px;
  height: 400px;
  background: rgba(255, 228, 54, 0.12);
  right: -120px;
  top: 120px;
}

.landing,
.site-footer {
  position: relative;
  z-index: 1;
}

.landing {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.4rem 1.1rem 3.5rem;
}

.hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 0.8rem;
}

.hero-logo {
  width: min(42vw, 190px);
  height: auto;
  margin: 0.3rem 0 0.55rem;
  filter: drop-shadow(0 0 30px rgba(143, 56, 255, 0.35));
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
}

h1,
h2 {
  margin: 0.7rem 0;
  line-height: 1.08;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2.05rem, 7vw, 4.5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.lead,
p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 72ch;
  margin: 0.55rem auto;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.05rem;
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--purple) 55%, var(--purple-strong) 100%);
  color: #fff;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(143, 56, 255, 0.4);
}

.button-ghost {
  border: 1px solid #373737;
  background: #121212;
  color: #f0f0f0;
}

.button-ghost:hover {
  border-color: #4d4d4d;
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: linear-gradient(180deg, #151515, #111111);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}

.card h2 {
  margin-top: 0;
}

.contact {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #121212, #0f0f0f);
  border-radius: 18px;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: #d3d3d3;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #343434;
  border-radius: 10px;
  background: #0d0d0d;
  color: #f2f2f2;
  font: inherit;
  padding: 0.68rem 0.72rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(143, 56, 255, 0.2);
}

.contact-form button {
  margin-top: 0.35rem;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  filter: brightness(0.95);
}

.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  color: #9f9f9f;
  font-size: 0.9rem;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer > div:first-child {
  display: block;
}

.support-email {
  margin: 0.1rem 0 0;
  color: #c8c8c8;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #e6e6e6;
}

.legal {
  max-width: 900px;
  margin: 1rem auto 2rem;
  padding: 1.3rem;
  border: 1px solid #2a2a2a;
  background: #111111;
  border-radius: 16px;
}

.legal-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.2rem 1.1rem 0;
}

.legal-header a {
  color: #bebebe;
  text-decoration: none;
}

@media (min-width: 850px) {
  .landing {
    padding-top: 2rem;
  }

  .contact {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }
}
