@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #0c0f12;
  --panel: #14191f;
  --panel-2: #1a2027;
  --panel-3: #101419;
  --line: #28313a;
  --line-strong: #3b4650;
  --text: #edf1f5;
  --muted: #a4adb8;
  --soft: #72808d;
  --accent: #4ade80;
  --accent-2: #60a5fa;
  --danger: #fb7185;
  --warning: #fbbf24;
  --radius: 6px;
  --radius-sm: 4px;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 1100px;
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.nav-placeholder {
  display: none !important;
  pointer-events: none;
}

.app-frame {
  min-height: 100vh;
  display: block;
  padding-left: 184px;
}

.rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 184px;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: #080c11;
  padding: 12px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.app-mark,
.rail-status,
.panel,
.status-tile,
.feedback,
.now-playing,
.queue-empty,
.queue-item,
.simple-list li,
.api-option,
.switch-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.app-mark,
.rail-status,
.status-tile,
.feedback,
.now-playing,
.queue-empty,
.queue-item,
.simple-list li,
.api-option,
.switch-line {
  background: var(--panel-3);
}

.app-mark {
  display: grid;
  gap: 3px;
  padding: 9px;
}

.app-mark span,
.eyebrow,
.panel-title span,
.status-tile span,
.rail-status span,
.field span,
.menu-label {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.app-mark strong {
  font-size: 0.98rem;
}

.rail-group {
  display: grid;
  align-content: start;
  gap: 3px;
}

.website-nav {
  align-self: end;
  align-content: end;
}

.rail-page-button {
  width: 100%;
  min-height: 28px;
  text-align: left;
  color: var(--muted);
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  text-decoration: none;
  line-height: 1.25;
}

.rail-page-button:hover,
.rail-page-button.is-active {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel-3);
}

.rail-page-button.is-active {
  border-color: rgba(74, 222, 128, 0.48);
}

.rail-status {
  display: grid;
  gap: 4px;
  padding: 9px;
}

.workspace {
  min-width: 0;
  padding: 12px;
}

.command-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

h1 {
  margin: 3px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
}

.command-actions,
.toolbar-row,
.input-button,
.toggle-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.command-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-session-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-left: auto;
}

.site-session-floating {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 30;
}

.site-user-badge {
  min-height: 30px;
  max-width: 260px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  background: var(--panel-3);
  color: var(--text);
  padding: 5px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-mascot {
  position: fixed;
  right: 14px;
  bottom: 12px;
  width: 76px;
  height: auto;
  z-index: 60;
  pointer-events: none;
  user-select: none;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(106px, 1fr));
  gap: 7px;
  margin: 8px 0 7px;
}

.status-tile {
  height: 46px;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 7px 8px;
}

.status-tile strong,
.live-status-item strong {
  color: var(--warning);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-tile strong.success,
.live-status-item strong.success {
  color: var(--accent);
}

.status-tile strong.muted,
.live-status-item strong.muted {
  color: var(--soft);
}

.feedback {
  min-height: 29px;
  margin: 0 0 8px;
  padding: 6px 8px;
  color: var(--muted);
}

.feedback.error {
  border-color: rgba(251, 113, 133, 0.55);
  color: #fecdd3;
}

.feedback.success {
  border-color: rgba(74, 222, 128, 0.55);
  color: #bbf7d0;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 7px;
  align-items: start;
}

.panel {
  min-width: 0;
  background: var(--panel);
  padding: 8px;
  display: grid;
  gap: 7px;
  grid-column: span 6;
}

.panel.wide {
  grid-column: 1 / -1;
}

.desktop-page-panel {
  display: none;
}

.desktop-page-panel.is-active {
  display: grid;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  min-height: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
}

.panel-title.slim {
  margin-top: 2px;
}

.panel-title strong {
  color: var(--text);
}

.form-grid {
  display: grid;
  gap: 8px;
}

.form-grid.one {
  grid-template-columns: 1fr;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three {
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
}

.form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.form-grid.compact {
  gap: 6px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 8px;
}

.source-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 8px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.source-card .switch-line {
  background: #0b1016;
}

.browser-source-card {
  margin-top: 8px;
  border-color: rgba(96, 165, 250, 0.42);
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.09), rgba(74, 222, 128, 0.055)),
    var(--panel-3);
}

.avatar-upload-panel {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: rgba(5, 9, 14, 0.62);
  display: grid;
  gap: 8px;
  padding: 10px;
}

.avatar-upload-heading,
.avatar-upload-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-upload-heading {
  justify-content: space-between;
}

.avatar-upload-heading span {
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  padding: 3px 7px;
}

.avatar-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avatar-upload-slot {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(11, 16, 22, 0.88);
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-height: 176px;
  padding: 9px;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.avatar-upload-slot:hover {
  border-color: rgba(74, 222, 128, 0.46);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.12), 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.avatar-upload-slot span {
  color: var(--text);
  font-weight: 800;
}

.avatar-upload-slot img {
  align-self: center;
  background: #00ff00;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 8px;
  height: 86px;
  justify-self: center;
  object-fit: contain;
  padding: 4px;
  width: 104px;
}

.avatar-upload-slot small,
.avatar-upload-panel > small {
  color: var(--muted);
}

.avatar-upload-slot input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.avatar-upload-panel.is-locked .avatar-upload-slot {
  cursor: not-allowed;
  opacity: 0.58;
}

.avatar-upload-panel.is-locked .avatar-upload-slot:hover {
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: none;
  transform: none;
}

.home-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 8px;
}

.home-choice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 9px;
  display: grid;
  gap: 7px;
  align-content: start;
}

.home-choice-card .primary-button,
.home-choice-card .ghost-button {
  width: fit-content;
}

.field,
.settings-form {
  display: grid;
  gap: 5px;
}

.field.full,
.switch-line.full {
  grid-column: 1 / -1;
}

.field small,
.soft-stat {
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #090e15;
  color: var(--text);
  padding: 4px 7px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.16);
}

.input-button {
  align-items: stretch;
  flex-wrap: wrap;
}

.input-button input {
  flex: 1 1 180px;
  min-width: 0;
}

.primary-button,
.ghost-button,
.danger-button {
  min-height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
  color: var(--text);
  background: var(--panel-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  line-height: 1.25;
  white-space: nowrap;
}

.toolbar-row .primary-button,
.toolbar-row .ghost-button,
.toolbar-row .danger-button,
.plan-actions .primary-button,
.plan-actions .ghost-button,
.plan-actions .link-button,
.site-session-actions .primary-button,
.site-session-actions .ghost-button {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.primary-button {
  border-color: rgba(74, 222, 128, 0.55);
  background: #123326;
}

.ghost-button:hover,
.primary-button:hover {
  border-color: var(--accent-2);
}

.danger-button {
  border-color: rgba(251, 113, 133, 0.55);
  background: #35141c;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

a {
  color: inherit;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-button {
  min-width: 46px;
}

.toggle-row {
  align-items: stretch;
  flex-wrap: wrap;
}

.menu-label {
  width: 100%;
}

.toggle-row.dense {
  gap: 6px;
}

.switch-line {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
}

.switch-line input {
  width: auto;
  min-height: 0;
}

.range-field b {
  color: var(--accent);
}

.toolbar-row {
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 2px;
}

.toolbar-row .soft-stat {
  margin-right: auto;
}

.now-playing {
  padding: 8px;
}

.now-playing p {
  margin: 4px 0 0;
  color: var(--muted);
}

.queue-list,
.simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.queue-empty,
.queue-item,
.simple-list li {
  padding: 8px;
  color: var(--muted);
}

.simple-list li {
  display: grid;
  gap: 4px;
}

.simple-list li strong {
  color: var(--text);
}

.site-console .rail {
  grid-template-rows: auto 1fr;
}

.site-status-strip {
  grid-template-columns: repeat(4, minmax(130px, 1fr));
}

.site-status-strip .status-tile {
  height: 50px;
}

.site-status-strip .status-tile strong {
  white-space: normal;
}

.compact-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 7px;
}

.plan-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--panel-3);
  padding: 8px;
  display: grid;
  gap: 6px;
  border-radius: var(--radius);
}

.plan-card.featured {
  border-color: rgba(74, 222, 128, 0.55);
  background: #0d1815;
}

.site-console .plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.software-purchase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 8px;
  align-items: start;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: var(--radius);
  background: #0d1420;
  padding: 8px;
}

.software-purchase-copy {
  display: grid;
  gap: 6px;
}

.software-purchase-copy strong {
  font-size: 1.05rem;
}

.software-key-warning {
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: var(--radius-sm);
  background: #1d180b;
  padding: 7px;
}

.software-key-warning {
  display: grid;
  gap: 4px;
}

.software-key-warning p {
  margin: 0;
  color: var(--muted);
}

.software-acknowledgement {
  display: flex;
  align-items: start;
  gap: 6px;
  min-height: 0;
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: var(--radius-sm);
  background: #15130d;
  color: var(--text);
  padding: 6px;
  line-height: 1.35;
}

.software-acknowledgement input {
  margin-top: 2px;
}

.software-purchase-actions {
  display: grid;
  gap: 6px;
  align-content: start;
  justify-content: start;
}

.software-purchase-actions .primary-button,
.software-purchase-actions .ghost-button {
  width: auto;
  max-width: 100%;
  justify-content: center;
}

.software-update-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: left;
}

.download-card {
  max-width: 760px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 9px;
}

.download-card .primary-button {
  width: fit-content;
}

.download-card .software-update-note {
  text-align: left;
}

.disabled-link {
  pointer-events: none;
  opacity: 0.55;
}

.plan-card .section-label,
.section-label {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
}

.plan-card strong {
  font-size: 1rem;
}

.plan-volume,
.plan-highlight,
.section-copy,
.plan-detail {
  margin: 0;
  color: var(--muted);
}

.plan-highlight {
  color: var(--accent);
}

.plan-detail {
  font-size: 0.76rem;
  color: var(--soft);
}

.pricing-intro {
  max-width: 860px;
  line-height: 1.5;
}

.plan-actions {
  display: grid;
  justify-items: start;
  margin-top: auto;
}

.compact-usage-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(95px, 1fr));
  gap: 8px;
  min-height: 260px;
}

.usage-bar-card {
  min-width: 0;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 8px;
  display: grid;
  gap: 8px;
  align-content: end;
}

.usage-bar-track {
  height: 150px;
  display: flex;
  align-items: end;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #090e15;
}

.usage-bar-fill {
  width: 100%;
  min-height: 8px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.compact-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 12px 0 4px;
  color: var(--muted);
}

.compact-footer a {
  text-decoration: none;
}

.compact-footer a:hover {
  color: var(--text);
}

.compact-page .page-shell {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0 0 0 184px;
  display: block;
}

.compact-page .page-shell > :not(.topbar) {
  min-width: 0;
}

.compact-page .topbar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 184px;
  height: 100vh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 12px;
  padding: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #080c11;
}

.compact-page .brand {
  display: grid;
  gap: 3px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 9px;
}

.compact-page .topnav {
  display: grid;
  align-content: start;
  align-self: end;
  align-content: end;
  gap: 3px;
}

.compact-page .topnav a,
.compact-page .topnav button,
.compact-page .topnav span {
  width: 100%;
  min-height: 28px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  padding: 5px 8px;
  text-decoration: none;
  display: block;
  line-height: 1.25;
}

.compact-page .topnav a:hover,
.compact-page .topnav button:hover {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel-3);
}

.compact-page .stack {
  display: grid;
  width: min(1220px, 100%);
  gap: 16px;
  margin: 0 auto;
  padding: 24px 34px 18px;
}

.compact-page main.panel,
.compact-page main.legal-content {
  margin: 12px;
}

.compact-page .hero-card,
.compact-page .legal-content,
.compact-page .section-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
}

.compact-page .hero-copy h1,
.compact-page .legal-content h1,
.compact-page .legal-content h2,
.compact-page .legal-content h3 {
  margin: 0;
}

.compact-page .hero-copy,
.compact-page .legal-content {
  display: grid;
  gap: 8px;
}

.compact-page .hero-text,
.compact-page .legal-content p,
.compact-page .legal-content li {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.compact-page .legal-content a {
  color: var(--accent-2);
}

.compact-page .panel-heading,
.compact-page .section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.compact-page .panel-heading h2,
.compact-page .section-head h2,
.compact-page .form-title {
  margin: 0;
  font-size: 1rem;
}

.compact-page .live-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 8px;
}

.compact-page .live-status-item,
.compact-page .admin-user-card,
.compact-page .account-card,
.compact-page .balance-strip,
.compact-page .locked-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
  padding: 8px;
}

.compact-page .live-status-item span,
.compact-page .status-label {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.compact-page .grant-grid,
.compact-page .admin-filter-grid,
.compact-page .admin-user-grid,
.compact-page .auth-grid,
.compact-page .moderation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.compact-page .form-actions,
.compact-page .admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: end;
}

.compact-page .admin-user-card {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.compact-page .admin-user-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.software-access-badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0a0f15;
  color: var(--muted);
  padding: 3px 7px;
  font-size: 0.74rem;
}

.software-access-badge.is-purchased {
  border-color: rgba(74, 222, 128, 0.55);
  color: #bbf7d0;
  background: #0d1815;
}

.software-access-badge.is-granted {
  border-color: rgba(96, 165, 250, 0.55);
  color: #bfdbfe;
  background: #0d1420;
}

.compact-page .admin-user-preview {
  display: grid;
  gap: 6px;
}

.compact-page .admin-preview-row {
  display: grid;
  gap: 2px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-3);
}

.compact-page .admin-preview-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.compact-page .admin-user-card.is-banned {
  border-color: rgba(251, 113, 133, 0.55);
}

.compact-page .admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 8px;
}

.compact-page .ban-note {
  color: #fecdd3;
}

.compact-page .legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 10px 34px 24px;
  color: var(--muted);
}

.compact-page .legal-footer a {
  color: var(--muted);
  text-decoration: none;
}

.faq-hero {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.5fr);
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 34px !important;
  background:
    radial-gradient(circle at 84% 18%, rgba(74, 222, 128, 0.14), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(96, 165, 250, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 32, 0.96), rgba(8, 13, 19, 0.92));
}

.faq-hero .hero-copy {
  justify-items: center;
  text-align: center;
}

.faq-hero .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.04;
}

.faq-hero .hero-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.12rem;
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.faq-hero-card {
  width: min(360px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.42);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-hero-card span {
  min-height: 32px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
  color: #dbeafe;
  padding: 7px 10px;
  font-weight: 500;
}

.faq-hero-card strong {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.96), rgba(96, 165, 250, 0.96));
  color: #04111f;
  text-align: center;
  padding: 8px;
}

.faq-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px !important;
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.92), rgba(8, 13, 19, 0.86)),
    var(--panel);
}

.faq-section-head {
  max-width: 780px;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.faq-section-head h2,
.faq-support-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.faq-section-head p,
.faq-support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.faq-feature-strip span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #cbd5e1;
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 500;
}

.faq-page-grid {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(560px, 760px);
  justify-content: center;
  gap: 14px;
  align-items: start;
}

.faq-category-card,
.faq-support-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.12), transparent 34%),
    rgba(8, 13, 19, 0.62);
  padding: 16px;
}

.faq-category-card {
  position: sticky;
  top: 12px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.faq-category-card span {
  width: fit-content;
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.08);
  color: #bbf7d0;
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-category-card h3,
.faq-category-card p {
  margin: 0;
}

.faq-category-card h3 {
  font-size: 1.18rem;
  font-weight: 500;
}

.faq-category-card p {
  color: var(--muted);
  line-height: 1.55;
}

.faq-accordion {
  width: 100%;
  display: grid;
  gap: 8px;
}

.faq-accordion details {
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.34);
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.faq-accordion details:hover,
.faq-accordion details[open] {
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(12, 20, 31, 0.78);
}

.faq-accordion details:hover {
  transform: translateY(-1px);
}

.faq-accordion summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f8fafc;
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 500;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.08);
  color: #bfdbfe;
  font-weight: 900;
}

.faq-accordion details[open] summary::after {
  content: "-";
}

.faq-accordion details p {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  margin: 0;
  color: #aeb8c5;
  line-height: 1.65;
  padding: 0 16px 16px;
}

.faq-support-card {
  width: min(1040px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.api-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.api-option {
  display: grid;
  gap: 8px;
  padding: 9px;
}

.api-option p {
  margin: 0;
  color: var(--muted);
}

.voice-library {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.voice-library .primary-button {
  width: 100%;
}

#customVoiceList .queue-item {
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.5fr) auto;
}

#customVoiceList .queue-item > div {
  min-width: 0;
}

#customVoiceList code {
  color: var(--text);
  overflow-wrap: anywhere;
  white-space: normal;
}

.queue-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
}

.queue-item strong,
.queue-item p {
  margin: 0;
}

.queue-item p {
  color: var(--muted);
  margin-top: 3px;
}

.queue-meta {
  color: var(--soft) !important;
  font-size: 0.76rem;
}

.simple-list .queue-item {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(120px, 160px) minmax(170px, 240px) auto;
  align-items: center;
  gap: 8px;
}

#assignmentList .queue-item {
  grid-template-columns: minmax(0, 1fr) minmax(118px, 150px);
}

#assignmentList .queue-item > div {
  grid-column: 1 / -1;
  min-width: 0;
}

#assignmentList .queue-item select,
#assignmentList .queue-item button {
  width: 100%;
  max-width: none;
}

#assignmentList .queue-item button {
  grid-column: 1 / -1;
}

.marketing-site {
  min-width: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(74, 222, 128, 0.14), transparent 28%),
    radial-gradient(circle at 18% 28%, rgba(96, 165, 250, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #071017 0%, #0b0f14 42%, #080b10 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.marketing-site .app-frame {
  padding-left: 184px;
}

.marketing-site,
.faq-page {
  min-width: 1180px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.marketing-site button,
.marketing-site input,
.marketing-site select,
.marketing-site textarea,
.faq-page button,
.faq-page input,
.faq-page select,
.faq-page textarea {
  font-family: inherit;
}

.marketing-mark {
  color: var(--text);
  text-decoration: none;
}

.marketing-workspace {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 24px 34px 28px;
}

.marketing-topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(8, 13, 19, 0.86);
  backdrop-filter: blur(16px);
  padding: 10px 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.marketing-topbar::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.8);
}

.marketing-logo {
  display: none;
  color: var(--text);
  text-decoration: none;
}

.marketing-logo span {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.marketing-logo strong {
  display: block;
  font-size: 1rem;
}

.marketing-inline-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.marketing-inline-nav a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 9px;
  font-size: 0.92rem;
  font-weight: 500;
}

.marketing-inline-nav a:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 32, 0.8);
}

.marketing-hero {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 58px 0 44px;
}

.marketing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.45), rgba(96, 165, 250, 0.45), transparent);
}

.marketing-kicker {
  width: fit-content;
  margin: 0 0 14px;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.09);
  color: #bbf7d0;
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.final-cta h2 {
  margin: 0;
  color: #f8fafc;
  font-weight: 400;
  line-height: 1.04;
}

.marketing-hero .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.3vw, 6rem);
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px auto 0;
  color: #c7d2de;
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.primary-button.hero-primary,
.ghost-button.hero-secondary {
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.96rem;
  font-weight: 600;
}

.primary-button.hero-primary {
  border-color: rgba(74, 222, 128, 0.76);
  background: linear-gradient(135deg, #16a34a, #22c55e 54%, #60a5fa);
  color: #03110a;
  box-shadow: 0 16px 42px rgba(34, 197, 94, 0.22);
}

.ghost-button.hero-secondary {
  border-color: rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.72);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
  color: var(--muted);
  padding: 6px 9px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  perspective: 1200px;
}

.platform-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.platform-orbit span,
.platform-badges span {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  background: rgba(8, 13, 19, 0.78);
  color: #dbeafe;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.platform-orbit span {
  position: absolute;
  padding: 8px 12px;
  font-weight: 600;
  animation: floatBadge 5.8s ease-in-out infinite;
}

.platform-orbit span:nth-child(1) {
  top: 22px;
  left: 8%;
}

.platform-orbit span:nth-child(2) {
  top: 42px;
  right: 2%;
  animation-delay: -1.1s;
}

.platform-orbit span:nth-child(3) {
  left: 0;
  bottom: 90px;
  animation-delay: -2.2s;
}

.platform-orbit span:nth-child(4) {
  right: 8%;
  bottom: 34px;
  animation-delay: -3.3s;
}

.platform-orbit span:nth-child(5) {
  top: 48%;
  right: -8px;
  animation-delay: -4.4s;
}

.queue-mockup,
.control-mockup,
.voice-mockup {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(20, 28, 38, 0.94), rgba(8, 13, 19, 0.96)),
    rgba(8, 13, 19, 0.95);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 80px rgba(96, 165, 250, 0.1);
}

.queue-mockup {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-3deg);
}

.queue-mockup::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.07), transparent 65%);
  animation: mockupSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.mockup-topline,
.mockup-rows div,
.control-mockup div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-topline {
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding-bottom: 12px;
}

.mockup-topline span,
.mockup-rows span,
.control-mockup span,
.pricing-preview-grid span {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.mockup-topline strong {
  color: #bbf7d0;
}

.mockup-flow {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) 40px minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
}

.chat-stack {
  display: grid;
  gap: 8px;
}

.source-pill {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.7);
  padding: 8px 10px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.source-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.source-pill em {
  color: var(--soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.source-pill.twitch {
  border-color: rgba(168, 85, 247, 0.44);
}

.source-pill.tiktok {
  border-color: rgba(34, 211, 238, 0.42);
}

.source-pill.kick {
  border-color: rgba(74, 222, 128, 0.42);
}

.source-pill.youtube {
  border-color: rgba(248, 113, 113, 0.42);
}

.source-pill.rumble {
  border-color: rgba(251, 191, 36, 0.42);
}

.flow-arrow {
  color: var(--soft);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.shared-queue-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 8px;
  background: rgba(12, 31, 26, 0.8);
  padding: 16px;
  box-shadow: inset 0 0 30px rgba(74, 222, 128, 0.07);
}

.queue-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
}

.queue-meter span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: queueMeter 3.4s ease-in-out infinite;
}

.floating-chat {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(3, 7, 12, 0.74);
  color: #dbeafe;
  padding: 7px 10px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  animation: chatFloat 6s ease-in-out infinite;
}

.chat-one {
  top: 74px;
  left: 52%;
}

.chat-two {
  right: 22px;
  bottom: 92px;
  animation-delay: -1.8s;
}

.chat-three {
  left: 20px;
  bottom: 136px;
  animation-delay: -3.1s;
}

.shared-queue-card span {
  color: #bbf7d0;
  font-weight: 800;
}

.shared-queue-card strong {
  font-size: 1.25rem;
}

.shared-queue-card p {
  margin: 0;
  color: var(--muted);
}

.mockup-rows {
  display: grid;
  gap: 7px;
}

.mockup-rows div,
.control-mockup div {
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 5px;
  background: rgba(3, 7, 12, 0.44);
  padding: 8px 10px;
}

.mockup-rows strong,
.control-mockup strong {
  color: #f8fafc;
}

.mockup-rows em {
  color: #93c5fd;
  font-style: normal;
}

.platform-band,
.marketing-section,
.unified-showcase,
.overlay-section,
.split-section,
.final-cta {
  width: min(1220px, 100%);
  margin: 16px auto 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.82), rgba(8, 13, 19, 0.76)),
    rgba(12, 18, 27, 0.76);
  padding: 24px;
}

.platform-band {
  display: grid;
  gap: 14px;
  text-align: center;
}

.platform-band p {
  margin: 0;
  color: var(--muted);
}

.platform-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-badges span {
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-badges span:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.42);
  box-shadow: 0 18px 44px rgba(74, 222, 128, 0.1);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.tts-flow-visual {
  position: relative;
  min-height: 430px;
  margin: 8px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 12%, rgba(88, 28, 135, 0.34), transparent 32%),
    radial-gradient(circle at 86% 76%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.96), rgba(7, 10, 15, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 28px 80px rgba(0, 0, 0, 0.34);
}

.flow-grid-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.flow-terminal {
  position: absolute;
  z-index: 5;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #e7e5df;
  color: #111;
  padding: 10px 14px;
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.flow-terminal-top {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-node {
  position: absolute;
  z-index: 4;
  width: 230px;
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(20, 25, 32, 0.92), rgba(8, 12, 18, 0.92)),
    rgba(10, 14, 20, 0.92);
  padding: 15px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.flow-node span,
.flow-status-card span {
  color: #9ca3af;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
}

.flow-node strong,
.flow-status-card strong {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 500;
}

.flow-node p {
  margin: 0;
  color: #aeb8c5;
  line-height: 1.45;
}

.live-node {
  left: 42px;
  top: 156px;
}

.pc-node {
  left: 34%;
  top: 118px;
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow: 0 22px 56px rgba(88, 28, 135, 0.24);
}

.provider-node {
  right: 26%;
  top: 220px;
  border-color: rgba(96, 165, 250, 0.34);
}

.output-node {
  right: 42px;
  top: 126px;
  border-color: rgba(74, 222, 128, 0.34);
}

.flow-path {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.flow-segment {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.85), rgba(74, 222, 128, 0.82), transparent);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.36);
}

.segment-one {
  left: 255px;
  top: 217px;
  width: 185px;
  transform: rotate(-16deg);
}

.segment-two {
  left: 520px;
  top: 216px;
  width: 210px;
  transform: rotate(23deg);
}

.segment-three {
  right: 244px;
  top: 264px;
  width: 214px;
  transform: rotate(-30deg);
}

.flow-packet {
  position: absolute;
  z-index: 6;
  min-width: 54px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.42);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.94);
  color: #ddd6fe;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.32);
}

.packet-one {
  offset-path: path("M 146 220 L 425 145");
  animation: movePacket 4.8s linear infinite;
}

.packet-two {
  offset-path: path("M 425 145 L 720 290");
  animation: movePacket 4.8s linear infinite;
  animation-delay: -1.6s;
}

.packet-three {
  offset-path: path("M 720 290 L 1040 156");
  animation: movePacket 4.8s linear infinite;
  animation-delay: -3.2s;
}

.flow-status-card {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  width: min(430px, calc(100% - 80px));
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(4, 7, 12, 0.78);
  padding: 13px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.flow-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.flow-bars i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.flow-bars i::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #60a5fa, #4ade80);
  animation: flowBar 2.2s ease-in-out infinite;
}

.flow-bars i:nth-child(2)::before {
  animation-delay: -0.7s;
}

.flow-bars i:nth-child(3)::before {
  animation-delay: -1.4s;
}

.step-grid,
.feature-grid,
.pricing-preview-grid,
.faq-grid {
  display: grid;
  gap: 10px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.pricing-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-preview-link {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.step-grid article,
.feature-grid article,
.pricing-preview-grid article,
.faq-grid article {
  min-width: 0;
  display: grid;
  gap: 9px;
  align-content: start;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(8, 13, 19, 0.58);
  padding: 17px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.step-grid article:hover,
.feature-grid article:hover,
.pricing-preview-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(12, 20, 31, 0.8);
}

.step-grid article span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.95), rgba(96, 165, 250, 0.95));
  color: #03110a;
  font-weight: 700;
}

.step-grid article strong,
.feature-grid article strong,
.pricing-preview-grid article strong,
.faq-grid article strong {
  color: #f8fafc;
  font-size: 1.02rem;
  font-weight: 500;
}

.feature-icon {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.08);
  color: #bfdbfe;
  padding: 3px 8px;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
}

.step-grid article p,
.feature-grid article p,
.pricing-preview-grid article p,
.faq-grid article p,
.split-copy p,
.final-cta p {
  margin: 0;
  color: #aeb8c5;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: 24px;
}

.split-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.unified-showcase {
  overflow: hidden;
}

.queue-showcase-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1.2fr) minmax(240px, 1fr);
  align-items: center;
  gap: 18px;
}

.mini-platform-list {
  display: grid;
  gap: 8px;
}

.mini-platform-list span,
.queue-output-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 7px;
  background: rgba(3, 7, 12, 0.48);
}

.mini-platform-list span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: #dbeafe;
  font-weight: 500;
}

.queue-lane {
  position: relative;
  min-height: 210px;
}

.queue-lane-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.15), rgba(74, 222, 128, 0.8), rgba(96, 165, 250, 0.15));
}

.queue-event {
  position: absolute;
  min-width: 104px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 999px;
  background: rgba(12, 31, 26, 0.88);
  color: #bbf7d0;
  padding: 8px 10px;
  text-align: center;
  font-weight: 500;
  animation: eventPulse 3.8s ease-in-out infinite;
}

.event-one {
  left: 0;
  top: 42%;
}

.event-two {
  left: 34%;
  top: 18%;
  animation-delay: -1.2s;
}

.event-three {
  right: 0;
  top: 58%;
  animation-delay: -2.4s;
}

.queue-output-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.queue-output-card span {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.queue-output-card strong {
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 500;
}

.queue-output-card p {
  margin: 0;
  color: #aeb8c5;
  line-height: 1.55;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.split-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.split-copy .ghost-button {
  width: fit-content;
}

.control-mockup {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.voice-mockup {
  min-height: 260px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.voice-ring {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.38);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.22), rgba(96, 165, 250, 0.09) 58%, rgba(8, 13, 19, 0.5));
  color: #f8fafc;
  font-size: 2.6rem;
  font-weight: 500;
}

.voice-list {
  display: grid;
  gap: 9px;
}

.voice-list span {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 5px;
  background: rgba(3, 7, 12, 0.44);
  padding: 8px 10px;
  color: #dbeafe;
  font-weight: 500;
}

.overlay-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  align-items: center;
}

.stream-frame {
  min-height: 330px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 10, 15, 0.08), rgba(5, 10, 15, 0.72)),
    linear-gradient(135deg, rgba(96, 165, 250, 0.16), rgba(74, 222, 128, 0.08)),
    #080d13;
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 26px 70px rgba(0, 0, 0, 0.32);
}

.avatar-demo-stage {
  position: relative;
  width: min(360px, 72%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
}

.avatar-green-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    #00ff00;
  background-size: 28px 28px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3), 0 0 42px rgba(74, 222, 128, 0.12);
}

.avatar-pepe {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
  transform-origin: 50% 78%;
}

.avatar-pepe-closed {
  animation: pepeClosedPreview 1.36s steps(1, end) infinite;
}

.avatar-pepe-open {
  opacity: 0;
  animation: pepeOpenPreview 1.36s steps(1, end) infinite;
}

.avatar-audio-chip {
  position: absolute;
  right: -16px;
  bottom: 34px;
  min-width: 88px;
  min-height: 38px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(3, 7, 12, 0.84);
  padding: 9px 12px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.avatar-audio-chip span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4ade80, #60a5fa);
  animation: avatarAudioPulse 0.68s ease-in-out infinite;
}

.avatar-audio-chip span:nth-child(2) {
  animation-delay: -0.18s;
}

.avatar-audio-chip span:nth-child(3) {
  animation-delay: -0.34s;
}

.stream-header {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.34);
  padding: 7px 10px;
}

.stream-header span {
  color: #fecaca;
  font-weight: 700;
}

.stream-header strong {
  color: #f8fafc;
}

.subtitle-bar {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 7px;
  background: rgba(3, 7, 12, 0.78);
  color: #f8fafc;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 500;
  animation: subtitleGlow 3.2s ease-in-out infinite;
}

.overlay-copy {
  display: grid;
  gap: 10px;
}

.overlay-copy strong {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 500;
}

.overlay-copy p {
  margin: 0;
  color: #aeb8c5;
  line-height: 1.55;
}

.pricing-preview-grid article {
  min-height: 172px;
}

.pricing-preview-grid strong {
  font-size: 1.65rem !important;
}

.pricing-preview-grid .featured-price {
  border-color: rgba(74, 222, 128, 0.48);
  background: rgba(12, 31, 26, 0.72);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.07);
  padding: 12px;
}

.pricing-note span {
  color: #c7d2de;
  line-height: 1.45;
  text-align: center;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 36px 24px;
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(96, 165, 250, 0.1)),
    rgba(12, 18, 27, 0.82);
}

.final-cta p {
  max-width: 620px;
}

.marketing-footer {
  padding-bottom: 20px;
}

.marketing-site .primary-button,
.marketing-site .ghost-button,
.marketing-site .rail-page-button,
.marketing-site .plan-card {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.marketing-site .primary-button:hover,
.marketing-site .ghost-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .marketing-site .app-frame {
    padding-left: 0;
  }

  .marketing-site .rail {
    display: none;
  }

  .marketing-logo {
    display: block;
  }

  .marketing-workspace {
    padding: 12px;
  }

  .marketing-hero,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .platform-orbit {
    display: none;
  }

  .queue-mockup {
    transform: none;
  }
}

@media (max-width: 820px) {
  body {
    min-width: 0;
  }

  .site-console .app-frame {
    padding-left: 0;
  }

  .site-console .rail {
    position: static;
    width: auto;
    height: auto;
    display: block;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-console .website-nav {
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 4px;
    padding-top: 8px;
  }

  .site-console .rail-page-button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .marketing-site .rail {
    display: none;
  }

  .site-console .workspace {
    padding: 10px;
  }

  .site-status-strip,
  .compact-plan-grid,
  .home-choice-grid,
  .software-purchase-card {
    grid-template-columns: 1fr;
  }

  .marketing-topbar {
    position: static;
    align-items: start;
    flex-wrap: wrap;
  }

  .marketing-inline-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .marketing-topbar .command-actions {
    margin-left: auto;
  }

  .marketing-hero {
    min-height: auto;
    padding: 38px 0 28px;
  }

  .hero-copy h1 {
    font-size: 3.15rem;
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .mockup-flow,
  .voice-mockup,
  .queue-showcase-grid,
  .overlay-preview {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    display: none;
  }

  .step-grid,
  .feature-grid,
  .pricing-preview-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-hero,
  .faq-page-grid,
  .faq-support-card {
    grid-template-columns: 1fr;
  }

  .faq-support-card {
    display: grid;
  }

  .faq-category-card {
    position: static;
  }

  .platform-band,
  .marketing-section,
  .unified-showcase,
  .overlay-section,
  .split-section,
  .final-cta {
    padding: 18px;
  }

  .floating-chat {
    display: none;
  }

  .queue-lane {
    min-height: 150px;
  }

  .pricing-note {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    width: 100%;
  }

  .primary-button.hero-primary,
  .ghost-button.hero-secondary,
  .hero-actions .link-button {
    width: 100%;
    max-width: none;
  }

  .platform-badges {
    justify-content: stretch;
  }

  .platform-badges span {
    flex: 1 1 150px;
    text-align: center;
  }

  .mockup-topline,
  .mockup-rows div,
  .control-mockup div {
    align-items: start;
    flex-direction: column;
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes mockupSweep {
  0%,
  56% {
    transform: translateX(-35%) rotate(8deg);
  }

  100% {
    transform: translateX(55%) rotate(8deg);
  }
}

@keyframes queueMeter {
  0%,
  100% {
    width: 38%;
  }

  50% {
    width: 82%;
  }
}

@keyframes chatFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.74;
  }

  50% {
    transform: translateY(-9px);
    opacity: 1;
  }
}

@keyframes eventPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(74, 222, 128, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(74, 222, 128, 0.16);
  }
}

@keyframes movePacket {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.92);
  }

  10%,
  84% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes flowBar {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(230%);
  }
}

@keyframes subtitleGlow {
  0%,
  100% {
    border-color: rgba(148, 163, 184, 0.2);
  }

  50% {
    border-color: rgba(96, 165, 250, 0.44);
  }
}

@keyframes pepeClosedPreview {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  43%,
  72% {
    opacity: 0;
    transform: scale(1.012);
  }
}

@keyframes pepeOpenPreview {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  43%,
  72% {
    opacity: 1;
    transform: scale(1.018);
  }
}

@keyframes avatarAudioPulse {
  0%,
  100% {
    height: 10px;
    opacity: 0.72;
  }

  50% {
    height: 22px;
    opacity: 1;
  }
}
