:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #10110f;
  --panel-2: #171914;
  --text: #f2f2e8;
  --muted: #a7aa9a;
  --lime: #b6ff00;
  --orange: #ff5a1f;
  --line: rgba(242, 242, 232, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(182, 255, 0, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(255, 90, 31, 0.14), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #0b0c09 55%, #050505 100%);
  color: var(--text);
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 20;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
}

.wizard-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 3rem;
}

.wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--lime);
  color: #050505;
  border-radius: 0.8rem;
  box-shadow: 0 0 28px rgba(182, 255, 0, 0.35);
}

.step-counter {
  color: var(--muted);
  font-weight: 800;
}

.progress-wrap {
  height: 0.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  box-shadow: 0 0 24px rgba(182, 255, 0, 0.45);
  transition: width 0.35s ease;
}

.wizard-card {
  position: relative;
  margin-top: 1.4rem;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(16, 17, 15, 0.94), rgba(10, 11, 9, 0.94));
  box-shadow: var(--shadow);
}

.wizard-step {
  display: none;
  animation: slideIn 0.32s ease both;
}

.wizard-step.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.choice-grid,
.checkbox-grid,
.palette-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.choice-card,
.feature-card,
.palette-card,
.upload-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 7rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.choice-card:hover,
.feature-card:hover,
.palette-card:hover,
.upload-box:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 255, 0, 0.65);
}

.choice-card:has(input:checked),
.feature-card:has(input:checked),
.palette-card:has(input:checked) {
  border-color: var(--lime);
  background: rgba(182, 255, 0, 0.1);
  box-shadow: 0 0 28px rgba(182, 255, 0, 0.12);
}

input[type="radio"],
input[type="checkbox"],
input[type="file"] {
  accent-color: var(--lime);
}

.choice-card span,
.feature-card span,
.upload-box span {
  font-size: 1.2rem;
  font-weight: 900;
}

small,
.hint {
  color: var(--muted);
}

.text-input,
textarea,
select {
  width: 100%;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.hidden-field {
  display: none;
}

.hidden-field.visible {
  display: block;
}

.inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: end;
}

.palette-swatches {
  display: flex;
  gap: 0.45rem;
}

.swatch {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.suggestion-pill {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(182, 255, 0, 0.45);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(182, 255, 0, 0.08);
}

.summary-box {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.summary-row {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.summary-row strong {
  color: var(--lime);
}

.recommendation {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 90, 31, 0.45);
  border-radius: 1.2rem;
  background: rgba(255, 90, 31, 0.08);
}

.wizard-nav,
.final-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.primary-button {
  background: var(--lime);
  color: #050505;
  box-shadow: 0 0 28px rgba(182, 255, 0, 0.28);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .choice-grid,
  .checkbox-grid,
  .palette-grid,
  .inline-field,
  .summary-row {
    grid-template-columns: 1fr;
  }

  .wizard-card {
    min-height: auto;
  }

  .wizard-nav,
  .final-actions {
    flex-direction: column;
  }
}
/* Logo Generator Results */
.logo-results{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:16px}
.logo-option{cursor:pointer;border:2px solid rgba(255,255,255,.1);border-radius:16px;padding:16px;text-align:center;transition:all .2s;background:rgba(255,255,255,.04)}
.logo-option:hover{border-color:rgba(255,255,255,.3);transform:scale(1.03)}
.logo-option.selected{border-color:var(--accent);box-shadow:0 0 20px rgba(182,255,0,.2)}
.logo-option svg{width:100%;height:auto;max-height:120px}
.logo-option small{display:block;margin-top:8px;color:var(--muted);font-size:.75rem}
@media(max-width:600px){.logo-results{grid-template-columns:repeat(2,1fr)}}
