/* SyncTunez — cinematic landing + simple studio dashboard */

:root {
  --st-gold: #d4a45a;
  --st-gold-2: #f0d9a6;
  --st-ink: #0b0a09;
}

body.synctunez.landing,
body.synctunez.auth-split,
body.synctunez.dashboard {
  --font-display: "Fraunces", "Times New Roman", serif;
}

body.synctunez .st-title,
body.synctunez .st-land-h,
body.synctunez .landing-hero-title,
body.synctunez .paywall-title,
body.synctunez .st-cta-band h2,
body.synctunez .auth-split__title {
  font-family: var(--font-display);
  font-weight: 520;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

body.synctunez.landing {
  --accent: var(--st-gold);
  --accent-hover: var(--st-gold-2);
}

body.synctunez.landing::before {
  background:
    radial-gradient(ellipse 70% 50% at 18% 0%, rgba(212, 164, 90, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 255, 255, 0.04), transparent 50%),
    #090807;
}

body.synctunez.landing .landing-kicker,
body.synctunez .st-eyebrow,
body.synctunez .st-kicker {
  color: var(--st-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

body.synctunez.landing .btn-primary,
body.synctunez.dashboard .btn-primary,
body.synctunez.paywall .btn-primary {
  background: var(--st-gold);
  color: #1a1408;
  border-color: var(--st-gold);
}

body.synctunez.landing .btn-primary:hover,
body.synctunez.dashboard .btn-primary:hover {
  background: var(--st-gold-2);
  color: #1a1408;
}

body.synctunez.landing .landing-hero-title,
body.synctunez.landing .vetbill-hero-display {
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  max-width: 18ch;
  line-height: 1.15;
}

body.synctunez.landing .landing-lede,
body.synctunez.landing .vetbill-hero-lede {
  max-width: 34rem;
  font-size: 0.95rem;
  color: #c9c3b8;
}

body.synctunez .st-hero-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 164, 90, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: #12100d;
}

body.synctunez .st-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.synctunez .st-hero-photo--agent {
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

body.synctunez .st-hero-photo--agent img {
  height: 100%;
  min-height: 100dvh;
  object-fit: cover;
}

.st-land-section {
  padding: 56px 0;
}

.st-land-section--soft {
  background: rgba(255, 255, 255, 0.02);
}

.st-land-h {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  max-width: 22ch;
  margin: 0 0 10px;
}

.st-land-lede {
  max-width: 38rem;
  color: #b9b3a8;
  font-size: 0.95rem;
}

.st-land-split {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .st-land-split {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
  }
}

.st-quote {
  border-left: 3px solid var(--st-gold);
  padding: 8px 0 8px 22px;
  color: #ece7dc;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.st-quote span {
  display: block;
  margin-top: 12px;
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: #8c8578;
}

.st-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.st-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.st-steps span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(212, 164, 90, 0.14);
  color: var(--st-gold);
  font-weight: 600;
}

.st-steps p {
  margin: 6px 0 0;
  color: #a39b8e;
}

.st-keep-grid {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

@media (min-width: 800px) {
  .st-keep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-keep-grid li {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
  background: #12100d;
}

.st-keep-grid strong {
  display: block;
  margin-bottom: 8px;
}

.st-keep-grid span {
  color: #a39b8e;
}

.st-plan-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 700px) {
  .st-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .st-plan-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.st-plan {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 24px;
  background: #12100d;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-plan--hot {
  border-color: rgba(212, 164, 90, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.st-plan-flag {
  color: var(--st-gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.st-plan-name {
  margin: 0;
  font-weight: 600;
}

.st-plan-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0;
}

.st-plan-tag {
  color: #a39b8e;
  margin: 0 0 8px;
}

.st-plan ul {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  color: #cfc8bc;
  flex: 1;
}

.st-plan-btn {
  text-align: center;
}

.st-plan-foot {
  margin-top: 20px;
  color: #8c8578;
}

.st-practice-row {
  display: grid;
  gap: 20px;
  color: #b9b3a8;
  max-width: 52rem;
}

.st-cta-band {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(212, 164, 90, 0.12), transparent);
  text-align: center;
}

.st-cta-band h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  max-width: 22ch;
  margin: 0 auto 10px;
}

.st-cta-band p {
  color: #c9c3b8;
  max-width: 34rem;
  margin: 0 auto 22px;
}

.st-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard — light studio */
body.synctunez.dashboard {
  --bg: #f6f4f0;
  --bg-elevated: #ffffff;
  --text: #1c1916;
  --text-muted: #5c564e;
  --st-gold: #b8862e;
  --st-gold-2: #8a671f;
}

body.synctunez.dashboard .dash-sidebar {
  background: #ffffff;
  border-right-color: rgba(28, 25, 22, 0.08);
}

body.synctunez.dashboard .dash-nav a.active {
  color: var(--st-gold-2);
  background: rgba(184, 134, 46, 0.1);
}

body.synctunez.dashboard .profile-form {
  max-width: 28rem;
}

body.synctunez.dashboard .st-title,
body.synctunez.dashboard .st-land-h {
  color: #1c1916;
}

.st-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.st-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin: 6px 0 8px;
}

.st-lede {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
  font-size: 0.95rem;
}

.st-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0ece4;
  color: #3f3a34;
  font-size: 0.85rem;
  white-space: nowrap;
}

.st-chip--gold {
  background: rgba(184, 134, 46, 0.14);
  color: #8a671f;
}

.st-chip--warn {
  background: rgba(184, 92, 46, 0.14);
  color: #8a4a1f;
}

.st-onboard {
  display: grid;
  gap: 16px;
}

.st-onboard__progress {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.st-onboard__dots {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-onboard__dots li {
  width: 28%;
  height: 4px;
  border-radius: 99px;
  background: #e6e0d6;
}

.st-onboard__dots li.is-active,
.st-onboard__dots li.is-done {
  background: var(--st-gold);
}

.st-onboard__switch {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.st-onboard__step {
  display: none !important;
}

.st-onboard:has(#st-onb-1:checked) .st-onboard__step[data-step="1"],
.st-onboard:has(#st-onb-2:checked) .st-onboard__step[data-step="2"],
.st-onboard:has(#st-onb-3:checked) .st-onboard__step[data-step="3"],
.st-onboard:has(#st-onb-4:checked) .st-onboard__step[data-step="4"] {
  display: block !important;
}

.st-onboard__progress-n {
  display: none;
}

.st-onboard:has(#st-onb-1:checked) .st-onboard__progress-n[data-for="1"],
.st-onboard:has(#st-onb-2:checked) .st-onboard__progress-n[data-for="2"],
.st-onboard:has(#st-onb-3:checked) .st-onboard__progress-n[data-for="3"],
.st-onboard:has(#st-onb-4:checked) .st-onboard__progress-n[data-for="4"] {
  display: inline;
}

.st-onboard__dots li {
  background: #e6e0d6;
}

.st-onboard:has(#st-onb-1:checked) .st-onboard__dots li:nth-child(1),
.st-onboard:has(#st-onb-2:checked) .st-onboard__dots li:nth-child(-n+2),
.st-onboard:has(#st-onb-3:checked) .st-onboard__dots li:nth-child(-n+3),
.st-onboard:has(#st-onb-4:checked) .st-onboard__dots li:nth-child(-n+4) {
  background: var(--st-gold);
}

.st-onboard__nav .btn,
.st-onboard__nav label.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  user-select: none;
}

.st-onboard__error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fde8e8;
  color: #9b1c1c;
  font-size: 0.9rem;
}

.st-onboard__nav .btn {
  cursor: pointer;
  pointer-events: auto;
}

.st-onboard__step h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.st-onboard__hint {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.st-onboard__nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.st-onboard__focus {
  border: 0;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.st-onboard__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.st-agent-apps {
  display: grid;
  gap: 16px;
}

.st-agent-app {
  border: 1px solid rgba(28, 25, 22, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: #faf8f4;
}

.st-agent-app__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.st-agent-app__email {
  margin: 0;
  font-weight: 600;
}

.st-agent-app__dl {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.st-agent-app__dl div {
  display: grid;
  gap: 2px;
}

.st-agent-app__dl dt {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.st-agent-app__dl dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.st-agent-app__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.st-panel {
  background: #ffffff;
  border: 1px solid rgba(28, 25, 22, 0.08);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(28, 25, 22, 0.04);
}

.st-panel h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #1c1916;
}

.st-panel-lead,
.st-muted {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.st-form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .st-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tailwind / shadcn-style fields — beat leftover system inputs */
body.vetbill.synctunez.dashboard .st-field,
body.synctunez.auth-split .st-field,
body.vetbill.synctunez.dashboard .dash-settings .st-field {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

body.vetbill.synctunez.dashboard .st-field__label,
body.synctunez.auth-split .st-field__label {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: #57534e;
}

body.vetbill.synctunez.dashboard .st-field__control,
body.synctunez.auth-split .st-field__control,
body.vetbill.synctunez.dashboard .st-field input,
body.vetbill.synctunez.dashboard .st-field textarea,
body.vetbill.synctunez.dashboard .st-field select,
body.synctunez.auth-split .st-field input,
body.synctunez.auth-split .st-field textarea,
body.synctunez.auth-split .st-field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 11px 14px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 450 !important;
  color: #1c1916 !important;
  -webkit-text-fill-color: #1c1916 !important;
  background: #f4f1ea !important;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

body.vetbill.synctunez.dashboard .st-field__control--area,
body.synctunez.auth-split .st-field__control--area,
body.vetbill.synctunez.dashboard .st-field textarea,
body.synctunez.auth-split .st-field textarea {
  min-height: 112px !important;
  resize: vertical;
}

body.vetbill.synctunez.dashboard .st-field__control::placeholder,
body.synctunez.auth-split .st-field__control::placeholder,
body.vetbill.synctunez.dashboard .st-field input::placeholder,
body.vetbill.synctunez.dashboard .st-field textarea::placeholder {
  color: #a8a29e !important;
  -webkit-text-fill-color: #a8a29e !important;
}

body.vetbill.synctunez.dashboard .st-field__control:hover,
body.synctunez.auth-split .st-field__control:hover {
  background: #efece4 !important;
}

body.vetbill.synctunez.dashboard .st-field__control:focus,
body.synctunez.auth-split .st-field__control:focus,
body.vetbill.synctunez.dashboard .st-field input:focus,
body.vetbill.synctunez.dashboard .st-field textarea:focus,
body.vetbill.synctunez.dashboard .st-field select:focus {
  background: #ffffff !important;
  border-color: rgba(184, 134, 46, 0.45) !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 46, 0.16) !important;
}

body.vetbill.synctunez.dashboard .st-field input:-webkit-autofill,
body.vetbill.synctunez.dashboard .st-field input:-webkit-autofill:focus,
body.synctunez.auth-split .st-field input:-webkit-autofill {
  -webkit-text-fill-color: #1c1916 !important;
  box-shadow: 0 0 0 1000px #f4f1ea inset !important;
}

.st-field__select {
  position: relative;
  display: block;
}

.st-field__select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-right: 2px solid #78716c;
  border-bottom: 2px solid #78716c;
  transform: translateY(-70%) rotate(45deg);
}

.st-field__select .st-field__control,
.st-field__select select {
  padding-right: 40px !important;
  cursor: pointer;
}

.st-checks {
  display: grid;
  gap: 10px;
  margin: 4px 0 18px;
}

.st-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #3f3a34;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.st-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.st-check__box {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  background: #f4f1ea;
  box-shadow: inset 0 0 0 1px rgba(28, 25, 22, 0.08);
  position: relative;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.st-check__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.12s ease;
}

.st-check input:checked + .st-check__box {
  background: #b8862e;
  box-shadow: none;
}

.st-check input:checked + .st-check__box::after {
  transform: rotate(45deg) scale(1);
}

.st-check input:focus-visible + .st-check__box {
  box-shadow: 0 0 0 4px rgba(184, 134, 46, 0.16);
}

.st-drop {
  display: block;
  margin: 4px 0 20px;
  cursor: pointer;
}

.st-drop__input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
}

.st-drop__ui {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 28px 18px;
  text-align: center;
  border-radius: 16px;
  background: #f4f1ea;
  box-shadow: inset 0 0 0 1.5px rgba(28, 25, 22, 0.08);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.st-drop:hover .st-drop__ui,
.st-drop.is-drag .st-drop__ui {
  background: #fff8ea;
  box-shadow: inset 0 0 0 1.5px rgba(184, 134, 46, 0.45);
}

.st-drop.has-file .st-drop__ui {
  background: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(184, 134, 46, 0.35);
}

.st-drop__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(#b8862e, #b8862e) 17px 10px / 2px 16px no-repeat,
    linear-gradient(#b8862e, #b8862e) 10px 17px / 16px 2px no-repeat,
    #fff;
  box-shadow: 0 1px 2px rgba(28, 25, 22, 0.08);
}

.st-drop__title {
  font-size: 15px;
  font-weight: 600;
  color: #1c1916;
}

.st-drop__meta,
.st-drop__name {
  font-size: 13px;
  color: #78716c;
}

.st-drop__name:not(:empty) {
  color: #8a671f;
  font-weight: 600;
}

body.vetbill.synctunez.dashboard .btn-primary,
body.synctunez.auth-split .btn-primary {
  min-height: 44px;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 1px 2px rgba(28, 25, 22, 0.06);
}

body.vetbill.synctunez.dashboard .form-footer {
  margin-top: 8px;
}

body.vetbill.synctunez.dashboard .form-footer .btn {
  width: auto;
}

body.synctunez.auth-split .field {
  display: grid;
  gap: 7px;
}

body.synctunez.auth-split .field label {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: #57534e;
  margin: 0;
}

body.synctunez.auth-split .field input,
body.synctunez.auth-split .field textarea {
  appearance: none !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 11px 14px !important;
  font-size: 15px !important;
  color: #1c1916 !important;
  background: #f4f1ea !important;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

body.synctunez.auth-split .field input:focus,
body.synctunez.auth-split .field textarea:focus {
  background: #ffffff !important;
  border-color: rgba(184, 134, 46, 0.45) !important;
  box-shadow: 0 0 0 4px rgba(184, 134, 46, 0.16) !important;
}

.st-table-wrap {
  overflow-x: auto;
}

.st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.st-table th,
.st-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(28, 25, 22, 0.08);
  vertical-align: top;
  color: #1c1916;
}

.st-table th {
  color: #5c564e;
  font-weight: 600;
}

.st-table strong {
  display: block;
}

.st-audio {
  width: min(100%, 280px);
  margin-top: 8px;
  height: 36px;
}

.st-status {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.st-status--curated { color: #167c3a; }
.st-status--pending { color: #8a671f; }
.st-status--rejected { color: #b42318; }

.st-inline {
  display: inline-flex;
  margin-right: 6px;
}

.st-empty {
  color: var(--text-muted);
}

.st-practice-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .st-practice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #3f3a34;
}

.st-list li + li {
  margin-top: 8px;
}

.st-search {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

@media (min-width: 800px) {
  .st-search {
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: end;
  }
}

.st-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.st-tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f0ece4;
  color: #3f3a34;
}

.st-tabs a.is-active {
  background: rgba(184, 134, 46, 0.16);
  color: #8a671f;
}

.st-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.st-stat {
  background: #ffffff;
  border: 1px solid rgba(28, 25, 22, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.st-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.st-stat strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.st-desk-switch {
  display: flex;
  gap: 8px;
  margin: 10px 16px 16px;
}

.st-desk-switch button,
.st-desk-switch .btn {
  flex: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Paywall tiers */
.paywall-tier-grid--synctunez {
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .paywall-tier-grid--synctunez {
    grid-template-columns: repeat(3, 1fr);
  }
}

.paywall-tier-card--synctunez {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: #141210;
}

.paywall-tier-card--synctunez.is-featured {
  border-color: rgba(212, 164, 90, 0.45);
}

.paywall-layout--synctunez {
  max-width: 1100px;
}

.st-support-ticket {
  border: 1px solid rgba(28, 25, 22, 0.08);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  background: #faf8f4;
}

.st-support-ticket.is-focus {
  border-color: rgba(184, 134, 46, 0.45);
}

.st-support-ticket--closed {
  opacity: 0.88;
}

.st-support-ticket__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.st-support-ticket__head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.st-support-thread {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.st-support-bubble {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(28, 25, 22, 0.06);
}

.st-support-bubble--admin {
  background: rgba(184, 134, 46, 0.1);
}

.st-support-bubble__meta {
  margin: 0 0 4px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.st-support-bubble__body {
  margin: 0;
  overflow-wrap: anywhere;
}

.st-support-reply textarea {
  width: 100%;
  resize: vertical;
}

.st-support-closed {
  margin-top: 18px;
}

.st-support-closed summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 10px;
}

.st-support-admin {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .st-support-admin {
    grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
    align-items: start;
  }
}

.st-support-inbox {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.st-support-inbox__item {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #faf8f4;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
}

.st-support-inbox__item.is-active {
  border-color: rgba(184, 134, 46, 0.45);
  background: #fff;
}

.st-support-inbox__preview {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.st-support-admin__actions {
  margin-bottom: 10px;
}
