/* OmniOFM — dark-only, logo-aligned blue / cyan / green accents */

:root {
  --bg1: #05070a;
  --bg2: #070a10;
  --card: rgba(10, 14, 22, 0.78);
  --text: #f4f7fb;
  --muted: #8aa3b8;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);

  --blue: #0052ff;
  --cyan: #00d2ff;
  --green: #80ff72;

  --glow1: rgba(0, 82, 255, 0.18);
  --glow2: rgba(128, 255, 114, 0.12);
  --glow3: rgba(0, 210, 255, 0.1);

  --accent-gradient: linear-gradient(135deg, var(--green), var(--cyan), var(--blue));
  --bar-gradient: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));

  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, var(--glow1), transparent 58%),
    radial-gradient(900px 520px at 82% 8%, var(--glow2), transparent 60%),
    radial-gradient(700px 480px at 50% 92%, var(--glow3), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

a {
  color: inherit;
}

a.link-accent {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 210, 255, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

a.link-accent:hover {
  color: var(--green);
  border-bottom-color: rgba(128, 255, 114, 0.45);
}

/* Splash */
.splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px;
  background: var(--bg1);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

body:not(.is-loading) .splash {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: min(200px, 52vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 82, 255, 0.25));
}

.splash-bar {
  width: min(240px, 70vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}

.splash-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--bar-gradient);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.35);
  transition: width 0.22s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .splash {
    transition: opacity 0.2s ease;
  }

  .splash-bar-fill {
    transition: none;
  }
}

/* Layout (mirrors reference project) */
.container {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.wrap {
  width: min(720px, 100%);
  display: grid;
  gap: 20px;
}

/* Center footer under the same max-width as .prose cards (avoids looking offset on wizard pages). */
.wrap:has(.card.prose) > .site-footer {
  max-width: 68ch;
  width: 100%;
  margin-inline: auto;
  justify-self: center;
  box-sizing: border-box;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 4px;
}

h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 .word-omni {
  color: #fff;
}

h1 .word-ofm {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.small {
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

hr.sep {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.services {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.services li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 15px;
  font-weight: 550;
  letter-spacing: 0.01em;
}

.services li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.services li:hover {
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(0, 82, 255, 0.12);
}

.services li.coming {
  color: var(--muted);
  font-weight: 500;
}

.services li.coming:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  text-align: center;
  padding: 0 8px 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-language-picker {
  position: relative;
}

.footer-language-picker summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease, transform 0.06s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.footer-language-picker summary::-webkit-details-marker {
  display: none;
}

.footer-language-picker summary:hover,
.footer-language-picker summary:focus-visible,
.footer-language-picker[open] summary {
  opacity: 1;
  border-color: rgba(0, 210, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-language-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.footer-language-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1;
}

.footer-language-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #0d1117;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 40;
}

.footer-language-menu button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.06s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.footer-language-menu button:hover,
.footer-language-menu button:focus-visible {
  opacity: 1;
  border-color: rgba(0, 210, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

#google_translate_element {
  display: none;
}

.footer-sep {
  opacity: 0.55;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--cyan);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.08s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-link:hover {
  color: var(--green);
  border-color: rgba(128, 255, 114, 0.4);
  transform: translateY(-1px);
}

.social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Privacy page */
.prose {
  max-width: 68ch;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.prose h2 {
  margin: 22px 0 8px;
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.prose ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.prose .callout {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 210, 255, 0.22);
  background: rgba(0, 82, 255, 0.08);
}

.prose .callout p {
  margin: 0;
}

.back-row {
  margin-top: 18px;
}

.telegram-cta {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.telegram-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(0, 210, 255, 0.38);
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.08), rgba(0, 82, 255, 0.2));
  text-decoration: none;
  transition: transform 0.08s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.telegram-icon-link:hover,
.telegram-icon-link:focus-visible {
  color: var(--green);
  border-color: rgba(128, 255, 114, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(128, 255, 114, 0.28),
    0 0 24px rgba(0, 210, 255, 0.22),
    0 10px 28px rgba(0, 82, 255, 0.26);
}

.telegram-icon-link .telegram-icon-svg {
  width: 54px;
  height: 54px;
  display: block;
  fill: currentColor;
}

.telegram-btn {
  min-width: 220px;
}

.telegram-cta:hover .telegram-icon-link,
.telegram-cta:focus-within .telegram-icon-link {
  color: var(--green);
  border-color: rgba(128, 255, 114, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(128, 255, 114, 0.28),
    0 0 24px rgba(0, 210, 255, 0.22),
    0 10px 28px rgba(0, 82, 255, 0.26);
}

.telegram-cta:hover .telegram-btn,
.telegram-cta:focus-within .telegram-btn {
  border-color: rgba(0, 210, 255, 0.75);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.32), rgba(0, 210, 255, 0.28), rgba(0, 82, 255, 0.35));
  box-shadow:
    0 0 0 2px rgba(128, 255, 114, 0.35),
    0 0 24px rgba(0, 210, 255, 0.22),
    0 10px 28px rgba(0, 82, 255, 0.28);
  transform: translateY(-2px) scale(1.02);
}

.page-nav {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-nav a,
.page-nav .page-nav-static {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}

.page-nav a {
  text-decoration: none;
}

.page-nav .page-nav-static {
  cursor: default;
  user-select: none;
  opacity: 0.72;
}

.page-nav a:hover,
.page-nav a.is-active,
.page-nav li.is-active .page-nav-static {
  color: var(--text);
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(0, 82, 255, 0.16);
  opacity: 1;
}

.page-nav .page-nav-static:hover {
  border-color: var(--line);
  color: var(--muted);
  background: transparent;
  opacity: 0.72;
}

.page-nav li.is-active .page-nav-static:hover {
  color: var(--text);
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(0, 82, 255, 0.16);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.15s ease, transform 0.06s ease;
}

.btn:hover {
  opacity: 1;
  border-color: rgba(0, 210, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(1px);
}

.btn--accent {
  border-color: rgba(0, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.12), rgba(0, 82, 255, 0.18));
}

.btn--accent:hover,
.btn--accent:focus-visible {
  border-color: rgba(0, 210, 255, 0.75);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.32), rgba(0, 210, 255, 0.28), rgba(0, 82, 255, 0.35));
  box-shadow:
    0 0 0 2px rgba(128, 255, 114, 0.35),
    0 0 24px rgba(0, 210, 255, 0.22),
    0 10px 28px rgba(0, 82, 255, 0.28);
  transform: translateY(-2px) scale(1.02);
}

/* Chatting wizard */
.wizard {
  margin-top: 16px;
}

.wizard-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.wizard-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--cyan);
}

.wizard-step {
  display: none;
  margin-top: 16px;
}

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

.wizard-step.is-active.is-animating {
  animation: wizard-step-in 0.28s ease both;
}

@keyframes wizard-step-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-cta-grid {
  display: grid;
  gap: 10px;
}

.wizard-cta {
  width: 100%;
  min-height: 44px;
}

.wizard-cta:hover,
.wizard-cta:focus-visible {
  border-color: rgba(0, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.12), rgba(0, 82, 255, 0.18));
}

.wizard h3 {
  margin: 16px 0 8px;
  font-size: 14px;
}

.compare-wrap {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.compare-table th,
.compare-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
}

.compare-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  border: 1px solid transparent;
}

.mark--good {
  color: var(--green);
  border-color: rgba(128, 255, 114, 0.32);
  background: rgba(128, 255, 114, 0.1);
}

.mark--bad {
  color: #ff8a8a;
  border-color: rgba(255, 90, 90, 0.3);
  background: rgba(255, 90, 90, 0.12);
}

.wizard-list {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.wizard-list li {
  margin-top: 4px;
}

.faq-list {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-size: 13px;
}

.faq-list details p {
  margin: 8px 0 0;
}

.wizard-actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-grid {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.platform-card {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.platform-card:hover {
  border-color: rgba(0, 210, 255, 0.35);
}

.platform-card.is-selected {
  border-color: rgba(0, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(128, 255, 114, 0.12), rgba(0, 82, 255, 0.18));
}

.platform-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px;
}

.platform-name {
  font-size: 13px;
  font-weight: 600;
}

.platform-picked {
  margin-top: 8px;
}

.wizard-callout {
  margin-top: 8px;
  border: 1px solid rgba(0, 210, 255, 0.22);
  background: rgba(0, 82, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
}

.wizard-callout p {
  margin: 0;
}

.form-check {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.form-check input {
  margin-top: 3px;
}

.form-error {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #f5b4b4;
  min-height: 1.2em;
}

.yesno-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.yesno-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.yesno-row input {
  accent-color: var(--cyan);
}

.char-count {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.questionnaire-review-list {
  margin-top: 10px;
  display: grid;
  gap: 14px;
  max-height: min(60vh, 520px);
  overflow: auto;
  padding-right: 4px;
}

.questionnaire-review-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.questionnaire-review-item label.q-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.review-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.review-textarea:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.42);
}

.review-age-input {
  width: 100%;
  max-width: 120px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px;
  font: inherit;
  font-size: 13px;
}

.review-age-input:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.42);
}

.wizard-actions--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.birthday-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Native dropdown popover follows color-scheme in Chrome */
  color-scheme: dark;
}

.birthday-selects select {
  min-width: 140px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px;
  font: inherit;
  font-size: 13px;
  color-scheme: dark;
  background-color: #13161c;
  color: #e8ecf0;
}

.birthday-selects select:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.42);
}

[data-chatting-wizard] select {
  color-scheme: dark;
  background-color: #13161c;
  color: #e8ecf0;
}

[data-chatting-wizard] select option,
.birthday-selects select option {
  background-color: #13161c;
  color: #e8ecf0;
}

.emoji-picker-panel {
  margin-top: 12px;
}

.emoji-picker-grid {
  margin-top: 8px;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.emoji-picker-grid--compact {
  max-height: 160px;
}

.emoji-picker-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.emoji-picker-table td {
  padding: 2px;
  text-align: center;
  vertical-align: middle;
}

.emoji-pick-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1.25;
  padding: 4px;
  border-radius: 6px;
  width: 100%;
}

.emoji-pick-btn:hover,
.emoji-pick-btn:focus-visible {
  background: rgba(0, 210, 255, 0.15);
}

.todo-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(0, 210, 255, 0.35);
  background: rgba(0, 82, 255, 0.08);
  font-size: 12px;
  color: var(--muted);
}

.form-field {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.form-field span {
  font-size: 12px;
  color: var(--text);
}

.form-field input {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px;
  font: inherit;
  font-size: 13px;
}

.form-field input:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.42);
}

.review-box {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
}

.review-box pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.wizard-progress {
  margin-top: 16px;
}

.wizard-progress.is-hidden {
  display: none;
}

.wizard-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.wizard-progress-fill {
  width: 0;
  height: 100%;
  background: var(--bar-gradient);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.35);
  transition: width 0.2s ease;
}

.wizard-progress-text {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.question-card {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.question-meta {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--muted);
}

.question-prompt {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

#questionnaire-answer {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

#questionnaire-answer:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.42);
}
