:root {
  color-scheme: dark;
  --bg: #0d1117;
  --panel: #161b22;
  --text: #e6edf3;
  --muted: #9aa4b2;
  --primary: #2f81f7;
  --border: #30363d;
  --success: #3fb950;
  --danger: #f85149;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #1f2a44 0, var(--bg) 40%);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  background: rgba(13, 17, 23, 0.85);
  z-index: 200;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  padding: 72px 0 26px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #87b6ff;
  border: 1px solid rgba(78, 146, 255, 0.4);
  background: rgba(47, 129, 247, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #bdd6ff 55%, #87b6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 2px;
}

.hero-proof span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: #c5d5ec;
  background: rgba(13, 22, 37, 0.7);
}

.prompt-cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 640px;
  border: 1px solid rgba(47, 129, 247, 0.45);
  border-radius: 14px;
  padding: 14px;
  background: rgba(15, 23, 36, 0.75);
  box-shadow: 0 10px 30px rgba(20, 44, 82, 0.35);
}

.prompt-cta__label {
  color: #d8e7ff;
  font-weight: 600;
  font-size: 14px;
}

.prompt-cta__hint {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 12px;
}

#landing-prompt-input {
  border-color: rgba(108, 162, 255, 0.55);
  background: rgba(8, 14, 24, 0.95);
  min-height: 110px;
}

#landing-prompt-input:focus {
  outline: none;
  border-color: #5f9eff;
  box-shadow: 0 0 0 3px rgba(47, 129, 247, 0.2);
}

.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-stat {
  border: 1px solid var(--border);
  background: rgba(11, 20, 34, 0.75);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 3px;
}

.hero-stat strong {
  font-size: 16px;
}

.hero-stat span {
  color: var(--muted);
  font-size: 12px;
}

.landing-demo__video-wrap {
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

.landing-demo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-demo__actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.landing-demo {
  position: relative;
  overflow: hidden;
}

.landing-demo::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(100, 162, 255, 0.28), transparent 70%);
}

.landing-demo__badge {
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
  background: rgba(63, 185, 80, 0.15);
  border: 1px solid rgba(63, 185, 80, 0.4);
  color: #8bdd9a;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.section--tight {
  padding-top: 10px;
  padding-bottom: 10px;
}

.social-strip {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(14, 22, 36, 0.85);
  padding: 12px 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
}

.social-strip strong {
  color: #d5e3f7;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.key-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.key-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
}

.key-feature-card__content {
  display: grid;
  gap: 8px;
}

.key-feature-card h3 {
  margin: 0;
}

.key-feature-card p {
  margin: 0;
  color: var(--muted);
}

.key-feature-card__video-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 16 / 9;
}

.key-feature-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.key-feature-card--right-video .key-feature-card__video-wrap {
  order: 2;
}

.key-feature-card--right-video .key-feature-card__content {
  order: 1;
}

.generated-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.generated-example-card {
  display: grid;
  gap: 10px;
}

.generated-example-card h3 {
  margin: 0;
}

.generated-example-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.generated-example-card__video-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

.generated-example-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card {
  display: grid;
  gap: 8px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 28px;
}

.pricing-card__name {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__price {
  margin: 0;
  color: var(--muted);
}

.pricing-card__cost {
  margin: -4px 0 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #dceaff;
}

.pricing-card__badge {
  margin: 0;
  display: inline-block;
  width: fit-content;
  background: rgba(47, 129, 247, 0.16);
  color: #7eb6ff;
  border: 1px solid rgba(47, 129, 247, 0.45);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
}

.pricing-card--featured {
  border-color: rgba(47, 129, 247, 0.8);
  box-shadow: 0 12px 35px rgba(18, 62, 128, 0.35);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-banner h2 {
  margin-bottom: 6px;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 14px;
}

p {
  line-height: 1.5;
}

.section {
  padding: 44px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.auth-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.card--dark {
  background: linear-gradient(160deg, #1b2440, #121826 70%);
}

.card--full-width {
  grid-column: 1 / -1;
}

.list {
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

.form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

input,
textarea,
select {
  width: 100%;
  background: #0f141b;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

input[type="file"] {
  padding: 8px;
}

.source-image-preview {
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: #0e1522;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.source-image-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #090f18;
}

.btn {
  background: #222a33;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn.is-loading {
  opacity: 0.9;
  pointer-events: none;
}

.btn__loader {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 8px;
  animation: spin 0.9s linear infinite;
}

.btn--primary {
  background: var(--primary);
  border-color: transparent;
  text-decoration: none;
  display: inline-block;
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__panel {
  position: relative;
  width: min(560px, 92%);
  max-height: min(86vh, 860px);
  overflow: auto;
  z-index: 1;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.modal__header h2 {
  margin: 0;
}

.modal-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-tab.is-active {
  background: var(--primary);
  border-color: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.balance-badge {
  border: 1px solid var(--border);
  background: #0f141b;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 13px;
}

.token-packages {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.token-package-btn {
  text-align: left;
  background: #10151d;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.token-package-btn:hover {
  border-color: var(--primary);
}

.token-package-btn strong {
  font-size: 16px;
}

.token-package-btn span {
  color: var(--muted);
  font-size: 13px;
}

.format-visualizer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.format-card {
  -webkit-appearance: none;
  appearance: none;
  background: #10151d;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 10px;
  display: grid;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.format-card.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(47, 129, 247, 0.35);
}

.format-card strong {
  font-size: 14px;
}

.format-card span {
  color: var(--muted);
  font-size: 12px;
}

.format-frame {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  max-width: 100%;
}

.format-frame--landscape {
  width: auto;
  aspect-ratio: 16 / 9;
  margin-left: 10px;
  margin-right: 10px;
  justify-self: stretch;
}

.format-frame--portrait {
  width: 52%;
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.format-frame--square {
  width: 72%;
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.onboarding-modal {
  width: min(900px, 94%);
}

.onboarding-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.onboarding-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(140deg, #1a2233, #111827 70%);
}

.onboarding-preview {
  border-radius: 10px;
  height: 130px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.onboarding-preview--1 {
  background: radial-gradient(circle at 20% 20%, #ff8a65 0, #5e35b1 55%, #1a237e 100%);
}

.onboarding-preview--2 {
  background: radial-gradient(circle at 70% 30%, #7dd3fc 0, #2563eb 48%, #0f172a 100%);
}

.onboarding-preview--3 {
  background: radial-gradient(circle at 50% 70%, #34d399 0, #0ea5e9 50%, #111827 100%);
}

.onboarding-preview--4 {
  background: radial-gradient(circle at 30% 25%, #f59e0b 0, #ef4444 52%, #1f2937 100%);
}

.onboarding-card h3 {
  margin-bottom: 6px;
}

.onboarding-card p {
  color: var(--muted);
  margin: 0 0 10px;
}

.onboarding-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.request-list {
  margin-top: 14px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.request-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: #10151d;
}

.feed-post {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #0f1520, #0c111a);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.feed-post__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.feed-post__author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.feed-post__author p {
  margin: 2px 0 0;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.feed-post__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #1f2937;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
}

.feed-post__media {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  background: #060a12;
}

.feed-post__media--landscape {
  aspect-ratio: 16 / 9;
}

.feed-post__media--portrait {
  aspect-ratio: 9 / 16;
  width: min(380px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.feed-post__media--square {
  aspect-ratio: 1 / 1;
  width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.feed-post__empty {
  margin-top: 10px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.feed-post__source {
  margin-top: 10px;
}

.feed-post__source p {
  margin: 0 0 6px;
}

.source-image-thumb {
  width: min(360px, 100%);
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #090f18;
  display: block;
}

.feed-post__caption {
  margin: 10px 0 6px;
}

.feed-post__meta,
.feed-post__provider {
  margin: 0 0 6px;
  font-size: 13px;
}

.feed-post__error {
  margin: 0 0 8px;
  color: var(--danger);
}

.request-video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #070b12;
  margin-top: 0;
  height: 100%;
  object-fit: cover;
}

.request-video--framed {
  margin-top: 0;
  height: 100%;
  object-fit: cover;
}

.example-preview-frame {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #070b12;
  overflow: hidden;
  margin-top: 8px;
}

.example-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  align-items: stretch;
}

.example-guide__card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(11, 18, 33, 0.95) 0%, rgba(7, 11, 18, 0.95) 100%);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.example-guide__card h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.example-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.example-steps li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  min-width: 0;
}

.example-steps li span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #08101d;
  background: linear-gradient(135deg, #f2cc60 0%, #ffd87f 100%);
  flex: 0 0 auto;
}

.example-steps li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.status-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.status-legend li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.status-legend li > span:last-child {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.example-preview-frame--landscape {
  aspect-ratio: 16 / 9;
}

.example-preview-frame--portrait {
  aspect-ratio: 9 / 16;
  width: min(380px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.example-preview-frame--square {
  aspect-ratio: 1 / 1;
}

.request-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.status {
  font-size: 12px;
  border-radius: 999px;
  padding: 2px 9px;
  display: inline-block;
}

.status--pending,
.status--processing {
  background: #3c3316;
  color: #f2cc60;
}

.status__with-loader {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status__loader {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(242, 204, 96, 0.35);
  border-top-color: #f2cc60;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.status--completed {
  background: #10301a;
  color: var(--success);
}

.status--failed {
  background: #3b1313;
  color: var(--danger);
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.footer__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

@media (max-width: 860px) {
  .header {
    position: static;
  }

  .header__inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 10px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero__inner,
  .grid,
  .auth-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section {
    padding: 30px 0;
  }

  .card {
    padding: 14px;
    border-radius: 12px;
  }

  .prompt-cta {
    padding: 12px;
  }

  #landing-prompt-input {
    min-height: 96px;
  }

  .hero-cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .balance-badge {
    font-size: 12px;
  }

  .form {
    gap: 10px;
  }

  .form textarea,
  .form input,
  .form select,
  .form button,
  .btn {
    font-size: 16px;
  }

  .onboarding-examples {
    grid-template-columns: 1fr;
  }

  .format-visualizer {
    grid-template-columns: 1fr;
  }

  .format-card {
    padding: 9px;
  }

  .example-preview-frame--portrait,
  .feed-post__media--portrait {
    width: min(320px, 100%);
  }

  .feed-post__media--square {
    width: min(360px, 100%);
  }

  .request-actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .example-guide {
    grid-template-columns: 1fr;
  }

  .modal__panel {
    width: min(640px, 96%);
    max-height: 90vh;
  }

  .onboarding-modal {
    width: min(920px, 96%);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .key-features-grid {
    grid-template-columns: 1fr;
  }

  .key-feature-card {
    grid-template-columns: 1fr;
  }

  .key-feature-card--right-video .key-feature-card__video-wrap,
  .key-feature-card--right-video .key-feature-card__content {
    order: initial;
  }

  .generated-examples-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .format-visualizer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1100px, 94%);
  }

  .logo {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 12px;
    padding: 5px 8px;
  }

  .hero-stat strong {
    font-size: 15px;
  }

  .hero-stat span {
    font-size: 11px;
  }

  .pricing-card h3 {
    font-size: 24px;
  }

  .pricing-card__cost {
    font-size: 26px;
  }

  .feed-post {
    padding: 10px;
  }

  .feed-post__author {
    gap: 8px;
  }

  .feed-post__avatar {
    width: 30px;
    height: 30px;
  }

  .status {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav a {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    background: rgba(15, 22, 34, 0.7);
  }

  .prompt-cta__hint {
    font-size: 11px;
  }

  .request-actions {
    gap: 6px;
  }
}
