:root {
  --bg: #08080d;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(168, 85, 247, 0.5);
  --text: #f4f4f5;
  --text-muted: #9ca3af;
  --accent: #a855f7;
  --accent-2: #ec4899;
  --gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.header-badge {
  font-family: inherit;
  font-size: 12px;
  color: var(--text);
  padding: 6px 12px;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  background: var(--bg-card);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.header-badge:active {
  background: var(--bg-elevated);
}

/* Hero */
.hero {
  text-align: center;
  padding: 56px 0 20px;
}

.hero-title {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-sub {
  color: #fff;
  font-size: clamp(22px, 5.5vw, 26px);
  font-weight: 700;
  max-width: 420px;
  margin: 10px auto 48px;
  line-height: 1.4;
  text-align: center;
}

.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px 6px;
  max-width: 520px;
  margin: 12px auto 0;
  text-align: left;
}

.action-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-height: 78px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.action-card.expanded .action-chips {
  max-height: 600px;
}

.action-chip {
  font-family: inherit;
  font-size: 14px;
  padding: 8px 6px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1.25;
  width: 100%;
  text-align: center;
}

.action-chip:hover {
  border-color: rgba(168, 85, 247, 0.35);
  color: var(--text);
}

.action-chip.selected {
  border-color: var(--accent);
  color: #fff;
  background: rgba(168, 85, 247, 0.18);
}

.action-chip.hidden-fold {
  display: none;
}

.action-card.expanded .action-chip.hidden-fold {
  display: inline-block;
}

.action-toggle {
  display: block;
  width: 100%;
  margin-top: 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
}

.action-toggle:active {
  opacity: 0.75;
}

.upload-zone {
  position: relative;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12) 0%, rgba(236, 72, 153, 0.06) 100%);
  border: 2px dashed rgba(168, 85, 247, 0.55);
  border-radius: var(--radius);
  padding: 40px 24px 32px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  max-width: 520px;
  margin: 0 auto 12px;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.15),
    0 8px 32px rgba(168, 85, 247, 0.18);
}

.upload-zone.is-loading {
  pointer-events: none;
}

.upload-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 13, 0.88);
  border-radius: var(--radius);
}

.upload-loading[hidden] {
  display: none;
}

.upload-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(168, 85, 247, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: upload-spin 0.75s linear infinite;
}

@keyframes upload-spin {
  to { transform: rotate(360deg); }
}

.upload-zone:hover,
.upload-zone:focus-visible,
.upload-zone.dragover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.18) 0%, rgba(236, 72, 153, 0.1) 100%);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.25),
    0 12px 40px rgba(168, 85, 247, 0.28);
  outline: none;
}

.upload-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.45));
}

.upload-icon svg {
  width: 53px;
  height: 53px;
}

.upload-main {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.upload-zone .upload-formats {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.upload-zone .generations-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-muted);
}

.generations-note strong {
  color: var(--accent);
  font-weight: 600;
}

.btn-register {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background: var(--gradient);
  transition: transform 0.15s, opacity 0.15s;
}

.btn-register:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-register:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.examples .hero-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 32px;
  padding: 24px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-val {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Examples */
.examples {
  padding: 0 0 32px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.example-card.hidden-more {
  display: none;
}

.examples-grid.expanded .example-card.hidden-more {
  display: block;
}

.examples-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 20px auto 0;
  padding: 14px 20px;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.22) 0%, rgba(236, 72, 153, 0.12) 100%);
  border: 1px solid rgba(168, 85, 247, 0.55);
  border-radius: var(--radius-sm);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.12),
    0 6px 24px rgba(168, 85, 247, 0.22);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.examples-more-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.examples-more.is-loading {
  pointer-events: none;
}

.examples-more.is-loading .examples-more-content {
  visibility: hidden;
}

.examples-more-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.examples-more-loading[hidden] {
  display: none;
}

.examples-more:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.16) 100%);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.2),
    0 8px 28px rgba(168, 85, 247, 0.28);
}

.examples-more:active {
  opacity: 0.9;
}

.examples-more-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.examples-more-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.examples-more[aria-expanded='true'] .examples-more-icon {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .page {
    padding: 0 12px 32px;
  }

  .header {
    padding: 10px 0 4px;
    gap: 8px;
  }

  .logo-text {
    font-size: 17px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .header-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero {
    padding: 32px 0 12px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 20px;
    margin: 8px auto 36px;
    line-height: 1.35;
  }

  .action-card {
    gap: 6px;
    padding: 12px 10px 4px;
    margin-bottom: 10px;
  }

  .action-chip {
    font-size: 13px;
    padding: 7px 5px;
  }

  .action-chips {
    max-height: 74px;
    gap: 5px;
  }

  .upload-zone {
    padding: 22px 16px 20px;
  }

  .upload-icon {
    margin-bottom: 8px;
  }

  .upload-icon svg {
    width: 42px;
    height: 42px;
  }

  .upload-main {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .upload-zone .upload-formats {
    font-size: 12px;
  }

  .upload-zone .generations-note {
    margin-top: 24px;
    font-size: 13px;
  }

  .btn-register {
    margin-top: 14px;
    padding: 12px 32px;
    font-size: 15px;
  }

  .examples .hero-stats {
    margin-top: 24px;
    padding: 20px 0;
    gap: 20px;
  }

  .stat-val {
    font-size: 17px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .examples {
    padding: 0 0 24px;
  }

  .examples-grid {
    gap: 8px;
  }

  .example-card .card-label {
    font-size: 10px;
    padding: 3px 8px;
  }

  .example-card .card-thumb {
    top: 6px;
    left: 6px;
    min-width: 38px;
  }
}

.example-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.example-card .card-bg,
.example-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.example-card .card-bg {
  z-index: 1;
  transition: opacity 0.35s ease;
}

.example-card video {
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.example-card.playing .card-bg {
  opacity: 0;
}

.example-card.playing video {
  opacity: 1;
}

.example-card .card-thumb {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  width: 24%;
  min-width: 44px;
  max-width: 70px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.example-card .card-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  pointer-events: none;
}

.example-card .play-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.example-card.playing .play-indicator {
  opacity: 1;
}

/* Footer */
.site-footer {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-seo {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
}

.footer-seo-title {
  font-size: clamp(17px, 4vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-seo p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-seo p:last-child {
  margin-bottom: 0;
}

.footer-seo-accent {
  color: var(--accent);
  font-weight: 600;
}

.footer-main {
  padding: 28px 0 24px;
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 360px;
}

.footer-col {
  margin-bottom: 24px;
}

.footer-col:last-child {
  margin-bottom: 0;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 28px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
  padding: 0 8px;
}

.modal-accent {
  color: var(--accent);
  font-weight: 600;
}

.modal-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  background: var(--gradient);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.modal-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.modal-btn:active {
  transform: translateY(0);
}

/* Auth full screen */
.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  background: #0a0612;
}

.auth-screen[hidden] {
  display: none;
}

.auth-screen-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(168, 85, 247, 0.4), transparent),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(124, 58, 237, 0.25), transparent),
    linear-gradient(165deg, #12061f, #1a0a2e 55%, #0a0612);
}

.auth-screen-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 18, 0.75) 0%, rgba(10, 6, 18, 0.35) 42%, rgba(10, 6, 18, 0.88) 100%),
    radial-gradient(ellipse 90% 60% at 50% 72%, rgba(168, 85, 247, 0.15) 0%, transparent 72%);
}

.auth-screen-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 32px;
}

.auth-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.auth-back {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.auth-back:hover {
  background: rgba(168, 85, 247, 0.12);
}

.auth-logo .logo-text {
  font-size: 18px;
}

.auth-logo .logo-icon {
  width: 28px;
  height: 28px;
}

.auth-steps {
  display: flex;
  gap: 5px;
  padding: 14px 16px 0;
}

.auth-step-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.auth-step-dot.active {
  background: linear-gradient(90deg, #7c3aed, var(--accent));
}

.auth-step-dot.done {
  background: #6d28d9;
}

.auth-content {
  padding: 16px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.auth-step.hidden {
  display: none;
}

.auth-step-title {
  font-size: 11px;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.auth-step-title--ok {
  color: #4ade80;
}

.auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.auth-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.auth-input::placeholder {
  color: rgba(156, 163, 175, 0.5);
}

.phone-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.code-wrap {
  position: relative;
  flex-shrink: 0;
}

.code-btn {
  height: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.code-btn::after {
  content: '▾';
  font-size: 11px;
  color: var(--text-muted);
}

.phone-row .auth-input {
  flex: 1;
  min-width: 0;
}

.code-picker {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  min-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #1a1a26;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.code-picker button {
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.code-picker button.active {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.code-picker button:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.auth-btn {
  width: 100%;
  margin-top: 16px;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, var(--accent) 55%, #6d28d9);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4);
  transition: opacity 0.15s, transform 0.15s;
}

.auth-btn:hover {
  opacity: 0.95;
}

.auth-btn:active {
  transform: scale(0.98);
}

.auth-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.auth-btn-tg {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}

.auth-btn-tg:active {
  background: rgba(168, 85, 247, 0.2);
}

.auth-msg {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 10px;
}

.auth-msg.hidden {
  display: none;
}

.auth-msg.err {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.25);
}

.auth-msg.ok {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.auth-done-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4ade80;
  margin-bottom: 14px;
}

.auth-done-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.auth-screen .auth-loading {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(4px);
}

.auth-loading[hidden] {
  display: none;
}

.auth-loading-text {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 24px;
}
