﻿:root {
  --bg: #edf4ef;
  --bg-soft: #f7fcf8;
  --card: rgba(255, 255, 255, 0.84);
  --card-strong: rgba(255, 255, 255, 0.94);
  --surface: #e5f1e8;
  --surface-strong: #f1fbf3;
  --line: rgba(80, 113, 91, 0.16);
  --line-strong: rgba(71, 148, 96, 0.34);
  --text: #1f2a22;
  --text-soft: #506457;
  --text-muted: #708173;
  --accent: #2f8f57;
  --accent-strong: #1f6c41;
  --accent-soft: #cbe9d5;
  --accent-cool: #2f7d67;
  --accent-cool-soft: #dff3e6;
  --success-soft: #e9f7ee;
  --shadow-lg: 0 30px 80px rgba(41, 73, 52, 0.12);
  --shadow-md: 0 18px 38px rgba(41, 73, 52, 0.08);
  --shadow-sm: 0 10px 24px rgba(41, 73, 52, 0.05);
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-optical-sizing: auto;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 143, 87, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 125, 103, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fcf8 0%, #e8f1eb 100%);
}

button,
input,
select,
textarea {
  font-family: var(--font-ui);
}

:where(
  h1,
  h2,
  h3,
  .section-heading h2,
  .hero-copy h1,
  .mobile-playlist-header h2,
  .mobile-playlist-title-button span,
  .mobile-playlist-row-title,
  .order-card-title,
  .order-card-trigger h3,
  .new-account-track-title,
  .new-account-track-card h3,
  .result-track-title,
  .gift-track-title
) {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(82, 112, 91, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(82, 112, 91, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1240px, calc(100% - 32px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 30px 0 48px;
}

.app-boot-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 160;
  display: none;
  width: min(100%, 360px);
  max-width: calc(100vw - 32px);
  place-items: center;
  gap: 16px;
  padding: 30px 26px 28px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 143, 87, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 247, 0.94));
  box-shadow: 0 26px 58px rgba(30, 64, 45, 0.1);
  text-align: center;
  transform: translate(-50%, -50%);
}

body.app-boot-loading {
  min-height: 100svh;
  overflow: hidden;
}

body.app-boot-loading .app-boot-loader {
  display: grid;
}

body.app-boot-loading .top-nav,
body.app-boot-loading #generator-main-grid,
body.app-boot-loading .site-footer,
body.app-boot-loading #mobile-dashboard-tabbar,
body.app-boot-loading #credit-required-dialog,
body.app-boot-loading #mobile-session-expired-dialog {
  display: none !important;
}

.app-boot-loader-copy {
  display: grid;
  gap: 5px;
}

.app-boot-loader-copy strong {
  color: #1d2a23;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.app-boot-loader-copy span {
  color: #5b6b61;
  font-size: 0.9rem;
  font-weight: 350;
  line-height: 1.4;
}

.top-nav {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 106px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(205, 226, 216, 0.74);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 251, 0.91));
  box-shadow:
    0 22px 54px rgba(33, 64, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
}

.top-nav-brand,
.top-nav-links a,
.auth-menu-email {
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}

.top-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.top-nav-brand-image {
  display: block;
  width: auto;
  max-width: min(100%, 180px);
  height: 42px;
  object-fit: contain;
}

.top-nav-links {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(54, 102, 76, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 24px rgba(33, 64, 47, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.top-nav-auth {
  display: flex;
  align-items: center;
  justify-self: end;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
}

.top-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  min-width: 104px;
  padding: 0 16px;
  border-left: 1px solid rgba(54, 102, 76, 0.12);
  border-radius: 0;
  color: #5f6964;
  font-size: 0.9rem;
  font-weight: 310;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav-links a:first-child {
  border-left: 0;
}

.top-nav-links a::before,
#auth-menu .secondary-link::before,
.top-nav-auth .compact-button::before,
.top-nav-auth .credit-balance-pill::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask: var(--top-nav-icon) center / contain no-repeat;
  mask: var(--top-nav-icon) center / contain no-repeat;
}

.top-nav-link-generator {
  --top-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 3 11.3 8.1 6 10l5.3 1.9L13 17l1.7-5.1L20 10l-5.3-1.9z'/%3E%3Cpath d='M5 4v4'/%3E%3Cpath d='M3 6h4'/%3E%3Cpath d='M19 16v4'/%3E%3Cpath d='M17 18h4'/%3E%3C/svg%3E");
}

.top-nav-link-account,
#auth-menu .secondary-link {
  --top-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 21a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

.top-nav-link-settings {
  --top-nav-icon: url('/lucide-settings-2.svg');
}

.top-nav-link-about {
  --top-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 10v6'/%3E%3Cpath d='M12 7h.01'/%3E%3C/svg%3E");
}

.top-nav-links a:hover {
  background: rgba(246, 252, 248, 0.78);
  color: #177245;
}

.top-nav-links a.is-active,
.top-nav-links a[aria-current="page"] {
  background: rgba(248, 251, 249, 0.92);
  color: #24362d;
  font-weight: 560;
  box-shadow:
    inset 0 -2px 0 rgba(47, 143, 87, 0.38),
    inset 0 0 0 1px rgba(47, 143, 87, 0.08);
}

.top-nav-links a:hover {
  text-decoration: none;
}

.auth-menu-email {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #62716a;
  font-size: 0.86rem;
  font-weight: 300;
}

#auth-menu .secondary-link,
.top-nav-auth .compact-button,
.top-nav-auth .credit-balance-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 340;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

#auth-menu .secondary-link {
  min-width: 96px;
  padding: 0 18px;
  border: 1px solid rgba(15, 104, 62, 0.18);
  background: linear-gradient(135deg, #1b9153, #0f7644);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 143, 80, 0.22);
}

#auth-menu .secondary-link:hover {
  filter: saturate(1.04);
  text-decoration: none;
}

.top-nav-auth .credit-balance-pill {
  --top-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 7v10'/%3E%3Cpath d='M9.5 9.5A2.7 2.7 0 0 1 12.2 8H13a2 2 0 0 1 0 4h-2a2 2 0 0 0 0 4h.8a2.7 2.7 0 0 0 2.7-1.5'/%3E%3C/svg%3E");
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(15, 104, 62, 0.16);
  background: linear-gradient(135deg, #1b9153, #0f7644);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 143, 80, 0.22);
}

.top-nav-auth .compact-button {
  --top-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 4h3a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-3'/%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3C/svg%3E");
  min-width: 92px;
  padding: 0 14px;
  border: 1px solid rgba(47, 143, 87, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #1f6c41;
  box-shadow:
    0 12px 24px rgba(33, 64, 47, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-footer {
  margin-top: auto;
  padding-top: 32px;
}

.site-footer-panel {
  position: relative;
  overflow: hidden;
  padding: 36px 38px;
  border: 1px solid rgba(190, 234, 221, 0.88);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(168, 241, 218, 0.24), transparent 27%),
    radial-gradient(circle at bottom left, rgba(231, 249, 239, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 249, 0.94));
  box-shadow: 0 24px 64px rgba(41, 73, 52, 0.1);
  backdrop-filter: blur(18px);
}

.site-footer-panel::before {
  content: "";
  position: absolute;
  right: -138px;
  bottom: -126px;
  width: 520px;
  height: 250px;
  border-radius: 50%;
  background: repeating-radial-gradient(ellipse at 62% 86%, rgba(146, 236, 209, 0.34) 0 2px, transparent 2px 14px);
  opacity: 0.4;
  transform: rotate(8deg);
  mask-image: linear-gradient(135deg, transparent 16%, rgba(0, 0, 0, 0.96) 42%);
  pointer-events: none;
}

.site-footer-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.98fr) minmax(420px, 1.08fr) auto;
  gap: 28px;
  align-items: center;
}

.site-footer-brand,
.site-footer-legal,
.site-footer-security {
  position: relative;
  z-index: 1;
}

.site-footer-brand {
  display: grid;
  gap: 18px;
}

.site-footer-logo {
  display: block;
  width: min(100%, 348px);
  height: auto;
}

.site-footer-support {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #7d8794;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.site-footer-support-prefix,
.site-footer-support-email {
  display: inline;
}

.site-footer-support:hover {
  color: var(--accent-strong);
}

.site-footer-support-icon,
.site-footer-security-icon {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: #68d3b5;
  stroke-width: 1.8;
  fill: none;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 110px;
  padding: 0 40px;
  border-left: 1px solid rgba(197, 236, 224, 0.92);
  border-right: 1px solid rgba(197, 236, 224, 0.92);
}

.site-footer-legal-link {
  color: #304264;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer-legal-link:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

.site-footer-legal-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #88edcb, #57caa6);
  flex: none;
}

.site-footer-security {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.site-footer-security-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7b8793;
  font-size: 1rem;
  font-weight: 300;
  white-space: nowrap;
}

.site-footer-payments {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.site-footer-payment-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 50px;
  padding: 10px 16px;
  border-radius: 15px;
  border: 1px solid rgba(208, 231, 222, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(41, 73, 52, 0.05);
}

.site-footer-payment-logo {
  display: block;
  width: auto;
  height: 22px;
}

.compact-button {
  min-width: 0;
  padding: 10px 14px;
  border-radius: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-panel,
.form-card,
.status-card,
.admin-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 34px 36px;
}

.hero-copy::after,
.hero-panel::after,
.form-card::after,
.status-card::after,
.admin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 350;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-text,
.section-intro,
.section-copy,
.panel-note,
.field-hint,
.status-copy,
.submit-copy {
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 24px;
  font-size: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badges span,
.config-banner,
.status-pill,
.section-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(47, 143, 87, 0.18);
  background: #f2fbf4;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 300;
}

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

.hero-stats article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.95), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(47, 143, 87, 0.14);
  box-shadow: var(--shadow-sm);
}

.hero-stats strong {
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(47, 139, 130, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(237, 248, 240, 0.92));
}

.panel-card {
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(47, 143, 87, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.panel-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

.panel-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--accent-cool-soft);
  color: #1f5a43;
  font-size: 0.95rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.62fr);
  gap: 24px;
  align-items: start;
}

#generator-main-grid {
  width: 100%;
  margin: 0 auto;
}

#generator-main-grid.generator-grid-solo {
  width: 70%;
}

.generator-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

.generator-grid.generator-grid-solo {
  grid-template-columns: minmax(0, 1fr);
}

.form-card,
.status-card,
.admin-card {
  padding: 30px;
}

.generator-side-rail {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
  align-self: start;
}

.status-card {
  position: static;
}

.generator-session-card {
  display: grid;
  gap: 16px;
  margin-top: 0;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(47, 139, 130, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(246, 238, 231, 0.9));
  box-shadow: var(--shadow-sm);
}

.generator-session-heading {
  margin-bottom: 0;
}

.generator-active-jobs-list {
  display: grid;
  gap: 12px;
}

.generator-active-job-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.generator-active-job-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.generator-active-job-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.generator-active-job-title {
  margin: 0;
  font-size: 1.06rem;
}

.generator-active-job-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.generator-active-job-stage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background: rgba(245, 252, 247, 0.92);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 350;
  white-space: nowrap;
}

.generator-active-job-stage::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.generator-active-job-stage.is-processing {
  border-color: rgba(47, 143, 87, 0.2);
  background: rgba(238, 249, 241, 0.94);
}

.generator-active-job-stage.is-queued {
  border-color: rgba(47, 139, 130, 0.18);
  background: rgba(225, 245, 234, 0.92);
  color: #1f5a43;
}

.generator-active-job-stage.is-completed {
  border-color: rgba(47, 139, 130, 0.24);
  background: rgba(237, 248, 243, 0.96);
  color: #24665f;
}

.generator-active-job-stage.is-failed {
  border-color: rgba(188, 74, 63, 0.2);
  background: rgba(255, 238, 236, 0.96);
  color: #9a3e35;
}

.generator-active-job-progress {
  display: grid;
  gap: 8px;
}

.generator-active-job-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.generator-active-job-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.generator-active-job-progress-head strong {
  color: var(--text);
  font-size: 0.92rem;
}

.generator-active-job-progress-head span {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 350;
}

.generator-active-job-progress-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(47, 143, 87, 0.1);
}

.generator-active-job-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f8f57, #77d09a);
  transition: width 0.28s ease;
}

.generator-active-job-actions {
  display: flex;
  justify-content: flex-start;
}

.generator-active-job-open {
  min-width: 0;
}

.status-focus-note {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-intro {
  max-width: 58ch;
  margin: 0;
}

form {
  display: grid;
  gap: 20px;
}

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

.wizard-progress-connector {
  display: none;
}

.wizard-progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.wizard-progress-item.is-active {
  border-color: rgba(47, 143, 87, 0.38);
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(233, 247, 238, 0.92));
  color: var(--text);
  transform: translateY(-1px);
}

.wizard-progress-item.is-complete {
  border-color: rgba(47, 139, 130, 0.28);
  background: rgba(237, 248, 243, 0.92);
  color: #24665f;
}

.wizard-progress-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.1);
  color: var(--accent-strong);
  font-weight: 350;
  flex-shrink: 0;
}

.wizard-progress-index-value {
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.wizard-progress-item.is-complete .wizard-progress-index {
  background: rgba(47, 139, 130, 0.13);
  color: #24665f;
}

.wizard-progress-label {
  font-size: 0.92rem;
  font-weight: 350;
}

.form-section,
.advanced-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(234, 246, 238, 0.72));
  box-shadow: var(--shadow-sm);
}

.form-section-highlight {
  background:
    radial-gradient(circle at top right, rgba(47, 125, 103, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(231, 246, 236, 0.9));
  border-color: rgba(47, 143, 87, 0.18);
}

.advanced-panel {
  background:
    radial-gradient(circle at top right, rgba(47, 143, 87, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(235, 248, 239, 0.92));
}

.ai-step-shell {
  gap: 0;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(214, 242, 223, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 244, 0.92));
}

.ai-step-hero {
  display: grid;
  gap: 18px;
  padding: 22px 26px 18px;
}

.ai-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background: linear-gradient(180deg, rgba(250, 255, 251, 0.98), rgba(232, 247, 237, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: var(--accent-strong);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 400;
}

.ai-step-pill-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(233, 247, 238, 0.98);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ai-step-pill-chip-icon,
.ai-step-icon {
  display: inline-flex;
  background: var(--accent);
  -webkit-mask: var(--ai-step-icon-mask) center / contain no-repeat;
  mask: var(--ai-step-icon-mask) center / contain no-repeat;
}

.ai-step-pill-chip-icon {
  position: absolute;
  inset: 8px;
  opacity: 0.18;
  --ai-step-icon-mask: url("/lucide-cpu.svg");
}

.ai-step-pill-chip-text {
  position: relative;
  z-index: 1;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 400;
}

.ai-step-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.35;
  white-space: nowrap;
}

.ai-step-hero-head.ai-step-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.ai-step-hero-chip.ai-step-pill-chip {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(243, 251, 245, 0.98), rgba(226, 245, 232, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.ai-step-hero-chip .ai-step-pill-chip-icon {
  inset: 9px;
  opacity: 0.14;
}

.ai-step-hero-chip .ai-step-pill-chip-text {
  color: var(--accent-strong);
  font-size: 0.98rem;
  line-height: 1;
}

.ai-step-hero-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding-top: 1px;
}

.ai-step-hero-copy strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 350;
  line-height: 1.04;
}

.ai-step-hero-copy span {
  display: block;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.68;
}

.ai-step-hero-toggle {
  display: none;
}

.ai-step-choice-group {
  gap: 18px;
  padding: 0 26px 26px;
}

.ai-step-question {
  font-size: 1.05rem;
  font-weight: 400;
}

.ai-step-choice-grid {
  gap: 18px;
}

.ai-mode-card {
  position: relative;
  align-items: center;
  gap: 0;
  min-height: 168px;
  padding: 22px;
  border-radius: 28px;
}

.ai-mode-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.ai-mode-card-body {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
}

.ai-mode-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(237, 250, 241, 0.98), rgba(229, 246, 234, 0.74));
}

.ai-step-icon {
  width: 29px;
  height: 29px;
}

.ai-step-icon-heart {
  --ai-step-icon-mask: url("/lucide-heart.svg");
}

.ai-step-icon-music {
  --ai-step-icon-mask: url("/lucide-music-4.svg");
}

.ai-step-icon-user {
  --ai-step-icon-mask: url("/lucide-user-round.svg");
}

.ai-step-icon-calendar {
  --ai-step-icon-mask: url("/lucide-calendar.svg");
}

.ai-step-icon-message {
  --ai-step-icon-mask: url("/lucide-message-circle.svg");
}

.ai-step-icon-star {
  --ai-step-icon-mask: url("/lucide-star.svg");
}

.ai-step-icon-gem {
  --ai-step-icon-mask: url("/lucide-gem.svg");
}

.ai-step-icon-lightbulb {
  --ai-step-icon-mask: url("/lucide-lightbulb.svg");
}

.ai-step-icon-list-checks {
  --ai-step-icon-mask: url("/lucide-list-checks.svg");
}

.ai-step-icon-ban {
  --ai-step-icon-mask: url("/lucide-ban.svg");
}

.ai-step-icon-info {
  --ai-step-icon-mask: url("/lucide-info.svg");
}

.ai-mode-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ai-mode-card-copy strong {
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.2;
}

.ai-mode-card-copy span {
  color: rgba(54, 71, 60, 0.86);
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.42;
}

.ai-mode-card:has(input:checked) {
  border-color: rgba(47, 143, 87, 0.5);
  background: linear-gradient(180deg, rgba(249, 254, 250, 0.99), rgba(233, 247, 238, 0.94));
  box-shadow: 0 18px 32px rgba(41, 73, 52, 0.1);
}

.ai-step-detail-panel {
  display: grid;
  gap: 20px;
  margin: 0 26px 26px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(80, 113, 91, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.ai-step-detail-heading {
  display: grid;
  gap: 8px;
}

.ai-step-detail-heading strong {
  color: var(--text);
  font-size: 1.06rem;
}

.ai-step-detail-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.ai-step-detail-grid-single {
  grid-template-columns: 1fr;
}

.ai-step-field-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(80, 113, 91, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 244, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.ai-step-field-card-wide {
  grid-column: 1 / -1;
}

.ai-step-field-card > span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 350;
}

.ai-step-field-card textarea {
  min-height: 132px;
}

.dedication-panel {
  gap: 22px;
  margin: 0 26px 26px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(73, 144, 96, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 251, 0.96));
  box-shadow:
    0 18px 42px rgba(33, 67, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.dedication-heading {
  gap: 6px;
}

.dedication-heading strong {
  font-size: 1.18rem;
}

.dedication-heading p {
  font-size: 0.96rem;
  line-height: 1.45;
}

.dedication-panel .ai-step-detail-grid {
  gap: 18px 28px;
  align-items: start;
}

.dedication-field-card {
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dedication-panel .ai-step-field-card > .ai-step-field-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.35;
}

.ai-step-field-title-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  opacity: 0.96;
}

.dedication-panel .ai-step-field-card > span:not(.ai-step-field-title):not(.ai-step-field-control) {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 300;
}

.ai-step-field-control {
  position: relative;
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}

.dedication-panel .ai-step-field-card input,
.dedication-panel .ai-step-field-card textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(72, 113, 87, 0.14);
  background: rgba(255, 255, 255, 0.98);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow:
    0 6px 18px rgba(40, 69, 49, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.dedication-panel .ai-step-field-card input {
  min-height: 52px;
}

.dedication-panel .ai-step-field-card textarea {
  min-height: 130px;
  padding-bottom: 34px;
  resize: vertical;
}

.dedication-panel .ai-step-field-card.ai-step-field-card-wide textarea {
  min-height: 132px;
}

.dedication-panel .ai-step-field-card::placeholder,
.dedication-panel .ai-step-field-card input::placeholder,
.dedication-panel .ai-step-field-card textarea::placeholder {
  color: rgba(102, 118, 109, 0.84);
}

.ai-step-field-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: rgba(90, 107, 97, 0.72);
  font-size: 0.82rem;
  line-height: 1;
  pointer-events: none;
}

.ai-step-general-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.ai-step-title-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ai-step-title-copy strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.18;
}

.ai-step-title-copy small {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.ai-step-required-dot {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.ai-step-optional-pill {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(31, 42, 34, 0.06);
  color: rgba(48, 58, 51, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.ai-step-general-note {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.ai-step-general-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ai-step-general-note-icon .ai-step-icon {
  width: 22px;
  height: 22px;
}

@media (min-width: 861px) {
  #advanced-fields .ai-step-choice-group {
    gap: 18px;
    padding: 0 26px 30px;
  }

  #advanced-fields .ai-step-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  #advanced-fields .ai-mode-card {
    min-height: 118px;
    padding: 26px 74px 26px 30px;
    border-radius: 16px;
    border-color: rgba(80, 113, 91, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 14px 34px rgba(31, 54, 39, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  #advanced-fields .ai-mode-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 22px;
    height: 22px;
    border: 1.7px solid rgba(116, 126, 121, 0.58);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-50%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  #advanced-fields .ai-mode-card:has(input:checked)::after {
    border-color: rgba(47, 143, 87, 0.96);
    background:
      radial-gradient(circle at center, rgba(47, 143, 87, 0.98) 0 34%, rgba(255, 255, 255, 0.98) 36% 58%, rgba(47, 143, 87, 0.98) 60% 100%);
  }

  #advanced-fields .ai-mode-card-body {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
  }

  #advanced-fields .ai-mode-card-icon {
    width: 62px;
    height: 62px;
  }

  #advanced-fields .ai-mode-card-copy {
    gap: 8px;
  }

  #advanced-fields .ai-mode-card-copy strong {
    font-size: 1.08rem;
  }

  #advanced-fields .ai-mode-card-copy span {
    font-size: 0.93rem;
  }

  #ai-composer-fields.ai-step-general-panel {
    gap: 22px;
    margin: 0 26px 26px;
    padding: 22px 22px 20px;
    border-radius: 26px;
    border: 1px solid rgba(73, 144, 96, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 253, 251, 0.96));
    box-shadow:
      0 18px 42px rgba(33, 67, 45, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  #ai-composer-fields .ai-step-general-heading {
    gap: 6px;
    padding: 0;
  }

  #ai-composer-fields .ai-step-general-heading strong {
    font-family: inherit;
    font-size: 1.18rem;
    line-height: 1.25;
    letter-spacing: 0;
  }

  #ai-composer-fields .ai-step-general-heading p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  #ai-composer-fields .ai-step-general-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    align-items: start;
  }

  #ai-composer-fields .ai-step-general-field-main {
    grid-column: 1 / -1;
  }

  #ai-composer-fields .ai-step-general-field {
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #ai-composer-fields .ai-step-general-title {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.35;
  }

  #ai-composer-fields .ai-step-field-title-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    border-radius: 0;
    background: var(--accent);
    opacity: 0.96;
    -webkit-mask: var(--ai-step-icon-mask) center / contain no-repeat;
    mask: var(--ai-step-icon-mask) center / contain no-repeat;
  }

  #ai-composer-fields .ai-step-field-title-icon::before {
    content: none;
  }

  #ai-composer-fields .ai-step-field-control-textarea textarea {
    min-height: 130px;
    padding: 14px 15px 34px;
    border-radius: 14px;
    border: 1px solid rgba(72, 113, 87, 0.14);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    resize: vertical;
    box-shadow:
      0 6px 18px rgba(40, 69, 49, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  #ai-composer-fields .ai-step-general-field-main textarea {
    min-height: 132px;
  }

  #ai-composer-fields .ai-step-field-count {
    right: 14px;
    bottom: 12px;
    font-size: 0.82rem;
  }

  #ai-composer-fields .ai-step-general-note {
    display: none;
  }
}

.sound-step-shell {
  gap: 0;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(214, 242, 223, 0.82), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 244, 0.9));
}

.sound-step-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 24px 22px;
  border-bottom: 1px solid rgba(80, 113, 91, 0.12);
}

.sound-step-hero-copy {
  display: grid;
  gap: 8px;
}

.sound-step-hero-heading {
  margin: 0;
}

.sound-step-hero-text {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.sound-step-hero-text h3 {
  margin: 0;
}

.sound-step-hero-step {
  align-self: flex-start;
}

.sound-step-hero-gclef {
  display: inline-block;
  color: var(--accent);
  font-family: "Segoe UI Symbol", "Cambria Math", "Noto Music", serif;
  font-size: 2.3rem;
  line-height: 1;
  transform: translateY(-1px);
}

.sound-step-shell h3 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.sound-step-hero-copy .section-copy {
  margin: 0;
  max-width: none;
  font-size: 0.93rem;
  line-height: 1.35;
  white-space: nowrap;
}

.sound-step-hero-art {
  position: relative;
  width: 220px;
  height: 106px;
  justify-self: end;
}

.sound-step-hero-orb {
  position: absolute;
  right: 8px;
  top: -2px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 243, 230, 0.95) 0, rgba(223, 243, 230, 0.42) 56%, transparent 72%);
}

.sound-step-wave {
  position: absolute;
  left: 12px;
  right: 0;
  height: 28px;
  border-top: 1.5px solid rgba(47, 143, 87, 0.18);
  border-radius: 50%;
}

.sound-step-wave-1 {
  top: 30px;
  transform: rotate(2deg);
}

.sound-step-wave-2 {
  top: 40px;
  left: 22px;
  right: 18px;
  transform: rotate(-3deg);
}

.sound-step-wave-3 {
  top: 52px;
  left: 34px;
  right: 4px;
  transform: rotate(1deg);
}

.sound-step-hero-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.75;
}

.sound-step-hero-dot-1 {
  top: 20px;
  right: 40px;
}

.sound-step-hero-dot-2 {
  top: 40px;
  right: 98px;
  width: 5px;
  height: 5px;
}

.sound-step-hero-dot-3 {
  top: 56px;
  right: 18px;
  width: 8px;
  height: 8px;
}

.sound-step-hero-dot-4 {
  top: 72px;
  right: 132px;
  width: 4px;
  height: 4px;
}

.sound-icon,
.sound-step-hero-icon {
  display: inline-flex;
  background: var(--accent);
  -webkit-mask: var(--sound-icon-mask) center / contain no-repeat;
  mask: var(--sound-icon-mask) center / contain no-repeat;
}

.sound-icon-music {
  --sound-icon-mask: url("/twemoji-musical-note.svg");
}

.sound-icon-microphone {
  --sound-icon-mask: url("/twemoji-microphone.svg");
}

.sound-icon-sparkles {
  --sound-icon-mask: url("/twemoji-sparkles.svg");
  background: #111111;
}

.sound-icon-slider {
  --sound-icon-mask: url("/lucide-settings-2.svg");
}

.sound-icon-settings {
  --sound-icon-mask: url("/lucide-settings-2.svg");
}

.sound-icon-heart {
  --sound-icon-mask: url("/twemoji-green-heart.svg");
}

.sound-icon-flag {
  --sound-icon-mask: url("/twemoji-triangular-flag.svg");
}

.sound-step-hero-icon {
  position: absolute;
  width: 34px;
  height: 34px;
}

.sound-step-hero-icon-note {
  --sound-icon-mask: url("/twemoji-musical-note.svg");
  top: 18px;
  right: 70px;
}

.sound-step-hero-icon-notes {
  --sound-icon-mask: url("/twemoji-musical-notes.svg");
  top: 32px;
  right: 34px;
  width: 38px;
  height: 38px;
}

#wizard-step-lyrics .lyrics-step-hero {
  margin: -22px -22px 0;
}

.lyrics-step-hero-icon-pen {
  top: 16px;
  right: 70px;
  width: 42px;
  height: 42px;
  background: url("/feather-pen-64.png") center / contain no-repeat;
  -webkit-mask: none;
  mask: none;
}

.lyrics-step-hero-icon-message {
  --sound-icon-mask: url("/lucide-message-circle.svg");
  top: 38px;
  right: 32px;
  width: 36px;
  height: 36px;
}

.ai-step-hero-icon-cpu {
  --sound-icon-mask: url("/lucide-cpu.svg");
  top: 18px;
  right: 70px;
  width: 38px;
  height: 38px;
}

.ai-step-hero-icon-sparkles {
  --sound-icon-mask: url("/twemoji-sparkles.svg");
  top: 36px;
  right: 32px;
  width: 36px;
  height: 36px;
  background: #111111;
}

.sound-step-top-grid,
.sound-step-bottom-grid {
  gap: 18px;
  padding: 24px;
}

.sound-step-bottom-grid {
  padding-top: 18px;
  padding-bottom: 24px;
}

.sound-field-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(80, 113, 91, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.sound-field-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(223, 243, 230, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sound-field-chip .sound-icon {
  width: 24px;
  height: 24px;
}

.sound-field-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.sound-field-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.sound-settings-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 143, 87, 0.18);
  border-radius: 15px;
  background: rgba(223, 243, 230, 0.9);
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease;
}

.sound-settings-button .sound-icon {
  width: 20px;
  height: 20px;
}

.sound-settings-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.34);
  box-shadow: 0 14px 24px rgba(41, 73, 52, 0.08);
}

.sound-settings-button.is-active {
  border-color: rgba(47, 143, 87, 0.42);
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
  box-shadow: 0 16px 28px rgba(47, 143, 87, 0.12);
}

.sound-settings-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.sound-field-title {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 350;
  line-height: 1.35;
}

.sound-field-note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sound-step-substyle-group,
.sound-step-direction-group {
  margin: 0 24px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(80, 113, 91, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.sound-step-direction-group {
  display: none !important;
}

.sound-step-instrument-group {
  display: grid;
  gap: 16px;
  margin: 0 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(80, 113, 91, 0.12);
}

.sound-step-section-heading {
  display: grid;
  gap: 6px;
}

.sound-mode-grid {
  gap: 18px;
}

.sound-mode-card {
  min-height: 108px;
  padding: 20px;
  align-items: flex-start;
  border-radius: 24px;
}

.sound-mode-card input {
  margin-top: 12px;
}

.sound-mode-card-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
}

.sound-mode-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(223, 243, 230, 0.9);
}

.sound-mode-card-badge .sound-icon {
  width: 24px;
  height: 24px;
}

.sound-mode-card-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.sound-mode-card-copy strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.sound-mode-card-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.sound-mode-card:has(input:checked) {
  border-color: rgba(47, 143, 87, 0.5);
  background: linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(233, 247, 238, 0.94));
  box-shadow: 0 18px 32px rgba(41, 73, 52, 0.1);
}

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

.post-lyrics-fields {
  display: grid;
  gap: 20px;
}

.section-label-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.section-step {
  flex-shrink: 0;
  padding: 8px 12px;
  background: rgba(223, 243, 230, 0.92);
  border: 1px solid rgba(47, 143, 87, 0.18);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 350;
}

.section-step-illustrated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.section-step-illustration {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.section-copy {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.field-group {
  display: grid;
  gap: 12px;
}

.customer-email-group {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(234, 246, 238, 0.72));
  box-shadow: var(--shadow-sm);
}

.customer-email-confirmation {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 2px 0 0;
}

.customer-email-confirmation input[type="checkbox"] {
  appearance: none;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(47, 143, 87, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-strong);
}

.customer-email-confirmation input[type="checkbox"]::before {
  content: "";
  width: 12px;
  height: 12px;
  opacity: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.customer-email-confirmation input[type="checkbox"]:checked::before {
  opacity: 1;
}

.customer-email-confirmation input[type="checkbox"].input-error {
  border-color: rgba(210, 62, 62, 0.72);
  box-shadow: 0 0 0 3px rgba(210, 62, 62, 0.12);
}

.customer-email-confirmation #customer-email-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

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

.field-row-balanced {
  align-items: start;
}

label {
  display: grid;
  gap: 9px;
}

label span,
.field-legend {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 300;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

option,
optgroup {
  color: var(--text);
  background: #f7fcf8;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 143, 87, 0.56);
  box-shadow: 0 0 0 4px rgba(47, 143, 87, 0.12);
  background: #ffffff;
  transform: translateY(-1px);
}

input.is-validation-error,
textarea.is-validation-error,
select.is-validation-error {
  border-color: rgba(220, 38, 38, 0.72) !important;
  background-color: rgba(255, 247, 247, 0.98) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
}

.has-validation-error {
  border-color: rgba(220, 38, 38, 0.72) !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 250, 0.99), rgba(255, 241, 241, 0.9)) !important;
  box-shadow:
    0 0 0 3px rgba(220, 38, 38, 0.1),
    0 16px 30px rgba(127, 29, 29, 0.08) !important;
}

.has-validation-error .mobile-collapsible-title,
.has-validation-error .sound-field-title,
.has-validation-error .ai-step-field-title,
.has-validation-error .field-legend,
.field-group.has-validation-error > .field-legend,
.field-group.has-validation-error .ai-step-question {
  color: #b91c1c !important;
}

.field-group.has-validation-error .choice-card,
.field-group.has-validation-error .check-card {
  border-color: rgba(220, 38, 38, 0.62) !important;
  background: rgba(255, 247, 247, 0.96) !important;
}

input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  background: rgba(239, 246, 241, 0.9);
}

input::placeholder,
textarea::placeholder {
  color: #7e9484;
}

.choice-row,
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.choice-card,
.check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.choice-card:hover,
.check-card:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.28);
  box-shadow: 0 14px 24px rgba(41, 73, 52, 0.08);
}

.choice-card input,
.check-card input,
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
}

.choice-card span,
.check-card span {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 300;
}

.choice-card:has(input:checked),
.check-card:has(input:checked) {
  border-color: rgba(47, 143, 87, 0.56);
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
  box-shadow: 0 16px 28px rgba(47, 143, 87, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.compact-checkbox {
  justify-self: start;
}

.lyrics-toggle-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.lyrics-hints {
  display: grid;
  gap: 6px;
}

.field-hint {
  font-size: 0.92rem;
}

.field-error {
  color: #ad3c31;
  font-weight: 300;
}

.input-error {
  border-color: rgba(173, 60, 49, 0.42);
  box-shadow: 0 0 0 4px rgba(173, 60, 49, 0.08);
}

.dedication-panel {
  display: grid;
  gap: 16px;
}

.section-heading-compact {
  margin-bottom: 2px;
}

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

.mobile-instrument-auto-panel,
.mobile-instrument-manual-link,
.mobile-instrument-manual-copy,
.mobile-instrument-selected-summary,
.mobile-custom-select-list,
.mobile-style-main-block,
.mobile-style-substyle-block,
.mobile-style-selected-bar {
  display: none;
}

.wizard-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px 18px 74px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 248, 240, 0.84));
  box-shadow: var(--shadow-sm);
}

.wizard-footer::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: url("/musical-note-50.png") center / contain no-repeat;
  pointer-events: none;
}

.wizard-footer-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.wizard-footer-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.wizard-footer-copy span,
.submit-copy {
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.wizard-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.secondary-button {
  min-width: 132px;
  border: 1px solid rgba(47, 143, 87, 0.24);
  border-radius: 18px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  font: inherit;
  font-weight: 350;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.38);
  box-shadow: 0 16px 28px rgba(41, 73, 52, 0.08);
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.wizard-next-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
}

.primary-button {
  min-width: 240px;
  border: none;
  border-radius: 18px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #2f8f57, #74c98f);
  color: #f8fffa;
  font: inherit;
  font-weight: 350;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(47, 143, 87, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(47, 143, 87, 0.28);
  filter: saturate(1.03);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

@media (min-width: 861px) {
  #wizard-back,
  #wizard-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .wizard-next-button::after,
  #wizard-back::before,
  #wizard-submit::after,
  #result-download::before,
  #new-account-result-download::before,
  #gift-download-link::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    background: currentColor;
  }

  .wizard-next-button::after {
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  #wizard-back::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='m11 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='m11 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  #wizard-submit::after {
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  #result-download,
  #new-account-result-download,
  #gift-download-link {
    gap: 8px;
  }

  #result-download::before,
  #new-account-result-download::before,
  #gift-download-link::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
  }
}

.mobile-card-hidden {
  display: none !important;
}

.mobile-lyrics-mode,
.mobile-collapsible-trigger {
  display: none;
}

.mobile-brand-header,
.mobile-menu-panel,
.mobile-account-panel,
.lyrics-section-copy-mobile,
.mobile-landing-screen,
.mobile-lyrics-hint-card,
.lyrics-text-count,
.mobile-device-top,
.mobile-heading-badge {
  display: none;
}

.mobile-collapsible-card,
.mobile-collapsible-body {
  display: contents;
}

.lyrics-input-card,
.mobile-lyrics-input-field {
  display: grid;
  gap: 10px;
}

.mobile-lyrics-input-head {
  display: none;
}

.mobile-lyrics-input-action {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.mobile-collapsible-summary.is-placeholder {
  color: var(--text-muted);
}

.config-banner {
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(47, 139, 130, 0.18);
  background: var(--success-soft);
  color: #235f4a;
  font-size: 0.92rem;
  font-weight: 300;
}

.status-pill {
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 143, 87, 0.18);
  background: #eef9f1;
  color: var(--accent-strong);
  font-weight: 350;
}

.progress-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.progress-bar {
  height: 14px;
  border-radius: 999px;
  background: #dceee2;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent));
  transition: width 0.35s ease;
}

#progress-value {
  color: var(--text-soft);
  font-weight: 350;
}

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

.status-verifying,
.status-prestart,
.status-live {
  display: grid;
  gap: 18px;
}

.status-pill-verifying {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(47, 139, 130, 0.2);
  background: linear-gradient(180deg, #edf9f1, #f8fffa);
  color: #236955;
}

.progress-wrap-verifying {
  margin-bottom: 0;
}

.progress-fill-verifying {
  background: linear-gradient(90deg, #2f7d67, #6dc49a);
  transition: width 0.28s ease;
}

.status-request-summary {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.prestart-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background:
    radial-gradient(circle at top right, rgba(183, 231, 199, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(247, 252, 248, 0.98), rgba(234, 247, 238, 0.92));
}

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

.prestart-kicker {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 350;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prestart-kicker-icon,
.prestart-detail-grid,
.prestart-info-note,
.prestart-edit-back,
.prestart-journey-icon,
.status-start-rocket {
  display: none;
}

.prestart-title {
  margin: 0;
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.2;
}

.prestart-mode-pill {
  display: grid;
  gap: 4px;
  align-content: start;
  min-width: 148px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(47, 143, 87, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 30px rgba(47, 143, 87, 0.08);
}

.prestart-mode-pill strong {
  color: var(--text);
  font-size: 1rem;
}

.prestart-mode-pill span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.prestart-journey-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(80, 113, 91, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.prestart-journey-item.is-current {
  border-color: rgba(47, 143, 87, 0.22);
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
}

.prestart-journey-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(47, 143, 87, 0.12);
  color: var(--accent-strong);
  font-weight: 400;
}

.prestart-journey-copy {
  display: grid;
  gap: 4px;
}

.prestart-journey-copy strong {
  color: var(--text);
  font-size: 0.95rem;
}

.prestart-journey-copy span {
  color: var(--text-soft);
  font-size: 0.89rem;
  line-height: 1.45;
}

.prestart-cta {
  display: grid;
  gap: 12px;
}

.prestart-actions {
  display: contents;
}

.prestart-action-note {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.5;
}

.status-request-summary strong,
.prestart-info-note strong {
  color: var(--accent-strong);
  font-weight: 400;
}

#generator-request-card .prestart-hero {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

#generator-request-card .prestart-title {
  font-size: 1.18rem;
}

@media (min-width: 861px) {
  #generator-request-card .prestart-title {
    max-width: 100%;
    font-size: clamp(1.06rem, 1.7vw, 1.18rem);
    white-space: nowrap;
  }
}

#generator-request-card .status-request-summary {
  line-height: 1.55;
}

#generator-request-card .prestart-mode-pill {
  min-width: 0;
  width: 100%;
  padding: 14px 16px;
  box-shadow: none;
}

#generator-request-card .prestart-journey {
  grid-template-columns: 1fr;
  gap: 10px;
}

#generator-request-card .prestart-journey-item {
  padding: 14px 15px;
}

#generator-request-card .prestart-action-note {
  font-size: 0.88rem;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 22px 20px;
  border-radius: 26px;
  border-color: rgba(79, 183, 128, 0.28);
  background:
    radial-gradient(circle at top right, rgba(211, 246, 225, 0.74), transparent 34%),
    linear-gradient(rgba(45, 126, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 126, 84, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(253, 255, 253, 0.99), rgba(242, 251, 246, 0.96));
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: 0 24px 54px rgba(45, 105, 69, 0.08);
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-hero-copy {
  gap: 16px;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #137847;
  font-size: 0.82rem;
  font-weight: 450;
  letter-spacing: 0.22em;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-kicker-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: currentColor;
  -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-title {
  color: #1e2b21;
  font-size: 2.14rem;
  line-height: 1.05;
}

#generator-request-card .status-prestart.prestart-logged-credit .status-request-summary {
  color: #3f5148;
  font-size: 1.03rem;
  line-height: 1.62;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-mode-pill {
  display: none;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
  min-width: 0;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 92px;
  padding: 10px 5px 9px;
  border: 1px solid rgba(80, 113, 91, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(27, 75, 48, 0.05);
  text-align: center;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 7px;
  color: #208f55;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: var(--prestart-icon) center / contain no-repeat;
  mask: var(--prestart-icon) center / contain no-repeat;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-icon-music {
  --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l10-2v13'/%3E%3Ccircle cx='6' cy='18' r='3' fill='black' stroke='none'/%3E%3Ccircle cx='16' cy='16' r='3' fill='black' stroke='none'/%3E%3C/svg%3E");
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-icon-mic {
  --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3Cpath d='M8 22h8'/%3E%3C/svg%3E");
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-icon-globe {
  --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 0 18'/%3E%3Cpath d='M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 2em;
  color: #202923;
  font-size: 0.72rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

#generator-request-card .status-prestart.prestart-logged-credit .prestart-detail-card > span:last-child {
  margin-top: 4px;
  color: #51645a;
  font-size: 0.64rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.status-start-button {
  width: 100%;
  min-width: 0;
}

.status-checklist {
  display: grid;
  gap: 12px;
}

.status-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.status-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(130, 89, 61, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.status-step-copy {
  display: grid;
  gap: 4px;
}

.status-step-copy strong {
  color: var(--text);
  font-size: 0.96rem;
}

.status-step-copy span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.status-step.is-done {
  border-color: rgba(47, 139, 130, 0.24);
  background: linear-gradient(180deg, rgba(242, 252, 249, 0.96), rgba(234, 247, 243, 0.9));
}

.status-step.is-done .status-step-icon {
  border-color: rgba(47, 139, 130, 0.42);
  background: linear-gradient(180deg, #dff6ef, #eefbf6);
  color: #1f6e66;
}

.status-step.is-done .status-step-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.status-step.is-active {
  border-color: rgba(47, 143, 87, 0.28);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(249, 239, 228, 0.9));
  box-shadow: 0 14px 28px rgba(47, 143, 87, 0.08);
  transform: translateY(-1px);
}

.status-step.is-active .status-step-icon {
  border-color: rgba(47, 143, 87, 0.44);
  background: radial-gradient(circle at center, rgba(47, 143, 87, 0.26) 0 34%, rgba(255, 255, 255, 0.95) 35% 100%);
}

.status-step.is-error {
  border-color: rgba(173, 60, 49, 0.28);
  background: linear-gradient(180deg, rgba(255, 246, 244, 0.98), rgba(252, 235, 232, 0.9));
}

.status-step.is-error .status-step-icon {
  border-color: rgba(173, 60, 49, 0.42);
  background: rgba(255, 255, 255, 0.94);
  color: #9b3028;
}

.status-step.is-error .status-step-icon::before {
  content: "!";
  font-size: 1rem;
  font-weight: 400;
}

.job-id {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.9rem;
  word-break: break-word;
}

.result-panel {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 239, 229, 0.82));
}

.result-panel audio {
  width: 100%;
}

.secondary-link {
  color: var(--accent-strong);
  font-weight: 300;
  text-decoration: none;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f8f57, #74c98f);
  color: #f8fffa;
  font-weight: 350;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(47, 143, 87, 0.2);
}

.primary-link:hover {
  filter: saturate(1.04);
}

.primary-link.is-disabled {
  pointer-events: none;
  opacity: 0.58;
  box-shadow: none;
  filter: none;
}

.secondary-link:hover {
  text-decoration: underline;
}

.result-meta {
  margin: 0;
  color: var(--text-soft);
}

.lyrics-box {
  margin: 0;
  max-height: 260px;
  overflow: auto;
  padding: 16px;
  border-radius: 18px;
  background: #fffaf6;
  border: 1px solid var(--line);
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.6;
  font-family: "Courier New", monospace;
}

.status-result-summary {
  display: none;
}

.generator-result-panel {
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(211, 246, 225, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 251, 246, 0.9));
}

.generator-result-panel > .section-kicker {
  margin: 0;
  color: #0b7b3f;
  font-size: 0.72rem;
  font-weight: 450;
  letter-spacing: 0.2em;
}

.generator-result-track-card {
  gap: 12px;
}

.generator-result-panel .lyrics-box {
  max-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #45505a;
  font-family: inherit;
}

.generator-result-panel.has-preview .generator-result-player,
.generator-result-panel.has-preview .new-account-track-actions {
  display: none;
}

.generator-result-panel.is-pending .Player-AiMuzica-toggle,
.generator-result-panel.is-pending .Player-AiMuzica-volume-button,
.generator-result-panel.is-pending .Player-AiMuzica-volume {
  cursor: not-allowed;
  opacity: 0.58;
}

.generator-result-panel.is-pending .Player-AiMuzica-bar {
  cursor: not-allowed;
}

.generator-result-panel.is-pending .Player-AiMuzica-progress::after {
  opacity: 0.42;
}

.generate-another-track {
  width: 100%;
  margin-top: 14px;
}

.generate-another-track.hidden {
  display: none !important;
}

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

.debug-panel {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(248, 241, 234, 0.76);
}

.debug-panel summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 350;
}

.debug-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.debug-block {
  display: grid;
  gap: 10px;
}

.debug-block h3 {
  font-size: 1rem;
}

.debug-box {
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(130, 89, 61, 0.1);
  color: var(--text);
  white-space: pre-wrap;
  overflow-x: auto;
  line-height: 1.55;
  font-family: "Courier New", monospace;
}

.wizard-step-hidden {
  display: none !important;
}

.hidden {
  display: none !important;
}

#generator-main-grid.generator-grid-solo.generator-grid-intro-active {
  width: min(100%, 1240px);
}

.form-card.generator-intro-active {
  padding: 34px 34px 30px;
}

#song-form.mobile-form-hidden {
  display: none !important;
}

@media (min-width: 861px) {
  .mobile-landing-screen {
    display: grid;
    gap: 30px;
    padding: 0;
  }

  .mobile-landing-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 0.85fr) minmax(440px, 0.95fr);
    grid-template-areas:
      "visual copy"
      "visual chips"
      "visual button";
    align-items: center;
    gap: 20px 46px;
    padding: 38px 42px 36px;
    border: 1px solid rgba(202, 230, 214, 0.92);
    border-radius: 40px;
    background:
      radial-gradient(circle at 82% 26%, rgba(228, 248, 235, 0.72), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 253, 250, 0.97));
    box-shadow:
      0 28px 68px rgba(47, 87, 61, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    overflow: hidden;
  }

  .mobile-landing-card::before {
    content: "";
    position: absolute;
    right: -36px;
    bottom: 74px;
    width: 420px;
    height: 240px;
    border-radius: 50%;
    background: repeating-radial-gradient(ellipse at 58% 72%, rgba(159, 235, 206, 0.26) 0 2px, transparent 2px 13px);
    opacity: 0.42;
    transform: rotate(-7deg);
    mask-image: linear-gradient(115deg, transparent 12%, rgba(0, 0, 0, 0.96) 42%);
    pointer-events: none;
  }

  .mobile-landing-card::after {
    content: "";
    position: absolute;
    top: 48px;
    right: 56px;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #22b95c, #6fd38b);
    -webkit-mask: url("/lucide-music-4.svg") center / contain no-repeat;
    mask: url("/lucide-music-4.svg") center / contain no-repeat;
    opacity: 0.92;
    pointer-events: none;
  }

  .mobile-landing-hero {
    grid-area: visual;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin: 0;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(204, 230, 216, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 249, 0.96));
    box-shadow:
      0 24px 42px rgba(47, 87, 61, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .mobile-landing-hero::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    border: 1px solid rgba(223, 239, 230, 0.92);
    pointer-events: none;
  }

  .mobile-landing-hero-image {
    display: block;
    flex: 0 0 auto;
    width: auto;
    max-width: min(100%, 610px);
    height: auto;
    border-radius: 24px;
    aspect-ratio: 1408 / 1117;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(69, 113, 82, 0.18));
  }

  .mobile-landing-copy {
    grid-area: copy;
    position: relative;
    display: grid;
    gap: 14px;
    text-align: left;
    align-content: start;
    padding-top: 10px;
    width: min(100%, 560px);
  }

  .mobile-landing-intro-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    width: fit-content;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(190, 227, 205, 0.92);
    background: linear-gradient(180deg, rgba(246, 252, 247, 0.98), rgba(233, 247, 237, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .mobile-landing-intro-pill img {
    width: 16px;
    height: 16px;
  }

  .mobile-landing-copy-note {
    display: none;
  }

  .mobile-landing-copy h3 {
    margin: 0;
    max-width: 9.8ch;
    color: #1f2822;
    font-family: var(--font-display);
    font-size: clamp(2.95rem, 4.15vw, 4.45rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }

  .mobile-landing-title-highlight {
    position: relative;
    width: fit-content;
    color: #2fbf66;
    white-space: nowrap;
  }

  .mobile-landing-title-highlight::after {
    content: "";
    position: absolute;
    left: 48%;
    bottom: -10px;
    width: 88%;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(87, 213, 120, 0.02), rgba(87, 213, 120, 0.56), rgba(87, 213, 120, 0.02));
    transform: translateX(-50%) rotate(-2.2deg);
    filter: blur(0.2px);
  }

  .mobile-landing-copy-primary,
  .mobile-landing-copy-secondary {
    margin: 0;
    color: #617669;
    max-width: 34ch;
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .mobile-landing-copy-secondary {
    max-width: none;
    font-size: 1rem;
    margin-top: 2px;
    white-space: nowrap;
  }

  .mobile-landing-chips {
    grid-area: chips;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }

  .mobile-landing-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    padding: 0 24px;
    border-radius: 22px;
    border: 1px solid rgba(213, 231, 221, 0.96);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 26px rgba(41, 73, 52, 0.05);
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 400;
  }

  .mobile-landing-chip img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .mobile-landing-start {
    grid-area: button;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 60px;
    align-items: center;
    justify-self: flex-start;
    width: min(100%, 430px);
    min-height: 78px;
    gap: 8px;
    padding: 0 18px 0 22px;
    border-radius: 24px;
    font-size: 1.28rem;
    background: linear-gradient(135deg, #149b46, #5cc978);
    box-shadow: 0 24px 38px rgba(47, 143, 87, 0.24);
  }

  .mobile-landing-start-spark {
    display: inline-flex;
    justify-self: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .mobile-landing-start > span:nth-child(2) {
    justify-self: center;
    margin-right: 0;
  }

  .mobile-landing-start-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 999px;
    background:
      rgba(255, 255, 255, 0.14)
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 10px 20px rgba(20, 90, 40, 0.14);
  }

}

.admin-card {
  margin-top: 24px;
}

.hero-actions {
  margin-top: 1rem;
}

.account-grid {
  align-items: start;
}

.account-sidebar {
  display: grid;
  gap: 24px;
  align-items: start;
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.account-grid.account-grid-solo {
  grid-template-columns: minmax(320px, 430px);
  justify-content: center;
  min-height: calc(100vh - 170px);
  align-content: start;
  padding-top: clamp(18px, 7vh, 64px);
}

.account-auth-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 60;
  display: none;
  width: min(100%, 360px);
  max-width: calc(100vw - 32px);
  justify-self: center;
  place-items: center;
  gap: 16px;
  padding: 30px 26px 28px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 143, 87, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 247, 0.94));
  box-shadow: 0 26px 58px rgba(30, 64, 45, 0.1);
  text-align: center;
  transform: translate(-50%, -50%);
}

body.account-auth-checking #account-auth-loading {
  display: grid;
}

body.account-auth-checking #account-auth-card,
body.account-auth-checking #account-history-card,
body.account-auth-checking #account-sidebar,
body.account-auth-checking #mobile-account-dashboard,
body.account-auth-checking #mobile-dashboard-tabbar {
  display: none !important;
}

body.account-auth-checking #account-main-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  min-height: 0;
  padding-top: 0;
}

.account-auth-vinyl {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle, rgba(47, 143, 87, 0.1) 0 48%, transparent 49%),
    linear-gradient(180deg, rgba(234, 249, 239, 0.96), rgba(217, 244, 228, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(22, 143, 80, 0.14);
}

.account-auth-vinyl-disc {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #f9fff9 0 5px, #168f50 6px 13px, transparent 14px),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 6px),
    conic-gradient(from 18deg, #0f7f48, #55cf8e, #177e4c, #8ee7b7, #0f7f48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    inset 0 0 0 12px rgba(8, 70, 43, 0.08),
    0 10px 22px rgba(22, 143, 80, 0.18);
  animation: account-vinyl-spin 1.15s linear infinite;
}

.account-auth-vinyl-disc::before,
.account-auth-vinyl-disc::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.account-auth-vinyl-disc::before {
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 0 7px rgba(11, 91, 53, 0.08),
    0 0 0 16px rgba(255, 255, 255, 0.08);
}

.account-auth-vinyl-disc::after {
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 26% 72%, rgba(255, 255, 255, 0.2));
  mix-blend-mode: screen;
}

.account-auth-loading-copy {
  display: grid;
  gap: 5px;
}

.account-auth-loading-copy strong {
  color: #1d2a23;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.account-auth-loading-copy span {
  color: #5b6b61;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

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

@media (prefers-reduced-motion: reduce) {
  .account-auth-vinyl-disc {
    animation-duration: 5s;
  }
}

.account-signout-button {
  width: 100%;
  min-width: 0;
}

.new-account-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  align-items: start;
}

.new-account-status-card {
  display: grid;
  gap: 24px;
}

.new-account-heading {
  margin-bottom: 0;
}

.new-account-payment-banner {
  margin-bottom: 0;
}

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

.new-account-summary-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 238, 0.76));
  box-shadow: var(--shadow-sm);
}

.new-account-summary-item span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 350;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.new-account-summary-item strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
  word-break: break-word;
}

.new-account-live-block {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 241, 233, 0.84));
  box-shadow: var(--shadow-sm);
}

.new-account-progress-wrap {
  margin-bottom: 0;
}

.new-account-provider-status {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.new-account-status-checklist {
  margin-top: 4px;
}

.new-account-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.new-account-auth-shell {
  position: sticky;
  top: 20px;
}

.new-account-auth-card {
  max-width: none;
  min-height: auto;
  justify-self: stretch;
}

.new-account-auth-recommendation {
  margin-bottom: 0;
  border-color: rgba(47, 139, 130, 0.18);
  background: rgba(237, 248, 243, 0.96);
  color: #1f5a43;
}

.new-account-session {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(47, 139, 130, 0.16);
  background: linear-gradient(180deg, rgba(245, 253, 250, 0.98), rgba(236, 247, 244, 0.94));
  box-shadow: var(--shadow-sm);
}

.new-account-session-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 139, 130, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: #1f6e66;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.new-account-session-copy,
.new-account-session-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.new-account-session-copy strong {
  color: var(--text);
}

.new-account-session-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.new-account-result-panel {
  margin-top: 0;
}

.account-auth-card {
  width: 100%;
  max-width: 440px;
  min-height: 450px;
  justify-self: center;
  padding: 30px 28px 26px;
  border-radius: 28px;
  display: grid;
  align-content: start;
  gap: 1rem;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(47, 143, 87, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.94));
  box-shadow: 0 28px 64px rgba(41, 73, 52, 0.12);
}

.account-auth-heading {
  margin-bottom: 0.15rem;
}

.account-auth-heading h2 {
  color: var(--text);
  font-size: clamp(2rem, 2.5vw, 2.45rem);
}

.account-auth-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.account-auth-banner {
  margin-bottom: 0;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  border-color: rgba(47, 143, 87, 0.16);
  background: rgba(255, 244, 234, 0.96);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 300;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.account-auth-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.account-auth-provider,
.account-auth-primary {
  width: 100%;
  min-width: 0;
}

.account-auth-provider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(41, 73, 52, 0.05);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.account-auth-provider:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 87, 0.28);
  background: linear-gradient(180deg, rgba(255, 245, 237, 1), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 28px rgba(41, 73, 52, 0.08);
}

.account-auth-provider:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.account-auth-provider.is-open {
  border-color: rgba(47, 143, 87, 0.34);
  background: linear-gradient(180deg, rgba(255, 241, 229, 0.98), rgba(247, 252, 248, 0.96));
  box-shadow: 0 16px 30px rgba(47, 143, 87, 0.09);
}

.account-auth-provider-copy {
  display: grid;
  gap: 0.2rem;
}

.account-auth-provider-copy strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.15;
}

.account-auth-provider-copy span {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.account-auth-provider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(130, 89, 61, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.account-auth-provider-icon.email {
  color: var(--accent-strong);
  background: rgba(243, 208, 187, 0.45);
  border-color: rgba(47, 143, 87, 0.12);
}

.account-auth-provider-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.account-auth-email-panel {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.96), rgba(255, 255, 255, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 24px rgba(41, 73, 52, 0.05);
}

.account-auth-email-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 350;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-auth-email-panel input {
  border-color: rgba(130, 89, 61, 0.14);
  background: rgba(255, 253, 251, 0.96);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.account-auth-email-panel input::placeholder {
  color: rgba(134, 108, 94, 0.7);
}

.account-auth-email-panel input:focus {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(47, 143, 87, 0.44);
  box-shadow: 0 0 0 4px rgba(47, 143, 87, 0.12);
  transform: none;
}

.account-auth-primary {
  padding-block: 15px;
}

.account-auth-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  color: rgba(134, 108, 94, 0.78);
  font-size: 0.78rem;
  font-weight: 350;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-auth-divider::before,
.account-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(130, 89, 61, 0.14);
}

.account-auth-divider::before {
  margin-right: 12px;
}

.account-auth-divider::after {
  margin-left: 12px;
}

.account-auth-status {
  min-height: 1.5rem;
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.account-auth-card .section-kicker {
  margin-bottom: 8px;
  color: var(--accent-strong);
}

.account-auth-card .status-copy p,
.account-auth-card .config-banner {
  margin: 0;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.account-history-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.account-history-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(108px, 1fr));
  align-items: center;
  gap: 0.45rem;
  width: min(100%, 270px);
  padding: 0.42rem;
  border-radius: 20px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 247, 0.82)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 26px rgba(36, 79, 55, 0.06);
}

.account-history-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  border-color: transparent;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.48);
  color: #52625a;
  font-size: 0.84rem;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}

.account-history-toggle::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask: var(--account-history-tab-icon) center / contain no-repeat;
  mask: var(--account-history-tab-icon) center / contain no-repeat;
}

#account-history-audio-tab {
  --account-history-tab-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l10-2v13'/%3E%3Ccircle cx='6' cy='18' r='3' fill='black' stroke='none'/%3E%3Ccircle cx='16' cy='16' r='3' fill='black' stroke='none'/%3E%3Cpath d='M19 3v4'/%3E%3C/svg%3E");
}

#account-history-payments-tab {
  --account-history-tab-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 7V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1'/%3E%3Cpath d='M17 12h4v5h-4a2.5 2.5 0 0 1 0-5Z'/%3E%3Cpath d='M17 14.5h.01'/%3E%3C/svg%3E");
}

.account-history-toggle.is-active {
  color: #ffffff;
}

#account-history-audio-tab.is-active {
  border-color: rgba(31, 143, 84, 0.2);
  background: linear-gradient(135deg, #168f50, #4abd7b);
  box-shadow: 0 14px 26px rgba(31, 143, 84, 0.2);
}

#account-history-payments-tab.is-active {
  border-color: rgba(28, 111, 149, 0.2);
  background: linear-gradient(135deg, #126b91, #4ea8c8);
  box-shadow: 0 14px 26px rgba(28, 111, 149, 0.18);
}

.account-history-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(47, 143, 87, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(211, 246, 225, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 249, 0.82));
  box-shadow: 0 16px 34px rgba(36, 79, 55, 0.06);
  margin-bottom: 1rem;
}

.account-history-search-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.account-history-search-shell:focus-within {
  border-color: rgba(47, 143, 87, 0.26);
  box-shadow:
    var(--shadow-sm),
    0 0 0 4px rgba(47, 143, 87, 0.08);
}

.account-history-search-icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 2px solid rgba(134, 108, 94, 0.78);
  border-radius: 999px;
}

.account-history-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -2px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(134, 108, 94, 0.78);
  transform: rotate(45deg);
}

.account-history-search-shell input {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.account-history-search-shell input:focus {
  outline: none;
}

.account-history-search-clear {
  white-space: nowrap;
}

.account-history-summary {
  margin: 0;
  padding: 0.55rem 0 0.15rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(47, 143, 87, 0.22);
  background: transparent;
  color: #4f6258;
  font-size: 0.82rem;
  font-weight: 350;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.account-history-summary::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #2f8f57;
  vertical-align: 0.08em;
}

.account-session-panel {
  display: grid;
  gap: 20px;
  position: static;
  top: auto;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(47, 143, 87, 0.08);
  background:
    radial-gradient(circle at 18% 14%, rgba(47, 143, 87, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 255, 254, 0.96));
  box-shadow: 0 24px 56px rgba(30, 64, 45, 0.09);
}

.account-session-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.account-session-heading {
  display: grid;
  gap: 0;
}

.account-session-heading h2 {
  color: #1a241f;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.account-session-state {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 139, 130, 0.2);
  background: rgba(225, 245, 234, 0.9);
  color: #1f5a43;
  font-size: 0.82rem;
  font-weight: 350;
  white-space: nowrap;
}

.account-session-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.account-session-state.is-busy {
  border-color: rgba(47, 143, 87, 0.22);
  background: rgba(238, 249, 241, 0.95);
  color: var(--accent-strong);
}

.account-session-profile-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(130, 89, 61, 0.11);
}

.account-session-avatar {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(180deg, #e6f6ee, #d7eee2);
  color: rgba(18, 132, 77, 0.26);
}

.account-session-avatar svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-session-profile-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-session-label,
.account-session-metric-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 350;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-session-email {
  color: var(--text);
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-session-member {
  color: #5c6668;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.account-session-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-block: 0 18px;
  border-bottom: 1px solid rgba(130, 89, 61, 0.12);
}

.account-session-metric {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.account-session-metric + .account-session-metric {
  padding-left: 22px;
  border-left: 1px solid rgba(130, 89, 61, 0.12);
}

.account-session-metric-value {
  color: var(--text);
  font-size: clamp(1.72rem, 3vw, 2.1rem);
  line-height: 1;
}

.account-session-metric-meta {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 300;
}

.account-session-note {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 300;
}

.account-session-latest-payment {
  display: grid;
  gap: 10px;
}

.account-session-payment-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 10px;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px 12px;
  border: 1px solid rgba(47, 143, 87, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  font: inherit;
  text-align: left;
  box-shadow: 0 10px 22px rgba(30, 64, 45, 0.04);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.account-session-payment-card:hover:not(:disabled),
.account-session-payment-card:focus-visible:not(:disabled) {
  border-color: rgba(47, 143, 87, 0.28);
  box-shadow: 0 16px 30px rgba(30, 64, 45, 0.1);
  transform: translateY(-1px);
}

.account-session-payment-card:focus-visible {
  outline: 3px solid rgba(47, 143, 87, 0.16);
  outline-offset: 3px;
}

.account-session-payment-card:disabled {
  cursor: default;
  transform: none;
}

.account-session-payment-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, #6cca8f, #159252);
  color: #ffffff;
}

.account-session-payment-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-session-payment-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.account-session-payment-copy strong,
.account-session-payment-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-session-payment-copy strong {
  color: #22302a;
  font-size: 0.92rem;
  line-height: 1.2;
}

.account-session-payment-copy span {
  color: #5f696b;
  font-size: 0.78rem;
  font-weight: 300;
}

.account-session-payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background: #e6f7ee;
  color: #23824e;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
}

.account-session-payment-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(70, 86, 78, 0.42);
  border-bottom: 2px solid rgba(70, 86, 78, 0.42);
  transform: rotate(-45deg);
}

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

.account-session-actions .primary-button,
.account-session-actions .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.account-session-actions .primary-button {
  gap: 8px;
  background: linear-gradient(135deg, #168f50, #3ac175);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(22, 143, 80, 0.19);
}

.account-session-actions .primary-button::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 7V6a2 2 0 0 0-2-2H7.5A2.5 2.5 0 0 0 5 6.5V18a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H7.5A2.5 2.5 0 0 1 5 4.5'/%3E%3Cpath d='M16 13h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 7V6a2 2 0 0 0-2-2H7.5A2.5 2.5 0 0 0 5 6.5V18a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H7.5A2.5 2.5 0 0 1 5 4.5'/%3E%3Cpath d='M16 13h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-session-actions .secondary-button {
  gap: 8px;
  border-color: rgba(47, 143, 87, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: #116c3d;
}

.account-session-actions .secondary-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-session-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin: -2px 0 0;
  color: rgba(27, 111, 69, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.account-session-footer-status::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-session-footer-status.field-error {
  color: #b24a42;
}

#account-credit-purchase-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(47, 143, 87, 0.08);
  background:
    radial-gradient(circle at 18% 14%, rgba(47, 143, 87, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 255, 254, 0.96));
  box-shadow: 0 24px 56px rgba(30, 64, 45, 0.09);
}

#account-credit-purchase-card .section-heading {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(130, 89, 61, 0.1);
}

#account-credit-purchase-card .section-kicker {
  margin: 0 0 8px;
  color: #157444;
  font-size: 0.72rem;
  font-weight: 350;
  letter-spacing: 0.14em;
}

#account-credit-purchase-card .section-heading h2 {
  margin: 0;
  color: #1a241f;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.7vw, 2.28rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.account-credit-offers {
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.account-credit-offer {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(30, 64, 45, 0.045);
}

.account-credit-offer input {
  width: 17px;
  height: 17px;
  accent-color: #168f50;
}

.account-credit-offer::after {
  content: "";
  width: 10px;
  height: 6px;
  justify-self: center;
  border-left: 2px solid #168f50;
  border-bottom: 2px solid #168f50;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.18s ease;
}

.account-credit-offer:has(input:checked)::after {
  opacity: 1;
}

.account-credit-offer-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.account-credit-offer-copy strong {
  color: var(--text);
  overflow: hidden;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-credit-offer-copy span {
  color: var(--text-soft);
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-credit-purchase-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 0;
  margin: 2px 0 0;
  color: rgba(27, 111, 69, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.account-credit-purchase-status p {
  margin: 0;
}

.account-credit-purchase-status::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 19 6.2v5.7c0 4.05-2.85 7.8-7 8.9-4.15-1.1-7-4.85-7-8.9V6.2z'/%3E%3Cpath d='m9.3 12.1 1.8 1.8 3.9-4.1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 19 6.2v5.7c0 4.05-2.85 7.8-7 8.9-4.15-1.1-7-4.85-7-8.9V6.2z'/%3E%3Cpath d='m9.3 12.1 1.8 1.8 3.9-4.1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-credit-purchase-status.field-error {
  color: #b24a42;
}

.account-credit-purchase-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.account-credit-purchase-actions .primary-button,
.account-credit-purchase-actions .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.account-credit-purchase-actions .primary-button {
  gap: 8px;
  background: linear-gradient(135deg, #168f50, #3ac175);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(22, 143, 80, 0.19);
}

.account-credit-purchase-actions .primary-button::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-credit-purchase-actions .primary-button::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.account-credit-purchase-actions .secondary-button {
  gap: 8px;
  border-color: rgba(47, 143, 87, 0.28);
  background: rgba(255, 255, 255, 0.9);
  color: #116c3d;
}

.account-credit-purchase-actions .secondary-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.payment-history-card .order-details {
  margin-top: 0.9rem;
}

.payment-history-card .order-card-trigger h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.payment-history-card .order-card-trigger:hover h3 {
  color: var(--text);
}

.payment-status-pill-paid {
  border-color: rgba(47, 139, 130, 0.18);
  background: #eaf7ef;
  color: #1f746d;
}

.payment-status-pill-failed {
  border-color: rgba(173, 60, 49, 0.18);
  background: #fff1ef;
  color: #a94840;
}

.payment-status-pill-pending {
  border-color: rgba(47, 143, 87, 0.18);
  background: #eef9f1;
  color: var(--accent-strong);
}

.account-history-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.account-history-page-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  flex: 1;
}

.account-history-page-button,
.account-history-page-nav {
  min-width: 0;
}

.account-history-page-button.is-active {
  border-color: rgba(47, 143, 87, 0.24);
  background: linear-gradient(180deg, rgba(241, 251, 243, 0.96), rgba(255, 255, 255, 0.84));
  color: var(--accent-strong);
  box-shadow: var(--shadow-sm);
}

.account-history-page-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  color: var(--text-muted);
  font-weight: 350;
}

.credit-balance-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 139, 130, 0.22);
  background: var(--accent-cool-soft);
  color: #1f5a43;
  font-size: 0.94rem;
  font-weight: 350;
}

.compact-credit {
  padding: 8px 12px;
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .account-grid.account-grid-solo {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 0;
  }

  .account-auth-loading {
    width: min(100%, 340px);
    margin: 0;
    padding: 26px 20px 24px;
    border-radius: 26px;
  }

  .account-auth-vinyl {
    width: 88px;
    height: 88px;
  }

  .account-auth-vinyl-disc {
    width: 70px;
    height: 70px;
  }

  .account-auth-card {
    max-width: none;
    min-height: auto;
    padding: 24px 20px;
  }

  .account-session-top {
    flex-direction: column;
    align-items: stretch;
  }

  .account-session-state {
    width: fit-content;
  }

  .account-session-metrics,
  .account-session-actions {
    grid-template-columns: 1fr;
  }

  .account-history-toolbar {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    align-items: stretch;
    padding: 0.65rem;
  }

  .account-history-switch {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-history-summary {
    text-align: left;
    white-space: normal;
  }

  .account-history-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .account-history-page-list {
    justify-content: flex-start;
  }
}

.orders-list {
  display: grid;
  gap: 1rem;
}

.order-card {
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.order-card.is-expanded {
  border-color: rgba(47, 143, 87, 0.26);
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 20px 40px rgba(176, 113, 71, 0.08);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.order-card-trigger {
  flex: 1;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.order-card-trigger:focus-visible {
  outline: 2px solid rgba(47, 143, 87, 0.42);
  outline-offset: 8px;
  border-radius: 12px;
}

.order-card-artwork,
.order-card-meta-stack {
  display: none;
}

.order-card-trigger-copy {
  display: grid;
}

.order-card-title {
  display: block;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 400;
  line-height: 1.15;
  transition: color 0.18s ease;
}

.order-card-trigger h3 {
  transition: color 0.18s ease;
}

.order-card-trigger:hover .order-card-title,
.order-card-trigger:hover h3 {
  color: var(--accent);
}

.order-card-side {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

.order-card-chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(130, 89, 61, 0.5);
  border-bottom: 2px solid rgba(130, 89, 61, 0.5);
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.order-card.is-expanded .order-card-chevron {
  transform: rotate(-135deg);
  border-color: rgba(47, 143, 87, 0.72);
}

.order-meta {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.order-toggle-hint {
  margin-top: 0.45rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
}

.order-note {
  margin-top: 0.85rem;
  color: var(--muted);
}

.order-media-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.order-audio {
  width: 100%;
  margin-top: 0;
}

.order-media-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.order-download-link {
  min-width: 134px;
}

.order-gift-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 116px;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #32a775;
  background: #ffffff;
  color: #168457;
  font-weight: 450;
  box-shadow: none;
}

.order-gift-link::before {
  content: "";
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 1.12em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 8h20v4H2z'/%3E%3Cpath d='M12 8v12'/%3E%3Cpath d='M12 8H8a2 2 0 1 1 2-2c0 2 2 2 2 2z'/%3E%3Cpath d='M12 8h4a2 2 0 1 0-2-2c0 2-2 2-2 2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8H4v-8'/%3E%3Cpath d='M2 8h20v4H2z'/%3E%3Cpath d='M12 8v12'/%3E%3Cpath d='M12 8H8a2 2 0 1 1 2-2c0 2 2 2 2 2z'/%3E%3Cpath d='M12 8h4a2 2 0 1 0-2-2c0 2-2 2-2 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.order-gift-link:hover {
  border-color: #1f9b63;
  background: #f7fffb;
  color: #0f8350;
  box-shadow: 0 10px 20px rgba(13, 149, 78, 0.08);
}

.gift-dialog-open {
  overflow: hidden;
}

.gift-dialog {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 24, 18, 0.32);
  backdrop-filter: blur(14px);
}

.gift-dialog.hidden {
  display: none !important;
}

.gift-dialog-sheet {
  position: relative;
  display: grid;
  width: min(760px, 100%);
  max-height: min(94vh, 900px);
  overflow: auto;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(31, 73, 48, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 0%, rgba(238, 255, 247, 0.86), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 246, 234, 0.72), transparent 30%),
    #ffffff;
  box-shadow:
    0 34px 90px rgba(21, 45, 31, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gift-dialog-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 4px 58px 0;
  text-align: center;
}

.gift-dialog-title-block {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.gift-dialog-head h2 {
  margin: 0;
  color: #14271c;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.gift-dialog-track {
  margin: 0;
  color: #6d7b71;
  font-size: clamp(1.12rem, 2.6vw, 1.42rem);
  font-weight: 450;
  line-height: 1.25;
}

.gift-dialog-close {
  position: absolute;
  top: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(31, 73, 48, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #14271c;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(22, 57, 35, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.gift-dialog-close:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 118, 74, 0.26);
  box-shadow: 0 16px 34px rgba(22, 57, 35, 0.12);
}

.gift-dialog-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
}

.gift-dialog-preview {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 58px;
  gap: 22px;
  align-items: center;
  padding: 14px 26px 14px 14px;
  border: 1px solid rgba(31, 73, 48, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 18px 48px rgba(27, 58, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.gift-dialog-cover {
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.76) 0 9%, transparent 10%),
    linear-gradient(135deg, #315d45, #d69d5f);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.25rem;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 12px 28px rgba(20, 39, 28, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.78);
}

.gift-dialog-cover.has-cover {
  color: transparent;
}

.gift-dialog-preview-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.gift-dialog-preview-copy strong {
  overflow: hidden;
  color: #14271c;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 750;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-dialog-preview-copy span {
  overflow: hidden;
  color: #6d7b71;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-dialog-preview-play {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(31, 73, 48, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #168553;
  box-shadow: 0 12px 28px rgba(22, 87, 52, 0.08);
}

.gift-dialog-preview-play::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid currentColor;
  content: "";
}

.gift-card-style-fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.gift-card-style-fieldset legend {
  margin: 0 0 8px;
  padding: 0;
  color: #14271c;
  font-size: clamp(1.18rem, 2.7vw, 1.55rem);
  font-weight: 650;
  line-height: 1.2;
}

.gift-card-carousel {
  --gift-card-carousel-drag: 0px;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 2px 0 0;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.gift-card-carousel:focus-visible {
  border-radius: 24px;
  box-shadow: 0 0 0 3px rgba(47, 143, 87, 0.16);
}

.gift-card-carousel.is-dragging {
  cursor: grabbing;
}

.gift-card-carousel.is-dragging .gift-card-style-option {
  transition:
    filter 120ms ease,
    opacity 120ms ease;
}

.gift-card-style-options {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(195px, 27vw, 260px);
  margin-inline: -24px;
  overflow: hidden;
  perspective: 1200px;
}

.gift-card-style-option {
  --gift-card-carousel-side-offset: clamp(115px, 21vw, 165px);
  --gift-card-carousel-far-offset: clamp(165px, 29vw, 230px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  width: clamp(109px, 19vw, 143px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.68);
  transform-origin: center;
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 260ms ease;
}

.gift-card-style-option.is-selected {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--gift-card-carousel-drag)), -50%) scale(1);
}

.gift-card-style-option.is-before,
.gift-card-style-option.is-after {
  z-index: 2;
  opacity: 0.54;
  pointer-events: auto;
  filter: saturate(0.82) brightness(0.96);
}

.gift-card-style-option.is-before {
  transform: translate(calc(-50% - var(--gift-card-carousel-side-offset) + var(--gift-card-carousel-drag)), -50%) rotateY(12deg) scale(0.78);
}

.gift-card-style-option.is-after {
  transform: translate(calc(-50% + var(--gift-card-carousel-side-offset) + var(--gift-card-carousel-drag)), -50%) rotateY(-12deg) scale(0.78);
}

.gift-card-style-option.is-far-before {
  transform: translate(calc(-50% - var(--gift-card-carousel-far-offset) + var(--gift-card-carousel-drag)), -50%) rotateY(18deg) scale(0.62);
}

.gift-card-style-option.is-far-after {
  transform: translate(calc(-50% + var(--gift-card-carousel-far-offset) + var(--gift-card-carousel-drag)), -50%) rotateY(-18deg) scale(0.62);
}

.gift-card-style-option:hover .gift-card-style-preview {
  filter: brightness(1.04);
}

.gift-card-style-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.gift-card-style-preview {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 720 / 1280;
  min-width: 0;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(236, 242, 236, 0.72);
  box-shadow:
    0 26px 52px rgba(25, 47, 34, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition:
    filter 180ms ease,
    box-shadow 180ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.gift-card-style-preview img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.gift-card-style-option.is-selected .gift-card-style-preview {
  box-shadow:
    0 30px 62px rgba(25, 47, 34, 0.2),
    0 0 0 2px rgba(47, 143, 87, 0.34),
    0 0 34px rgba(47, 143, 87, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.gift-card-style-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gift-card-style-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 72, 55, 0.18);
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease,
    width 160ms ease;
}

.gift-card-style-dots button.is-selected {
  width: 20px;
  background: #2f8f57;
}

.gift-card-style-dots button:focus-visible {
  outline: 2px solid rgba(47, 143, 87, 0.36);
  outline-offset: 3px;
}

.gift-dialog-details {
  display: grid;
  gap: 14px;
}

.gift-dialog-details h3 {
  margin: 0;
  color: #14271c;
  font-size: clamp(1.24rem, 2.8vw, 1.6rem);
  font-weight: 650;
  line-height: 1.2;
}

.gift-dialog-fields {
  display: grid;
  gap: 12px;
}

.gift-dialog-field {
  --gift-field-icon: none;
  display: grid;
  grid-template-columns: 28px auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(31, 73, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #14271c;
  box-shadow:
    0 12px 32px rgba(23, 54, 34, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.gift-dialog-field::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #7b8a80;
  -webkit-mask: var(--gift-field-icon) center / contain no-repeat;
  mask: var(--gift-field-icon) center / contain no-repeat;
}

.gift-dialog-field-recipient {
  --gift-field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 20a6 6 0 0 0-12 0'/%3E%3Ccircle cx='12' cy='10' r='4'/%3E%3C/svg%3E");
}

.gift-dialog-field-sender {
  --gift-field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20a4 4 0 0 0-8 0'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M22 20a4 4 0 0 0-4-4'/%3E%3Cpath d='M18 7a3 3 0 0 1 0 6'/%3E%3Cpath d='M2 20a4 4 0 0 1 4-4'/%3E%3Cpath d='M6 7a3 3 0 0 0 0 6'/%3E%3C/svg%3E");
}

.gift-dialog-message-field {
  --gift-field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 0 1-8 8H7l-4 2 1.4-4.2A8 8 0 1 1 21 12Z'/%3E%3C/svg%3E");
}

.gift-dialog-field span {
  color: #7b8a80;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.gift-dialog-fields input,
.gift-dialog-fields textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #111d16;
  font: inherit;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.35;
  outline: none;
}

.gift-dialog-fields input {
  min-height: 58px;
  padding: 0;
}

.gift-dialog-fields textarea {
  min-height: 58px;
  max-height: 150px;
  padding: 18px 0 0;
  resize: vertical;
}

.gift-dialog-link-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px dashed rgba(47, 143, 87, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 255, 250, 0.76)),
    rgba(235, 249, 239, 0.48);
  color: #14271c;
}

.gift-dialog-link-icon {
  display: grid;
  width: 48px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: rgba(229, 245, 235, 0.9);
  color: #14794b;
}

.gift-dialog-link-icon::before {
  width: 24px;
  height: 24px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.1 0l2-2a5 5 0 0 0-7.1-7.1l-1.1 1.1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.1 0l-2 2A5 5 0 0 0 12 20.1l1.1-1.1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.1 0l2-2a5 5 0 0 0-7.1-7.1l-1.1 1.1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.1 0l-2 2A5 5 0 0 0 12 20.1l1.1-1.1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gift-dialog-link-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.gift-dialog-link-copy strong {
  color: #14271c;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
}

#gift-dialog-link {
  min-width: 0;
  overflow: hidden;
  color: #2c3a31;
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#gift-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  min-width: 148px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(100deg, #1c8d54, #5bc978);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(38, 154, 86, 0.24);
}

#gift-copy-button::after {
  width: 20px;
  height: 20px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='10' height='10' rx='2'/%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='10' height='10' rx='2'/%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gift-dialog-actions {
  display: grid;
  gap: 20px;
}

.gift-dialog-main-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gift-dialog-main-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 66px;
  min-width: 0;
  border-radius: 999px;
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  font-weight: 750;
}

#gift-save-button {
  border: 1px solid rgba(31, 118, 74, 0.58);
  background: rgba(255, 255, 255, 0.72);
  color: #176b43;
  box-shadow: none;
}

#gift-view-button {
  border: 0;
  background: linear-gradient(100deg, #199152, #5fca7a);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(41, 154, 86, 0.24);
}

#gift-save-button::before,
#gift-view-button::before {
  width: 25px;
  height: 25px;
  background: currentColor;
  content: "";
}

#gift-save-button::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2Z'/%3E%3Cpath d='M17 21v-8H7v8'/%3E%3Cpath d='M7 3v5h8'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2Z'/%3E%3Cpath d='M17 21v-8H7v8'/%3E%3Cpath d='M7 3v5h8'/%3E%3C/svg%3E") center / contain no-repeat;
}

#gift-view-button::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 0-5C11 2 12 7 12 7Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0 0-5C13 2 12 7 12 7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 0-5C11 2 12 7 12 7Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0 0-5C13 2 12 7 12 7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gift-dialog-share-block {
  display: grid;
  gap: 18px;
}

.gift-dialog-share-title {
  display: grid;
  grid-template-columns: minmax(36px, 1fr) auto minmax(36px, 1fr);
  align-items: center;
  gap: 28px;
  color: #7d8a81;
}

.gift-dialog-share-title span {
  height: 1px;
  background: rgba(31, 73, 48, 0.14);
}

.gift-dialog-share-title strong {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.gift-dialog-share-actions {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 46px);
}

.gift-dialog-actions button {
  cursor: pointer;
}

.gift-dialog-share-button {
  --gift-share-icon: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  padding: 0;
  border: 1px solid rgba(31, 73, 48, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #22533a;
  box-shadow:
    0 16px 36px rgba(31, 73, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

.gift-dialog-share-button::before {
  content: "";
  width: 31px;
  height: 31px;
  background: currentColor;
  -webkit-mask: var(--gift-share-icon) center / contain no-repeat;
  mask: var(--gift-share-icon) center / contain no-repeat;
}

.gift-dialog-share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 87, 0.24);
  box-shadow:
    0 20px 38px rgba(31, 73, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.gift-dialog-share-whatsapp {
  --gift-share-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.55 2 2.08 6.45 2.08 11.92c0 1.75.46 3.46 1.34 4.97L2 22l5.24-1.37a10 10 0 0 0 4.8 1.22h.01c5.49 0 9.96-4.45 9.96-9.93S17.53 2 12.04 2Zm5.79 14.22c-.24.68-1.39 1.29-1.94 1.37-.5.08-1.13.11-1.82-.11-.42-.13-.96-.31-1.65-.61-2.9-1.25-4.8-4.16-4.95-4.35-.14-.19-1.18-1.57-1.18-3 0-1.43.75-2.14 1.02-2.43.27-.29.59-.36.78-.36h.57c.18.01.43-.07.67.51.25.6.84 2.06.92 2.21.08.15.13.33.03.52-.1.2-.15.32-.3.49-.15.17-.32.38-.45.51-.15.15-.31.31-.13.6.18.29.79 1.3 1.7 2.11 1.17 1.04 2.15 1.36 2.44 1.51.3.15.47.13.64-.08.18-.2.74-.86.94-1.16.2-.3.4-.25.67-.15.27.1 1.73.82 2.03.97.3.15.5.22.58.34.09.14.09.78-.15 1.46Z'/%3E%3C/svg%3E");
  color: #10a960;
}

.gift-dialog-share-email {
  --gift-share-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2.4'/%3E%3Cpath d='m4.5 7 7.5 6 7.5-6'/%3E%3C/svg%3E");
  color: #2d7fe7;
}

.gift-dialog-share-print {
  --gift-share-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 9V4h10v5'/%3E%3Cpath d='M7 18H5a2 2 0 0 1-2-2v-4a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v4a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M7 14h10v6H7z'/%3E%3Cpath d='M17 12h.01'/%3E%3C/svg%3E");
  color: #60746a;
}

.gift-dialog-actions button:disabled,
.gift-dialog-fields input:disabled,
.gift-dialog-fields textarea:disabled {
  cursor: wait;
  opacity: 0.66;
}

.gift-dialog-status {
  min-height: 1.4em;
  margin: -8px 0 0;
  color: #1f746d;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.gift-dialog-status.hidden {
  display: none;
}

.order-progress-card {
  margin-top: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(47, 143, 87, 0.14);
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.88), rgba(255, 255, 255, 0.92));
}

.order-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--text);
}

.order-progress-head span:last-child {
  color: var(--accent);
  font-weight: 350;
}

.order-progress-bar {
  width: 100%;
  height: 12px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: #dceee2;
  overflow: hidden;
}

.order-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f8f57, #74c98f);
  transition: width 0.28s ease;
}

.order-details {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(130, 89, 61, 0.1);
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.order-detail-item {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(130, 89, 61, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.order-detail-item p:last-child {
  margin-top: 0.25rem;
  color: var(--text);
  font-weight: 300;
}

.order-lyrics-panel {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(130, 89, 61, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.order-lyrics {
  margin: 0.65rem 0 0;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  line-height: 1.65;
  color: var(--text-soft);
}

.order-details-footer {
  justify-self: end;
  color: #65706d;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.order-status-pill {
  margin-bottom: 0;
}

.order-status-pill-processing {
  border-color: rgba(47, 143, 87, 0.2);
  background: #eef9f1;
  color: var(--accent-strong);
}

.order-status-pill-completed {
  border-color: rgba(47, 139, 130, 0.18);
  background: #eaf7ef;
  color: #1f746d;
}

.order-status-pill-failed,
.order-status-pill-expired {
  border-color: rgba(211, 54, 47, 0.24);
  background: #fff0ee;
  color: #c7372f;
}

.order-status-pill-paid,
.order-status-pill-pending {
  border-color: rgba(130, 89, 61, 0.16);
  background: #f8f1e8;
  color: #7e563c;
}

.orders-list .payment-history-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border-color: rgba(47, 143, 87, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(22, 143, 80, 0.08), transparent 9px),
    repeating-linear-gradient(0deg, rgba(47, 143, 87, 0.035) 0 1px, transparent 1px 14px),
    #fffefb;
  box-shadow:
    0 18px 42px rgba(33, 66, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.orders-list .payment-history-card.is-expanded {
  border-color: rgba(47, 143, 87, 0.28);
  background:
    linear-gradient(90deg, rgba(22, 143, 80, 0.1), transparent 9px),
    repeating-linear-gradient(0deg, rgba(47, 143, 87, 0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #fffefb, #f7fcf8);
  box-shadow:
    0 24px 54px rgba(33, 66, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.orders-list .payment-history-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 6px;
  background: linear-gradient(180deg, #17874d, #48bd78);
}

.orders-list .payment-history-card > * {
  position: relative;
  z-index: 1;
}

.orders-list .payment-history-card .order-card-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 2.6vw, 26px) clamp(16px, 2.2vw, 22px);
}

.orders-list .payment-history-card .order-card-header::after {
  content: "";
  position: absolute;
  right: clamp(18px, 2.6vw, 26px);
  bottom: 0;
  left: clamp(24px, 3vw, 32px);
  border-bottom: 1px dashed rgba(47, 143, 87, 0.22);
}

.orders-list .payment-history-card .order-card-trigger {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.orders-list .payment-history-card .order-card-trigger .section-kicker {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 5px 9px;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 87, 0.13);
  border-radius: 999px;
  background: rgba(237, 248, 242, 0.86);
  color: #147b47;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 450;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orders-list .payment-history-card .order-card-trigger h3 {
  margin: 0;
  color: #1c2a22;
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  line-height: 1.1;
}

.orders-list .payment-history-card .order-card-trigger:hover h3 {
  color: #137745;
}

.orders-list .payment-history-card .order-meta {
  max-width: 64ch;
  margin: 0;
  color: #5d6760;
  font-size: 0.88rem;
  font-weight: 325;
  line-height: 1.45;
}

.orders-list .payment-history-card .order-toggle-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 4px 0 0;
  color: #137745;
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.orders-list .payment-history-card .order-toggle-hint::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M5 4h14v18l-3-2-3 2-3-2-3 2-2-1.35V4z'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M8 14h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M5 4h14v18l-3-2-3 2-3-2-3 2-2-1.35V4z'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M8 14h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.orders-list .payment-history-card .order-card-side {
  align-content: space-between;
  justify-items: end;
  min-width: 132px;
  min-height: 92px;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 1px dashed rgba(47, 143, 87, 0.2);
}

.orders-list .payment-history-card .order-status-pill {
  min-height: 30px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 450;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.orders-list .payment-history-card .payment-status-pill-paid {
  border-color: rgba(25, 132, 75, 0.18);
  background: #e8f8ef;
  color: #147745;
}

.orders-list .payment-history-card .payment-status-pill-failed {
  border-color: rgba(181, 62, 52, 0.2);
  background: #fff1ef;
  color: #a33d35;
}

.orders-list .payment-history-card .payment-status-pill-pending {
  border-color: rgba(179, 123, 52, 0.2);
  background: #fff7e7;
  color: #8a5c1f;
}

.orders-list .payment-history-card .order-card-chevron {
  width: 10px;
  height: 10px;
  border-color: rgba(32, 82, 52, 0.48);
}

.orders-list .payment-history-card.is-expanded .order-card-chevron {
  border-color: rgba(19, 119, 69, 0.78);
}

.orders-list .payment-history-card .order-details {
  gap: 14px;
  margin: 0;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.6vw, 26px) clamp(18px, 2.6vw, 26px);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(247, 252, 249, 0.76), rgba(255, 255, 255, 0.86));
}

.orders-list .payment-history-card .order-details-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 143, 87, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
}

.orders-list .payment-history-card .order-detail-item {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 74px;
  padding: 13px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow:
    inset -1px 0 0 rgba(47, 143, 87, 0.1),
    inset 0 -1px 0 rgba(47, 143, 87, 0.1);
}

.orders-list .payment-history-card .order-detail-item .section-kicker {
  margin: 0;
  color: #738078;
  font-size: 0.64rem;
  font-weight: 450;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.orders-list .payment-history-card .order-detail-item p:last-child {
  margin: 0;
  color: #1e2a22;
  font-size: 0.94rem;
  font-weight: 425;
  line-height: 1.25;
  word-break: break-word;
}

.orders-list .payment-history-card .order-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(47, 143, 87, 0.12);
  border-radius: 14px;
  background: rgba(237, 248, 242, 0.7);
  color: #4f6157;
  font-size: 0.88rem;
  font-weight: 325;
  line-height: 1.45;
}

.orders-list .payment-history-card .payment-invoice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.orders-list .payment-history-card .payment-invoice-button {
  align-self: stretch;
  min-width: 116px;
  min-height: 44px;
  border-color: rgba(20, 123, 71, 0.24);
  border-radius: 14px;
  background: #ffffff;
  color: #137745;
  font-size: 0.82rem;
  font-weight: 450;
  box-shadow: 0 12px 24px rgba(24, 90, 52, 0.08);
}

.orders-list .payment-history-card .payment-invoice-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M5 4h14v18l-3-2-3 2-3-2-3 2-2-1.35V4z'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M8 14h5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M5 4h14v18l-3-2-3 2-3-2-3 2-2-1.35V4z'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M8 14h5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.orders-list .payment-history-card .payment-invoice-button.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.orders-list .payment-history-card .payment-invoice-status {
  margin: -3px 0 0;
  color: #53635a;
  font-size: 0.78rem;
  font-weight: 350;
  line-height: 1.35;
}

.orders-list .payment-history-card .payment-invoice-status.field-error {
  color: #a33d35;
}

@media (max-width: 720px) {
  .orders-list .payment-history-card .order-card-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px 15px 20px;
  }

  .orders-list .payment-history-card .order-card-header::after {
    right: 16px;
    left: 20px;
  }

  .orders-list .payment-history-card .order-card-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    min-height: 0;
    padding: 12px 0 0;
    border-top: 1px dashed rgba(47, 143, 87, 0.18);
    border-left: 0;
  }

  .orders-list .payment-history-card .order-details {
    padding: 15px 14px 16px 20px;
  }

  .orders-list .payment-history-card .order-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orders-list .payment-history-card .payment-invoice-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .orders-list .payment-history-card .payment-invoice-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .orders-list .payment-history-card .order-card-trigger .section-kicker {
    font-size: 0.62rem;
  }

  .orders-list .payment-history-card .order-card-trigger h3 {
    font-size: 1.04rem;
  }

  .orders-list .payment-history-card .order-meta,
  .orders-list .payment-history-card .order-note {
    font-size: 0.8rem;
  }

  .orders-list .payment-history-card .order-status-pill {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  .orders-list .payment-history-card .order-details-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.gift-page-shell {
  width: min(980px, calc(100% - 32px));
}

.gift-main {
  display: grid;
  gap: 24px;
}

.gift-hero-card {
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 210, 179, 0.5), transparent 28%),
    radial-gradient(circle at bottom left, rgba(47, 139, 130, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(244, 251, 247, 0.94));
  overflow: hidden;
}

.gift-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
}

.gift-hero-copy {
  display: grid;
  gap: 16px;
}

.gift-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.gift-open-button {
  width: fit-content;
  min-width: 180px;
}

.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gift-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
}

.gift-cover-shell {
  display: grid;
  align-items: center;
}

.gift-cover-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(47, 143, 87, 0.18);
  box-shadow: 0 18px 38px rgba(41, 73, 52, 0.12);
}

.gift-feedback-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.gift-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gift-content {
  display: grid;
  gap: 24px;
}

.gift-message-card {
  display: grid;
  gap: 12px;
  padding: 28px 30px;
  border-color: rgba(130, 89, 61, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98), rgba(247, 252, 248, 0.96));
}

.gift-message {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.22;
}

.gift-message-signature {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 450;
}

.gift-player-card,
.gift-details-card,
.gift-lyrics-card {
  display: grid;
  gap: 18px;
}

.gift-player-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.gift-created-at {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 300;
}

.gift-audio-player {
  width: 100%;
}

.gift-aimuzica-player {
  padding: 12px 14px;
  border: 1px solid rgba(47, 143, 87, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.gift-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gift-copy-feedback {
  margin: 0;
  color: #1f746d;
  font-size: 0.92rem;
  font-weight: 300;
}

.gift-copy-feedback.is-muted {
  color: var(--text-soft);
}

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

.gift-detail-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.gift-detail-label {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gift-detail-value {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.gift-lyrics {
  margin: 0;
  max-height: 420px;
  overflow: auto;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(130, 89, 61, 0.12);
  background: rgba(255, 255, 255, 0.84);
  white-space: pre-wrap;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .sound-step-hero-art {
    justify-self: start;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-legal {
    justify-content: flex-start;
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(197, 236, 224, 0.92);
    border-bottom: 1px solid rgba(197, 236, 224, 0.92);
    flex-wrap: wrap;
  }

  .generator-side-rail {
    position: static;
    top: auto;
  }

  .gift-hero-layout,
  .gift-details-grid {
    grid-template-columns: 1fr;
  }

  .new-account-auth-shell {
    position: static;
    top: auto;
  }

  .account-sidebar {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 1180px) {
  #generator-main-grid {
    width: 100%;
  }

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

  .generator-side-rail {
    position: static;
    top: auto;
  }
}

@media (max-width: 1120px) {
  .top-nav {
    gap: 12px;
    padding: 16px 18px;
  }

  .top-nav-brand-image {
    height: 38px;
    max-width: min(100%, 156px);
  }

  .top-nav-links a {
    min-width: 92px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .auth-menu-email {
    max-width: 118px;
    font-size: 0.82rem;
  }

  .top-nav-auth {
    gap: 8px;
  }

  #auth-menu .secondary-link,
  .top-nav-auth .compact-button,
  .top-nav-auth .credit-balance-pill {
    min-height: 40px;
    font-size: 0.82rem;
  }

  #auth-menu .secondary-link {
    min-width: 88px;
    padding: 0 14px;
  }

  .top-nav-auth .credit-balance-pill,
  .top-nav-auth .compact-button {
    padding: 0 12px;
  }
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: minmax(110px, 0.58fr) auto minmax(0, 0.9fr);
    gap: 8px;
    padding: 14px 16px;
  }

  .top-nav-brand-image {
    height: 34px;
    max-width: min(100%, 136px);
  }

  .top-nav-links a {
    min-width: 78px;
    min-height: 38px;
    gap: 6px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .top-nav-links a::before,
  #auth-menu .secondary-link::before,
  .top-nav-auth .compact-button::before,
  .top-nav-auth .credit-balance-pill::before {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .auth-menu-email {
    max-width: 82px;
    font-size: 0.76rem;
  }

  .top-nav-auth {
    gap: 6px;
  }

  #auth-menu .secondary-link,
  .top-nav-auth .compact-button,
  .top-nav-auth .credit-balance-pill {
    min-height: 36px;
    gap: 6px;
    border-radius: 11px;
    font-size: 0.76rem;
  }

  #auth-menu .secondary-link,
  .top-nav-auth .compact-button {
    min-width: 76px;
    padding: 0 9px;
  }

  .top-nav-auth .credit-balance-pill {
    padding: 0 9px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 18px;
  }

  .top-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 22px;
  }

  .top-nav-auth {
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .top-nav-brand-image {
    height: 36px;
    max-width: min(100%, 260px);
  }

  .site-footer-panel {
    padding: 30px 28px;
    border-radius: 28px;
  }

  .site-footer-grid {
    gap: 20px;
  }

  .site-footer-logo {
    width: min(100%, 320px);
  }

  .site-footer-legal {
    gap: 14px;
  }

  .site-footer-payment-mark {
    min-width: 84px;
    min-height: 46px;
    padding: 10px 14px;
  }

  .auth-menu-email {
    max-width: 100%;
  }

  .order-media-row {
    flex-direction: column;
    align-items: stretch;
  }

  .order-media-actions {
    width: 100%;
  }

  .gift-page-shell {
    width: min(100% - 20px, 980px);
  }

  .gift-player-heading,
  .gift-feedback-actions,
  .gift-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .gift-open-button {
    width: 100%;
  }

  .gift-message-card {
    padding: 22px;
  }

  .gift-dialog {
    padding: 12px;
    align-items: end;
  }

  .gift-dialog-sheet {
    max-height: 92svh;
    gap: 16px;
    padding: 18px;
    border-radius: 24px 24px 18px 18px;
  }

  .gift-dialog-head {
    padding: 8px 48px 0;
  }

  .gift-dialog-head h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .gift-dialog-track {
    font-size: 1rem;
  }

  .gift-dialog-close {
    width: 44px;
    height: 44px;
  }

  .gift-dialog-close svg {
    width: 20px;
    height: 20px;
  }

  .gift-dialog-preview {
    grid-template-columns: 68px minmax(0, 1fr) 42px;
    gap: 10px;
    padding: 10px 12px 10px 10px;
    border-radius: 22px;
  }

  .gift-dialog-cover {
    width: 68px;
    border-radius: 15px;
    font-size: 1.5rem;
  }

  .gift-dialog-preview-copy strong {
    font-size: clamp(1.1rem, 5.4vw, 1.42rem);
  }

  .gift-dialog-preview-copy span {
    font-size: 0.94rem;
  }

  .gift-dialog-preview-play {
    width: 40px;
    height: 40px;
  }

  .gift-dialog-preview-play::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .gift-card-style-options {
    min-height: clamp(168px, 32svh, 220px);
    margin-inline: -18px;
  }

  .gift-card-style-option {
    --gift-card-carousel-side-offset: clamp(83px, 26vw, 109px);
    --gift-card-carousel-far-offset: clamp(123px, 38vw, 160px);
    width: clamp(99px, 29vw, 123px);
  }

  .gift-card-style-preview {
    border-radius: 13px;
  }

  .gift-dialog-details h3,
  .gift-card-style-fieldset legend {
    font-size: 1.24rem;
  }

  .gift-dialog-field {
    grid-template-columns: 24px auto minmax(0, 1fr);
    gap: 10px;
    min-height: 56px;
    padding: 0 14px;
  }

  .gift-dialog-field::before {
    width: 21px;
    height: 21px;
  }

  .gift-dialog-field span {
    font-size: 0.92rem;
  }

  .gift-dialog-fields input {
    min-height: 52px;
  }

  .gift-dialog-fields textarea {
    min-height: 52px;
    padding-top: 16px;
  }

  .gift-dialog-link-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .gift-dialog-link-icon {
    width: 40px;
    height: 54px;
    border-radius: 15px;
  }

  .gift-dialog-link-icon::before {
    width: 21px;
    height: 21px;
  }

  .gift-dialog-link-copy {
    gap: 5px;
  }

  #gift-copy-button {
    min-width: 108px;
    min-height: 48px;
    padding-inline: 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  #gift-copy-button::after {
    width: 17px;
    height: 17px;
  }

  .gift-dialog-actions {
    display: grid;
    gap: 16px;
  }

  .gift-dialog-main-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gift-dialog-main-actions button {
    min-height: 56px;
    gap: 9px;
    font-size: 1rem;
  }

  #gift-save-button::before,
  #gift-view-button::before {
    width: 21px;
    height: 21px;
  }

  .gift-dialog-share-actions {
    gap: 18px;
  }

  .gift-dialog-actions .primary-button,
  .gift-dialog-actions .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .gift-dialog-share-button {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
  }

  .gift-dialog-share-button::before {
    width: 25px;
    height: 25px;
  }

  .order-details-grid {
    grid-template-columns: 1fr;
  }

  .top-nav-brand-image {
    height: 38px;
    max-width: min(100%, 156px);
  }

  .top-nav-links a {
    min-width: 92px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .auth-menu-email {
    max-width: 118px;
    font-size: 0.82rem;
  }

  .top-nav-auth {
    gap: 8px;
  }

  #auth-menu .secondary-link,
  .top-nav-auth .compact-button,
  .top-nav-auth .credit-balance-pill {
    min-height: 40px;
    font-size: 0.82rem;
  }

  #auth-menu .secondary-link {
    min-width: 88px;
    padding: 0 14px;
  }

  .top-nav-auth .credit-balance-pill,
  .top-nav-auth .compact-button {
    padding: 0 12px;
  }

  .hero-copy,
  .hero-panel,
  .form-card,
  .status-card,
  .admin-card {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-stats,
  .wizard-progress,
  .field-row,
  .choice-row,
  .option-grid,
  .genre-substyle-grid,
  .instrument-grid,
  .wizard-footer {
    grid-template-columns: 1fr;
  }

  .wizard-footer {
    padding: 62px 22px 22px;
  }

  .wizard-footer::before {
    top: 22px;
    left: 22px;
    transform: none;
  }

  .wizard-footer-actions {
    width: 100%;
  }

  .wizard-footer-actions .secondary-button,
  .wizard-footer-actions .primary-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .new-account-summary-grid,
  .new-account-session-actions,
  .prestart-journey {
    grid-template-columns: 1fr;
  }

  .sound-step-top-grid,
  .sound-step-bottom-grid,
  .sound-step-substyle-group,
  .sound-step-direction-group {
    margin: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .sound-step-instrument-group {
    margin: 0 22px;
  }

  .sound-step-hero-copy .section-copy {
    white-space: normal;
  }

  .ai-step-hero,
  .ai-step-choice-group {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ai-step-intro {
    white-space: normal;
  }

  .ai-step-detail-panel {
    margin: 0 22px 22px;
    padding: 20px;
  }

  .ai-step-choice-grid,
  .ai-step-detail-grid,
  .ai-mode-card-body {
    grid-template-columns: 1fr;
  }

  .ai-mode-card {
    align-items: start;
    min-height: 0;
  }

  .ai-mode-card-icon {
    width: 64px;
    height: 64px;
  }

  .sound-step-instrument-group .instrument-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .generator-active-job-head,
  .generator-active-job-progress-head {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section-label-row {
    flex-direction: column;
  }

  .lyrics-toggle-block {
    grid-template-columns: 1fr;
  }

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

  .new-account-status-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-payments {
    gap: 10px;
    flex-wrap: wrap;
  }

  .site-footer-payment-mark {
    min-width: 96px;
    min-height: 48px;
    padding: 10px 12px;
  }

  .site-footer-payment-logo {
    height: 22px;
  }

  .site-footer-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .site-footer-legal {
    gap: 12px;
  }

  .sound-step-hero {
    padding: 22px;
  }

  .sound-step-hero-art {
    width: 180px;
    height: 92px;
  }

  .sound-step-hero-icon-note {
    right: 58px;
  }

  .sound-step-hero-icon-notes {
    right: 24px;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(47, 143, 87, 0.12), transparent 30%),
      radial-gradient(circle at top right, rgba(47, 125, 103, 0.08), transparent 28%),
      linear-gradient(180deg, #fbfefb 0%, #eef5f0 100%);
  }

  body::before {
    opacity: 0.55;
    background-size: auto, 24px 24px, 24px 24px;
  }

  .page-shell {
    width: min(100% - 14px, 1240px);
    padding-top: 10px;
    padding-bottom: 116px;
  }

  .top-nav {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
  }

  .top-nav-links {
    display: none;
  }

  .top-nav-auth {
    width: auto;
    margin-left: auto;
    justify-content: space-between;
    gap: 8px;
  }

  .top-nav-brand-image {
    height: 30px;
    max-width: 170px;
  }

  .auth-menu-email,
  .compact-credit {
    display: none !important;
  }

  .top-nav-auth .secondary-link,
  .top-nav-auth .compact-button {
    min-height: 40px;
  }

  .site-footer {
    display: none;
  }

  .form-card {
    padding: 20px 16px 124px;
    border-radius: 36px;
    background:
      radial-gradient(circle at top right, rgba(47, 143, 87, 0.07), transparent 22%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 245, 0.92));
  }

  .form-card > .section-heading {
    position: relative;
    gap: 8px;
    margin-bottom: 22px;
    padding-right: 88px;
  }

  .form-card > .section-heading::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    border: 1px solid rgba(47, 143, 87, 0.08);
    background:
      radial-gradient(circle at center, rgba(247, 253, 248, 0.98), rgba(227, 244, 233, 0.82));
    box-shadow: 0 14px 28px rgba(41, 73, 52, 0.06);
  }

  .form-card > .section-heading::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 21px;
    width: 28px;
    height: 28px;
    background: url("/twemoji-musical-note.svg") center / contain no-repeat;
    z-index: 1;
  }

  .form-card > .section-heading h2 {
    max-width: 10ch;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .section-kicker {
    color: var(--accent-strong);
    letter-spacing: 0.16em;
  }

  form {
    gap: 16px;
  }

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

  .wizard-progress-item {
    min-height: 74px;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 24px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
  }

  .wizard-progress-item,
  .wizard-progress-item.is-active,
  .wizard-progress-item.is-complete {
    box-shadow: 0 12px 24px rgba(41, 73, 52, 0.06);
  }

  .wizard-progress-item.is-complete .wizard-progress-index,
  .wizard-progress-item.is-active .wizard-progress-index {
    color: #ffffff;
    background: linear-gradient(135deg, #2f8f57, #68c689);
  }

  .wizard-progress-item.is-complete .wizard-progress-index::before {
    content: none;
  }

  .wizard-progress-item.is-complete .wizard-progress-index {
    font-size: 1rem;
  }

  .wizard-progress-label {
    font-size: 0.95rem;
    line-height: 1.16;
    font-weight: 350;
  }

  .wizard-progress-index {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .form-section,
  .advanced-panel,
  .ai-step-shell,
  .sound-step-shell {
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .section-label-row,
  .sound-step-hero {
    gap: 10px;
    padding: 0;
  }

  .sound-step-hero-art {
    display: none;
  }

  #wizard-step-lyrics {
    gap: 18px;
  }

  #wizard-step-lyrics .section-label-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 6px;
  }

  #wizard-step-lyrics .section-step-illustrated {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(241, 251, 244, 0.98), rgba(228, 245, 233, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  #wizard-step-lyrics .section-step-illustration {
    width: 38px;
    height: 38px;
  }

  #wizard-step-lyrics h3 {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .lyrics-section-copy {
    display: none;
  }

  .lyrics-section-copy-mobile {
    display: block;
    margin-top: 4px;
  }

  .section-copy,
  .sound-step-hero-copy .section-copy,
  .ai-step-intro {
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .sound-step-shell h3,
  .ai-step-detail-heading strong {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .sound-step-hero-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .sound-step-hero-step {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(241, 251, 244, 0.98), rgba(228, 245, 233, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .sound-step-hero-gclef {
    font-size: 3.15rem;
  }

  .sound-step-top-grid,
  .sound-step-bottom-grid,
  .sound-step-substyle-group,
  .sound-step-direction-group,
  .sound-step-instrument-group,
  .ai-step-hero,
  .ai-step-choice-group,
  .ai-step-detail-panel {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .ai-step-pill {
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 1.35rem;
  }

  .ai-step-pill-chip {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .ai-step-choice-group,
  .ai-step-choice-grid,
  .ai-step-detail-grid,
  .sound-step-top-grid,
  .sound-step-bottom-grid {
    gap: 14px;
  }

  .ai-step-choice-grid,
  .sound-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-mode-card,
  .sound-mode-card {
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }

  .ai-mode-card-body,
  .sound-mode-card-body {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .ai-mode-card-icon,
  .sound-mode-card-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .dedication-panel,
  .ai-step-general-panel {
    gap: 14px;
  }

  .ai-step-detail-heading {
    padding: 0 4px;
  }

  .ai-step-detail-heading p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

  .mobile-lyrics-mode-button {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 174px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(80, 113, 91, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    font: inherit;
    text-align: left;
    box-shadow: 0 16px 30px rgba(41, 73, 52, 0.05);
    transition:
      transform 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
  }

  .mobile-lyrics-mode-button.is-active {
    border-color: rgba(47, 143, 87, 0.6);
    background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
    box-shadow: 0 18px 34px rgba(47, 143, 87, 0.1);
  }

  .mobile-lyrics-mode-indicator {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(108, 120, 114, 0.44);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
  }

  .mobile-lyrics-mode-button.is-active .mobile-lyrics-mode-indicator {
    border-color: rgba(47, 143, 87, 0.88);
    background: linear-gradient(135deg, #2f8f57, #44b96f);
  }

  .mobile-lyrics-mode-button.is-active .mobile-lyrics-mode-indicator::before {
    content: "\2713";
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 400;
  }

  .mobile-lyrics-mode-icon {
    position: relative;
    display: inline-flex;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(244, 252, 246, 0.98), rgba(230, 245, 235, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .mobile-lyrics-mode-icon-sparkles::before {
    content: "";
    position: absolute;
    inset: 21px;
    background: #111111;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .mobile-lyrics-mode-icon-file::before,
  .mobile-collapsible-icon-file::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #2f8f57, #1f6c41);
    clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
  }

  .mobile-lyrics-mode-icon-file::after,
  .mobile-collapsible-icon-file::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }

  .mobile-lyrics-mode-icon-file::before {
    top: 17px;
    left: 22px;
    width: 30px;
    height: 38px;
    border-radius: 9px;
  }

  .mobile-lyrics-mode-icon-file::after {
    top: 18px;
    right: 19px;
    width: 13px;
    height: 13px;
  }

  .mobile-lyrics-mode-title {
    max-width: 10ch;
    margin-top: 2px;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .mobile-lyrics-mode-copy {
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .mobile-lyrics-hint-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 18px 18px 18px 16px;
    border: 1px solid rgba(47, 143, 87, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(246, 252, 247, 0.98), rgba(238, 249, 241, 0.9));
  }

  .mobile-lyrics-hint-icon {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(242, 251, 244, 0.98);
  }

  .mobile-lyrics-hint-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #111111;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .mobile-lyrics-hint-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .mobile-lyrics-hint-copy strong {
    color: var(--text);
  }

  .mobile-lyrics-hint-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #74897c;
    font: inherit;
    font-size: 2rem;
    line-height: 1;
  }

  .lyrics-toggle-block {
    display: none !important;
  }

  .mobile-collapsible-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.06);
  }

  .mobile-direct-select-card {
    position: relative;
  }

  .mobile-collapsible-card.is-filled {
    border-color: rgba(80, 113, 91, 0.12);
  }

  .mobile-collapsible-card.is-expanded {
    border-color: rgba(47, 143, 87, 0.22);
    box-shadow: 0 22px 42px rgba(41, 73, 52, 0.1);
  }

  .mobile-collapsible-trigger {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 20px 20px 18px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
  }

  .mobile-collapsible-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-collapsible-title {
    font-size: 1.03rem;
    font-weight: 400;
    line-height: 1.28;
  }

  .mobile-collapsible-summary {
    min-width: 0;
    overflow: hidden;
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-collapsible-icon {
    position: relative;
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background:
      var(--mobile-card-icon-mask) center / 24px 24px no-repeat,
      radial-gradient(circle at center, rgba(242, 251, 244, 0.98), rgba(226, 244, 232, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .mobile-collapsible-icon-file {
    background: radial-gradient(circle at center, rgba(242, 251, 244, 0.98), rgba(226, 244, 232, 0.82));
  }

  .mobile-collapsible-icon-file::before {
    top: 11px;
    left: 15px;
    width: 22px;
    height: 28px;
    border-radius: 7px;
  }

  .mobile-collapsible-icon-file::after {
    top: 11px;
    right: 12px;
    width: 10px;
    height: 10px;
  }

  .mobile-collapsible-icon-music {
    --mobile-card-icon-mask: url("/twemoji-musical-note.svg");
  }

  .mobile-collapsible-icon-microphone {
    --mobile-card-icon-mask: url("/twemoji-microphone.svg");
  }

  .mobile-collapsible-icon-settings {
    --mobile-card-icon-mask: url("/lucide-settings-2.svg");
  }

  .mobile-collapsible-icon-sparkles {
    --mobile-card-icon-mask: url("/twemoji-sparkles.svg");
  }

  .mobile-collapsible-icon-heart {
    --mobile-card-icon-mask: url("/lucide-heart.svg");
  }

  .mobile-collapsible-icon-flag {
    --mobile-card-icon-mask: url("/twemoji-triangular-flag.svg");
  }

  .mobile-collapsible-icon-music,
  .mobile-collapsible-icon-microphone,
  .mobile-collapsible-icon-sparkles,
  .mobile-collapsible-icon-heart,
  .mobile-collapsible-icon-flag {
    background: radial-gradient(circle at center, rgba(242, 251, 244, 0.98), rgba(226, 244, 232, 0.82));
  }

  .mobile-collapsible-icon-music::before,
  .mobile-collapsible-icon-microphone::before,
  .mobile-collapsible-icon-sparkles::before,
  .mobile-collapsible-icon-heart::before,
  .mobile-collapsible-icon-flag::before {
    content: "";
    position: absolute;
    inset: 13px;
    background: var(--accent);
    -webkit-mask: var(--mobile-card-icon-mask) center / contain no-repeat;
    mask: var(--mobile-card-icon-mask) center / contain no-repeat;
  }

  .mobile-collapsible-icon-sparkles::before {
    background: #111111;
  }

  .mobile-collapsible-icon-user {
    --mobile-card-icon-mask: url("/lucide-user-round.svg");
  }

  .mobile-collapsible-icon-calendar {
    --mobile-card-icon-mask: url("/lucide-calendar.svg");
  }

  .mobile-collapsible-icon-message {
    --mobile-card-icon-mask: url("/lucide-message-circle.svg");
  }

  .mobile-collapsible-icon-star {
    --mobile-card-icon-mask: url("/lucide-star.svg");
  }

  .mobile-collapsible-icon-gem {
    --mobile-card-icon-mask: url("/lucide-gem.svg");
  }

  .mobile-collapsible-chevron {
    width: 12px;
    height: 12px;
    justify-self: end;
    border-right: 2px solid rgba(31, 42, 34, 0.52);
    border-bottom: 2px solid rgba(31, 42, 34, 0.52);
    transform: rotate(45deg);
    transition: transform 0.18s ease, border-color 0.18s ease;
  }

  .mobile-collapsible-card.is-expanded .mobile-collapsible-chevron {
    border-color: rgba(47, 143, 87, 0.78);
    transform: rotate(-135deg);
  }

  .mobile-direct-select-card .mobile-collapsible-chevron {
    transform: rotate(45deg);
  }

  .mobile-collapsible-body {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid rgba(80, 113, 91, 0.1);
  }

  .mobile-collapsible-card.is-expanded .mobile-collapsible-body {
    display: grid;
    gap: 14px;
  }

  .mobile-direct-select-card .mobile-collapsible-body {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    border-top: 0;
    z-index: 2;
  }

  .mobile-direct-select-card .mobile-collapsible-body > .sound-field-card {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-direct-select-card .mobile-collapsible-body .sound-field-chip,
  .mobile-direct-select-card .mobile-collapsible-body .sound-field-title,
  .mobile-direct-select-card .mobile-collapsible-body .sound-field-note,
  .mobile-direct-select-card .mobile-collapsible-body #genre-substyle-toggle {
    display: none;
  }

  .mobile-direct-select-card .mobile-collapsible-body .sound-field-stack,
  .mobile-direct-select-card .mobile-collapsible-body .sound-field-control-row {
    display: block;
    height: 100%;
  }

  .mobile-direct-select-card .mobile-collapsible-body select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
  }

  .mobile-custom-select-card .mobile-native-select-backup {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .mobile-collapsible-body > #lyrics-input-group,
  .mobile-collapsible-body > .sound-field-card,
  .mobile-collapsible-body > .sound-step-substyle-group,
  .mobile-collapsible-body > .sound-step-instrument-group,
  .mobile-collapsible-body > .ai-step-field-card {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .mobile-collapsible-body > #lyrics-input-group label > span,
  .mobile-collapsible-body .sound-field-chip,
  .mobile-collapsible-body .sound-field-title,
  .mobile-collapsible-body .sound-step-section-heading,
  .mobile-collapsible-body .field-legend,
  .mobile-collapsible-body .ai-step-field-title,
  .mobile-collapsible-body .ai-step-field-card > span:not(.ai-step-field-control):not(.ai-step-field-count):first-child {
    display: none;
  }

  .mobile-collapsible-body .sound-field-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-collapsible-body .sound-field-stack,
  .mobile-collapsible-body .sound-field-control-row,
  .mobile-collapsible-body .ai-step-field-control {
    gap: 10px;
  }

  .mobile-collapsible-body #genre-substyle-toggle {
    display: none;
  }

  .mobile-collapsible-body .sound-field-note {
    margin-top: -2px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .mobile-collapsible-body input,
  .mobile-collapsible-body select,
  .mobile-collapsible-body textarea {
    min-height: 56px;
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
  }

  .mobile-collapsible-body textarea {
    min-height: 214px;
    padding-bottom: 44px;
  }

  .mobile-collapsible-card-lyrics .mobile-collapsible-summary {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .mobile-collapsible-card-lyrics .mobile-collapsible-body {
    gap: 12px;
  }

  .mobile-collapsible-card-lyrics .mobile-collapsible-body > #lyrics-input-group label {
    gap: 12px;
  }

  .lyrics-text-count {
    display: block;
    justify-self: end;
    margin-top: -40px;
    padding-right: 12px;
    color: #658578;
    font-size: 0.92rem;
    font-weight: 500;
    pointer-events: none;
  }

  .mobile-collapsible-body .sound-mode-grid,
  .mobile-collapsible-body .genre-substyle-grid,
  .mobile-collapsible-body .instrument-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-collapsible-body .choice-card,
  .mobile-collapsible-body .check-card {
    min-height: 0;
    padding: 16px;
    border-radius: 22px;
  }

  .mobile-collapsible-body .sound-mode-card {
    padding: 16px;
  }

  .mobile-collapsible-body .sound-mode-card-body {
    gap: 10px;
  }

  .mobile-collapsible-body .ai-step-field-count {
    justify-self: end;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] {
    overflow: hidden;
    border-color: rgba(80, 113, 91, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(41, 73, 52, 0.08);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"].is-expanded {
    border-color: rgba(47, 143, 87, 0.22);
    box-shadow: 0 22px 42px rgba(41, 73, 52, 0.1);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-collapsible-trigger {
    padding: 18px 18px 14px;
    grid-template-columns: 46px minmax(0, 1fr) 16px;
    gap: 12px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-collapsible-title {
    font-size: clamp(1.08rem, 4.5vw, 1.28rem);
    line-height: 1.1;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-collapsible-summary {
    font-size: clamp(0.78rem, 3.35vw, 0.93rem);
    line-height: 1.3;
    white-space: normal;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-collapsible-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-collapsible-body {
    padding: 0 18px 18px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-step-instrument-group {
    display: grid;
    gap: 12px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0;
    padding: 2px;
    border: 1px solid rgba(80, 113, 91, 0.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(41, 73, 52, 0.06);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card {
    position: relative;
    min-height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    box-shadow: none;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-body,
  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-copy > span {
    display: none;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-body {
    gap: 3px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border-radius: 999px;
    background: transparent;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-badge .sound-icon {
    width: 15px;
    height: 15px;
    background: var(--accent);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card-copy strong {
    font-size: clamp(0.86rem, 3.6vw, 0.98rem);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card:has(input:checked) {
    border-color: rgba(47, 143, 87, 0.34);
    background: linear-gradient(180deg, rgba(244, 252, 246, 0.98), rgba(232, 247, 237, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-card:has(input:checked) strong {
    color: var(--accent-strong);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-auto-panel {
    display: none;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 16px;
    border: 1px solid rgba(47, 143, 87, 0.16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(250, 254, 251, 0.98), rgba(241, 251, 245, 0.9));
    color: #4d6359;
    font-size: clamp(0.86rem, 3.45vw, 0.98rem);
    line-height: 1.45;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-auto-icon,
  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-selected-icon {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(230, 247, 235, 0.94), rgba(218, 242, 226, 0.76));
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-auto-icon::before,
  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-selected-icon::before {
    content: "";
    position: absolute;
    inset: 9px;
    background: #111111;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-manual-link {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: max-content;
    margin: 4px auto 0;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: var(--accent-strong);
    font: inherit;
    font-size: clamp(0.86rem, 3.4vw, 0.96rem);
    font-weight: 350;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-manual-link span {
    width: 18px;
    height: 18px;
    background: url("/twemoji-level-slider.svg") center / contain no-repeat;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-manual-copy {
    display: none;
    margin: 2px 0 0;
    color: var(--text-soft);
    font-size: clamp(0.83rem, 3.25vw, 0.94rem);
    line-height: 1.35;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-step-instrument-group:has(#instrument-mode-auto:checked) .mobile-instrument-auto-panel {
    display: grid;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-step-instrument-group:has(#instrument-mode-auto:checked) .mobile-instrument-manual-link {
    display: none;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-step-instrument-group:has(#instrument-mode-manual:checked) .mobile-instrument-manual-copy {
    display: block;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 7px;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 52px;
    padding: 6px 4px 5px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    box-shadow: 0 5px 12px rgba(41, 73, 52, 0.04);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    background: var(--accent);
    -webkit-mask: var(--mobile-instrument-icon, url("/twemoji-musical-note.svg")) center / contain no-repeat;
    mask: var(--mobile-instrument-icon, url("/twemoji-musical-note.svg")) center / contain no-repeat;
    opacity: 0.9;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card span {
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    color: #1f2a22;
    font-size: clamp(0.58rem, 2.65vw, 0.72rem);
    font-weight: 390;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="pian"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='8' width='18' height='10' rx='2'/%3E%3Cpath d='M7 8v10M11 8v10M15 8v10M19 8v10'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="chitara_acustica"]),
  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="chitara_electrica"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 5l4-4 4 4-4 4z' transform='scale(.7) translate(8 0)'/%3E%3Cpath d='M14 6l4 4'/%3E%3Cpath d='M9 11c2-1 4 1 4 3a5 5 0 1 1-5-5c1 0 2 0 3 1z'/%3E%3Ccircle cx='8' cy='15' r='1.5'/%3E%3Cpath d='M12 12l6-6'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="acordeon"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='5' height='10' rx='1.5'/%3E%3Crect x='16' y='7' width='5' height='10' rx='1.5'/%3E%3Cpath d='M8 8l8 8M8 12h8M8 16l8-8'/%3E%3Cpath d='M5 10h1M5 13h1M18 10h1M18 13h1'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="vioara"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 14c-2 2-2 5 1 6 3 1 5-1 5-3s-2-4-4-3z'/%3E%3Cpath d='M12 12l7-7'/%3E%3Cpath d='M15 5l4 4'/%3E%3Cpath d='M6 18l11-11'/%3E%3Cpath d='M4 8l12 12'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="fluier"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15l16-8'/%3E%3Cpath d='M7 14l2 4'/%3E%3Cpath d='M11 12l2 4'/%3E%3Cpath d='M15 10l2 4'/%3E%3Ccircle cx='6' cy='14' r='1'/%3E%3Ccircle cx='10' cy='12' r='1'/%3E%3Ccircle cx='14' cy='10' r='1'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="tobe"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='9' rx='7' ry='3'/%3E%3Cpath d='M5 9v6c0 2 14 2 14 0V9'/%3E%3Cpath d='M6 4l5 4M18 4l-5 4'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="bass_puternic"]),
  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="bass_808"]) {
    --mobile-instrument-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9v6h4l5 4V5L8 9z'/%3E%3Cpath d='M16 9c1 1 1 5 0 6'/%3E%3Cpath d='M19 7c2 3 2 7 0 10'/%3E%3C/svg%3E");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="sintetizatoare"]) {
    --mobile-instrument-icon: url("/lucide-settings-2.svg");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="orchestra"]) {
    --mobile-instrument-icon: url("/twemoji-musical-notes.svg");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input[value="instrumente_traditionale"]) {
    --mobile-instrument-icon: url("/twemoji-musical-note.svg");
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input:checked)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #35b55f;
    box-shadow: 0 2px 5px rgba(47, 143, 87, 0.14);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input:checked) {
    border-color: rgba(47, 143, 87, 0.5);
    background: linear-gradient(180deg, rgba(244, 252, 246, 0.98), rgba(232, 247, 237, 0.94));
    color: var(--accent-strong);
    box-shadow: 0 8px 18px rgba(47, 143, 87, 0.08);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid .check-card:has(input:checked) span {
    color: var(--accent-strong);
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-selected-summary {
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(47, 143, 87, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(250, 254, 251, 0.98), rgba(241, 251, 245, 0.9));
    color: #5f7469;
    font-size: clamp(0.77rem, 3.15vw, 0.9rem);
    line-height: 1.3;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-selected-summary:not(.hidden) {
    display: flex;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .mobile-instrument-selected-summary strong {
    color: var(--accent-strong);
  }

  .wizard-footer {
    position: sticky;
    bottom: 10px;
    z-index: 12;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0 0;
    border-radius: 0;
    border: 0;
    border-color: rgba(80, 113, 91, 0.12);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .wizard-footer::before {
    display: none;
  }

  .wizard-footer-copy {
    display: none;
  }

  .wizard-footer-actions {
    display: grid;
    grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(80, 113, 91, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 44px rgba(41, 73, 52, 0.14);
    backdrop-filter: blur(16px);
  }

  .wizard-footer-actions .secondary-button,
  .wizard-footer-actions .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 68px;
    border-radius: 24px;
    padding: 16px 22px;
  }

  .wizard-footer-actions .secondary-button {
    border-color: rgba(80, 113, 91, 0.14);
    background: rgba(255, 255, 255, 0.94);
  }

  #wizard-back::before {
    content: "\2190";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    font-size: 1.1rem;
    line-height: 1;
    transform: translateY(-0.02em);
  }

  .wizard-footer-actions .primary-button::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .wizard-next-button::after {
    content: "";
  }

  .secondary-button,
  .primary-button {
    font-size: 1.05rem;
  }

  .status-card,
  .admin-card {
    padding: 20px 18px;
    border-radius: 28px;
  }
}

@media (max-width: 389px) {
  .ai-step-choice-grid,
  .sound-mode-grid,
  .mobile-collapsible-body .sound-mode-grid,
  .mobile-collapsible-body .genre-substyle-grid {
    grid-template-columns: 1fr;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .sound-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-collapsible-card[data-mobile-card-key="instruments"] .instrument-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip {
    min-height: 44px;
    padding: 7px 4px;
    font-size: clamp(0.58rem, 2.65vw, 0.72rem);
  }

  .mobile-lyrics-mode {
    gap: 10px;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions {
    grid-template-columns: minmax(96px, 0.82fr) minmax(0, 1.18fr);
    gap: 10px;
    padding: 10px;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .secondary-button,
  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button {
    min-height: 54px;
    padding: 14px 10px;
    border-radius: 18px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .wizard-progress-item {
    padding: 8px 7px;
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at top center, rgba(47, 143, 87, 0.08), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #fbfefb 100%);
  }

  body::before {
    display: none;
  }

  .page-shell {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .top-nav {
    display: none;
  }

  .site-footer {
    display: block;
    margin: auto 10px 0;
    padding-top: 20px;
  }

  .site-footer-panel {
    padding: 18px 18px 20px;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(41, 73, 52, 0.1);
  }

  .site-footer-panel::before {
    right: -148px;
    bottom: -92px;
    width: 350px;
    height: 186px;
    opacity: 0.28;
    transform: rotate(5deg);
    mask-image: linear-gradient(135deg, transparent 18%, rgba(0, 0, 0, 0.96) 44%);
  }

  .site-footer-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand support security"
      "legal legal legal";
    gap: 14px 10px;
    align-items: center;
  }

  .site-footer-brand {
    grid-area: brand;
    display: contents;
  }

  .site-footer-brand::after {
    display: none;
  }

  .site-footer-logo {
    grid-area: brand;
    position: relative;
    z-index: 1;
    justify-self: start;
    width: clamp(78px, 22vw, 104px);
  }

  .site-footer-support {
    grid-area: support;
    position: relative;
    z-index: 1;
    justify-self: stretch;
    justify-content: center;
    gap: 5px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    font-size: clamp(0.58rem, 2.35vw, 0.76rem);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .site-footer-support-prefix {
    display: none;
  }

  .site-footer-support-email {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  .site-footer-support-icon {
    width: 15px;
    height: 15px;
  }

  .site-footer-legal {
    grid-area: legal;
    justify-content: center;
    min-height: 0;
    padding: 2px 0 0;
    border: 0;
    gap: 8px 10px;
    flex-wrap: wrap;
  }

  .site-footer-legal-link {
    font-size: clamp(0.72rem, 2.9vw, 0.82rem);
    line-height: 1.25;
  }

  .site-footer-legal-dot {
    width: 6px;
    height: 6px;
  }

  .site-footer-security {
    grid-area: security;
    position: relative;
    justify-self: end;
    padding-left: 0;
    gap: 0;
  }

  .site-footer-security::before {
    display: none;
  }

  .site-footer-security-label {
    display: none;
  }

  .site-footer-payments {
    flex-wrap: nowrap;
    gap: 5px;
  }

  .site-footer-payment-mark {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-footer-payment-logo {
    height: 15px;
  }

  #generator-main-grid {
    gap: 0;
  }

  #generator-main-grid.generator-grid-solo {
    width: 100%;
  }

  body.mobile-process-panel-only #song-form,
  body.mobile-process-panel-only .form-card > .section-heading,
  body.mobile-process-panel-only #mobile-landing-screen,
  body.mobile-process-panel-only #admin-panel,
  body.mobile-process-panel-only #generator-side-rail > :not(#generator-request-card):not(#generator-status-card) {
    display: none !important;
  }

  body.mobile-process-panel-only #generator-main-grid {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    min-height: calc(100svh - 150px);
    padding: 0 0 18px;
  }

  body.mobile-process-panel-only .form-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.mobile-process-panel-only .mobile-brand-header {
    width: 100%;
    margin: 0;
  }

  body.mobile-process-panel-only #generator-side-rail {
    display: grid;
    align-content: start;
    flex: 1 0 auto;
    justify-self: center;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 10px 24px;
    gap: 0;
  }

  body.mobile-process-panel-only #generator-request-card,
  body.mobile-process-panel-only #generator-status-card {
    width: 100%;
    margin: 0;
  }

  body.mobile-logged-result-panel #generator-status-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.mobile-logged-result-panel #generator-status-card::after {
    display: none;
  }

  body.mobile-logged-result-panel #generator-status-card > .section-heading {
    margin: 0 0 16px;
    padding: 0 4px;
  }

  body.mobile-logged-result-panel #generator-status-card .section-heading .section-kicker {
    margin: 0;
    color: #147b4a;
    font-size: 0.74rem;
    font-weight: 450;
    letter-spacing: 0.22em;
  }

  body.mobile-logged-result-panel #generator-status-card .section-heading h2 {
    color: #1e2b21;
    font-size: 2.08rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  body.mobile-logged-result-panel #status-focus-note {
    display: none !important;
  }

  body.mobile-logged-result-panel .status-live {
    gap: 14px;
  }

  body.mobile-logged-result-panel #status-live > .status-result-summary {
    order: 1;
  }

  body.mobile-logged-result-panel #status-live > .status-checklist {
    order: 2;
  }

  body.mobile-logged-result-panel #status-live > .progress-wrap {
    order: 3;
  }

  body.mobile-logged-result-panel #status-live > #result-panel.generator-result-panel {
    order: 4;
  }

  body.mobile-logged-result-panel #status-live > .generate-another-track {
    order: 5;
  }

  body.mobile-logged-result-panel .status-result-summary {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(47, 143, 87, 0.16);
    border-radius: 18px;
    background:
      radial-gradient(circle at top right, rgba(211, 246, 225, 0.58), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 248, 0.94));
    box-shadow: 0 18px 42px rgba(38, 99, 61, 0.08);
  }

  body.mobile-logged-result-panel .status-result-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 35px;
    padding: 0 14px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, #f6fff9, #e7f7ee);
    color: #137847;
    font-size: 0.82rem;
    font-weight: 450;
    line-height: 1;
  }

  body.mobile-logged-result-panel .status-result-pill::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px dotted #168b50;
    background: transparent;
    animation: status-result-spin 1.05s linear infinite;
  }

  body.mobile-logged-result-panel .status-result-pill.is-completed::before {
    border: 0;
    background: #168b50;
    animation: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.mobile-logged-result-panel .status-result-pill.is-failed::before {
    border: 0;
    background: #d84d45;
    animation: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8v5'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8v5'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.mobile-logged-result-panel .status-result-summary p {
    margin: 0;
    color: #69737c;
    font-size: 0.86rem;
    line-height: 1.42;
  }

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

  body.mobile-logged-result-panel .progress-wrap {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0 2px;
  }

  body.mobile-logged-result-panel .progress-bar {
    height: 10px;
    border-radius: 999px;
    background: #dceee4;
  }

  body.mobile-logged-result-panel .progress-fill {
    background: linear-gradient(90deg, #169252, #67c28a);
  }

  body.mobile-logged-result-panel #progress-value {
    color: #35413a;
    font-size: 0.84rem;
    font-weight: 350;
    text-align: right;
  }

  body.mobile-logged-result-panel #result-panel.generator-result-panel {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px;
    border-radius: 18px;
    border-color: rgba(47, 143, 87, 0.13);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 250, 0.95));
    box-shadow: 0 18px 42px rgba(38, 99, 61, 0.08);
  }

  body.mobile-logged-result-panel #result-panel.generator-result-panel.hidden {
    display: none !important;
  }

  body.mobile-logged-result-panel #result-panel.generator-result-panel > .section-kicker {
    margin: 0;
    color: #0b7b3f;
    font-size: 0.68rem;
    font-weight: 450;
    letter-spacing: 0.24em;
  }

  body.mobile-logged-result-panel .generator-result-track-card {
    gap: 12px;
    padding-top: 16px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-main {
    grid-template-columns: 103px minmax(0, 1fr) auto;
    gap: 12px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-cover {
    border-radius: 14px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    color: #18231d;
    font-size: 0.98rem;
    font-weight: 450;
    line-height: 1.18;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-meta {
    font-size: 0.82rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-more {
    align-self: start;
    min-width: 72px;
    min-height: 29px;
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .result-meta {
    display: none !important;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-lyrics-panel {
    padding: 11px 12px;
    border-radius: 13px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-lyrics {
    max-height: 180px;
    font-size: 0.8rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-actions {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-ready {
    font-size: 0.72rem;
  }

  body.mobile-logged-result-panel .generate-another-track {
    min-height: 50px;
    margin-top: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #168f50, #35b871);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 450;
    box-shadow: 0 16px 28px rgba(22, 143, 80, 0.2);
  }

  body.mobile-logged-result-panel .generate-another-track.hidden {
    display: none !important;
  }

  body.mobile-process-panel-only .mobile-brand-header {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    min-height: 56px;
    padding: 6px 12px;
  }

  body.mobile-process-panel-only .mobile-brand-header-action {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  body.mobile-process-panel-only .mobile-brand-header-logo {
    width: 156px;
  }

  body.mobile-process-panel-only .mobile-account-panel {
    right: 6px;
    width: min(280px, calc(100vw - 12px));
    max-width: 280px;
    max-height: min(64svh, 380px);
    gap: 8px;
    padding: 12px 10px 10px;
    border-radius: 18px;
  }

  body.mobile-process-panel-only .mobile-account-panel-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
  }

  body.mobile-process-panel-only .mobile-account-avatar {
    width: 42px;
    height: 42px;
    border-width: 2px;
    font-size: 0.78rem;
  }

  body.mobile-process-panel-only .mobile-account-email {
    font-size: 0.82rem;
  }

  body.mobile-process-panel-only .mobile-account-badges {
    gap: 4px;
  }

  body.mobile-process-panel-only .mobile-account-badge {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  body.mobile-process-panel-only .mobile-account-item {
    grid-template-columns: 25px minmax(0, 1fr) 14px;
    min-height: 34px;
    gap: 7px;
    padding: 2px 0;
    font-size: 0.78rem;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card::after {
    display: none;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card > .section-heading {
    margin: 0 0 10px;
    padding: 0 4px;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card .section-kicker {
    margin-bottom: 0;
    color: #147b4a;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card > .section-heading h2 {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit {
    gap: 22px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-hero {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 16px 20px 20px;
    border-radius: 26px;
    border-color: rgba(79, 183, 128, 0.28);
    background:
      radial-gradient(circle at top right, rgba(211, 246, 225, 0.74), transparent 34%),
      linear-gradient(rgba(45, 126, 84, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45, 126, 84, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(253, 255, 253, 0.99), rgba(242, 251, 246, 0.96));
    background-size: auto, 22px 22px, 22px 22px, auto;
    box-shadow: 0 24px 54px rgba(45, 105, 69, 0.08);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-hero-copy {
    gap: 16px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    color: #137847;
    font-size: 0.82rem;
    font-weight: 450;
    letter-spacing: 0.22em;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-kicker-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background: currentColor;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-title {
    color: #1e2b21;
    font-size: 2.14rem;
    line-height: 1.05;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-request-summary {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-mode-pill {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card {
    display: grid;
    justify-items: center;
    align-content: start;
    min-width: 0;
    min-height: 118px;
    padding: 14px 6px 12px;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 26px rgba(27, 75, 48, 0.05);
    text-align: center;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    color: #208f55;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon::before,
  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon::before,
  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-rocket::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: currentColor;
    -webkit-mask: var(--prestart-icon) center / contain no-repeat;
    mask: var(--prestart-icon) center / contain no-repeat;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon-music,
  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon-music {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l10-2v13'/%3E%3Ccircle cx='6' cy='18' r='3' fill='black' stroke='none'/%3E%3Ccircle cx='16' cy='16' r='3' fill='black' stroke='none'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon-mic {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3Cpath d='M8 22h8'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon-globe {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 0 18'/%3E%3Cpath d='M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.24em;
    color: #202923;
    font-size: 0.84rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card > span:last-child {
    margin-top: 6px;
    color: #51645a;
    font-size: 0.75rem;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey {
    position: relative;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey::before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 33px;
    border-left: 2px dashed rgba(47, 143, 87, 0.18);
    pointer-events: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-item {
    position: relative;
    z-index: 1;
    grid-template-columns: 52px minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 106px;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 23px;
    border-color: rgba(47, 143, 87, 0.22);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(27, 75, 48, 0.045);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-index,
  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #e6f6ed;
    color: #147b4a;
    font-size: 1.15rem;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-index {
    border: 1px solid rgba(47, 143, 87, 0.26);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon {
    display: grid;
    place-items: center;
    justify-self: end;
    padding: 12px;
    border: 1px solid rgba(47, 143, 87, 0.12);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon-check {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon-play {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M8 5.5v13l11-6.5-11-6.5Z'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-copy {
    gap: 8px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-copy strong {
    color: #1d2722;
    font-size: 1.03rem;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-copy span {
    color: #52645b;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .customer-email-group {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-info-note.mobile-lyrics-hint-card {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 28px minmax(0, auto) 28px;
    align-items: center;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    gap: 9px;
    margin: 0;
    padding: 10px 10px 10px 9px;
    border-radius: 16px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .mini-notificare-icon {
    width: 28px;
    height: 28px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .mini-notificare-icon::before {
    inset: 7px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .mini-notificare-copy {
    max-width: 28ch;
    font-size: 0.88rem;
    line-height: 1.36;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .mini-notificare-close {
    width: 28px;
    height: 28px;
    font-size: 1.35rem;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-edit-back {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 54px;
    min-width: 0;
    padding: 0 8px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: #137847;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-edit-back span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-cta {
    grid-column: 2;
    gap: 0;
    min-width: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-action-note {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    width: 100%;
    min-width: 0;
    padding: 15px 22px;
    border-radius: 16px;
    font-size: 1.12rem;
    letter-spacing: 0;
    box-shadow: 0 16px 28px rgba(17, 127, 72, 0.18);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-rocket {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13.3 3.1c2.9-.4 5.7.3 7.6 2.2.4 1.9.1 4.7-2.2 7.6l.1 4.2-4.2 1.5-2.7-2.7-3.8-3.8-2.7-2.7 1.5-4.2 4.2.1c.7-1 1.5-1.7 2.2-2.2Zm1.3 6.3a2 2 0 1 0 2.8-2.8 2 2 0 0 0-2.8 2.8ZM6.4 14.2c-1.6.6-2.9 2.2-3.4 4.7 2.5-.5 4.1-1.8 4.7-3.4l-1.3-1.3Z'/%3E%3C/svg%3E");
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    color: #fff;
  }

  body.mobile-new-account-prestart.mobile-process-panel-only #generator-side-rail {
    align-content: start;
    max-width: 430px;
    padding: 0 12px 28px;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card::after {
    display: none;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card > .section-heading {
    display: grid;
    justify-items: start;
    margin: 0 0 10px;
    padding: 0 4px;
    text-align: left;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card .section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    margin: 0;
    padding: 0 20px;
    border: 1px solid rgba(45, 143, 83, 0.24);
    border-radius: 999px;
    background: rgba(250, 255, 252, 0.82);
    color: #0d743f;
    font-size: 0.82rem;
    font-weight: 450;
    letter-spacing: 0.28em;
    box-shadow: 0 10px 24px rgba(38, 116, 72, 0.06);
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card > .section-heading h2 {
    display: none;
  }

  body.mobile-process-panel-only #generator-request-card.prestart-new-account-card > .section-heading h2 span {
    color: #108141;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px 10px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-hero,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note {
    grid-column: 1 / -1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 116px;
    grid-template-areas:
      "copy visual"
      "details details";
    gap: 22px 16px;
    padding: 16px 20px 20px;
    border-radius: 24px;
    border: 1px solid rgba(49, 159, 93, 0.28);
    background:
      radial-gradient(circle at 84% 24%, rgba(202, 246, 219, 0.92), transparent 30%),
      linear-gradient(rgba(37, 126, 77, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37, 126, 77, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(253, 255, 253, 0.99), rgba(240, 252, 245, 0.97));
    background-size: auto, 22px 22px, 22px 22px, auto;
    box-shadow: 0 24px 54px rgba(45, 105, 69, 0.08);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-hero-copy {
    grid-area: copy;
    gap: 14px;
    align-self: center;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 38px;
    margin: 0;
    padding: 0 18px 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #0d743f;
    font-size: 0.78rem;
    font-weight: 450;
    letter-spacing: 0.18em;
    box-shadow: 0 12px 26px rgba(31, 104, 63, 0.08);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-kicker-icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, #dff8e9, #f6fff9);
    color: #108141;
    box-shadow: inset 0 0 0 1px rgba(36, 142, 82, 0.12);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-kicker-icon::before {
    content: "*";
    font-size: 1rem;
    line-height: 1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-title {
    color: #11301f;
    font-size: 2.42rem;
    line-height: 0.98;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary strong {
    color: #0b7b3f;
    font-size: 1.22rem;
    font-weight: 450;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary > span:first-of-type {
    display: inline-block;
    margin: 0 7px;
    color: #6b8d78;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary > span:last-child {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 6px;
    color: #606b74;
    font-size: clamp(0.76rem, 2.85vw, 0.84rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill {
    grid-area: visual;
    position: relative;
    display: grid;
    place-items: center;
    align-self: center;
    width: 112px;
    height: 112px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.9), transparent 45%),
      linear-gradient(180deg, rgba(235, 250, 240, 0.84), rgba(222, 246, 229, 0.58));
    box-shadow: 0 20px 38px rgba(30, 120, 68, 0.12);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill strong,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill span {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill::before {
    content: "♪";
    color: #15904e;
    font-size: 5rem;
    line-height: 1;
    text-shadow:
      0 10px 18px rgba(15, 119, 63, 0.28),
      0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotate(-9deg);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-grid {
    grid-area: details;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card {
    display: grid;
    grid-template-columns: 38px max-content max-content;
    align-items: center;
    gap: 6px;
    min-width: 0;
    min-height: 58px;
    padding: 9px 10px;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(27, 75, 48, 0.055);
    text-align: left;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card:nth-child(3) {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(47, 143, 87, 0.14);
    background: linear-gradient(180deg, #ddf6e7, #f5fff8);
    color: #108141;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.54);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon::before {
    display: block;
    color: currentColor;
    font-size: 1.1rem;
    font-weight: 450;
    line-height: 1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon-music::before {
    content: "$";
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon-mic::before {
    content: "♪";
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card strong {
    display: block;
    min-width: 0;
    color: #15221c;
    font-size: clamp(0.94rem, 3.5vw, 1.05rem);
    font-weight: 450;
    line-height: 1.05;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card > span:last-child {
    display: block;
    margin-top: 0;
    color: #5e6870;
    font-size: clamp(0.62rem, 2.3vw, 0.74rem);
    line-height: 1;
    white-space: nowrap;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey {
    display: grid;
    gap: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey::before {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    padding: 10px 16px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(27, 75, 48, 0.035);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-item + .prestart-journey-item {
    margin-top: -1px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-index,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(47, 143, 87, 0.12);
    background: linear-gradient(180deg, #e3f7ea, #f6fff9);
    color: #0e8043;
    font-size: 1.25rem;
    font-weight: 450;
    box-shadow: 0 10px 20px rgba(30, 120, 68, 0.08);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon {
    justify-self: end;
    padding: 12px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon::before,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-rocket::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: currentColor;
    -webkit-mask: var(--prestart-icon) center / contain no-repeat;
    mask: var(--prestart-icon) center / contain no-repeat;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon-check {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon-play {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2.5'/%3E%3Cpath d='M3.5 9h17'/%3E%3Cpath d='M7 15h4'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon-music {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h7l-1 8 9-12h-7l1-8Z'/%3E%3C/svg%3E");
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-copy {
    gap: 5px;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-copy strong {
    color: #16231d;
    font-size: 1.18rem;
    line-height: 1.1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-copy span {
    color: #65717a;
    font-size: 0.98rem;
    line-height: 1.24;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group {
    display: block;
    margin: 4px 0 0;
    padding: 16px 16px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(27, 75, 48, 0.035);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group .customer-email-label {
    display: grid;
    gap: 10px;
    margin: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group .customer-email-label > span {
    color: #17231d;
    font-size: clamp(0.84rem, 3.2vw, 0.94rem);
    font-weight: 350;
    letter-spacing: 0;
    line-height: 1.18;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail {
    min-height: 50px;
    padding-left: 50px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 15px;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2.5'/%3E%3Cpath d='m5.5 7.5 6.5 5 6.5-5'/%3E%3C/svg%3E") 17px center / 20px 20px no-repeat,
      rgba(255, 255, 255, 0.96);
    color: #24312b;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail::placeholder {
    color: #77808a;
    font-weight: 300;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    margin: 10px 0 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation input {
    appearance: none;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    margin: 0;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(47, 143, 87, 0.24);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.96);
    color: #16824a;
    box-shadow: 0 8px 16px rgba(30, 120, 68, 0.06);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation input::before {
    content: "";
    width: 10px;
    height: 10px;
    opacity: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation input:checked::before {
    opacity: 1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation input.input-error {
    border-color: rgba(210, 62, 62, 0.7);
    box-shadow: 0 0 0 3px rgba(210, 62, 62, 0.12);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account #customer-email-hint {
    position: relative;
    margin: 0;
    padding-left: 0;
    color: #5f6b74;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.34;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account #customer-email-hint::before {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note.mobile-lyrics-hint-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 4px 0 6px;
    padding: 12px 16px;
    border: 1px solid rgba(47, 143, 87, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 255, 251, 0.98), rgba(236, 250, 242, 0.92));
    color: #27342e;
    font-size: 1.02rem;
    line-height: 1.34;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notification-icon,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notificare-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(180deg, #20a35f, #0b7b3f);
    color: #fff;
    box-shadow: 0 10px 18px rgba(17, 127, 72, 0.18);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notification-icon::before,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notificare-icon::before {
    content: "✓";
    font-size: 1.1rem;
    font-weight: 450;
    line-height: 1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notification-copy,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notificare-copy {
    margin: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notification-close,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-info-note .mini-notificare-close {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(80, 113, 91, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 44px rgba(41, 73, 52, 0.14);
    backdrop-filter: blur(16px);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 16px 22px;
    border-color: rgba(80, 113, 91, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent-strong);
    font-size: 1.05rem;
    font-weight: 350;
    white-space: nowrap;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back span:first-child {
    font-size: 1.1rem;
    line-height: 1;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-cta {
    grid-column: 2;
    display: grid;
    gap: 0;
    min-width: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-action-note {
    display: none;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 16px 22px;
    border-radius: 24px;
    font-size: 1.05rem;
    font-weight: 350;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow: 0 18px 36px rgba(47, 143, 87, 0.24);
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-rocket {
    --prestart-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 10V7a5 5 0 0 1 10 0v3h1.2A1.8 1.8 0 0 1 20 11.8v7.4a1.8 1.8 0 0 1-1.8 1.8H5.8A1.8 1.8 0 0 1 4 19.2v-7.4A1.8 1.8 0 0 1 5.8 10H7Zm2 0h6V7a3 3 0 0 0-6 0v3Z'/%3E%3C/svg%3E");
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #fff;
  }

  @media (max-width: 389px) {
    body.mobile-process-panel-only .mobile-brand-header-logo {
      width: 144px;
    }

    body.mobile-process-panel-only #generator-side-rail {
      padding-inline: 8px;
    }

    body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card > .section-heading h2 {
      font-size: 2.36rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-hero {
      padding: 14px 14px 18px;
      border-radius: 23px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-title {
      font-size: 1.86rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-request-summary {
      font-size: 0.94rem;
      line-height: 1.55;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-grid {
      gap: 7px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card {
      min-height: 102px;
      padding: 10px 4px 9px;
      border-radius: 15px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-icon {
      width: 26px;
      height: 26px;
      margin-bottom: 7px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card strong {
      font-size: 0.68rem;
      line-height: 1.08;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card > span:last-child {
      margin-top: 4px;
      font-size: 0.61rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-item {
      grid-template-columns: 42px minmax(0, 1fr) 40px;
      min-height: 94px;
      gap: 10px;
      padding: 12px;
      border-radius: 20px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey::before {
      left: 27px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-index,
    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon {
      width: 38px;
      height: 38px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-icon {
      padding: 10px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-copy strong {
      font-size: 0.94rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-journey-copy span,
    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-info-note {
      font-size: 0.84rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-button {
      min-height: 54px;
      gap: 9px;
      font-size: 1.04rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-rocket {
      width: 19px;
      height: 19px;
    }
  }

  @media (max-width: 340px) {
    body.mobile-process-panel-only .mobile-brand-header {
      grid-template-columns: 34px minmax(0, 1fr) 34px;
      padding-inline: 8px;
    }

    body.mobile-process-panel-only .mobile-brand-header-action {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    body.mobile-process-panel-only .mobile-brand-header-logo {
      width: 128px;
    }

    body.mobile-process-panel-only #generator-request-card.prestart-logged-credit-card > .section-heading h2 {
      font-size: 2.08rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-title {
      font-size: 1.62rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-kicker {
      gap: 8px;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card strong {
      font-size: 0.61rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-detail-card > span:last-child {
      font-size: 0.56rem;
    }
  }

  @media (max-width: 389px) {
    body.mobile-new-account-prestart.mobile-process-panel-only #generator-side-rail {
      padding-inline: 8px;
    }

    body.mobile-process-panel-only #generator-request-card.prestart-new-account-card .section-kicker {
      min-height: 38px;
      padding: 0 16px;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
    }

    body.mobile-process-panel-only #generator-request-card.prestart-new-account-card > .section-heading h2 {
      font-size: 2.28rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account {
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 13px 8px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-hero {
      grid-template-columns: minmax(0, 1fr) 82px;
      gap: 18px 10px;
      padding: 14px 14px 18px;
      border-radius: 22px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-kicker {
      gap: 9px;
      min-height: 34px;
      padding: 0 13px 0 8px;
      font-size: 0.66rem;
      letter-spacing: 0.14em;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-kicker-icon {
      width: 26px;
      height: 26px;
      flex-basis: 26px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-title {
      font-size: 1.86rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary {
      font-size: 0.94rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary strong {
      font-size: 1.02rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-request-summary > span:last-child {
      font-size: clamp(0.66rem, 2.7vw, 0.72rem);
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill {
      width: 82px;
      height: 82px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill::before {
      font-size: 3.55rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-grid {
      gap: 8px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card {
      grid-template-columns: 28px max-content max-content;
      gap: 4px;
      min-height: 50px;
      padding: 8px 6px;
      border-radius: 15px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon {
      width: 28px;
      height: 28px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-icon::before {
      font-size: 0.88rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card strong {
      font-size: 0.76rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card > span:last-child {
      font-size: 0.52rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-item {
      grid-template-columns: 42px minmax(0, 1fr) 38px;
      gap: 10px;
      min-height: 65px;
      padding: 9px 12px;
      border-radius: 16px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-index,
    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon {
      width: 38px;
      height: 38px;
      font-size: 1.04rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-icon {
      padding: 10px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-copy strong {
      font-size: 1.02rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-journey-copy span {
      font-size: 0.84rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group {
      padding: 14px 13px;
      border-radius: 16px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group .customer-email-label > span {
      font-size: 0.82rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail {
      min-height: 48px;
      padding-left: 46px;
      background-position: 15px center;
      background-size: 19px 19px;
      font-size: 0.84rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation {
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 8px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-confirmation input {
      width: 20px;
      height: 20px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account #customer-email-hint {
      font-size: 0.72rem;
      line-height: 1.3;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-actions {
      grid-template-columns: minmax(96px, 0.82fr) minmax(0, 1.18fr);
      gap: 10px;
      padding: 10px;
      border-radius: 24px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back {
      min-height: 54px;
      padding: 14px 10px;
      border-radius: 18px;
      font-size: 0.92rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-button {
      min-height: 54px;
      gap: 8px;
      padding: 14px 10px;
      border-radius: 18px;
      font-size: 0.92rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-rocket {
      width: 17px;
      height: 17px;
      flex-basis: 17px;
    }
  }

  @media (max-width: 340px) {
    body.mobile-process-panel-only #generator-request-card.prestart-new-account-card > .section-heading h2 {
      font-size: 2.02rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account {
      grid-template-columns: 84px minmax(0, 1fr);
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-hero {
      grid-template-columns: minmax(0, 1fr) 70px;
      padding: 12px 11px 16px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-title {
      font-size: 1.62rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill {
      width: 70px;
      height: 70px;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-mode-pill::before {
      font-size: 3.05rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card strong {
      font-size: 0.72rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-detail-card > span:last-child {
      font-size: 0.49rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .customer-email-group .customer-email-label > span {
      font-size: 0.78rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail {
      font-size: 0.8rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account #customer-email-hint {
      font-size: 0.68rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back {
      gap: 5px;
      font-size: 0.84rem;
    }

    body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-button {
      font-size: 0.84rem;
    }
  }

  .form-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .form-card::after {
    display: none;
  }

  body.mobile-session-expired-open {
    overflow: hidden;
  }

  .mobile-session-expired-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px 14px;
    isolation: isolate;
  }

  .mobile-session-expired-popup.hidden {
    display: none !important;
  }

  .mobile-session-expired-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(209, 247, 238, 0.48), transparent 42%),
      rgba(246, 252, 250, 0.82);
    backdrop-filter: blur(9px);
    cursor: pointer;
  }

  .mobile-session-expired-card {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(330px, calc(100vw - 28px));
    padding: 28px 18px 18px;
    border: 1px solid rgba(174, 226, 213, 0.82);
    border-radius: 28px;
    background:
      radial-gradient(circle at 22% 10%, rgba(223, 250, 244, 0.64), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 251, 0.97));
    box-shadow:
      0 28px 64px rgba(24, 83, 68, 0.18),
      0 8px 22px rgba(24, 83, 68, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    text-align: center;
  }

  .mobile-session-expired-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(40, 132, 111, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #277b69;
    cursor: pointer;
  }

  .mobile-session-expired-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .mobile-session-expired-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 104px;
    height: 94px;
    margin-top: 2px;
  }

  .mobile-session-expired-avatar {
    width: 86px;
    height: 86px;
    border: 2px solid rgba(169, 225, 213, 0.9);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 33%, rgba(144, 224, 203, 0.82) 0 15px, transparent 16px),
      radial-gradient(ellipse at 50% 82%, rgba(69, 190, 161, 0.88) 0 28px, transparent 29px),
      linear-gradient(180deg, rgba(246, 253, 251, 0.98), rgba(232, 248, 244, 0.92));
    box-shadow:
      0 14px 28px rgba(23, 98, 82, 0.12),
      inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  }

  .mobile-session-expired-lock {
    position: absolute;
    right: 7px;
    bottom: 4px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    background: rgba(224, 248, 242, 0.95);
    color: #82cbbb;
    box-shadow: 0 8px 16px rgba(35, 119, 101, 0.12);
  }

  .mobile-session-expired-lock svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-session-expired-card h2 {
    margin: 0;
    color: #071a4c;
    font-size: 1.44rem;
    line-height: 1.12;
  }

  .mobile-session-expired-card p {
    margin: 0;
    max-width: 260px;
    color: #66717c;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .mobile-session-expired-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2f8f57, #74c98f);
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(47, 143, 87, 0.2);
  }

  .mobile-session-expired-login svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  #account-main-grid.account-grid-solo {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: start center;
    width: 100%;
    min-height: calc(100svh - 74px);
    padding: clamp(16px, 4vh, 24px) 0 18px;
  }

  #account-main-grid.account-grid-solo .account-auth-card {
    width: min(calc(100% - 28px), 420px);
    max-width: 420px;
    min-height: 0;
    padding: 20px 14px 16px;
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid rgba(184, 229, 218, 0.82);
    border-radius: 22px;
    background:
      radial-gradient(circle at 20% 16%, rgba(226, 250, 244, 0.64), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 251, 0.96));
    box-shadow:
      0 26px 58px rgba(29, 86, 71, 0.12),
      0 8px 22px rgba(29, 86, 71, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    overflow: hidden;
  }

  #account-main-grid.account-grid-solo .account-auth-heading {
    display: none;
  }

  #account-main-grid.account-grid-solo .account-auth-banner {
    margin: 0;
    border-radius: 18px;
    background: rgba(246, 253, 251, 0.94);
  }

  #account-main-grid.account-grid-solo .account-auth-actions {
    display: grid;
    gap: 10px;
    margin: 0;
  }

  #account-main-grid.account-grid-solo .account-auth-provider {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    padding: 10px 11px;
    border-radius: 15px;
    color: #273744;
    box-shadow: 0 10px 22px rgba(29, 86, 71, 0.06);
  }

  #account-main-grid.account-grid-solo .account-auth-provider::before,
  #account-main-grid.account-grid-solo .account-auth-provider::after {
    content: "";
    pointer-events: none;
  }

  #account-main-grid.account-grid-solo .account-auth-provider::after {
    justify-self: end;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(227, 247, 241, 0.94);
    grid-column: 3;
    grid-row: 1;
  }

  #account-main-grid.account-grid-solo .account-auth-provider::before {
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
  }

  #account-main-grid.account-grid-solo .account-auth-provider:hover {
    transform: none;
  }

  #account-main-grid.account-grid-solo .account-auth-provider-email,
  #account-main-grid.account-grid-solo .account-auth-provider-email.is-open {
    border: 1px solid rgba(47, 143, 87, 0.52);
    background:
      radial-gradient(circle at 12% 16%, rgba(231, 247, 237, 0.78), transparent 38%),
      linear-gradient(180deg, rgba(252, 255, 254, 0.98), rgba(246, 253, 251, 0.94));
    box-shadow:
      0 18px 36px rgba(47, 143, 87, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  #account-main-grid.account-grid-solo .account-auth-provider-google {
    border: 1px solid rgba(33, 72, 58, 0.08);
    background: rgba(255, 255, 255, 0.96);
  }

  #account-main-grid.account-grid-solo .account-auth-provider-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    border-color: rgba(24, 135, 108, 0.08);
  }

  #account-main-grid.account-grid-solo .account-auth-provider-icon.email {
    color: var(--accent);
    background: rgba(231, 247, 237, 0.94);
    border-color: rgba(47, 143, 87, 0.1);
  }

  #account-main-grid.account-grid-solo .account-auth-provider-icon.google {
    background: #ffffff;
    border-color: rgba(33, 72, 58, 0.08);
    box-shadow:
      0 10px 20px rgba(31, 67, 52, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  #account-main-grid.account-grid-solo .account-auth-provider-icon svg {
    width: 21px;
    height: 21px;
  }

  #account-main-grid.account-grid-solo .account-auth-provider-copy {
    min-width: 0;
    gap: 0.18rem;
  }

  #account-main-grid.account-grid-solo .account-auth-provider-copy strong {
    color: #22313d;
    font-size: 0.98rem;
    line-height: 1.05;
  }

  #account-main-grid.account-grid-solo .account-auth-provider-copy span {
    color: #66717c;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  @media (min-width: 370px) {
    #account-main-grid.account-grid-solo .account-auth-provider-copy span {
      white-space: nowrap;
    }
  }

  #account-main-grid.account-grid-solo .account-auth-divider {
    min-height: 16px;
    margin: -1px 6px;
    color: #53947d;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  #account-main-grid.account-grid-solo .account-auth-divider::before,
  #account-main-grid.account-grid-solo .account-auth-divider::after {
    background: rgba(112, 156, 143, 0.2);
  }

  #account-main-grid.account-grid-solo .account-auth-divider span {
    padding: 0 10px;
  }

  #account-main-grid.account-grid-solo .account-auth-email-panel {
    gap: 8px;
    margin-top: -2px;
    padding: 10px;
    border-radius: 14px;
    border-color: rgba(47, 143, 87, 0.18);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(29, 86, 71, 0.06);
  }

  #account-main-grid.account-grid-solo .account-auth-email-label {
    color: #407f6c;
    font-size: 0.74rem;
  }

  #account-main-grid.account-grid-solo .account-auth-email-panel input {
    min-height: 40px;
    border-color: rgba(47, 143, 87, 0.16);
    border-radius: 11px;
    background: rgba(250, 255, 253, 0.98);
    font-size: 0.86rem;
  }

  #account-main-grid.account-grid-solo .account-auth-primary {
    min-height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #2f8f57, #74c98f);
    box-shadow: 0 12px 22px rgba(47, 143, 87, 0.16);
    font-size: 0.84rem;
  }

  #account-main-grid.account-grid-solo .account-auth-status {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 0;
    margin: 0;
    padding: 10px 2px 0;
    border-top: 1px dashed rgba(112, 156, 143, 0.24);
    color: #4d5964;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  #account-main-grid.account-grid-solo .account-auth-status::before {
    content: "i";
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(221, 249, 240, 0.92);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-display);
  }

  #account-main-grid.account-grid-solo .account-auth-status p {
    margin: 0;
  }

  .mobile-brand-header {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    align-items: center;
    min-height: 60px;
    margin: 0 0 14px;
    padding: 7px clamp(14px, 4.6vw, 24px);
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(23, 48, 33, 0.05);
    overflow: visible;
    isolation: isolate;
    z-index: 6;
  }

  .mobile-brand-header-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }

  .mobile-brand-header-logo {
    display: block;
    width: clamp(136px, 37vw, 172px);
    max-width: 100%;
    height: auto;
  }

  .mobile-brand-header-actions {
    display: flex;
    align-items: center;
    justify-self: start;
    gap: 0;
  }

  .mobile-brand-header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #0b4a3d;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-brand-header-action-menu {
    flex-direction: column;
    gap: 4px;
  }

  .mobile-brand-header-action-menu span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .mobile-brand-header-account {
    justify-self: end;
    border: 2px solid rgba(26, 142, 79, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: #12864d;
  }

  .mobile-brand-header-account svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-brand-header-action-menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-brand-header-action-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-brand-header-action-menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    display: grid;
    gap: 10px;
    width: min(230px, calc(100vw - 20px));
    padding: 14px;
    border: 1px solid rgba(93, 132, 110, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 38px rgba(42, 76, 54, 0.12);
    z-index: 8;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel button,
  .mobile-menu-email,
  .mobile-menu-panel .compact-credit {
    width: 100%;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel button,
  .mobile-menu-email {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 350;
    text-decoration: none;
    background: rgba(247, 251, 248, 0.92);
    border: 1px solid rgba(93, 132, 110, 0.08);
  }

  .mobile-menu-panel button {
    justify-content: center;
  }

  .mobile-menu-email {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 300;
    word-break: break-word;
  }

  .mobile-menu-panel .compact-credit {
    justify-content: center;
    min-height: 40px;
    margin: 0;
  }

  .mobile-account-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    display: grid;
    gap: 10px;
    width: min(288px, calc(100vw - 24px));
    max-width: 288px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 14px 12px 12px;
    border: 1px solid rgba(124, 204, 184, 0.28);
    border-radius: 20px;
    background:
      radial-gradient(circle at 14% 8%, rgba(218, 249, 241, 0.38), transparent 26%),
      linear-gradient(180deg, #ffffff, #fbfefd);
    box-shadow:
      0 28px 58px rgba(22, 76, 61, 0.16),
      0 8px 20px rgba(22, 76, 61, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
    z-index: 10;
  }

  .mobile-account-panel::before {
    content: "";
    position: absolute;
    top: -15px;
    right: 28px;
    width: 30px;
    height: 30px;
    border-top: 1px solid rgba(124, 204, 184, 0.28);
    border-left: 1px solid rgba(124, 204, 184, 0.28);
    border-radius: 8px 0 0 0;
    background: rgba(255, 255, 255, 0.99);
    transform: rotate(45deg);
    box-shadow: -8px -8px 20px rgba(22, 76, 61, 0.04);
  }

  .mobile-account-panel.is-logged-in {
    gap: 12px;
    padding: 16px 14px 14px;
  }

  .mobile-account-guest-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .mobile-account-guest-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 70px;
    height: 62px;
    margin-top: 0;
  }

  .mobile-account-guest-avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(169, 225, 213, 0.9);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 33%, rgba(144, 224, 203, 0.82) 0 15px, transparent 16px),
      radial-gradient(ellipse at 50% 82%, rgba(69, 190, 161, 0.88) 0 28px, transparent 29px),
      linear-gradient(180deg, rgba(246, 253, 251, 0.98), rgba(232, 248, 244, 0.92));
    color: #32aa8f;
    box-shadow:
      0 14px 28px rgba(23, 98, 82, 0.12),
      inset 0 0 0 5px rgba(255, 255, 255, 0.7);
  }

  .mobile-account-guest-avatar svg {
    display: none;
  }

  .mobile-account-guest-lock {
    position: absolute;
    right: 1px;
    bottom: 1px;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 9px;
    background: rgba(224, 248, 242, 0.94);
    color: #8bcfc0;
    box-shadow: 0 6px 12px rgba(35, 119, 101, 0.1);
  }

  .mobile-account-guest-lock svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-account-guest-spark {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    color: rgba(123, 213, 197, 0.55);
  }

  .mobile-account-guest-spark::before,
  .mobile-account-guest-spark::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-account-guest-spark::before {
    width: 2px;
    height: 10px;
  }

  .mobile-account-guest-spark::after {
    width: 10px;
    height: 2px;
  }

  .mobile-account-guest-spark-1 {
    top: 16px;
    left: 1px;
  }

  .mobile-account-guest-spark-2 {
    top: 30px;
    right: 0;
    width: 7px;
    height: 7px;
    opacity: 0.75;
  }

  .mobile-account-guest-title {
    color: #071a4c;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.12;
  }

  .mobile-account-guest-copy {
    max-width: 220px;
    margin: -2px 0 2px;
    color: #6c7587;
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.3;
  }

  .mobile-account-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2f8f57, #74c98f);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 16px 26px rgba(47, 143, 87, 0.18);
  }

  .mobile-account-login-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-account-panel-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .mobile-account-avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 3px solid rgba(167, 224, 211, 0.92);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.9) 0 13px, transparent 14px),
      radial-gradient(ellipse at 50% 87%, rgba(22, 130, 91, 0.82) 0 22px, transparent 23px),
      linear-gradient(135deg, #d8f5ef, #eefaf7);
    color: #137258;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    box-shadow:
      0 10px 18px rgba(22, 76, 61, 0.11),
      inset 0 0 0 5px rgba(255, 255, 255, 0.86);
  }

  .mobile-account-avatar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 999px;
    background: #42bfa1;
  }

  .mobile-account-summary {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .mobile-account-email {
    min-width: 0;
    overflow: hidden;
    color: #15262a;
    font-size: clamp(0.9rem, 4.3vw, 1.06rem);
    font-weight: 400;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-account-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
  }

  .mobile-account-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 26px;
    padding: 0 7px;
    border: 1px solid rgba(89, 194, 169, 0.22);
    border-radius: 8px;
    background: rgba(233, 251, 246, 0.88);
    color: #247568;
    font-size: clamp(0.62rem, 2.6vw, 0.76rem);
    font-weight: 400;
    white-space: nowrap;
  }

  .mobile-account-badge span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-account-badge svg {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-account-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(105, 153, 145, 0.18);
  }

  .mobile-account-item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 4px 2px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #263c44;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 350;
    text-align: left;
    text-decoration: none;
  }

  .mobile-account-item-icon {
    display: grid;
    place-items: center;
    color: #197a6c;
  }

  .mobile-account-item-icon svg,
  .mobile-account-chevron svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-account-chevron {
    display: grid;
    place-items: center;
    color: #64737c;
  }

  .mobile-account-item-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .mobile-account-item-title,
  .mobile-account-item-note {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-account-item-note {
    color: #37746a;
    font-size: 0.86rem;
    font-weight: 300;
  }

  .mobile-account-upgrade {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    min-height: 58px;
    margin: 5px 0 6px;
    padding: 8px 10px;
    border: 1px solid rgba(85, 200, 176, 0.36);
    border-radius: 15px;
    background:
      radial-gradient(circle at 12% 50%, rgba(190, 238, 226, 0.74), transparent 25%),
      linear-gradient(180deg, rgba(244, 254, 251, 0.98), rgba(239, 252, 249, 0.92));
    box-shadow: 0 12px 24px rgba(42, 116, 100, 0.09);
    color: #1c7368;
  }

  .mobile-account-upgrade .mobile-account-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(197, 242, 232, 0.82);
  }

  .mobile-account-logout {
    border-top: 1px solid rgba(105, 153, 145, 0.14);
    border-radius: 0;
    color: #e7464f;
    cursor: pointer;
  }

  .mobile-account-logout .mobile-account-item-icon,
  .mobile-account-logout .mobile-account-chevron {
    color: #e7464f;
  }

  .mobile-account-panel:not(.is-logged-in) .mobile-account-logged-in-only {
    display: none;
  }

  .mobile-account-panel.is-logged-in .mobile-account-guest-only {
    display: none;
  }

  @media (max-width: 360px) {
    .mobile-brand-header {
      grid-template-columns: 40px minmax(0, 1fr) 40px;
      gap: 6px;
      min-height: 58px;
      padding: 7px 12px;
    }

    .mobile-brand-header-action {
      width: 40px;
      height: 40px;
      flex-basis: 40px;
    }

    .mobile-brand-header-logo {
      width: clamp(128px, 42vw, 146px);
    }

    .mobile-brand-header-action-menu span {
      width: 23px;
    }

    .mobile-brand-header-account svg {
      width: 20px;
      height: 20px;
    }
  }

  .form-card > .section-heading {
    display: none;
  }

  .form-card.mobile-form-stage-active .mobile-brand-header {
    display: grid;
    margin-bottom: 16px;
  }

  .form-card.mobile-form-stage-active > .section-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    margin: 0 0 14px;
    padding: 0 8px;
  }

  .form-card.mobile-form-stage-active > .section-heading::before,
  .form-card.mobile-form-stage-active > .section-heading::after {
    display: none;
  }

  .form-card.mobile-form-stage-active .section-kicker {
    display: none;
  }

  .form-card.mobile-form-stage-active > .section-heading h2 {
    margin: 0;
    max-width: none;
    font-size: clamp(1.76rem, 7vw, 2.08rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge {
    display: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields {
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    border-color: rgba(91, 126, 106, 0.14);
    background:
      radial-gradient(circle at top right, rgba(235, 249, 239, 0.74), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 251, 247, 0.94));
    box-shadow: 0 16px 36px rgba(37, 67, 49, 0.08);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero {
    display: block;
    padding: 0 18px 16px;
    border: 0;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-chip {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(243, 251, 245, 0.98), rgba(226, 245, 232, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-chip .ai-step-pill-chip-icon {
    inset: 12px;
    opacity: 0.16;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-chip .ai-step-pill-chip-text {
    font-size: 1.12rem;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding-top: 0;
    align-self: center;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy strong {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.26rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy span {
    display: block;
    color: rgba(82, 99, 90, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-toggle {
    display: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-intro,
  .form-card.mobile-form-stage-active #advanced-fields .ai-step-detail-heading {
    display: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-choice-group {
    gap: 12px;
    padding: 0 18px 18px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-question {
    display: block;
    margin: 0;
    color: var(--text);
    font-size: clamp(0.95rem, 3.75vw, 1rem);
    font-weight: 400;
    line-height: 1.24;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card {
    position: relative;
    min-height: clamp(138px, 34vw, 152px);
    padding: 15px 13px 13px;
    border-radius: 20px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(41, 73, 52, 0.06);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 21px;
    height: 21px;
    border: 1.7px solid rgba(116, 133, 124, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-content: start;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card-icon {
    width: clamp(52px, 13vw, 58px);
    height: clamp(52px, 13vw, 58px);
    border-radius: 999px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-icon {
    width: clamp(21px, 5.4vw, 24px);
    height: clamp(21px, 5.4vw, 24px);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card-copy {
    gap: 8px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card-copy strong {
    font-size: clamp(1rem, 4vw, 1.1rem);
    line-height: 1.18;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card-copy span {
    display: block;
    color: rgba(72, 88, 79, 0.88);
    font-size: clamp(0.76rem, 2.9vw, 0.84rem);
    line-height: 1.36;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card:has(input:checked) {
    border-color: rgba(47, 143, 87, 0.56);
    background: linear-gradient(180deg, rgba(249, 254, 250, 0.99), rgba(233, 247, 238, 0.94));
    box-shadow: 0 16px 28px rgba(47, 143, 87, 0.12);
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-mode-card:has(input:checked)::after {
    border-color: rgba(47, 143, 87, 0.96);
    background:
      radial-gradient(circle at center, rgba(47, 143, 87, 0.96) 0 32%, rgba(255, 255, 255, 0.98) 34% 54%, rgba(47, 143, 87, 0.96) 56% 100%);
  }

  .form-card.mobile-form-stage-active #advanced-fields .dedication-panel,
  .form-card.mobile-form-stage-active #advanced-fields .ai-step-general-panel {
    gap: 10px;
    margin: 0 18px 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-detail-grid,
  .form-card.mobile-form-stage-active #ai-composer-fields .ai-step-general-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-general-note {
    display: none;
  }

  .form-card.mobile-form-stage-active #advanced-fields.mobile-ai-step-initial .dedication-panel,
  .form-card.mobile-form-stage-active #advanced-fields.mobile-ai-step-initial .ai-step-general-panel {
    display: none;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-note {
    position: absolute;
    inset: 0;
    background: url("/twemoji-musical-note.svg") center / 24px 24px no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #111111;
    clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-spark-1 {
    top: 14px;
    left: 10px;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-spark-2 {
    top: 11px;
    right: 12px;
    width: 4px;
    height: 4px;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-spark-3 {
    bottom: 12px;
    left: 11px;
    width: 4px;
    height: 4px;
  }

  .form-card.mobile-form-stage-active .mobile-heading-badge-spark-4 {
    bottom: 10px;
    right: 13px;
  }

  .mobile-landing-screen {
    display: block;
    padding: 0 10px 6px;
  }

  .mobile-landing-card {
    display: grid;
    gap: 18px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(104, 133, 116, 0.14);
    border-radius: 28px;
    background:
      radial-gradient(circle at top center, rgba(240, 250, 243, 0.78), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 254, 251, 0.97));
    box-shadow:
      0 20px 52px rgba(47, 87, 61, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .mobile-landing-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -2px -10px 0;
  }

  .mobile-landing-hero-image {
    display: block;
    flex: 0 0 auto;
    width: auto;
    max-width: min(100%, 338px);
    height: auto;
    border-radius: 24px;
    aspect-ratio: 1408 / 1117;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(69, 113, 82, 0.16));
  }

  .mobile-landing-copy {
    display: grid;
    gap: 10px;
    text-align: center;
  }

  .mobile-landing-intro-pill,
  .mobile-landing-copy-note,
  .mobile-landing-start-spark {
    display: none;
  }

  .mobile-landing-copy h3 {
    margin: 0;
    color: #1f2822;
    font-family: var(--font-display);
    width: 100%;
    max-width: 100%;
    justify-self: center;
    font-size: 1.72rem;
    line-height: 1.06;
    letter-spacing: 0;
  }

  .mobile-landing-title-line,
  .mobile-landing-title-highlight {
    display: block;
  }

  .mobile-landing-title-line {
    white-space: nowrap;
  }

  .mobile-landing-title-highlight {
    color: inherit;
  }

  .mobile-landing-copy-primary,
  .mobile-landing-copy-secondary {
    margin: 0;
    color: #617669;
  }

  .mobile-landing-copy-primary {
    font-size: 1rem;
    line-height: 1.5;
  }

  .mobile-landing-copy-secondary {
    font-size: 0.98rem;
    line-height: 1.48;
  }

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

  .mobile-landing-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 10px;
    border: 1px solid rgba(104, 133, 116, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: #476353;
    font-size: 0.95rem;
    font-weight: 350;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .mobile-landing-chip img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .mobile-landing-start {
    width: 100%;
    min-height: 56px;
    gap: 10px;
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(47, 143, 87, 0.22);
  }

  .mobile-landing-start-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  #song-form.mobile-form-hidden {
    display: none;
  }

  form {
    gap: 16px;
    padding: 0 8px;
  }

  .wizard-progress {
    gap: 10px;
  }

  .form-card.mobile-form-stage-active .wizard-progress {
    --wizard-dot-size: 28px;
    --wizard-line-width: 76px;
    display: grid;
    grid-template-columns:
      var(--wizard-dot-size)
      var(--wizard-line-width)
      var(--wizard-dot-size)
      var(--wizard-line-width)
      var(--wizard-dot-size);
    grid-template-rows: var(--wizard-dot-size) 20px;
    justify-content: center;
    justify-items: center;
    align-items: start;
    column-gap: 0;
    row-gap: 8px;
    width: fit-content;
    max-width: 100%;
    min-height: 56px;
    margin: 4px auto 20px;
    padding: 0;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  .form-card.mobile-form-stage-active .wizard-progress[data-step-count="2"] {
    --wizard-line-width: 92px;
    grid-template-columns:
      var(--wizard-dot-size)
      var(--wizard-line-width)
      var(--wizard-dot-size);
  }

  .form-card.mobile-form-stage-active .wizard-progress-item {
    position: relative;
    z-index: 1;
    width: var(--wizard-dot-size);
    min-width: var(--wizard-dot-size);
    height: var(--wizard-dot-size);
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item[data-wizard-indicator="lyrics"] {
    grid-column: 1;
    grid-row: 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item[data-wizard-indicator="sound"] {
    grid-column: 3;
    grid-row: 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item[data-wizard-indicator="ai"] {
    grid-column: 5;
    grid-row: 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress::before {
    content: none;
  }

  .form-card.mobile-form-stage-active .wizard-progress-connector {
    display: block;
    width: var(--wizard-line-width);
    height: 2px;
    align-self: start;
    margin-top: calc((var(--wizard-dot-size) / 2) - 1px);
    background: rgba(182, 195, 185, 0.48);
    border-radius: 999px;
    z-index: 0;
  }

  .form-card.mobile-form-stage-active .wizard-progress-connector[data-wizard-connector="sound"] {
    grid-column: 2;
    grid-row: 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress-connector[data-wizard-connector="ai"] {
    grid-column: 4;
    grid-row: 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress::after {
    content: none;
  }

  .form-card.mobile-form-stage-active .wizard-progress-index {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: var(--wizard-dot-size);
    height: var(--wizard-dot-size);
    min-width: var(--wizard-dot-size);
    min-height: var(--wizard-dot-size);
    border-radius: 999px;
    background: #ffffff;
    border: 1.5px solid rgba(181, 196, 185, 0.92);
    box-shadow: 0 4px 12px rgba(41, 73, 52, 0.04);
    overflow: hidden;
  }

  .form-card.mobile-form-stage-active .wizard-progress-index-value {
    position: absolute;
    inset: 0;
    display: block;
    color: #7a8e7f;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 350;
    line-height: var(--wizard-dot-size);
    text-align: center;
    transform: none;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-active .wizard-progress-index {
    background: #2ab055;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(53, 181, 95, 0.22);
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-active .wizard-progress-index-value {
    color: #ffffff;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-complete .wizard-progress-index {
    background: #2ab055;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(53, 181, 95, 0.16);
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-complete .wizard-progress-index-value {
    color: #ffffff;
  }

  .form-card.mobile-form-stage-active .wizard-progress-label {
    position: absolute;
    top: calc(var(--wizard-dot-size) + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    min-width: 0;
    color: #7a8a7f;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
    word-break: normal;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-complete .wizard-progress-label,
  .form-card.mobile-form-stage-active .wizard-progress-item.is-active .wizard-progress-label {
    color: var(--accent);
  }

  .form-card.mobile-form-stage-active .wizard-progress-item.is-active .wizard-progress-label {
    color: var(--accent);
  }

  #wizard-step-lyrics {
    gap: 14px;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .section-label-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .lyrics-step-hero {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .form-card.mobile-form-stage-active .sound-step-hero-art {
    display: none;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .section-step-illustrated {
    width: 54px;
    height: 54px;
    background: radial-gradient(circle at center, rgba(244, 252, 246, 0.98), rgba(232, 246, 236, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .section-step-illustration {
    width: 26px;
    height: 26px;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics h3 {
    font-family: var(--font-ui);
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .sound-step-hero-text {
    gap: 2px;
  }

  .form-card.mobile-form-stage-active #wizard-step-lyrics .lyrics-section-copy-mobile {
    margin-top: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero {
    gap: 14px;
    padding: 0;
    border: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-copy {
    gap: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-heading {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-step {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(244, 252, 246, 0.98), rgba(232, 246, 236, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    align-self: center;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-gclef {
    color: var(--accent);
    font-size: 2.05rem;
    line-height: 1;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-text {
    gap: 4px;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound h3 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .form-card.mobile-form-stage-active #wizard-step-sound .sound-step-hero-copy .section-copy {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.35;
    color: #667a70;
    font-weight: 300;
    white-space: normal;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero {
    padding: 0 18px 16px;
    border: 0;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy {
    gap: 4px;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy strong {
    font-family: var(--font-ui);
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .form-card.mobile-form-stage-active #advanced-fields .ai-step-hero-copy span {
    color: #667a70;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.35;
  }

  .lyrics-section-copy-mobile {
    font-size: 0.88rem;
    line-height: 1.35;
    color: #667a70;
    font-weight: 300;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 -2px;
    overflow: hidden;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(41, 73, 52, 0.035);
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    gap: 6px 8px;
    justify-content: start;
    align-items: center;
    min-height: 68px;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    text-align: left;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button + .mobile-lyrics-mode-button {
    border-left-color: rgba(80, 113, 91, 0.1);
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button:first-child {
    border-radius: 19px 0 0 19px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button:last-child {
    border-radius: 0 19px 19px 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button.is-active {
    border-color: rgba(47, 143, 87, 0.76);
    border-width: 1px;
    background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
    box-shadow: 0 10px 20px rgba(47, 143, 87, 0.07);
    z-index: 1;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-indicator {
    display: none;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button.is-active .mobile-lyrics-mode-indicator {
    border-color: transparent;
    background: #35b55f;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button.is-active .mobile-lyrics-mode-indicator::before {
    display: none;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-icon {
    grid-area: icon;
    width: 32px;
    height: 32px;
    align-self: center;
    justify-self: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-icon-file::before {
    inset: 6px 8px 5px 8px;
    width: auto;
    height: auto;
    border-radius: 3px;
    background: #1f2a22;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-icon-file::after {
    top: 6px;
    right: 8px;
    width: 8px;
    height: 8px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-icon-sparkles::before {
    inset: 7px;
    background: #111111;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-title {
    grid-area: title;
    max-width: none;
    margin-top: 0;
    color: #1f2a22;
    font-size: 0.99rem;
    font-weight: 500;
    line-height: 1.02;
    white-space: nowrap;
    align-self: end;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-copy {
    grid-area: copy;
    display: block;
    min-width: 0;
    color: #506457;
    font-size: 0.56rem;
    font-weight: 300;
    line-height: 1.03;
    white-space: normal;
    align-self: start;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-hint-card {
    gap: 10px;
    width: 100%;
    min-height: 76px;
    padding: 12px 14px 12px 12px;
    border-radius: 18px;
    border: 1px solid rgba(80, 113, 91, 0.08);
    background: linear-gradient(180deg, rgba(248, 252, 249, 0.98), rgba(241, 249, 243, 0.93));
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-hint-copy {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-hint-close {
    width: 24px;
    height: 24px;
    font-size: 1.35rem;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card-lyrics {
    display: block;
    padding: 14px;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.045);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card-lyrics.is-expanded {
    border-color: rgba(80, 113, 91, 0.13);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.045);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card-lyrics .mobile-collapsible-trigger {
    display: none;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card-lyrics .mobile-collapsible-body {
    display: block;
    padding: 0;
    border-top: 0;
  }

  .form-card.mobile-form-stage-active #lyrics-input-group {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .lyrics-input-card {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-head {
    display: grid;
    grid-template-columns: minmax(92px, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-title-wrap {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-icon {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(180deg, #2faa67, #1f8d4f);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-icon::before {
    content: "";
    position: absolute;
    inset: 8px 9px 7px 9px;
    border-radius: 3px;
    background: #ffffff;
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 9px;
    width: 5px;
    height: 5px;
    background: rgba(47, 143, 87, 0.42);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-title {
    color: #1f2a22;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-subtitle {
    overflow: hidden;
    color: #6f7c73;
    font-size: 0.73rem;
    font-weight: 300;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-paste-status {
    margin: -4px 0 0;
    padding: 8px 10px;
    border: 1px solid rgba(47, 143, 87, 0.13);
    border-radius: 13px;
    background: rgba(238, 249, 242, 0.86);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 350;
    line-height: 1.25;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 28px;
    padding: 0;
    color: #343f38;
    font-size: clamp(0.62rem, 2.45vw, 0.73rem);
    font-weight: 350;
    line-height: 1;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action:disabled {
    color: rgba(52, 63, 56, 0.42);
    cursor: default;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background: currentColor;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action-icon-paste {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='10' height='12' rx='2'/%3E%3Cpath d='M6 16H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='10' height='12' rx='2'/%3E%3Cpath d='M6 16H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action-icon-clear {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='m19 6-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='m19 6-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-field {
    display: block;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-label {
    display: none;
  }

  .form-card.mobile-form-stage-active #lyrics-input-group textarea {
    width: 100%;
    min-height: min(50svh, 430px);
    padding: 18px;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: #1f2a22;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.42;
    resize: vertical;
  }

  .form-card.mobile-form-stage-active #lyrics-input-group textarea::placeholder {
    color: #7b8781;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card {
    border-color: rgba(80, 113, 91, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 10px 24px rgba(41, 73, 52, 0.04);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card.is-expanded {
    border-color: rgba(47, 143, 87, 0.22);
    box-shadow: 0 12px 28px rgba(41, 73, 52, 0.06);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] {
    display: block;
    padding: 14px;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.045);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"].is-expanded {
    border-color: rgba(80, 113, 91, 0.13);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.045);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-trigger {
    grid-template-columns: 30px minmax(0, 1fr) 14px;
    gap: 8px;
    min-height: 0;
    padding: 0;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(180deg, #2faa67, #1f8d4f);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #ffffff;
    -webkit-mask: var(--mobile-card-icon-mask) center / contain no-repeat;
    mask: var(--mobile-card-icon-mask) center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-copy {
    gap: 2px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-title {
    color: #1f2a22;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-summary {
    color: #6f7c73;
    font-size: 0.73rem;
    font-weight: 300;
    line-height: 1.12;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-chevron {
    width: 10px;
    height: 10px;
    border-width: 1.7px;
    border-color: rgba(31, 42, 34, 0.42);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-body {
    padding: 12px 0 0;
    border-top: 0;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"].is-expanded .mobile-collapsible-body {
    display: grid;
    gap: 0;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-body > .ai-step-field-card {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] input,
  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] textarea {
    width: 100%;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: #1f2a22;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.42;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] input {
    min-height: 50px;
    padding: 14px 15px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] textarea {
    min-height: min(34svh, 260px);
    padding: 16px 16px 34px;
    resize: vertical;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] input::placeholder,
  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] textarea::placeholder {
    color: #7b8781;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .ai-step-field-count {
    right: 12px;
    bottom: 12px;
    color: #7a857e;
    font-size: 0.72rem;
    font-weight: 300;
  }

  .form-card.mobile-form-stage-active .mobile-direct-select-card {
    min-height: 88px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-trigger {
    padding: 14px 14px 12px;
    grid-template-columns: 42px minmax(0, 1fr) 14px;
    gap: 10px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
      var(--mobile-card-icon-mask) center / 18px 18px no-repeat,
      radial-gradient(circle at center, rgba(244, 252, 246, 0.98), rgba(230, 245, 235, 0.82));
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon-music,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-microphone,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-sparkles,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-heart,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-flag {
    background: radial-gradient(circle at center, rgba(244, 252, 246, 0.98), rgba(230, 245, 235, 0.82));
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon-music::before,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-microphone::before,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-sparkles::before,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-heart::before,
  .form-card.mobile-form-stage-active .mobile-collapsible-icon-flag::before {
    inset: 11px;
    background: var(--accent);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon-sparkles::before {
    background: #111111;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon-file::before {
    top: 9px;
    left: 12px;
    width: 17px;
    height: 22px;
    border-radius: 6px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-icon-file::after {
    top: 9px;
    right: 10px;
    width: 8px;
    height: 8px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-title {
    font-size: 0.98rem;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-summary {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-body {
    padding: 0 14px 14px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-body textarea {
    min-height: 138px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-card .mobile-native-select-backup {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-card .sound-field-card {
    position: relative;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-card .sound-field-stack,
  .form-card.mobile-form-stage-active .mobile-custom-select-card .sound-field-control-row {
    display: block;
    min-width: 0;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-card .mobile-collapsible-body {
    padding: 0 12px 12px;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-list {
    display: grid;
    gap: 7px;
    max-height: min(46vh, 330px);
    overflow-y: auto;
    padding: 2px;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-option {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2a22;
    font: inherit;
    font-size: clamp(0.78rem, 3.25vw, 0.93rem);
    font-weight: 375;
    line-height: 1.15;
    text-align: left;
    box-shadow: 0 6px 14px rgba(41, 73, 52, 0.04);
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-option span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-check {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(130, 150, 137, 0.42);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.92);
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-option.is-selected {
    border-color: rgba(47, 143, 87, 0.55);
    background: linear-gradient(180deg, rgba(246, 253, 248, 0.99), rgba(231, 247, 237, 0.94));
    color: var(--accent-strong);
    box-shadow: 0 8px 18px rgba(47, 143, 87, 0.08);
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-option.is-selected .mobile-custom-select-check {
    border-color: transparent;
    background: #35b55f;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-option.is-selected .mobile-custom-select-check::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-custom-select-list.mobile-genre-style-panel {
    gap: 10px;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="voice"] .mobile-custom-select-list,
  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="mood"] .mobile-custom-select-list,
  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="language"] .mobile-custom-select-list {
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="genre"] {
    border-color: rgba(80, 113, 91, 0.12);
    border-radius: 26px;
    box-shadow: 0 18px 36px rgba(41, 73, 52, 0.08);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="genre"].is-expanded,
  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="instruments"].is-expanded {
    border-color: rgba(47, 143, 87, 0.22);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="genre"] .mobile-collapsible-trigger {
    padding: 16px 16px 12px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="genre"] .mobile-collapsible-title {
    font-size: clamp(1.08rem, 4.5vw, 1.28rem);
    line-height: 1.1;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="genre"] .mobile-collapsible-summary {
    font-size: clamp(0.78rem, 3.35vw, 0.93rem);
    line-height: 1.3;
    white-space: normal;
  }

  .form-card.mobile-form-stage-active .mobile-style-main-block,
  .form-card.mobile-form-stage-active .mobile-style-substyle-block {
    display: grid;
    gap: 8px;
  }

  .form-card.mobile-form-stage-active .mobile-style-label,
  .form-card.mobile-form-stage-active .mobile-style-section-title {
    color: var(--text);
    font-size: clamp(0.84rem, 3.35vw, 0.98rem);
    font-weight: 425;
    line-height: 1.15;
  }

  .form-card.mobile-form-stage-active .mobile-style-caption,
  .form-card.mobile-form-stage-active .mobile-style-section-copy {
    color: #667a70;
    font-size: clamp(0.76rem, 3.05vw, 0.9rem);
    font-weight: 300;
    line-height: 1.25;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(80, 113, 91, 0.12);
  }

  .form-card.mobile-form-stage-active .mobile-style-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 42px;
    padding: 8px 7px;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2a22;
    font: inherit;
    font-size: clamp(0.68rem, 2.9vw, 0.84rem);
    font-weight: 390;
    line-height: 1.08;
    box-shadow: 0 5px 12px rgba(41, 73, 52, 0.04);
  }

  .form-card.mobile-form-stage-active .mobile-style-chip span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip-check {
    position: relative;
    display: none;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border-radius: 999px;
    background: #35b55f;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip-check::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-style-chip.is-selected {
    border-color: rgba(47, 143, 87, 0.5);
    background: linear-gradient(180deg, rgba(246, 253, 248, 0.99), rgba(231, 247, 237, 0.94));
    color: var(--accent-strong);
  }

  .form-card.mobile-form-stage-active .mobile-style-chip.is-selected .mobile-style-chip-check {
    display: inline-flex;
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-block {
    padding-top: 2px;
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-option {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 43px;
    padding: 9px 10px;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2a22;
    font: inherit;
    font-size: clamp(0.72rem, 3vw, 0.9rem);
    font-weight: 375;
    line-height: 1.12;
    text-align: left;
    box-shadow: 0 6px 14px rgba(41, 73, 52, 0.04);
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-option span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .mobile-style-radio {
    position: relative;
    width: 19px;
    height: 19px;
    border: 1.5px solid rgba(130, 150, 137, 0.5);
    border-radius: 999px;
    background: #ffffff;
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-option.is-selected {
    border-color: rgba(47, 143, 87, 0.55);
    background: linear-gradient(180deg, rgba(246, 253, 248, 0.99), rgba(231, 247, 237, 0.94));
    color: var(--accent-strong);
    box-shadow: 0 8px 18px rgba(47, 143, 87, 0.08);
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-option.is-selected .mobile-style-radio {
    border-color: rgba(47, 143, 87, 0.58);
  }

  .form-card.mobile-form-stage-active .mobile-style-substyle-option.is-selected .mobile-style-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: #35b55f;
  }

  .form-card.mobile-form-stage-active .mobile-style-selected-bar {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(47, 143, 87, 0.14);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(250, 254, 251, 0.98), rgba(241, 251, 245, 0.9));
    color: #667183;
    font-size: clamp(0.75rem, 3.15vw, 0.9rem);
    font-weight: 300;
    line-height: 1.25;
  }

  .form-card.mobile-form-stage-active .mobile-style-selected-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    background: #35b55f;
  }

  .form-card.mobile-form-stage-active .mobile-style-selected-icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    background: #ffffff;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  .form-card.mobile-form-stage-active .mobile-style-selected-bar strong {
    color: var(--accent-strong);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="substyles"] .mobile-collapsible-body {
    padding: 0 12px 12px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="substyles"] .genre-substyle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    max-height: min(42vh, 300px);
    overflow-y: auto;
    padding: 2px;
    overscroll-behavior: contain;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="substyles"] .check-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 14px;
    font-size: clamp(0.78rem, 3.2vw, 0.92rem);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="substyles"] .check-card input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-key="substyles"] .check-card span {
    overflow: hidden;
    font-size: inherit;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .lyrics-text-count {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    margin: 0;
    padding-left: 8px;
    border-left: 1px solid rgba(80, 113, 91, 0.15);
    color: #7a857e;
    font-size: clamp(0.62rem, 2.4vw, 0.72rem);
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
  }

  .form-card.mobile-form-stage-active .wizard-footer {
    bottom: 0;
    padding-top: 14px;
  }

  .form-card.mobile-form-stage-active .wizard-footer::before {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: 0;
    height: 1px;
    display: block;
    background: rgba(80, 113, 91, 0.12);
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions {
    grid-template-columns: minmax(104px, 0.84fr) minmax(0, 1.16fr);
    gap: 10px;
    padding: 10px 0 6px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    backdrop-filter: blur(16px);
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .secondary-button,
  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button {
    min-width: 0;
    min-height: 54px;
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button {
    box-shadow: 0 12px 24px rgba(47, 143, 87, 0.16);
  }
}

@media (max-width: 389px) {
  .form-card.mobile-form-stage-active .mobile-lyrics-mode {
    gap: 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-button {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 4px 6px;
    min-height: 62px;
    padding: 8px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-icon {
    width: 27px;
    height: 27px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-title {
    font-size: 0.88rem;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-mode-copy {
    font-size: 0.5rem;
    line-height: 1.02;
  }

  .form-card.mobile-form-stage-active .lyrics-input-card {
    gap: 12px;
    padding: 0;
    border-radius: 0;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-head {
    grid-template-columns: minmax(88px, 1fr) auto;
    gap: 6px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-title-wrap {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 6px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-icon {
    width: 27px;
    height: 27px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-title {
    font-size: 0.82rem;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-subtitle {
    font-size: 0.66rem;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-actions {
    gap: 5px;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action {
    gap: 3px;
    font-size: 0.58rem;
  }

  .form-card.mobile-form-stage-active .mobile-lyrics-input-action-icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .form-card.mobile-form-stage-active .lyrics-text-count {
    padding-left: 5px;
    font-size: 0.58rem;
  }

  .form-card.mobile-form-stage-active #lyrics-input-group textarea {
    min-height: min(47svh, 390px);
    padding: 16px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .form-card.mobile-form-stage-active #advanced-fields .dedication-panel,
  .form-card.mobile-form-stage-active #advanced-fields .ai-step-general-panel {
    margin-right: 2px;
    margin-left: 2px;
    padding-right: 0;
    padding-left: 0;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] {
    padding: 12px;
    border-radius: 20px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-trigger {
    grid-template-columns: 27px minmax(0, 1fr) 12px;
    gap: 6px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-icon {
    width: 27px;
    height: 27px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-icon::before {
    inset: 7px;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-title {
    font-size: 0.82rem;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] .mobile-collapsible-summary {
    font-size: 0.66rem;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] input {
    min-height: 46px;
    padding: 13px 14px;
    font-size: 0.8rem;
  }

  .form-card.mobile-form-stage-active .mobile-collapsible-card[data-mobile-card-group="ai"] textarea {
    min-height: min(31svh, 228px);
    padding: 15px 15px 32px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .site-footer {
    margin: auto 8px 0;
    padding-top: 18px;
  }

  .site-footer-panel {
    padding: 15px 14px 16px;
    border-radius: 24px;
  }

  .site-footer-panel::before {
    right: -126px;
    bottom: -86px;
    width: 292px;
    height: 160px;
  }

  .site-footer-grid {
    gap: 12px 8px;
  }

  .site-footer-brand {
    display: contents;
  }

  .site-footer-logo {
    width: clamp(68px, 21vw, 84px);
  }

  .site-footer-support {
    gap: 4px;
    font-size: clamp(0.5rem, 2.45vw, 0.66rem);
  }

  .site-footer-support-icon {
    width: 12px;
    height: 12px;
  }

  .site-footer-security {
    padding-left: 0;
  }

  .site-footer-payments {
    gap: 4px;
  }

  .site-footer-payment-mark {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }

  .site-footer-payment-logo {
    height: 13px;
  }

  .site-footer-legal {
    gap: 5px 6px;
  }

  .site-footer-legal-link {
    font-size: clamp(0.58rem, 2.7vw, 0.68rem);
  }

  .site-footer-legal-dot {
    width: 5px;
    height: 5px;
  }
}

.mobile-dashboard-system-bar,
.mobile-account-dashboard,
.mobile-dashboard-tabbar {
  display: none;
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 1;
    min-height: 100svh;
    background:
      radial-gradient(circle at top center, rgba(18, 134, 77, 0.05), transparent 32%),
      linear-gradient(180deg, #f7f8f7 0%, #ffffff 44%, #f8faf9 100%);
  }

  body.mobile-account-dashboard-active .page-shell {
    width: min(100% - 16px, 500px);
    min-height: calc(100svh - 16px);
    margin: 8px auto;
    padding: 0;
    border: 1px solid rgba(222, 231, 226, 0.82);
    border-radius: calc(26px * var(--mobile-dashboard-scale));
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 26px 64px rgba(21, 46, 34, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
    overflow: clip;
  }

  body.mobile-account-dashboard-active .site-footer,
  body.mobile-account-dashboard-active #account-main-grid > :not(#mobile-account-dashboard) {
    display: none !important;
  }

  body.mobile-account-dashboard-active #account-main-grid {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  body.mobile-account-dashboard-active .mobile-brand-header {
    grid-template-columns:
      calc(48px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      calc(48px * var(--mobile-dashboard-scale));
    min-height: calc(100px * var(--mobile-dashboard-scale));
    margin: 0;
    padding:
      calc(12px * var(--mobile-dashboard-scale))
      calc(20px * var(--mobile-dashboard-scale))
      calc(8px * var(--mobile-dashboard-scale));
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-logo {
    width: clamp(170px, 50vw, 248px);
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action {
    width: calc(48px * var(--mobile-dashboard-scale));
    height: calc(48px * var(--mobile-dashboard-scale));
    flex-basis: calc(48px * var(--mobile-dashboard-scale));
    color: #051a3c;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu span {
    width: calc(28px * var(--mobile-dashboard-scale));
    height: calc(3px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account {
    border: 0;
    background: #dff4eb;
    color: #16895f;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account svg {
    width: calc(26px * var(--mobile-dashboard-scale));
    height: calc(26px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    display: grid;
    gap: calc(24px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(26px * var(--mobile-dashboard-scale))
      calc(112px * var(--mobile-dashboard-scale));
    font-size: calc(16px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard.hidden,
  body.mobile-account-dashboard-active .mobile-dashboard-tabbar.hidden {
    display: none !important;
  }

  .mobile-account-dashboard h2,
  .mobile-account-dashboard h3,
  .mobile-account-dashboard p {
    margin: 0;
  }

  .mobile-account-dashboard button,
  .mobile-dashboard-tabbar button {
    font: inherit;
  }

  .mobile-account-dashboard svg,
  .mobile-dashboard-tabbar svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-dashboard-stats,
  .mobile-dashboard-panel,
  .mobile-dashboard-shortcut,
  .mobile-dashboard-tabbar {
    border: 1px solid rgba(219, 229, 224, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 calc(10px * var(--mobile-dashboard-scale)) calc(28px * var(--mobile-dashboard-scale)) rgba(17, 42, 28, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .mobile-dashboard-stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) auto;
    gap: calc(12px * var(--mobile-dashboard-scale));
    align-items: center;
    min-height: calc(96px * var(--mobile-dashboard-scale));
    padding:
      calc(18px * var(--mobile-dashboard-scale))
      calc(18px * var(--mobile-dashboard-scale));
    border-radius: calc(20px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-stat {
    display: grid;
    grid-template-columns: calc(58px * var(--mobile-dashboard-scale)) minmax(0, 1fr);
    gap: calc(14px * var(--mobile-dashboard-scale));
    align-items: center;
    min-width: 0;
  }

  .mobile-dashboard-icon {
    display: inline-grid;
    place-items: center;
    width: calc(58px * var(--mobile-dashboard-scale));
    height: calc(58px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #e3f5ec;
    color: #15875b;
  }

  .mobile-dashboard-icon svg {
    width: calc(28px * var(--mobile-dashboard-scale));
    height: calc(28px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-stat-copy {
    display: grid;
    gap: calc(3px * var(--mobile-dashboard-scale));
    min-width: 0;
  }

  .mobile-dashboard-stat-copy strong {
    color: #071a3a;
    font-size: calc(31px * var(--mobile-dashboard-scale));
    line-height: 0.95;
  }

  .mobile-dashboard-stat-copy span {
    color: #3f4756;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 300;
    line-height: 1.1;
  }

  .mobile-dashboard-status-pill,
  .mobile-dashboard-account-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(9px * var(--mobile-dashboard-scale));
    min-height: calc(45px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(19px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #e7f5ee;
    color: #13784f;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 400;
    white-space: nowrap;
  }

  .mobile-dashboard-status-pill svg,
  .mobile-dashboard-account-pill svg {
    width: calc(22px * var(--mobile-dashboard-scale));
    height: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcut {
    display: grid;
    grid-template-columns: calc(54px * var(--mobile-dashboard-scale)) minmax(0, 1fr) calc(12px * var(--mobile-dashboard-scale));
    gap: calc(10px * var(--mobile-dashboard-scale));
    align-items: center;
    min-height: calc(92px * var(--mobile-dashboard-scale));
    min-width: 0;
    padding:
      calc(12px * var(--mobile-dashboard-scale))
      calc(12px * var(--mobile-dashboard-scale));
    border-radius: calc(14px * var(--mobile-dashboard-scale));
    color: #323948;
    cursor: pointer;
    text-align: left;
  }

  .mobile-dashboard-shortcut .mobile-dashboard-icon {
    width: calc(54px * var(--mobile-dashboard-scale));
    height: calc(54px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcut span:nth-child(2) {
    min-width: 0;
    color: #303849;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 350;
    line-height: 1.22;
  }

  .mobile-dashboard-chevron {
    display: block;
    width: calc(10px * var(--mobile-dashboard-scale));
    height: calc(10px * var(--mobile-dashboard-scale));
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: #3e4857;
    transform: rotate(-45deg);
  }

  .mobile-dashboard-carousel-dots {
    display: flex;
    justify-content: center;
    gap: calc(14px * var(--mobile-dashboard-scale));
    margin-top: calc(-6px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-carousel-dots span {
    width: calc(13px * var(--mobile-dashboard-scale));
    height: calc(13px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #d8dce1;
  }

  .mobile-dashboard-carousel-dots .is-active {
    width: calc(17px * var(--mobile-dashboard-scale));
    height: calc(17px * var(--mobile-dashboard-scale));
    background: #05a420;
  }

  .mobile-dashboard-panel {
    display: grid;
    gap: calc(14px * var(--mobile-dashboard-scale));
    padding:
      calc(20px * var(--mobile-dashboard-scale))
      calc(24px * var(--mobile-dashboard-scale));
    border-radius: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(12px * var(--mobile-dashboard-scale));
    padding-bottom: calc(12px * var(--mobile-dashboard-scale));
    border-bottom: 1px solid #e1e5ea;
  }

  .mobile-dashboard-panel h2 {
    color: #07142e;
    font-family: var(--font-display);
    font-size: calc(26px * var(--mobile-dashboard-scale));
    font-weight: 400;
    line-height: 1.1;
  }

  .mobile-dashboard-link {
    display: inline-flex;
    align-items: center;
    gap: calc(11px * var(--mobile-dashboard-scale));
    padding: 0;
    border: 0;
    background: transparent;
    color: #087c3d;
    font-size: calc(16px * var(--mobile-dashboard-scale));
    font-weight: 350;
    white-space: nowrap;
    cursor: pointer;
  }

  .mobile-dashboard-link .mobile-dashboard-chevron {
    color: currentColor;
  }

  .mobile-dashboard-audio-list,
  .mobile-dashboard-payments-list,
  .mobile-dashboard-credit-offers {
    display: grid;
  }

  .mobile-dashboard-audio-list {
    gap: calc(15px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-main {
    display: grid;
    grid-template-columns: calc(148px * var(--mobile-dashboard-scale)) minmax(0, 1fr);
    gap: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover {
    display: grid;
    place-items: center;
    width: calc(148px * var(--mobile-dashboard-scale));
    aspect-ratio: 1;
    border-radius: calc(14px * var(--mobile-dashboard-scale));
    background:
      radial-gradient(circle at 62% 22%, #ff8b2c 0 10%, transparent 11%),
      linear-gradient(145deg, #111827, #2d3b38 45%, #f1731b);
    background-position: center;
    background-size: cover;
    overflow: hidden;
  }

  .mobile-dashboard-cover-small {
    width: calc(74px * var(--mobile-dashboard-scale));
    border-radius: calc(11px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover-placeholder {
    width: 48%;
    height: 48%;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      inset 0 0 0 calc(10px * var(--mobile-dashboard-scale)) rgba(255, 255, 255, 0.2),
      0 0 calc(22px * var(--mobile-dashboard-scale)) rgba(255, 111, 40, 0.46);
  }

  .mobile-dashboard-audio-copy {
    display: grid;
    gap: calc(10px * var(--mobile-dashboard-scale));
    min-width: 0;
  }

  .mobile-dashboard-audio-copy h3,
  .mobile-dashboard-audio-compact h3 {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #07142e;
    font-family: var(--font-display);
    font-size: calc(26px * var(--mobile-dashboard-scale));
    font-weight: 400;
    line-height: 1.14;
  }

  .mobile-dashboard-audio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: calc(7px * var(--mobile-dashboard-scale)) calc(12px * var(--mobile-dashboard-scale));
    color: #596170;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 300;
  }

  .mobile-dashboard-audio-meta > span {
    display: inline-flex;
    align-items: center;
    gap: calc(6px * var(--mobile-dashboard-scale));
    min-width: 0;
  }

  .mobile-dashboard-audio-meta svg {
    width: calc(17px * var(--mobile-dashboard-scale));
    height: calc(17px * var(--mobile-dashboard-scale));
    flex: 0 0 auto;
  }

  .mobile-dashboard-player {
    display: grid;
    grid-template-columns:
      calc(48px * var(--mobile-dashboard-scale))
      calc(45px * var(--mobile-dashboard-scale))
      minmax(calc(80px * var(--mobile-dashboard-scale)), 1fr)
      calc(45px * var(--mobile-dashboard-scale))
      calc(30px * var(--mobile-dashboard-scale))
      calc(16px * var(--mobile-dashboard-scale));
    gap: calc(10px * var(--mobile-dashboard-scale));
    align-items: center;
    min-height: calc(66px * var(--mobile-dashboard-scale));
    padding:
      calc(9px * var(--mobile-dashboard-scale))
      calc(14px * var(--mobile-dashboard-scale));
    border: 1px solid #d9dee3;
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    background: #fbfdfc;
  }

  .mobile-dashboard-play {
    display: grid;
    place-items: center;
    width: calc(48px * var(--mobile-dashboard-scale));
    height: calc(48px * var(--mobile-dashboard-scale));
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #2e966c, #218459);
    color: #fff;
    cursor: pointer;
  }

  .mobile-dashboard-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: calc(4px * var(--mobile-dashboard-scale));
    border-top: calc(10px * var(--mobile-dashboard-scale)) solid transparent;
    border-bottom: calc(10px * var(--mobile-dashboard-scale)) solid transparent;
    border-left: calc(14px * var(--mobile-dashboard-scale)) solid currentColor;
  }

  .mobile-dashboard-play.is-playing span {
    width: calc(16px * var(--mobile-dashboard-scale));
    height: calc(18px * var(--mobile-dashboard-scale));
    margin-left: 0;
    border: 0;
    background:
      linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
  }

  .mobile-dashboard-time {
    color: #07142e;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 400;
    white-space: nowrap;
  }

  .mobile-dashboard-seek {
    position: relative;
    width: 100%;
    height: calc(18px * var(--mobile-dashboard-scale));
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-dashboard-seek::before,
  .mobile-dashboard-seek span {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: calc(4px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    transform: translateY(-50%);
  }

  .mobile-dashboard-seek::before {
    right: 0;
    background: #d8dadc;
  }

  .mobile-dashboard-seek span {
    width: 0;
    background: #2a9369;
  }

  .mobile-dashboard-seek span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-7px * var(--mobile-dashboard-scale));
    width: calc(15px * var(--mobile-dashboard-scale));
    height: calc(15px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #2a9369;
    transform: translateY(-50%);
  }

  .mobile-dashboard-volume {
    color: #5c6470;
    font-size: calc(25px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-more {
    display: grid;
    gap: calc(4px * var(--mobile-dashboard-scale));
    justify-items: center;
  }

  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after {
    display: block;
  }

  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after,
  .mobile-dashboard-more {
    width: calc(5px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-more,
  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after {
    content: "";
    height: calc(5px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #4f5763;
  }

  .mobile-dashboard-audio-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(20px * var(--mobile-dashboard-scale));
    margin-top: calc(6px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(10px * var(--mobile-dashboard-scale));
    min-height: calc(48px * var(--mobile-dashboard-scale));
    border: 1px solid #9ba3ad;
    border-radius: calc(10px * var(--mobile-dashboard-scale));
    background: #fff;
    color: #4b5564;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 350;
    text-decoration: none;
  }

  .mobile-dashboard-outline-button svg {
    width: calc(22px * var(--mobile-dashboard-scale));
    height: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-gift-button {
    border-color: #32a775;
    color: #168457;
  }

  .mobile-dashboard-audio-compact,
  .mobile-dashboard-payment-row,
  .mobile-dashboard-account-row {
    display: grid;
    align-items: center;
    gap: calc(14px * var(--mobile-dashboard-scale));
    min-width: 0;
  }

  .mobile-dashboard-audio-compact {
    grid-template-columns:
      calc(74px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      calc(12px * var(--mobile-dashboard-scale));
    padding-top: calc(16px * var(--mobile-dashboard-scale));
    border-top: 1px solid #ebedf0;
  }

  .mobile-dashboard-audio-compact h3 {
    font-size: calc(21px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact p {
    margin-top: calc(5px * var(--mobile-dashboard-scale));
    color: #596170;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 300;
    line-height: 1.25;
  }

  .mobile-dashboard-audio-status {
    display: grid;
    gap: calc(8px * var(--mobile-dashboard-scale));
    padding: calc(11px * var(--mobile-dashboard-scale));
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    background: #f7fbf8;
  }

  .mobile-dashboard-progress-head {
    display: flex;
    justify-content: space-between;
    gap: calc(12px * var(--mobile-dashboard-scale));
    color: #19312b;
    font-size: calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-progress-head span {
    color: #148154;
    font-weight: 400;
  }

  .mobile-dashboard-progress-bar {
    height: calc(8px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #d9ebe1;
    overflow: hidden;
  }

  .mobile-dashboard-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #168b5d, #60bd83);
  }

  .mobile-dashboard-payments-list {
    gap: 0;
  }

  .mobile-dashboard-payment-row {
    grid-template-columns:
      calc(50px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      calc(12px * var(--mobile-dashboard-scale));
    min-height: calc(62px * var(--mobile-dashboard-scale));
    padding:
      calc(11px * var(--mobile-dashboard-scale))
      0;
    border-bottom: 1px solid #eceef1;
  }

  .mobile-dashboard-payment-row:last-child {
    border-bottom: 0;
  }

  .mobile-dashboard-payment-icon,
  .mobile-dashboard-account-icon {
    display: grid;
    place-items: center;
    width: calc(50px * var(--mobile-dashboard-scale));
    height: calc(50px * var(--mobile-dashboard-scale));
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    background: #e7f5ee;
    color: #168457;
  }

  .mobile-dashboard-payment-icon svg,
  .mobile-dashboard-account-icon svg {
    width: calc(25px * var(--mobile-dashboard-scale));
    height: calc(25px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-payment-copy {
    display: grid;
    gap: calc(4px * var(--mobile-dashboard-scale));
    min-width: 0;
  }

  .mobile-dashboard-payment-copy strong {
    min-width: 0;
    overflow: hidden;
    color: #07142e;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-payment-copy span {
    color: #596170;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-payment-amount {
    color: #07142e;
    font-size: calc(20px * var(--mobile-dashboard-scale));
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-dashboard-credit-offers {
    gap: 0;
    margin-top: calc(-2px * var(--mobile-dashboard-scale));
    border: 1px solid #dce2e8;
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    overflow: hidden;
  }

  .mobile-dashboard-credit-offer {
    display: grid;
    grid-template-columns:
      calc(32px * var(--mobile-dashboard-scale))
      minmax(calc(118px * var(--mobile-dashboard-scale)), 1fr)
      minmax(calc(88px * var(--mobile-dashboard-scale)), 0.8fr)
      auto;
    gap: calc(12px * var(--mobile-dashboard-scale));
    align-items: center;
    min-height: calc(48px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(14px * var(--mobile-dashboard-scale));
    color: #07142e;
    cursor: pointer;
  }

  .mobile-dashboard-credit-offer + .mobile-dashboard-credit-offer {
    border-top: 1px solid #edf0f2;
  }

  .mobile-dashboard-credit-offer input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-dashboard-credit-radio {
    width: calc(22px * var(--mobile-dashboard-scale));
    height: calc(22px * var(--mobile-dashboard-scale));
    border: 2px solid #687483;
    border-radius: 999px;
  }

  .mobile-dashboard-credit-offer strong {
    font-size: calc(21px * var(--mobile-dashboard-scale));
    line-height: 1;
  }

  .mobile-dashboard-credit-offer > span:not(.mobile-dashboard-credit-radio) {
    color: #545e6c;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 300;
  }

  .mobile-dashboard-credit-offer em {
    display: inline-flex;
    align-items: center;
    gap: calc(8px * var(--mobile-dashboard-scale));
    min-height: calc(34px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(12px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #e4f5eb;
    color: #17794f;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
  }

  .mobile-dashboard-credit-offer em svg {
    width: calc(19px * var(--mobile-dashboard-scale));
    height: calc(19px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-credit-offer:has(input:checked) {
    border-color: #32a775;
    background: #eef8f2;
    box-shadow: inset 0 0 0 1px #32a775;
  }

  .mobile-dashboard-credit-offer:has(input:checked) .mobile-dashboard-credit-radio {
    display: grid;
    place-items: center;
    border-color: #229263;
    background: #229263;
  }

  .mobile-dashboard-credit-offer:has(input:checked) .mobile-dashboard-credit-radio::after {
    content: "";
    width: calc(7px * var(--mobile-dashboard-scale));
    height: calc(7px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #fff;
  }

  .mobile-dashboard-pay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(14px * var(--mobile-dashboard-scale));
    min-height: calc(58px * var(--mobile-dashboard-scale));
    border: 0;
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    background: linear-gradient(180deg, #259366, #168254);
    color: #fff;
    font-size: calc(20px * var(--mobile-dashboard-scale));
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 calc(14px * var(--mobile-dashboard-scale)) calc(24px * var(--mobile-dashboard-scale)) rgba(22, 130, 84, 0.2);
  }

  .mobile-dashboard-pay-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
  }

  .mobile-dashboard-pay-arrow {
    width: calc(12px * var(--mobile-dashboard-scale));
    height: calc(12px * var(--mobile-dashboard-scale));
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
  }

  .mobile-dashboard-credit-status {
    min-height: calc(18px * var(--mobile-dashboard-scale));
    color: #4f5964;
    font-size: calc(13px * var(--mobile-dashboard-scale));
    font-weight: 300;
  }

  .mobile-dashboard-credit-status.field-error {
    color: #d62828;
  }

  .mobile-dashboard-account-row {
    grid-template-columns:
      calc(50px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      auto;
    padding-top: calc(2px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-account-email {
    min-width: 0;
    overflow: hidden;
    color: #3f4756;
    font-size: calc(16px * var(--mobile-dashboard-scale));
    font-weight: 300;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-account-pill {
    min-height: calc(44px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(14px * var(--mobile-dashboard-scale));
    border: 1px solid #e1e8eb;
    background: #fbfefd;
    color: #07142e;
    font-size: calc(16px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-account-pill svg {
    color: #15875b;
  }

  .mobile-dashboard-account-connected {
    background: #e7f5ee;
    color: #13784f;
  }

  .mobile-dashboard-signout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(14px * var(--mobile-dashboard-scale));
    min-height: calc(52px * var(--mobile-dashboard-scale));
    border: 1.5px solid #ff1f1f;
    border-radius: calc(10px * var(--mobile-dashboard-scale));
    background: #fff;
    color: #ff1f1f;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 400;
    cursor: pointer;
  }

  .mobile-dashboard-signout svg {
    width: calc(24px * var(--mobile-dashboard-scale));
    height: calc(24px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-empty {
    display: grid;
    gap: calc(6px * var(--mobile-dashboard-scale));
    padding:
      calc(18px * var(--mobile-dashboard-scale))
      0;
    color: #596170;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 300;
    line-height: 1.35;
  }

  .mobile-dashboard-empty strong {
    color: #07142e;
    font-size: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-empty.compact {
    padding:
      calc(14px * var(--mobile-dashboard-scale))
      calc(16px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    position: fixed;
    right: max(8px, calc((100vw - 500px) / 2 + 8px));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(8px, calc((100vw - 500px) / 2 + 8px));
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: calc(88px * var(--mobile-dashboard-scale));
    padding:
      calc(8px * var(--mobile-dashboard-scale))
      calc(18px * var(--mobile-dashboard-scale));
    border-radius: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-tab {
    display: grid;
    justify-items: center;
    gap: calc(5px * var(--mobile-dashboard-scale));
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #49505b;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 350;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-dashboard-tab-icon {
    display: grid;
    place-items: center;
    width: calc(44px * var(--mobile-dashboard-scale));
    height: calc(44px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    color: #49505b;
  }

  .mobile-dashboard-tab-icon svg {
    width: calc(32px * var(--mobile-dashboard-scale));
    height: calc(32px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-tab.is-active {
    color: #118457;
  }

  .mobile-dashboard-tab.is-active .mobile-dashboard-tab-icon {
    background: #19875f;
    color: #fff;
  }
}

@media (max-width: 430px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.9;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-right: calc(22px * var(--mobile-dashboard-scale));
    padding-left: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcut {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: calc(6px * var(--mobile-dashboard-scale));
    padding:
      calc(10px * var(--mobile-dashboard-scale))
      calc(6px * var(--mobile-dashboard-scale));
    text-align: center;
  }

  .mobile-dashboard-shortcut .mobile-dashboard-icon {
    width: calc(44px * var(--mobile-dashboard-scale));
    height: calc(44px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcut .mobile-dashboard-icon svg {
    width: calc(23px * var(--mobile-dashboard-scale));
    height: calc(23px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-shortcut span:nth-child(2) {
    font-size: calc(14px * var(--mobile-dashboard-scale));
    line-height: 1.14;
  }

  .mobile-dashboard-shortcut .mobile-dashboard-chevron {
    position: absolute;
    right: calc(8px * var(--mobile-dashboard-scale));
    top: 50%;
    width: calc(7px * var(--mobile-dashboard-scale));
    height: calc(7px * var(--mobile-dashboard-scale));
    transform: translateY(-50%) rotate(-45deg);
  }

  .mobile-dashboard-audio-main {
    grid-template-columns: calc(118px * var(--mobile-dashboard-scale)) minmax(0, 1fr);
    gap: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover {
    width: calc(118px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover-small {
    width: calc(64px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-player {
    grid-template-columns:
      calc(46px * var(--mobile-dashboard-scale))
      calc(42px * var(--mobile-dashboard-scale))
      minmax(calc(52px * var(--mobile-dashboard-scale)), 1fr)
      calc(42px * var(--mobile-dashboard-scale));
    gap: calc(8px * var(--mobile-dashboard-scale));
    padding:
      calc(8px * var(--mobile-dashboard-scale))
      calc(10px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-volume,
  .mobile-dashboard-more {
    display: none;
  }

  .mobile-dashboard-audio-actions {
    gap: calc(12px * var(--mobile-dashboard-scale));
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.82;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-logo {
    width: clamp(154px, 48vw, 210px);
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-right: calc(20px * var(--mobile-dashboard-scale));
    padding-left: calc(20px * var(--mobile-dashboard-scale));
  }
}

@media (max-width: 360px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.76;
  }

  body.mobile-account-dashboard-active .page-shell {
    width: min(100% - 10px, 500px);
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

@media (max-width: 330px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.64;
  }
}

@media (max-width: 860px) {
  .mobile-dashboard-system-bar {
    display: none;
  }

  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 1;
    background: #eff6f3;
  }

  body.mobile-account-dashboard-active .page-shell {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #f3f8f6;
    box-shadow: none;
    overflow: visible;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-system-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(42px * var(--mobile-dashboard-scale));
    padding:
      calc(13px * var(--mobile-dashboard-scale))
      calc(38px * var(--mobile-dashboard-scale))
      calc(4px * var(--mobile-dashboard-scale));
    background: #ffffff;
    color: #030303;
    font-size: calc(23px * var(--mobile-dashboard-scale));
    font-weight: 500;
    line-height: 1;
  }

  .mobile-dashboard-system-icons {
    display: inline-flex;
    align-items: center;
    gap: calc(8px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-wifi {
    position: relative;
    width: calc(22px * var(--mobile-dashboard-scale));
    height: calc(16px * var(--mobile-dashboard-scale));
    overflow: hidden;
  }

  .mobile-dashboard-wifi::before,
  .mobile-dashboard-wifi::after {
    content: "";
    position: absolute;
    left: 50%;
    border: calc(4px * var(--mobile-dashboard-scale)) solid #000;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 999px;
    transform: translateX(-50%);
  }

  .mobile-dashboard-wifi::before {
    top: calc(-7px * var(--mobile-dashboard-scale));
    width: calc(26px * var(--mobile-dashboard-scale));
    height: calc(26px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-wifi::after {
    top: calc(2px * var(--mobile-dashboard-scale));
    width: calc(12px * var(--mobile-dashboard-scale));
    height: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-signal {
    width: 0;
    height: 0;
    border-right: calc(17px * var(--mobile-dashboard-scale)) solid #000;
    border-top: calc(17px * var(--mobile-dashboard-scale)) solid transparent;
  }

  .mobile-dashboard-signal.small {
    border-right-width: calc(13px * var(--mobile-dashboard-scale));
    border-top-width: calc(13px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-battery {
    position: relative;
    width: calc(13px * var(--mobile-dashboard-scale));
    height: calc(22px * var(--mobile-dashboard-scale));
    border-radius: calc(2px * var(--mobile-dashboard-scale));
    background: #000;
  }

  .mobile-dashboard-battery::before {
    content: "";
    position: absolute;
    top: calc(-3px * var(--mobile-dashboard-scale));
    left: 50%;
    width: calc(7px * var(--mobile-dashboard-scale));
    height: calc(3px * var(--mobile-dashboard-scale));
    border-radius: calc(2px * var(--mobile-dashboard-scale)) calc(2px * var(--mobile-dashboard-scale)) 0 0;
    background: #000;
    transform: translateX(-50%);
  }

  body.mobile-account-dashboard-active .mobile-brand-header {
    grid-template-columns:
      calc(52px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      calc(52px * var(--mobile-dashboard-scale));
    min-height: calc(106px * var(--mobile-dashboard-scale));
    padding:
      calc(24px * var(--mobile-dashboard-scale))
      calc(45px * var(--mobile-dashboard-scale))
      calc(28px * var(--mobile-dashboard-scale));
    background: #ffffff;
    box-shadow: 0 calc(2px * var(--mobile-dashboard-scale)) calc(8px * var(--mobile-dashboard-scale)) rgba(29, 46, 42, 0.08);
  }

  body.mobile-account-dashboard-active .mobile-brand-header-logo {
    width: calc(205px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action {
    width: calc(52px * var(--mobile-dashboard-scale));
    height: calc(52px * var(--mobile-dashboard-scale));
    flex-basis: calc(52px * var(--mobile-dashboard-scale));
    color: #0c8a51;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu {
    gap: calc(7px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu span {
    width: calc(32px * var(--mobile-dashboard-scale));
    height: calc(3px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account {
    border: calc(2px * var(--mobile-dashboard-scale)) solid rgba(13, 132, 80, 0.22);
    background: #ffffff;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account svg {
    width: calc(31px * var(--mobile-dashboard-scale));
    height: calc(31px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    gap: calc(18px * var(--mobile-dashboard-scale));
    padding:
      calc(28px * var(--mobile-dashboard-scale))
      calc(44px * var(--mobile-dashboard-scale))
      calc(128px * var(--mobile-dashboard-scale));
    background:
      radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.95), rgba(245, 250, 247, 0.92) 26%, #f3f8f6 68%),
      #f3f8f6;
  }

  .mobile-dashboard-hero {
    display: grid;
    gap: calc(7px * var(--mobile-dashboard-scale));
    margin-bottom: calc(5px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-hero p {
    color: #10824c;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 450;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-dashboard-hero h1 {
    margin: 0;
    color: #1f2d2c;
    font-family: var(--font-display);
    font-size: calc(44px * var(--mobile-dashboard-scale));
    font-weight: 450;
    line-height: 0.96;
  }

  .mobile-dashboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(14px * var(--mobile-dashboard-scale));
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-dashboard-stat,
  .mobile-dashboard-status-pill {
    min-height: calc(96px * var(--mobile-dashboard-scale));
    border: 1px solid rgba(207, 217, 212, 0.95);
    border-radius: calc(18px * var(--mobile-dashboard-scale));
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 calc(9px * var(--mobile-dashboard-scale)) calc(20px * var(--mobile-dashboard-scale)) rgba(36, 57, 49, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .mobile-dashboard-stat {
    grid-template-columns:
      calc(58px * var(--mobile-dashboard-scale))
      minmax(0, 1fr);
    gap: calc(13px * var(--mobile-dashboard-scale));
    padding:
      calc(18px * var(--mobile-dashboard-scale))
      calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-icon {
    width: calc(58px * var(--mobile-dashboard-scale));
    height: calc(58px * var(--mobile-dashboard-scale));
    background: #e4f5ec;
    color: #168a55;
  }

  .mobile-dashboard-icon svg {
    width: calc(30px * var(--mobile-dashboard-scale));
    height: calc(30px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-stat-copy strong {
    color: #1f2d2c;
    font-size: calc(30px * var(--mobile-dashboard-scale));
    font-weight: 450;
    line-height: 0.94;
  }

  .mobile-dashboard-stat-copy span {
    color: #4f5a63;
    font-size: calc(18px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-status-pill {
    align-self: stretch;
    justify-self: stretch;
    padding: 0 calc(16px * var(--mobile-dashboard-scale));
    color: #25302f;
    font-size: calc(18px * var(--mobile-dashboard-scale));
    font-weight: 400;
  }

  .mobile-dashboard-status-dot {
    width: calc(13px * var(--mobile-dashboard-scale));
    height: calc(13px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #59b884;
  }

  .mobile-dashboard-search {
    display: grid;
    grid-template-columns: calc(38px * var(--mobile-dashboard-scale)) minmax(0, 1fr);
    gap: calc(14px * var(--mobile-dashboard-scale));
    align-items: center;
    min-height: calc(58px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(26px * var(--mobile-dashboard-scale));
    border: 1px solid rgba(207, 217, 212, 0.95);
    border-radius: calc(17px * var(--mobile-dashboard-scale));
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 calc(7px * var(--mobile-dashboard-scale)) calc(18px * var(--mobile-dashboard-scale)) rgba(36, 57, 49, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .mobile-dashboard-search > span {
    position: relative;
    width: calc(24px * var(--mobile-dashboard-scale));
    height: calc(24px * var(--mobile-dashboard-scale));
    border: calc(3px * var(--mobile-dashboard-scale)) solid #a88f84;
    border-radius: 999px;
  }

  .mobile-dashboard-search > span::after {
    content: "";
    position: absolute;
    right: calc(-9px * var(--mobile-dashboard-scale));
    bottom: calc(-4px * var(--mobile-dashboard-scale));
    width: calc(12px * var(--mobile-dashboard-scale));
    height: calc(3px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #a88f84;
    transform: rotate(45deg);
  }

  .mobile-dashboard-search input {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #263331;
    font: inherit;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 500;
    outline: none;
  }

  .mobile-dashboard-search input::placeholder {
    color: #7c858b;
    opacity: 1;
  }

  .mobile-dashboard-shortcuts,
  .mobile-dashboard-carousel-dots {
    display: none;
  }

  .mobile-dashboard-panel {
    gap: calc(14px * var(--mobile-dashboard-scale));
    padding:
      calc(18px * var(--mobile-dashboard-scale))
      calc(12px * var(--mobile-dashboard-scale))
      calc(12px * var(--mobile-dashboard-scale));
    border: 1px solid rgba(207, 217, 212, 0.95);
    border-radius: calc(18px * var(--mobile-dashboard-scale));
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 calc(9px * var(--mobile-dashboard-scale)) calc(20px * var(--mobile-dashboard-scale)) rgba(36, 57, 49, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .mobile-dashboard-panel-head {
    padding:
      0
      calc(10px * var(--mobile-dashboard-scale))
      calc(11px * var(--mobile-dashboard-scale));
    border-bottom: 1px solid #e5e9ec;
  }

  .mobile-dashboard-panel h2 {
    color: #1f2d2c;
    font-size: calc(27px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-link {
    min-height: calc(39px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(17px * var(--mobile-dashboard-scale));
    border: 1px solid #cfe8de;
    border-radius: 999px;
    background: #edf8f3;
    color: #09784e;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-link .mobile-dashboard-chevron {
    display: none;
  }

  .mobile-dashboard-audio-list {
    gap: calc(10px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-card,
  .mobile-dashboard-audio-compact {
    border: 1px solid #dfe5e8;
    border-radius: calc(16px * var(--mobile-dashboard-scale));
    background: rgba(255, 255, 255, 0.96);
  }

  .mobile-dashboard-audio-card {
    padding:
      calc(16px * var(--mobile-dashboard-scale))
      calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-main {
    grid-template-columns:
      calc(154px * var(--mobile-dashboard-scale))
      minmax(0, 1fr);
    gap: calc(24px * var(--mobile-dashboard-scale));
    align-items: start;
  }

  .mobile-dashboard-cover {
    width: calc(154px * var(--mobile-dashboard-scale));
    border-radius: calc(14px * var(--mobile-dashboard-scale));
    box-shadow: 0 calc(8px * var(--mobile-dashboard-scale)) calc(18px * var(--mobile-dashboard-scale)) rgba(15, 32, 27, 0.12);
  }

  .mobile-dashboard-audio-copy {
    position: relative;
    gap: calc(4px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: calc(10px * var(--mobile-dashboard-scale));
    align-items: center;
    min-width: 0;
    margin-bottom: calc(4px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-topline > span:first-child,
  .mobile-dashboard-audio-compact-copy > span {
    min-width: 0;
    overflow: hidden;
    color: #05813f;
    font-size: calc(12px * var(--mobile-dashboard-scale));
    font-weight: 450;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-dashboard-audio-topline .status-pill,
  .mobile-dashboard-audio-compact .status-pill {
    min-height: calc(37px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(17px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #e5f5ee;
    color: #14835a;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-dashboard-audio-copy h3 {
    color: #1d2a2a;
    font-size: calc(27px * var(--mobile-dashboard-scale));
    line-height: 1.05;
  }

  .mobile-dashboard-audio-meta-line,
  .mobile-dashboard-audio-date {
    color: #3f4a52;
    font-size: calc(16px * var(--mobile-dashboard-scale));
    font-weight: 500;
    line-height: 1.22;
  }

  .mobile-dashboard-details-button {
    justify-self: start;
    margin-top: calc(8px * var(--mobile-dashboard-scale));
    padding: 0;
    border: 0;
    background: transparent;
    color: #088041;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 450;
    cursor: pointer;
  }

  .mobile-dashboard-audio-expand {
    position: absolute;
    right: calc(6px * var(--mobile-dashboard-scale));
    bottom: calc(4px * var(--mobile-dashboard-scale));
    width: calc(12px * var(--mobile-dashboard-scale));
    height: calc(12px * var(--mobile-dashboard-scale));
    border-right: calc(3px * var(--mobile-dashboard-scale)) solid #b79a8e;
    border-bottom: calc(3px * var(--mobile-dashboard-scale)) solid #b79a8e;
    transform: rotate(45deg);
  }

  .mobile-dashboard-player {
    grid-column: 2;
    grid-template-columns:
      calc(28px * var(--mobile-dashboard-scale))
      calc(88px * var(--mobile-dashboard-scale))
      minmax(calc(120px * var(--mobile-dashboard-scale)), 1fr)
      calc(28px * var(--mobile-dashboard-scale))
      calc(16px * var(--mobile-dashboard-scale));
    gap: calc(10px * var(--mobile-dashboard-scale));
    min-height: calc(57px * var(--mobile-dashboard-scale));
    margin-top: calc(19px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(20px * var(--mobile-dashboard-scale));
    border: 0;
    border-radius: calc(28px * var(--mobile-dashboard-scale));
    background: #f1f3f6;
  }

  .mobile-dashboard-play {
    width: calc(26px * var(--mobile-dashboard-scale));
    height: calc(26px * var(--mobile-dashboard-scale));
    background: transparent;
    color: #000;
  }

  .mobile-dashboard-play span {
    margin-left: calc(3px * var(--mobile-dashboard-scale));
    border-top-width: calc(9px * var(--mobile-dashboard-scale));
    border-bottom-width: calc(9px * var(--mobile-dashboard-scale));
    border-left-width: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-time {
    display: inline-flex;
    gap: calc(4px * var(--mobile-dashboard-scale));
    color: #151b22;
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-seek::before,
  .mobile-dashboard-seek span {
    height: calc(3px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-seek span::after {
    width: calc(8px * var(--mobile-dashboard-scale));
    height: calc(8px * var(--mobile-dashboard-scale));
    right: calc(-4px * var(--mobile-dashboard-scale));
    background: #8d9299;
  }

  .mobile-dashboard-seek::before,
  .mobile-dashboard-seek span {
    background: #a9adb3;
  }

  .mobile-dashboard-volume {
    color: #000;
    font-size: calc(25px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-more,
  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after {
    background: #000;
  }

  .mobile-dashboard-audio-actions {
    grid-column: 2;
    gap: calc(18px * var(--mobile-dashboard-scale));
    margin-top: calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-outline-button {
    min-height: calc(48px * var(--mobile-dashboard-scale));
    border-color: #cfe3dc;
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    color: #0f7f4c;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-outline-button:first-child {
    border-color: transparent;
    background: linear-gradient(90deg, #37ac70, #24955c);
    color: #fff;
  }

  .mobile-dashboard-outline-button svg {
    width: calc(23px * var(--mobile-dashboard-scale));
    height: calc(23px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact {
    grid-template-columns:
      calc(78px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      calc(14px * var(--mobile-dashboard-scale));
    min-height: calc(120px * var(--mobile-dashboard-scale));
    padding:
      calc(13px * var(--mobile-dashboard-scale))
      calc(14px * var(--mobile-dashboard-scale));
    border-top: 1px solid #dfe5e8;
  }

  .mobile-dashboard-cover-small {
    width: calc(78px * var(--mobile-dashboard-scale));
    border-radius: calc(13px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact h3 {
    color: #1d2a2a;
    font-size: calc(23px * var(--mobile-dashboard-scale));
    line-height: 1.1;
  }

  .mobile-dashboard-audio-compact p {
    color: #3f4a52;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-payments-list {
    border: 1px solid #dfe5e8;
    border-radius: calc(13px * var(--mobile-dashboard-scale));
    overflow: hidden;
  }

  .mobile-dashboard-payment-row {
    grid-template-columns:
      calc(54px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      calc(14px * var(--mobile-dashboard-scale));
    min-height: calc(74px * var(--mobile-dashboard-scale));
    padding:
      calc(11px * var(--mobile-dashboard-scale))
      calc(18px * var(--mobile-dashboard-scale));
    background: #fff;
  }

  .mobile-dashboard-payment-icon,
  .mobile-dashboard-account-icon {
    width: calc(50px * var(--mobile-dashboard-scale));
    height: calc(50px * var(--mobile-dashboard-scale));
    border-radius: 999px;
    background: #e5f5ee;
  }

  .mobile-dashboard-payment-copy strong {
    font-size: calc(16px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-payment-copy span {
    color: #3f4a52;
    font-size: calc(15px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-payment-amount {
    font-size: calc(20px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-payment-row .mobile-dashboard-chevron,
  .mobile-dashboard-audio-compact .mobile-dashboard-chevron {
    color: #b79a8e;
  }

  .mobile-dashboard-credit-offers {
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    background: #fff;
  }

  .mobile-dashboard-credit-offer {
    grid-template-columns:
      calc(30px * var(--mobile-dashboard-scale))
      minmax(calc(130px * var(--mobile-dashboard-scale)), 1fr)
      minmax(calc(90px * var(--mobile-dashboard-scale)), 0.8fr)
      auto;
    min-height: calc(58px * var(--mobile-dashboard-scale));
    padding:
      calc(7px * var(--mobile-dashboard-scale))
      calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-credit-offer strong {
    font-size: calc(17px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-credit-offer > span:not(.mobile-dashboard-credit-radio) {
    font-size: calc(16px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-credit-offer em {
    min-height: calc(25px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(13px * var(--mobile-dashboard-scale));
    background: #198a4f;
    color: #fff;
    font-size: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-credit-offer em svg {
    display: none;
  }

  .mobile-dashboard-pay-button {
    min-height: calc(48px * var(--mobile-dashboard-scale));
    border-radius: calc(8px * var(--mobile-dashboard-scale));
    font-size: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-pay-arrow {
    display: none;
  }

  .mobile-dashboard-account-panel {
    padding:
      calc(15px * var(--mobile-dashboard-scale))
      calc(20px * var(--mobile-dashboard-scale))
      calc(24px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-account-row {
    grid-template-columns:
      calc(58px * var(--mobile-dashboard-scale))
      minmax(0, 1.1fr)
      minmax(calc(170px * var(--mobile-dashboard-scale)), 0.9fr)
      auto;
    gap: calc(18px * var(--mobile-dashboard-scale));
    align-items: center;
  }

  .mobile-dashboard-account-email {
    color: #263331;
    font-size: calc(17px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-account-email::after {
    content: "Conectat";
    display: block;
    width: fit-content;
    margin-top: calc(8px * var(--mobile-dashboard-scale));
    padding:
      calc(4px * var(--mobile-dashboard-scale))
      calc(10px * var(--mobile-dashboard-scale));
    border-radius: calc(7px * var(--mobile-dashboard-scale));
    background: #dff3e9;
    color: #15804e;
    font-size: calc(12px * var(--mobile-dashboard-scale));
    font-weight: 450;
  }

  .mobile-dashboard-account-pill {
    display: grid;
    justify-content: start;
    gap: calc(2px * var(--mobile-dashboard-scale));
    min-height: calc(68px * var(--mobile-dashboard-scale));
    padding:
      0
      0
      0
      calc(36px * var(--mobile-dashboard-scale));
    border: 0;
    border-left: 1px solid #e0e5e8;
    border-radius: 0;
    background: transparent;
    color: #1f2d2c;
  }

  .mobile-dashboard-account-pill svg,
  .mobile-dashboard-account-connected {
    display: none;
  }

  .mobile-dashboard-account-pill::before {
    content: "Credite disponibile";
    color: #3f4a52;
    font-size: calc(14px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-account-pill > span {
    display: grid;
    gap: calc(2px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-account-pill > span strong {
    font-size: calc(30px * var(--mobile-dashboard-scale));
    font-weight: 450;
    line-height: 1;
  }

  .mobile-dashboard-account-pill > span span {
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 500;
  }

  .mobile-dashboard-signout {
    min-width: calc(152px * var(--mobile-dashboard-scale));
    min-height: calc(52px * var(--mobile-dashboard-scale));
    border-color: #ff3b3b;
    border-radius: calc(12px * var(--mobile-dashboard-scale));
    color: #e32828;
    font-size: calc(15px * var(--mobile-dashboard-scale));
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    left: calc(44px * var(--mobile-dashboard-scale));
    right: calc(44px * var(--mobile-dashboard-scale));
    bottom: max(calc(20px * var(--mobile-dashboard-scale)), env(safe-area-inset-bottom));
    min-height: calc(97px * var(--mobile-dashboard-scale));
    border-radius: calc(16px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-tab {
    font-size: calc(15px * var(--mobile-dashboard-scale));
    font-weight: 400;
  }

  .mobile-dashboard-tab-icon {
    width: calc(34px * var(--mobile-dashboard-scale));
    height: calc(34px * var(--mobile-dashboard-scale));
    border-radius: calc(5px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-tab-icon svg {
    width: calc(27px * var(--mobile-dashboard-scale));
    height: calc(27px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-tab.is-active .mobile-dashboard-tab-icon {
    background: transparent;
    color: #15804e;
  }

  .mobile-dashboard-tab.is-active {
    color: #15804e;
  }
}

@media (max-width: 430px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.86;
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.78;
  }
}

@media (max-width: 360px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.72;
  }
}

@media (max-width: 330px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.66;
  }
}

@media (max-width: 860px) {
  .mobile-dashboard-audio-main {
    grid-template-columns:
      calc(96px * var(--mobile-dashboard-scale))
      minmax(0, 1fr);
    gap: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover {
    width: calc(96px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-cover-small {
    width: calc(54px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-copy h3 {
    font-size: calc(22px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-meta-line,
  .mobile-dashboard-audio-date {
    font-size: calc(13px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-topline > span:first-child,
  .mobile-dashboard-audio-compact-copy > span {
    font-size: calc(10px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-topline .status-pill,
  .mobile-dashboard-audio-compact .status-pill {
    min-height: calc(30px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(13px * var(--mobile-dashboard-scale));
    font-size: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-details-button {
    font-size: calc(13px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-player {
    grid-template-columns:
      calc(24px * var(--mobile-dashboard-scale))
      calc(78px * var(--mobile-dashboard-scale))
      minmax(calc(76px * var(--mobile-dashboard-scale)), 1fr)
      calc(24px * var(--mobile-dashboard-scale))
      calc(13px * var(--mobile-dashboard-scale));
    gap: calc(8px * var(--mobile-dashboard-scale));
    min-height: calc(44px * var(--mobile-dashboard-scale));
    padding:
      0
      calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-time {
    font-size: calc(13px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-actions {
    gap: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-outline-button {
    min-height: calc(40px * var(--mobile-dashboard-scale));
    font-size: calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact {
    grid-template-columns:
      calc(54px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      auto
      calc(12px * var(--mobile-dashboard-scale));
    min-height: calc(82px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact h3 {
    font-size: calc(18px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-audio-compact p {
    font-size: calc(12px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-account-row {
    grid-template-columns:
      calc(50px * var(--mobile-dashboard-scale))
      minmax(0, 1fr)
      minmax(calc(124px * var(--mobile-dashboard-scale)), 0.78fr)
      auto;
    gap: calc(14px * var(--mobile-dashboard-scale));
  }

  .mobile-dashboard-signout {
    min-width: calc(124px * var(--mobile-dashboard-scale));
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 1 !important;
    overflow-x: hidden;
    background: #f3f8f6;
  }

  body.mobile-account-dashboard-active .page-shell,
  body.mobile-account-dashboard-active .account-grid,
  body.mobile-account-dashboard-active .mobile-account-dashboard {
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-system-bar {
    min-height: 32px;
    padding: 12px 24px 4px;
    font-size: 16px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 82px;
    padding: 17px 22px 21px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-logo {
    width: 178px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu {
    gap: 6px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu span {
    width: 27px;
    height: 2px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account svg {
    width: 27px;
    height: 27px;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    gap: 18px;
    padding: 27px 22px 116px;
  }

  .mobile-dashboard-hero {
    gap: 7px;
    margin-bottom: 4px;
  }

  .mobile-dashboard-hero p {
    font-size: 12px;
    letter-spacing: 0.19em;
  }

  .mobile-dashboard-hero h1 {
    font-size: 40px;
    line-height: 0.96;
  }

  .mobile-dashboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-dashboard-stat,
  .mobile-dashboard-status-pill {
    min-width: 0;
    min-height: 78px;
    border-radius: 14px;
  }

  .mobile-dashboard-stat {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 9px;
  }

  .mobile-dashboard-icon {
    width: 42px;
    height: 42px;
  }

  .mobile-dashboard-icon svg {
    width: 22px;
    height: 22px;
  }

  .mobile-dashboard-stat-copy {
    min-width: 0;
  }

  .mobile-dashboard-stat-copy strong {
    font-size: 24px;
  }

  .mobile-dashboard-stat-copy span {
    font-size: 14px;
    line-height: 1.1;
  }

  .mobile-dashboard-status-pill {
    gap: 7px;
    justify-content: center;
    padding: 0 8px;
    font-size: 14px;
  }

  .mobile-dashboard-status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
  }

  .mobile-dashboard-search {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 14px;
  }

  .mobile-dashboard-search > span {
    width: 23px;
    height: 23px;
    border-width: 3px;
  }

  .mobile-dashboard-search > span::after {
    right: -9px;
    bottom: -4px;
    width: 12px;
    height: 3px;
  }

  .mobile-dashboard-search input {
    min-width: 0;
    font-size: 15px;
  }

  .mobile-dashboard-panel {
    gap: 13px;
    padding: 16px 12px 12px;
    border-radius: 16px;
    overflow: hidden;
  }

  .mobile-dashboard-panel-head {
    padding: 0 10px 11px;
  }

  .mobile-dashboard-panel h2 {
    font-size: 25px;
    line-height: 1;
  }

  .mobile-dashboard-link {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .mobile-dashboard-audio-list {
    gap: 10px;
  }

  .mobile-dashboard-audio-card {
    padding: 10px;
    border-radius: 14px;
    overflow: hidden;
  }

  .mobile-dashboard-audio-main {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-width: 0;
  }

  .mobile-dashboard-cover {
    width: 76px;
    border-radius: 12px;
  }

  .mobile-dashboard-audio-copy {
    min-width: 0;
    gap: 3px;
  }

  .mobile-dashboard-audio-topline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    margin-bottom: 3px;
  }

  .mobile-dashboard-audio-topline > span:first-child,
  .mobile-dashboard-audio-compact-copy > span {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .mobile-dashboard-audio-topline .status-pill,
  .mobile-dashboard-audio-compact .status-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .mobile-dashboard-audio-copy h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.08;
  }

  .mobile-dashboard-audio-meta-line,
  .mobile-dashboard-audio-date {
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.22;
  }

  .mobile-dashboard-details-button {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.22;
    text-align: left;
  }

  .mobile-dashboard-audio-expand {
    right: 2px;
    bottom: 2px;
    width: 9px;
    height: 9px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .mobile-dashboard-player {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    grid-template-columns: 20px 62px minmax(34px, 1fr) 20px 9px;
    gap: 6px;
    min-height: 42px;
    margin-top: 12px;
    padding: 0 8px;
    border-radius: 22px;
    box-sizing: border-box;
  }

  .mobile-dashboard-play {
    width: 20px;
    height: 20px;
  }

  .mobile-dashboard-play span {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 9px;
  }

  .mobile-dashboard-time {
    min-width: 0;
    gap: 2px;
    font-size: 11px;
    white-space: nowrap;
  }

  .mobile-dashboard-volume {
    font-size: 18px;
  }

  .mobile-dashboard-more,
  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after {
    width: 3px;
    height: 3px;
  }

  .mobile-dashboard-audio-actions {
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    margin-top: 10px;
    min-width: 0;
  }

  .mobile-dashboard-outline-button {
    min-width: 0;
    min-height: 38px;
    border-radius: 10px;
    font-size: 13px;
  }

  .mobile-dashboard-outline-button svg {
    width: 18px;
    height: 18px;
  }

  .mobile-dashboard-audio-compact {
    grid-template-columns: 54px minmax(0, 1fr) auto 10px;
    gap: 10px;
    min-height: 78px;
    padding: 10px;
    border-radius: 14px;
    overflow: hidden;
  }

  .mobile-dashboard-cover-small {
    width: 54px;
    border-radius: 10px;
  }

  .mobile-dashboard-audio-compact-copy {
    min-width: 0;
  }

  .mobile-dashboard-audio-compact h3 {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-audio-compact p {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-payments-list {
    border-radius: 13px;
  }

  .mobile-dashboard-payment-row {
    grid-template-columns: 42px minmax(0, 1fr) auto 10px;
    gap: 10px;
    min-height: 66px;
    padding: 10px 12px;
  }

  .mobile-dashboard-payment-icon,
  .mobile-dashboard-account-icon {
    width: 42px;
    height: 42px;
  }

  .mobile-dashboard-payment-copy {
    min-width: 0;
  }

  .mobile-dashboard-payment-copy strong {
    font-size: 14px;
  }

  .mobile-dashboard-payment-copy span {
    font-size: 13px;
  }

  .mobile-dashboard-payment-amount {
    font-size: 17px;
  }

  .mobile-dashboard-credit-offers {
    border-radius: 12px;
  }

  .mobile-dashboard-credit-offer {
    grid-template-columns: 24px minmax(70px, 1fr) minmax(70px, 0.8fr) auto;
    gap: 8px;
    min-height: 52px;
    padding: 6px 12px;
  }

  .mobile-dashboard-credit-offer strong {
    font-size: 15px;
  }

  .mobile-dashboard-credit-offer > span:not(.mobile-dashboard-credit-radio) {
    font-size: 13px;
  }

  .mobile-dashboard-credit-offer em {
    min-height: 22px;
    padding: 0 10px;
    font-size: 11px;
  }

  .mobile-dashboard-pay-button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 16px;
  }

  .mobile-dashboard-account-panel {
    padding: 15px 14px 24px;
  }

  .mobile-dashboard-account-row {
    grid-template-columns: 42px minmax(0, 1fr) 82px 102px;
    gap: 8px;
    min-width: 0;
  }

  .mobile-dashboard-account-email {
    min-width: 0;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-account-email::after {
    margin-top: 5px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .mobile-dashboard-account-pill {
    min-height: 52px;
    padding: 0 0 0 10px;
  }

  .mobile-dashboard-account-pill::before {
    font-size: 11px;
    white-space: nowrap;
  }

  .mobile-dashboard-account-pill > span strong {
    font-size: 23px;
  }

  .mobile-dashboard-account-pill > span span {
    font-size: 11px;
  }

  .mobile-dashboard-signout {
    min-width: 102px;
    min-height: 44px;
    gap: 6px;
    border-radius: 10px;
    font-size: 12px;
  }

  .mobile-dashboard-signout svg {
    width: 17px;
    height: 17px;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    left: 22px;
    right: 22px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 78px;
    padding: 6px 14px;
    border-radius: 14px;
  }

  .mobile-dashboard-tab {
    font-size: 12px;
  }

  .mobile-dashboard-tab-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
  }

  .mobile-dashboard-tab-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 0.94 !important;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mobile-dashboard-stats {
    gap: 6px;
  }

  .mobile-dashboard-stat {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 6px;
    padding: 10px 7px;
  }

  .mobile-dashboard-icon {
    width: 36px;
    height: 36px;
  }

  .mobile-dashboard-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-dashboard-stat-copy strong {
    font-size: 21px;
  }

  .mobile-dashboard-stat-copy span,
  .mobile-dashboard-status-pill {
    font-size: 12px;
  }

  .mobile-dashboard-audio-main {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
  }

  .mobile-dashboard-cover {
    width: 70px;
  }

  .mobile-dashboard-player {
    grid-template-columns: 18px 57px minmax(28px, 1fr) 18px 8px;
    gap: 5px;
    padding: 0 7px;
  }

  .mobile-dashboard-audio-actions {
    gap: 6px;
  }

  .mobile-dashboard-outline-button {
    font-size: 12px;
  }

  .mobile-dashboard-account-row {
    grid-template-columns: 38px minmax(0, 1fr) 76px 96px;
    gap: 7px;
  }

  .mobile-dashboard-signout {
    min-width: 96px;
    font-size: 11px;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    right: 16px;
    left: 16px;
  }
}

@media (max-width: 340px) {
  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-dashboard-audio-main,
  .mobile-dashboard-player,
  .mobile-dashboard-audio-actions {
    grid-column: 1 / -1;
  }

  .mobile-dashboard-account-row {
    grid-template-columns: 36px minmax(0, 1fr) 72px;
  }

  .mobile-dashboard-signout {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.mobile-dashboard-system-bar,
body.mobile-account-dashboard-active .mobile-dashboard-system-bar {
  display: none !important;
}

@media (max-width: 860px) {
  .mobile-dashboard-audio-copy {
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start;
  }

  .mobile-dashboard-audio-copy > * {
    grid-column: 1 / -1 !important;
    min-width: 0;
  }

  .mobile-dashboard-audio-topline {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center;
  }

  .mobile-dashboard-audio-topline > span:first-child {
    max-width: 100%;
  }

  .mobile-dashboard-audio-topline .status-pill {
    justify-self: end;
  }

  .mobile-dashboard-audio-copy h3 {
    width: 100%;
    overflow: hidden;
    overflow-wrap: normal;
    font-size: 19px;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-player {
    grid-column: 1 / -1 !important;
    grid-template-columns: 20px auto minmax(48px, 1fr) 20px 10px;
    width: 100%;
    max-width: 100%;
  }

  .mobile-dashboard-audio-actions {
    grid-column: 1 / -1 !important;
    width: 100%;
    max-width: 100%;
  }

  .mobile-dashboard-outline-button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-cover:not(.has-cover) {
    position: relative;
    isolation: isolate;
    background:
      linear-gradient(180deg, rgba(15, 36, 42, 0.02), rgba(10, 20, 18, 0.72)),
      radial-gradient(circle at 72% 22%, #ff9333 0 9%, transparent 10%),
      linear-gradient(145deg, #253943 0%, #6f8e8c 42%, #eda24a 100%);
    box-shadow: 0 8px 18px rgba(15, 32, 27, 0.12);
  }

  .mobile-dashboard-cover:not(.has-cover)::before,
  .mobile-dashboard-cover:not(.has-cover)::after {
    content: "";
    position: absolute;
    right: -12%;
    left: -12%;
    z-index: -1;
    clip-path: polygon(0 100%, 20% 48%, 38% 76%, 56% 35%, 78% 72%, 100% 42%, 100% 100%);
  }

  .mobile-dashboard-cover:not(.has-cover)::before {
    bottom: 28%;
    height: 36%;
    background: rgba(44, 75, 75, 0.72);
  }

  .mobile-dashboard-cover:not(.has-cover)::after {
    bottom: 12%;
    height: 42%;
    background: rgba(19, 39, 37, 0.84);
  }

  .mobile-dashboard-cover-placeholder {
    display: none;
  }

  .mobile-dashboard-cover-sky,
  .mobile-dashboard-cover-ridge {
    display: none;
  }

  .mobile-dashboard-cover-title {
    position: absolute;
    right: 7px;
    bottom: 8px;
    left: 7px;
    color: #fff4c9;
    font-size: 10px;
    font-weight: 450;
    letter-spacing: 0.02em;
    line-height: 1.02;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.42);
  }

  .mobile-dashboard-cover-small .mobile-dashboard-cover-title {
    right: 5px;
    bottom: 6px;
    left: 5px;
    font-size: 8px;
  }
}

@media (max-width: 389px) {
  .mobile-dashboard-audio-copy h3 {
    font-size: 17px;
  }

  .mobile-dashboard-player {
    grid-template-columns: 18px auto minmax(36px, 1fr) 18px 8px;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active {
    --mobile-dashboard-scale: 1 !important;
  }

  body.mobile-account-dashboard-active .mobile-brand-header {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    min-height: 66px;
    padding: 12px 20px 14px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-logo {
    width: 146px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu {
    gap: 5px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-action-menu span {
    width: 23px;
    height: 2px;
  }

  body.mobile-account-dashboard-active .mobile-brand-header-account svg {
    width: 23px;
    height: 23px;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    gap: 12px;
    padding: 18px 18px 92px;
  }

  .mobile-dashboard-hero {
    gap: 4px;
    margin-bottom: 2px;
  }

  .mobile-dashboard-hero p {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .mobile-dashboard-hero h1 {
    font-size: 34px;
    line-height: 0.92;
  }

  .mobile-dashboard-stats {
    gap: 7px;
  }

  .mobile-dashboard-stat,
  .mobile-dashboard-status-pill {
    min-height: 58px;
    border-radius: 12px;
  }

  .mobile-dashboard-stat {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    padding: 8px 7px;
  }

  .mobile-dashboard-icon {
    width: 30px;
    height: 30px;
  }

  .mobile-dashboard-icon svg {
    width: 16px;
    height: 16px;
  }

  .mobile-dashboard-stat-copy strong {
    font-size: 19px;
    line-height: 1;
  }

  .mobile-dashboard-stat-copy span {
    font-size: 11px;
  }

  .mobile-dashboard-status-pill {
    gap: 5px;
    padding: 0 6px;
    font-size: 12px;
  }

  .mobile-dashboard-status-dot {
    width: 8px;
    height: 8px;
  }

  .mobile-dashboard-search {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .mobile-dashboard-search > span {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .mobile-dashboard-search > span::after {
    right: -7px;
    bottom: -3px;
    width: 10px;
    height: 2px;
  }

  .mobile-dashboard-search input {
    font-size: 12px;
  }

  .mobile-dashboard-panel {
    gap: 9px;
    padding: 11px 10px 10px;
    border-radius: 13px;
  }

  .mobile-dashboard-panel-head {
    padding: 0 7px 8px;
  }

  .mobile-dashboard-panel h2 {
    font-size: 21px;
  }

  .mobile-dashboard-link {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .mobile-dashboard-audio-list {
    gap: 7px;
  }

  .mobile-dashboard-audio-card {
    padding: 8px;
    border-radius: 12px;
  }

  .mobile-dashboard-audio-main {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 9px;
  }

  .mobile-dashboard-cover {
    width: 48px;
    border-radius: 10px;
  }

  .mobile-dashboard-vinyl-cover {
    position: relative;
    background:
      radial-gradient(circle at 50% 50%, #daf5e8 0 12%, #0f7f4e 13% 20%, #04281c 21% 100%) !important;
    box-shadow:
      inset 0 0 0 3px rgba(255, 255, 255, 0.18),
      0 6px 12px rgba(15, 32, 27, 0.1);
  }

  .mobile-dashboard-vinyl-cover::before,
  .mobile-dashboard-vinyl-cover::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(222, 255, 239, 0.22);
    border-radius: 999px;
  }

  .mobile-dashboard-vinyl-cover::after {
    inset: 15px;
    border-color: rgba(222, 255, 239, 0.28);
  }

  .mobile-dashboard-vinyl-disc,
  .mobile-dashboard-vinyl-hole {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }

  .mobile-dashboard-vinyl-disc {
    inset: 4px;
    background:
      repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 4px),
      radial-gradient(circle at 35% 32%, rgba(73, 206, 137, 0.85), rgba(17, 129, 77, 0.4) 24%, transparent 25%);
  }

  .mobile-dashboard-vinyl-hole {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    background: #f1fff7;
    box-shadow: 0 0 0 5px rgba(38, 173, 103, 0.72);
    transform: translate(-50%, -50%);
  }

  .mobile-dashboard-cover-title,
  .mobile-dashboard-cover-placeholder,
  .mobile-dashboard-cover-sky,
  .mobile-dashboard-cover-ridge {
    display: none !important;
  }

  .mobile-dashboard-audio-copy {
    gap: 2px;
  }

  .mobile-dashboard-audio-topline {
    gap: 5px;
    margin-bottom: 2px;
  }

  .mobile-dashboard-audio-topline > span:first-child,
  .mobile-dashboard-audio-compact-copy > span {
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .mobile-dashboard-audio-topline .status-pill,
  .mobile-dashboard-audio-compact .status-pill {
    min-height: 22px;
    padding: 0 8px;
    font-size: 9px;
  }

  .mobile-dashboard-audio-copy h3 {
    font-size: 15px;
    line-height: 1.05;
  }

  .mobile-dashboard-audio-meta-line,
  .mobile-dashboard-audio-date {
    font-size: 10px;
    line-height: 1.18;
  }

  .mobile-dashboard-details-button {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.15;
  }

  .mobile-dashboard-audio-expand {
    right: 1px;
    bottom: 1px;
    width: 7px;
    height: 7px;
  }

  .mobile-dashboard-player {
    grid-template-columns: 16px auto minmax(34px, 1fr) 15px 7px;
    gap: 5px;
    min-height: 32px;
    margin-top: 7px;
    padding: 0 7px;
    border-radius: 17px;
  }

  .mobile-dashboard-play {
    width: 16px;
    height: 16px;
  }

  .mobile-dashboard-play span {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
  }

  .mobile-dashboard-time {
    gap: 1px;
    font-size: 9px;
  }

  .mobile-dashboard-seek {
    height: 14px;
  }

  .mobile-dashboard-seek::before,
  .mobile-dashboard-seek span {
    height: 2px;
  }

  .mobile-dashboard-seek span::after {
    width: 6px;
    height: 6px;
    right: -3px;
  }

  .mobile-dashboard-volume {
    font-size: 14px;
  }

  .mobile-dashboard-more,
  .mobile-dashboard-more::before,
  .mobile-dashboard-more::after {
    width: 2px;
    height: 2px;
  }

  .mobile-dashboard-more::before {
    top: -5px;
  }

  .mobile-dashboard-more::after {
    top: 5px;
  }

  .mobile-dashboard-audio-actions {
    gap: 6px;
    margin-top: 7px;
  }

  .mobile-dashboard-outline-button {
    min-height: 30px;
    border-radius: 9px;
    font-size: 10px;
  }

  .mobile-dashboard-outline-button svg {
    width: 14px;
    height: 14px;
  }

  .mobile-dashboard-audio-compact {
    grid-template-columns: 38px minmax(0, 1fr) auto 8px;
    gap: 8px;
    min-height: 54px;
    padding: 7px 8px;
    border-radius: 11px;
  }

  .mobile-dashboard-cover-small {
    width: 38px;
    border-radius: 8px;
  }

  .mobile-dashboard-cover-small.mobile-dashboard-vinyl-cover::before {
    inset: 6px;
  }

  .mobile-dashboard-cover-small .mobile-dashboard-vinyl-hole {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(38, 173, 103, 0.72);
  }

  .mobile-dashboard-audio-compact h3 {
    font-size: 13px;
  }

  .mobile-dashboard-audio-compact p {
    font-size: 9px;
  }

  .mobile-dashboard-payments-list {
    border-radius: 11px;
  }

  .mobile-dashboard-payment-row {
    grid-template-columns: 32px minmax(0, 1fr) auto 8px;
    gap: 8px;
    min-height: 50px;
    padding: 8px 9px;
  }

  .mobile-dashboard-payment-icon,
  .mobile-dashboard-account-icon {
    width: 32px;
    height: 32px;
  }

  .mobile-dashboard-payment-copy strong {
    font-size: 12px;
  }

  .mobile-dashboard-payment-copy span {
    font-size: 11px;
  }

  .mobile-dashboard-payment-amount {
    font-size: 14px;
  }

  .mobile-dashboard-credit-offer {
    grid-template-columns: 20px minmax(54px, 1fr) minmax(52px, 0.8fr) auto;
    gap: 6px;
    min-height: 42px;
    padding: 5px 9px;
  }

  .mobile-dashboard-credit-radio {
    width: 16px;
    height: 16px;
  }

  .mobile-dashboard-credit-offer strong {
    font-size: 12px;
  }

  .mobile-dashboard-credit-offer > span:not(.mobile-dashboard-credit-radio) {
    font-size: 10px;
  }

  .mobile-dashboard-credit-offer em {
    min-height: 18px;
    padding: 0 8px;
    font-size: 9px;
  }

  .mobile-dashboard-pay-button {
    min-height: 36px;
    font-size: 13px;
  }

  .mobile-dashboard-account-panel {
    padding: 11px 10px 16px;
  }

  .mobile-dashboard-account-row {
    grid-template-columns: 32px minmax(0, 1fr) 64px 82px;
    gap: 6px;
  }

  .mobile-dashboard-account-email {
    font-size: 11px;
  }

  .mobile-dashboard-account-email::after {
    margin-top: 4px;
    padding: 2px 6px;
    font-size: 8px;
  }

  .mobile-dashboard-account-pill {
    min-height: 42px;
    padding-left: 8px;
  }

  .mobile-dashboard-account-pill::before {
    font-size: 8px;
  }

  .mobile-dashboard-account-pill > span strong {
    font-size: 17px;
  }

  .mobile-dashboard-account-pill > span span {
    font-size: 9px;
  }

  .mobile-dashboard-signout {
    min-width: 82px;
    min-height: 34px;
    gap: 4px;
    border-radius: 8px;
    font-size: 9px;
  }

  .mobile-dashboard-signout svg {
    width: 13px;
    height: 13px;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    right: 18px;
    left: 18px;
    min-height: 58px;
    padding: 4px 12px;
    border-radius: 12px;
  }

  .mobile-dashboard-tab {
    gap: 2px;
    font-size: 10px;
  }

  .mobile-dashboard-tab-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-dashboard-tab-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-dashboard-audio-main {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
  }

  .mobile-dashboard-cover {
    width: 42px;
  }

  .mobile-dashboard-audio-copy h3 {
    font-size: 13px;
  }

  .mobile-dashboard-account-row {
    grid-template-columns: 30px minmax(0, 1fr) 58px 76px;
  }

  .mobile-dashboard-signout {
    min-width: 76px;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    right: 12px;
    left: 12px;
  }
}

@media (max-width: 860px) {
  .mobile-dashboard-order-card {
    display: grid;
    gap: 7px;
    padding: 8px;
    border: 1px solid #dfe8e4;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    overflow: hidden;
  }

  .mobile-dashboard-order-card.is-expanded {
    border-color: rgba(31, 143, 84, 0.28);
    box-shadow: 0 10px 22px rgba(31, 89, 56, 0.08);
  }

  .mobile-dashboard-order-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    align-items: start;
  }

  .mobile-dashboard-order-trigger {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }

  .mobile-dashboard-order-trigger .order-card-artwork,
  .mobile-dashboard-order-trigger .mobile-dashboard-cover {
    display: grid !important;
    width: 44px;
    min-width: 44px;
    border-radius: 10px;
  }

  .mobile-dashboard-order-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .mobile-dashboard-order-copy .section-kicker {
    min-width: 0;
    overflow: hidden;
    color: #05813f;
    font-size: 7px;
    font-weight: 450;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-dashboard-order-copy .order-card-title {
    min-width: 0;
    overflow: hidden;
    color: #1f2d2c;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 450;
    line-height: 1.06;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-order-copy .order-card-meta-stack {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    margin-top: 2px;
  }

  .mobile-dashboard-order-copy .order-card-meta-line {
    position: relative;
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 3px;
    align-items: center;
    min-width: 0;
    color: #4d5a59;
    font-size: 8px;
    font-weight: 350;
    line-height: 1.05;
  }

  .mobile-dashboard-order-copy .order-card-meta-line:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1px;
    right: -2px;
    width: 1px;
    height: calc(100% - 2px);
    border-radius: 999px;
    background: #d8e3df;
  }

  .mobile-dashboard-order-copy .order-card-meta-line span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-order-copy .order-card-meta-icon {
    width: 11px;
    height: 11px;
    color: #12804c;
  }

  .mobile-dashboard-order-copy .order-meta {
    min-width: 0;
    overflow: hidden;
    color: #5e6766;
    font-size: 8px;
    font-weight: 450 !important;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-order-copy .order-toggle-hint {
    width: fit-content;
    color: #078142;
    font-size: 9px;
    font-weight: 450;
    line-height: 1.1;
  }

  .mobile-dashboard-order-side {
    display: grid;
    gap: 5px;
    justify-items: end;
    min-width: 0;
    padding-top: 1px;
  }

  .mobile-dashboard-order-side .order-status-pill,
  .mobile-dashboard-order-card > .order-status-pill {
    min-height: 21px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-dashboard-order-side .order-card-chevron,
  .mobile-dashboard-order-card > .mobile-dashboard-chevron {
    width: 7px;
    height: 7px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .mobile-dashboard-order-card.is-expanded .order-card-chevron {
    transform: rotate(-135deg);
  }

  .mobile-dashboard-order-media {
    display: grid;
    gap: 6px;
    min-width: 0;
    margin-top: 1px;
  }

  .mobile-dashboard-order-media .mobile-dashboard-player {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto 18px;
    gap: 6px;
    min-height: 31px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 8px;
    border-radius: 999px;
    background: #f1f4f3;
  }

  .mobile-dashboard-order-media .mobile-dashboard-play {
    width: 18px;
    height: 18px;
  }

  .mobile-dashboard-order-media .mobile-dashboard-play span {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
  }

  .mobile-dashboard-order-media .mobile-dashboard-seek {
    height: 14px;
  }

  .mobile-dashboard-order-media .mobile-dashboard-time {
    font-size: 9px;
    font-weight: 350;
  }

  .mobile-dashboard-order-media .Player-AiMuzica-volume-control {
    display: grid;
    grid-template-columns: 18px;
    width: 18px;
    min-width: 18px;
  }

  .mobile-dashboard-order-media .Player-AiMuzica-volume-button {
    width: 18px;
    height: 18px;
  }

  .mobile-dashboard-order-media .Player-AiMuzica-volume-icon {
    width: 16px;
    height: 16px;
  }

  .mobile-dashboard-order-media .Player-AiMuzica-volume {
    display: none;
  }

  .mobile-dashboard-order-media .mobile-dashboard-audio-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 5px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .mobile-dashboard-order-media .mobile-dashboard-outline-button {
    min-height: 28px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 9px;
  }

  .mobile-dashboard-order-media .mobile-dashboard-outline-button svg {
    width: 13px;
    height: 13px;
  }

  .mobile-dashboard-order-details {
    display: grid;
    gap: 7px;
    padding: 8px 2px 1px;
    border-top: 1px solid #e6eeea;
  }

  .mobile-dashboard-order-details.hidden {
    display: none !important;
  }

  .mobile-dashboard-order-details .order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .mobile-dashboard-order-details .order-detail-item {
    padding: 6px;
    border-radius: 8px;
    background: #f6fbf8;
  }

  .mobile-dashboard-order-details .order-detail-item .section-kicker {
    font-size: 8px;
  }

  .mobile-dashboard-order-details .order-detail-item p:last-child {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
  }

  .mobile-dashboard-order-details .order-lyrics-panel {
    display: grid;
    gap: 5px;
  }

  .mobile-dashboard-order-details .order-lyrics {
    max-height: 110px;
    margin: 0;
    padding: 8px;
    border-radius: 8px;
    font-size: 9px;
    line-height: 1.35;
    overflow: auto;
  }

  .mobile-dashboard-order-details .order-note,
  .mobile-dashboard-order-details .order-details-footer {
    font-size: 8px;
  }

  .mobile-dashboard-audio-compact.mobile-dashboard-order-card {
    grid-template-columns: minmax(0, 1fr) auto 7px;
    gap: 7px;
    align-items: center;
    min-height: 56px;
    padding: 7px;
  }

  .mobile-dashboard-audio-compact .mobile-dashboard-order-trigger {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 7px;
  }

  .mobile-dashboard-audio-compact .order-card-artwork,
  .mobile-dashboard-audio-compact .mobile-dashboard-cover {
    width: 36px !important;
    min-width: 36px !important;
    border-radius: 8px;
  }

  .mobile-dashboard-audio-compact .order-toggle-hint {
    display: none;
  }

  .mobile-dashboard-audio-compact .order-card-title {
    font-size: 12px;
  }

  .mobile-dashboard-audio-compact .order-card-meta-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 389px) {
  .mobile-dashboard-order-trigger {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 6px;
  }

  .mobile-dashboard-order-trigger .order-card-artwork,
  .mobile-dashboard-order-trigger .mobile-dashboard-cover {
    width: 38px;
    min-width: 38px;
  }

  .mobile-dashboard-order-copy .order-card-title {
    font-size: 12px;
  }

  .mobile-dashboard-order-copy .order-card-meta-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .mobile-dashboard-order-media .mobile-dashboard-aimuzica-player,
  .mobile-dashboard-aimuzica-player.Player-AiMuzica {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) 58px 20px !important;
    gap: 6px !important;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 4px 7px !important;
    border: 1px solid rgba(47, 143, 87, 0.12);
    border-radius: 999px !important;
    background: #f2f5f4 !important;
    box-sizing: border-box;
  }

  .mobile-dashboard-aimuzica-player .order-audio.hidden {
    display: none !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-toggle {
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px;
    box-shadow: 0 7px 14px rgba(15, 140, 80, 0.16);
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-toggle span {
    margin-left: 2px;
    border-top-width: 6px !important;
    border-bottom-width: 6px !important;
    border-left-width: 8px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-toggle.is-playing span {
    width: 8px !important;
    height: 10px !important;
    margin-left: 0;
    border: 0 !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-bar {
    width: 100%;
    min-width: 0;
    height: 16px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-bar::before,
  .mobile-dashboard-aimuzica-player .Player-AiMuzica-progress {
    height: 3px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-progress::after {
    right: -4px !important;
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 0 3px rgba(33, 144, 90, 0.12);
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-time {
    min-width: 0;
    color: #46504f;
    font-size: 9px !important;
    font-weight: 375;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume-control {
    display: grid !important;
    grid-template-columns: 20px !important;
    width: 20px !important;
    min-width: 20px !important;
    gap: 0 !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume-button {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume-icon {
    width: 17px !important;
    height: 17px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume {
    display: none !important;
  }
}

@media (max-width: 389px) {
  .mobile-dashboard-order-media .mobile-dashboard-aimuzica-player,
  .mobile-dashboard-aimuzica-player.Player-AiMuzica {
    grid-template-columns: 20px minmax(0, 1fr) 48px 18px !important;
    gap: 5px !important;
    min-height: 31px !important;
    padding: 4px 6px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-toggle {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-time {
    font-size: 8px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume-control {
    grid-template-columns: 18px !important;
    width: 18px !important;
    min-width: 18px !important;
  }

  .mobile-dashboard-aimuzica-player .Player-AiMuzica-volume-button {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 860px) {
  .mobile-account-dashboard [data-mobile-dashboard-view-panel].hidden {
    display: none !important;
  }

  .mobile-dashboard-playlist-list {
    display: grid;
    gap: 7px;
  }

  .mobile-dashboard-count {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid #cfe8de;
    border-radius: 999px;
    background: #edf8f3;
    color: #09784e;
    font-size: 10px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-dashboard-playlist-panel .mobile-dashboard-order-card {
    padding: 8px;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    min-height: 64px;
    padding: 6px 8px;
    border: 1px solid #d8e5df;
    border-radius: 16px;
    background: #ffffff !important;
    box-shadow: 0 10px 26px rgba(25, 54, 42, 0.14);
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .mobile-dashboard-tab {
    display: grid;
    grid-template-rows: 28px auto;
    align-items: center;
    justify-items: center;
    gap: 3px;
    min-width: 0;
    min-height: 52px;
    padding: 4px 2px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #5f686b;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
  }

  .mobile-dashboard-tab-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: transparent;
    color: currentColor;
  }

  .mobile-dashboard-tab-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
  }

  .mobile-dashboard-tab span:last-child {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-tab.is-active {
    background: #edf8f3;
    color: #118457;
  }

  .mobile-dashboard-tab.is-active .mobile-dashboard-tab-icon {
    background: #118457;
    color: #ffffff;
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    min-height: 60px;
    padding: 5px 6px;
    border-radius: 14px;
  }

  .mobile-dashboard-tab {
    grid-template-rows: 25px auto;
    min-height: 49px;
    font-size: 10px;
  }

  .mobile-dashboard-tab-icon {
    width: 25px;
    height: 25px;
    border-radius: 9px;
  }

  .mobile-dashboard-tab-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-height: 62px;
    padding: 5px 8px max(5px, env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 !important;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

.new-account-progress-card,
.new-account-track-card {
  display: grid;
  gap: 14px;
}

.new-account-playlist-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 32px 16px 18px;
  text-align: center;
}

.new-account-track-card.hidden,
.new-account-playlist-empty.hidden {
  display: none;
}

.new-account-track-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.new-account-track-cover {
  display: grid;
  place-items: end center;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 246, 220, 0.82), transparent 24%),
    linear-gradient(160deg, #d7efe7, #9cc9a7 48%, #5f8e72);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.new-account-track-cover.has-cover span {
  display: none;
}

.new-account-track-cover span {
  padding: 10px;
  font-size: 0.76rem;
  font-weight: 450;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
}

.new-account-track-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.new-account-track-copy h3 {
  min-width: 0;
  margin: 0 0 2px;
  overflow: hidden;
  color: #16231d;
  font-size: 1rem;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-account-track-meta,
.new-account-track-ready {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: #5e6870;
  font-size: 0.86rem;
  line-height: 1.25;
}

.new-account-track-meta-icon,
.new-account-player-volume-icon,
.new-account-track-ready span:first-child,
.new-account-result-panel .order-download-link::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
}

.new-account-track-meta-icon {
  color: #15824d;
}

.new-account-track-meta-icon-music {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.new-account-track-meta-icon-voice {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.new-account-track-meta-icon-time {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.new-account-track-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 76px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(47, 143, 87, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f2fbf6);
  color: #137a46;
  font-size: 0.74rem;
  font-weight: 450;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(22, 143, 80, 0.08);
  cursor: pointer;
}

.new-account-track-more:hover,
.new-account-track-more.is-open {
  border-color: rgba(47, 143, 87, 0.42);
  background: linear-gradient(180deg, #f6fff9, #e9f8f0);
}

.new-account-track-more:focus-visible {
  outline: 3px solid rgba(47, 143, 87, 0.2);
  outline-offset: 2px;
}

.new-account-track-more-arrow {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.new-account-track-more.is-open .new-account-track-more-arrow {
  transform: rotate(225deg) translate(-1px, -1px);
}

.new-account-track-lyrics-panel {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 143, 87, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 252, 247, 0.9)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.new-account-track-lyrics-panel.hidden {
  display: none;
}

.new-account-track-lyrics-title {
  margin: 0;
  color: #0b7b3f;
  font-size: 0.68rem;
  font-weight: 450;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.new-account-track-lyrics {
  max-height: 220px;
  margin: 0;
  overflow: auto;
  color: #45505a;
  font: inherit;
  font-size: 0.84rem;
  line-height: 1.48;
  white-space: pre-wrap;
}

.new-account-track-player {
  display: grid;
  grid-template-columns: 32px minmax(74px, 1fr) auto minmax(68px, 0.42fr);
  gap: 10px;
  align-items: center;
  padding: 10px 0 2px;
}

.new-account-player-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ea56e, #15814f);
  color: #fff;
}

.new-account-player-toggle span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.new-account-player-toggle.is-playing span {
  width: 11px;
  height: 13px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64% 100%);
}

.new-account-player-bar {
  position: relative;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  touch-action: none;
}

.new-account-player-bar::before,
.new-account-player-bar span {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  border-radius: inherit;
  transform: translateY(-50%);
}

.new-account-player-bar::before {
  right: 0;
  width: auto;
  background: #dfe5e1;
}

.new-account-player-bar span {
  background: #21905a;
}

.new-account-player-bar span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #21905a;
  box-shadow: 0 2px 7px rgba(33, 144, 90, 0.22);
  transform: translateY(-50%);
}

.new-account-player-bar:focus-visible::before {
  box-shadow: 0 0 0 4px rgba(33, 144, 90, 0.14);
}

.new-account-player-time {
  color: #58616b;
  font-size: 0.72rem;
  white-space: nowrap;
}

.new-account-player-volume-control {
  display: grid;
  grid-template-columns: 20px minmax(38px, 1fr);
  gap: 5px;
  align-items: center;
  min-width: 0;
}

.new-account-player-volume-button {
  display: grid;
  place-items: center;
  width: 20px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #21905a;
  cursor: pointer;
}

.new-account-player-volume-icon {
  color: #21905a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H3v6h3l5 4V5Z'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H3v6h3l5 4V5Z'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.new-account-player-volume-button.is-muted .new-account-player-volume-icon {
  opacity: 0.42;
}

.new-account-player-volume {
  appearance: auto;
  width: 100%;
  min-width: 0;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  accent-color: #21905a;
  cursor: pointer;
}

.Player-AiMuzica {
  display: grid;
  grid-template-columns: 32px minmax(74px, 1fr) auto minmax(68px, 0.42fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 10px 0 2px;
}

.Player-AiMuzica-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ea56e, #15814f);
  color: #fff;
  cursor: pointer;
}

.Player-AiMuzica-toggle span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.Player-AiMuzica-toggle.is-playing span {
  width: 11px;
  height: 13px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64% 100%);
}

.Player-AiMuzica-bar {
  position: relative;
  height: 22px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  touch-action: none;
}

.Player-AiMuzica-bar::before,
.Player-AiMuzica-progress {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  border-radius: inherit;
  transform: translateY(-50%);
}

.Player-AiMuzica-bar::before {
  right: 0;
  width: auto;
  background: #dfe5e1;
}

.Player-AiMuzica-progress {
  background: #21905a;
}

.Player-AiMuzica-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #21905a;
  box-shadow: 0 2px 7px rgba(33, 144, 90, 0.22);
  transform: translateY(-50%);
}

.Player-AiMuzica-bar:focus-visible::before {
  box-shadow: 0 0 0 4px rgba(33, 144, 90, 0.14);
}

.Player-AiMuzica-time {
  color: #58616b;
  font-size: 0.72rem;
  white-space: nowrap;
}

.Player-AiMuzica-volume-control {
  display: grid;
  grid-template-columns: 20px minmax(38px, 1fr);
  gap: 5px;
  align-items: center;
  min-width: 0;
}

.Player-AiMuzica-volume-button {
  display: grid;
  place-items: center;
  width: 20px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #21905a;
  cursor: pointer;
}

.Player-AiMuzica-volume-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  color: #21905a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H3v6h3l5 4V5Z'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H3v6h3l5 4V5Z'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.Player-AiMuzica-volume-button.is-muted .Player-AiMuzica-volume-icon {
  opacity: 0.42;
}

.Player-AiMuzica-volume {
  appearance: auto;
  width: 100%;
  min-width: 0;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  accent-color: #21905a;
  cursor: pointer;
}

.order-media-row .Player-AiMuzica {
  flex: 1 1 280px;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(47, 143, 87, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.new-account-track-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(47, 143, 87, 0.12);
}

.new-account-track-ready {
  color: #7a8590;
  font-size: 0.76rem;
}

.new-account-track-ready span:first-child {
  color: #24a56d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8.5 12.4 2.2 2.2 4.8-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8.5 12.4 2.2 2.2 4.8-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.new-account-track-ready.is-loading {
  color: #16834c;
}

.new-account-track-ready.is-loading span:first-child {
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  border: 2px dotted #16834c;
  border-right-color: rgba(22, 131, 76, 0.22);
  border-radius: 999px;
  background: transparent;
  animation: aimuzica-inline-spin 0.9s linear infinite;
  -webkit-mask: none;
  mask: none;
}

.new-account-result-panel .order-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 98px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(24, 137, 77, 0.5);
  border-radius: 12px;
  background: #fff;
  color: #16834c;
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
}

.new-account-result-panel .order-download-link::before {
  content: "";
  width: 16px;
  height: 16px;
  color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (min-width: 721px) {
  .orders-list .order-card:not(.payment-history-card) {
    padding: clamp(17px, 2.1vw, 24px);
    border: 1px solid rgba(47, 143, 87, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 52px rgba(37, 77, 54, 0.08);
  }

  .orders-list .order-card:not(.payment-history-card).is-expanded {
    border-color: rgba(47, 143, 87, 0.24);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 58px rgba(37, 77, 54, 0.11);
  }

  .orders-list .order-card:not(.payment-history-card) > .order-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-trigger {
    display: grid;
    grid-template-columns: clamp(62px, 6.4vw, 85px) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 22px);
    align-items: center;
    min-width: 0;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-trigger-copy {
    display: grid;
    gap: 0;
    min-width: 0;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-trigger .section-kicker,
  .orders-list .order-card:not(.payment-history-card) .order-meta,
  .orders-list .order-card:not(.payment-history-card) .order-toggle-hint {
    display: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(12, 42, 28, 0.34);
    border-radius: 999px;
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 24%),
      repeating-radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0 1px,
        rgba(1, 16, 9, 0.1) 1px 3px,
        rgba(255, 255, 255, 0.02) 3px 6px
      ),
      radial-gradient(circle at center, #123f29 0 18%, #071b11 19% 100%);
    background-position: center;
    background-size: cover;
    color: rgba(255, 255, 255, 0.94);
    box-shadow:
      0 0 0 1px rgba(13, 42, 27, 0.08),
      0 0 18px rgba(13, 42, 27, 0.18),
      0 0 34px rgba(13, 42, 27, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      inset 0 -8px 18px rgba(0, 0, 0, 0.18);
    transform: rotate(var(--order-artwork-rotation, 0deg));
    transform-origin: center;
    will-change: transform;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork::before {
    content: "";
    position: absolute;
    inset: 31%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: inherit;
    background:
      radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.58), transparent 28%),
      linear-gradient(180deg, #9fe2b7, #319565);
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.05),
      0 4px 12px rgba(3, 22, 12, 0.26),
      inset 0 0 0 1px rgba(16, 90, 50, 0.18);
    pointer-events: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%),
      radial-gradient(circle at 70% 78%, transparent 0 48%, rgba(255, 255, 255, 0.08) 49%, transparent 56%);
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork.has-cover::before {
    display: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork span {
    position: relative;
    z-index: 3;
    max-width: 78%;
    color: inherit;
    font-family: var(--font-display);
    font-size: clamp(0.58rem, 0.9vw, 0.78rem);
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-artwork.has-cover span {
    display: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-title {
    display: block;
    min-width: 0;
    color: #171f1d;
    font-family: var(--font-display);
    font-size: clamp(1.22rem, 1.8vw, 1.58rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-trigger:hover .order-card-title {
    color: #118047;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-meta-stack {
    display: grid;
    gap: 5px;
    margin-top: clamp(7px, 1vw, 11px);
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-meta-line {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    color: #626a72;
    font-size: clamp(0.78rem, 1.16vw, 0.94rem);
    font-weight: 400;
    line-height: 1.22;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-meta-line span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-meta-icon {
    width: 20px;
    height: 20px;
    color: #0f8c50;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-side {
    min-width: clamp(92px, 8.5vw, 118px);
    align-self: start;
    justify-items: end;
    gap: 0;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-chevron {
    display: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(47, 143, 87, 0.2);
    border-radius: 11px;
    background: rgba(246, 252, 248, 0.88);
    color: #147745;
    font-size: clamp(0.68rem, 0.86vw, 0.76rem);
    font-weight: 450;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 8px 18px rgba(31, 101, 58, 0.06);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent);
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill-processing {
    border-color: rgba(47, 143, 87, 0.2);
    background: rgba(239, 250, 243, 0.92);
    color: #147745;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill-completed {
    border-color: rgba(47, 143, 87, 0.2);
    background: rgba(239, 250, 243, 0.92);
    color: #147745;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill-failed,
  .orders-list .order-card:not(.payment-history-card) .order-status-pill-expired {
    border-color: rgba(211, 54, 47, 0.24);
    background: rgba(255, 240, 238, 0.94);
    color: #c7372f;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill-paid,
  .orders-list .order-card:not(.payment-history-card) .order-status-pill-pending {
    border-color: rgba(47, 143, 87, 0.18);
    background: rgba(246, 252, 248, 0.88);
    color: #147745;
  }

  .orders-list .order-card:not(.payment-history-card) .order-status-pill-completed::after {
    content: none;
    display: none;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica {
    flex: initial;
    grid-template-columns: 37px minmax(96px, 1fr) auto minmax(88px, 0.42fr);
    gap: 10px;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-bar {
    width: 95%;
    justify-self: start;
    margin-left: 10px;
    margin-right: 10px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-toggle {
    width: 37px;
    height: 37px;
    box-shadow: 0 12px 24px rgba(15, 140, 80, 0.18);
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-toggle span {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-toggle.is-playing span {
    width: 10px;
    height: 14px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-bar::before,
  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-progress {
    height: 5px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-progress::after {
    right: -8px;
    width: 16px;
    height: 16px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-time {
    color: #545967;
    font-size: 0.82rem;
    font-weight: 500;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-volume-control {
    grid-template-columns: 22px minmax(62px, 96px);
    gap: 7px;
    width: min(126px, 100%);
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-volume-button {
    width: 22px;
    height: 22px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-volume-icon {
    width: 20px;
    height: 20px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-row .Player-AiMuzica-volume {
    height: 18px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-actions .order-download-link {
    gap: 7px;
    min-width: 108px;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #168f50, #35b871);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 450;
    box-shadow: 0 10px 20px rgba(22, 143, 80, 0.18);
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-actions .order-download-link::before {
    content: "";
    width: 1.05em;
    height: 1.05em;
    flex: 0 0 1.05em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .orders-list .order-card:not(.payment-history-card) .order-gift-link,
  .orders-list .order-card:not(.payment-history-card) .order-media-actions .secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 40px;
    padding: 0 11px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 450;
  }

  .orders-list .order-card:not(.payment-history-card) .order-gift-link {
    border: 1px solid #32a775;
    background: #ffffff;
    color: #0f8350;
    box-shadow: none;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .orders-list .order-card:not(.payment-history-card) .order-card-trigger {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-title {
    font-size: 1.28rem;
  }

  .orders-list .order-card:not(.payment-history-card) .order-card-meta-line {
    font-size: 1.12rem;
  }

  .orders-list .order-card:not(.payment-history-card) .order-media-actions {
    justify-content: flex-end;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  body.new-account-page {
    background:
      radial-gradient(circle at 82% 12%, rgba(47, 143, 87, 0.08), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #fbfefb 100%);
  }

  body.new-account-page::before {
    opacity: 0.26;
    background-size: auto, 28px 28px, 28px 28px;
  }

  body.new-account-page .top-nav,
  body.new-account-page .new-account-auth-shell,
  body.new-account-page #new-account-payment-banner,
  body.new-account-page #new-account-job-id {
    display: none !important;
  }

  body.new-account-page .mobile-brand-header {
    margin-bottom: 16px;
  }

  body.new-account-page .site-footer {
    margin: 18px 0 0;
    padding-top: 0;
  }

  body.new-account-page .page-shell {
    width: 100%;
    min-height: 100vh;
    padding: 12px 7px 20px;
  }

  body.new-account-page .new-account-grid {
    display: block;
    width: 100%;
    margin: 0;
  }

  body.new-account-page .new-account-status-card {
    display: grid;
    gap: 13px;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.new-account-page .new-account-status-card::before,
  body.new-account-page .new-account-status-card::after {
    display: none;
  }

  body.new-account-page .new-account-heading {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0 7px 8px;
  }

  body.new-account-page .new-account-heading::before,
  body.new-account-page .new-account-heading::after {
    display: none;
  }

  body.new-account-page .new-account-heading .section-kicker {
    margin: 0;
    color: #0b7b3f;
    font-size: 0.72rem;
    font-weight: 450;
    letter-spacing: 0.24em;
  }

  body.new-account-page .new-account-heading h2 {
    max-width: none;
    margin: 0;
    color: #16231d;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 8.1vw, 2.16rem);
    font-weight: 450;
    line-height: 0.98;
    letter-spacing: 0;
  }

  body.new-account-page .new-account-heading .section-intro {
    max-width: none;
    margin: 2px 0 0;
    color: #5e6870;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body.new-account-page .new-account-live-block {
    display: grid;
    gap: 13px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.new-account-page .new-account-progress-card,
  body.new-account-page .new-account-result-panel,
  body.new-account-page .new-account-status-checklist .status-step {
    border: 1px solid rgba(47, 143, 87, 0.13);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(31, 67, 45, 0.06);
  }

  body.new-account-page .new-account-progress-card {
    gap: 17px;
    margin: 0;
    padding: 18px 18px;
    border-radius: 18px;
  }

  body.new-account-page #new-account-status-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    width: 100%;
    margin: 0;
    padding: 0 16px;
    border: 1px solid rgba(47, 143, 87, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(239, 251, 244, 0.98), rgba(230, 247, 237, 0.9));
    color: #0e713d;
    font-size: 0.92rem;
    font-weight: 450;
    box-shadow: none;
  }

  body.new-account-page #new-account-status-pill::before {
    content: "";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 999px;
  }

  body.new-account-page #new-account-status-pill.is-processing::before,
  body.new-account-page #new-account-status-pill.is-idle::before {
    border: 3px dotted #2f9b66;
    animation: new-account-spin 1.1s linear infinite;
  }

  body.new-account-page #new-account-status-pill.is-completed::before {
    background: linear-gradient(180deg, #48bb7b, #16844d);
  }

  body.new-account-page #new-account-status-pill.is-completed::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateY(-50%);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.new-account-page .new-account-progress-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
    margin: 6px 0 0;
  }

  body.new-account-page .new-account-progress-wrap .progress-bar {
    height: 10px;
    border-radius: 999px;
    background: #dceee4;
  }

  body.new-account-page .new-account-progress-wrap .progress-fill {
    background: linear-gradient(90deg, #169252, #67c28a);
  }

  body.new-account-page #new-account-progress-value {
    color: #35413a;
    font-size: 0.84rem;
    font-weight: 300;
    text-align: right;
  }

  body.new-account-page .new-account-progress-card .status-copy p {
    margin: 0;
    color: #69737c;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  body.new-account-page .new-account-result-panel {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px;
    border-radius: 18px;
  }

  body.new-account-page .new-account-result-panel > .section-kicker {
    margin: 0;
    color: #0b7b3f;
    font-size: 0.68rem;
    font-weight: 450;
    letter-spacing: 0.24em;
  }

  body.new-account-page .new-account-playlist-empty {
    min-height: 146px;
    padding: 31px 18px 6px;
  }

  body.new-account-page .new-account-playlist-empty-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0faf4, #e9f5ee);
    color: rgba(38, 157, 95, 0.22);
  }

  body.new-account-page .new-account-playlist-empty-icon::before {
    content: "";
    width: 30px;
    height: 30px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.new-account-page .new-account-playlist-empty .order-note {
    max-width: 20ch;
    margin: 0;
    color: #5d6871;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  body.new-account-page .new-account-track-card {
    gap: 12px;
    padding-top: 16px;
  }

  body.new-account-page .new-account-track-main {
    grid-template-columns: 103px minmax(0, 1fr) auto;
    gap: 12px;
  }

  body.new-account-page .new-account-track-cover {
    border-radius: 14px;
  }

  body.new-account-page .new-account-track-copy h3 {
    font-size: 0.98rem;
    font-weight: 450;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.new-account-page .new-account-track-meta {
    font-size: 0.82rem;
  }

  body.new-account-page .new-account-track-more {
    align-self: start;
    min-width: 72px;
    min-height: 29px;
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  body.new-account-page .new-account-track-lyrics-panel {
    padding: 11px 12px;
    border-radius: 13px;
  }

  body.new-account-page .new-account-track-lyrics {
    max-height: 180px;
    font-size: 0.8rem;
  }

  body.new-account-page .new-account-status-checklist {
    position: relative;
    display: grid;
    gap: 10px;
    margin: 0;
  }

  body.new-account-page .new-account-status-checklist::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 36px;
    width: 2px;
    background: linear-gradient(180deg, rgba(28, 163, 91, 0.48), rgba(28, 163, 91, 0.08));
    pointer-events: none;
  }

  body.new-account-page .new-account-status-checklist .status-step {
    position: relative;
    z-index: 1;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    min-height: 90px;
    padding: 14px 18px;
    border-radius: 16px;
    transform: none;
  }

  body.new-account-page .new-account-status-checklist .status-step::after {
    content: "";
    justify-self: end;
    width: 20px;
    height: 20px;
  }

  body.new-account-page .new-account-status-checklist .status-step.is-active::after {
    border: 3px dotted #2f9b66;
    border-radius: 999px;
    animation: new-account-spin 1.1s linear infinite;
  }

  body.new-account-page .new-account-status-checklist .status-step-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #dce4df;
    background: #fff;
    color: #fff;
  }

  body.new-account-page .new-account-status-checklist .status-step.is-done .status-step-icon {
    border-color: transparent;
    background: linear-gradient(180deg, #56bf83, #18844d);
    color: #fff;
  }

  body.new-account-page .new-account-status-checklist .status-step.is-done .status-step-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  body.new-account-page .new-account-status-checklist .status-step.is-active .status-step-icon {
    border-color: rgba(47, 143, 87, 0.34);
    background: radial-gradient(circle at center, #39a96f 0 26%, #fff 28% 55%, #dff4e9 56% 100%);
  }

  body.new-account-page .new-account-status-checklist .status-step-copy strong {
    color: #18231d;
    font-size: 0.96rem;
    line-height: 1.16;
  }

  body.new-account-page .new-account-status-checklist .status-step-copy span {
    color: #5e6870;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  body.new-account-page .new-account-status-actions {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0 12px;
  }

  body.new-account-page .new-account-footer-note {
    margin: 2px 0 0;
    color: #5e6870;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
  }

  body.new-account-page #new-account-open-account-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #168f50, #36b672);
    color: #fff;
    font-size: 1rem;
    font-weight: 450;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(22, 143, 80, 0.2);
  }

  body.new-account-page #new-account-open-account-inline.hidden {
    display: none;
  }

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

@media (max-width: 340px) {
  body.new-account-page .page-shell {
    padding-inline: 5px;
  }

  body.new-account-page .new-account-heading h2 {
    font-size: 1.72rem;
  }

  body.new-account-page .new-account-track-main {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 10px;
  }

  body.new-account-page .new-account-track-meta {
    font-size: 0.74rem;
  }

  body.new-account-page .new-account-track-more {
    min-width: 64px;
    min-height: 27px;
    gap: 4px;
    padding-inline: 7px;
    font-size: 0.64rem;
  }

  body.new-account-page .new-account-track-more-arrow {
    width: 7px;
    height: 7px;
  }

  body.new-account-page .new-account-player-time {
    font-size: 0.66rem;
  }

  body.new-account-page .new-account-track-player {
    grid-template-columns: 30px minmax(50px, 1fr) auto 56px;
    gap: 6px;
  }

  body.new-account-page .new-account-player-volume-control {
    grid-template-columns: 18px minmax(30px, 1fr);
    gap: 3px;
  }

  body.new-account-page .new-account-player-volume-button {
    width: 18px;
  }

  body.mobile-logged-result-panel #generator-status-card .section-heading h2 {
    font-size: 1.72rem;
  }

  body.mobile-logged-result-panel .status-result-summary {
    padding: 15px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-main {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 10px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-meta {
    font-size: 0.74rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-more {
    min-width: 64px;
    min-height: 27px;
    gap: 4px;
    padding-inline: 7px;
    font-size: 0.64rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-more-arrow {
    width: 7px;
    height: 7px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-track-player {
    grid-template-columns: 30px minmax(50px, 1fr) auto 56px;
    gap: 6px;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-player-time {
    font-size: 0.66rem;
  }

  body.mobile-logged-result-panel .generator-result-panel .new-account-player-volume-control {
    grid-template-columns: 18px minmax(30px, 1fr);
    gap: 3px;
  }

  body.mobile-logged-result-panel .generate-another-track {
    min-height: 46px;
    font-size: 0.84rem;
  }

  body.new-account-page .new-account-status-checklist .status-step {
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 11px;
    min-height: 82px;
    padding: 12px 13px;
  }

  body.new-account-page .new-account-status-checklist::before {
    left: 30px;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active {
    background: #f7fbf9;
  }

  body.mobile-account-dashboard-active .mobile-account-dashboard {
    gap: 14px;
    padding: 20px 18px calc(82px + env(safe-area-inset-bottom));
  }

  body.mobile-account-dashboard-active .mobile-dashboard-hero,
  body.mobile-account-dashboard-active .mobile-dashboard-stats[data-mobile-dashboard-view-panel="account"],
  body.mobile-account-dashboard-active .mobile-dashboard-shortcuts[data-mobile-dashboard-view-panel="account"],
  body.mobile-account-dashboard-active .mobile-dashboard-carousel-dots[data-mobile-dashboard-view-panel="account"],
  body.mobile-account-dashboard-active .mobile-dashboard-audio-panel[data-mobile-dashboard-view-panel="account"],
  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="account"],
  body.mobile-account-dashboard-active .mobile-dashboard-credits-panel[data-mobile-dashboard-view-panel="account"] {
    display: none !important;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-account-panel {
    display: grid;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .mobile-account-profile-card {
    display: grid;
    gap: 22px;
    padding: 24px 22px 26px;
    border: 1px solid #d8e9e1;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(37, 75, 55, 0.07);
  }

  .mobile-account-profile-top {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
  }

  .mobile-account-profile-avatar {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid #cfe7dc;
    border-radius: 999px;
    background: #eaf7f1;
    color: #18a05f;
  }

  .mobile-account-profile-avatar svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.15;
  }

  .mobile-account-profile-copy {
    display: grid;
    justify-items: start;
    gap: 9px;
    min-width: 0;
  }

  .mobile-account-profile-copy h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .mobile-dashboard-account-email {
    max-width: 100%;
    overflow: hidden;
    color: #1f2828;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-account-email::after {
    content: none !important;
    display: none !important;
  }

  .mobile-account-connected-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #c6e6d7;
    border-radius: 10px;
    background: #e6f6ed;
    color: #15804e;
    font-size: 13px;
    font-weight: 450;
  }

  .mobile-account-connected-badge span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-account-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 100px;
    padding: 16px 12px;
    border: 1px solid #e2ebe7;
    border-radius: 18px;
    background: #ffffff;
  }

  .mobile-account-metric {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
  }

  .mobile-account-metric + .mobile-account-metric {
    padding-left: 12px;
    border-left: 1px dashed #d9e7e0;
  }

  .mobile-account-metric-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #139a59;
  }

  .mobile-account-metric-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.15;
  }

  .mobile-account-metric-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
  }

  .mobile-account-metric-copy > span {
    color: #5e6568;
    font-size: 11.5px;
    font-weight: 350;
    line-height: 1.05;
    white-space: normal;
  }

  .mobile-account-metric-copy strong {
    color: #20292b;
    font-size: 26px;
    font-weight: 475;
    line-height: 0.95;
    white-space: nowrap;
  }

  .mobile-account-action-list {
    display: grid;
    border: 1px solid #dfe9e5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(37, 75, 55, 0.06);
    overflow: hidden;
  }

  .mobile-account-action-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 0 28px 0 18px;
    border: 0;
    background: #ffffff;
    color: #20292b;
    font: inherit;
    font-size: 17px;
    font-weight: 450;
    text-align: left;
    text-decoration: none;
  }

  .mobile-account-action-row + .mobile-account-action-row {
    border-top: 1px solid #eef2f0;
  }

  .mobile-account-action-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid #e4eee8;
    border-radius: 999px;
    background: #f8fbfa;
    color: #139a59;
  }

  .mobile-account-action-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.05;
  }

  .mobile-account-row-chevron,
  .mobile-account-buy-arrow {
    width: 15px;
    height: 15px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
  }

  .mobile-account-row-chevron {
    color: #858d91;
  }

  .mobile-account-buy-credits {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 22px;
    gap: 18px;
    align-items: center;
    min-height: 102px;
    padding: 18px 26px 18px 18px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #078a44, #32c678);
    color: #ffffff;
    text-align: left;
    box-shadow: 0 16px 34px rgba(13, 153, 77, 0.24);
  }

  .mobile-account-buy-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(0, 91, 43, 0.26);
    color: #ffffff;
  }

  .mobile-account-buy-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.1;
  }

  .mobile-account-buy-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
  }

  .mobile-account-buy-copy strong {
    font-size: 19px;
    font-weight: 475;
    line-height: 1.1;
  }

  .mobile-account-buy-copy span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
  }

  .mobile-account-buy-arrow {
    color: #ffffff;
  }

  .mobile-account-status {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: -2px 0 0;
    padding: 12px 14px;
    border: 1px solid #cce8d9;
    border-radius: 15px;
    background: #f3fbf6;
    color: #126f42;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(37, 75, 55, 0.05);
  }

  .mobile-account-status::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 1px;
    border-radius: 999px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .mobile-account-status.field-error {
    border-color: #f2c6c0;
    background: #fff5f3;
    color: #b24a42;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open {
    overflow: hidden;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open #account-main-grid > #account-sidebar {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid !important;
    place-items: center;
    width: 100%;
    max-width: none;
    padding: max(16px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
    background: rgba(8, 30, 20, 0.32);
    backdrop-filter: blur(8px);
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open #account-session-panel {
    display: none !important;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open #account-credit-purchase-card {
    display: grid !important;
    width: min(360px, calc(100vw - 28px));
    max-height: min(78svh, 680px);
    overflow: auto;
    gap: 16px;
    padding: 22px 18px 18px;
    border-radius: 24px;
    border-color: rgba(47, 143, 87, 0.18);
    background:
      radial-gradient(circle at 18% 12%, rgba(47, 143, 87, 0.1), transparent 28%),
      linear-gradient(180deg, #ffffff, #f8fffb);
    box-shadow: 0 28px 72px rgba(7, 34, 20, 0.22);
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open #account-credit-purchase-card .section-heading {
    padding-bottom: 14px;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open #account-credit-purchase-card .section-heading h2 {
    font-size: 1.8rem;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open .account-credit-offer {
    min-height: 58px;
    padding: 11px 13px;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open .account-credit-purchase-actions {
    gap: 10px;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open .account-credit-purchase-actions .primary-button,
  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open .account-credit-purchase-actions .secondary-button {
    height: 42px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  body.mobile-account-dashboard-active.mobile-credit-purchase-modal-open .account-credit-purchase-status {
    font-size: 0.76rem;
  }

  .mobile-dashboard-account-panel .mobile-dashboard-signout {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    border: 1px solid #bfe4d1;
    border-radius: 14px;
    background: #ffffff;
    color: #109157;
    font-size: 15px;
    font-weight: 450;
  }

  .mobile-dashboard-account-panel .mobile-dashboard-signout svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100% !important;
    min-height: 61px;
    padding: 5px 18px max(6px, env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid #e2e9e5;
    border-radius: 20px 20px 0 0 !important;
    background: #ffffff !important;
    box-shadow: 0 -12px 32px rgba(28, 50, 42, 0.1);
    opacity: 1 !important;
  }

  .mobile-dashboard-tab {
    position: relative;
    display: grid;
    grid-template-rows: 24px auto;
    justify-items: center;
    align-items: center;
    gap: 2px;
    min-height: 46px;
    border: 0;
    background: transparent;
    color: #2f383b;
    font-size: 10.4px;
    font-weight: 450 !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
  }

  .mobile-dashboard-tab-icon {
    width: 19px;
    height: 19px;
    color: currentColor;
  }

  .mobile-dashboard-tab-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-dashboard-tab-icon-generator svg {
    stroke-width: 1.45;
  }

  #mobile-dashboard-tabbar .mobile-dashboard-tab > span:last-child {
    font-size: 10.4px !important;
    font-weight: 450 !important;
  }

  .mobile-dashboard-tab.is-active {
    background: transparent;
    color: #119457;
    font-weight: 275 !important;
  }

  #mobile-dashboard-tabbar .mobile-dashboard-tab.is-active > span:last-child {
    font-size: 10.4px !important;
    font-weight: 275 !important;
  }

  .mobile-dashboard-tab.is-active::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
  }

  .mobile-dashboard-tab.is-active .mobile-dashboard-tab-icon {
    background: transparent;
    color: currentColor;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] {
    display: grid;
    gap: 14px;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"].hidden {
    display: none !important;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] .mobile-dashboard-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    padding: 0 2px 2px;
    border: 0;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] h2 {
    color: #1f2828;
    font-size: 31px;
    letter-spacing: 0;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] .mobile-dashboard-link {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #cde5d9;
    border-radius: 999px;
    background: #ffffff;
    color: #11884f;
    font-size: 13px;
    font-weight: 425;
    box-shadow: 0 8px 18px rgba(37, 75, 55, 0.05);
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] .mobile-dashboard-link .mobile-dashboard-chevron {
    transform: rotate(225deg);
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] .mobile-dashboard-payments-list {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    min-height: 0;
    padding: 16px;
    border: 1px solid #d7e9df;
    border-radius: 22px;
    background:
      linear-gradient(90deg, rgba(17, 142, 80, 0.055) 0 1px, transparent 1px 11px),
      linear-gradient(180deg, rgba(17, 142, 80, 0.045) 0 1px, transparent 1px 11px),
      linear-gradient(145deg, #ffffff 0%, #f8fdfb 58%, #f2fbf6 100%);
    background-size: 12px 12px, 12px 12px, auto;
    box-shadow: 0 18px 36px rgba(37, 75, 55, 0.075);
    overflow: hidden;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-card::before,
  body.mobile-account-dashboard-active .mobile-dashboard-receipt-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d7e9df;
    border-radius: 999px;
    background: #f7fbf9;
    transform: translateY(-50%);
    z-index: 1;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-card::before {
    left: -10px;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-card::after {
    right: -10px;
  }

  .mobile-dashboard-receipt-head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-width: 0;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #c9ead9;
    border-radius: 16px;
    background: linear-gradient(145deg, #e8f8f0, #ffffff);
    color: #129457;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 2;
  }

  .mobile-dashboard-receipt-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-copy strong {
    overflow: hidden;
    color: #1f2828;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 450;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-copy span {
    color: #66716d;
    font-size: 12px;
    font-weight: 375;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-receipt-amount {
    align-self: start;
    padding-top: 2px;
    color: #10894f;
    font-size: 18px;
    font-weight: 475;
    white-space: nowrap;
  }

  .mobile-dashboard-receipt-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0;
    border-top: 1px dashed #cfe5da;
    border-bottom: 1px dashed #cfe5da;
  }

  .mobile-dashboard-receipt-meta span {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-dashboard-receipt-meta small {
    color: #87908c;
    font-size: 9px;
    font-weight: 450;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-dashboard-receipt-meta strong {
    overflow: hidden;
    color: #2c3634;
    font-size: 11px;
    font-weight: 375;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dashboard-receipt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }

  .mobile-dashboard-receipt-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid #bde5d1;
    border-radius: 999px;
    background: #e9f8f0;
    color: #10864e;
    font-size: 11px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-dashboard-receipt-status.payment-status-pill-failed {
    border-color: #f0c0c0;
    background: #fff0f0;
    color: #c93b3b;
  }

  .mobile-dashboard-receipt-status.payment-status-pill-pending {
    border-color: #f0d7aa;
    background: #fff7e9;
    color: #a86614;
  }

  .mobile-dashboard-receipt-id {
    overflow: hidden;
    color: #7a8581;
    font-size: 10px;
    font-weight: 450;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body.mobile-account-dashboard-active.mobile-payments-history-active .mobile-account-dashboard {
    font-family: var(--font-ui);
    font-optical-sizing: auto;
    gap: 18px;
    padding: 14px 18px calc(96px + env(safe-area-inset-bottom));
  }

  body.mobile-account-dashboard-active .mobile-payments-page-head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 1px 0 4px;
  }

  .mobile-payments-back-button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #dce8e3;
    border-radius: 13px;
    background: #ffffff;
    color: #172023;
    box-shadow: 0 10px 22px rgba(37, 75, 55, 0.055);
  }

  .mobile-payments-back-button svg {
    width: 25px;
    height: 25px;
    stroke-width: 2.25;
  }

  body.mobile-account-dashboard-active .mobile-payments-page-head h2 {
    overflow: hidden;
    margin: 0;
    color: #202b2a;
    font-family: inherit;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-payments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid #cce8d8;
    border-radius: 999px;
    background: #e8f7ef;
    color: #129256;
    font-size: 14px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-payments-search {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #dfe9e5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-payments-search svg {
    width: 20px;
    height: 20px;
    color: #8fa09b;
    stroke-width: 2;
  }

  .mobile-payments-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #263130;
    font: inherit;
    font-size: 14px;
    font-weight: 400;
  }

  .mobile-payments-search input::placeholder {
    color: #8a9794;
    opacity: 1;
  }

  .mobile-payments-filters {
    display: grid;
    grid-template-columns:
      minmax(76px, 0.92fr)
      minmax(94px, 1.04fr)
      minmax(130px, 1.25fr)
      minmax(86px, 0.92fr);
    gap: 12px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: none;
  }

  .mobile-payments-filters::-webkit-scrollbar {
    display: none;
  }

  .mobile-payments-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #e0e7e4;
    border-radius: 17px;
    background: #ffffff;
    color: #717980;
    font-size: 14px;
    font-weight: 425;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(37, 75, 55, 0.035);
  }

  .mobile-payments-filter.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #0a9854, #24b86b);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 148, 86, 0.22);
  }

  body.mobile-account-dashboard-active .mobile-dashboard-payments-panel[data-mobile-dashboard-view-panel="payments"] .mobile-dashboard-payments-list {
    gap: 10px;
  }

  body.mobile-account-dashboard-active .mobile-payments-history-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto 16px;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid #e4ebe8;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(34, 60, 50, 0.045);
  }

  .mobile-payments-history-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid #ddf0e6;
    border-radius: 999px;
    background: #eff9f4;
    color: #10a45d;
  }

  .mobile-payments-history-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.1;
  }

  .mobile-payments-history-row.is-pending .mobile-payments-history-icon {
    border-color: #fae3b9;
    background: #fff8eb;
    color: #eca21b;
  }

  .mobile-payments-history-row.is-failed .mobile-payments-history-icon {
    border-color: #f7cfd2;
    background: #fff0f1;
    color: #f0444c;
  }

  .mobile-payments-history-copy {
    display: grid;
    gap: 7px;
    min-width: 0;
  }

  .mobile-payments-history-copy strong {
    overflow: hidden;
    color: #20272d;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-payments-history-copy > span {
    display: inline-flex;
    gap: 9px;
    min-width: 0;
    overflow: hidden;
    color: #747b84;
    font-size: 14px;
    font-weight: 325;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-payments-history-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid #cdebdc;
    border-radius: 9px;
    background: #eaf8f1;
    color: #119457;
    font-size: 12px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-payments-history-status.payment-status-pill-pending {
    border-color: #f5ddad;
    background: #fff7e5;
    color: #d28a08;
  }

  .mobile-payments-history-status.payment-status-pill-failed {
    border-color: #f4cbd0;
    background: #fff0f1;
    color: #e73748;
  }

  .mobile-payments-history-chevron {
    width: 14px;
    height: 14px;
    border-top: 3px solid #8a9299;
    border-right: 3px solid #8a9299;
    transform: rotate(45deg);
  }
}

@media (max-width: 389px) {
  body.mobile-account-dashboard-active.mobile-payments-history-active .mobile-account-dashboard {
    padding: 18px 12px calc(92px + env(safe-area-inset-bottom));
  }

  body.mobile-account-dashboard-active .mobile-payments-page-head {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .mobile-payments-back-button {
    width: 44px;
    height: 44px;
  }

  body.mobile-account-dashboard-active .mobile-payments-page-head h2 {
    font-size: 25px;
  }

  .mobile-payments-count {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .mobile-payments-search {
    min-height: 42px;
    border-radius: 15px;
  }

  .mobile-payments-search input {
    font-size: 13px;
  }

  .mobile-payments-filters {
    grid-template-columns:
      minmax(68px, 0.9fr)
      minmax(82px, 1fr)
      minmax(112px, 1.25fr)
      minmax(74px, 0.92fr);
    gap: 8px;
  }

  .mobile-payments-filter {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 15px;
    font-size: 12px;
  }

  body.mobile-account-dashboard-active .mobile-payments-history-row {
    grid-template-columns: 48px minmax(0, 1fr) auto 12px;
    gap: 10px;
    min-height: 80px;
    padding: 12px;
    border-radius: 16px;
  }

  .mobile-payments-history-icon {
    width: 46px;
    height: 46px;
  }

  .mobile-payments-history-icon svg {
    width: 23px;
    height: 23px;
  }

  .mobile-payments-history-copy strong {
    font-size: 15px;
  }

  .mobile-payments-history-copy > span {
    gap: 6px;
    font-size: 12px;
  }

  .mobile-payments-history-status {
    min-height: 28px;
    padding: 0 9px;
    font-size: 10px;
  }

  .mobile-payments-history-chevron {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .mobile-account-profile-card {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .mobile-account-profile-top {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
  }

  .mobile-account-profile-avatar {
    width: 72px;
    height: 72px;
  }

  .mobile-dashboard-account-email {
    font-size: 16px;
  }

  .mobile-account-metrics {
    min-height: 88px;
    padding: 13px 9px;
  }

  .mobile-account-metric {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 5px;
  }

  .mobile-account-metric + .mobile-account-metric {
    padding-left: 8px;
  }

  .mobile-account-metric-icon {
    width: 28px;
    height: 28px;
  }

  .mobile-account-metric-icon svg {
    width: 22px;
    height: 22px;
  }

  .mobile-account-metric-copy > span {
    font-size: 9.5px;
    line-height: 1;
  }

  .mobile-account-metric-copy strong {
    font-size: 21px;
  }

  .mobile-account-action-row {
    grid-template-columns: 48px minmax(0, 1fr) 15px;
    min-height: 72px;
    padding-right: 22px;
    font-size: 15px;
  }

  .mobile-account-action-icon {
    width: 46px;
    height: 46px;
  }

  .mobile-account-buy-credits {
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    gap: 14px;
    min-height: 88px;
    padding: 15px 22px 15px 14px;
  }

  .mobile-account-buy-icon {
    width: 52px;
    height: 52px;
  }

  .mobile-account-buy-copy strong {
    font-size: 17px;
  }

  .mobile-account-buy-copy span {
    font-size: 12px;
  }
}

@media (max-width: 340px) {
  .mobile-account-metrics {
    padding: 12px 7px;
  }

  .mobile-account-metric {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 4px;
  }

  .mobile-account-metric + .mobile-account-metric {
    padding-left: 6px;
  }

  .mobile-account-metric-icon {
    width: 24px;
    height: 24px;
  }

  .mobile-account-metric-icon svg {
    width: 19px;
    height: 19px;
  }

  .mobile-account-metric-copy > span {
    font-size: 8.5px;
  }

  .mobile-account-metric-copy strong {
    font-size: 19px;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active .mobile-dashboard-playlist-panel {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .mobile-playlist-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .mobile-playlist-header h2 {
    margin: 0;
    color: #202b2a;
    font-family: inherit;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.02;
  }

  .mobile-playlist-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d5e8df;
    border-radius: 999px;
    background: #f1fbf6;
    color: #52625e;
    font-size: 12px;
    font-weight: 450;
  }

  .mobile-playlist-count::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #139b5a;
  }

  .mobile-playlist-search.mobile-dashboard-search {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 44px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #dfe9e5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-playlist-search.mobile-dashboard-search > span {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #8fa09b;
    border-radius: 999px;
  }

  .mobile-playlist-search.mobile-dashboard-search > span::after {
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    background: #8fa09b;
  }

  .mobile-playlist-search.mobile-dashboard-search input {
    color: #263130;
    font-size: 14px;
    font-weight: 400;
  }

  .mobile-playlist-search.mobile-dashboard-search input::placeholder {
    color: #8a9794;
  }

  .mobile-playlist-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .mobile-playlist-filter {
    display: inline-grid;
    grid-template-columns: 11px minmax(0, 1fr);
    gap: 2px;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    min-width: 0;
    padding: 0 3px;
    border: 1px solid #dfe8e4;
    border-radius: 9px;
    background: #ffffff;
    color: #687471;
    font-size: clamp(2.78px, 0.83vw, 3.55px);
    font-weight: 250;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(31, 67, 50, 0.05);
  }

  .mobile-playlist-filter span {
    min-width: 0;
    overflow: visible;
    text-align: center;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-playlist-filter svg {
    width: 20.8px;
    height: 20.8px;
    stroke-width: 1.55;
  }

  .mobile-playlist-filter.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #078c48, #2dbc72);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(16, 157, 84, 0.25);
  }

  .mobile-playlist-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    margin: -2px 0 0;
    padding: 6px 11px;
    border: 1px solid #cdebdc;
    border-radius: 999px;
    background: #eaf8f1;
    color: #16824f;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.25;
  }

  .mobile-playlist-status.field-error {
    border-color: #f2c6c0;
    background: #fff5f3;
    color: #b24a42;
  }

  .mobile-dashboard-playlist-list {
    display: grid;
    gap: 10px;
  }

  .mobile-playlist-track {
    min-width: 0;
    border: 1px solid #dfeae5;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(28, 56, 43, 0.07);
  }

  .mobile-playlist-track-featured.mobile-dashboard-order-card {
    display: block;
    padding: 16px;
    border-radius: 22px;
    overflow: hidden;
  }

  .mobile-playlist-featured-main {
    display: grid;
    grid-template-columns: minmax(112px, 36%) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .mobile-playlist-cover-button,
  .mobile-playlist-title-button,
  .mobile-playlist-row-main {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
  }

  .mobile-playlist-cover-button {
    width: 100%;
    align-self: start;
  }

  .mobile-playlist-cover {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 18px;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(19, 42, 34, 0.16);
  }

  .mobile-playlist-cover-large {
    aspect-ratio: 1 / 1.2;
    min-height: 112px;
  }

  .mobile-playlist-cover-large.has-cover {
    background-position: center top;
    background-size: cover;
  }

  .mobile-playlist-cover-small {
    width: 52px;
    min-width: 52px;
    border-radius: 13px;
    box-shadow: 0 8px 16px rgba(19, 42, 34, 0.12);
  }

  .mobile-playlist-featured-copy {
    display: grid;
    gap: 7px;
    min-width: 0;
  }

  .mobile-playlist-featured-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
  }

  .mobile-playlist-featured-head .order-status-pill {
    justify-self: start;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 475;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-playlist-track-actions,
  .mobile-playlist-row-actions {
    display: inline-grid;
    grid-auto-flow: column;
    gap: 8px;
    align-items: center;
  }

  .mobile-playlist-icon-button,
  .mobile-playlist-row-play {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #dfe8e4;
    border-radius: 999px;
    background: #ffffff;
    color: #6c7774;
    box-shadow: 0 7px 14px rgba(24, 48, 38, 0.06);
  }

  .mobile-playlist-icon-button svg,
  .mobile-playlist-row-play svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.15;
  }

  .mobile-playlist-featured-head .mobile-playlist-icon-button:first-child {
    color: #0c9656;
  }

  .mobile-playlist-favorite-button.is-favorite {
    border-color: #bce8d1;
    background: #e9f8f0;
    color: #0a9854;
    box-shadow: 0 9px 18px rgba(13, 149, 78, 0.14);
  }

  .mobile-playlist-favorite-button.is-favorite svg {
    fill: currentColor;
    stroke-width: 1.8;
  }

  .mobile-playlist-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 6px;
    align-items: start;
    min-width: 0;
  }

  .mobile-playlist-title-button span {
    display: -webkit-box;
    overflow: hidden;
    color: #202b2a;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 475;
    line-height: 1.02;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-playlist-title-edit-button {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #cfe6da;
    border-radius: 999px;
    background: #f4fbf7;
    color: #0f8f54;
    box-shadow: 0 7px 14px rgba(24, 48, 38, 0.06);
  }

  .mobile-playlist-title-edit-button svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.15;
  }

  .mobile-playlist-title-editor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    align-items: center;
    min-width: 0;
  }

  .mobile-playlist-title-input {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid #bfe4d1;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2d2c;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 450;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .mobile-playlist-title-input:focus {
    border-color: rgba(47, 143, 87, 0.6);
    box-shadow: 0 0 0 3px rgba(47, 143, 87, 0.1);
  }

  .mobile-playlist-title-save {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #188f53, #59bf79);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 9px 18px rgba(24, 143, 83, 0.2);
  }

  .mobile-playlist-title-save:disabled {
    opacity: 0.7;
  }

  .mobile-playlist-title-edit-status {
    grid-column: 1 / -1;
    margin: 0;
    color: #51705f;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
  }

  .mobile-playlist-title-edit-status.field-error {
    color: #b94141;
  }

  .mobile-playlist-meta-list {
    display: grid;
    gap: 4px;
    color: #5d6966;
    font-size: 11px;
    font-weight: 350;
    line-height: 1.1;
  }

  .mobile-playlist-meta-item {
    display: inline-grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 5px;
    align-items: center;
    min-width: 0;
  }

  .mobile-playlist-meta-item svg {
    width: 13px;
    height: 13px;
    color: #12985a;
    stroke-width: 2.25;
  }

  .mobile-playlist-meta-item > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-playlist-track-featured .mobile-dashboard-aimuzica-player.Player-AiMuzica {
    grid-template-columns: 38px minmax(0, 1fr) 58px 22px !important;
    gap: 8px !important;
    min-height: 40px !important;
    margin-top: 4px !important;
    padding: 4px 6px !important;
    border: 0;
    background: transparent !important;
  }

  .mobile-playlist-track-featured .Player-AiMuzica-toggle {
    width: 38px !important;
    height: 38px !important;
    background: linear-gradient(135deg, #0a9854, #2ec475);
    color: #ffffff;
  }

  .mobile-playlist-track-featured .Player-AiMuzica-time {
    font-size: 10px !important;
  }

  .mobile-playlist-featured-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
  }

  .mobile-playlist-featured-actions .mobile-dashboard-outline-button {
    min-height: 36px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 450;
  }

  .mobile-playlist-featured-actions .mobile-dashboard-download-button {
    border-color: transparent;
    background: linear-gradient(135deg, #0b9854, #35bc73);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(13, 149, 78, 0.22);
  }

  .mobile-playlist-featured-actions .mobile-dashboard-gift-button {
    background: #ffffff;
    color: #0f8350;
  }

  .mobile-playlist-track-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 74px;
    padding: 8px;
    border-radius: 18px;
  }

  .mobile-playlist-row-main {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .mobile-playlist-row-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
  }

  .mobile-playlist-row-title {
    overflow: hidden;
    color: #26302f;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 475;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-playlist-row-meta {
    display: flex;
    gap: 9px;
    min-width: 0;
    overflow: hidden;
    color: #5f6b68;
    font-size: 9px;
    font-weight: 375;
    white-space: nowrap;
  }

  .mobile-playlist-row-meta .mobile-playlist-meta-item {
    display: inline-flex;
    flex: 0 1 auto;
    gap: 3px;
  }

  .mobile-playlist-row-meta .mobile-playlist-meta-item svg {
    width: 10px;
    height: 10px;
  }

  .mobile-playlist-row-play {
    border-color: transparent;
    background: linear-gradient(135deg, #0a9854, #23b86a);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(13, 149, 78, 0.22);
  }

  .mobile-playlist-row-play:disabled {
    background: #d7e0dc;
    color: #ffffff;
    box-shadow: none;
  }

  body.mobile-playlist-lyrics-open {
    overflow: hidden;
  }

  .mobile-playlist-lyrics-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    align-items: end;
    padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
    background: rgba(18, 32, 27, 0.38);
    backdrop-filter: blur(10px);
  }

  .mobile-playlist-lyrics-modal.hidden {
    display: none !important;
  }

  .mobile-playlist-lyrics-sheet {
    display: grid;
    gap: 14px;
    width: 100%;
    max-height: min(78dvh, 640px);
    padding: 18px;
    border: 1px solid #dceae4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(17, 39, 30, 0.22);
    overflow: hidden;
  }

  .mobile-playlist-lyrics-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 4px 12px;
    align-items: start;
  }

  .mobile-playlist-lyrics-kicker {
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: center;
    color: #0e8e52;
    font-size: 10px;
    font-weight: 450;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-playlist-lyrics-close {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: end;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dfe9e5;
    border-radius: 999px;
    background: #ffffff;
    color: #4f5b58;
    box-shadow: 0 8px 18px rgba(24, 48, 38, 0.06);
  }

  .mobile-playlist-lyrics-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .mobile-playlist-lyrics-head h2 {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 8px 0 0;
    color: #202b2a;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-playlist-lyrics-title-row {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 7px;
    align-items: center;
    min-width: 0;
    margin: 2px 0 0;
  }

  .mobile-playlist-lyrics-track-title {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
    color: #5d6966;
    font-size: 13px;
    font-weight: 350;
    line-height: 1.25;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-playlist-lyrics-title-edit {
    width: 30px;
    height: 30px;
  }

  .mobile-playlist-lyrics-title-editor {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 2px;
  }

  .mobile-playlist-lyrics-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 7px;
    margin-top: 5px;
  }

  .mobile-playlist-lyrics-meta span {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid #e1ece7;
    border-radius: 13px;
    background: #f8fcfa;
  }

  .mobile-playlist-lyrics-meta small {
    color: #12814d;
    font-size: 8px;
    font-weight: 450;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .mobile-playlist-lyrics-meta strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #26302f;
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .mobile-playlist-lyrics-body {
    max-height: min(46dvh, 390px);
    margin: 0;
    padding: 14px;
    border: 1px solid #e3ece8;
    border-radius: 16px;
    background: #f8fcfa;
    color: #26302f;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 350;
    line-height: 1.55;
    overflow: auto;
    white-space: pre-wrap;
  }

  .mobile-playlist-lyrics-body.is-empty {
    color: #6d7875;
    font-style: italic;
  }

  .mobile-playlist-lyrics-actions {
    display: grid;
    gap: 7px;
  }

  .mobile-playlist-lyrics-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a9854, #2ec475);
    color: #ffffff;
    font-size: 14px;
    font-weight: 450;
    box-shadow: 0 14px 28px rgba(13, 149, 78, 0.24);
  }

  .mobile-playlist-lyrics-copy:disabled {
    background: #d9e4df;
    color: #7a8581;
    box-shadow: none;
  }

  .mobile-playlist-lyrics-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid #cdebdc;
    border-radius: 999px;
    background: #eaf8f1;
    color: #16824f;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-playlist-lyrics-status:empty {
    display: none;
  }
}

@media (max-width: 389px) {
  .mobile-playlist-header h2 {
    font-size: 25px;
  }

  .mobile-playlist-count {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .mobile-playlist-filters {
    gap: 3px;
  }

  .mobile-playlist-filter {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 2px;
    min-height: 26px;
    padding: 0 2px;
    font-size: 2.78px;
  }

  .mobile-playlist-filter svg {
    width: 18.2px;
    height: 18.2px;
  }

  .mobile-playlist-track-featured.mobile-dashboard-order-card {
    padding: 12px;
    border-radius: 18px;
  }

  .mobile-playlist-featured-main {
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    gap: 10px;
  }

  .mobile-playlist-title-button span {
    font-size: 18px;
  }

  .mobile-playlist-title-row {
    grid-template-columns: minmax(0, 1fr) 27px;
    gap: 5px;
  }

  .mobile-playlist-title-edit-button {
    width: 27px;
    height: 27px;
  }

  .mobile-playlist-title-edit-button svg {
    width: 13px;
    height: 13px;
  }

  .mobile-playlist-title-editor {
    gap: 5px;
  }

  .mobile-playlist-title-input {
    min-height: 34px;
    padding: 0 9px;
    border-radius: 10px;
    font-size: 12px;
  }

  .mobile-playlist-title-save {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 10px;
  }

  .mobile-playlist-meta-list {
    font-size: 9px;
  }

  .mobile-playlist-icon-button,
  .mobile-playlist-row-play {
    width: 30px;
    height: 30px;
  }

  .mobile-playlist-track-featured .mobile-dashboard-aimuzica-player.Player-AiMuzica {
    grid-template-columns: 30px minmax(0, 1fr) 48px 18px !important;
    gap: 5px !important;
  }

  .mobile-playlist-track-featured .Player-AiMuzica-toggle {
    width: 30px !important;
    height: 30px !important;
  }

  .mobile-playlist-featured-actions .mobile-dashboard-outline-button {
    min-height: 32px;
    font-size: 10px;
  }

  .mobile-playlist-track-row {
    gap: 6px;
    min-height: 66px;
    padding: 7px;
    border-radius: 15px;
  }

  .mobile-playlist-row-main {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
  }

  .mobile-playlist-cover-small {
    width: 44px;
    min-width: 44px;
    border-radius: 11px;
  }

  .mobile-playlist-row-title {
    font-size: 13px;
  }

  .mobile-playlist-row-meta {
    gap: 6px;
    font-size: 8px;
  }

  .mobile-playlist-row-actions {
    gap: 5px;
  }

  .mobile-playlist-lyrics-modal {
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom));
  }

  .mobile-playlist-lyrics-sheet {
    gap: 11px;
    padding: 14px;
    border-radius: 20px;
  }

  .mobile-playlist-lyrics-head h2 {
    font-size: 23px;
  }

  .mobile-playlist-lyrics-title-row {
    grid-template-columns: minmax(0, 1fr) 27px;
    gap: 5px;
  }

  .mobile-playlist-lyrics-track-title {
    font-size: 12px;
  }

  .mobile-playlist-lyrics-title-edit {
    width: 27px;
    height: 27px;
  }

  .mobile-playlist-lyrics-meta {
    gap: 6px;
  }

  .mobile-playlist-lyrics-meta span {
    padding: 8px;
    border-radius: 11px;
  }

  .mobile-playlist-lyrics-meta small {
    font-size: 7px;
  }

  .mobile-playlist-lyrics-meta strong {
    font-size: 9px;
  }

  .mobile-playlist-lyrics-body {
    max-height: 44dvh;
    padding: 12px;
    border-radius: 14px;
    font-size: 12px;
  }

  .mobile-playlist-lyrics-copy {
    min-height: 42px;
    border-radius: 12px;
    font-size: 13px;
  }

  .mobile-playlist-lyrics-status {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 860px) {
  html {
    background: #ffffff;
    color-scheme: light;
  }

  body.mobile-account-dashboard-active {
    min-height: 100dvh;
    background-color: #ffffff;
  }

  body.mobile-account-dashboard-active::after {
    content: "";
    position: fixed;
    right: 0;
    bottom: -120px;
    left: 0;
    z-index: 18;
    height: calc(180px + env(safe-area-inset-bottom));
    background: #ffffff;
    pointer-events: none;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar {
    bottom: -8px !important;
    z-index: 20;
    isolation: isolate;
    overflow: visible !important;
    padding-bottom: calc(max(14px, env(safe-area-inset-bottom)) + 8px) !important;
    box-shadow:
      0 -12px 32px rgba(28, 50, 42, 0.1),
      0 42px 0 42px #ffffff;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -120px;
    left: 0;
    z-index: 0;
    height: 145px;
    background: #ffffff;
    pointer-events: none;
  }

  body.mobile-account-dashboard-active .mobile-dashboard-tabbar .mobile-dashboard-tab {
    z-index: 1;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active .mobile-payments-history-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  body.mobile-account-dashboard-active .mobile-payments-history-row.is-expanded {
    border-color: rgba(17, 148, 87, 0.24);
    box-shadow: 0 16px 34px rgba(34, 60, 50, 0.08);
  }

  .mobile-payments-history-summary {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto 16px;
    gap: 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 92px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
  }

  .mobile-payments-history-summary:focus-visible {
    outline: 3px solid rgba(17, 148, 87, 0.22);
    outline-offset: -3px;
  }

  .mobile-payments-history-row.is-expanded .mobile-payments-history-chevron {
    transform: rotate(135deg);
  }

  .mobile-payment-details {
    display: grid;
    gap: 14px;
    padding: 0 18px 18px;
    border-top: 1px solid #edf3f0;
  }

  .mobile-payment-details.hidden {
    display: none !important;
  }

  .mobile-payment-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding-top: 16px;
  }

  .mobile-payment-details .order-detail-item {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #e5efea;
    border-radius: 13px;
    background: #f8fcfa;
  }

  .mobile-payment-details .order-detail-item .section-kicker {
    overflow: hidden;
    margin: 0;
    color: #72807c;
    font-size: 9px;
    font-weight: 450;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-payment-details .order-detail-item p:last-child {
    overflow-wrap: anywhere;
    margin: 0;
    color: #20292b;
    font-size: 13px;
    font-weight: 425;
    line-height: 1.16;
  }

  .mobile-payment-note-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #dceee5;
    border-radius: 14px;
    background: #f1fbf6;
  }

  .mobile-payment-note-row p {
    margin: 0;
    color: #4f5e59;
    font-size: 12px;
    font-weight: 325;
    line-height: 1.3;
  }

  .mobile-payment-invoice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #bfe3d1;
    border-radius: 10px;
    background: #ffffff;
    color: #118457;
    font-size: 12px;
    font-weight: 450;
    white-space: nowrap;
  }

  .mobile-payment-invoice-button.is-loading {
    opacity: 0.66;
  }

  .mobile-payment-invoice-status {
    margin: 0;
    color: #4f5e59;
    font-size: 11px;
    font-weight: 350;
    line-height: 1.25;
  }

  .mobile-payment-invoice-status.field-error {
    color: #d92d3a;
  }
}

@media (max-width: 389px) {
  .mobile-payments-history-summary {
    grid-template-columns: 48px minmax(0, 1fr) auto 12px;
    gap: 10px;
    min-height: 80px;
    padding: 12px;
  }

  .mobile-payment-details {
    gap: 11px;
    padding: 0 12px 12px;
  }

  .mobile-payment-details-grid {
    gap: 7px;
    padding-top: 12px;
  }

  .mobile-payment-details .order-detail-item {
    padding: 9px;
    border-radius: 11px;
  }

  .mobile-payment-details .order-detail-item .section-kicker {
    font-size: 8px;
  }

  .mobile-payment-details .order-detail-item p:last-child {
    font-size: 11px;
  }

  .mobile-payment-note-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }
}

@media (max-width: 860px) {
  body {
    --mobile-action-sticky-bottom: 0px;
    --mobile-action-safe-bottom: env(safe-area-inset-bottom);
  }

  body.mobile-generator-auth-active {
    --mobile-action-sticky-bottom: 0px;
    --mobile-action-safe-bottom: env(safe-area-inset-bottom);
  }

  .form-card.mobile-form-stage-active {
    padding-bottom: calc(132px + var(--mobile-action-sticky-bottom));
  }

  .form-card.mobile-form-stage-active .wizard-footer {
    position: fixed;
    right: 0;
    bottom: var(--mobile-action-sticky-bottom);
    left: 0;
    z-index: 88;
    margin: 0;
    padding: 6px 0 calc(6px + var(--mobile-action-safe-bottom));
    background: #ffffff;
  }

  .form-card.mobile-form-stage-active .wizard-footer::before,
  .form-card.mobile-form-stage-active .wizard-footer-copy {
    display: none;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions {
    display: grid;
    grid-template-columns: minmax(94px, 0.34fr) minmax(0, 0.66fr);
    gap: 8px;
    width: min(calc(100% - 28px), 430px);
    margin: 0 auto;
    padding: 6px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions:has(#wizard-back.hidden) {
    grid-template-columns: 1fr;
    width: min(calc(100% - 72px), 340px);
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .secondary-button,
  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button {
    min-width: 0;
    min-height: 48px;
    padding: 11px 13px;
    border-radius: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button {
    box-shadow: 0 10px 20px rgba(47, 143, 87, 0.14);
  }

  .form-card.mobile-form-stage-active .wizard-footer-actions .primary-button::after {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  body.mobile-generator-auth-active {
    --mobile-dashboard-scale: 1;
  }

  body.mobile-generator-auth-active .site-footer {
    display: none;
  }

  body.mobile-generator-auth-active .form-card.mobile-form-stage-active > .section-heading {
    display: none;
  }

  body.mobile-generator-auth-active .form-card.mobile-form-stage-active {
    padding-bottom: 104px;
  }

  body.mobile-generator-auth-active.mobile-process-panel-only .form-card.mobile-form-stage-active {
    padding-bottom: 0;
  }

  body.mobile-generator-auth-active.mobile-process-panel-only .form-card.mobile-form-stage-active .mobile-brand-header {
    margin-bottom: 8px;
  }

  body.mobile-generator-auth-active.mobile-process-panel-only #generator-main-grid {
    padding-bottom: 0;
  }

  body.mobile-generator-auth-active.mobile-process-panel-only #generator-side-rail {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-actions,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-actions {
    position: fixed;
    bottom: var(--mobile-action-sticky-bottom);
    left: 50%;
    z-index: 88;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(94px, 0.34fr) minmax(0, 0.66fr);
    gap: 8px;
    width: min(calc(100% - 28px), 430px);
    margin: 0 auto;
    padding: 6px 6px calc(6px + var(--mobile-action-safe-bottom));
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 0 0 100vmax #ffffff;
    clip-path: inset(0 -100vmax);
    backdrop-filter: none;
    transform: translateX(-50%);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-edit-back,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-edit-back {
    min-height: 48px;
    padding: 0 8px;
    border-radius: 15px;
    font-size: 0.86rem;
    box-shadow: 0 8px 16px rgba(41, 73, 52, 0.06);
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .prestart-cta,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .prestart-cta {
    min-width: 0;
  }

  body.mobile-process-panel-only .status-prestart.prestart-logged-credit .status-start-button,
  body.mobile-process-panel-only .status-prestart.prestart-new-account .status-start-button {
    min-height: 48px;
    padding: 11px 13px;
    border-radius: 15px;
    font-size: 0.98rem;
    box-shadow: 0 10px 20px rgba(47, 143, 87, 0.14);
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar {
    display: none !important;
    position: fixed;
    right: auto !important;
    bottom: -8px !important;
    left: 50% !important;
    z-index: 20;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    width: min(50vw, 360px) !important;
    min-width: 168px;
    min-height: 46px;
    padding: 5px 10px calc(max(11px, env(safe-area-inset-bottom)) + 8px) !important;
    border: 0;
    border-top: 1px solid #e2e9e5;
    border-radius: 18px 18px 0 0 !important;
    background: #ffffff !important;
    box-shadow: 0 -12px 32px rgba(28, 50, 42, 0.1);
    opacity: 1 !important;
    overflow: visible !important;
    transform: translateX(-50%);
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -56px;
    left: 0;
    height: 58px;
    background: #ffffff;
    pointer-events: none;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    gap: 0;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2f383b;
    font-size: 10.4px;
    font-weight: 450 !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab-icon {
    width: 22px;
    height: 22px;
    color: currentColor;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab-icon-generator svg {
    stroke-width: 1.45;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab > span:last-child {
    display: none !important;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab.is-active {
    background: transparent;
    color: #119457;
    font-weight: 275 !important;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab.is-active > span:last-child {
    display: none !important;
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab.is-active::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
  }

  body.mobile-generator-auth-active .mobile-generator-tabbar .mobile-dashboard-tab.is-active .mobile-dashboard-tab-icon {
    background: transparent;
    color: currentColor;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active .mobile-playlist-filter {
    display: inline-flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    overflow: hidden !important;
    font-size: clamp(10.5px, 3vw, 14px) !important;
    font-weight: 200 !important;
    letter-spacing: 0 !important;
  }

  body.mobile-account-dashboard-active .mobile-playlist-filter span {
    display: inline-flex !important;
    width: max-content !important;
    max-width: none !important;
    justify-content: center !important;
    overflow: visible !important;
    font-size: inherit !important;
    font-weight: 200 !important;
    line-height: 1 !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    transform: none !important;
    transform-origin: center center !important;
  }

  body.mobile-account-dashboard-active .mobile-playlist-filter svg {
    width: 17.6px !important;
    height: 17.6px !important;
    stroke-width: 1.45 !important;
  }
}

@media (max-width: 860px) {
  #mobile-account-toggle.mobile-brand-header-account,
  .mobile-brand-header-account {
    border: 1.5px solid rgba(21, 129, 84, 0.24) !important;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.64) 42%, transparent 72%),
      linear-gradient(180deg, #ffffff 0%, #f7fffb 100%) !important;
    color: #0b7652 !important;
    box-shadow:
      0 8px 18px rgba(19, 118, 81, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.84) !important;
  }

  #mobile-account-toggle.mobile-brand-header-account[aria-expanded="true"],
  .mobile-brand-header-account[aria-expanded="true"] {
    border-color: rgba(18, 139, 91, 0.34) !important;
    background: linear-gradient(180deg, #effbf6 0%, #ffffff 100%) !important;
    color: #075f45 !important;
    box-shadow:
      0 10px 22px rgba(18, 139, 91, 0.12),
      inset 0 0 0 1px rgba(192, 231, 216, 0.72) !important;
  }

  #mobile-account-toggle.mobile-brand-header-account svg,
  .mobile-brand-header-account svg {
    stroke-width: 1.9 !important;
  }

  .mobile-account-panel {
    border-color: rgba(34, 151, 105, 0.2) !important;
    background:
      radial-gradient(circle at 16% 6%, rgba(222, 249, 239, 0.54), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #fbfffd 100%) !important;
    box-shadow:
      0 26px 52px rgba(17, 106, 77, 0.14),
      0 8px 18px rgba(17, 106, 77, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .mobile-account-panel::before {
    border-color: rgba(34, 151, 105, 0.2) !important;
    background: #ffffff !important;
  }

  .mobile-account-badge {
    border-color: rgba(27, 143, 94, 0.2) !important;
    background: #edf9f4 !important;
    color: #116b52 !important;
  }

  .mobile-account-item-icon,
  .mobile-account-upgrade,
  .mobile-account-upgrade .mobile-account-chevron {
    color: #0f7655 !important;
  }

  .mobile-account-upgrade {
    border-color: rgba(27, 143, 94, 0.26) !important;
    background:
      radial-gradient(circle at 13% 50%, rgba(211, 246, 235, 0.86), transparent 26%),
      linear-gradient(180deg, #fbfffd 0%, #effaf6 100%) !important;
  }

  .mobile-account-upgrade .mobile-account-item-icon {
    background: #dff6ed !important;
  }

  .mobile-account-login-button {
    background: linear-gradient(135deg, #07874d 0%, #25b36c 100%) !important;
    box-shadow: 0 16px 28px rgba(7, 135, 77, 0.2) !important;
  }
}

@media (max-width: 860px) {
  body:not(.account-auth-checking):not(.mobile-account-dashboard-active) #account-main-grid.account-grid-solo {
    min-height: calc(100svh - 92px) !important;
    place-items: center !important;
    align-content: center !important;
    justify-content: center !important;
    padding: clamp(18px, 6svh, 48px) 0 clamp(24px, 7svh, 58px) !important;
  }

  body:not(.account-auth-checking):not(.mobile-account-dashboard-active)
    #account-main-grid.account-grid-solo
    .account-auth-card:not(.hidden) {
    align-self: center !important;
    justify-self: center !important;
    width: min(calc(100% - 30px), 420px) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 360px) {
  body:not(.account-auth-checking):not(.mobile-account-dashboard-active) #account-main-grid.account-grid-solo {
    min-height: calc(100svh - 82px) !important;
    padding: 18px 0 28px !important;
  }
}

@media (max-width: 860px) {
  body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail {
    color: rgba(31, 36, 34, 0.42) !important;
    font-weight: 260 !important;
  }

  body.mobile-process-panel-only .status-prestart.prestart-new-account #customerEmail::placeholder {
    color: rgba(31, 36, 34, 0.32) !important;
    font-weight: 240 !important;
  }
}

@media (max-width: 860px) {
  body.mobile-login-modal-open {
    overflow: hidden;
  }

  .mobile-login-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
  }

  .mobile-login-modal.hidden {
    display: none !important;
  }

  .mobile-login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 18, 0.28);
    backdrop-filter: blur(7px);
  }

  .mobile-login-sheet {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(360px, calc(100vw - 28px));
    padding: 22px 18px 18px;
    border: 1px solid rgba(34, 151, 105, 0.2);
    border-radius: 24px;
    background:
      radial-gradient(circle at 50% 0, rgba(222, 249, 239, 0.7), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
    box-shadow:
      0 28px 64px rgba(17, 106, 77, 0.18),
      0 8px 22px rgba(17, 106, 77, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .mobile-login-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(27, 143, 94, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #49615a;
  }

  .mobile-login-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
  }

  .mobile-login-visual {
    display: grid;
    place-items: center;
    margin-top: 4px;
  }

  .mobile-login-avatar {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(171, 226, 211, 0.9);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 33%, rgba(144, 224, 203, 0.82) 0 18px, transparent 19px),
      radial-gradient(ellipse at 50% 82%, rgba(69, 190, 161, 0.88) 0 34px, transparent 35px),
      linear-gradient(180deg, rgba(246, 253, 251, 0.98), rgba(232, 248, 244, 0.92));
    color: #32aa8f;
    box-shadow:
      0 14px 28px rgba(23, 98, 82, 0.12),
      inset 0 0 0 6px rgba(255, 255, 255, 0.72);
  }

  .mobile-login-avatar svg {
    display: none;
  }

  .mobile-login-copy {
    display: grid;
    gap: 6px;
    text-align: center;
  }

  .mobile-login-copy h2 {
    margin: 0;
    color: #162522;
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1.05;
  }

  .mobile-login-copy p {
    max-width: 260px;
    margin: 0 auto;
    color: #65736f;
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.38;
  }

  .mobile-login-form {
    display: grid;
    gap: 10px;
  }

  .mobile-login-email-label {
    display: grid;
    gap: 6px;
    color: #2e6559;
    font-size: 0.76rem;
    font-weight: 450;
  }

  .mobile-login-email-label input {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(27, 143, 94, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: #273331;
    font-size: 0.92rem;
    font-weight: 320;
    outline: none;
  }

  .mobile-login-email-label input::placeholder {
    color: rgba(31, 36, 34, 0.34);
  }

  .mobile-login-primary,
  .mobile-login-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 420;
  }

  .mobile-login-primary {
    border: 0;
    background: linear-gradient(135deg, #07874d 0%, #25b36c 100%);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(7, 135, 77, 0.2);
  }

  .mobile-login-primary svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
  }

  .mobile-login-google {
    border: 1px solid rgba(33, 72, 58, 0.1);
    background: #ffffff;
    color: #25302f;
  }

  .mobile-login-google:disabled,
  .mobile-login-primary:disabled {
    opacity: 0.62;
  }

  .mobile-login-google-mark {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(33, 72, 58, 0.08);
    color: #4285f4;
    font-weight: 600;
  }

  .mobile-login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    color: #55917e;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .mobile-login-divider::before,
  .mobile-login-divider::after {
    content: "";
    height: 1px;
    background: rgba(112, 156, 143, 0.2);
  }

  .mobile-login-status {
    min-height: 0;
    margin: 0;
    color: #407464;
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.35;
    text-align: center;
  }

  .mobile-login-status.is-error {
    color: #c9434b;
  }
}

@media (max-width: 860px) {
  body.mobile-account-dashboard-active
    .mobile-dashboard-playlist-panel[data-mobile-dashboard-view-panel="playlist"] {
    width: calc(100% + 20px);
    margin-right: -10px;
    margin-left: -10px;
  }
}

@media (max-width: 360px) {
  body.mobile-account-dashboard-active
    .mobile-dashboard-playlist-panel[data-mobile-dashboard-view-panel="playlist"] {
    width: calc(100% + 16px);
    margin-right: -8px;
    margin-left: -8px;
  }
}

.legal-page-shell {
  gap: 0;
}

.legal-main {
  display: grid;
  justify-items: center;
  width: 100%;
  padding: 8px 0 10px;
}

.legal-card {
  width: min(100%, 920px);
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(190, 234, 221, 0.88);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(168, 241, 218, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 250, 0.94));
  box-shadow: 0 24px 64px rgba(41, 73, 52, 0.1);
}

.legal-card h1 {
  max-width: 780px;
  margin: 8px 0 8px;
  color: #14211b;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 320;
}

.legal-section {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(197, 236, 224, 0.78);
}

.legal-section:first-of-type {
  border-top: 0;
}

.legal-section h2 {
  margin: 0;
  color: #173526;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li {
  color: #4f6258;
  font-size: 0.98rem;
  font-weight: 320;
  line-height: 1.72;
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: var(--accent-strong);
  font-weight: 500;
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .legal-page-shell {
    width: min(100% - 20px, 520px);
    padding-top: 8px;
  }

  .legal-main {
    padding: 2px 0 0;
  }

  .legal-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .legal-card h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .legal-section {
    padding: 18px 0;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

@media (min-width: 861px) {
  #generator-main-grid > .form-card {
    border-color: rgba(91, 126, 106, 0.14);
    background:
      radial-gradient(circle at top right, rgba(235, 249, 239, 0.74), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 251, 247, 0.94));
    box-shadow: 0 16px 36px rgba(37, 67, 49, 0.08);
  }

  #song-form .wizard-progress-item,
  #song-form .form-section,
  #song-form .advanced-panel,
  #song-form .ai-step-shell,
  #song-form .ai-step-detail-panel,
  #song-form .dedication-panel,
  #song-form .sound-field-card,
  #song-form .sound-step-substyle-group,
  #song-form .lyrics-toggle-block,
  #song-form .wizard-footer {
    border-color: rgba(91, 126, 106, 0.14);
    background:
      radial-gradient(circle at top right, rgba(235, 249, 239, 0.54), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 251, 247, 0.94));
    box-shadow: 0 10px 22px rgba(41, 73, 52, 0.06);
  }

  #song-form .ai-mode-card,
  #song-form .ai-step-field-card,
  #song-form .choice-card,
  #song-form .check-card {
    border-color: rgba(91, 126, 106, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(41, 73, 52, 0.06);
  }

  #song-form .wizard-progress-item.is-active,
  #song-form .ai-mode-card:has(input:checked),
  #song-form .choice-card:has(input:checked),
  #song-form .check-card:has(input:checked) {
    border-color: rgba(47, 143, 87, 0.56);
    background: linear-gradient(180deg, rgba(249, 254, 250, 0.99), rgba(233, 247, 238, 0.94));
    box-shadow: 0 16px 28px rgba(47, 143, 87, 0.12);
  }

  #song-form .wizard-progress-item.is-complete {
    border-color: rgba(47, 143, 87, 0.28);
    background: rgba(237, 248, 243, 0.92);
    color: #24665f;
  }

  #song-form .wizard-progress-index,
  #song-form .ai-step-pill-chip,
  #song-form .ai-step-hero-chip.ai-step-pill-chip,
  #song-form .ai-mode-card-icon,
  #song-form .sound-field-chip,
  #song-form .sound-settings-button {
    background: radial-gradient(circle at center, rgba(243, 251, 245, 0.98), rgba(226, 245, 232, 0.88));
    color: var(--accent-strong);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  #song-form .ai-step-pill,
  #song-form .ai-step-general-note {
    border-color: rgba(47, 143, 87, 0.16);
    background: linear-gradient(180deg, rgba(250, 255, 251, 0.98), rgba(232, 247, 237, 0.92));
    color: var(--accent-strong);
  }

  #song-form input,
  #song-form select,
  #song-form textarea {
    border-color: rgba(72, 113, 87, 0.14);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    box-shadow:
      0 6px 18px rgba(40, 69, 49, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  #song-form input:focus,
  #song-form select:focus,
  #song-form textarea:focus {
    border-color: rgba(47, 143, 87, 0.38);
    box-shadow:
      0 0 0 4px rgba(47, 143, 87, 0.08),
      0 8px 22px rgba(40, 69, 49, 0.06);
    outline: none;
  }

  #song-form input::placeholder,
  #song-form textarea::placeholder {
    color: rgba(102, 118, 109, 0.84);
  }

  #song-form .secondary-button {
    border-color: rgba(47, 143, 87, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-strong);
    box-shadow: 0 8px 16px rgba(41, 73, 52, 0.06);
  }

  #song-form .primary-button {
    background: linear-gradient(135deg, #2f8f57, #74c98f);
    box-shadow: 0 16px 28px rgba(47, 143, 87, 0.2);
  }

  #song-form #wizard-step-lyrics h3,
  #song-form #wizard-step-sound h3,
  #song-form #advanced-fields .ai-step-hero-copy strong {
    margin: 0;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
  }

  #song-form #wizard-step-lyrics .section-copy,
  #song-form #wizard-step-sound .sound-step-hero-copy .section-copy,
  #song-form #advanced-fields .ai-step-hero-copy span {
    margin: 0;
    color: #667a70;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0;
    white-space: normal;
  }

  #song-form #wizard-step-lyrics .section-label-row,
  #song-form #wizard-step-sound .sound-step-hero-heading,
  #song-form #advanced-fields .ai-step-hero-head {
    align-items: center;
  }

  #song-form #lyrics-input-group {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #song-form .mobile-lyrics-mode {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 2px 0 -2px;
    overflow: hidden;
    border: 1px solid rgba(80, 113, 91, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(41, 73, 52, 0.04);
  }

  #song-form .mobile-lyrics-mode-button {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    gap: 9px 16px;
    justify-content: start;
    align-items: center;
    min-height: 98px;
    padding: 0 46px;
    border: 1px solid transparent;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    color: #1f2a22;
    font: inherit;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
  }

  #song-form .mobile-lyrics-mode-button + .mobile-lyrics-mode-button {
    border-left-color: rgba(80, 113, 91, 0.1);
  }

  #song-form .mobile-lyrics-mode-button:first-child {
    border-radius: 25px 0 0 25px;
  }

  #song-form .mobile-lyrics-mode-button:last-child {
    border-radius: 0 25px 25px 0;
  }

  #song-form .mobile-lyrics-mode-button.is-active {
    border-color: rgba(47, 143, 87, 0.76);
    background: linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(232, 247, 237, 0.92));
    box-shadow: 0 12px 24px rgba(47, 143, 87, 0.08);
    z-index: 1;
  }

  #song-form .mobile-lyrics-mode-icon {
    grid-area: icon;
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    justify-self: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #song-form .mobile-lyrics-mode-icon-file::before {
    content: "";
    position: absolute;
    inset: 7px 10px 6px;
    border-radius: 5px;
    background: #1f2a22;
    clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
  }

  #song-form .mobile-lyrics-mode-icon-file::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 10px;
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.94);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }

  #song-form .mobile-lyrics-mode-icon-sparkles::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #111111;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  #song-form .mobile-lyrics-mode-title {
    grid-area: title;
    margin: 0;
    color: #1f2a22;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
    align-self: end;
  }

  #song-form .mobile-lyrics-mode-copy {
    grid-area: copy;
    display: block;
    min-width: 0;
    color: #506457;
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.05;
    white-space: normal;
    align-self: start;
  }

  #song-form .mobile-lyrics-mode-indicator,
  #song-form .lyrics-toggle-block {
    display: none !important;
  }

  #song-form .mobile-lyrics-hint-card:not(.hidden) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    width: 100%;
    min-height: 94px;
    margin: 0;
    padding: 18px 20px 18px 18px;
    border: 1px solid rgba(80, 113, 91, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 252, 249, 0.98), rgba(241, 249, 243, 0.93));
    box-shadow: 0 10px 22px rgba(41, 73, 52, 0.045);
  }

  #song-form .mobile-lyrics-hint-icon {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(242, 251, 244, 0.98);
  }

  #song-form .mobile-lyrics-hint-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #111111;
    -webkit-mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
    mask: url("/twemoji-sparkles.svg") center / contain no-repeat;
  }

  #song-form .mobile-lyrics-hint-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.45;
  }

  #song-form .mobile-lyrics-hint-copy strong {
    color: var(--text);
    font-weight: 500;
  }

  #song-form .mobile-lyrics-hint-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #74897c;
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  #song-form .lyrics-input-card,
  #song-form .dedication-panel .ai-step-field-card,
  #song-form #ai-composer-fields .ai-step-general-field {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 16px 34px rgba(41, 73, 52, 0.045);
  }

  #song-form .mobile-lyrics-input-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  #song-form .mobile-lyrics-input-title-wrap {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
  }

  #song-form .mobile-lyrics-input-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(180deg, #2faa67, #1f8d4f);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  #song-form .mobile-lyrics-input-icon::before {
    content: "";
    position: absolute;
    inset: 8px 9px 7px;
    border-radius: 3px;
    background: #ffffff;
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
  }

  #song-form .mobile-lyrics-input-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 9px;
    width: 5px;
    height: 5px;
    background: rgba(47, 143, 87, 0.42);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }

  #song-form .mobile-lyrics-input-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  #song-form .mobile-lyrics-input-title {
    color: #1f2a22;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.1;
  }

  #song-form .mobile-lyrics-input-subtitle {
    overflow: hidden;
    color: #6f7c73;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #song-form .mobile-lyrics-input-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
  }

  #song-form .mobile-lyrics-input-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 0;
    color: #343f38;
    font-size: 0.78rem;
    font-weight: 350;
    line-height: 1;
    white-space: nowrap;
  }

  #song-form .mobile-lyrics-input-action:disabled {
    color: rgba(52, 63, 56, 0.42);
    cursor: default;
  }

  #song-form .mobile-lyrics-input-action-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background: currentColor;
  }

  #song-form .mobile-lyrics-input-action-icon-paste {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='10' height='12' rx='2'/%3E%3Cpath d='M6 16H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='8' width='10' height='12' rx='2'/%3E%3Cpath d='M6 16H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  #song-form .mobile-lyrics-input-action-icon-clear {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='m19 6-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='m19 6-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  #song-form .mobile-lyrics-input-field {
    display: block;
  }

  #song-form .mobile-lyrics-input-label {
    display: none;
  }

  #song-form .lyrics-text-count {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    margin: 0;
    padding-left: 10px;
    border-left: 1px solid rgba(80, 113, 91, 0.15);
    color: #7a857e;
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
  }

  #song-form .mobile-lyrics-paste-status {
    margin: -4px 0 0;
    padding: 9px 11px;
    border: 1px solid rgba(47, 143, 87, 0.13);
    border-radius: 13px;
    background: rgba(238, 249, 242, 0.86);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 350;
    line-height: 1.25;
  }

  #song-form .dedication-panel,
  #song-form #ai-composer-fields.ai-step-general-panel {
    margin: 0 26px 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  #song-form .dedication-panel .ai-step-detail-grid,
  #song-form #ai-composer-fields .ai-step-general-grid {
    gap: 16px;
  }

  #song-form .dedication-panel .ai-step-field-card > .ai-step-field-title,
  #song-form #ai-composer-fields .ai-step-general-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2a22;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.18;
  }

  #song-form .dedication-panel .ai-step-field-title-icon,
  #song-form #ai-composer-fields .ai-step-field-title-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #2faa67, #1f8d4f);
    opacity: 1;
    -webkit-mask: none;
    mask: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  #song-form .dedication-panel .ai-step-field-title-icon::before,
  #song-form #ai-composer-fields .ai-step-field-title-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #ffffff;
    -webkit-mask: var(--ai-step-icon-mask) center / contain no-repeat;
    mask: var(--ai-step-icon-mask) center / contain no-repeat;
  }

  #song-form .ai-step-optional-pill {
    margin-left: auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(238, 249, 242, 0.9);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 400;
  }

  #song-form #lyrics-input-group textarea,
  #song-form .dedication-panel .ai-step-field-card input,
  #song-form .dedication-panel .ai-step-field-card textarea,
  #song-form #ai-composer-fields .ai-step-field-control-textarea textarea {
    width: 100%;
    border: 1px solid rgba(80, 113, 91, 0.13);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: #1f2a22;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.45;
  }

  #song-form .dedication-panel .ai-step-field-card input {
    min-height: 52px;
    padding: 14px 15px;
  }

  #song-form #lyrics-input-group textarea,
  #song-form .dedication-panel .ai-step-field-card textarea,
  #song-form #ai-composer-fields .ai-step-field-control-textarea textarea {
    min-height: 156px;
    padding: 16px 16px 36px;
    resize: vertical;
  }

  #song-form #lyrics-input-group textarea {
    min-height: 230px;
  }

  #song-form #ai-composer-fields .ai-step-general-field-main textarea {
    min-height: 174px;
  }

  #song-form #lyrics-input-group textarea::placeholder,
  #song-form .dedication-panel .ai-step-field-card input::placeholder,
  #song-form .dedication-panel .ai-step-field-card textarea::placeholder,
  #song-form #ai-composer-fields .ai-step-field-control-textarea textarea::placeholder {
    color: #7b8781;
  }

  #song-form .ai-step-field-count {
    right: 12px;
    bottom: 12px;
    color: #7a857e;
    font-size: 0.78rem;
    font-weight: 300;
  }
}

@media (min-width: 861px) and (max-height: 1040px) {
  .page-shell {
    width: min(100% - 44px, 1240px);
    padding-top: clamp(14px, 2vh, 22px);
    padding-bottom: 32px;
  }

  .top-nav {
    min-height: 78px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 24px;
  }

  .top-nav-brand-image {
    height: 38px;
    max-width: min(100%, 180px);
  }

  .top-nav-links {
    min-height: 42px;
  }

  .top-nav-links a {
    min-width: 92px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .top-nav-auth {
    gap: 8px;
  }

  .auth-menu-email {
    max-width: 180px;
    font-size: 0.84rem;
  }

  .top-nav-auth .secondary-link,
  .top-nav-auth .compact-button,
  .top-nav-auth .credit-balance-pill {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  #generator-main-grid > .form-card {
    padding: 24px 26px;
    border-radius: 30px;
  }

  .form-card.generator-intro-active {
    padding: 26px 28px 24px;
    border-radius: 34px;
  }

  .form-card > .section-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .form-card > .section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.98;
  }

  .mobile-landing-screen {
    gap: 20px;
  }

  .mobile-landing-card {
    grid-template-columns: minmax(340px, 0.82fr) minmax(360px, 0.92fr);
    gap: 14px 34px;
    padding: 28px 32px;
    border-radius: 34px;
  }

  .mobile-landing-card::before {
    right: -70px;
    bottom: 44px;
    width: 360px;
    height: 200px;
  }

  .mobile-landing-card::after {
    top: 38px;
    right: 46px;
    width: 40px;
    height: 40px;
  }

  .mobile-landing-hero {
    padding: 12px;
    border-radius: 24px;
  }

  .mobile-landing-hero::after {
    inset: 10px;
    border-radius: 19px;
  }

  .mobile-landing-hero-image {
    max-width: min(100%, 500px);
    border-radius: 20px;
    filter: drop-shadow(0 20px 26px rgba(69, 113, 82, 0.16));
  }

  .mobile-landing-copy {
    gap: 10px;
    padding-top: 0;
    width: min(100%, 500px);
  }

  .mobile-landing-intro-pill {
    min-height: 32px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .mobile-landing-intro-pill img {
    width: 14px;
    height: 14px;
  }

  .mobile-landing-copy h3 {
    max-width: 10.8ch;
    font-size: clamp(2.4rem, 3.4vw, 3.45rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .mobile-landing-title-highlight::after {
    bottom: -7px;
    height: 10px;
  }

  .mobile-landing-copy-primary,
  .mobile-landing-copy-secondary {
    max-width: 35ch;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .mobile-landing-copy-secondary {
    max-width: none;
    font-size: 0.88rem;
  }

  .mobile-landing-chips {
    gap: 10px;
  }

  .mobile-landing-chip {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .mobile-landing-chip img {
    width: 20px;
    height: 20px;
  }

  .mobile-landing-start {
    grid-template-columns: 34px minmax(0, 1fr) 44px;
    width: min(100%, 340px);
    min-height: 58px;
    padding: 0 12px 0 16px;
    border-radius: 18px;
    font-size: 1.05rem;
  }

  .mobile-landing-start-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    background-size: 18px 18px;
  }

  .mobile-landing-start-spark {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  #song-form {
    gap: 14px;
  }

  #song-form .wizard-progress {
    gap: 8px;
  }

  #song-form .wizard-progress-item {
    padding: 9px 12px;
    border-radius: 14px;
  }

  #song-form .wizard-progress-index {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  #song-form .wizard-progress-label {
    font-size: 0.84rem;
  }

  #song-form .form-section,
  #song-form .advanced-panel {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  #song-form .sound-step-hero,
  #song-form .ai-step-hero {
    gap: 14px;
    padding: 16px 18px 14px;
  }

  #song-form #wizard-step-lyrics h3,
  #song-form #wizard-step-sound h3,
  #song-form #advanced-fields .ai-step-hero-copy strong {
    font-size: 1.12rem;
  }

  #song-form #wizard-step-lyrics .section-copy,
  #song-form #wizard-step-sound .sound-step-hero-copy .section-copy,
  #song-form #advanced-fields .ai-step-hero-copy span {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  #song-form .sound-step-top-grid,
  #song-form .sound-step-bottom-grid {
    gap: 14px;
    padding: 18px;
  }

  #song-form .sound-field-card {
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  #song-form .sound-field-chip {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  #song-form .sound-field-title {
    font-size: 0.9rem;
  }

  #song-form .sound-field-note {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  #song-form .ai-mode-card {
    min-height: 142px;
    padding: 18px;
    border-radius: 22px;
  }

  #song-form .ai-mode-card-body {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  #song-form .ai-mode-card-icon {
    width: 56px;
    height: 56px;
  }

  #song-form .ai-mode-card-copy strong {
    font-size: 1.02rem;
  }

  #song-form .ai-mode-card-copy span {
    font-size: 0.76rem;
  }

  #song-form .ai-step-detail-panel,
  #song-form .dedication-panel {
    gap: 16px;
    margin: 0 18px 18px;
    padding: 18px;
    border-radius: 22px;
  }

  #song-form .ai-step-field-card {
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
  }

  #song-form .wizard-footer {
    gap: 12px;
    padding: 14px 18px 14px 58px;
    border-radius: 20px;
  }

  #song-form .wizard-footer::before {
    left: 18px;
    width: 24px;
    height: 24px;
  }

  #song-form .primary-button,
  #song-form .secondary-button {
    padding: 12px 16px;
    border-radius: 15px;
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .top-nav {
    min-height: 68px;
    margin-bottom: 14px;
  }

  .form-card.generator-intro-active {
    padding: 20px 24px;
  }

  .mobile-landing-card {
    grid-template-columns: minmax(300px, 0.78fr) minmax(330px, 0.9fr);
    padding: 22px 26px;
  }

  .mobile-landing-hero-image {
    max-width: min(100%, 430px);
  }

  .mobile-landing-copy h3 {
    font-size: clamp(2.05rem, 3vw, 3rem);
  }

  .mobile-landing-chip {
    min-height: 40px;
  }

  .mobile-landing-start {
    min-height: 52px;
  }
}

body.credit-required-open {
  overflow: hidden;
}

.credit-required-popup {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 34px);
  isolation: isolate;
}

.credit-required-popup.hidden {
  display: none !important;
}

.credit-required-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(211, 246, 235, 0.54), transparent 42%),
    rgba(246, 252, 250, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.credit-required-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(390px, calc(100vw - 30px));
  padding: 30px 22px 20px;
  border: 1px solid rgba(174, 226, 213, 0.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 10%, rgba(223, 250, 244, 0.64), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 251, 0.97));
  box-shadow:
    0 28px 64px rgba(24, 83, 68, 0.18),
    0 8px 22px rgba(24, 83, 68, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  text-align: center;
}

.credit-required-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(40, 132, 111, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #277b69;
  cursor: pointer;
}

.credit-required-close svg,
.credit-required-account svg,
.credit-required-wallet svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credit-required-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.credit-required-visual {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-top: 4px;
  border: 2px solid rgba(169, 225, 213, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, rgba(234, 251, 246, 0.96), transparent 38%),
    linear-gradient(180deg, rgba(246, 253, 251, 0.98), rgba(232, 248, 244, 0.92));
  box-shadow:
    0 14px 28px rgba(23, 98, 82, 0.12),
    inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.credit-required-wallet {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: linear-gradient(180deg, #dff8e9, #f6fff9);
  color: #108141;
  box-shadow: inset 0 0 0 1px rgba(36, 142, 82, 0.12);
}

.credit-required-wallet svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.credit-required-kicker {
  margin: 2px 0 -4px;
  color: #0f7655;
  font-size: 0.74rem;
  font-weight: 450;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.credit-required-card h2 {
  margin: 0;
  color: #1e2b21;
  font-size: clamp(1.5rem, 2.4vw, 1.76rem);
  line-height: 1.08;
}

.credit-required-card p {
  margin: 0;
  max-width: 31ch;
  color: #52645b;
  font-size: 0.98rem;
  line-height: 1.5;
}

.credit-required-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border-radius: 15px;
  background: linear-gradient(135deg, #2f8f57, #74c98f);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(47, 143, 87, 0.2);
}

.credit-required-account svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

@media (max-width: 480px) {
  .credit-required-popup {
    align-items: center;
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  }

  .credit-required-card {
    width: min(342px, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
    gap: 11px;
    padding: 24px 16px 16px;
    border-radius: 24px;
    overflow: auto;
  }

  .credit-required-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .credit-required-visual {
    width: 72px;
    height: 72px;
    margin-top: 2px;
  }

  .credit-required-wallet {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .credit-required-wallet svg {
    width: 23px;
    height: 23px;
  }

  .credit-required-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .credit-required-card h2 {
    font-size: clamp(1.34rem, 6vw, 1.56rem);
  }

  .credit-required-card p {
    max-width: 29ch;
    font-size: clamp(0.9rem, 3.7vw, 0.96rem);
    line-height: 1.44;
  }

  .credit-required-account {
    min-height: 50px;
    font-size: 0.96rem;
  }
}

@media (max-width: 860px) {
  .mobile-brand-header-actions {
    display: flex !important;
    grid-column: 1;
    justify-self: start;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-brand-header-home {
    grid-column: 2;
    justify-self: center;
  }

  #mobile-account-toggle.mobile-brand-header-account,
  .mobile-brand-header-account {
    grid-column: 3;
    justify-self: end;
  }

  .mobile-brand-header-action-menu,
  .mobile-menu-panel {
    display: none !important;
  }
}

.gift-page {
  min-height: 100svh;
  margin: 0;
  color: #eef7ef;
  background:
    linear-gradient(180deg, rgba(7, 17, 17, 0.08), rgba(1, 5, 6, 0.9)),
    radial-gradient(ellipse at 50% 100%, rgba(89, 224, 148, 0.24), transparent 16%),
    linear-gradient(160deg, #071414 0%, #020708 58%, #000203 100%);
  font-family: "Inter", var(--font-sans, sans-serif);
  overflow-x: hidden;
}

.gift-page.gift-card-numarul1 {
  --gift-card-preset-name: "Numarul1";
}

.gift-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 19% 20%, rgba(109, 232, 146, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 13%, rgba(104, 236, 150, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 38%, rgba(112, 231, 154, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 61%, rgba(104, 236, 150, 0.22) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(95, 242, 159, 0.05), transparent 42%);
  content: "";
  pointer-events: none;
}

.gift-page::after {
  position: fixed;
  inset: auto 0 0;
  height: 34svh;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 84%, rgba(83, 245, 154, 0.34), transparent 28%),
    linear-gradient(180deg, transparent, rgba(1, 10, 9, 0.82));
  content: "";
  pointer-events: none;
}

.gift-page .hidden {
  display: none !important;
}

.gift-print-page {
  min-height: 100svh;
}

.gift-print-stage {
  display: grid;
  place-items: center;
  min-height: 100svh;
  width: 100%;
  padding: max(22px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
}

.gift-print-sheet {
  display: grid;
  width: min(100% - 28px, 980px);
  gap: 28px;
  margin: 0 auto;
}

.gift-print-side {
  display: grid;
  place-items: center;
  min-height: min(760px, calc(100svh - 44px));
  padding: 24px;
  border: 1px solid rgba(158, 230, 183, 0.16);
  border-radius: 30px;
  background: rgba(2, 9, 9, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gift-print-card-shell {
  display: grid;
  place-items: center;
  width: 100%;
}

.gift-print-front .gift-sealed-card {
  width: min(430px, 100%);
}

.gift-print-open-button {
  cursor: default;
  user-select: none;
}

.gift-print-back-card {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(430px, 100%);
  min-height: clamp(584px, 86svh, 666px);
  padding: clamp(34px, 6vw, 48px) 30px;
  border: 1px solid rgba(176, 242, 185, 0.58);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(ellipse at 50% 34%, rgba(87, 229, 146, 0.26), transparent 28%),
    radial-gradient(ellipse at 50% 100%, rgba(77, 225, 135, 0.18), transparent 32%),
    linear-gradient(155deg, rgba(19, 31, 29, 0.96), rgba(2, 12, 13, 0.98) 54%, rgba(0, 5, 6, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.68),
    0 0 44px rgba(90, 223, 137, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
}

.gift-print-back-card::before,
.gift-print-back-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.gift-print-back-card::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(120, 255, 160, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 14%, rgba(104, 236, 150, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 52%, rgba(109, 228, 148, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 78%, rgba(109, 228, 148, 0.2) 0 1px, transparent 2px);
}

.gift-print-back-card::after {
  inset: auto 12% 38px;
  height: 96px;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 242, 157, 0.38), transparent 70%);
  filter: blur(16px);
  opacity: 0.7;
}

.gift-print-back-kicker {
  color: rgba(219, 252, 226, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gift-print-qr {
  width: min(236px, 62vw);
  margin: 34px 0 28px;
  padding: 16px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(113, 237, 153, 0.24);
}

.gift-print-qr svg {
  display: block;
  width: 100%;
  height: auto;
  shape-rendering: crispEdges;
}

.gift-print-back-card h2 {
  margin: 0;
  color: #f1f4ed;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.45rem, 10vw, 3.45rem);
  font-weight: 400;
  line-height: 0.98;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.45);
}

.gift-print-back-card p {
  max-width: 25ch;
  margin: 16px auto 0;
  color: rgba(236, 248, 237, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.gift-print-link {
  display: block;
  width: min(100%, 310px);
  margin-top: 22px;
  color: rgba(232, 248, 235, 0.52);
  font-size: 0.72rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gift-card-numarul2 .gift-print-side {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.54);
}

.gift-card-numarul2 .gift-print-back-card {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 78, 158, 0.18), transparent 18%),
    radial-gradient(ellipse at 50% 70%, rgba(71, 205, 205, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 255, 253, 0.96)),
    #ffffff;
  color: #1f254f;
  box-shadow:
    0 30px 80px rgba(64, 88, 110, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.gift-card-numarul2 .gift-print-back-card::before {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 104, 163, 0.3) 0 4px, transparent 5px),
    radial-gradient(circle at 82% 18%, rgba(112, 134, 214, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 18% 74%, rgba(36, 166, 164, 0.22) 0 5px, transparent 6px),
    linear-gradient(180deg, rgba(255, 246, 252, 0.68), transparent 48%);
}

.gift-card-numarul2 .gift-print-back-card::after {
  background: radial-gradient(ellipse at 50% 50%, rgba(244, 104, 176, 0.18), transparent 70%);
}

.gift-card-numarul2 .gift-print-back-kicker,
.gift-card-numarul2 .gift-print-back-card p,
.gift-card-numarul2 .gift-print-link {
  color: rgba(35, 43, 83, 0.58);
}

.gift-card-numarul2 .gift-print-back-card h2 {
  color: #16184c;
  text-shadow: 0 8px 18px rgba(26, 24, 76, 0.12);
}

.gift-card-numarul2 .gift-print-qr {
  box-shadow:
    0 24px 48px rgba(93, 110, 150, 0.16),
    0 0 36px rgba(244, 91, 168, 0.14);
}

.gift-card-numarul3 .gift-print-side {
  border-color: rgba(225, 190, 151, 0.22);
  background: rgba(8, 6, 5, 0.48);
}

.gift-card-numarul3 .gift-print-back-card {
  border-color: rgba(225, 190, 151, 0.48);
  background:
    linear-gradient(160deg, rgba(255, 236, 210, 0.08), transparent 20%),
    radial-gradient(ellipse at 50% 36%, rgba(223, 178, 122, 0.2), transparent 34%),
    linear-gradient(155deg, rgba(30, 27, 24, 0.95), rgba(9, 8, 7, 0.98) 54%, rgba(3, 3, 3, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.68),
    0 0 44px rgba(229, 190, 139, 0.14),
    inset 0 0 0 1px rgba(255, 232, 202, 0.04);
}

.gift-card-numarul3 .gift-print-back-card::before {
  background:
    radial-gradient(circle at 36% 16%, rgba(255, 221, 181, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 17%, rgba(255, 205, 143, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 17% 42%, rgba(255, 218, 174, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 54%, rgba(255, 218, 174, 0.24) 0 2px, transparent 3px);
}

.gift-card-numarul3 .gift-print-back-card::after {
  background: radial-gradient(ellipse at 50% 50%, rgba(229, 190, 139, 0.28), transparent 70%);
}

.gift-card-numarul3 .gift-print-back-kicker,
.gift-card-numarul3 .gift-print-back-card p,
.gift-card-numarul3 .gift-print-link {
  color: rgba(247, 229, 209, 0.62);
}

.gift-card-numarul3 .gift-print-back-card h2 {
  color: #fff2e2;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 22px rgba(0, 0, 0, 0.52);
}

.gift-card-numarul3 .gift-print-qr {
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(241, 210, 173, 0.16);
}

@media screen and (max-width: 520px) {
  .gift-print-page {
    overflow-x: hidden;
  }

  .gift-print-page .gift-print-stage {
    padding: max(14px, env(safe-area-inset-top)) 8px max(20px, env(safe-area-inset-bottom));
  }

  .gift-print-page .gift-print-sheet {
    width: 100%;
    gap: 16px;
  }

  .gift-print-page .gift-print-side {
    min-height: auto;
    padding: 10px 6px;
    border-radius: 22px;
    overflow: hidden;
  }

  .gift-print-page .gift-print-front .gift-sealed-card,
  .gift-print-page .gift-print-back-card {
    width: min(100%, 350px);
    min-height: min(640px, calc(100svh - 108px));
    border-radius: 28px;
  }

  .gift-print-page .gift-print-front .gift-sealed-card {
    padding: 28px 16px 20px;
  }

  .gift-print-page .gift-note-mark {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    font-size: 2.58rem;
  }

  .gift-print-page .gift-sealed-card h1 {
    max-width: 7.2ch;
    font-size: clamp(3rem, 15.2vw, 4rem);
    line-height: 0.92;
  }

  .gift-print-page .gift-sealed-card p {
    margin-top: 12px;
    font-size: clamp(1.08rem, 5.7vw, 1.34rem);
  }

  .gift-print-page .gift-box-art {
    width: min(252px, 72vw);
    height: clamp(210px, 35svh, 244px);
    margin: 18px auto 22px;
    transform: scale(0.9);
    transform-origin: center top;
  }

  .gift-print-page .gift-print-front .gift-open-button {
    width: calc(100% - 20px);
    max-width: 286px;
    min-height: 62px;
    gap: 12px;
    padding: 0 18px;
    font-size: clamp(1.02rem, 5vw, 1.18rem);
    line-height: 1;
    white-space: nowrap;
  }

  .gift-print-page .gift-print-front .gift-open-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .gift-print-page .gift-print-back-card {
    padding: 30px 22px;
  }

  .gift-print-page .gift-print-qr {
    width: min(212px, 62vw);
    margin: 28px 0 24px;
    padding: 14px;
    border-radius: 22px;
  }

  .gift-print-page .gift-print-back-card h2 {
    font-size: clamp(2.25rem, 10.6vw, 3rem);
  }

  .gift-print-page .gift-print-back-card p {
    font-size: 0.94rem;
  }

  .gift-print-page .gift-print-link {
    max-width: 100%;
    font-size: 0.66rem;
  }
}

@media print {
  html,
  body.gift-print-page {
    width: 210mm;
    min-height: 0;
    margin: 0 !important;
    background: #ffffff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .gift-print-page *,
  .gift-print-page *::before,
  .gift-print-page *::after {
    box-sizing: border-box;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.gift-print-page::before,
  body.gift-print-page::after,
  .gift-print-page .gift-state-panel {
    display: none !important;
  }

  .gift-print-stage,
  .gift-print-sheet {
    display: block !important;
    width: 210mm;
    min-height: 0;
    margin: 0;
    padding: 0 !important;
    background: transparent !important;
  }

  .gift-print-side {
    display: grid;
    place-items: center;
    width: 210mm;
    height: 297mm;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    break-after: page;
    page-break-after: always;
  }

  .gift-print-side:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .gift-print-card-shell {
    width: 100%;
    height: 100%;
  }

  .gift-print-front .gift-sealed-card,
  .gift-print-back-card {
    width: 92mm;
    min-height: 136mm;
    max-height: 136mm;
    box-shadow:
      0 0 0 0.25mm rgba(0, 0, 0, 0.08),
      inset 0 0 0 0.2mm rgba(255, 255, 255, 0.08) !important;
  }

  .gift-print-front .gift-sealed-card {
    align-content: start;
    padding: 7mm 5mm 6mm;
    border-radius: 9mm;
  }

  .gift-print-back-card {
    padding: 10mm 7mm;
    border-radius: 9mm;
  }

  .gift-print-front .gift-note-mark {
    width: 12mm;
    height: 12mm;
    margin-bottom: 0;
    font-size: 10mm;
  }

  .gift-print-front .gift-sealed-card h1 {
    max-width: 10ch;
    font-size: 10.8mm;
    line-height: 0.92;
  }

  .gift-print-front .gift-sealed-card p {
    margin-top: 2mm;
    font-size: 4.55mm;
  }

  .gift-print-front .gift-box-art {
    width: 59mm;
    height: 53mm;
    margin: 4mm auto 4mm;
    transform: scale(0.86);
    transform-origin: center top;
  }

  .gift-print-front .gift-open-button {
    width: calc(100% - 16mm);
    min-height: 12.2mm;
    margin-top: 0;
    border-radius: 999px;
    gap: 3.2mm;
    font-size: 4mm;
    line-height: 1;
    white-space: nowrap;
  }

  .gift-print-front .gift-open-icon {
    width: 5.2mm;
    height: 5.2mm;
    flex: 0 0 5.2mm;
  }

  .gift-print-back-kicker {
    font-size: 2.7mm;
  }

  .gift-print-qr {
    width: 56mm;
    margin: 10mm 0 8mm;
    padding: 3.5mm;
    border-radius: 6mm;
    box-shadow: none !important;
  }

  .gift-print-back-card h2 {
    font-size: 9mm;
  }

  .gift-print-back-card p {
    margin-top: 4mm;
    font-size: 3.6mm;
  }

  .gift-print-link {
    width: 72mm;
    margin-top: 5mm;
    font-size: 2.45mm;
  }
}

.gift-stage {
  display: grid;
  place-items: center;
  min-height: 100svh;
  width: 100%;
  padding: max(22px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
}

.gift-state-panel,
.gift-sealed-card,
.gift-opened-screen {
  width: min(430px, calc(100vw - 32px));
}

.gift-state-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px 24px;
  border: 1px solid rgba(139, 242, 170, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(16, 30, 30, 0.94), rgba(2, 8, 9, 0.96)),
    #061010;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.58),
    0 0 36px rgba(88, 225, 143, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.gift-state-panel p {
  margin: 0;
  color: rgba(232, 244, 234, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.gift-error-panel h1 {
  margin: 0;
  color: #f1f5ef;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.gift-error-icon,
.gift-loader-orb {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(179, 247, 193, 0.5);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(28, 43, 39, 0.94), rgba(7, 16, 16, 0.96));
  color: #83f2a8;
  box-shadow: 0 0 32px rgba(104, 234, 150, 0.24);
  font-size: 2rem;
}

.gift-loader-orb::before {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(129, 238, 166, 0.18);
  border-top-color: #7cf2a3;
  border-radius: inherit;
  animation: gift-loader-spin 0.9s linear infinite;
  content: "";
}

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

.gift-sealed-card {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: clamp(584px, 86svh, 666px);
  padding: clamp(34px, 6vw, 48px) 20px 30px;
  border: 1px solid rgba(176, 242, 185, 0.58);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), transparent 18%),
    radial-gradient(ellipse at 50% 76%, rgba(78, 227, 135, 0.22), transparent 32%),
    linear-gradient(155deg, rgba(23, 32, 29, 0.9), rgba(1, 12, 13, 0.96) 44%, rgba(0, 5, 6, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.68),
    0 0 44px rgba(90, 223, 137, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.gift-sealed-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 9%, rgba(120, 255, 160, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 44%, rgba(118, 238, 155, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 48%, rgba(109, 228, 148, 0.24) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(92, 249, 152, 0.06), transparent 42%);
  content: "";
}

.gift-sealed-card::after {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 36px;
  z-index: -1;
  height: 86px;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 242, 157, 0.42), transparent 70%);
  filter: blur(12px);
  opacity: 0.72;
  content: "";
}

.gift-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  color: #7cf09f;
  opacity: 0.82;
}

.gift-spark::before,
.gift-spark::after {
  position: absolute;
  inset: 50% auto auto 50%;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(124, 240, 159, 0.72);
  content: "";
  transform: translate(-50%, -50%);
}

.gift-spark::before {
  width: 2px;
  height: 14px;
}

.gift-spark::after {
  width: 14px;
  height: 2px;
}

.gift-spark-1 {
  top: 78px;
  left: 40%;
}

.gift-spark-2 {
  right: 18%;
  top: 134px;
  transform: scale(0.62);
}

.gift-spark-3 {
  left: 13%;
  bottom: 235px;
  transform: scale(0.5);
}

.gift-note-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 2px;
  color: #7ff1a5;
  font-size: 3.15rem;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(122, 241, 165, 0.7),
    0 3px 14px rgba(0, 0, 0, 0.4);
}

.gift-sealed-card h1 {
  margin: 0;
  color: #f1f4ed;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.1rem, 12vw, 4.25rem);
  font-weight: 400;
  line-height: 0.95;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.45);
}

.gift-sealed-card p {
  margin: 16px 0 0;
  color: rgba(244, 248, 244, 0.88);
  font-size: clamp(1.18rem, 5vw, 1.48rem);
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
}

.gift-page .gift-tags {
  justify-content: center;
  max-width: 330px;
  margin-top: 14px;
  gap: 8px;
}

.gift-page .gift-tag {
  min-height: 28px;
  padding: 5px 10px;
  border-color: rgba(139, 242, 170, 0.25);
  background: rgba(4, 21, 18, 0.64);
  color: rgba(231, 249, 234, 0.78);
  font-size: 0.74rem;
  font-weight: 500;
}

.gift-box-art {
  position: relative;
  width: min(282px, 72vw);
  height: 258px;
  margin: 22px auto 28px;
  transform: perspective(820px) rotateX(3deg);
}

.gift-box-body,
.gift-box-lid,
.gift-box-ribbon-vertical,
.gift-box-ribbon-horizontal,
.gift-box-bow,
.gift-box-bow-knot,
.gift-box-tag {
  position: absolute;
  display: block;
}

.gift-box-body {
  left: 50%;
  bottom: 14px;
  width: 214px;
  height: 144px;
  border: 1px solid rgba(194, 255, 210, 0.12);
  border-radius: 14px 14px 18px 18px;
  background:
    linear-gradient(106deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(10, 31, 29, 0.95), rgba(22, 42, 38, 0.98) 46%, rgba(5, 16, 17, 0.98));
  box-shadow:
    0 34px 44px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -22px 38px rgba(0, 0, 0, 0.26);
  transform: translateX(-50%);
}

.gift-box-lid {
  left: 50%;
  top: 82px;
  width: 238px;
  height: 58px;
  border: 1px solid rgba(203, 255, 219, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(19, 43, 39, 0.98), rgba(25, 52, 46, 0.98) 50%, rgba(7, 21, 21, 0.98));
  box-shadow:
    0 16px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateX(-50%) skewY(1deg);
}

.gift-box-ribbon-vertical {
  left: 50%;
  top: 78px;
  bottom: 12px;
  width: 42px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(30, 104, 58, 0.94), #8ef0a6 50%, rgba(15, 83, 50, 0.98));
  box-shadow:
    0 0 24px rgba(104, 238, 149, 0.34),
    inset 9px 0 18px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.gift-box-ribbon-horizontal {
  left: 50%;
  top: 115px;
  width: 232px;
  height: 26px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #98f2aa, #1f8c4d 54%, #095333);
  box-shadow:
    0 0 22px rgba(95, 231, 139, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateX(-50%);
}

.gift-box-bow {
  top: 38px;
  width: 96px;
  height: 64px;
  border: 1px solid rgba(186, 255, 200, 0.18);
  background:
    radial-gradient(ellipse at 38% 38%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #9ff4b2, #176a42 62%, #082f25);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.36),
    0 0 22px rgba(95, 234, 139, 0.24),
    inset -12px -10px 24px rgba(0, 0, 0, 0.28);
}

.gift-box-bow-left {
  left: 40px;
  border-radius: 76% 24% 68% 32% / 60% 38% 62% 40%;
  transform: rotate(-18deg);
}

.gift-box-bow-right {
  right: 40px;
  border-radius: 24% 76% 32% 68% / 38% 60% 40% 62%;
  transform: rotate(18deg) scaleX(-1);
}

.gift-box-bow-knot {
  left: 50%;
  top: 74px;
  width: 54px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, #96efa9, #155d3d 72%);
  box-shadow:
    0 12px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.gift-box-tag {
  right: 16px;
  top: 111px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 70px;
  border: 1px solid rgba(197, 255, 211, 0.3);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(123, 245, 160, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(18, 31, 30, 0.98), rgba(1, 8, 10, 0.98));
  color: #7cf1a2;
  font-size: 2.1rem;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.36),
    0 0 22px rgba(95, 233, 140, 0.22);
}

.gift-box-tag::before {
  position: absolute;
  top: -22px;
  left: 21px;
  width: 24px;
  height: 28px;
  border-right: 2px solid rgba(172, 131, 83, 0.84);
  border-radius: 0 0 18px 0;
  content: "";
}

.gift-open-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(350px, 100%);
  min-height: 72px;
  margin-top: auto;
  border: 1px solid rgba(201, 255, 213, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(100deg, #95f6ac 0%, #66c680 48%, #19633e 100%);
  color: #0a2119;
  box-shadow:
    0 16px 28px rgba(46, 177, 91, 0.24),
    0 0 32px rgba(116, 245, 159, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  font-size: clamp(1.1rem, 4.8vw, 1.32rem);
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.gift-open-button:hover {
  box-shadow:
    0 19px 34px rgba(46, 177, 91, 0.3),
    0 0 40px rgba(116, 245, 159, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.gift-open-button:active {
  transform: translateY(1px) scale(0.99);
}

.gift-open-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.gift-open-icon::before {
  position: absolute;
  left: -5px;
  top: -8px;
  width: 30px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.gift-open-icon::after {
  position: absolute;
  left: 9px;
  top: -11px;
  width: 2px;
  height: 33px;
  background: currentColor;
  box-shadow: -10px 10px 0 -8px currentColor, 10px 10px 0 -8px currentColor;
  content: "";
}

.gift-is-unopened #gift-content,
.gift-is-opened #gift-hero-card {
  display: none !important;
}

.gift-is-opened #gift-content:not(.hidden),
.gift-opened-screen {
  display: grid;
}

.gift-opened-screen {
  justify-items: stretch;
  align-content: start;
  gap: 20px;
  min-height: min(100svh, 860px);
  padding: 38px 0 22px;
}

.gift-opened-mark {
  position: relative;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 4px;
  border: 1px solid rgba(241, 247, 234, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, rgba(130, 247, 165, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(31, 43, 38, 0.94), rgba(8, 15, 16, 0.98));
  color: #83f3a5;
  box-shadow:
    0 0 32px rgba(116, 240, 158, 0.2),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
  font-size: 3.4rem;
  line-height: 1;
}

.gift-opened-mark::before {
  position: absolute;
  inset: -52px;
  z-index: -1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(197, 255, 208, 0.15) 0deg 1deg,
    transparent 1deg 8deg
  );
  border-radius: inherit;
  mask-image: radial-gradient(circle, transparent 0 34%, #000 35% 62%, transparent 63%);
  content: "";
  opacity: 0.58;
}

.gift-opened-screen h1 {
  margin: 0;
  color: rgba(243, 246, 239, 0.92);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.58rem, 6.6vw, 2.92rem);
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.42);
}

.gift-opened-screen h1::after {
  display: block;
  width: 100%;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, rgba(168, 239, 185, 0.18), transparent);
  content: "";
}

.gift-sender-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: rgba(231, 238, 232, 0.78);
  font-size: clamp(1.02rem, 4vw, 1.18rem);
}

.gift-sender-row strong {
  color: #77ee9b;
  font-weight: 700;
}

.gift-sender-icon {
  position: relative;
  width: 22px;
  height: 22px;
  color: #68d889;
}

.gift-sender-icon::before,
.gift-sender-icon::after {
  position: absolute;
  left: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.gift-sender-icon::before {
  top: 1px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.gift-sender-icon::after {
  bottom: 1px;
  width: 20px;
  height: 11px;
  border-radius: 12px 12px 5px 5px;
}

.gift-message-card {
  position: relative;
  display: grid;
  min-height: 118px;
  padding: 30px 52px 28px;
  border: 1px solid rgba(165, 225, 191, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(17, 29, 31, 0.92), rgba(4, 11, 13, 0.96)),
    #071011;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gift-quote-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  color: #6fe590;
  font-family: Georgia, serif;
  font-size: 4.1rem;
  line-height: 1;
  opacity: 0.82;
}

.gift-message {
  margin: 0;
  color: rgba(247, 249, 245, 0.94);
  font-family: "Inter", var(--font-sans, sans-serif);
  font-size: clamp(1.05rem, 4.2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
  white-space: pre-wrap;
}

.gift-message-heart {
  position: absolute;
  right: 22px;
  bottom: 19px;
  color: #74e596;
  font-size: 1.55rem;
  text-shadow: 0 0 18px rgba(116, 229, 150, 0.42);
}

.gift-player-card {
  display: grid;
  gap: 16px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(166, 226, 195, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(16, 29, 31, 0.96), rgba(3, 10, 12, 0.98) 68%),
    #071011;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gift-player-top {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.gift-page .gift-cover-shell {
  position: relative;
  display: block;
  width: 124px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(152, 235, 183, 0.22);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(92, 232, 140, 0.12);
}

.gift-page .gift-cover-image,
.gift-cover-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-cover-fallback {
  background:
    radial-gradient(ellipse at 50% 88%, rgba(129, 245, 168, 0.7), transparent 30%),
    linear-gradient(138deg, rgba(18, 55, 60, 0.4), transparent 34%),
    linear-gradient(22deg, #071317 0 28%, #102b2c 29% 36%, #071111 37% 100%),
    linear-gradient(180deg, #1d5e5c, #03080a);
}

.gift-cover-fallback::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 30%, rgba(112, 244, 158, 0.52) 40%, transparent 54%),
    linear-gradient(160deg, transparent 38%, rgba(30, 80, 84, 0.88) 39% 53%, transparent 54%);
  content: "";
}

.gift-track-copy {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.gift-track-copy h2 {
  margin: 0;
  color: rgba(249, 250, 246, 0.96);
  font-size: clamp(1.38rem, 5.8vw, 1.72rem);
  font-weight: 600;
  line-height: 1.12;
}

.gift-track-copy p {
  margin: 0;
  color: rgba(226, 231, 225, 0.72);
  font-size: clamp(1rem, 4.4vw, 1.24rem);
  line-height: 1.22;
}

.gift-waveform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  height: 38px;
  margin-top: 14px;
  width: 100%;
  color: #7cf09d;
  filter: drop-shadow(0 0 10px rgba(124, 240, 157, 0.32));
}

.gift-waveform span {
  flex: 0 0 3px;
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(147, 247, 172, 0.2), currentColor, rgba(147, 247, 172, 0.2));
  opacity: 0.86;
  transform: scaleY(0.9);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform;
}

.gift-waveform span:nth-child(2),
.gift-waveform span:nth-child(11) {
  height: 24px;
}

.gift-waveform span:nth-child(3),
.gift-waveform span:nth-child(7),
.gift-waveform span:nth-child(10) {
  height: 31px;
}

.gift-waveform span:nth-child(5),
.gift-waveform span:nth-child(8) {
  height: 12px;
}

.gift-waveform span:nth-child(6),
.gift-waveform span:nth-child(12),
.gift-waveform span:nth-child(18),
.gift-waveform span:nth-child(24),
.gift-waveform span:nth-child(30) {
  height: 28px;
}

.gift-waveform span:nth-child(13),
.gift-waveform span:nth-child(21),
.gift-waveform span:nth-child(29) {
  height: 10px;
}

.gift-waveform span:nth-child(14),
.gift-waveform span:nth-child(22),
.gift-waveform span:nth-child(31) {
  height: 18px;
}

.gift-waveform span:nth-child(15),
.gift-waveform span:nth-child(19),
.gift-waveform span:nth-child(27) {
  height: 33px;
}

.gift-waveform span:nth-child(16),
.gift-waveform span:nth-child(25),
.gift-waveform span:nth-child(32) {
  height: 22px;
}

.gift-waveform span:nth-child(17),
.gift-waveform span:nth-child(23),
.gift-waveform span:nth-child(28) {
  height: 14px;
}

.gift-waveform span:nth-child(20),
.gift-waveform span:nth-child(26),
.gift-waveform span:nth-child(35) {
  height: 30px;
}

.gift-waveform span:nth-child(33),
.gift-waveform span:nth-child(34),
.gift-waveform span:nth-child(36) {
  height: 12px;
}

.gift-waveform.is-playing span {
  animation: gift-wave-pulse 820ms ease-in-out infinite;
  opacity: 1;
}

.gift-waveform.is-playing span:nth-child(2) {
  animation-duration: 670ms;
  animation-delay: -180ms;
}

.gift-waveform.is-playing span:nth-child(3) {
  animation-duration: 930ms;
  animation-delay: -340ms;
}

.gift-waveform.is-playing span:nth-child(4) {
  animation-duration: 720ms;
  animation-delay: -90ms;
}

.gift-waveform.is-playing span:nth-child(5) {
  animation-duration: 1040ms;
  animation-delay: -420ms;
}

.gift-waveform.is-playing span:nth-child(6) {
  animation-duration: 760ms;
  animation-delay: -260ms;
}

.gift-waveform.is-playing span:nth-child(7) {
  animation-duration: 880ms;
  animation-delay: -520ms;
}

.gift-waveform.is-playing span:nth-child(8) {
  animation-duration: 690ms;
  animation-delay: -140ms;
}

.gift-waveform.is-playing span:nth-child(9) {
  animation-duration: 960ms;
  animation-delay: -390ms;
}

.gift-waveform.is-playing span:nth-child(10) {
  animation-duration: 740ms;
  animation-delay: -230ms;
}

.gift-waveform.is-playing span:nth-child(11) {
  animation-duration: 910ms;
  animation-delay: -610ms;
}

.gift-waveform.is-playing span:nth-child(12) {
  animation-duration: 800ms;
  animation-delay: -300ms;
}

.gift-waveform.is-playing span:nth-child(n + 13) {
  animation-duration: 860ms;
  animation-delay: -220ms;
}

.gift-waveform.is-playing span:nth-child(3n + 13) {
  animation-duration: 690ms;
  animation-delay: -430ms;
}

.gift-waveform.is-playing span:nth-child(4n + 14) {
  animation-duration: 1020ms;
  animation-delay: -610ms;
}

.gift-waveform.is-playing span:nth-child(5n + 15) {
  animation-duration: 760ms;
  animation-delay: -120ms;
}

@keyframes gift-wave-pulse {
  0%,
  100% {
    transform: scaleY(0.38);
  }

  34% {
    transform: scaleY(1.16);
  }

  58% {
    transform: scaleY(0.72);
  }

  78% {
    transform: scaleY(1.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gift-waveform.is-playing span {
    animation: none;
    transform: scaleY(1);
  }
}

.gift-player-bar {
  position: relative;
  width: 100%;
  height: 30px;
  margin-top: -2px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: grab;
  outline: 0;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.gift-player-bar::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: rgba(101, 122, 124, 0.42);
  content: "";
  transform: translateY(-50%);
}

.gift-player-bar:focus-visible::before {
  box-shadow: 0 0 0 4px rgba(113, 237, 153, 0.18);
}

.gift-player-bar.is-seeking {
  cursor: grabbing;
}

.gift-player-bar.is-seeking::before {
  background: rgba(122, 146, 139, 0.5);
}

.gift-player-progress {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 0%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7bea99, #5ddf88);
  box-shadow: 0 0 16px rgba(107, 232, 142, 0.4);
  transform: translateY(-50%);
}

.gift-player-progress::after {
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #7ded9d;
  box-shadow: 0 0 18px rgba(125, 237, 157, 0.52);
  content: "";
  transform: translateY(-50%);
}

.gift-player-time-row {
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
  color: rgba(224, 230, 226, 0.64);
  font-size: 0.98rem;
  line-height: 1;
}

.gift-player-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 10px;
  margin-top: 10px;
}

.gift-control-button,
.gift-play-button {
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(238, 242, 237, 0.9);
}

.gift-control-button {
  width: 48px;
  height: 48px;
  opacity: 0.94;
  cursor: pointer;
  transition:
    color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease,
    filter 160ms ease;
}

.gift-control-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.gift-control-button:not(:disabled):hover {
  filter: drop-shadow(0 0 12px rgba(116, 229, 150, 0.24));
  transform: translateY(-1px);
}

.gift-control-button::before,
.gift-control-button::after {
  position: absolute;
  content: "";
}

.gift-control-download::before {
  top: 10px;
  left: 50%;
  width: 14px;
  height: 17px;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(38% 0, 62% 0, 62% 52%, 84% 52%, 50% 86%, 16% 52%, 38% 52%);
  transform: translateX(-50%);
}

.gift-control-download::after {
  left: 50%;
  top: 27px;
  width: 16px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 5px 5px;
  transform: translateX(-50%);
}

.gift-control-download span,
.gift-control-download i {
  display: none;
}

.gift-control-download {
  width: 34px;
  height: 34px;
  color: rgba(238, 242, 237, 0.9);
}

.gift-control-download:not(:disabled)::before {
  box-shadow: 0 0 12px rgba(116, 229, 150, 0.18);
}

.gift-control-download:not(:disabled) {
  color: rgba(241, 247, 241, 0.95);
}

.gift-control-download:not(:disabled)::after {
  filter: drop-shadow(0 0 7px rgba(116, 229, 150, 0.18));
}

.gift-control-download:not(:disabled):active {
  transform: translateY(1px) scale(0.96);
}

.gift-control-prev::before,
.gift-control-next::before {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.gift-control-prev::before {
  border-right: 14px solid currentColor;
  transform: translateX(3px);
}

.gift-control-prev::after {
  left: 14px;
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
}

.gift-control-next::before {
  border-left: 14px solid currentColor;
  transform: translateX(-3px);
}

.gift-control-next::after {
  right: 14px;
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
}

.gift-control-heart::before {
  color: rgba(238, 242, 237, 0.82);
  font-size: 2.05rem;
  line-height: 1;
  content: "\2661";
  transition:
    color 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.gift-control-heart.is-copied::before {
  color: #74e596;
  content: "\2665";
  text-shadow: 0 0 18px rgba(116, 229, 150, 0.45);
  transform: scale(1.08);
}

.gift-play-button {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(171, 255, 195, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, rgba(163, 255, 187, 0.42), transparent 48%),
    linear-gradient(145deg, #3faa65, #143e2d 72%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(113, 239, 154, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.gift-play-button:hover {
  box-shadow:
    0 21px 45px rgba(0, 0, 0, 0.46),
    0 0 40px rgba(113, 239, 154, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.gift-play-button span {
  position: relative;
  width: 28px;
  height: 34px;
}

.gift-play-button span::before {
  position: absolute;
  left: 7px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #f4fff5;
  content: "";
}

.gift-play-button.is-playing span::before,
.gift-play-button.is-playing span::after {
  position: absolute;
  top: 2px;
  width: 8px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f4fff5;
  content: "";
}

.gift-play-button.is-playing span::before {
  left: 4px;
}

.gift-play-button.is-playing span::after {
  right: 4px;
}

.gift-opened-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.gift-soft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(136, 238, 168, 0.24);
  border-radius: 999px;
  background: rgba(8, 26, 22, 0.7);
  color: #94f0aa;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.gift-copy-feedback {
  min-height: 20px;
  margin: -4px 0 0;
  color: #94f0aa;
  font-size: 0.88rem;
  text-align: center;
}

.gift-copy-feedback.is-muted {
  color: rgba(235, 242, 236, 0.62);
}

.gift-copy-feedback.is-neutral {
  color: rgba(255, 255, 255, 0.92);
}

.gift-page #gift-created-at,
.gift-page #gift-details-grid,
.gift-page #gift-lyrics-card {
  display: none !important;
}

.gift-page.gift-is-opened {
  height: 100svh;
  overflow: hidden;
}

.gift-is-opened .gift-stage {
  align-items: center;
  min-height: 100svh;
  height: 100svh;
  padding: max(8px, env(safe-area-inset-top)) 12px max(8px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.gift-is-opened .gift-opened-screen {
  align-content: center;
  gap: clamp(8px, 1.8svh, 18px);
  width: min(430px, calc(100vw - 24px));
  height: calc(100svh - max(8px, env(safe-area-inset-top)) - max(8px, env(safe-area-inset-bottom)));
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.gift-is-opened .gift-opened-mark {
  width: clamp(54px, 11svh, 86px);
  height: clamp(54px, 11svh, 86px);
  margin-bottom: clamp(3px, 0.6svh, 6px);
  font-size: clamp(2rem, 7.5svh, 3.15rem);
}

.gift-is-opened .gift-opened-mark::before {
  inset: clamp(-42px, -6svh, -26px);
}

.gift-is-opened .gift-sender-row {
  min-height: clamp(20px, 3.5svh, 28px);
  font-size: clamp(0.92rem, 3.6vw, 1.12rem);
}

.gift-is-opened .gift-message-card {
  min-height: 0;
  padding: clamp(14px, 2.8svh, 24px) 46px clamp(14px, 2.6svh, 22px) 52px;
  border-radius: clamp(16px, 4.6vw, 22px);
}

.gift-is-opened .gift-quote-mark {
  top: clamp(10px, 2svh, 18px);
  left: 20px;
  font-size: clamp(2.6rem, 8svh, 4.1rem);
}

.gift-is-opened .gift-message {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.92rem, 3.6vw, 1.18rem);
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.gift-is-opened .gift-message-heart {
  right: 20px;
  bottom: clamp(12px, 2.4svh, 19px);
  font-size: clamp(1.15rem, 4svh, 1.55rem);
}

.gift-is-opened .gift-player-card {
  gap: clamp(8px, 1.7svh, 16px);
  padding: clamp(12px, 2.4svh, 20px) 16px clamp(12px, 2.2svh, 18px);
  border-radius: clamp(18px, 5vw, 24px);
}

.gift-is-opened .gift-player-top {
  grid-template-columns: clamp(88px, 16svh, 124px) minmax(0, 1fr);
  gap: clamp(14px, 4.2vw, 24px);
}

.gift-page.gift-is-opened .gift-cover-shell {
  width: clamp(88px, 16svh, 124px);
}

.gift-is-opened .gift-track-copy {
  gap: clamp(4px, 1svh, 8px);
}

.gift-is-opened .gift-track-copy h2 {
  font-size: clamp(1.1rem, 5vw, 1.62rem);
}

.gift-is-opened .gift-track-copy p {
  font-size: clamp(0.9rem, 4vw, 1.18rem);
}

.gift-is-opened .gift-waveform {
  height: clamp(24px, 5.4svh, 38px);
  margin-top: clamp(4px, 1.4svh, 12px);
}

.gift-is-opened .gift-player-bar {
  height: clamp(26px, 4.6svh, 34px);
  margin-top: clamp(-6px, -0.8svh, -2px);
}

.gift-is-opened .gift-player-time-row {
  margin-top: clamp(-8px, -1.4svh, -4px);
  font-size: clamp(0.78rem, 3.2vw, 0.98rem);
}

.gift-is-opened .gift-player-controls {
  gap: clamp(4px, 2vw, 10px);
  margin-top: clamp(2px, 1.3svh, 10px);
}

.gift-is-opened .gift-control-button {
  width: clamp(34px, 7svh, 48px);
  height: clamp(34px, 7svh, 48px);
}

.gift-is-opened .gift-control-download {
  width: clamp(30px, 5.8svh, 34px);
  height: clamp(30px, 5.8svh, 34px);
}

.gift-is-opened .gift-play-button {
  width: clamp(58px, 11svh, 82px);
  height: clamp(58px, 11svh, 82px);
}

.gift-is-opened .gift-copy-feedback {
  min-height: clamp(14px, 2.4svh, 20px);
  margin-top: 0;
  font-size: clamp(0.72rem, 3vw, 0.88rem);
}

@media (max-height: 700px) {
  .gift-is-opened .gift-opened-screen {
    gap: 8px;
  }

  .gift-is-opened .gift-message {
    -webkit-line-clamp: 2;
  }

  .gift-is-opened .gift-player-card {
    gap: 8px;
  }
}

@media (max-height: 620px) {
  .gift-is-opened .gift-opened-mark {
    width: 48px;
    height: 48px;
    font-size: 1.85rem;
  }

  .gift-is-opened .gift-opened-mark::before {
    inset: -24px;
  }

  .gift-is-opened .gift-sender-row {
    min-height: 18px;
    font-size: 0.86rem;
  }

  .gift-is-opened .gift-message-card {
    padding: 12px 40px 12px 44px;
  }

  .gift-is-opened .gift-message {
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .gift-is-opened .gift-player-top {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .gift-page.gift-is-opened .gift-cover-shell {
    width: 82px;
  }

  .gift-is-opened .gift-waveform {
    height: 22px;
    margin-top: 2px;
  }

  .gift-is-opened .gift-play-button {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .gift-stage {
    padding-inline: 12px;
  }

  .gift-state-panel,
  .gift-sealed-card,
  .gift-opened-screen {
    width: min(100%, 430px);
  }

  .gift-sealed-card {
    min-height: min(650px, calc(100svh - 24px));
    padding: 30px 18px 22px;
    border-radius: 32px;
  }

  .gift-note-mark {
    width: 62px;
    height: 62px;
    font-size: 2.85rem;
  }

  .gift-sealed-card h1 {
    font-size: clamp(2.7rem, 14.2vw, 3.85rem);
  }

  .gift-sealed-card p {
    margin-top: 14px;
  }

  .gift-box-art {
    width: min(274px, 76vw);
    height: clamp(220px, 34svh, 258px);
    margin-top: 18px;
    margin-bottom: 22px;
    transform: scale(0.94);
    transform-origin: center top;
  }

  .gift-open-button {
    min-height: 70px;
  }

  .gift-opened-screen {
    min-height: auto;
    gap: 18px;
    padding-top: 34px;
  }

  .gift-opened-mark {
    width: 86px;
    height: 86px;
    font-size: 3.15rem;
  }

  .gift-opened-screen h1::after {
    margin-top: 18px;
  }

  .gift-message-card {
    min-height: 112px;
    padding: 28px 46px 26px 52px;
  }

  .gift-player-card {
    padding: 20px 16px 18px;
  }

  .gift-player-top {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 24px;
  }

  .gift-control-button {
    width: 42px;
    height: 42px;
  }

  .gift-play-button {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 390px) {
  .gift-player-top {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
  }

  .gift-page .gift-cover-shell {
    width: 108px;
  }

  .gift-waveform {
    height: 30px;
    margin-top: 8px;
  }

  .gift-player-controls {
    gap: 4px;
  }

  .gift-control-button {
    width: 38px;
    height: 38px;
  }

  .gift-play-button {
    width: 68px;
    height: 68px;
  }
}

.gift-page.gift-card-numarul2 {
  --gift-card-preset-name: "Numarul2";
  color: #1f254f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 246, 252, 0.86)),
    radial-gradient(ellipse at 50% 0%, rgba(161, 115, 240, 0.42), transparent 38%),
    linear-gradient(180deg, #d993df 0%, #f8c4dc 52%, #fff2f7 100%);
}

.gift-page.gift-card-numarul2.gift-is-opened {
  background:
    radial-gradient(circle at 50% 9%, rgba(255, 78, 158, 0.2), transparent 14%),
    radial-gradient(ellipse at 50% 56%, rgba(71, 205, 205, 0.24), transparent 48%),
    radial-gradient(ellipse at 50% 100%, rgba(205, 255, 249, 0.96), transparent 44%),
    linear-gradient(180deg, #f6fffd 0%, #fff8fd 42%, #dcfff9 100%);
}

.gift-page.gift-card-numarul2.gift-is-opened::before {
  background:
    radial-gradient(circle at 24% 5%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 9%, rgba(255, 100, 159, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 14% 25%, rgba(36, 166, 164, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 30%, rgba(132, 111, 230, 0.28) 0 6px, transparent 7px),
    radial-gradient(circle at 18% 72%, rgba(255, 100, 159, 0.24) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 82%, rgba(35, 168, 164, 0.26) 0 5px, transparent 6px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(35, 168, 164, 0.055) 39px, transparent 40px 78px),
    linear-gradient(118deg, transparent 0 12%, rgba(255, 78, 158, 0.13) 12.35% 13%, transparent 13.35% 42%, rgba(72, 204, 211, 0.13) 42.35% 43%, transparent 43.35%),
    linear-gradient(242deg, transparent 0 27%, rgba(132, 111, 230, 0.1) 27.35% 28%, transparent 28.35% 71%, rgba(255, 78, 158, 0.09) 71.35% 72%, transparent 72.35%);
  opacity: 1;
}

.gift-page.gift-card-numarul2.gift-is-opened::after {
  inset: 0;
  height: auto;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.78), transparent 22%),
    radial-gradient(ellipse at 50% 74%, rgba(255, 84, 158, 0.15), transparent 36%),
    radial-gradient(ellipse at 50% 103%, rgba(42, 202, 204, 0.34), transparent 38%),
    linear-gradient(167deg, transparent 0 55%, rgba(42, 202, 204, 0.1) 55.2% 61%, transparent 61.2%),
    linear-gradient(193deg, transparent 0 62%, rgba(255, 84, 158, 0.1) 62.2% 68%, transparent 68.2%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 248, 253, 0.36) 52%, rgba(212, 255, 249, 0.56));
  opacity: 0.92;
}

.gift-page.gift-card-numarul2::before {
  background:
    radial-gradient(circle at 13% 8%, rgba(255, 255, 255, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 14%, rgba(255, 245, 176, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 36%, rgba(112, 134, 214, 0.64) 0 5px, transparent 6px),
    radial-gradient(circle at 16% 28%, rgba(255, 103, 151, 0.58) 0 4px, transparent 5px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.28), transparent 46%);
}

.gift-page.gift-card-numarul2::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 171, 204, 0.32), transparent 34%),
    linear-gradient(180deg, transparent, rgba(255, 251, 255, 0.74));
}

.gift-card-numarul2 .gift-sealed-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 253, 0.96)),
    #ffffff;
  box-shadow:
    0 28px 54px rgba(107, 63, 134, 0.18),
    0 14px 28px rgba(229, 101, 158, 0.14),
    inset 0 0 0 10px rgba(251, 229, 246, 0.78);
}

.gift-card-numarul2 .gift-sealed-card::before {
  background:
    radial-gradient(circle at 20% 48%, rgba(255, 189, 113, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 45%, rgba(255, 176, 211, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 75%, rgba(255, 255, 255, 0.86) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 56%);
}

.gift-card-numarul2 .gift-sealed-card::after {
  background: radial-gradient(ellipse at 50% 50%, rgba(244, 104, 176, 0.28), transparent 70%);
  opacity: 0.56;
}

.gift-card-numarul2 .gift-spark {
  color: #ff96c7;
}

.gift-card-numarul2 .gift-note-mark {
  width: 58px;
  height: 52px;
  margin-bottom: 8px;
  color: #f75aa9;
  font-size: 0;
  text-shadow: 0 12px 24px rgba(214, 73, 146, 0.22);
}

.gift-card-numarul2 .gift-note-mark::after {
  color: #f75aa9;
  font-size: 2.75rem;
  line-height: 1;
  content: "\2665";
  text-shadow:
    0 8px 16px rgba(217, 71, 146, 0.24),
    0 0 18px rgba(255, 128, 190, 0.34);
}

.gift-card-numarul2 .gift-sealed-card h1 {
  color: #16184c;
  text-shadow: 0 8px 18px rgba(26, 24, 76, 0.12);
}

.gift-card-numarul2 .gift-sealed-card p {
  color: rgba(28, 31, 78, 0.88);
  text-shadow: none;
}

.gift-card-numarul2 .gift-box-body,
.gift-card-numarul2 .gift-box-lid {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(90deg, #f9d9fb, #f8ecff 44%, #f6c6ea);
  box-shadow:
    0 30px 42px rgba(194, 76, 152, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -18px 30px rgba(178, 99, 195, 0.12);
}

.gift-card-numarul2 .gift-box-ribbon-vertical {
  background: linear-gradient(90deg, #f54d9d, #ff91ca 48%, #4d8ef5 52%, #6274d7);
  box-shadow: 0 0 22px rgba(245, 87, 164, 0.24);
}

.gift-card-numarul2 .gift-box-ribbon-horizontal {
  background: linear-gradient(90deg, #f74f9e 0 48%, #7292ff 52% 100%);
  box-shadow:
    0 0 22px rgba(116, 138, 246, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.gift-card-numarul2 .gift-box-bow,
.gift-card-numarul2 .gift-box-bow-knot {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(ellipse at 38% 38%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #ff8fce, #d448ba 54%, #7974e8);
  box-shadow:
    0 14px 24px rgba(185, 67, 157, 0.2),
    inset -12px -10px 24px rgba(91, 64, 190, 0.16);
}

.gift-card-numarul2 .gift-box-tag {
  border-color: rgba(140, 121, 220, 0.24);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 159, 217, 0.24), transparent 38%),
    linear-gradient(180deg, #ffffff, #fff2fb);
  color: #9f65dc;
  box-shadow:
    0 12px 20px rgba(139, 95, 179, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.gift-card-numarul2 .gift-open-button {
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(100deg, #ff6e9b 0%, #f45ba8 42%, #6b83ee 100%);
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(226, 82, 158, 0.24),
    0 0 26px rgba(122, 139, 237, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.gift-card-numarul2.gift-is-opened .gift-opened-mark {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 114, 167, 0.26), transparent 44%),
    linear-gradient(180deg, #ffffff, #fbffff);
  color: #f04d9b;
  font-size: 0;
  box-shadow:
    0 16px 34px rgba(109, 197, 189, 0.18),
    inset 0 0 0 8px rgba(246, 255, 253, 0.88);
}

.gift-card-numarul2.gift-is-opened .gift-opened-mark::after {
  color: #ef4f9d;
  font-size: clamp(2rem, 7svh, 3rem);
  content: "\2665";
  text-shadow: 0 0 16px rgba(239, 79, 157, 0.24);
}

.gift-card-numarul2.gift-is-opened .gift-opened-mark::before {
  background: repeating-conic-gradient(
    from 0deg,
    rgba(50, 96, 145, 0.1) 0deg 1deg,
    transparent 1deg 8deg
  );
}

.gift-card-numarul2 .gift-sender-row {
  color: rgba(29, 36, 72, 0.74);
}

.gift-card-numarul2 .gift-sender-row strong {
  color: #16a59e;
}

.gift-card-numarul2 .gift-sender-icon {
  color: #16a59e;
}

.gift-card-numarul2 .gift-message-card {
  border-color: rgba(203, 232, 230, 0.8);
  background:
    linear-gradient(135deg, rgba(235, 255, 253, 0.96), rgba(222, 249, 246, 0.9)),
    #effffc;
  box-shadow:
    0 18px 42px rgba(44, 117, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gift-card-numarul2 .gift-quote-mark,
.gift-card-numarul2 .gift-message-heart {
  color: #23a8a4;
  text-shadow: 0 0 18px rgba(35, 168, 164, 0.18);
}

.gift-card-numarul2 .gift-message {
  color: #202a51;
}

.gift-card-numarul2 .gift-player-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(224, 235, 238, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 255, 255, 0.94)),
    repeating-linear-gradient(
      0deg,
      transparent 0 21px,
      rgba(32, 168, 164, 0.06) 22px,
      transparent 23px 31px
    ),
    linear-gradient(132deg, rgba(255, 84, 158, 0.16), transparent 38%),
    linear-gradient(318deg, rgba(67, 199, 205, 0.18), transparent 44%),
    #ffffff;
  box-shadow:
    0 24px 54px rgba(65, 108, 118, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.gift-card-numarul2 .gift-player-card::before,
.gift-card-numarul2 .gift-player-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.gift-card-numarul2 .gift-player-card::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 0 16%, rgba(255, 78, 155, 0.14) 16.4% 17.2%, transparent 17.6% 43%, rgba(72, 204, 211, 0.13) 43.5% 44.3%, transparent 44.8%),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 83, 158, 0.05) 44px 46px, transparent 46px 88px);
  opacity: 0.86;
}

.gift-card-numarul2 .gift-player-card::after {
  left: -26px;
  right: -26px;
  bottom: -38px;
  z-index: 0;
  height: 142px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(100deg, rgba(42, 202, 204, 0.36), rgba(255, 84, 158, 0.22) 44%, rgba(132, 111, 230, 0.28));
  clip-path: polygon(0 36%, 16% 25%, 34% 39%, 51% 27%, 68% 43%, 85% 30%, 100% 40%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.gift-card-numarul2 .gift-player-card > * {
  position: relative;
  z-index: 1;
}

.gift-card-numarul2 .gift-cover-fallback {
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 121, 175, 0.18), transparent 22%),
    radial-gradient(ellipse at 50% 78%, rgba(105, 139, 239, 0.5), transparent 30%),
    linear-gradient(155deg, #ffb4ca 0%, #8d76d9 46%, #6ed3e0 100%);
}

.gift-card-numarul2 .gift-cover-fallback::before {
  background:
    radial-gradient(circle at 50% 45%, transparent 0 20%, rgba(255, 132, 185, 0.58) 21% 23%, transparent 24%),
    linear-gradient(160deg, transparent 38%, rgba(250, 200, 244, 0.42) 39% 53%, transparent 54%);
}

.gift-card-numarul2 .gift-track-copy h2 {
  color: #202044;
}

.gift-card-numarul2 .gift-track-copy p {
  color: rgba(50, 57, 96, 0.62);
}

.gift-card-numarul2 .gift-waveform {
  color: #f14d99;
  filter: drop-shadow(0 0 8px rgba(241, 77, 153, 0.22));
}

.gift-card-numarul2 .gift-player-bar::before {
  background: rgba(206, 214, 226, 0.82);
}

.gift-card-numarul2 .gift-player-bar.is-seeking::before {
  background: rgba(189, 199, 216, 0.95);
}

.gift-card-numarul2 .gift-player-progress {
  background: linear-gradient(90deg, #ff5e9e, #ec4c9a);
  box-shadow: 0 0 16px rgba(236, 76, 154, 0.28);
}

.gift-card-numarul2 .gift-player-progress::after {
  background: #ef4d99;
  box-shadow: 0 0 18px rgba(239, 77, 153, 0.34);
}

.gift-card-numarul2 .gift-player-time-row {
  color: rgba(48, 57, 96, 0.56);
}

.gift-card-numarul2 .gift-control-button {
  color: #1e2842;
}

.gift-card-numarul2 .gift-control-download:not(:disabled),
.gift-card-numarul2 .gift-control-heart::before {
  color: #1e2842;
}

.gift-card-numarul2 .gift-control-heart::before {
  color: #ef4d99;
}

.gift-card-numarul2 .gift-control-heart.is-copied::before {
  color: #23a8a4;
  text-shadow: 0 0 18px rgba(35, 168, 164, 0.26);
}

.gift-card-numarul2 .gift-play-button {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.32), transparent 46%),
    linear-gradient(145deg, #f253a2 0%, #8e6fe6 52%, #43c7cd 100%);
  box-shadow:
    0 18px 32px rgba(94, 107, 191, 0.2),
    0 0 24px rgba(242, 83, 162, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.gift-card-numarul2 .gift-copy-feedback {
  color: #ef4d99;
}

.gift-card-numarul2 .gift-copy-feedback.is-muted {
  color: rgba(48, 57, 96, 0.54);
}

.gift-card-numarul2 .gift-copy-feedback.is-neutral {
  color: #202044;
}

.gift-page.gift-card-numarul3 {
  --gift-card-preset-name: "Numarul3";
  color: #f8eee1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(218, 174, 124, 0.22), transparent 34%),
    radial-gradient(circle at 50% 10%, rgba(239, 206, 165, 0.12), transparent 18%),
    linear-gradient(180deg, #151312 0%, #090909 54%, #030303 100%);
}

.gift-page.gift-card-numarul3.gift-is-opened {
  background:
    radial-gradient(circle at 50% 8%, rgba(242, 210, 174, 0.18), transparent 16%),
    radial-gradient(ellipse at 50% 64%, rgba(208, 163, 112, 0.14), transparent 46%),
    radial-gradient(ellipse at 50% 104%, rgba(224, 181, 126, 0.22), transparent 36%),
    linear-gradient(180deg, #161413 0%, #080808 52%, #020202 100%);
}

.gift-page.gift-card-numarul3::before {
  background:
    radial-gradient(circle at 36% 16%, rgba(255, 221, 181, 0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 17%, rgba(255, 205, 143, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 17% 42%, rgba(255, 218, 174, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 38%, rgba(255, 218, 174, 0.46) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 78%, rgba(255, 204, 138, 0.36) 0 2px, transparent 3px),
    linear-gradient(160deg, rgba(244, 210, 174, 0.08), transparent 52%);
  opacity: 0.92;
}

.gift-page.gift-card-numarul3::after {
  background:
    radial-gradient(ellipse at 50% 86%, rgba(224, 178, 118, 0.28), transparent 30%),
    linear-gradient(180deg, transparent, rgba(7, 5, 4, 0.84));
}

.gift-page.gift-card-numarul3.gift-is-opened::before {
  background:
    radial-gradient(circle at 34% 11%, rgba(255, 224, 187, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 63% 13%, rgba(255, 203, 139, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 11% 34%, rgba(255, 221, 182, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 89% 32%, rgba(255, 221, 182, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 76%, rgba(255, 206, 146, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 82%, rgba(255, 206, 146, 0.24) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 20%, rgba(226, 177, 118, 0.1) 20.4% 21%, transparent 21.4% 58%, rgba(244, 216, 184, 0.07) 58.3% 59%, transparent 59.3%),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(222, 181, 132, 0.035) 47px, transparent 48px 92px);
}

.gift-page.gift-card-numarul3.gift-is-opened::after {
  inset: 0;
  height: auto;
  background:
    radial-gradient(ellipse at 50% 17%, rgba(243, 217, 188, 0.12), transparent 24%),
    radial-gradient(ellipse at 50% 74%, rgba(220, 174, 117, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 238, 214, 0.02), transparent 40%, rgba(210, 158, 99, 0.12));
}

.gift-card-numarul3 .gift-sealed-card {
  border-color: rgba(225, 190, 151, 0.48);
  background:
    linear-gradient(160deg, rgba(255, 236, 210, 0.09), transparent 20%),
    radial-gradient(ellipse at 50% 70%, rgba(223, 178, 122, 0.2), transparent 34%),
    linear-gradient(155deg, rgba(37, 33, 29, 0.94), rgba(12, 11, 10, 0.98) 56%, rgba(2, 2, 2, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.72),
    0 0 44px rgba(219, 176, 122, 0.2),
    inset 0 0 0 1px rgba(255, 231, 199, 0.08);
}

.gift-card-numarul3 .gift-sealed-card::before {
  background:
    radial-gradient(circle at 74% 9%, rgba(241, 206, 166, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 44%, rgba(241, 206, 166, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 48%, rgba(241, 206, 166, 0.28) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(241, 206, 166, 0.06), transparent 42%);
}

.gift-card-numarul3 .gift-sealed-card::after {
  background: radial-gradient(ellipse at 50% 50%, rgba(229, 190, 139, 0.34), transparent 70%);
}

.gift-card-numarul3 .gift-spark,
.gift-card-numarul3 .gift-note-mark,
.gift-card-numarul3 .gift-box-tag {
  color: #f1d2ad;
}

.gift-card-numarul3 .gift-spark::before,
.gift-card-numarul3 .gift-spark::after {
  box-shadow: 0 0 12px rgba(241, 210, 173, 0.74);
}

.gift-card-numarul3 .gift-note-mark {
  text-shadow:
    0 0 18px rgba(241, 210, 173, 0.52),
    0 3px 14px rgba(0, 0, 0, 0.42);
}

.gift-card-numarul3 .gift-sealed-card h1 {
  color: #fff2e2;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 22px rgba(0, 0, 0, 0.52);
}

.gift-card-numarul3 .gift-sealed-card p {
  color: rgba(255, 242, 226, 0.9);
}

.gift-card-numarul3 .gift-box-body,
.gift-card-numarul3 .gift-box-lid {
  border-color: rgba(255, 231, 204, 0.26);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 242, 229, 0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 32%, rgba(232, 195, 173, 0.58) 0 10px, transparent 11px),
    radial-gradient(circle at 82% 30%, rgba(255, 244, 230, 0.44) 0 5px, transparent 6px),
    linear-gradient(106deg, rgba(255, 255, 255, 0.24), transparent 25%),
    linear-gradient(90deg, #7d6c5b, #d8c1aa 46%, #816b55);
  box-shadow:
    0 34px 44px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(226, 188, 142, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -22px 38px rgba(73, 50, 33, 0.28);
}

.gift-card-numarul3 .gift-box-art::before,
.gift-card-numarul3 .gift-box-art::after {
  position: absolute;
  z-index: 5;
  width: 112px;
  height: 96px;
  background:
    radial-gradient(circle at 34% 42%, #fff3e7 0 5px, transparent 6px),
    radial-gradient(circle at 41% 35%, rgba(248, 226, 208, 0.96) 0 11px, transparent 12px),
    radial-gradient(circle at 50% 46%, rgba(255, 248, 239, 0.9) 0 6px, transparent 7px),
    radial-gradient(circle at 58% 38%, rgba(231, 205, 184, 0.84) 0 8px, transparent 9px),
    radial-gradient(ellipse at 22% 68%, rgba(171, 160, 128, 0.72) 0 10px, transparent 11px),
    radial-gradient(ellipse at 76% 62%, rgba(171, 160, 128, 0.64) 0 9px, transparent 10px);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.22));
  content: "";
}

.gift-card-numarul3 .gift-box-art::before {
  left: 28px;
  top: 48px;
  transform: rotate(-10deg);
}

.gift-card-numarul3 .gift-box-art::after {
  right: 34px;
  top: 54px;
  transform: rotate(12deg) scale(0.82);
}

.gift-card-numarul3 .gift-box-ribbon-vertical {
  background:
    linear-gradient(90deg, rgba(147, 119, 91, 0.94), #f3d7b6 50%, rgba(129, 98, 70, 0.98));
  box-shadow:
    0 0 24px rgba(241, 210, 173, 0.24),
    inset 9px 0 18px rgba(0, 0, 0, 0.14);
}

.gift-card-numarul3 .gift-box-ribbon-horizontal {
  background:
    linear-gradient(180deg, #ffe6c3, #d2af83 54%, #8a684a);
  box-shadow:
    0 0 24px rgba(242, 208, 169, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.gift-card-numarul3 .gift-box-bow,
.gift-card-numarul3 .gift-box-bow-knot {
  border-color: rgba(255, 232, 202, 0.28);
  background:
    radial-gradient(ellipse at 38% 38%, rgba(255, 255, 255, 0.38), transparent 32%),
    linear-gradient(135deg, #ffe8c7, #b98f62 62%, #5f432e);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(240, 204, 164, 0.2),
    inset -12px -10px 24px rgba(91, 62, 39, 0.26);
}

.gift-card-numarul3 .gift-box-tag {
  border-color: rgba(255, 232, 202, 0.34);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 241, 222, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(50, 43, 36, 0.98), rgba(7, 6, 5, 0.98));
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(236, 199, 156, 0.18);
}

.gift-card-numarul3 .gift-open-button {
  border-color: rgba(255, 232, 204, 0.52);
  background:
    linear-gradient(100deg, #fff0d7 0%, #e0bd8e 54%, #ad8255 100%);
  color: #17120d;
  box-shadow:
    0 18px 34px rgba(214, 174, 121, 0.22),
    0 0 32px rgba(241, 210, 173, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.gift-card-numarul3.gift-is-opened .gift-opened-mark {
  border-color: rgba(235, 204, 169, 0.62);
  background:
    radial-gradient(circle at 50% 35%, rgba(244, 213, 181, 0.18), transparent 44%),
    linear-gradient(160deg, rgba(47, 40, 34, 0.92), rgba(13, 12, 11, 0.96));
  color: #f1d2ad;
  box-shadow:
    0 16px 34px rgba(214, 174, 121, 0.16),
    0 0 32px rgba(241, 210, 173, 0.13),
    inset 0 1px 0 rgba(255, 238, 217, 0.16);
}

.gift-card-numarul3.gift-is-opened .gift-opened-mark::before {
  background: repeating-conic-gradient(
    from 0deg,
    rgba(242, 210, 174, 0.12) 0deg 1deg,
    transparent 1deg 8deg
  );
}

.gift-card-numarul3 .gift-sender-row {
  color: rgba(244, 231, 215, 0.74);
}

.gift-card-numarul3 .gift-sender-row strong,
.gift-card-numarul3 .gift-sender-icon {
  color: #f2d1a8;
}

.gift-card-numarul3 .gift-message-card {
  border-color: rgba(225, 190, 151, 0.3);
  background:
    linear-gradient(135deg, rgba(40, 35, 30, 0.92), rgba(18, 17, 16, 0.94)),
    #151312;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 238, 217, 0.08);
}

.gift-card-numarul3 .gift-quote-mark,
.gift-card-numarul3 .gift-message-heart {
  color: #f1d2ad;
  text-shadow: 0 0 18px rgba(241, 210, 173, 0.24);
}

.gift-card-numarul3 .gift-message {
  color: rgba(255, 246, 235, 0.94);
}

.gift-card-numarul3 .gift-player-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(225, 190, 151, 0.28);
  background:
    linear-gradient(145deg, rgba(35, 30, 26, 0.96), rgba(9, 9, 9, 0.98) 68%),
    #11100f;
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(216, 174, 121, 0.12),
    inset 0 1px 0 rgba(255, 238, 217, 0.08);
}

.gift-card-numarul3 .gift-player-card::before,
.gift-card-numarul3 .gift-player-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.gift-card-numarul3 .gift-player-card::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 236, 212, 0.1), transparent 15%),
    linear-gradient(115deg, transparent 0 17%, rgba(226, 177, 118, 0.12) 17.4% 18%, transparent 18.4% 52%, rgba(244, 216, 184, 0.08) 52.4% 53%, transparent 53.4%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(226, 177, 118, 0.035) 51px, transparent 52px 100px);
}

.gift-card-numarul3 .gift-player-card::after {
  left: -20px;
  right: -20px;
  bottom: -36px;
  z-index: 0;
  height: 126px;
  background:
    linear-gradient(100deg, rgba(255, 236, 210, 0.12), rgba(210, 162, 104, 0.2) 48%, rgba(112, 79, 49, 0.16));
  clip-path: polygon(0 42%, 18% 31%, 36% 43%, 54% 29%, 72% 45%, 88% 34%, 100% 42%, 100% 100%, 0 100%);
  opacity: 0.82;
}

.gift-card-numarul3 .gift-player-card > * {
  position: relative;
  z-index: 1;
}

.gift-card-numarul3 .gift-cover-fallback {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 242, 229, 0.72) 0 5px, transparent 6px),
    radial-gradient(circle at 38% 32%, rgba(230, 194, 173, 0.64) 0 16px, transparent 17px),
    radial-gradient(circle at 64% 26%, rgba(255, 244, 232, 0.5) 0 7px, transparent 8px),
    linear-gradient(135deg, #534337, #d8c1aa 54%, #6c5441);
}

.gift-card-numarul3 .gift-cover-fallback::before {
  background:
    radial-gradient(circle at 34% 31%, transparent 0 13%, rgba(255, 233, 214, 0.7) 14% 15%, transparent 16%),
    linear-gradient(160deg, transparent 38%, rgba(255, 231, 204, 0.32) 39% 53%, transparent 54%);
}

.gift-card-numarul3 .gift-page .gift-cover-shell,
.gift-card-numarul3 .gift-cover-shell {
  border-color: rgba(232, 197, 160, 0.3);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(232, 197, 160, 0.12);
}

.gift-card-numarul3 .gift-track-copy h2 {
  color: #fff1df;
}

.gift-card-numarul3 .gift-track-copy p {
  color: rgba(246, 228, 208, 0.68);
}

.gift-card-numarul3 .gift-waveform {
  color: #f0c996;
  filter: drop-shadow(0 0 9px rgba(240, 201, 150, 0.26));
}

.gift-card-numarul3 .gift-player-bar::before {
  background: rgba(219, 202, 182, 0.26);
}

.gift-card-numarul3 .gift-player-bar.is-seeking::before {
  background: rgba(230, 208, 184, 0.38);
}

.gift-card-numarul3 .gift-player-progress {
  background: linear-gradient(90deg, #ffe8c8, #d5a774);
  box-shadow: 0 0 16px rgba(226, 177, 118, 0.32);
}

.gift-card-numarul3 .gift-player-progress::after {
  background: #f2d3ad;
  box-shadow: 0 0 18px rgba(242, 211, 173, 0.36);
}

.gift-card-numarul3 .gift-player-time-row {
  color: rgba(247, 229, 209, 0.58);
}

.gift-card-numarul3 .gift-control-button {
  color: rgba(255, 244, 232, 0.88);
}

.gift-card-numarul3 .gift-control-download:not(:disabled),
.gift-card-numarul3 .gift-control-heart::before {
  color: rgba(255, 244, 232, 0.9);
}

.gift-card-numarul3 .gift-control-heart::before {
  color: #ffe0ba;
}

.gift-card-numarul3 .gift-control-heart.is-copied::before {
  color: #f1d2ad;
  text-shadow: 0 0 18px rgba(241, 210, 173, 0.3);
}

.gift-card-numarul3 .gift-play-button {
  border-color: rgba(255, 232, 204, 0.36);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.26), transparent 46%),
    linear-gradient(145deg, #f9ddbd 0%, #bd9261 58%, #6f4f31 100%);
  box-shadow:
    0 18px 34px rgba(216, 174, 121, 0.2),
    0 0 28px rgba(241, 210, 173, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.gift-card-numarul3 .gift-copy-feedback {
  color: #f1d2ad;
}

.gift-card-numarul3 .gift-copy-feedback.is-muted {
  color: rgba(247, 229, 209, 0.56);
}

.gift-card-numarul3 .gift-copy-feedback.is-neutral {
  color: rgba(255, 244, 232, 0.88);
}

/* Gift dialog mockup shell */
.gift-dialog {
  padding: 0;
  background: rgba(8, 15, 12, 0.26);
  backdrop-filter: blur(10px);
}

.gift-dialog-sheet {
  width: min(943px, 100vw);
  max-height: 100svh;
  gap: 26px;
  padding: 48px 43px 38px;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -18%, rgba(242, 252, 247, 0.95), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #fbfdfb 100%);
  box-shadow: 0 34px 100px rgba(8, 25, 16, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 73, 48, 0.18) transparent;
}

.gift-dialog-head {
  min-height: 107px;
  padding: 0 86px;
  align-content: start;
  gap: 13px;
}

.gift-dialog-title-block {
  gap: 11px;
}

.gift-dialog-head h2 {
  color: #152a1f;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.95;
}

.gift-dialog-track {
  color: #67756b;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.gift-dialog-close {
  top: 41px;
  right: 43px;
  width: 73px;
  height: 73px;
  border-color: rgba(20, 45, 31, 0.15);
  background: #fbfdfc;
  box-shadow: 0 10px 28px rgba(24, 54, 35, 0.08);
}

.gift-dialog-close svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.9;
}

.gift-dialog-preview {
  grid-template-columns: 139px minmax(0, 1fr) 60px;
  gap: 28px;
  min-height: 166px;
  padding: 16px 31px 16px 21px;
  border-color: rgba(30, 58, 40, 0.14);
  border-radius: 31px;
  background: #ffffff;
  box-shadow: none;
}

.gift-dialog-cover {
  width: 135px;
  border-radius: 19px;
  box-shadow: 0 11px 22px rgba(12, 30, 18, 0.12);
}

.gift-dialog-preview-copy {
  gap: 16px;
}

.gift-dialog-preview-copy strong {
  color: #14261b;
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 720;
  line-height: 1.06;
}

.gift-dialog-preview-copy span {
  color: #657168;
  font-size: 24px;
  line-height: 1.1;
}

.gift-dialog-preview-play {
  width: 60px;
  height: 60px;
  border-color: rgba(29, 91, 55, 0.15);
  background: #ffffff;
  color: #168755;
  box-shadow: none;
}

.gift-dialog-preview-play::before {
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 15px;
}

.gift-card-style-fieldset {
  gap: 10px;
}

.gift-card-style-fieldset legend,
.gift-dialog-details h3 {
  margin: 0;
  color: #111f17;
  font-size: 27px;
  font-weight: 520;
  line-height: 1.15;
}

.gift-card-carousel {
  gap: 13px;
  padding-top: 0;
}

.gift-card-style-options {
  min-height: 356px;
  margin-inline: 0;
  overflow: visible;
}

.gift-card-style-option {
  --gift-card-carousel-side-offset: 256px;
  --gift-card-carousel-far-offset: 360px;
  width: 196px;
  border-radius: 31px;
}

.gift-card-style-option.is-before,
.gift-card-style-option.is-after {
  opacity: 0.82;
  filter: saturate(0.9) brightness(1.02);
}

.gift-card-style-option.is-before {
  transform: translate(calc(-50% - var(--gift-card-carousel-side-offset) + var(--gift-card-carousel-drag)), -50%) scale(0.86);
}

.gift-card-style-option.is-after {
  transform: translate(calc(-50% + var(--gift-card-carousel-side-offset) + var(--gift-card-carousel-drag)), -50%) scale(0.86);
}

.gift-card-style-preview {
  border-radius: 30px;
  background: #ffffff;
  box-shadow:
    0 20px 36px rgba(25, 47, 34, 0.1),
    0 0 0 1px rgba(20, 45, 31, 0.08);
}

.gift-card-style-option.is-selected .gift-card-style-preview {
  box-shadow:
    0 0 0 5px rgba(88, 187, 124, 0.82),
    0 24px 42px rgba(24, 65, 39, 0.12);
}

.gift-card-style-dots {
  gap: 18px;
  margin-top: 0;
}

.gift-card-style-dots button {
  width: 17px;
  height: 17px;
  background: rgba(43, 65, 52, 0.15);
}

.gift-card-style-dots button.is-selected {
  width: 17px;
  background: #35a569;
}

.gift-card-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(28, 54, 38, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #111b15;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(21, 45, 31, 0.07);
  transform: translateY(-50%);
}

.gift-card-carousel-arrow::before {
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
}

.gift-card-carousel-arrow-prev {
  left: 0;
}

.gift-card-carousel-arrow-prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.gift-card-carousel-arrow-next {
  right: 0;
}

.gift-card-carousel-arrow-next::before {
  transform: translateX(-3px) rotate(135deg);
}

.gift-dialog-details {
  gap: 20px;
}

.gift-dialog-fields {
  gap: 17px;
}

.gift-dialog-field {
  grid-template-columns: 32px 118px minmax(0, 1fr);
  min-height: 74px;
  gap: 13px;
  padding: 0 29px;
  border-color: rgba(23, 48, 32, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(19, 41, 28, 0.035);
}

.gift-dialog-field::before {
  width: 31px;
  height: 31px;
  background: #75847b;
}

.gift-dialog-field span {
  color: #6e7d73;
  font-size: 22px;
  font-weight: 400;
}

.gift-dialog-fields input,
.gift-dialog-fields textarea {
  color: #101b14;
  font-size: 22px;
  font-weight: 430;
}

.gift-dialog-fields input {
  min-height: 72px;
}

.gift-dialog-fields textarea {
  min-height: 72px;
  padding-top: 21px;
  overflow: hidden;
}

.gift-dialog-link-row {
  grid-template-columns: 65px minmax(0, 1fr) 181px;
  gap: 20px;
  min-height: 132px;
  padding: 23px 24px 23px 22px;
  border-color: rgba(51, 160, 92, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 42%, rgba(226, 248, 235, 0.72), rgba(255, 255, 255, 0) 30%),
    #ffffff;
}

.gift-dialog-link-icon {
  width: 47px;
  height: 85px;
  border-radius: 18px;
  background: #edf7f1;
  color: #13804e;
}

.gift-dialog-link-copy {
  gap: 13px;
}

.gift-dialog-link-copy strong {
  font-size: 22px;
  font-weight: 640;
}

#gift-dialog-link {
  color: #2a332d;
  font-size: 27px;
  line-height: 1.1;
}

#gift-copy-button {
  min-width: 181px;
  min-height: 69px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: 520;
  box-shadow: none;
}

#gift-copy-button::after {
  width: 25px;
  height: 25px;
}

.gift-dialog-actions {
  gap: 30px;
}

.gift-dialog-main-actions {
  gap: 27px;
}

.gift-dialog-main-actions button {
  min-height: 91px;
  gap: 18px;
  font-size: 28px;
  font-weight: 650;
}

#gift-save-button {
  border-color: rgba(34, 119, 66, 0.78);
  background: #ffffff;
  color: #176b43;
  box-shadow: none;
}

#gift-view-button {
  background: linear-gradient(100deg, #179052 0%, #63c97d 100%);
  box-shadow: none;
}

#gift-save-button::before,
#gift-view-button::before {
  width: 34px;
  height: 34px;
}

.gift-dialog-share-block {
  gap: 25px;
}

.gift-dialog-share-title {
  gap: 34px;
  color: #7f8c84;
}

.gift-dialog-share-title span {
  background: rgba(31, 73, 48, 0.15);
}

.gift-dialog-share-title strong {
  font-size: 21px;
}

.gift-dialog-share-actions {
  justify-content: space-around;
  gap: 0;
  padding: 0 77px;
}

.gift-dialog-share-button {
  width: 85px;
  height: 85px;
  min-width: 85px;
  min-height: 85px;
  border-color: rgba(26, 50, 35, 0.09);
  background: #ffffff;
  box-shadow: 0 15px 32px rgba(20, 45, 31, 0.06);
}

.gift-dialog-share-button::before {
  width: 39px;
  height: 39px;
}

.gift-dialog-share-native {
  --gift-share-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 15.2C2.7 13.8 2 12.1 2 10.2 2 5.7 6.5 2 12 2s10 3.7 10 8.2-4.5 8.2-10 8.2c-1 0-2-.1-2.9-.4L4.5 22v-5.3c-.2-.5-.3-1-.5-1.5Zm4.5-6.1 2.2 2.3 4.8-2.6-4.2 4.5-2.3-2.4-4.5 2.4 4-4.2Z'/%3E%3C/svg%3E");
  color: #267cf4;
}

.gift-dialog-share-link {
  --gift-share-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.1 0l2-2a5 5 0 0 0-7.1-7.1l-1.1 1.1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.1 0l-2 2A5 5 0 0 0 12 20.1l1.1-1.1'/%3E%3C/svg%3E");
  color: #68786f;
}

.gift-dialog-share-print {
  color: #37a869;
}

.gift-dialog-status {
  margin-top: -18px;
  font-size: 15px;
}

@media (max-width: 720px) {
  .gift-dialog {
    align-items: end;
  }

  .gift-dialog-sheet {
    width: 100vw;
    max-height: 94svh;
    gap: 17px;
    padding: 22px 18px 24px;
    border-radius: 24px 24px 0 0;
  }

  .gift-dialog-head {
    min-height: 72px;
    padding: 0 52px;
    gap: 7px;
  }

  .gift-dialog-head h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .gift-dialog-track {
    font-size: 1rem;
  }

  .gift-dialog-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .gift-dialog-close svg {
    width: 21px;
    height: 21px;
  }

  .gift-dialog-preview {
    grid-template-columns: 68px minmax(0, 1fr) 42px;
    min-height: 90px;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .gift-dialog-cover {
    width: 68px;
    border-radius: 15px;
  }

  .gift-dialog-preview-copy {
    gap: 6px;
  }

  .gift-dialog-preview-copy strong {
    font-size: 1.18rem;
  }

  .gift-dialog-preview-copy span {
    font-size: 0.92rem;
  }

  .gift-dialog-preview-play {
    width: 40px;
    height: 40px;
  }

  .gift-card-style-fieldset legend,
  .gift-dialog-details h3 {
    font-size: 1.22rem;
  }

  .gift-card-style-options {
    min-height: 212px;
    overflow: hidden;
  }

  .gift-card-style-option {
    --gift-card-carousel-side-offset: clamp(104px, 31vw, 126px);
    --gift-card-carousel-far-offset: clamp(152px, 46vw, 180px);
    width: clamp(102px, 30vw, 119px);
  }

  .gift-card-style-preview,
  .gift-card-style-option.is-selected .gift-card-style-preview {
    border-radius: 13px;
  }

  .gift-card-style-option.is-selected .gift-card-style-preview {
    box-shadow:
      0 0 0 3px rgba(88, 187, 124, 0.82),
      0 18px 28px rgba(24, 65, 39, 0.11);
  }

  .gift-card-style-dots {
    gap: 11px;
  }

  .gift-card-style-dots button,
  .gift-card-style-dots button.is-selected {
    width: 10px;
    height: 10px;
  }

  .gift-card-carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .gift-card-carousel-arrow::before {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .gift-dialog-details {
    gap: 12px;
  }

  .gift-dialog-fields {
    gap: 10px;
  }

  .gift-dialog-field {
    grid-template-columns: 24px 58px minmax(0, 1fr);
    min-height: 52px;
    gap: 9px;
    padding: 0 13px;
    border-radius: 18px;
  }

  .gift-dialog-field::before {
    width: 22px;
    height: 22px;
  }

  .gift-dialog-field span,
  .gift-dialog-fields input,
  .gift-dialog-fields textarea {
    font-size: 0.92rem;
  }

  .gift-dialog-fields input {
    min-height: 50px;
  }

  .gift-dialog-fields textarea {
    min-height: 50px;
    padding-top: 15px;
  }

  .gift-dialog-link-row {
    grid-template-columns: 42px minmax(0, 1fr) 104px;
    min-height: 78px;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .gift-dialog-link-icon {
    width: 40px;
    height: 54px;
    border-radius: 15px;
  }

  .gift-dialog-link-copy {
    gap: 5px;
  }

  .gift-dialog-link-copy strong {
    font-size: 0.93rem;
  }

  #gift-dialog-link {
    font-size: 0.94rem;
  }

  #gift-copy-button {
    min-width: 104px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 15px;
    font-size: 0.9rem;
  }

  #gift-copy-button::after {
    width: 17px;
    height: 17px;
  }

  .gift-dialog-actions {
    gap: 17px;
  }

  .gift-dialog-main-actions {
    gap: 10px;
  }

  .gift-dialog-main-actions button {
    min-height: 54px;
    gap: 9px;
    font-size: 1rem;
  }

  #gift-save-button::before,
  #gift-view-button::before {
    width: 21px;
    height: 21px;
  }

  .gift-dialog-share-block {
    gap: 15px;
  }

  .gift-dialog-share-title {
    gap: 14px;
  }

  .gift-dialog-share-title strong {
    font-size: 0.88rem;
  }

  .gift-dialog-share-actions {
    justify-content: space-between;
    padding: 0 8px;
  }

  .gift-dialog-share-button {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .gift-dialog-share-button::before {
    width: 25px;
    height: 25px;
  }
}

/* Compact gift dialog override */
.gift-dialog-sheet {
  width: min(760px, calc(100vw - 20px));
  max-height: 96svh;
  gap: 18px;
  padding: 28px 30px 26px;
  font-family: var(--font-body);
}

.gift-dialog-head {
  min-height: 76px;
  padding: 0 64px;
  gap: 8px;
}

.gift-dialog-title-block {
  gap: 8px;
}

.gift-dialog-head h2 {
  max-width: 100%;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.4vw, 2.95rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-dialog-track {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
}

.gift-dialog-close {
  top: 24px;
  right: 30px;
  width: 50px;
  height: 50px;
}

.gift-dialog-close svg {
  width: 22px;
  height: 22px;
}

.gift-dialog-preview {
  grid-template-columns: 88px minmax(0, 1fr) 48px;
  gap: 18px;
  min-height: 116px;
  padding: 12px 20px 12px 14px;
  border-radius: 24px;
}

.gift-dialog-cover {
  width: 88px;
  border-radius: 17px;
}

.gift-dialog-preview-copy {
  gap: 8px;
}

.gift-dialog-preview-copy strong {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 720;
}

.gift-dialog-preview-copy span {
  font-size: clamp(0.96rem, 2vw, 1.08rem);
}

.gift-dialog-preview-play {
  width: 46px;
  height: 46px;
}

.gift-card-style-fieldset legend,
.gift-dialog-details h3 {
  font-family: var(--font-body);
  font-size: clamp(1.18rem, 2.5vw, 1.42rem);
}

.gift-card-style-options {
  min-height: 268px;
  overflow: hidden;
}

.gift-card-style-option {
  --gift-card-carousel-side-offset: 198px;
  --gift-card-carousel-far-offset: 284px;
  width: 150px;
}

.gift-card-style-option.is-before,
.gift-card-style-option.is-after {
  opacity: 0.76;
}

.gift-card-carousel-arrow {
  width: 46px;
  height: 46px;
}

.gift-card-carousel-arrow::before {
  width: 12px;
  height: 12px;
  border-width: 2.4px;
}

.gift-card-style-dots {
  gap: 12px;
}

.gift-card-style-dots button,
.gift-card-style-dots button.is-selected {
  width: 12px;
  height: 12px;
}

.gift-dialog-details {
  gap: 12px;
}

.gift-dialog-fields {
  gap: 10px;
}

.gift-dialog-field {
  grid-template-columns: 26px 92px minmax(0, 1fr);
  min-height: 56px;
  gap: 10px;
  padding: 0 18px;
  border-radius: 22px;
}

.gift-dialog-field::before {
  width: 24px;
  height: 24px;
}

.gift-dialog-field span,
.gift-dialog-fields input,
.gift-dialog-fields textarea {
  font-size: 1rem;
}

.gift-dialog-fields input {
  min-height: 54px;
}

.gift-dialog-fields textarea {
  min-height: 54px;
  padding-top: 16px;
}

.gift-dialog-link-row {
  grid-template-columns: 48px minmax(0, 1fr) 128px;
  gap: 14px;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 20px;
}

.gift-dialog-link-icon {
  width: 42px;
  height: 58px;
  border-radius: 16px;
}

.gift-dialog-link-copy {
  gap: 6px;
}

.gift-dialog-link-copy strong {
  font-size: 1rem;
}

#gift-dialog-link {
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

#gift-copy-button {
  min-width: 128px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 1rem;
}

#gift-copy-button::after {
  width: 18px;
  height: 18px;
}

.gift-dialog-actions {
  gap: 18px;
}

.gift-dialog-main-actions {
  gap: 16px;
}

.gift-dialog-main-actions button {
  min-height: 58px;
  gap: 11px;
  font-size: clamp(1rem, 2.4vw, 1.24rem);
}

#gift-save-button::before,
#gift-view-button::before {
  width: 23px;
  height: 23px;
}

.gift-dialog-share-block {
  gap: 16px;
}

.gift-dialog-share-title {
  gap: 22px;
}

.gift-dialog-share-title strong {
  font-size: 0.98rem;
}

.gift-dialog-share-actions {
  padding: 0 42px;
}

.gift-dialog-share-button {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
}

.gift-dialog-share-button::before {
  width: 29px;
  height: 29px;
}

@media (max-width: 720px) {
  .gift-dialog-sheet {
    width: 100vw;
    gap: 14px;
    padding: 18px 14px 20px;
  }

  .gift-dialog-head {
    min-height: 58px;
    padding: 0 44px;
  }

  .gift-dialog-head h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.15rem);
  }

  .gift-dialog-track {
    font-size: 0.92rem;
  }

  .gift-dialog-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .gift-dialog-preview {
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    min-height: 76px;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 19px;
  }

  .gift-dialog-cover {
    width: 58px;
    border-radius: 13px;
  }

  .gift-dialog-preview-copy strong {
    font-size: 1rem;
  }

  .gift-dialog-preview-copy span {
    font-size: 0.82rem;
  }

  .gift-dialog-preview-play {
    width: 34px;
    height: 34px;
  }

  .gift-card-style-options {
    min-height: 180px;
  }

  .gift-card-style-option {
    --gift-card-carousel-side-offset: clamp(96px, 29vw, 112px);
    --gift-card-carousel-far-offset: clamp(138px, 42vw, 165px);
    width: clamp(88px, 27vw, 104px);
  }

  .gift-card-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .gift-dialog-field {
    grid-template-columns: 22px 54px minmax(0, 1fr);
    min-height: 48px;
    gap: 8px;
    padding: 0 12px;
    border-radius: 17px;
  }

  .gift-dialog-field span,
  .gift-dialog-fields input,
  .gift-dialog-fields textarea {
    font-size: 0.86rem;
  }

  .gift-dialog-link-row {
    grid-template-columns: 38px minmax(0, 1fr) 95px;
    min-height: 68px;
    gap: 8px;
    padding: 10px;
  }

  .gift-dialog-link-icon {
    width: 36px;
    height: 48px;
  }

  #gift-copy-button {
    min-width: 95px;
    min-height: 42px;
    font-size: 0.84rem;
  }

  .gift-dialog-main-actions button {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .gift-dialog-share-actions {
    padding: 0 4px;
  }

  .gift-dialog-share-button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .gift-dialog-share-button::before {
    width: 22px;
    height: 22px;
  }
}

.gift-dialog-fields input:focus,
.gift-dialog-fields textarea:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  outline: 0;
  transform: none;
}

.gift-dialog-field:focus-within {
  border-color: rgba(23, 48, 32, 0.12);
  box-shadow: 0 9px 24px rgba(19, 41, 28, 0.035);
}

.gift-dialog-message-field {
  border-radius: 14px;
}

.gift-dialog-message-field textarea {
  min-height: 74px;
  padding: 6px 10px 6px 4px;
  overflow: auto;
  line-height: 1.45;
}

.gift-dialog-share-title strong {
  font-weight: 300;
}

.gift-dialog-share-actions {
  justify-content: center;
  gap: clamp(28px, 8vw, 58px);
  padding-inline: 0;
}

.gift-dialog-status {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .gift-card-style-options {
    min-height: clamp(188px, 55vw, 218px);
    padding-block: 12px;
    overflow: hidden;
  }

  .gift-card-style-option {
    --gift-card-carousel-side-offset: clamp(88px, 27vw, 108px);
    --gift-card-carousel-far-offset: clamp(128px, 39vw, 154px);
    width: clamp(78px, 24vw, 94px);
  }

  .gift-card-style-option.is-selected .gift-card-style-preview {
    box-shadow:
      0 0 0 2px rgba(88, 187, 124, 0.78),
      0 14px 24px rgba(24, 65, 39, 0.1);
  }

  .gift-card-carousel-arrow {
    top: 50%;
  }
}

@media (max-width: 720px) {
  #gift-copy-button {
    gap: 7px;
    padding-inline: 11px;
  }

  #gift-copy-button::after {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
}

.gift-card-style-option.is-selected .gift-card-style-preview {
  box-shadow:
    0 0 0 1px rgba(88, 187, 124, 0.78),
    0 14px 24px rgba(24, 65, 39, 0.1);
}

.gift-card-carousel-arrow {
  width: 28px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(17, 27, 21, 0.88);
}

.gift-card-carousel-arrow:hover {
  background: transparent;
  box-shadow: none;
}

.gift-card-carousel-arrow::before {
  width: 10px;
  height: 10px;
  border-top-width: 2px;
  border-left-width: 2px;
}

@media (max-width: 720px) {
  .gift-card-carousel-arrow {
    width: 22px;
    height: 36px;
  }

  .gift-card-carousel-arrow::before {
    width: 8px;
    height: 8px;
    border-width: 1.7px;
  }
}

.gift-dialog-close {
  position: fixed;
  top: max(14px, calc(2svh + 24px));
  right: max(20px, calc((100vw - 760px) / 2 + 30px));
  z-index: 400;
  margin: 0;
}

@media (max-width: 720px) {
  .gift-dialog-close {
    top: max(12px, calc(6svh + 14px));
    right: 14px;
    margin: 0;
  }
}

@media (min-width: 721px) {
  .gift-dialog-sheet {
    width: min(1268px, calc(100vw - 96px));
    max-height: min(88svh, 890px);
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    grid-template-areas:
      "head head"
      "preview preview"
      "cards details"
      "cards link"
      "cards main"
      "footer footer"
      "status status";
    column-gap: 44px;
    row-gap: 20px;
    padding: 30px 54px 38px;
  }

  .gift-dialog-head {
    grid-area: head;
    min-height: 86px;
    padding-inline: 92px;
  }

  .gift-dialog-head h2 {
    font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  }

  .gift-dialog-preview {
    grid-area: preview;
    width: min(1034px, 100%);
    justify-self: center;
    grid-template-columns: 116px minmax(0, 1fr) 54px;
    min-height: 145px;
    gap: 24px;
    padding: 14px 28px 14px 20px;
    border-radius: 24px;
  }

  .gift-dialog-cover {
    width: 116px;
    border-radius: 18px;
  }

  .gift-dialog-preview-copy strong {
    font-size: clamp(1.48rem, 2vw, 1.9rem);
  }

  .gift-dialog-preview-copy span {
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  }

  .gift-dialog-preview-play {
    width: 52px;
    height: 52px;
  }

  .gift-card-style-fieldset {
    grid-area: cards;
    align-self: start;
    min-width: 0;
    padding-top: 8px;
  }

  .gift-card-style-fieldset legend,
  .gift-dialog-details h3 {
    font-size: 1.28rem;
    font-weight: 520;
  }

  .gift-card-style-options {
    min-height: 350px;
    margin-inline: -22px;
    padding-block: 18px;
    overflow: visible;
  }

  .gift-card-style-option {
    --gift-card-carousel-side-offset: clamp(158px, 16vw, 224px);
    --gift-card-carousel-far-offset: clamp(230px, 24vw, 318px);
    width: clamp(142px, 13vw, 180px);
  }

  .gift-card-style-option.is-before,
  .gift-card-style-option.is-after {
    opacity: 0.82;
    filter: saturate(0.9) brightness(1.01);
  }

  .gift-card-style-preview {
    border-radius: 22px;
  }

  .gift-card-style-option.is-selected .gift-card-style-preview {
    box-shadow:
      0 0 0 1px rgba(88, 187, 124, 0.78),
      0 20px 34px rgba(24, 65, 39, 0.12);
  }

  .gift-card-style-dots {
    margin-top: 0;
  }

  .gift-card-carousel-arrow-prev {
    left: -20px;
  }

  .gift-card-carousel-arrow-next {
    right: -20px;
  }

  .gift-dialog-details {
    grid-area: details;
    align-self: start;
    gap: 14px;
    padding-top: 8px;
  }

  .gift-dialog-fields {
    gap: 11px;
  }

  .gift-dialog-field {
    grid-template-columns: 25px 78px minmax(0, 1fr);
    min-height: 55px;
    gap: 11px;
    padding-inline: 16px;
    border-radius: 18px;
  }

  .gift-dialog-field::before {
    width: 23px;
    height: 23px;
  }

  .gift-dialog-field span,
  .gift-dialog-fields input,
  .gift-dialog-fields textarea {
    font-size: 0.98rem;
  }

  .gift-dialog-fields input {
    min-height: 53px;
  }

  .gift-dialog-message-field textarea {
    min-height: 54px;
    padding-top: 5px;
  }

  .gift-dialog-link-row {
    grid-area: link;
    min-height: 96px;
    grid-template-columns: 48px minmax(0, 1fr) 128px;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 18px;
  }

  .gift-dialog-link-icon {
    width: 42px;
    height: 58px;
  }

  .gift-dialog-status {
    grid-area: status;
    min-height: 1em;
    margin: -8px 0 0;
  }

  .gift-dialog-actions {
    display: contents;
  }

  .gift-dialog-main-actions {
    grid-area: main;
    align-self: start;
    gap: 18px;
  }

  .gift-dialog-main-actions button {
    min-height: 58px;
    font-size: 1.08rem;
  }

  .gift-dialog-share-block {
    grid-area: footer;
    margin-top: 8px;
    gap: 18px;
  }

  .gift-dialog-share-title {
    gap: 30px;
  }

  .gift-dialog-share-actions {
    gap: 48px;
    padding: 0;
  }

  .gift-dialog-share-button {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
  }

  .gift-dialog-close {
    top: max(24px, calc((100svh - min(88svh, 890px)) / 2 + 24px));
    right: max(34px, calc((100vw - 1268px) / 2 + 34px));
  }
}

