:root {
  --bg: #0a0d16;
  --card: rgba(20,25,45,0.85);
  --border: rgba(255,255,255,0.08);
  --text: #eaeaf0;
  --muted: #9aa0b5;
  --accent: #8b5cf6;
}

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* glow */
.bg-glow {
  position: fixed;
  inset: -50%;
  background:
    radial-gradient(circle at 20% 20%, #8b5cf633, transparent 40%),
    radial-gradient(circle at 80% 60%, #6366f133, transparent 40%);
  z-index: -1;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin-top: 10px;
}

/* info cards */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

/* appeal card */
.appeal-card {
  max-width: 720px;
  margin: auto;
  background: linear-gradient(180deg, rgba(30,35,70,0.9), var(--card));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.appeal-card h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row {
  display: flex;
  gap: 12px;
}

input, textarea, select {
  width: 100%;
  background: #0f142a;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px;
  border-radius: 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
}

button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  cursor: pointer;
  transition: transform .15s ease;
}

button:hover {
  transform: translateY(-2px);
}

footer {
  margin-top: 60px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* mobile */
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 36px;
  }
}
