:root {
  --bg: #f2f4f8;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #5b6475;
  --accent: #0ea5a4;
  --accent-2: #f59e0b;
  --line: #e4e7ec;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
body {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, #d4f3f0 0%, transparent 60%),
              radial-gradient(900px 500px at 110% 10%, #ffe6c7 0%, transparent 60%),
              var(--bg);
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
}

.container {
  max-width: 980px;
  margin: 40px auto;
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

h1, h2 { margin: 0 0 12px 0; }

.badge {
  background: #e6fffb;
  color: #0f766e;
  border: 1px solid #99f6e4;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

input, button, select, textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.15);
}

button {
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
button:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(14,165,164,0.2); }
button.secondary { background: #eef2f6; color: #0f172a; }
button.ghost { background: transparent; border: 1px dashed var(--line); color: var(--muted); }

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  margin-top: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.small { font-size: 12px; color: var(--muted); }

.list { margin-top: 12px; }
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.hero-card {
  background: #0f172a;
  color: #fff;
  border-radius: 14px;
  padding: 18px;
}

.hero-card p { color: #cbd5f5; }

.alert {
  padding: 10px 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
}

.form-title { display:flex; align-items:center; gap:10px; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
}
