:root {
  --bg: #070708;
  --fg: #f4f4f5;
  --muted: #b3b3ba;
  --card: #111114;
  --card-2: #17171b;
  --accent: #f5c400;
  --accent-2: #ffd84d;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.container { width: min(1100px, 92vw); margin: 0 auto; }

.header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(7,7,8,0.9);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }

.brand { font-weight: 700; font-size: 1.1rem; }

.brand span { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111; border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(245,196,0,0.3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(245,196,0,0.45); }

.btn-outline {
  background: transparent; color: var(--fg);
  border-color: rgba(245,196,0,0.5);
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.2);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.grid { display: grid; gap: 24px; }

.input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--fg);
  font-size: 0.95rem;
}

.input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(245,196,0,0.2);
}

label { font-size: 0.9rem; color: var(--fg); }

.helper { font-size: 0.75rem; color: var(--muted); }

.error { color: #fca5a5; font-size: 0.8rem; }

.badge { display: inline-flex; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(245,196,0,0.4); background: rgba(245,196,0,0.12); color: var(--accent); font-weight: 600; font-size: 0.75rem; }

.table { width: 100%; border-collapse: collapse; }

.table th, .table td { padding: 12px 10px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; }

.table th { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

.tag { font-size: 0.75rem; color: var(--muted); }

.notice { padding: 12px 14px; border-radius: 12px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.4); color: #fecaca; }

.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.form-shell {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.form-header h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  margin-top: 10px;
}

.form-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 26px;
  padding: 28px;
}

.progress {
  height: 8px;
}

.progress-bar {
  box-shadow: 0 0 14px rgba(245,196,0,0.35);
}

.step-actions .btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}

.step-actions .btn {
  padding: 12px 28px;
}

.input, select, textarea {
  background: rgba(255,255,255,0.04);
}

.option-list {
  display: grid;
  gap: 12px;
}

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.option:hover {
  border-color: rgba(245,196,0,0.4);
  transform: translateY(-1px);
}

.option input {
  accent-color: var(--accent);
}

.option span {
  font-size: 0.95rem;
  color: var(--fg);
}
.step { display: none; }
.step.active { display: block; }
.step {
  opacity: 0;
  transform: translateY(14px) translateX(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.step.active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  width: 0%;
  transition: width 0.3s ease;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.step-meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 900px) {
  .grid-cols-2 { grid-template-columns: 1fr; }
}
