/* ==========================================================================
   WantedX — app.css
   Voice AI agent · conversion funnels · forms
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VOICE LAUNCHER — floating orb
   -------------------------------------------------------------------------- */
.voice-launch {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-voice);
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0;
  border-radius: var(--r-pill);
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  overflow: hidden;
  transform: translateY(24px) scale(.92);
  opacity: 0;
  pointer-events: none;
  transition: transform .6s var(--ease-out), opacity .5s var(--ease-out),
              border-color var(--dur), box-shadow var(--dur);
}
.voice-launch.show { transform: none; opacity: 1; pointer-events: auto; }
.voice-launch:hover { border-color: var(--accent-line); }
.voice-launch[hidden] { display: none; }

.voice-orb {
  position: relative;
  flex: none;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
[data-theme="dark"] .voice-orb { color: #06131A; }
.voice-orb svg { width: 20px; height: 20px; position: relative; z-index: 2; }
.voice-orb::before,
.voice-orb::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
}
.voice-launch.show .voice-orb::before { animation: sonar 3.4s var(--ease-out) infinite; }
.voice-launch.show .voice-orb::after  { animation: sonar 3.4s var(--ease-out) 1.7s infinite; }
@keyframes sonar {
  0%   { transform: scale(.7); opacity: .5; }
  70%  { opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

.voice-label {
  padding: 0 22px 0 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.012em;
  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
  opacity: 1;
  transition: max-width .45s var(--ease-out), padding .45s var(--ease-out), opacity .25s var(--ease-out);
}
/* Once the visitor is reading, the launcher retreats to the orb and
   re-introduces itself on hover. */
.voice-launch.mini .voice-label { max-width: 0; padding: 0; opacity: 0; }
.voice-launch.mini:hover .voice-label,
.voice-launch.mini:focus-visible .voice-label { max-width: 240px; padding: 0 22px 0 15px; opacity: 1; }
@media (max-width: 940px) {
  /* The sticky bottom bar carries the voice CTA on small screens, so the
     floating orb would just be a second copy of the same action. */
  .voice-launch { display: none; }
}

/* --------------------------------------------------------------------------
   2. VOICE PANEL
   -------------------------------------------------------------------------- */
.voice-scrim {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-voice) - 1);
  background: rgba(6, 10, 18, .42);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur);
}
.voice-scrim.open { opacity: 1; visibility: visible; }

.voice-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(432px, calc(100vw - 32px));
  height: min(660px, calc(100dvh - 40px));
  z-index: var(--z-voice);
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px) scale(.97);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: transform .42s var(--ease-out), opacity .3s var(--ease-out), visibility .42s;
}
.voice-panel.open { transform: none; opacity: 1; visibility: visible; }

@media (max-width: 560px) {
  .voice-panel {
    right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    border-width: 0;
  }
}

/* Header */
.vp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  flex: none;
}
.vp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #fff;
  flex: none;
  position: relative;
}
[data-theme="dark"] .vp-avatar { color: #06131A; }
.vp-avatar svg { width: 16px; height: 16px; }
.vp-avatar .dot {
  position: absolute;
  right: -1px; bottom: -1px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ok);
  border: 2px solid var(--bg-elev);
}
.vp-title { min-width: 0; line-height: 1.25; }
.vp-title b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -.02em;
  color: var(--ink);
}
.vp-title span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.vp-tools { margin-left: auto; display: flex; gap: 4px; flex: none; }
.vp-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: color var(--dur-fast), background-color var(--dur-fast);
}
.vp-icon:hover { color: var(--ink); background: var(--bg-sunk); }
.vp-icon svg { width: 16px; height: 16px; }
.vp-icon.on { color: var(--accent-text); background: var(--accent-wash); }
.vp-icon .i-off { display: none; }
.vp-icon.muted .i-on  { display: none; }
.vp-icon.muted .i-off { display: block; }

/* Log */
.vp-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.vp-log::-webkit-scrollbar { width: 8px; }
.vp-log::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.vp-log::-webkit-scrollbar-track { background: transparent; }

.vmsg { display: flex; max-width: 100%; animation: msgIn .4s var(--ease-out) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } }
.vmsg.me { justify-content: flex-end; }
.vmsg .bub {
  max-width: 86%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14.6px;
  line-height: 1.58;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.vmsg.ai .bub {
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  color: var(--ink-2);
}
.vmsg.me .bub {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-bottom-right-radius: 5px;
}
[data-theme="dark"] .vmsg.me .bub { color: #051018; }
.vmsg.sys { justify-content: center; }
.vmsg.sys .bub {
  background: transparent;
  border: 1px dashed var(--line-2);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 12px;
  text-align: center;
}
.vmsg .bub a:not(.btn) { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.vmsg.ai .bub a:not(.btn) { color: var(--accent-text); }
.vmsg .bub a.btn { text-decoration: none; }
.vmsg .bub strong { font-weight: 650; color: inherit; }

/* Typing dots */
.vtyping { display: inline-flex; gap: 4px; align-items: center; height: 18px; }
.vtyping i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: bounce 1.25s var(--ease-in-out) infinite;
}
.vtyping i:nth-child(2) { animation-delay: .16s; }
.vtyping i:nth-child(3) { animation-delay: .32s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Quick-reply chips */
.vp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 4px 16px 12px;
  flex: none;
}
.vchip {
  font-size: 12.8px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  background: var(--bg-elev);
  transition: border-color var(--dur-fast), color var(--dur-fast), background-color var(--dur-fast), transform var(--dur-fast);
  text-align: left;
  line-height: 1.35;
}
.vchip:hover {
  border-color: var(--accent-line);
  color: var(--accent-text);
  background: var(--accent-wash);
  transform: translateY(-1px);
}

/* Composer */
.vp-foot {
  flex: none;
  border-top: 1px solid var(--line);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--bg-elev);
}
.vp-input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 5px 5px 5px 15px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.vp-input-row:focus-within {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.vp-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  resize: none;
  font-size: 14.6px;
  line-height: 1.5;
  padding: 8px 0;
  max-height: 116px;
  color: var(--ink);
  font-family: var(--font-body);
}
.vp-input::placeholder { color: var(--faint); }

.vp-send, .vp-mic {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform var(--dur-fast), background-color var(--dur-fast), color var(--dur-fast), opacity var(--dur-fast);
}
.vp-send { background: var(--ink); color: var(--bg); }
.vp-send svg { width: 15px; height: 15px; }
.vp-send:disabled { opacity: .3; }
.vp-send:not(:disabled):hover { transform: scale(1.06); }

.vp-mic {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
[data-theme="dark"] .vp-mic { color: #06131A; }
.vp-mic svg { width: 16px; height: 16px; }
.vp-mic:hover { transform: scale(1.06); }
.vp-mic.listening { animation: micPulse 1.5s var(--ease-in-out) infinite; }
@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-line); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}
.vp-mic[hidden] { display: none; }

.vp-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.4;
}
.vp-hint .k {
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--muted);
}
.vp-hint a { color: var(--muted); }

/* --------------------------------------------------------------------------
   3. VOICE VISUALISER
   -------------------------------------------------------------------------- */
.vp-viz {
  flex: none;
  height: 0;
  overflow: hidden;
  transition: height .38s var(--ease-out);
  border-bottom: 1px solid transparent;
  background: var(--bg-sunk);
}
.vp-viz.active {
  height: 116px;
  border-bottom-color: var(--line);
}
.vp-viz-in {
  height: 116px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 14px;
  position: relative;
}
.viz-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 46px;
}
.viz-bars i {
  width: 3px;
  min-height: 3px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  transition: height .08s linear;
}
.viz-state {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.viz-live {
  font-size: 13.5px;
  color: var(--ink-2);
  text-align: center;
  min-height: 1.2em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: italic;
}
.vp-viz.speaking .viz-bars i { background: linear-gradient(to top, var(--accent-2), var(--accent)); }

/* Inline "start voice" hero button used in page CTAs */
.voice-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.voice-cue .wave { display: flex; align-items: center; gap: 2.5px; height: 14px; }
.voice-cue .wave i {
  width: 2px; border-radius: 2px; background: currentColor; opacity: .85;
  animation: eq 1.15s var(--ease-in-out) infinite;
}
.voice-cue .wave i:nth-child(1) { height: 5px;  animation-delay: 0s; }
.voice-cue .wave i:nth-child(2) { height: 11px; animation-delay: .14s; }
.voice-cue .wave i:nth-child(3) { height: 7px;  animation-delay: .28s; }
.voice-cue .wave i:nth-child(4) { height: 13px; animation-delay: .42s; }
.voice-cue .wave i:nth-child(5) { height: 6px;  animation-delay: .56s; }
@keyframes eq { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1.35); } }

/* --------------------------------------------------------------------------
   4. FUNNEL SELECTOR
   -------------------------------------------------------------------------- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 16px;
}
.path {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  color: inherit;
  transition: border-color var(--dur), transform var(--dur) var(--ease-out), box-shadow var(--dur);
  cursor: pointer;
  overflow: hidden;
}
.path:hover, .path:focus-visible {
  border-color: var(--accent-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.path[aria-pressed="true"] {
  border-color: var(--accent);
  background: linear-gradient(158deg, var(--accent-wash), transparent 70%), var(--bg-elev);
}
.path[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.path .p-ico {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--accent-line);
  background: var(--accent-wash);
  color: var(--accent-text);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.path .p-ico svg { width: 18px; height: 18px; }
.path h3 { font-size: 18.5px; margin-bottom: .4em; }
.path p { font-size: 14.5px; color: var(--muted); margin: 0; }
.path .p-go {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: flex; align-items: center; gap: 7px;
}
.path .p-go::after { content: "→"; transition: transform var(--dur) var(--ease-out); }
.path:hover .p-go::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. FORMS
   -------------------------------------------------------------------------- */
.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-elev);
  overflow: hidden;
}
.form-head {
  padding: clamp(22px, 2.4vw, 32px) clamp(22px, 2.6vw, 36px) 0;
}
.form-body { padding: clamp(20px, 2.4vw, 32px) clamp(22px, 2.6vw, 36px) clamp(24px, 2.6vw, 36px); }

.btn-back {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--muted);
  margin-bottom: 14px;
  transition: color var(--dur-fast);
}
.btn-back:hover { color: var(--accent-text); }

/* Step progress */
.steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 4px;
}
.step-pip {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.step-pip::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.step-pip.done::after, .step-pip.now::after { transform: scaleX(1); }
.step-pip.now::after { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.step-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 12px;
}

.fstep { display: none; padding: 0; margin: 0; animation: stepIn .42s var(--ease-out) both; }
.fstep.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } }
.fstep.back { animation-name: stepInBack; }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-14px); } }

.fstep > h3 { font-size: 21px; margin-bottom: .3em; }
.fstep > .fs-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }

.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field > label, .fieldset > legend {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: -.008em;
}
.field .req { color: var(--signal); margin-left: 2px; }
.field .help { display: block; font-size: 12.5px; color: var(--faint); margin-top: 6px; line-height: 1.45; }

.input, .textarea, .select {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background-color var(--dur-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
  background: var(--bg-elev);
}
.textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236E7A8C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}
.field.err .input, .field.err .textarea, .field.err .select { border-color: var(--signal); }
.field .err-msg { display: none; font-size: 12.5px; color: var(--signal); margin-top: 6px; font-weight: 500; }
.field.err .err-msg { display: block; }

.fieldset { border: 0; margin: 0 0 18px; padding: 0; }
.fieldset legend { padding: 0; }

/* Choice chips (radio / checkbox) */
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choices.col { flex-direction: column; }
.choice { position: relative; display: block; }
.choice input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.choice span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--bg);
  font-size: 14.2px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color var(--dur-fast), background-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
  line-height: 1.42;
}
.choice span::before {
  content: "";
  flex: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--line-3);
  margin-top: 2px;
  transition: border-color var(--dur-fast), background-color var(--dur-fast), box-shadow var(--dur-fast);
}
.choice input[type="checkbox"] + span::before { border-radius: 4px; }
.choice:hover span { border-color: var(--line-3); }
.choice input:checked + span {
  border-color: var(--accent);
  background: var(--accent-wash);
  color: var(--ink);
  font-weight: 550;
}
.choice input:checked + span::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg);
}
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.choice span .cs {
  display: block;
  font-size: 12.4px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

/* Honeypot */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* Consent row */
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 15px; height: 15px;
  flex: none;
}

/* Nav row */
.form-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.form-nav .spacer { margin-left: auto; }

/* Review summary */
.review-list { list-style: none; margin: 0; padding: 0; }
.review-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.2px;
}
.review-list li:last-child { border-bottom: 0; }
.review-list .rk {
  flex: none;
  width: 40%;
  max-width: 190px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-top: 2px;
}
.review-list .rv { color: var(--ink-2); min-width: 0; overflow-wrap: anywhere; }

/* Form status */
.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.5;
}
.form-status.show { display: block; animation: msgIn .35s var(--ease-out) both; }
.form-status.ok  { background: var(--ok-wash);  border: 1px solid var(--ok-line);  color: var(--ok); }
.form-status.bad { background: rgba(255,59,48,.07); border: 1px solid rgba(255,59,48,.28); color: var(--signal); }

/* Success panel */
.form-done { display: none; text-align: center; padding: clamp(28px, 4vw, 52px) 10px; }
.form-done.show { display: block; animation: stepIn .5s var(--ease-out) both; }
.form-done .seal {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--ok-wash);
  border: 1px solid var(--ok-line);
  display: grid; place-items: center;
  color: var(--ok);
}
.form-done .seal svg { width: 26px; height: 26px; }
.form-done .seal svg path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: dash .7s .2s var(--ease-out) forwards; }

/* Spinner */
.spin {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: rot .7s linear infinite;
  flex: none;
}
@keyframes rot { to { transform: rotate(360deg); } }

/* Trust strip under forms */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 12px; height: 12px; color: var(--ok); }

@media (max-width: 560px) {
  .review-list li { flex-direction: column; gap: 3px; }
  .review-list .rk { width: auto; max-width: none; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-launch.show .voice-orb::before,
  .voice-launch.show .voice-orb::after,
  .vp-mic.listening,
  .voice-cue .wave i,
  .vtyping i { animation: none !important; }
  .voice-cue .wave i { transform: none !important; }
}
