:root {
  --bg: #600000;
  --bg-alt: #1b0000;
  --text: #fff6ea;
  --logo-tone-light: #f1eadb;
  --logo-tone-mid: #ddd3bf;
  --logo-tone-dark: #c8bca5;
  --accent: #ff6a00;
  --accent-2: #ffd166;
  --card: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 45%, var(--bg) 0%, #4a0000 38%, var(--bg-alt) 78%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 2rem;
}

.background-glow {
  position: fixed;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, #7a000022, transparent 60%);
  animation: spin 24s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.site-header {
  text-align: center;
  margin-top: 0;
  animation: slide-in 600ms ease;
}

.business-logo {
  display: block;
  width: min(90vw, 640px);
  margin: 0 auto 0;
  filter: drop-shadow(0 0 28px rgba(255, 214, 150, 0.28));
}

.hero-line {
  margin: 0.12rem 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 3.2vw, 1.9rem);
  line-height: 1.2;
  background: linear-gradient(
    180deg,
    var(--logo-tone-light) 0%,
    var(--logo-tone-mid) 58%,
    var(--logo-tone-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 14px rgba(255, 246, 229, 0.14);
}

.hero-line + .hero-line {
  margin-bottom: 0.05rem;
}

.cta {
  display: inline-block;
  margin-top: 2.15rem;
  background: #520000;
  color: var(--logo-tone-light);
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--logo-tone-mid);
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  background: #630000;
}

.content {
  width: min(640px, 100%);
  margin-top: 2.6rem;
}

.card {
  background: var(--card);
  border: 1px solid #ffffff22;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  padding: 1.2rem;
  animation: slide-in 800ms ease;
}

h2 {
  margin-top: 0;
}

.signup {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

input,
button {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}

button {
  background: var(--accent-2);
  color: #2f1800;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .signup {
    justify-content: center;
  }
}
