html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.16), transparent 22%),
    linear-gradient(180deg, #08111d 0%, #050c15 100%);
  color: #ecf4ff;
}

a {
  color: #8ddcff;
}

.app-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 22, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell,
.nav-account,
.nav-user-chip,
.nav-account-meta,
.hero-actions,
.account-header {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
  gap: 16px;
}

.nav-account {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-user-chip {
  gap: 12px;
}

.nav-account-meta {
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-account-name {
  font-weight: 700;
}

.nav-account-role {
  color: #7dd3fc;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-button {
  --button-surface: linear-gradient(135deg, #dbe7f6 0%, #a9bfd9 100%);
  --button-ink: #07111e;
  --button-border: #0b1220;
  --button-shadow: rgba(4, 9, 18, 0.95);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.62rem 1.05rem;
  border: 2px solid var(--button-border);
  border-radius: 0.82rem;
  background: var(--button-surface);
  color: var(--button-ink);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    4px 4px 0 0 var(--button-shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease, background 150ms ease;
}

.nav-button::after,
.submit-button::after {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border-radius: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  pointer-events: none;
}

.nav-button:hover,
.nav-button:focus,
.submit-button:hover,
.submit-button:focus {
  transform: translate(3px, 3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.44) inset,
    2px 2px 0 0 var(--button-shadow);
  filter: brightness(1.03);
}

.nav-button:active,
.submit-button:active {
  transform: translate(5px, 5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.44) inset,
    0 0 0 0 var(--button-shadow);
}

.nav-button-discover {
  --button-surface: linear-gradient(135deg, #ffe08a 0%, #f59e0b 100%);
  --button-ink: #281400;
  --button-border: #5b3404;
  --button-shadow: rgba(92, 44, 5, 0.95);
}

.nav-button-dashboard {
  --button-surface: linear-gradient(135deg, #fdba74 0%, #f97316 55%, #ea580c 100%);
  --button-ink: #fff7ed;
  --button-border: #5f1e0b;
  --button-shadow: rgba(72, 20, 6, 0.95);
}

.nav-button-featured {
  --button-surface: linear-gradient(135deg, #dcfce7 0%, #4ade80 48%, #16a34a 100%);
  --button-ink: #052e16;
  --button-border: #14532d;
  --button-shadow: rgba(7, 45, 19, 0.95);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.nav-button-silver {
  --button-surface: linear-gradient(135deg, #ffffff 0%, #dce7f4 100%);
  --button-ink: #020617;
  --button-border: #1e293b;
  --button-shadow: rgba(15, 23, 42, 0.95);
}

.nav-button-logout {
  --button-surface: linear-gradient(135deg, #fda4af 0%, #ef4444 58%, #b91c1c 100%);
  --button-ink: #fff5f5;
  --button-border: #4c0519;
  --button-shadow: rgba(76, 5, 25, 0.95);
}

.nav-logout-form {
  margin: 0;
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.app-brand-text {
  line-height: 1;
}

.hero-card,
.panel-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 15, 28, 0.95));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
  padding: 28px;
}

.hero-card h1,
.panel-card h2,
.panel-card h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
}

.hero-card h1,
.panel-card h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.hero-copy,
.api-copy,
.status-card p,
.account-meta {
  margin: 16px 0 0;
  color: #bfd0e6;
  line-height: 1.7;
}

.hero-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
  color: #e2ebf7;
}

.hero-feature-list li {
  line-height: 1.6;
}

.hero-feature-list li::marker {
  color: #7dd3fc;
}

.hero-note,
.status-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd9ea;
}

.hero-actions {
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.eyebrow,
.result-label {
  display: inline-block;
  margin: 0 0 10px;
  color: #7dd3fc;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-card {
  margin-bottom: 20px;
  padding: 24px;
}

.admin-tool-launcher {
  display: grid;
  gap: 20px;
}

.admin-tool-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-tool-button {
  min-width: 160px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ecf4ff;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.admin-tool-button span {
  font-weight: 700;
  line-height: 1.2;
}

.admin-tool-button small {
  color: #9fb3ca;
  font-size: 0.82rem;
  line-height: 1.5;
}

.admin-tool-button:hover,
.admin-tool-button:focus-visible {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(125, 211, 252, 0.08);
  transform: translateY(-1px);
}

.admin-tool-button.is-active {
  border-color: rgba(125, 211, 252, 0.7);
  background:
    linear-gradient(180deg, rgba(20, 44, 72, 0.96), rgba(10, 22, 38, 0.96)),
    rgba(125, 211, 252, 0.08);
  box-shadow: 0 18px 32px rgba(8, 15, 28, 0.22);
}

.admin-tool-workspace {
  min-height: 140px;
  padding-top: 4px;
}

.admin-tool-workspace:not(.is-empty) {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 24px;
}

.admin-tool-workspace-header {
  margin-bottom: 20px;
}

.admin-panel-divider {
  height: 1px;
  margin: 22px 0;
  background: rgba(148, 163, 184, 0.14);
}

.admin-subpanel-header {
  margin-top: 0;
}

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

.deploy-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 92px;
}

.form-label {
  margin-bottom: 0;
  color: #e2ebf7;
  font-weight: 600;
}

.form-control,
.form-select {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
  padding: 16px 18px;
}

.form-select {
  color-scheme: dark;
  background-color: #1b2436;
}

.form-select option,
.form-select optgroup {
  background: #0f1726;
  color: #f8fbff;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(125, 211, 252, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(125, 211, 252, 0.18);
}

.social-textarea {
  min-height: 160px;
  resize: vertical;
}

.email-composer {
  display: grid;
  gap: 14px;
}

.email-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-toolbar .nav-button {
  min-width: 0;
  padding: 0.55rem 0.9rem;
}

.email-composer-textarea {
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.65;
}

.email-format-help code {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.42);
  border-radius: 8px;
  padding: 0.16rem 0.45rem;
}

.email-toggle-card {
  margin-top: 4px;
}

.email-preview-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(15, 23, 42, 0.38);
}

.email-preview-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.email-preview-frame {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(148, 163, 184, 0.2), transparent 42%),
    linear-gradient(180deg, #dfe8f4, #cfdcea);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.email-preview-shell-inner {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.email-preview-header {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.email-preview-badge {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(191, 219, 254, 0.14);
  color: #dbeafe;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.email-preview-header h4 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.7rem;
  line-height: 1.2;
}

.email-preview-body {
  padding: 28px 28px 22px;
  color: #334155;
}

.email-preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 18px 28px 0;
  color: #64748b;
  font-size: 0.9rem;
}

.email-preview-unsubscribe {
  font-weight: 700;
  color: #1d4ed8;
}

.email-preview-unsubscribe.is-muted {
  color: #94a3b8;
}

.email-preview-button-row {
  padding: 18px 28px 28px;
}

.email-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-help {
  margin-top: -6px;
  color: #94a3b8;
  font-size: 0.92rem;
}

.platform-links-help {
  margin-top: 10px;
}

.submit-button {
  --button-surface: linear-gradient(135deg, #fdba74 0%, #f97316 56%, #fb7185 100%);
  --button-ink: #fff7ed;
  --button-border: #4c1d12;
  --button-shadow: rgba(67, 20, 12, 0.95);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 46px;
  padding: 0.62rem 1.05rem;
  border: 2px solid var(--button-border);
  border-radius: 0.82rem;
  background: var(--button-surface);
  color: var(--button-ink);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    4px 4px 0 0 var(--button-shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease, background 150ms ease;
}

#creator-deploy-submit-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 25;
  min-width: 200px;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.34);
}

.submit-button .btn-spinner,
#creator-deploy-submit-button .btn-spinner,
#deploy-submit-button .btn-spinner {
  width: 1rem;
  height: 1rem;
  border-width: 0.16em;
}

.result-card {
  display: grid;
  gap: 18px;
}

.result-header,
.account-header {
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.account-header {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.avatar-shell {
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.22), rgba(251, 113, 133, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.avatar-shell-sm {
  width: 44px;
  height: 44px;
}

.avatar-shell-lg {
  width: 72px;
  height: 72px;
}

.avatar-fallback,
.avatar-image {
  grid-area: 1 / 1;
}

.avatar-fallback {
  color: #f8fbff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.avatar-shell-sm .avatar-fallback {
  font-size: 0.82rem;
}

.avatar-shell-lg .avatar-fallback {
  font-size: 1.2rem;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.avatar-shell[data-avatar-state="loaded"] .avatar-image {
  opacity: 1;
}

.avatar-shell[data-avatar-state="loaded"] .avatar-fallback {
  opacity: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill-accent {
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
}

.status-pill-muted {
  background: rgba(148, 163, 184, 0.16);
  color: #dbe7f5;
}

.status-pill-notice {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.status-pill-beta {
  background: rgba(255, 215, 102, 0.16);
  color: #ffe08a;
  border: 1px solid rgba(255, 215, 102, 0.32);
}

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

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

.result-grid > div,
.path-list > div,
.warning-box,
.history-row {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.result-grid strong,
.path-list code,
.path-list a,
.history-row span {
  color: #f8fbff;
  overflow-wrap: anywhere;
}

.path-list {
  display: grid;
  gap: 12px;
}

.path-list code,
.code-block code {
  font-size: 0.95rem;
  white-space: pre-wrap;
}

.warning-box {
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: #fde68a;
}

.warning-title {
  margin: 0 0 10px;
  font-weight: 700;
}

.warning-box ul {
  margin: 0;
  padding-left: 18px;
}

.code-block {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: #020817;
  color: #bfdbfe;
}

.history-table {
  display: grid;
  gap: 10px;
}

.history-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr 0.8fr;
  gap: 12px;
  align-items: center;
}

.history-head {
  background: transparent;
  color: #94a3b8;
  padding: 0 6px;
}

.history-status {
  font-weight: 700;
  text-transform: capitalize;
}

.status-succeeded {
  color: #86efac;
}

.status-failed {
  color: #fda4af;
}

.status-pending {
  color: #fcd34d;
}

.narrow-card {
  max-width: 760px;
}

.validation-summary-errors ul {
  margin-bottom: 0;
}

.footer {
  padding: 0 0 28px;
}

.footer .container {
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-links {
  display: flex;
  gap: 10px 16px;
  flex-wrap: wrap;
}

.footer-copy {
  max-width: 880px;
}

.footer a,
.legal-copy a,
.legal-document a {
  color: #d7ecff;
  text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, 0.4);
  text-underline-offset: 0.18em;
}

.legal-copy {
  margin: 0 0 20px;
  color: #9fb4cc;
  line-height: 1.7;
}

.legal-document {
  display: grid;
  gap: 16px;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-list p,
.legal-document li {
  margin: 0;
  color: #bfd0e6;
  line-height: 1.8;
}

.legal-emphasis {
  font-weight: 700;
  color: #e7f1ff;
}

.landing-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
}

.landing-hero-affiliate {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: #bfd0e6;
  font-size: 0.95rem;
  line-height: 1.7;
}

.landing-hero-affiliate p {
  margin: 0;
}

.landing-price-card,
.marketing-card,
.step-card,
.dashboard-gallery-card,
.toggle-card,
.empty-state-panel {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.landing-price-card {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.screenshot-showcase {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(249, 115, 22, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(13, 21, 37, 0.96), rgba(7, 14, 27, 0.98));
}

.screenshot-showcase-header {
  align-items: end;
}

.screenshot-showcase-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.screenshot-showcase-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e7f1ff;
  font-size: 0.82rem;
  font-weight: 600;
}

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

.showcase-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.showcase-card-feature {
  grid-row: span 2;
}

.showcase-card-stack {
  grid-column: 1 / -1;
}

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

.showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.18;
}

.showcase-copy p {
  margin: 0;
  color: #bfd0e6;
  line-height: 1.7;
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(116, 175, 255, 0.16);
  background: linear-gradient(180deg, rgba(9, 17, 31, 0.98), rgba(5, 11, 21, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(1, 6, 15, 0.32);
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, transparent 72%, rgba(2, 6, 23, 0.22));
}

.showcase-frame-wide {
  aspect-ratio: 16 / 10;
}

.showcase-frame-tall {
  aspect-ratio: 16 / 11;
}

.showcase-frame-medium {
  aspect-ratio: 16 / 7;
}

.showcase-frame-mini {
  aspect-ratio: 16 / 7;
}

.showcase-frame-gallery {
  aspect-ratio: 16 / 8;
}

.showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image-top {
  object-position: top center;
}

.showcase-mini-grid,
.dashboard-gallery-grid {
  display: grid;
  gap: 16px;
}

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

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

.early-adopter-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 420px);
  gap: 24px;
  margin-bottom: 20px;
  border-color: rgba(249, 115, 22, 0.26);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.04));
}

.early-adopter-copy,
.early-adopter-sidebar,
.early-adopter-price-grid {
  display: grid;
  gap: 16px;
}

.early-adopter-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.early-adopter-sidebar {
  align-content: start;
}

.early-adopter-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.early-adopter-price-tile {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 18, 31, 0.62);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.early-adopter-price-tile strong {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.price-amount {
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.9;
}

.price-copy,
.dashboard-note,
.toggle-card-copy span,
.step-card p {
  color: #bfd0e6;
  line-height: 1.7;
}

.price-list,
.marketing-grid,
.steps-grid,
.toggle-grid {
  display: grid;
  gap: 16px;
}

.price-list span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
}

.marketing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.screenshot-showcase-carousel-shell {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.screenshot-showcase-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

.screenshot-showcase-carousel-title {
  display: grid;
  gap: 6px;
}

.landing-carousel-note {
  margin: 0;
  color: #9fb4cc;
  line-height: 1.6;
}

.screenshot-showcase-carousel-chrome {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.screenshot-showcase-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 16px;
}

.screenshot-showcase-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.screenshot-showcase-dots span.is-active {
  transform: scale(1.35);
  background: #8ddcff;
}

.screenshot-showcase-arrows {
  display: inline-flex;
  gap: 10px;
}

.landing-carousel-arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.landing-carousel-arrow:hover,
.landing-carousel-arrow:focus {
  border-color: rgba(125, 211, 252, 0.7);
  background: rgba(125, 211, 252, 0.12);
  transform: translateY(-1px);
}

.landing-carousel-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.screenshot-showcase-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
}

.screenshot-showcase-carousel::-webkit-scrollbar {
  display: none;
}

.landing-carousel-track {
  display: flex;
  gap: 16px;
}

.landing-carousel-track > .landing-carousel-slide {
  display: grid;
  flex: 0 0 100%;
  min-width: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  gap: 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-carousel-track > .landing-carousel-slide.marketing-grid {
  gap: 16px;
  margin-bottom: 0;
}

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

.landing-preview-card {
  min-width: 0;
}

.landing-preview-card .panel-preview {
  height: 100%;
}

.marketing-card h2,
.steps-card h2,
.toggle-heading {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0;
}

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

.step-card {
  display: grid;
  gap: 12px;
}

.step-card h3,
.toggle-card-copy strong {
  margin: 0;
  font-size: 1.05rem;
}

.step-number {
  color: #7dd3fc;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.staff-note-card {
  margin-bottom: 20px;
}

.signed-in-banner .hero-actions {
  margin-top: 18px;
}

.dashboard-floating-nav {
  position: fixed;
  top: 84px;
  left: 24px;
  z-index: 1040;
}

.dashboard-floating-nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.dashboard-floating-nav-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.3s;
}

.dashboard-floating-nav-bar {
  width: 100%;
  height: 4px;
  background-color: rgb(253, 255, 243);
  border-radius: 5px;
  transition-duration: 0.3s;
  box-shadow: 0 2px 8px rgba(2, 8, 23, 0.42);
}

.dashboard-floating-nav-checkbox:checked + .dashboard-floating-nav-toggle #dashboard-floating-nav-bar-2 {
  transform: translateY(14px) rotate(60deg);
  margin-left: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  z-index: 2;
}

.dashboard-floating-nav-checkbox:checked + .dashboard-floating-nav-toggle #dashboard-floating-nav-bar-1 {
  transform: translateY(28px) rotate(-60deg);
  transition-duration: 0.3s;
  transform-origin: left;
  z-index: 1;
}

.dashboard-floating-nav-checkbox:checked + .dashboard-floating-nav-toggle {
  transform: rotate(-90deg);
}

.dashboard-floating-nav-checkbox:focus-visible + .dashboard-floating-nav-toggle {
  outline: 3px solid rgba(125, 211, 252, 0.72);
  outline-offset: 6px;
}

.dashboard-floating-nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  background: rgba(8, 15, 28, 0.96);
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.46);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.dashboard-floating-nav-checkbox:checked ~ .dashboard-floating-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dashboard-floating-nav-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: #edf7ff;
  font-weight: 700;
  text-decoration: none;
}

.dashboard-floating-nav-menu a:hover,
.dashboard-floating-nav-menu a:focus {
  background: rgba(125, 211, 252, 0.14);
  color: #ffffff;
}

#dashboard-top,
#dashboard-wallpaper,
#dashboard-accounts,
#dashboard-discovery,
#dashboard-connect,
#dashboard-publish,
#dashboard-analytics,
#dashboard-history {
  scroll-margin-top: 112px;
}

.dashboard-site-notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.22), rgba(15, 23, 42, 0.92)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.28);
}

.dashboard-site-notification-warning {
  border-color: rgba(251, 191, 36, 0.26);
  background:
    linear-gradient(135deg, rgba(180, 83, 9, 0.22), rgba(15, 23, 42, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.dashboard-site-notification-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.dashboard-site-notification-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.16);
  color: #d9f4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-site-notification-warning .dashboard-site-notification-badge {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.dashboard-site-notification-message {
  margin: 0;
  color: #e8f4ff;
  line-height: 1.55;
}

.dashboard-site-notification-dismiss {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
  font-weight: 600;
}

.dashboard-site-notification-dismiss:hover,
.dashboard-site-notification-dismiss:focus {
  border-color: rgba(125, 211, 252, 0.46);
  background: rgba(125, 211, 252, 0.12);
}

.dashboard-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.checkout-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
}

.dashboard-profile-card {
  align-self: stretch;
}

.wallpaper-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wallpaper-preview-shell {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(11, 21, 35, 0.98), rgba(8, 16, 28, 0.98));
}

.wallpaper-preview-shell.is-empty {
  display: grid;
  place-items: center;
  text-align: center;
}

.wallpaper-preview-image {
  width: 100%;
  min-height: 220px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wallpaper-preview-empty {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: #c8d6e8;
}

.wallpaper-copy {
  display: grid;
  gap: 12px;
}

.wallpaper-upload-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkout-plan-card,
.checkout-feature-list,
.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-plan-card strong {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 1;
}

.checkout-feature-list span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
}

.checkout-form {
  margin-top: 18px;
}

.checkout-hint {
  color: #94a3b8;
  line-height: 1.7;
}

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

.checkout-summary-grid > div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.checkout-status-card {
  border-color: rgba(249, 115, 22, 0.26);
}

.checkout-status-card.is-active {
  border-color: rgba(34, 197, 94, 0.32);
}

.checkout-status-card.is-processing {
  border-color: rgba(251, 191, 36, 0.28);
}

.checkout-status-card.is-error {
  border-color: rgba(244, 63, 94, 0.32);
}

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

.readonly-chip {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #f8fbff;
  font-weight: 600;
}

.toggle-section {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}

.dashboard-detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.detail-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

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

.toggle-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.toggle-card-locked {
  cursor: default;
  border-color: rgba(249, 115, 22, 0.24);
  background: rgba(249, 115, 22, 0.06);
}

.toggle-card-promo {
  grid-column: 1 / -1;
  cursor: default;
  align-items: stretch;
  border-color: rgba(249, 115, 22, 0.3);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.04));
}

.toggle-card input {
  margin-top: 2px;
}

.toggle-card-locked input {
  cursor: not-allowed;
}

.toggle-card-copy {
  display: grid;
  gap: 6px;
}

.toggle-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toggle-promo-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.toggle-promo-button {
  min-width: 220px;
}

.hero-card h1.dashboard-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.panel-preview {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: linear-gradient(180deg, rgba(11, 21, 35, 0.95), rgba(8, 16, 28, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.panel-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel-order-list {
  display: grid;
  gap: 12px;
}

.panel-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 16, 28, 0.58);
  cursor: grab;
  user-select: none;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}

.panel-order-item.is-dragging {
  opacity: 0.72;
  border-color: rgba(125, 211, 252, 0.34);
  background: rgba(12, 24, 40, 0.94);
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.28);
  cursor: grabbing;
}

.panel-order-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #9fb2c8;
  touch-action: none;
}

.panel-order-handle-dots {
  display: grid;
  grid-template-columns: repeat(2, 5px);
  gap: 4px;
}

.panel-order-handle-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.panel-order-handle-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-order-list.is-drag-active .panel-order-item:not(.is-dragging) {
  border-color: rgba(148, 163, 184, 0.24);
}

.panel-order-placeholder {
  border-radius: 18px;
  border: 1px dashed rgba(125, 211, 252, 0.32);
  background: rgba(125, 211, 252, 0.08);
}

.panel-order-copy {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
}

.panel-order-label {
  color: #f8fbff;
  font-weight: 700;
}

.panel-order-description {
  color: #9fb2c8;
  font-size: 0.92rem;
  line-height: 1.55;
}

.panel-style-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 16, 28, 0.58);
}

.panel-style-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.panel-style-header strong {
  display: block;
  color: #f8fbff;
}

.panel-style-header span {
  display: block;
  margin-top: 4px;
  color: #9fb2c8;
  font-size: 0.9rem;
}

.panel-style-reset {
  white-space: nowrap;
}

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

.panel-style-field {
  display: grid;
  gap: 8px;
  color: #cfe0f5;
  font-size: 0.88rem;
  font-weight: 600;
}

.panel-style-field input[type="color"] {
  width: 100%;
  height: 48px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.preview-kicker,
.preview-mini-label {
  color: #7dd3fc;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-title,
.preview-mini-title,
.preview-stream-name {
  color: #f8fbff;
  font-weight: 700;
  line-height: 1.05;
}

.preview-title {
  font-size: 0.95rem;
}

.preview-mini-title,
.preview-stream-name {
  font-size: 0.74rem;
}

.preview-mini-meta,
.preview-stream-link {
  color: #a9bdd7;
  font-size: 0.67rem;
}

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

.preview-mini-card,
.preview-social-card {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.preview-stream-stage {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 255, 0.28);
  background:
    radial-gradient(circle at 74% 24%, rgba(249, 115, 22, 0.32), transparent 20%),
    radial-gradient(circle at 20% 78%, rgba(59, 130, 246, 0.35), transparent 25%),
    linear-gradient(135deg, #191422 0%, #101826 100%);
}

.preview-stream-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.04) 12% 14%, transparent 14% 100%),
    radial-gradient(circle at 82% 44%, rgba(255, 255, 255, 0.2), transparent 10%);
}

.preview-stream-card {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 52%;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.preview-stream-name {
  color: #0f172a;
}

.preview-stream-link {
  color: #7c3aed;
  font-weight: 700;
}

.preview-clips-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
}

.preview-player-tile {
  position: relative;
  min-height: 116px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35)),
    linear-gradient(135deg, #3b3d46, #182534 60%, #111827);
}

.preview-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid rgba(255, 255, 255, 0.92);
  transform: translate(-38%, -50%);
}

.preview-rail {
  display: grid;
  gap: 8px;
}

.preview-rail-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.preview-thumb {
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #0f172a);
}

.preview-thumb-alt {
  background: linear-gradient(135deg, #f97316, #1e293b);
}

.preview-rail-copy {
  display: grid;
  gap: 3px;
}

.preview-social-card {
  min-height: 78px;
}

.preview-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.28), rgba(255, 255, 255, 0.08));
}

.preview-social-icon-youtube {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(255, 255, 255, 0.08));
}

.history-row-dashboard {
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
}

.connection-row {
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.7fr;
}

.billing-row {
  grid-template-columns: 1fr 1.2fr 1fr 1.2fr 0.9fr;
}

.empty-state-panel {
  color: #bfd0e6;
}

.operation-panel {
  border-color: rgba(148, 163, 184, 0.22);
}

.operation-success {
  border-color: rgba(34, 197, 94, 0.32);
}

.operation-error {
  border-color: rgba(244, 63, 94, 0.32);
}

.operation-working {
  border-color: rgba(249, 115, 22, 0.32);
}

.login-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 360px);
}

.login-panel {
  display: grid;
  gap: 20px;
}

.turnstile-shell,
.provider-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.turnstile-shell {
  display: grid;
  justify-content: center;
}

.turnstile-shell-muted {
  gap: 8px;
  justify-content: start;
  color: #bfd0e6;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.provider-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.provider-card-muted {
  opacity: 0.72;
}

.provider-card-locked {
  border-color: rgba(125, 211, 252, 0.18);
}

.provider-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.provider-copy {
  display: grid;
  gap: 8px;
}

.provider-copy h3 {
  margin: 0;
  font-size: 1.35rem;
}

.provider-copy p {
  margin: 0;
  color: #bfd0e6;
  line-height: 1.65;
}

.provider-button {
  width: 100%;
}

.social-links-editor,
.social-links-header,
.social-links-auto,
.social-link-list {
  display: grid;
  gap: 12px;
}

.creator-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.media-kit-editor .toggle-card {
  margin-top: 4px;
}

.beta-feature-card {
  border-color: rgba(255, 215, 102, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 215, 102, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(255, 189, 89, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 215, 102, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 19, 12, 0.96), rgba(10, 13, 22, 0.96));
}

.beta-feature-grid,
.beta-page-stack {
  display: grid;
  gap: 16px;
}

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

.beta-feature-copy,
.beta-page-card {
  display: grid;
  gap: 10px;
}

.beta-feature-copy {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 102, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.beta-feature-button {
  border-color: rgba(255, 215, 102, 0.55);
  background: linear-gradient(135deg, rgba(255, 244, 204, 0.12), rgba(255, 191, 73, 0.18));
  color: #fff2c2;
  box-shadow: 0 14px 30px rgba(255, 189, 89, 0.12);
}

.beta-feature-button:hover,
.beta-feature-button:focus {
  border-color: rgba(255, 231, 153, 0.78);
  background: linear-gradient(135deg, rgba(255, 248, 222, 0.16), rgba(255, 204, 102, 0.24));
  color: #fff7db;
}

.beta-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  margin-bottom: 20px;
}

.beta-page-actions {
  margin-top: 22px;
}

.social-links-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 8px;
}

.social-links-auto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links-auto-pill {
  text-decoration: none;
}

.social-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.social-link-row-toggle {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.42);
}

.social-link-toggle-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.social-link-toggle-copy strong {
  color: #f8fbff;
}

.social-link-toggle-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link-remove-button,
.social-link-add-button {
  white-space: nowrap;
}

.social-link-empty[hidden] {
  display: none;
}

.admin-search-form,
.admin-inline-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-search-form {
  margin-top: 18px;
}

.admin-search-form .form-control {
  flex: 1 1 auto;
}

.admin-inline-form {
  margin-top: 18px;
  flex-wrap: wrap;
}

.admin-action-row {
  flex-wrap: wrap;
}

.admin-inline-group {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
}

.admin-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  cursor: pointer;
}

.admin-checkbox input {
  margin: 0;
}

input[type="checkbox"]:not(.btn-check) {
  --checkbox-shadow: rgba(7, 12, 22, 0.92);
  --checkbox-fill: linear-gradient(180deg, rgba(12, 20, 36, 0.96), rgba(8, 14, 28, 0.98));
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(226, 232, 240, 0.82);
  border-radius: 0.45rem;
  background: var(--checkbox-fill);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 4px 0 0 var(--checkbox-shadow);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

input[type="checkbox"]:not(.btn-check)::before {
  content: "";
  width: 0.78rem;
  height: 0.78rem;
  background: #07111e;
  clip-path: polygon(14% 44%, 0 61%, 45% 100%, 100% 18%, 82% 0, 41% 58%);
  transform: scale(0);
  transition: transform 140ms ease;
}

input[type="checkbox"]:not(.btn-check):hover,
input[type="checkbox"]:not(.btn-check):focus-visible {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 3px 0 0 var(--checkbox-shadow);
}

input[type="checkbox"]:not(.btn-check):checked {
  border-color: #f8fafc;
  background: linear-gradient(135deg, #f8fbff 0%, #93c5fd 45%, #fda4af 100%);
}

input[type="checkbox"]:not(.btn-check):checked::before {
  transform: scale(1);
}

input[type="checkbox"]:not(.btn-check):active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 1px 0 0 var(--checkbox-shadow);
}

input[type="checkbox"]:not(.btn-check):disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.toggle-card:has(input[type="checkbox"]:checked),
.admin-checkbox:has(input[type="checkbox"]:checked) {
  border-color: rgba(148, 197, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(25, 47, 84, 0.5), rgba(12, 24, 44, 0.72)),
    rgba(255, 255, 255, 0.05);
}

.user-directory-head,
.user-directory-row {
  grid-template-columns: 1.35fr 0.9fr 0.7fr 0.8fr 0.7fr 1fr;
}

.user-directory-row {
  color: inherit;
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
  border: 1px solid transparent;
}

.user-directory-row:hover,
.user-directory-row:focus {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.18);
  text-decoration: none;
}

.user-directory-row.is-selected {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.08);
}

.user-directory-row.is-loading-selection {
  cursor: progress;
  opacity: 0.72;
}

.user-directory-row.is-loading-selection,
[data-admin-user-table].is-loading-selection,
[data-admin-billing-table].is-loading-selection,
[data-admin-affiliate-table].is-loading-selection,
#selected-creator-panel.is-loading-selection,
#selected-affiliate-panel.is-loading-selection,
[data-admin-tool-workspace].is-loading-selection {
  position: relative;
}

[data-admin-user-table].is-loading-selection,
[data-admin-billing-table].is-loading-selection,
[data-admin-affiliate-table].is-loading-selection,
#selected-creator-panel.is-loading-selection,
#selected-affiliate-panel.is-loading-selection,
[data-admin-tool-workspace].is-loading-selection {
  opacity: 0.78;
  filter: saturate(0.9);
}

[data-admin-user-table].is-loading-selection::after,
[data-admin-billing-table].is-loading-selection::after,
[data-admin-affiliate-table].is-loading-selection::after,
#selected-creator-panel.is-loading-selection::after,
#selected-affiliate-panel.is-loading-selection::after,
[data-admin-tool-workspace].is-loading-selection::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.08), transparent);
  animation: selection-sheen 1.1s ease-in-out infinite;
  pointer-events: none;
}

.is-loading-dashboard {
  cursor: progress;
}

[data-dashboard-loading-scope].is-loading-dashboard {
  position: relative;
  opacity: 0.78;
  filter: saturate(0.9);
}

[data-dashboard-loading-scope].is-loading-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.08), transparent);
  animation: dashboard-loading-sheen 1.1s ease-in-out infinite;
  pointer-events: none;
}

a.is-loading-dashboard {
  opacity: 0.72;
}

@keyframes selection-sheen {
  0% {
    transform: translateX(-35%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0;
  }
}

@keyframes dashboard-loading-sheen {
  0% {
    transform: translateX(-35%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0;
  }
}

.table-subline {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.admin-account-header {
  margin-bottom: 0;
}

.status-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.admin-detail-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.detail-heading {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.option-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.history-status a,
.history-row a,
.detail-list a {
  color: #8ddcff;
}

.deploy-progress-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.24);
  color: #fed7aa;
}

.rollout-progress-note {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.rollout-progress-copy {
  display: grid;
  gap: 6px;
}

.rollout-progress-copy strong {
  color: #fff7ed;
  font-size: 1rem;
}

.rollout-progress-copy span,
.rollout-progress-counts {
  color: #fdba74;
  font-size: 0.92rem;
}

.rollout-progress-note progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}

.rollout-progress-note progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.rollout-progress-note progress::-webkit-progress-value {
  background: linear-gradient(90deg, #fb923c, #f97316 55%, #fdba74);
  border-radius: 999px;
}

.rollout-progress-note progress::-moz-progress-bar {
  background: linear-gradient(90deg, #fb923c, #f97316 55%, #fdba74);
  border-radius: 999px;
}

@media (max-width: 992px) {
  .hero-card,
  .early-adopter-card,
  .status-grid,
  .result-grid,
  .compact-grid,
  .history-row,
  .marketing-grid,
  .steps-grid,
  .toggle-grid,
  .provider-grid,
  .checkout-summary-grid,
  .screenshot-showcase-grid,
  .dashboard-gallery-grid,
  .dashboard-form-grid,
  .panel-style-grid,
  .panel-style-inputs,
  .admin-detail-grid,
  .beta-feature-grid,
  .beta-page-grid,
  .preview-category-grid,
  .preview-social-grid,
  .preview-clips-layout,
  .landing-preview-grid {
    grid-template-columns: 1fr;
  }

  .wallpaper-layout {
    grid-template-columns: 1fr;
  }

  .showcase-card-feature,
  .showcase-card-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .screenshot-showcase-header {
    align-items: start;
  }

  .screenshot-showcase-pills {
    justify-content: flex-start;
  }

  .screenshot-showcase-carousel-header {
    align-items: start;
  }

  .social-links-header,
  .social-link-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .dashboard-floating-nav {
    top: 72px;
    left: 10px;
  }

  .dashboard-floating-nav-menu {
    max-height: min(70vh, 360px);
    overflow-y: auto;
  }

  .hero-card,
  .panel-card {
    padding: 20px;
    border-radius: 24px;
  }

  .admin-tool-button {
    min-width: 0;
    width: 100%;
  }

  .hero-card h1,
  .panel-card h1 {
    font-size: 2.4rem;
  }

  .screenshot-showcase-carousel-shell {
    gap: 14px;
  }

  .nav-shell {
    align-items: flex-start;
  }

  .dashboard-site-notification {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-search-form,
  .admin-inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-order-item {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-order-handle {
    align-self: flex-start;
  }

  .footer .container {
    align-items: stretch;
  }

  .deploy-form {
    padding-bottom: 110px;
  }

  .email-preview-footer {
    flex-direction: column;
  }

  #creator-deploy-submit-button {
    left: 20px;
    right: 20px;
    bottom: 20px;
    min-width: 0;
    width: auto;
  }
}

.discover-settings-copy {
  margin-bottom: 1.5rem;
}

.discover-settings-form {
  display: grid;
  gap: 1.25rem;
}

.discover-toggle-grid {
  margin-top: 0.5rem;
}

.discover-hero {
  align-items: stretch;
}

.discover-gate-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.discover-toolbar {
  display: grid;
  gap: 1.25rem;
}

.discover-toolbar-main {
  display: grid;
  gap: 0.55rem;
}

.discover-search-input {
  min-height: 3.5rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(12, 20, 40, 0.96), rgba(6, 13, 30, 0.94));
  border: 1px solid rgba(115, 191, 255, 0.18);
  color: #f4f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.discover-search-input:focus {
  background:
    linear-gradient(135deg, rgba(12, 20, 40, 0.98), rgba(9, 18, 35, 0.96));
  color: #f4f8ff;
  border-color: rgba(115, 191, 255, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(77, 168, 255, 0.18);
}

.discover-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.discover-genre-groups {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.genre-filter-section {
  display: grid;
  gap: 0.9rem;
}

.genre-filter-header {
  display: grid;
  gap: 0.35rem;
}

.genre-dropdown {
  gap: 0;
}

.genre-dropdown-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.genre-dropdown-summary::-webkit-details-marker {
  display: none;
}

.genre-dropdown-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.genre-dropdown-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.genre-dropdown-count {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #dbe7f6;
  font-size: 0.8rem;
  font-weight: 700;
}

.genre-dropdown-chevron {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid rgba(219, 231, 246, 0.88);
  border-bottom: 2px solid rgba(219, 231, 246, 0.88);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.genre-dropdown[open] .genre-dropdown-chevron {
  transform: rotate(225deg);
}

.genre-dropdown-content {
  margin-top: 1rem;
}

.genre-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.genre-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #e8f1ff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.genre-chip:hover {
  border-color: rgba(115, 191, 255, 0.34);
  transform: translateY(-1px);
}

.genre-chip-selected,
.genre-chip:has(input:checked) {
  border-color: rgba(115, 191, 255, 0.52);
  background: linear-gradient(135deg, rgba(20, 88, 172, 0.28), rgba(13, 49, 110, 0.24));
  box-shadow: 0 12px 28px rgba(6, 16, 34, 0.2);
}

.genre-chip input {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  cursor: pointer;
}

.discover-results-meta {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.discover-grid-shell {
  max-height: 70rem;
  overflow-y: auto;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.discover-card {
  min-height: 20rem;
  padding: 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(116, 175, 255, 0.18);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(12, 18, 35, 0.98), rgba(7, 12, 24, 0.98));
  box-shadow: 0 24px 60px rgba(1, 5, 12, 0.38);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.discover-card:hover,
.discover-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(116, 175, 255, 0.4);
  box-shadow: 0 28px 80px rgba(4, 10, 22, 0.5);
}

.discover-card-top {
  min-height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.discover-card-placeholder {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 217, 248, 0.48);
}

.discover-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discover-badge-premium {
  background: rgba(255, 214, 102, 0.14);
  border: 1px solid rgba(255, 214, 102, 0.34);
  color: #ffd666;
}

.discover-badge-featured {
  background: rgba(255, 159, 67, 0.14);
  border: 1px solid rgba(255, 159, 67, 0.34);
  color: #ffbf8f;
}

.discover-badge-partner {
  background: rgba(161, 116, 255, 0.12);
  border: 1px solid rgba(161, 116, 255, 0.34);
  color: #c8afff;
}

.discover-badge-staff {
  background: rgba(102, 231, 191, 0.12);
  border: 1px solid rgba(102, 231, 191, 0.32);
  color: #8df1d1;
}

.discover-card-featured {
  border-color: rgba(255, 159, 67, 0.48);
  box-shadow: 0 24px 56px rgba(255, 159, 67, 0.12), 0 28px 80px rgba(4, 10, 22, 0.5);
}

.featured-preview-card {
  min-height: 100%;
}

.featured-preview-shell {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.featured-preview-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.featured-preview-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 159, 67, 0.92), rgba(255, 214, 102, 0.88));
  color: #10131f;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 32px rgba(255, 159, 67, 0.2);
}

.featured-preview-shell strong {
  font-size: 1.05rem;
}

.featured-preview-shell p {
  margin: 0;
  color: rgba(226, 236, 250, 0.82);
}

.featured-preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.featured-preview-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #eaf0f8;
  font-size: 0.85rem;
}

.featured-term-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.toggle-card-featured-best {
  border-color: rgba(255, 214, 102, 0.48);
  box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.08), 0 14px 38px rgba(255, 214, 102, 0.08);
}

.toggle-card-featured-best .toggle-badge {
  background: rgba(255, 214, 102, 0.14);
  border-color: rgba(255, 214, 102, 0.26);
  color: #ffd666;
}

@media (max-width: 768px) {
  .featured-term-grid {
    grid-template-columns: 1fr;
  }

  .creator-two-up {
    grid-template-columns: 1fr;
  }
}

.discover-card-center {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
}

.discover-card-center h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.discover-avatar {
  width: 6.2rem;
  height: 6.2rem;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(5, 10, 20, 0.4);
}

.discover-card-bottom {
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.discover-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ecf4ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.discover-platform-pill img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

@media (max-width: 768px) {
  .discover-genre-groups {
    grid-template-columns: 1fr;
  }

  .discover-grid-shell {
    max-height: none;
    overflow: visible;
  }

  .discover-card {
    min-height: 18rem;
  }

  .showcase-mini-grid {
    grid-template-columns: 1fr;
  }
}
