/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", "SF Mono", monospace;
  --bg: #f6f4f0;
  --bg-elevated: #edeae4;
  --bg-inset: #e5e2db;
  --fg: #1a1917;
  --fg-secondary: #6b6860;
  --fg-tertiary: #9c9890;
  --fg-ghost: #c4c0b8;
  --accent: #c8432b;
  --accent-soft: #c8432b14;
  --border: #dad7d0;
  --border-light: #edeae4;
  --success: #2d7d46;
  --success-soft: #2d7d4614;
  --warning: #a07b1a;
  --warning-soft: #a07b1a14;
  --error: #b33a2d;
  --error-soft: #b33a2d14;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.page {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px 24px;
  display: flex;
}

.page-top {
  justify-content: flex-start;
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 440px;
}

.display {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--fg);
  font-weight: 400;
  line-height: 1.05;
}

.display-xl {
  font-size: clamp(52px, 10vw, 80px);
}

.display-lg {
  font-size: clamp(36px, 7vw, 52px);
}

.display-md {
  font-size: clamp(28px, 5vw, 36px);
}

.body {
  font-family: var(--font-body);
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.body-sm {
  font-family: var(--font-body);
  color: var(--fg-tertiary);
  font-size: 13px;
  line-height: 1.5;
}

.label {
  font-family: var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
  font-size: 11px;
  font-weight: 500;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: .02em;
  color: var(--fg-tertiary);
  font-size: 13px;
  font-weight: 300;
}

.italic {
  font-style: italic;
}

.rule {
  background: var(--border);
  border: none;
  width: 100%;
  height: 1px;
  margin: 0;
}

.btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.btn-dark {
  background: var(--fg);
  color: var(--bg);
  border-radius: 0;
}

.btn-dark:hover {
  background: #333028;
}

.btn-dark:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.btn-outline {
  color: var(--fg);
  border: 1px solid var(--border);
  background: none;
  border-radius: 0;
}

.btn-outline:hover {
  border-color: var(--fg);
}

.btn-ghost {
  color: var(--fg-secondary);
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
}

.btn-ghost:hover {
  color: var(--fg);
}

.btn-danger {
  color: var(--error);
  border: 1px solid var(--error);
  font-family: var(--font-body);
  cursor: pointer;
  background: none;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}

.btn-danger:hover {
  background: var(--error-soft);
}

.section {
  padding: 28px 0;
}

.card {
  border: 1px solid var(--border);
  padding: 28px;
}

.select-field {
  width: 100%;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B6860' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 14px 40px 14px 16px;
  font-size: 14px;
  transition: border-color .2s;
}

.select-field:hover {
  border-color: var(--fg-tertiary);
}

.select-field:focus {
  border-color: var(--fg);
  outline: none;
}

.select-field option {
  font-family: var(--font-body);
  background: var(--bg);
}

.input-field {
  width: 100%;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 14px;
  transition: border-color .2s;
}

.input-field:hover {
  border-color: var(--fg-tertiary);
}

.input-field:focus {
  border-color: var(--fg);
  outline: none;
}

.status {
  font-family: var(--font-mono);
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 300;
  display: inline-flex;
}

.status-dot {
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.status-dot.pulse {
  animation: 2.5s ease-in-out infinite pulse;
}

.status--active {
  color: var(--success);
}

.status--waiting {
  color: var(--warning);
}

.status--error {
  color: var(--error);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.waveform {
  align-items: center;
  gap: 2px;
  height: 32px;
  padding: 0 4px;
  display: flex;
}

.waveform-bar {
  background: var(--fg);
  border-radius: 1px;
  width: 2px;
  transition: height .15s;
}

.waveform.active .waveform-bar {
  animation: 1.4s ease-in-out infinite wave;
}

.waveform-bar:first-child {
  animation-delay: 0s;
}

.waveform-bar:nth-child(2) {
  animation-delay: .12s;
}

.waveform-bar:nth-child(3) {
  animation-delay: .24s;
}

.waveform-bar:nth-child(4) {
  animation-delay: .36s;
}

.waveform-bar:nth-child(5) {
  animation-delay: .48s;
}

@keyframes wave {
  0%, 100% {
    height: 4px;
  }

  50% {
    height: 28px;
  }
}

.waveform.idle .waveform-bar {
  background: var(--fg-ghost);
  height: 4px;
  animation: none;
}

.qr-wrap {
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px;
  display: inline-block;
}

.lang-row {
  border-bottom: 1px solid var(--border-light);
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  display: flex;
}

.lang-row:last-child {
  border-bottom: none;
}

.lang-row-left {
  align-items: center;
  gap: 10px;
  display: flex;
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-name {
  font-family: var(--font-body);
  color: var(--fg);
  font-size: 14px;
  font-weight: 400;
}

.lang-meta {
  font-family: var(--font-mono);
  color: var(--fg-tertiary);
  font-size: 12px;
  font-weight: 300;
}

.spinner {
  border: 1.5px solid var(--border);
  border-top-color: var(--fg);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: .7s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enter {
  animation: .6s both enter;
}

.enter-d1 {
  animation: .6s .1s both enter;
}

.enter-d2 {
  animation: .6s .2s both enter;
}

.enter-d3 {
  animation: .6s .3s both enter;
}

.enter-d4 {
  animation: .6s .4s both enter;
}

@media (max-width: 520px) {
  .page {
    padding: 24px 20px;
  }

  .page-top {
    padding-top: 48px;
  }

  .card {
    padding: 20px;
  }

  .btn-dark {
    width: 100%;
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/