:root {
  --bg: #e7ebef;
  --panel: #ffffff;
  --panel-alt: #f4f7fb;
  --border: #cfd9e6;
  --text: #233142;
  --muted: #66768a;
  --brand: #4a76a8;
  --brand-dark: #365f8d;
  --brand-soft: #e8f0fb;
  --accent: #2f9b8f;
  --accent-soft: #e6f4f2;
  --warm: #d86f4a;
  --warm-soft: #fff0e9;
  --gold: #d9a441;
  --shadow: 0 16px 38px rgba(47, 74, 108, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f6f8fa 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Onest", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  --nav-toggle-bg: var(--brand-soft);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(233, 239, 247, 0.94);
  border-bottom: 1px solid rgba(207, 217, 230, 0.9);
  box-shadow: 0 10px 26px rgba(47, 74, 108, 0.06);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: grid;
  gap: 8px;
  padding: 10px 0 9px;
}

.site-nav__top {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.site-nav__brand {
  justify-self: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #6b95c3);
  color: #fff;
  box-shadow: var(--shadow);
}

.brand__mark--image {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.brand__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.15;
  font-size: 22px;
}

.brand__text span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a,
.account-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
}

.account-link {
  justify-self: end;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-dark);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.account-link:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
  text-decoration: none;
}

.nav-toggle {
  min-height: 40px;
  width: fit-content;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--nav-toggle-bg, #fff);
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
}

.nav-toggle:hover {
  background: var(--brand-soft);
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: max(20px, calc((100vw - 1160px) / 2));
  z-index: 80;
  display: grid;
  width: min(320px, calc(100vw - 40px));
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.site-menu-panel[hidden] {
  display: none;
}

.site-menu-link {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.site-menu-link i {
  width: 18px;
  color: var(--brand-dark);
  text-align: center;
}

.site-menu-link:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
  text-decoration: none;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(20, 31, 44, 0.86), rgba(35, 49, 66, 0.42)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero__inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 58px;
}

.page-hero__kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.page-hero--plus {
  --hero-image: linear-gradient(135deg, #365f8d 0%, #2f9b8f 55%, #d9a441 120%);
  min-height: 500px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--light {
  background: #fff;
  color: var(--brand-dark);
}

.btn--light:hover {
  background: var(--brand-soft);
}

.btn--warm {
  background: var(--warm);
  color: #fff;
}

.btn--warm:hover {
  background: #bf5f3f;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.quick-strip {
  margin-top: -28px;
}

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

.quick-item {
  min-height: 92px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quick-item strong {
  color: var(--brand-dark);
  font-size: 20px;
}

.quick-item span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.38);
}

.ad-section {
  padding: 28px 0 8px;
  background: rgba(244, 247, 251, 0.72);
}

.static-ad-slot {
  width: 100%;
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section__head p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-grid,
.card-grid,
.social-grid,
.resource-grid,
.video-grid,
.artist-list,
.order-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.info-card,
.social-card,
.resource-card,
.video-card,
.artist-card,
.order-card,
.notice-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card,
.info-card,
.social-card,
.notice-card {
  padding: 20px;
}

.feature-card i,
.info-card i,
.social-card i,
.notice-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.feature-card:nth-child(2n) i,
.info-card:nth-child(2n) i {
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-card:nth-child(3n) i,
.info-card:nth-child(3n) i {
  background: var(--warm-soft);
  color: var(--warm);
}

.feature-card h3,
.info-card h3,
.social-card h3,
.resource-card h3,
.video-card h3,
.artist-card h3,
.order-card h3,
.notice-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.info-card p,
.social-card p,
.resource-card p,
.video-card p,
.artist-card p,
.order-card p,
.notice-card p {
  margin: 0;
  color: var(--muted);
}

.apps-page {
  min-height: calc(100vh - 250px);
  display: grid;
  align-items: center;
  padding: 74px 0;
}

.apps-page__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.apps-page__head h1 {
  margin: 0;
  color: #1f3043;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.apps-page__head p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.apps-page__logo {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.apps-page__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.app-shortcut {
  position: relative;
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.app-shortcut:hover {
  border-color: rgba(74, 118, 168, 0.5);
  box-shadow: 0 18px 42px rgba(47, 74, 108, 0.14);
  text-decoration: none;
  transform: translateY(-2px);
}

.app-shortcut__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 22px;
}

.app-shortcut:nth-child(2) .app-shortcut__icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.app-shortcut:nth-child(3) .app-shortcut__icon {
  background: var(--warm-soft);
  color: var(--warm);
}

.app-shortcut h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.18;
}

.app-shortcut p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.app-shortcut__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  background: #fff8e8;
  color: #95670c;
  font-size: 12px;
  font-weight: 900;
}

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

.media-tile {
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7ef;
  min-height: 180px;
}

.media-tile--tall {
  grid-row: span 2;
}

.media-tile img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.link-stack {
  display: grid;
  gap: 10px;
}

.flow-list strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.legal-section {
  scroll-margin-top: 96px;
}

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

.legal-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card__number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.legal-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

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

.legal-card p + p {
  margin-top: 10px;
}

.plus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.plus-price-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.plus-price-card h2 {
  font-size: 38px;
}

.plus-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0;
}

.plus-price strong {
  color: var(--brand-dark);
  font-size: 42px;
  line-height: 1;
}

.plus-price span,
.plus-fine-print,
.legal-note {
  color: var(--muted);
}

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

.plus-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plus-list i {
  margin-top: 5px;
  color: var(--accent);
}

.plus-payment-note,
.legal-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid #e5c777;
  border-radius: 8px;
  background: #fff8dc;
  color: #6e581c;
}

.plus-payment-note p,
.legal-alert p {
  margin: 0;
}

.manual-payment {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #dcc36f;
  border-radius: 10px;
  background: linear-gradient(145deg, #fffdf5, #fff7d9);
}

.manual-payment__head,
.manual-payment__number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.manual-payment__head h3 {
  margin: 4px 0 0;
}

.manual-payment__label {
  color: #7a5c10;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.manual-payment__amount {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #735810;
  color: #fff;
  font-weight: 800;
}

.manual-payment__number-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 7px;
  border: 1px solid #d7c173;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(115, 88, 16, .1);
}

.manual-payment__card-number {
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 7px 10px;
}

.manual-payment__card-label {
  color: #837348;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.manual-payment__number-row code {
  color: #242d3a;
  font-family: "Onest", sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}

.manual-payment__copy {
  flex: 0 0 auto;
  min-width: 148px;
  min-height: 50px;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: #365f8d;
  color: #fff;
  box-shadow: 0 8px 18px rgba(54, 95, 141, .2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.manual-payment__copy:hover {
  background: #2e537c;
  color: #fff;
  box-shadow: 0 10px 22px rgba(54, 95, 141, .28);
  transform: translateY(-1px);
}

.manual-payment__copy:active {
  box-shadow: 0 4px 10px rgba(54, 95, 141, .18);
  transform: translateY(0);
}

.manual-payment__copy.is-copied {
  background: #2f7a58;
  box-shadow: 0 8px 18px rgba(47, 122, 88, .22);
}

.manual-payment__copy i {
  font-size: 16px;
}

.manual-payment__feedback {
  min-height: 20px;
  margin-top: -10px;
  color: #256a48;
  font-size: 13px;
  font-weight: 700;
}

.manual-payment__feedback:empty {
  display: none;
}

.manual-payment__steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: #4f4a36;
}

.manual-payment__submit {
  width: 100%;
}

.manual-payment__status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.manual-payment__status a {
  font-weight: 800;
}

.plus-server-checkout {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #f8fafc;
  box-sizing: border-box;
}

.plus-payment-followup [hidden],
.plus-payment-return[hidden] {
  display: none !important;
}

.plus-server-checkout__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.plus-server-checkout__head > i {
  flex: 0 0 auto;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: #e9f2fb;
  color: #315f91;
}

.plus-server-checkout__head h3,
.plus-server-checkout__head p {
  margin: 0;
}

.plus-server-checkout__head h3 {
  color: #263547;
  font-size: 17px;
}

.plus-server-checkout__head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.plus-duration-picker {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #fff;
}

.plus-duration-picker__label,
.plus-duration-picker__body,
.plus-duration-total {
  min-width: 0;
}

.plus-duration-picker__label,
.plus-duration-picker__body {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.plus-duration-picker__label {
  align-items: baseline;
}

.plus-duration-picker__label label {
  color: #263547;
  font-weight: 800;
}

.plus-duration-picker__label span {
  color: var(--muted);
  font-size: 12px;
}

.plus-duration-picker__body {
  align-items: stretch;
}

.plus-duration-stepper {
  display: grid;
  grid-template-columns: 44px minmax(68px, 82px) 44px;
  flex: 0 0 auto;
  min-height: 44px;
  border: 1px solid #c9d5e2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.plus-duration-stepper button,
.plus-duration-stepper input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #263547;
}

.plus-duration-stepper button {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.plus-duration-stepper button:first-child {
  border-right: 1px solid #d9e2ec;
}

.plus-duration-stepper button:last-child {
  border-left: 1px solid #d9e2ec;
}

.plus-duration-stepper button:hover:not(:disabled) {
  background: #e9f2fb;
  color: #315f91;
}

.plus-duration-stepper button:focus-visible,
.plus-duration-stepper input:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(49, 95, 145, .2);
  outline-offset: -3px;
}

.plus-duration-stepper button:disabled {
  color: #a9b5c2;
  cursor: not-allowed;
}

.plus-duration-stepper input {
  width: 100%;
  padding: 0 6px;
  appearance: textfield;
  text-align: center;
  font: inherit;
  font-weight: 900;
}

.plus-duration-stepper input::-webkit-inner-spin-button,
.plus-duration-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.plus-duration-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  flex: 1 1 auto;
  column-gap: 12px;
  text-align: right;
}

.plus-duration-total > span,
.plus-duration-total > small {
  color: var(--muted);
}

.plus-duration-total > span {
  align-self: end;
  font-size: 12px;
}

.plus-duration-total > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  white-space: nowrap;
  color: #263547;
  font-size: 22px;
}

.plus-duration-total > small {
  align-self: start;
  font-size: 12px;
}

.plus-checkout-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.plus-checkout-button:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.plus-payment-followup {
  display: grid;
  gap: 13px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #fff;
}

.plus-payment-followup__head,
.plus-payment-return {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.plus-payment-followup__head > i,
.plus-payment-return > i {
  flex: 0 0 auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #e9f2fb;
  color: #315f91;
}

.plus-payment-followup__head h3,
.plus-payment-followup__head p {
  margin: 0;
}

.plus-payment-followup__head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.plus-payment-return {
  padding: 12px;
  border: 1px solid #8bc9ad;
  border-radius: 8px;
  background: #edf9f3;
  color: #245f46;
}

.plus-payment-return > i {
  width: 32px;
  height: 32px;
  background: #d7f1e4;
  color: #287251;
}

.plus-payment-return div,
.plus-payment-return span {
  display: block;
}

.plus-payment-return span {
  margin-top: 2px;
  font-size: 13px;
}

.plus-info-stack {
  display: grid;
  gap: 14px;
}

.plus-hero {
  min-height: 620px;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(24, 34, 48, .88), rgba(54, 95, 141, .66)),
    linear-gradient(135deg, #365f8d 0%, #2f9b8f 58%, #d9a441 125%);
}

.plus-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .82fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(78px, 9vw, 124px) 0 clamp(54px, 8vw, 86px);
}

.plus-hero__copy {
  min-width: 0;
}

.plus-hero__cta {
  min-width: 0;
  align-self: start;
}

.plus-hero__cta .hero-actions {
  margin-top: 18px;
}

.plus-hero__copy .page-hero__kicker {
  margin-bottom: 16px;
}

.plus-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
}

.plus-hero__copy > p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 21px);
}

.plus-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.plus-hero__facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.plus-demo-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: var(--text);
  box-shadow: 0 24px 52px rgba(20, 31, 44, .24);
  transform: translateY(0);
  animation: plusFloatIn .5s ease both;
}

.plus-demo-card__head,
.plus-demo-links,
.plus-demo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plus-demo-card__head {
  margin-bottom: 14px;
}

.plus-demo-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #be4f7d, #2f9b8f);
  color: #fff;
  font-weight: 900;
}

.plus-demo-card__head div {
  min-width: 0;
  flex: 1 1 auto;
}

.plus-demo-name {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  color: #be4f7d;
  font-size: 20px;
  line-height: 1.2;
}

.plus-demo-name img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.plus-demo-name img[hidden] {
  display: none;
}

.plus-demo-card__head span:not(.plus-demo-avatar):not(.plus-demo-badge) {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plus-demo-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  background: #fff4cf;
  color: #8a6413;
  font-weight: 900;
}

.plus-demo-status-demo {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(207, 217, 230, .8);
  border-radius: 8px;
  background: rgba(244, 247, 251, .88);
}

.plus-demo-status-demo > div:first-child {
  display: grid;
  gap: 2px;
}

.plus-demo-status-demo strong {
  color: #2e3a4d;
  font-size: 14px;
  line-height: 1.25;
}

.plus-demo-status-demo span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.plus-demo-status-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.plus-demo-status-option {
  min-width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(74, 118, 168, .16);
  border-radius: 8px;
  background: #fff;
  color: #365f8d;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.plus-demo-status-option:hover,
.plus-demo-status-option.is-selected {
  border-color: rgba(190, 79, 125, .42);
  background: #fff7fb;
  box-shadow: 0 8px 18px rgba(190, 79, 125, .14);
  transform: translateY(-1px);
}

.plus-demo-status-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.plus-demo-status-option span {
  color: inherit;
  font-size: 12px;
}

.plus-demo-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 2px solid #be4f7d;
  border-radius: 8px;
  background: #f3d4df;
}

.plus-demo-collage span {
  min-width: 0;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #be4f7d, #4a76a8);
}

.plus-demo-collage span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #4a76a8, #2f9b8f);
}

.plus-demo-collage span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #d9a441, #be4f7d);
}

.plus-demo-collage__main {
  grid-row: 1 / span 2;
}

.plus-demo-links {
  flex-wrap: wrap;
  margin-top: 12px;
}

.plus-demo-links span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f4f7fb;
  color: #365f8d;
  font-size: 13px;
  font-weight: 900;
}

.plus-demo-actions {
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(207, 217, 230, .9);
  color: #5f6f84;
  font-weight: 800;
}

.plus-demo-actions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plus-benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(244, 247, 251, .72));
}

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

.plus-benefit-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.plus-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(47, 74, 108, .14);
}

.plus-benefit-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.plus-benefit-card:nth-child(2) i {
  background: #fff4cf;
  color: #8a6413;
}

.plus-benefit-card:nth-child(3) i {
  background: var(--accent-soft);
  color: var(--accent);
}

.plus-benefit-card:nth-child(4) i {
  background: #fce7f0;
  color: #be4f7d;
}

.plus-benefit-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.plus-benefit-card p {
  margin: 0;
  color: var(--muted);
}

.plus-status-showcase-shell--plus {
  border-color: rgba(190, 79, 125, .24);
  background:
    linear-gradient(135deg, rgba(190, 79, 125, .08), rgba(47, 155, 143, .08)),
    #fff;
}

@keyframes plusFloatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .plus-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .plus-demo-card {
    grid-column: auto;
    grid-row: auto;
    width: min(560px, 100%);
  }

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

@media (max-width: 640px) {
  .plus-hero {
    min-height: auto;
  }

  .plus-hero__grid {
    gap: 22px;
    padding: 34px 0 38px;
  }

  .plus-hero__copy h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .plus-hero__copy > p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .plus-hero__facts {
    gap: 7px;
    margin-top: 0;
  }

  .plus-hero__facts span {
    width: 100%;
    justify-content: center;
  }

  .plus-demo-card {
    padding: 12px;
  }

  .plus-demo-card__head {
    align-items: flex-start;
  }

  .plus-demo-status-demo {
    gap: 8px;
    padding: 9px;
  }

  .plus-demo-status-options {
    gap: 6px;
  }

  .plus-demo-status-option {
    min-width: 38px;
    height: 34px;
    padding: 0 7px;
  }

  .plus-demo-badge {
    font-size: 12px;
  }

  .plus-demo-collage {
    aspect-ratio: 16 / 10;
  }

  .plus-demo-links {
    gap: 7px;
  }

  .plus-demo-links span {
    flex: 1 1 86px;
    justify-content: center;
  }

  .plus-demo-actions {
    gap: 8px;
    font-size: 13px;
  }

  .plus-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.legal-note {
  margin: 20px 0 0;
}

.legal-hero {
  padding: 86px 0 46px;
  background: linear-gradient(135deg, #eef4fb, #e8f6f2);
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.08;
}

.legal-hero > .container > p:not(.section__eyebrow) {
  max-width: 800px;
  color: var(--muted);
  font-size: 18px;
}

.legal-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.legal-hero__links a {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.legal-document {
  max-width: 920px;
}

.legal-document section {
  scroll-margin-top: 110px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.legal-document h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.legal-document p,
.legal-document li {
  color: #435267;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.legal-details dl {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.legal-details dl div {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  padding: 13px 16px;
  background: var(--panel);
}

.legal-details dl div + div {
  border-top: 1px solid var(--border);
}

.legal-details dt {
  color: var(--muted);
  font-weight: 700;
}

.legal-details dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.legal-cookie-list div {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.legal-cookie-list span {
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.rules-overview {
  padding: 48px 0 26px;
}

.rules-overview h2,
.rules-overview p {
  margin: 0;
}

.rules-overview h2 {
  font-size: 34px;
  line-height: 1.16;
}

.rules-overview > .container > p:last-child {
  max-width: 820px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
}

.rules-disclosures {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.rules-disclosure {
  order: 0;
  scroll-margin-top: 96px;
  border-bottom: 1px solid var(--border);
}

.rules-disclosure--content {
  order: -1;
}

.rules-disclosure > summary {
  width: min(1160px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.rules-disclosure > summary::-webkit-details-marker {
  display: none;
}

.rules-disclosure__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 18px;
}

.rules-disclosure__icon--warning {
  background: #fff1c9;
  color: #8a6413;
}

.rules-disclosure__copy {
  min-width: 0;
}

.rules-disclosure__copy strong,
.rules-disclosure__copy small {
  display: block;
}

.rules-disclosure__copy strong {
  font-size: 19px;
  line-height: 1.3;
}

.rules-disclosure__copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.rules-disclosure__chevron {
  justify-self: end;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.rules-disclosure[open] > summary .rules-disclosure__chevron {
  transform: rotate(180deg);
}

.rules-disclosure[open] > summary .rules-disclosure__copy strong {
  color: var(--brand-dark);
}

.rules-disclosure > .section {
  padding: 44px 0 54px;
  border-top: 1px solid rgba(207, 217, 230, 0.78);
}

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

.rules-source-note {
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: var(--accent-soft);
}

.rules-source-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.rules-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.rules-source-links a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(74, 118, 168, 0.96), rgba(47, 155, 143, 0.92));
  color: #fff;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 22px;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-alt);
}

.copy-row code {
  color: var(--brand-dark);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.copy-status {
  min-height: 22px;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-btn {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
}

.tab-btn.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.listing-panel {
  display: none;
}

.listing-panel.active {
  display: block;
}

.artist-card,
.order-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.artist-card .price,
.order-card .price {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--warm-soft);
  color: var(--warm);
  font-weight: 900;
}

.mini-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #dfe7ef;
}

.mini-slider-inner {
  height: 100%;
  display: flex;
  transition: transform 180ms ease;
}

.mini-slide {
  flex: 0 0 100%;
  height: 100%;
}

.mini-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-arrow {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
}

.mini-arrow-left {
  left: 8px;
}

.mini-arrow-right {
  right: 8px;
}

.order-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.order-btn:hover {
  background: var(--brand-dark);
}

.side-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.side-link {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--text);
}

.side-link:hover {
  text-decoration: none;
}

.side-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.side-link span {
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 800;
}

.resource-card,
.video-card {
  color: var(--text);
  text-decoration: none;
}

.resource-card:hover,
.video-card:hover {
  text-decoration: none;
}

.resource-card img,
.video-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.resource-card__body,
.video-card__body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-label {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  background: #233142;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

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

.footer-links a {
  color: #fff;
  font-weight: 800;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand__text span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .site-nav {
    padding: 10px 0 9px;
  }

  .site-nav__top {
    gap: 8px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .nav-toggle,
  .account-link {
    width: auto;
    white-space: nowrap;
    min-height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    height: 100%;
  }

  .brand__text {
    font-size: 18px;
  }

  .split,
  .contact-grid,
  .directory-layout,
  .plus-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .feature-grid,
  .card-grid,
  .social-grid,
  .resource-grid,
  .video-grid,
  .app-shortcut-grid,
  .artist-list,
  .order-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legal-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .apps-page {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .apps-page__head {
    grid-template-columns: 1fr;
  }

  .apps-page__logo {
    width: 64px;
    height: 64px;
    order: -1;
  }

  .app-shortcut-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 56px 0 34px;
  }

  .plus-price-card {
    padding: 20px;
  }

  .plus-price-card .yoomoney-payment-form {
    margin-top: 20px;
    padding: 14px;
  }

  .plus-payment-followup {
    padding: 14px;
  }

  .plus-server-checkout {
    padding: 14px;
  }

  .plus-duration-picker__body {
    align-items: stretch;
    flex-direction: column;
  }

  .plus-duration-stepper {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    width: 100%;
    min-height: 48px;
  }

  .plus-duration-total {
    min-height: 46px;
    text-align: left;
  }

  .plus-duration-total > strong {
    text-align: right;
  }

  .manual-payment {
    margin-inline: -6px;
    padding: 15px;
  }

  .manual-payment__head,
  .manual-payment__number-row {
    align-items: stretch;
    flex-direction: column;
  }

  .manual-payment__number-row {
    grid-template-columns: 1fr;
  }

  .manual-payment__number-row code {
    overflow-x: auto;
    padding: 2px 0;
    font-size: 18px;
  }

  .manual-payment__copy {
    width: 100%;
    min-height: 48px;
  }

  .legal-details dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .rules-overview {
    padding: 36px 0 20px;
  }

  .rules-overview h2 {
    font-size: 28px;
  }

  .rules-disclosure > summary {
    width: min(100% - 24px, 1160px);
    min-height: 78px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 14px 0;
  }

  .rules-disclosure__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .rules-disclosure__copy strong {
    font-size: 16px;
  }

  .rules-disclosure__copy small {
    font-size: 13px;
    line-height: 1.35;
  }

  .rules-disclosure > .section {
    padding: 36px 0 42px;
  }

  .rules-disclosure--content .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    min-height: 64px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 9px;
    font-size: 13px;
  }

  .nav-toggle,
  .account-link {
    min-height: 34px;
    padding: 0 9px;
    font-size: 13px;
  }

  .nav-toggle span,
  .account-link span {
    display: none;
  }

  .site-nav__top {
    min-height: 48px;
  }

  .site-menu-panel {
    top: calc(100% + 6px);
    right: 12px;
    left: 12px;
    width: auto;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text span {
    display: none;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero__inner {
    width: min(100% - 24px, 760px);
    padding: 82px 0 38px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .ad-section {
    padding: 18px 0 4px;
  }

  .static-ad-slot {
    min-height: 220px;
  }

  .hero-actions,
  .tabs,
  .quick-strip__grid,
  .feature-grid,
  .card-grid,
  .social-grid,
  .resource-grid,
  .video-grid,
  .artist-list,
  .order-list,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .tabs {
    display: grid;
  }

  .hero-actions .btn,
  .tabs .tab-btn {
    width: 100%;
  }

  .quick-strip {
    margin-top: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .section h2 {
    font-size: 28px;
  }

  .section__head p,
  .lead {
    font-size: 16px;
  }

  .cta-band,
  .copy-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .site-nav {
    gap: 8px;
  }

  .brand img {
    height: 36px !important;
  }

  .brand__text {
    font-size: 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a,
  .nav-actions a {
    padding: 0 8px;
    font-size: 12px;
  }
}

.plus-status-showcase-shell,
.plus-status-picker-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.plus-status-showcase-head,
.plus-status-picker-head,
.plus-status-picker-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.plus-status-showcase-head h2,
.plus-status-picker-head h1,
.plus-status-picker-head h2,
.plus-status-showcase-head p,
.plus-status-picker-head p {
  margin: 0;
}

.plus-status-showcase-head p,
.plus-status-picker-head p {
  margin-top: 6px;
  color: var(--muted);
}

.plus-status-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.plus-status-preview-tile {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0;
  padding: 13px 8px 10px;
  border: 1px solid #dfe6ee;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
}

.plus-status-preview-tile__image {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
}

.plus-status-preview-image,
.plus-status-choice__picture,
.plus-status-selected-image {
  display: block;
  object-fit: contain;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.plus-status-preview-image {
  width: 64px;
  height: 64px;
}

.plus-status-preview-tile figcaption {
  max-width: 100%;
  overflow: hidden;
  color: #46586e;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plus-status-showcase-footer {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.plus-status-showcase-message {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plus-status-page {
  display: grid;
  gap: 18px;
}

.plus-status-picker-card {
  display: grid;
  gap: 20px;
}

.plus-status-picker-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.plus-status-picker-message[data-tone="success"] {
  background: #e7f5ef;
  color: #236447;
}

.plus-status-picker-message[data-tone="warning"] {
  background: #fff6d8;
  color: #715817;
}

.plus-status-picker-message[data-tone="error"] {
  background: #fff0f3;
  color: #a92f4a;
}

.plus-status-search {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.plus-status-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

.plus-status-search input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(74, 118, 168, .14);
}

.plus-status-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 12px;
}

.plus-status-choice {
  position: relative;
  min-width: 0;
  min-height: 142px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 14px 10px 12px;
  border: 1px solid #dbe3ec;
  border-radius: 15px;
  background: #fff;
  color: #34465a;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.plus-status-choice:hover {
  border-color: #9bb4d0;
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(47, 74, 108, .1);
  transform: translateY(-2px);
}

.plus-status-choice:focus-visible {
  outline: 3px solid rgba(74, 118, 168, .22);
  outline-offset: 2px;
}

.plus-status-choice.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 10px 24px rgba(74, 118, 168, .16);
}

.plus-status-choice:disabled {
  opacity: .82;
  cursor: not-allowed;
  transform: none;
}

.plus-status-choice:disabled:hover {
  border-color: #dbe3ec;
  background: #fff;
  box-shadow: none;
}

.plus-status-picker-card[data-plus-active="false"] .plus-status-choice__selected {
  display: none;
}

.plus-status-choice__image {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #8796a8;
  font-size: 28px;
}

.plus-status-choice__picture {
  width: 64px;
  height: 64px;
}

.plus-status-choice strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plus-status-choice__selected {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
}

.plus-status-choice.is-selected .plus-status-choice__selected {
  display: grid;
}

.plus-status-picker-empty {
  padding: 22px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.plus-status-picker-actions {
  position: sticky;
  bottom: 12px;
  z-index: 10;
  padding: 12px;
  border: 1px solid rgba(207, 217, 230, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(47, 74, 108, .16);
  backdrop-filter: blur(14px);
}

.plus-status-selected-summary {
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #46586e;
  font-weight: 800;
}

.plus-status-selected-preview {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #f8fafc;
  color: #8796a8;
}

.plus-status-selected-image {
  width: 40px;
  height: 40px;
}

@media (max-width: 640px) {
  .plus-status-showcase-shell,
  .plus-status-picker-card {
    padding: 16px;
    border-radius: 14px;
  }

  .plus-status-showcase-head,
  .plus-status-picker-head,
  .plus-status-showcase-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .plus-status-showcase-head .btn,
  .plus-status-showcase-footer .btn {
    width: 100%;
    justify-content: center;
  }

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

  .plus-status-preview-tile {
    padding: 10px 5px 8px;
  }

  .plus-status-preview-tile__image {
    width: 58px;
    height: 58px;
  }

  .plus-status-preview-image {
    width: 54px;
    height: 54px;
  }

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

  .plus-status-choice {
    min-height: 122px;
    padding: 10px 5px 9px;
    border-radius: 12px;
  }

  .plus-status-choice__image {
    width: 60px;
    height: 60px;
  }

  .plus-status-choice__picture {
    width: 56px;
    height: 56px;
  }

  .plus-status-choice strong {
    font-size: 11px;
  }

  .plus-status-picker-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .plus-status-picker-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .plus-status-choice-grid,
  .plus-status-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Shared template header: matches the social page glass header. */
.site-header {
  top: 14px;
  width: min(1440px, calc(100% - 32px));
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: clamp(24px, 3vw, 48px);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(34, 48, 72, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-nav {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 24px);
}

.site-nav__top {
  display: contents;
}

.site-nav__brand {
  order: 1;
  flex: 0 0 auto;
}

.site-nav__brand .brand__text {
  display: none;
}

.site-nav__brand .brand__mark {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav__brand .brand__mark img {
  width: auto;
  height: clamp(35px, 5vw, 80px);
  max-width: min(210px, 32vw);
  object-fit: contain;
}

.nav-links {
  order: 2;
  flex: 1 1 auto;
  gap: clamp(8px, 1.5vw, 20px);
}

.nav-links a {
  min-height: 40px;
  padding: clamp(6px, 1vw, 10px) clamp(10px, 1.5vw, 20px);
  border-radius: 30px;
  color: #3a3a5c;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #fff;
  color: #6c63ff;
  box-shadow: 0 8px 20px rgba(108, 99, 255, .2);
  transform: translateY(-2px);
}

.nav-toggle,
.account-link {
  order: 0;
  min-height: 42px;
  border-color: rgba(93, 111, 143, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #5147dd;
  box-shadow: 0 4px 14px rgba(34, 48, 72, .06);
}

.account-link {
  order: 4;
}

.nav-toggle:hover,
.account-link:hover {
  background: #fff;
  color: #6c63ff;
  box-shadow: 0 8px 20px rgba(108, 99, 255, .16);
}

.site-menu-panel {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(34, 48, 72, .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 768px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 20px;
  }

  .site-nav {
    gap: 6px;
    padding: 8px 12px;
  }

  .site-nav__brand .brand__mark img {
    height: 36px;
    max-width: 120px;
  }

  .nav-toggle,
  .account-link {
    min-width: 42px;
    min-height: 42px;
    padding: 0 10px;
  }

  .nav-links {
    order: 4;
    width: 100%;
    flex: 1 0 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* Header actions shared by static pages. */
.site-header-actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header-action {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 111, 143, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: #5147dd;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 48, 72, .06);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.site-header-action:hover,
.site-header-action.has-unread {
  background: #fff;
  color: #6c63ff;
  box-shadow: 0 8px 20px rgba(108, 99, 255, .16);
  transform: translateY(-2px);
}

.site-header-action span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.site-header-action span[hidden] {
  display: none;
}

.nav-toggle,
.account-link {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  justify-content: center;
}

.nav-toggle span,
.account-link span {
  display: none;
}

.nav-toggle i,
.account-link i,
.site-header-action i {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}

@media (min-width: 769px) and (max-width: 1120px) {
  .site-nav {
    gap: 8px;
    padding: 8px 14px;
  }

  .site-nav__brand .brand__mark img {
    height: 38px;
    max-width: 158px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 14px;
  }

  .nav-toggle,
  .account-link,
  .site-header-action {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .nav-toggle span,
  .account-link span {
    display: none;
  }

  .site-header-actions {
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .site-nav__brand {
    flex: 1 1 92px;
    justify-content: flex-start;
    min-width: 0;
  }

  .site-header-actions {
    display: flex;
    order: 2;
  }

  .account-link {
    order: 3;
    min-width: 42px;
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .account-link span {
    display: none;
  }

  .nav-links {
    display: none;
  }
}

/* Header sits flush with the browser edge on every breakpoint. */
.site-header {
  top: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0 0 clamp(22px, 2.5vw, 36px) clamp(22px, 2.5vw, 36px);
}

@media (min-width: 769px) {
  .site-nav {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-nav__brand .brand__mark img {
    height: clamp(36px, 4vw, 58px);
  }

  .nav-links a {
    min-height: 36px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (min-width: 981px) {
  .site-nav {
    flex-wrap: nowrap;
    gap: clamp(5px, 0.8vw, 10px);
    padding-right: clamp(10px, 1.4vw, 18px);
    padding-left: clamp(10px, 1.4vw, 18px);
  }

  .site-nav__brand .brand__mark img {
    height: clamp(34px, 3vw, 48px);
    max-width: clamp(118px, 13vw, 168px);
  }

  .nav-links {
    min-width: 0;
    flex-wrap: nowrap;
    gap: clamp(4px, 0.55vw, 8px);
  }

  .nav-links a {
    white-space: nowrap;
    padding-right: clamp(7px, 0.85vw, 12px);
    padding-left: clamp(7px, 0.85vw, 12px);
    font-size: clamp(13px, 1vw, 15px);
  }

  .site-header-actions {
    gap: 4px;
  }

  .nav-toggle,
  .account-link,
  .site-header-action {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0 0 18px 18px;
  }

  .site-nav {
    padding-right: 20px;
    padding-left: 20px;
  }
}
