@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --sp-surface: #faf8f5;
  --sp-card: #ffffff;
  --sp-text: #1a1835;
  --sp-muted: #6b6980;
  --sp-border: #e4e2dd;
  --sp-berry: #a21caf;
  --sp-lime: #a3e635;
  --sp-lime-fg: #1a1835;
}

* { box-sizing: border-box; }

.state-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--sp-text);
  background:
    radial-gradient(ellipse 55% 45% at 16% 12%, rgba(162, 28, 175, 0.12), transparent),
    radial-gradient(ellipse 35% 35% at 82% 84%, rgba(163, 230, 53, 0.07), transparent),
    var(--sp-surface);
}

.state-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(28px, 6vh, 72px) 24px 40px;
}

.state-card {
  width: min(760px, 100%);
  border-radius: 18px;
  border: 1px solid var(--sp-border);
  background: var(--sp-card);
  box-shadow: 0 22px 64px rgba(26, 24, 53, 0.1);
  padding: 28px;
}

.state-title {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.state-text {
  margin: 0;
  color: var(--sp-muted);
  line-height: 1.6;
}

.state-btns {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.state-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

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

.state-btn--primary {
  background: var(--sp-lime);
  color: var(--sp-lime-fg);
  box-shadow: 0 8px 22px rgba(163, 230, 53, 0.3);
}

.state-btn--secondary {
  background: #fff;
  color: var(--sp-text);
  border-color: var(--sp-border);
}

.state-btn--secondary:hover {
  border-color: var(--sp-berry);
  color: var(--sp-berry);
}
