.thing-shell {
  background: var(--off-white);
  color: var(--slate);
}

.vc-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
}

.vc-header { margin-bottom: 32px; }

.vc-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.vc-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-mid);
}

.vc-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  background: var(--off-white);
  border: 0.5px solid var(--rule);
  border-radius: 4px;
  padding: 14px 16px;
  resize: none;
  line-height: 1.6;
  outline: none;
  transition: border-color .15s;
  display: block;
  margin-bottom: 12px;
  min-height: 120px;
  box-sizing: border-box;
}

.vc-textarea:focus { border-color: var(--sage); }

.vc-textarea::placeholder {
  color: var(--slate-muted);
  font-style: italic;
}

.vc-submit {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 12px 28px;
  cursor: pointer;
  transition: opacity .15s;
}

.vc-submit:hover { opacity: 0.85; }
.vc-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.vc-disclosure {
  margin-top: 10px;
}

.vc-disclosure-toggle {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--slate-mid);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}

.vc-disclosure-toggle:hover { color: var(--slate); }

.vc-disclosure-toggle::after {
  content: '\25BE';
  font-size: 9px;
  transition: transform .2s;
}

.vc-disclosure-toggle.is-open::after {
  transform: rotate(-180deg);
}

.vc-disclosure-panel {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: 4px;
  border: 0.5px solid var(--rule);
}

.vc-disclosure-not {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 4px;
}

.vc-disclosure-yes {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.5;
}

.vc-result {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  opacity: 0;
  transition: opacity 600ms ease;
}

.vc-result--visible { opacity: 1; }

.vc-result--fading {
  opacity: 0;
  transition: opacity 600ms ease;
}

.vc-word-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vc-word {
  font-family: var(--serif);
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.vc-counter {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--slate-muted);
  opacity: 0.6;
  letter-spacing: .08em;
  min-width: 16px;
  text-align: center;
}

.vc-after {
  display: none;
  text-align: center;
  padding-top: 40px;
}

.vc-again {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color .15s;
}

.vc-again:hover { color: var(--slate); }

.vc-loading { margin-top: 24px; }

.vc-loading-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate-muted);
  font-style: italic;
}

.vc-error { margin-top: 12px; }

.vc-error-text {
  font-size: 13px;
  color: var(--rose);
}

@media (max-width: 900px) {
  .vc-word {
    font-size: clamp(64px, 18vw, 96px);
  }

  .vc-result {
    min-height: 70vh;
  }
}

.vc-signal {
  font-size: 32px;
  color: var(--sage);
  text-align: center;
  opacity: 0;
  transition: opacity 400ms ease;
  padding: 40px 0;
}

.vc-signal--visible {
  opacity: 1;
}

@media (min-width: 900px) {
  .vc-wrap {
    max-width: 900px;
    padding: 32px 48px 32px;
  }

  .vc-header {
    margin-bottom: 20px;
  }

  .vc-textarea {
    min-height: 72px;
    font-size: 16px;
  }
}
