:root {
  color-scheme: dark;
  --bg: #04070b;
  --panel: rgba(9, 15, 23, 0.76);
  --panel-strong: rgba(8, 15, 25, 0.94);
  --panel-soft: rgba(115, 185, 255, 0.08);
  --text: #f3f7fb;
  --muted: #b8c4d4;
  --line: rgba(118, 173, 244, 0.18);
  --gold-1: #f0aa58;
  --gold-2: #ffd79c;
  --gold-3: #975715;
  --glow: rgba(99, 168, 255, 0.22);
  --max-width: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 280;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 156, 0.26);
  background: rgba(3, 6, 11, 0.94);
  color: var(--text);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(83, 149, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 16%, rgba(240, 170, 88, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.78), rgba(4, 8, 14, 0.88)),
    url("./studio-session-2026.jpg") center 26% / cover fixed no-repeat,
    linear-gradient(180deg, #04070b 0%, #08111c 44%, #04070b 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.96'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      180deg,
      rgba(142, 195, 255, 0.03) 0 1px,
      transparent 1px 4px
    );
  background-size: 170px 170px, auto;
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.08;
  animation: ambient-grain 0.18s steps(2) infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(103, 168, 255, 0.1), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(255, 184, 94, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.14), rgba(5, 10, 16, 0.3)),
    radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.72;
}

body.nav-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

.login-page {
  display: grid;
  place-items: center;
}

.login-shell {
  width: min(calc(100% - 1.5rem), 720px);
  padding: 2rem 0 3rem;
}

.login-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow-lg);
}

.login-brand {
  display: inline-block;
  width: 190px;
  margin-bottom: 1.5rem;
}

.login-copy {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.8;
}

.login-highlight,
.dashboard-spotlight {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.03);
}

.login-highlight h3,
.dashboard-spotlight strong {
  display: block;
  margin: 0 0 0.45rem;
  font-family: "Sora", sans-serif;
}

.login-highlight p:last-child,
.dashboard-spotlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.login-form {
  margin-bottom: 1rem;
}

.login-output {
  display: grid;
  gap: 0.8rem;
}

.login-actions-secondary {
  margin-top: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  overflow: visible;
  animation: page-enter 700ms ease both;
}

body.nav-open main,
body.nav-open .footer {
  opacity: 0.06;
  filter: blur(18px) saturate(0.72);
  pointer-events: none;
  user-select: none;
  transition: opacity 220ms ease, filter 220ms ease;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.5rem 0 5rem;
}

.section[id],
.hero[id] {
  scroll-margin-top: 104px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  width: min(calc(100% - 1.35rem), var(--max-width));
  margin: 0.82rem auto 0;
  padding: 0.68rem 0.86rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.68);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body.nav-open .topbar {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.nav-open .topbar > :not(.nav) {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.brand {
  flex: 0 0 auto;
  width: 148px;
}

.brand img,
.hero-logo-card img,
.footer img,
.gallery-brand-shell img {
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 215, 156, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  padding: clamp(4.5rem, 8.2vh, 5.8rem) 1.35rem 1.65rem;
  background:
    radial-gradient(circle at 16% 14%, rgba(108, 170, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255, 189, 104, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(3, 6, 11, 0.965), rgba(3, 6, 11, 0.985));
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(2rem);
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-open,
body.nav-open .nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 740px);
  margin: auto;
  display: grid;
  justify-items: center;
  gap: clamp(0.16rem, 0.55vh, 0.26rem);
  padding: 0.55rem 0;
}

.nav__inner a {
  display: block;
  width: fit-content;
  font-family: "Sora", sans-serif;
  color: var(--text);
  font-size: clamp(1.36rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transform: translateY(1.7rem);
  opacity: 0;
  transition:
    color 180ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.nav.is-open .nav__inner a,
.nav.is-open .nav__footer,
body.nav-open .nav__inner a,
body.nav-open .nav__footer {
  transform: translateY(0);
  opacity: 1;
}

.nav.is-open .nav__inner a:nth-child(1),
body.nav-open .nav__inner a:nth-child(1) { transition-delay: 40ms; }
.nav.is-open .nav__inner a:nth-child(2),
body.nav-open .nav__inner a:nth-child(2) { transition-delay: 80ms; }
.nav.is-open .nav__inner a:nth-child(3),
body.nav-open .nav__inner a:nth-child(3) { transition-delay: 120ms; }
.nav.is-open .nav__inner a:nth-child(4),
body.nav-open .nav__inner a:nth-child(4) { transition-delay: 160ms; }
.nav.is-open .nav__inner a:nth-child(5),
body.nav-open .nav__inner a:nth-child(5) { transition-delay: 200ms; }
.nav.is-open .nav__inner a:nth-child(6),
body.nav-open .nav__inner a:nth-child(6) { transition-delay: 240ms; }
.nav.is-open .nav__inner a:nth-child(7),
body.nav-open .nav__inner a:nth-child(7) { transition-delay: 280ms; }
.nav.is-open .nav__inner a:nth-child(8),
body.nav-open .nav__inner a:nth-child(8) { transition-delay: 320ms; }
.nav.is-open .nav__inner a:nth-child(9),
body.nav-open .nav__inner a:nth-child(9) { transition-delay: 360ms; }
.nav.is-open .nav__inner a:nth-child(10),
body.nav-open .nav__inner a:nth-child(10) { transition-delay: 400ms; }

.nav__return-link {
  margin-top: clamp(0.85rem, 2.5vh, 1.35rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.nav__cart-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
}

.nav__footer {
  max-width: 30rem;
  margin: 0.85rem auto 0;
  color: rgba(232, 239, 247, 0.82);
  font-size: 0.88rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(1.7rem);
  transition:
    opacity 260ms ease 460ms,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1) 460ms;
}

.nav__utility {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.05rem;
}

.nav__utility .nav__utility-link {
  width: auto;
  min-height: 44px;
  padding: 0.8rem 1.02rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(232, 239, 247, 0.82);
  text-shadow: none;
}

.nav__utility .nav__utility-link--primary {
  color: var(--gold-2);
  border-color: rgba(255, 215, 156, 0.18);
  background: rgba(255, 205, 96, 0.08);
}

.nav__utility .nav__utility-link--member {
  border-color: rgba(255, 215, 156, 0.14);
  background: rgba(255, 205, 96, 0.04);
}

.nav__utility .nav__utility-link:hover,
.nav__utility .nav__utility-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 156, 0.28);
}

.nav__inner a:hover,
.nav__inner a:focus-visible {
  color: var(--text);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.cart-trigger {
  position: relative;
  min-width: 118px;
  justify-content: space-between;
  gap: 0.7rem;
}

.cart-trigger.has-items {
  border-color: rgba(255, 215, 156, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 215, 156, 0.1);
}

.cart-trigger__label {
  white-space: nowrap;
}

.cart-trigger__count,
.nav__cart-count {
  display: inline-flex;
  min-width: 1.6rem;
  min-height: 1.6rem;
  padding: 0 0.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  color: #160d03;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.topbar-session {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  min-width: 0;
}

.topbar-session[hidden] {
  display: none;
}

.topbar-session-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 0;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.22);
  border-radius: 999px;
  background: rgba(255, 205, 96, 0.08);
  color: rgba(255, 240, 220, 0.94);
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  flex: 0 1 auto;
  max-width: 100%;
}

.topbar-session-pill.is-live {
  color: #1c1003;
  background: linear-gradient(135deg, rgba(255, 215, 156, 0.98), rgba(240, 165, 51, 0.94));
  border-color: rgba(255, 220, 173, 0.5);
}

.topbar-session-pill:hover,
.topbar-session-pill:focus-visible {
  color: var(--text);
  border-color: rgba(255, 215, 156, 0.42);
  background: rgba(255, 205, 96, 0.16);
}

.topbar-logout[hidden] {
  display: none;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(140%);
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
  box-shadow: none;
}

.button-inline {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.button-inline-soft {
  background: rgba(255, 255, 255, 0.015);
}

.button-gold {
  color: #1c1104;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1) 52%, #f0a533);
  box-shadow:
    0 16px 40px rgba(240, 165, 51, 0.28),
    0 0 0 1px rgba(255, 233, 193, 0.12) inset;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
}

.eyebrow,
.card-tag {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  max-width: 11ch;
}

.subpage-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  min-height: 42vh;
  padding-top: 3.4rem;
}

.subpage-hero-copy {
  display: grid;
  gap: 1rem;
}

.subpage-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 10ch;
}

.subpage-hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.subpage-hero-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(16, 13, 10, 0.9);
  box-shadow: var(--shadow-lg);
}

.subpage-hero-card img {
  width: 100%;
  border-radius: 22px;
}

.subpage-hero-card strong {
  display: block;
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.subpage-hero-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.video-proof-section {
  padding-top: 1rem;
}

.video-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 1.2rem;
  align-items: start;
}

.video-proof-panel,
.video-proof-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 16, 0.9);
  box-shadow: var(--shadow-lg);
}

.video-proof-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.video-proof-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.video-proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 164, 0.18);
  background: rgba(255, 208, 133, 0.08);
  color: rgba(255, 226, 171, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-proof-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(76vh, 760px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.1), rgba(5, 8, 13, 0.72)),
    #030507;
  object-fit: cover;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 238, 204, 0.08);
}

.video-proof-note {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 220, 164, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(228, 235, 242, 0.76);
  font-size: 0.9rem;
  line-height: 1.68;
}

.video-proof-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.45rem;
}

.video-proof-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.video-proof-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.video-proof-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.video-proof-chiprow span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 164, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 247, 251, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-proof-benefits {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  line-height: 1.75;
}

.video-proof-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.video-proof-step {
  padding: 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 220, 164, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 13, 0.72);
}

.video-proof-step span {
  display: block;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-proof-step strong {
  display: block;
  margin-top: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.video-proof-step p {
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.video-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-text,
.info-panel p,
.service-highlight p,
.pricing-note,
.contact-card p,
.footer p,
.metric-note,
.pillars p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-route {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-route__label {
  color: rgba(232, 239, 247, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-route__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-route__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-route__links a:hover,
.hero-route__links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 156, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-badges span,
.filter-chip {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.15rem;
}

.metric-stack {
  display: grid;
  gap: 1rem;
}

.hero-logo-card,
.metric-card,
.info-panel,
.pillars article,
.service-highlight,
.service-card,
.cta-panel,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.hero-logo-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 24% 18%, rgba(93, 159, 255, 0.16), transparent 26%),
    radial-gradient(circle at 76% 20%, rgba(255, 188, 106, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(6, 10, 16, 0.08), rgba(6, 10, 16, 0.62)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  filter:
    drop-shadow(0 0 18px rgba(255, 219, 156, 0.2))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
  transition: transform 420ms ease, filter 420ms ease;
}

.logo-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(92, 165, 255, 0.22), transparent 58%),
    radial-gradient(circle at 56% 46%, rgba(255, 198, 110, 0.18), transparent 34%);
  filter: blur(24px);
}

.hero-logo-card:hover img,
.hero-logo-card:focus-within img {
  transform: translateY(-4px) scale(1.015);
  filter: drop-shadow(0 22px 44px rgba(255, 187, 58, 0.34));
}

.metric-card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.metric-card-primary {
  background:
    linear-gradient(135deg, rgba(255, 219, 152, 0.18), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
}

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

.metric-label {
  margin: 0;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.metric-title {
  margin: 0.55rem 0 0;
  font-weight: 700;
  font-size: 1.02rem;
}

.metric-value {
  margin: 0.6rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.metric-note {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.seo-pathways-grid,
.seo-article-grid,
.seo-callout-grid {
  display: grid;
  gap: 1.25rem;
}

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

.seo-link-card,
.seo-article-card,
.seo-callout-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.seo-link-card,
.seo-article-card,
.seo-callout-card {
  padding: 1.75rem;
}

.seo-link-card {
  display: grid;
  gap: 0.9rem;
}

.seo-link-card h3,
.seo-article-card h2,
.seo-article-card h3,
.seo-callout-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.seo-link-card h3 {
  font-size: 1.5rem;
}

.seo-link-card p,
.seo-article-card p,
.seo-callout-card p,
.seo-link-list,
.seo-checklist {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.seo-link-list,
.seo-checklist {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.seo-link-card .button {
  margin-top: auto;
  width: max-content;
}

.seo-article-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.seo-article-card {
  display: grid;
  gap: 1rem;
}

.seo-article-card img {
  width: 100%;
  border-radius: 22px;
}

.seo-article-card strong {
  color: var(--gold-2);
}

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

.seo-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
}

.seo-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.seo-inline-links a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.about-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(93, 165, 255, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 20, 0.96);
  box-shadow: var(--shadow-lg);
}

.about-backdrop,
.about-overlay {
  position: absolute;
  inset: 0;
}

.about-backdrop {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 188, 96, 0.16), transparent 18%),
    radial-gradient(circle at 64% 18%, rgba(91, 157, 255, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(4, 8, 14, 0.92) 0%, rgba(4, 8, 14, 0.78) 42%, rgba(4, 8, 14, 0.92) 100%),
    url("./studio-session-2026.jpg"),
    linear-gradient(135deg, rgba(10, 18, 30, 0.96), rgba(4, 7, 12, 0.98));
  background-position: center;
  background-size: cover;
  filter: blur(2px) saturate(0.88) brightness(0.48);
  transform: scale(1.06);
}

.about-overlay {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 196, 112, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(7, 12, 20, 0.14), rgba(7, 12, 20, 0.36));
}

.about-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
}

.info-panel,
.cta-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.pillars {
  display: grid;
  gap: 1rem;
}

.about-story,
.about-aside article {
  backdrop-filter: blur(12px);
}

.about-story {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.54)),
    rgba(16, 16, 16, 0.52);
}

.about-lead {
  margin-top: 0;
  font-size: 1.12rem;
  color: var(--text);
}

.about-closing {
  margin-bottom: 0;
  color: var(--gold-2);
  font-weight: 700;
}

.experience-grid,
.results-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.25rem;
  align-items: stretch;
}

.experience-copy,
.results-copy,
.experience-visual,
.results-visual,
.fit-card,
.gallery-card,
.faq-item,
.service-card,
.service-highlight {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.experience-copy,
.results-copy {
  padding: 2rem;
}

.experience-copy h2,
.results-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.experience-text {
  max-width: 60ch;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.experience-points,
.results-list,
.fit-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.experience-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.experience-point {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.experience-point h3,
.process-step h3,
.fit-card h3,
.results-list h3,
.gallery-card-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.experience-point p,
.process-step p,
.fit-card p,
.results-list p,
.gallery-card-copy p,
.faq-item p,
.experience-visual-copy p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.experience-visual,
.results-visual {
  display: grid;
  min-height: 100%;
}

.experience-visual img,
.results-visual img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-visual::after,
.results-visual::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 15, 0.06), rgba(5, 9, 15, 0.78)),
    linear-gradient(135deg, rgba(90, 156, 255, 0.12), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(255, 184, 94, 0.12), transparent 24%);
  pointer-events: none;
}

.gallery-card-brand::after {
  display: none;
}

.experience-visual-copy,
.results-badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.5);
}

.process-shell {
  position: relative;
  overflow: hidden;
  padding: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.94), rgba(5, 10, 16, 0.74)),
    url("./studio-session-2026.jpg");
  background-size: cover;
  background-position: center 36%;
  box-shadow: var(--shadow-lg);
}

.process-heading {
  margin-bottom: 1.5rem;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 9, 9, 0.58);
  backdrop-filter: blur(10px);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

.fit-card {
  padding: 1.6rem;
}

.results-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.results-list article {
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.results-badge span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.results-badge strong {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.membership-hero,
.membership-plan-card,
.membership-rule-card,
.access-step-card,
.access-panel,
.access-status-card,
.pricing-summary-card,
.promo-bundle-card,
.member-switcher,
.dashboard-card,
.reward-card,
.extra-credit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.membership-hero,
.member-switcher,
.dashboard-card,
.membership-rule-card,
.access-step-card,
.access-panel,
.access-status-card,
.pricing-summary-card,
.promo-bundle-card,
.reward-card,
.extra-credit-card {
  backdrop-filter: blur(14px);
}

.membership-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.membership-hero-copy,
.membership-hero-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.membership-hero-copy p:first-child {
  margin-top: 0;
}

.membership-hero-copy p:last-child {
  margin-bottom: 0;
}

.membership-hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.8rem;
}

.membership-hero-badges span,
.membership-state-pill,
.membership-plan-badge,
.reward-credit-pill,
.reward-quantity-chip,
.dashboard-emphasis,
.member-status-badge,
.transaction-type,
.reward-availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  line-height: 1.2;
}

.membership-plan-grid,
.membership-rules,
.dashboard-summary-grid,
.dashboard-detail-grid,
.reward-grid,
.extra-credit-grid {
  display: grid;
  gap: 1rem;
}

.membership-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.membership-plan-card,
.reward-card,
.extra-credit-card {
  padding: 1.6rem;
  display: grid;
  gap: 1.15rem;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.membership-plan-card::before,
.dashboard-card::before,
.reward-card::before,
.extra-credit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 170, 0.45), transparent);
  opacity: 0.42;
}

.membership-plan-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.2), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(18, 15, 11, 0.96);
  border-color: rgba(255, 220, 164, 0.22);
}

.membership-plan-card.is-current {
  border-color: rgba(255, 220, 164, 0.32);
}

.membership-plan-head,
.reward-card-top,
.dashboard-card-heading,
.credit-block-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.membership-plan-head h3,
.dashboard-card h3,
.reward-card h3,
.extra-credit-card h3 {
  margin: 0.15rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.membership-plan-price {
  display: grid;
  gap: 0.32rem;
}

.membership-plan-price strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.05em;
}

.membership-plan-price span,
.membership-plan-price small,
.membership-plan-description,
.membership-plan-reference,
.dashboard-copy,
.dashboard-summary-text,
.reward-card-description,
.extra-credit-note,
.dashboard-empty,
.credit-block-item p,
.transaction-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.membership-plan-description,
.reward-card-description,
.extra-credit-note,
.dashboard-copy,
.dashboard-summary-text {
  margin: 0;
}

.reward-direct-price {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.reward-direct-price span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.reward-direct-price strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.reward-direct-price small {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.membership-plan-reference {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.membership-benefits {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.membership-benefits li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
}

.membership-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 0 0 6px rgba(255, 205, 96, 0.08);
}

.membership-plan-footer {
  display: grid;
  gap: 0.95rem;
  margin-top: auto;
}

.membership-plan-actions,
.promo-bundle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.membership-plan-badge,
.dashboard-emphasis {
  color: var(--gold-2);
  background: rgba(255, 205, 96, 0.08);
}

.membership-state-pill.is-current,
.member-status-badge.is-active,
.reward-availability.is-available {
  color: #f5e5bd;
  background: rgba(255, 205, 96, 0.1);
}

.member-status-badge.is-paused,
.reward-availability.is-short,
.transaction-type-expired {
  color: #d0c4b2;
  background: rgba(255, 255, 255, 0.04);
}

.membership-note {
  margin: 1.5rem auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
}

.membership-rules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.access-intro,
.access-layout,
.pricing-summary-grid,
.promo-bundle-grid {
  display: grid;
  gap: 1rem;
}

.access-intro {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.membership-access .section-heading {
  max-width: 780px;
}

.access-step-card,
.access-panel,
.access-status-card,
.pricing-summary-card,
.promo-bundle-card {
  padding: 1.4rem;
}

.access-step-card h3,
.pricing-summary-card h3,
.promo-bundle-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.access-step-card p:last-child,
.pricing-summary-copy,
.promo-bundle-copy,
.promo-bundle-note,
.access-output p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.access-layout {
  grid-template-columns: 1.12fr 0.88fr;
}

.access-layout.is-session-active {
  grid-template-columns: 1fr;
}

.access-layout.is-session-active .access-side {
  grid-column: 1 / -1;
}

.access-step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
}

.access-status-card:not(.is-session-hub) {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
}

.access-status-card.is-session-hub {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.access-side {
  display: grid;
  gap: 1rem;
}

.access-form {
  display: grid;
  gap: 1rem;
}

.access-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.access-form textarea {
  resize: vertical;
  min-height: 132px;
}

.form-helper {
  margin: 0.35rem 0 0;
  color: rgba(232, 239, 247, 0.68);
  font-size: 0.92rem;
  line-height: 1.7;
}

.access-output {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  scroll-margin-top: 8rem;
  background:
    linear-gradient(180deg, rgba(255, 217, 141, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.access-output[hidden] {
  display: none;
}

.access-feedback-toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  width: min(440px, calc(100vw - 2rem));
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(11, 9, 7, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.access-feedback-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.access-feedback-toast h3 {
  margin: 0 0 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.access-feedback-toast p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-bridge-intro {
  max-width: 850px;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.pricing-bridge-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.pricing-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-summary-points {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 205, 96, 0.08);
  color: var(--gold-2);
  font-size: 0.84rem;
}

.pricing-summary-values,
.promo-bundle-meta {
  display: grid;
  gap: 0.8rem;
}

.pricing-summary-values {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.pricing-summary-values article,
.promo-bundle-meta span {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-summary-values span,
.promo-bundle-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-summary-values strong,
.promo-bundle-price {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.pricing-bridge-subheading {
  margin-top: 2.4rem;
}

.promo-bundle-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.promo-bundle-card {
  display: grid;
  gap: 1rem;
}

.promo-bundle-values {
  display: grid;
  gap: 0.45rem;
}

.promo-bundle-price {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.promo-bundle-usd {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.promo-bundle-points {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 215, 156, 0.08);
  border: 1px solid rgba(255, 215, 156, 0.12);
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.promo-bundle-includes {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.promo-bundle-includes li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  line-height: 1.65;
}

.promo-bundle-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--gold-2);
}

.promo-bundle-meta span {
  padding: 0.75rem 0.9rem;
}

.pricing-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-catalog-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.pricing-catalog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-catalog-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-catalog-list li.has-cart-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 1rem;
  align-items: center;
}

.pricing-catalog-list li.has-card-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 1rem;
  align-items: start;
}

.pricing-catalog-list span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-catalog-list strong {
  white-space: nowrap;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.pricing-catalog-actions {
  grid-column: 1 / -1;
}

.pricing-catalog-detail {
  grid-column: 1 / -1;
}

.pricing-catalog-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pricing-catalog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 156, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-catalog-actions .cart-add-button {
  width: 100%;
  min-height: 46px;
}

.pricing-catalog-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.membership-rule-card {
  padding: 1.35rem;
}

.membership-rule-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.membership-rule-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.member-switcher {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.2rem;
}

.member-switcher-copy h3 {
  margin: 0.2rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.member-switcher-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.member-switch-button {
  min-width: 164px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  font: inherit;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.member-switch-button span,
.member-switch-button small {
  display: block;
}

.member-switch-button span {
  font-weight: 700;
}

.member-switch-button small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.member-switch-button:hover,
.member-switch-button:focus-visible,
.member-switch-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 220, 164, 0.32);
  background: rgba(255, 205, 96, 0.08);
}

.dashboard-summary-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.dashboard-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.dashboard-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.dashboard-card-hero {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(16, 13, 10, 0.94);
}

.dashboard-card-heading {
  margin-bottom: 0.15rem;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.dashboard-stat-grid article,
.dashboard-detail-list article,
.reward-selection-summary,
.credit-block-item,
.transaction-item,
.reward-selected-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-stat-grid article,
.dashboard-detail-list article {
  padding: 1rem;
}

.dashboard-stat-grid span,
.dashboard-detail-list span,
.dashboard-stat-grid small,
.dashboard-detail-list small,
.reward-selection-summary span,
.transaction-copy small,
.credit-block-item p,
.reward-selected-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-stat-grid strong,
.dashboard-detail-list strong,
.dashboard-paused-state strong,
.reward-selection-summary strong,
.transaction-amount,
.extra-credit-price {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.dashboard-detail-list {
  display: grid;
  gap: 0.8rem;
}

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

.dashboard-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.progress-meter {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 0 24px rgba(255, 205, 96, 0.18);
}

.dashboard-paused-state {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-history {
  margin-top: 1rem;
}

.dashboard-topup-card {
  margin-top: 1rem;
}

.dashboard-topup-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.credit-block-list,
.transaction-list,
.reward-selected-stack {
  display: grid;
  gap: 0.8rem;
}

.credit-block-item {
  padding: 1rem 1.05rem;
}

.credit-block-item.is-soon {
  border-color: rgba(255, 220, 164, 0.28);
}

.credit-block-item p {
  margin: 0.5rem 0 0;
}

.transaction-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.05rem;
}

.transaction-copy strong,
.reward-selected-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.transaction-copy p,
.reward-selected-item p {
  margin: 0 0 0.45rem;
}

.transaction-type-earn,
.transaction-type-purchase {
  color: #f5e5bd;
  background: rgba(255, 205, 96, 0.1);
}

.transaction-type-redeem {
  color: #f7f2e9;
  background: rgba(255, 255, 255, 0.05);
}

.transaction-amount {
  white-space: nowrap;
}

.transaction-amount.is-negative {
  color: #f5cf9e;
}

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

.license-list {
  margin-top: 0.35rem;
}

.redemption-item {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.redemption-item__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
  flex-wrap: wrap;
}

.redemption-item__head > div {
  min-width: 0;
  flex: 1 1 260px;
}

.redemption-item__head h3 {
  margin: 0.18rem 0 0;
  font-size: 1.16rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.redemption-item__description {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.redemption-item__meta {
  display: grid;
  gap: 0.75rem;
}

.redemption-item__meta article,
.license-item,
.license-list,
.dashboard-card.dashboard-licenses,
.dashboard-card.dashboard-services {
  min-width: 0;
}

.redemption-item__meta strong,
.redemption-item__meta span,
.dashboard-detail-list strong,
.dashboard-detail-list span,
.dashboard-detail-list small {
  overflow-wrap: anywhere;
}

.license-item .reward-credit-pill {
  text-transform: none;
}

.reward-layout,
.extra-credit-shell,
.dashboard-topup-shell {
  display: grid;
  gap: 1rem;
}

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

.member-redeem-intro,
.member-redeem-meta {
  margin: 0;
}

.member-redeem-meta {
  color: var(--muted);
}

.member-redeem-card .reward-card {
  min-height: 100%;
}

.reward-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.reward-sidebar {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1121px) {
  .reward-layout {
    align-items: start;
  }

  .reward-sidebar,
  .reward-balance-card {
    align-self: start;
  }

  .reward-sidebar {
    position: sticky;
    top: 104px;
  }
}

.reward-card-meta,
.reward-card-actions,
.reward-sidebar-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.reward-selected-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
}

.reward-selection-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.reward-selection-summary.is-over {
  border-color: rgba(255, 220, 164, 0.26);
}

.reward-empty {
  margin: 0;
  color: var(--muted);
}

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

.extra-credit-card {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.extra-credit-card.is-locked {
  opacity: 0.78;
}

.extra-credit-price {
  font-size: 1.9rem;
}

.extra-credit-fit,
.extra-credit-note,
.extra-credit-meta {
  margin: 0;
}

.extra-credit-fit {
  color: var(--text);
}

.extra-credit-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.gallery-card:hover,
.gallery-card:focus-within,
.metric-card:hover,
.metric-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.service-highlight:hover,
.service-highlight:focus-within,
.fit-card:hover,
.fit-card:focus-within,
.faq-item:hover,
.faq-item:focus-within,
.access-step-card:hover,
.access-step-card:focus-within,
.access-panel:hover,
.access-panel:focus-within,
.access-status-card:hover,
.access-status-card:focus-within,
.pricing-summary-card:hover,
.pricing-summary-card:focus-within,
.promo-bundle-card:hover,
.promo-bundle-card:focus-within,
.pricing-catalog-card:hover,
.pricing-catalog-card:focus-within,
.membership-plan-card:hover,
.membership-plan-card:focus-within,
.dashboard-card:hover,
.dashboard-card:focus-within,
.reward-card:hover,
.reward-card:focus-within,
.extra-credit-card:hover,
.extra-credit-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 220, 164, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 215, 147, 0.08);
}

.artists-shell,
.inquiry-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
}

.artists-copy,
.artist-wall,
.inquiry-panel,
.inquiry-note,
.lead-output {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.artists-copy,
.artist-wall,
.inquiry-panel,
.inquiry-note,
.lead-output {
  padding: 1.6rem;
}

.artists-lead,
.artists-copy p,
.inquiry-note p,
.lead-output p {
  color: var(--muted);
  line-height: 1.8;
}

.artist-wall {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.8rem;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.artist-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.artist-chip:hover,
.artist-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 220, 164, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.85fr;
  gap: 1rem;
  grid-auto-rows: 240px;
}

.gallery-card {
  min-height: 100%;
  transform: translateZ(0);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.gallery-card:not(.gallery-card-brand) img {
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-card:not(.gallery-card-brand):hover img,
.gallery-card:not(.gallery-card-brand):focus-within img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.gallery-card:hover,
.gallery-card:focus-within,
.metric-card:hover,
.metric-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.service-highlight:hover,
.service-highlight:focus-within,
.fit-card:hover,
.fit-card:focus-within,
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 220, 164, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 215, 147, 0.08);
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-copy {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 13, 12, 0.95);
}

.gallery-brand-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at center, rgba(255, 205, 96, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.9), rgba(8, 8, 8, 0.98));
}

.gallery-brand-shell img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(255, 187, 58, 0.22));
}

.inquiry-side {
  display: grid;
  gap: 1rem;
}

.inquiry-form,
.inquiry-side {
  position: relative;
  z-index: 1;
}

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

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

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

.inquiry-form select {
  appearance: none;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.inquiry-feedback[hidden] {
  display: none;
}

.inquiry-feedback {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 211, 135, 0.28);
  border-radius: 1rem;
  background: rgba(255, 216, 143, 0.08);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

.inquiry-feedback[data-state="error"] {
  border-color: rgba(255, 133, 133, 0.24);
  background: rgba(255, 120, 120, 0.08);
}

.lead-output[hidden] {
  display: none;
}

.lead-output {
  background:
    linear-gradient(180deg, rgba(255, 217, 141, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

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

.faq-item {
  padding: 1.2rem 1.3rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  background:
    linear-gradient(180deg, rgba(255, 217, 141, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.faq-item p {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.pillars article,
.service-highlight,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.pillars span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 217, 141, 0.1);
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.pillars h3,
.service-highlight h3,
.service-card h3,
.contact-card a,
.contact-card span {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.marquee {
  margin-top: 1.4rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  animation: marquee 32s linear infinite;
}

.pricing-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.filter-chip {
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
}

.filter-chip.is-active {
  color: #1c1104;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  border-color: transparent;
}

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

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

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

.service-card-category {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-card h3 {
  max-width: 20ch;
}

.price-badge {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  min-width: 120px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 217, 141, 0.22), rgba(255, 217, 141, 0.08));
  text-align: right;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card:hover .price-badge,
.service-card:focus-within .price-badge {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(240, 165, 51, 0.18);
  background: linear-gradient(160deg, rgba(255, 217, 141, 0.28), rgba(255, 217, 141, 0.12));
}

.price-badge strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.price-badge span,
.price-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-badge small:last-child {
  color: var(--gold-2);
  font-weight: 700;
}

.service-points-note {
  color: var(--gold-2) !important;
}

.extra-credit-usd {
  display: block;
  margin-top: -0.55rem;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-meta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.service-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 0.93rem;
}

.service-points-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.16);
  border-radius: 18px;
  background: rgba(255, 215, 156, 0.05);
  color: var(--text);
}

.service-card[data-expandable-card],
.membership-plan-card[data-expandable-card],
.pricing-summary-card[data-expandable-card],
.promo-bundle-card[data-expandable-card],
.reward-card[data-expandable-card],
.pricing-catalog-list li[data-expandable-card] {
  cursor: pointer;
}

.service-card.is-expanded,
.membership-plan-card.is-expanded,
.pricing-summary-card.is-expanded,
.promo-bundle-card.is-expanded,
.reward-card.is-expanded,
.pricing-catalog-list li.is-expanded {
  border-color: rgba(255, 220, 164, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 220, 164, 0.08);
}

.sellable-detail-shell {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.sellable-detail-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.sellable-detail-toggle:hover,
.sellable-detail-toggle:focus-visible {
  border-color: rgba(255, 220, 164, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.sellable-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 215, 156, 0.1);
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

[data-expandable-card].is-expanded .sellable-detail-icon {
  transform: rotate(45deg);
  background: rgba(255, 215, 156, 0.18);
}

.sellable-detail-panel {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 215, 156, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.sellable-detail-panel[hidden] {
  display: none;
}

.sellable-detail-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.sellable-detail-headline {
  margin-bottom: 0.45rem !important;
  color: var(--gold-2) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sellable-detail-support {
  margin-top: 0.45rem !important;
}

.hero-actions-cart {
  flex-wrap: wrap;
}

.cart-add-button {
  box-shadow: none;
}

.cta-band {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  gap: 0.4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 205, 96, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

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

.consultation-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow-lg);
}

.consultation-photo-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  background: rgba(255, 255, 255, 0.04);
}

.consultation-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.02), rgba(3, 7, 12, 0.28)),
    radial-gradient(circle at top left, rgba(255, 205, 96, 0.16), transparent 32%);
  pointer-events: none;
}

.consultation-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.consultation-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.consultation-copy h2,
.consultation-copy p {
  margin: 0;
}

.quote-service-grid .button {
  margin-top: 0.6rem;
}

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: #1c1104;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 18px 36px rgba(240, 165, 51, 0.3);
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(240, 165, 51, 0.34);
}

.whatsapp-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 16;
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.whatsapp-panel {
  width: min(360px, calc(100vw - 1.5rem));
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 220, 164, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(15, 15, 15, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-widget.is-open .whatsapp-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.whatsapp-panel-top strong {
  display: block;
  margin-top: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.whatsapp-panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.whatsapp-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.whatsapp-close {
  min-width: 42px;
  min-height: 42px;
  padding: 0;
}

.whatsapp-trigger {
  min-width: 64px;
  min-height: 64px;
  padding: 0 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(240, 165, 51, 0.2);
  opacity: 0.92;
}

.whatsapp-trigger.is-pulse {
  animation: whatsapp-pulse 1.8s ease-in-out infinite;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(3, 7, 12, 0.56);
  backdrop-filter: blur(10px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 145;
  width: min(430px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto auto;
  gap: 1rem;
  padding: 1.15rem;
  border-left: 1px solid rgba(255, 215, 156, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.98);
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.38);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-drawer__message {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.65;
}

.cart-drawer__message[data-state="warning"] {
  border-color: rgba(255, 215, 156, 0.26);
  color: var(--gold-2);
}

.cart-drawer__message[data-state="error"] {
  border-color: rgba(255, 143, 143, 0.26);
  color: #ffcbcb;
}

.cart-drawer__body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: auto;
  min-height: 0;
  padding-right: 0.2rem;
  -webkit-overflow-scrolling: touch;
}

.cart-license-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.08), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.cart-license-panel[hidden] {
  display: none;
}

.cart-license-panel__intro {
  display: grid;
  gap: 0.35rem;
}

.cart-license-panel__intro h4,
.cart-license-panel__intro p {
  margin: 0;
}

.cart-license-panel__intro p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.cart-license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.cart-license-field {
  display: grid;
  gap: 0.45rem;
}

.cart-license-field--full {
  grid-column: 1 / -1;
}

.cart-license-field span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-license-field input,
.cart-license-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  line-height: 1.55;
}

.cart-license-field textarea {
  min-height: 108px;
  resize: vertical;
}

.cart-license-field input::placeholder,
.cart-license-field textarea::placeholder {
  color: rgba(230, 232, 238, 0.42);
}

.cart-license-field input:focus-visible,
.cart-license-field textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 220, 164, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 220, 164, 0.16);
}

.cart-license-field input[aria-invalid="true"],
.cart-license-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 143, 143, 0.36);
  box-shadow: 0 0 0 1px rgba(255, 143, 143, 0.14);
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cart-list {
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.cart-item__copy strong,
.cart-summary strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.cart-item__copy p,
.cart-item__copy span,
.cart-drawer__caption {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cart-item__meta {
  display: grid;
  justify-items: end;
  align-content: space-between;
  gap: 0.65rem;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-item__qty span {
  min-width: 1.75rem;
  text-align: center;
  font-family: "Sora", sans-serif;
}

.cart-item__remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.cart-summary article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-summary article span {
  color: var(--muted);
}

.cart-summary__total strong {
  color: var(--gold-2);
  font-size: 1.2rem;
}

.cart-drawer__footer {
  display: grid;
  gap: 0.7rem;
}

.cart-feedback-toast {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 150;
  width: min(calc(100% - 2rem), 520px);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 14, 24, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  color: var(--text);
  transform: translate(-50%, 18px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cart-feedback-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-feedback-toast[data-state="error"] {
  border-color: rgba(255, 143, 143, 0.3);
}

.cart-feedback-toast[data-state="info"] {
  border-color: rgba(118, 173, 244, 0.26);
}

.courses-shell {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.courses-access-card,
.courses-panel {
  padding: 1.4rem;
}

.courses-access-card {
  position: sticky;
  top: 104px;
  align-self: start;
}

.courses-access-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-2);
  font-size: 0.86rem;
}

.courses-access-status.is-locked {
  color: #d0c4b2;
}

.courses-copy,
.course-library-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.courses-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.course-tab {
  min-height: 44px;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.course-tab:hover,
.course-tab:focus-visible,
.course-tab.is-active {
  color: var(--text);
  border-color: rgba(255, 220, 164, 0.28);
  background: rgba(255, 205, 96, 0.08);
  transform: translateY(-1px);
}

.course-library {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.course-library-head {
  display: grid;
  gap: 0.8rem;
}

.course-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.course-panel-head h3 {
  margin: 0.3rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.course-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 205, 96, 0.08);
  color: var(--gold-2);
}

.course-subtitle {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.course-route-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.course-route-button {
  min-height: 46px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.course-route-button:hover,
.course-route-button:focus-visible,
.course-route-button.is-current {
  border-color: rgba(255, 220, 164, 0.28);
  background: rgba(255, 205, 96, 0.09);
  color: var(--text);
  transform: translateY(-1px);
}

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

.course-study-zone {
  display: grid;
  gap: 1rem;
}

.course-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.course-card h4 {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.course-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.courses-locked {
  display: grid;
  gap: 1rem;
}

.courses-locked h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.courses-locked p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.assessment-section {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.assessment-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.assessment-section-head h4 {
  margin: 0.32rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.assessment-section-pill,
.assessment-countdown-pill,
.assessment-score-pill,
.assessment-question-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-2);
  font-size: 0.84rem;
  line-height: 1.2;
  text-align: center;
}

.assessment-section-copy,
.assessment-stage-copy,
.assessment-footer-note,
.assessment-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.assessment-section-placeholder {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.assessment-shell {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 212, 141, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.assessment-header,
.assessment-result-head,
.assessment-question-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.assessment-header h4,
.assessment-brief h5,
.assessment-stage-card h5,
.assessment-question-card h5 {
  margin: 0.32rem 0 0;
  font-family: "Sora", sans-serif;
}

.assessment-header-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.assessment-countdown-pill.is-live {
  border-color: rgba(244, 212, 141, 0.24);
  background: rgba(244, 212, 141, 0.1);
  color: #f4d48d;
}

.assessment-countdown-pill.is-pass,
.assessment-history-item.is-pass,
.assessment-result.is-pass {
  border-color: rgba(154, 226, 191, 0.24);
  background: rgba(154, 226, 191, 0.1);
  color: #d4ffe8;
}

.assessment-history-item.is-fail,
.assessment-result.is-fail {
  border-color: rgba(255, 153, 153, 0.22);
  background: rgba(255, 153, 153, 0.08);
  color: #ffd4d4;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1rem;
}

.assessment-grid.is-exam {
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  align-items: start;
}

.assessment-grid.is-certificate {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.assessment-brief,
.assessment-stage-card,
.assessment-question-card,
.assessment-certificate-preview {
  display: grid;
  gap: 1rem;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 10, 12, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.assessment-brief-kicker {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.assessment-brief h5,
.assessment-stage-card h5,
.assessment-question-card h5 {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.assessment-rule-list,
.assessment-missed-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.assessment-rule-list span,
.assessment-missed-topics span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #d8dde2;
  font-size: 0.84rem;
  line-height: 1.35;
}

.assessment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.assessment-detail-grid article {
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.assessment-detail-grid span {
  display: block;
  color: #94a0aa;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.assessment-detail-grid strong {
  display: block;
  margin-top: 0.38rem;
  color: var(--text);
  line-height: 1.55;
}

.assessment-history {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0.7rem;
}

.assessment-history-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assessment-history-item span {
  color: #bac3cb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.assessment-history-item strong {
  color: var(--text);
  font-size: 1rem;
}

.assessment-result {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assessment-score-pill {
  min-width: 92px;
  font-weight: 700;
}

.assessment-footer-note {
  padding-top: 0.25rem;
}

.subpage-actions-stack {
  display: grid;
}

.assessment-stage-card--side {
  align-self: start;
  position: sticky;
  top: 104px;
}

.assessment-question-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.assessment-question-nav-item {
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.assessment-question-nav-item:hover,
.assessment-question-nav-item:focus-visible,
.assessment-question-nav-item.is-current {
  border-color: rgba(255, 220, 164, 0.28);
  background: rgba(255, 205, 96, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.assessment-question-nav-item.is-answered {
  color: #f6e0b0;
  box-shadow: inset 0 0 0 1px rgba(244, 212, 141, 0.08);
}

.assessment-question-card {
  align-content: start;
  overflow: hidden;
  min-width: 0;
}

.assessment-question-prompt {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.7;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.assessment-options {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.assessment-option {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  min-height: 64px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.assessment-option:hover,
.assessment-option:focus-visible,
.assessment-option.is-selected {
  border-color: rgba(255, 220, 164, 0.28);
  background: rgba(255, 205, 96, 0.08);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(244, 212, 141, 0.06);
}

.assessment-option.is-binary {
  grid-template-columns: 1fr;
}

.assessment-option-key {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 205, 96, 0.12);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.assessment-option-text {
  display: block;
  font-size: 0.98rem;
  line-height: 1.7;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.assessment-question-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.assessment-question-footer-copy {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1560px) {
  .assessment-grid.is-exam {
    grid-template-columns: 1fr;
  }

  .assessment-stage-card--side {
    position: static;
  }
}

.assessment-certificate-preview {
  overflow: hidden;
}

.assessment-certificate-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #08090b;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.assessment-certificate-frame svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 36px rgba(240, 165, 51, 0.3);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(240, 165, 51, 0.36);
  }
}

.contact-card a,
.contact-card span {
  display: block;
}

.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
}

.footer img {
  width: 140px;
}

.footer-guides {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
  text-align: right;
}

.footer-guides-label {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-guides-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.footer-guides a {
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-guides a:hover,
.footer-guides a:focus-visible {
  border-color: rgba(240, 165, 51, 0.42);
  background: rgba(240, 165, 51, 0.08);
  transform: translateY(-1px);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 3.75rem, 0) scale(0.968);
  filter: blur(10px);
  transform-origin: top center;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ambient-grain {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-1.2%, 1%, 0);
  }

  50% {
    transform: translate3d(1%, -1.1%, 0);
  }

  75% {
    transform: translate3d(-0.8%, -0.5%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .subpage-hero,
  .about-grid,
  .contact-grid,
  .seo-article-grid,
  .consultation-card,
  .service-highlights,
  .seo-pathways-grid,
  .seo-callout-grid,
  .pricing-grid,
  .experience-grid,
  .results-shell,
  .fit-grid,
  .faq-list,
  .artists-shell,
  .inquiry-layout,
  .membership-hero,
  .access-intro,
  .access-layout,
  .reward-layout,
  .extra-credit-shell,
  .dashboard-topup-shell,
  .dashboard-summary-grid,
  .dashboard-detail-grid,
  .courses-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .about-content {
    padding: 2rem;
  }

  .experience-points,
  .results-list,
  .process-track,
  .gallery-grid,
  .inquiry-grid,
  .membership-plan-grid,
  .membership-rules,
  .pricing-summary-grid,
  .promo-bundle-grid,
  .pricing-catalog,
  .reward-grid,
  .member-redeem-grid,
  .extra-credit-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-detail-list-compact,
  .dashboard-stat-grid,
  .reward-selection-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-grid,
  .assessment-grid.is-exam,
  .assessment-grid.is-certificate,
  .assessment-question-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-card-tall {
    grid-row: span 1;
  }

  .courses-access-card {
    position: static;
  }

  .assessment-stage-card--side {
    position: static;
  }

  .consultation-photo-shell {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .topbar {
    border-radius: 28px;
    padding: 0.76rem 0.78rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .brand {
    width: 126px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 40px;
    padding: 0.62rem 0.88rem;
    font-size: 0.84rem;
    flex: 0 0 auto;
  }

  .assessment-section-head,
  .assessment-header,
  .assessment-result-head,
  .assessment-question-head {
    flex-direction: column;
  }

  .assessment-header-pills {
    width: 100%;
    justify-content: flex-start;
  }

  .assessment-question-nav,
  .assessment-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    padding: 4.3rem 1rem 1.4rem;
  }

  .topbar-actions {
    order: 0;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .topbar-session {
    width: auto;
    justify-content: flex-end;
  }

  .topbar .button,
  .topbar .button-gold,
  .topbar .button-ghost {
    width: auto;
    min-height: 40px;
    padding: 0.62rem 0.88rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav__inner {
    width: min(100%, 560px);
    gap: 0.14rem;
  }

  .nav__inner a {
    font-size: clamp(1.22rem, 5.8vw, 1.95rem);
  }

  .nav__utility {
    margin-top: 0.9rem;
    gap: 0.55rem;
  }

  .nav__utility .nav__utility-link {
    min-height: 40px;
    padding: 0.7rem 0.92rem;
    font-size: 0.76rem;
  }

  .nav__return-link {
    font-size: 0.84rem;
    margin-top: 0.72rem;
  }

  .nav__footer {
    font-size: 0.8rem;
    line-height: 1.36;
  }

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

  .section {
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding-bottom: 4rem;
  }

  .about-stage {
    border-radius: 28px;
  }

  .hero-logo-card,
  .metric-card,
  .info-panel,
  .pillars article,
  .service-highlight,
  .seo-link-card,
  .seo-article-card,
  .seo-callout-card,
  .service-card,
  .cta-panel,
  .contact-card,
  .consultation-card,
  .experience-copy,
  .results-copy,
  .experience-visual,
  .results-visual,
  .fit-card,
  .gallery-card,
  .faq-item,
  .artists-copy,
  .artist-wall,
  .inquiry-panel,
  .inquiry-note,
  .lead-output,
  .access-step-card,
  .access-panel,
  .access-status-card,
  .pricing-summary-card,
  .promo-bundle-card,
  .pricing-catalog-card,
  .membership-hero,
  .membership-rule-card,
  .member-switcher,
  .dashboard-card,
  .reward-card,
  .extra-credit-card {
    backdrop-filter: blur(8px);
  }

  .about-backdrop {
    filter: brightness(0.5);
    transform: scale(1.03);
  }

  .member-switcher {
    align-items: stretch;
    flex-direction: column;
  }

  .member-switcher-controls {
    justify-content: flex-start;
  }

  .member-switch-button {
    min-width: 0;
    flex: 1 1 180px;
  }
}

@media (max-width: 640px) {
  body::before {
    opacity: 0.06;
  }

  body::after {
    opacity: 0.56;
  }

  .hero h1 {
    max-width: none;
  }

  .subpage-hero-copy h1 {
    max-width: none;
  }

  .hero-logo-card {
    min-height: 290px;
    padding: 1rem;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-guides {
    justify-items: start;
    text-align: left;
  }

  .footer-guides-links {
    justify-content: flex-start;
  }

  .about-content {
    padding: 1.35rem;
  }

  .experience-copy,
  .results-copy,
  .process-shell,
  .membership-hero,
  .access-step-card,
  .access-panel,
  .access-status-card,
  .pricing-summary-card,
  .promo-bundle-card,
  .pricing-catalog-card,
  .dashboard-card,
  .reward-card,
  .extra-credit-card,
  .membership-rule-card,
  .member-switcher {
    padding: 1.35rem;
  }

  .experience-points,
  .results-list,
  .dashboard-stat-grid,
  .dashboard-detail-list-compact,
  .reward-selection-summary,
  .pricing-summary-values,
  .assessment-detail-grid,
  .assessment-question-nav {
    grid-template-columns: 1fr;
  }

  .process-step,
  .fit-card,
  .gallery-card-copy,
  .faq-item,
  .seo-link-card,
  .seo-article-card,
  .seo-callout-card,
  .artists-copy,
  .artist-wall,
  .inquiry-panel,
  .inquiry-note,
  .lead-output,
  .consultation-card {
    padding: 1.1rem;
  }

  .consultation-photo-shell {
    min-height: 280px;
  }

  .access-feedback-toast {
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: auto;
  }

  .button {
    width: 100%;
  }

  .topbar .button,
  .topbar .button-gold,
  .topbar .button-ghost {
    width: auto;
  }

  .topbar-session {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .topbar-session-pill {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }

  .service-card-header {
    flex-direction: column;
  }

  .price-badge {
    width: 100%;
    text-align: left;
  }

  .floating-contact {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.8rem;
  }

  .whatsapp-widget {
    left: 50%;
    right: auto;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    justify-items: center;
    width: min(300px, calc(100vw - 2rem));
    gap: 0.7rem;
  }

  .whatsapp-panel {
    width: 100%;
  }

  .whatsapp-panel-actions {
    flex-direction: column;
  }

  .inquiry-actions {
    flex-direction: column;
  }

  .whatsapp-trigger {
    min-width: 52px;
    min-height: 52px;
    padding: 0 0.85rem;
    font-size: 0.8rem;
    box-shadow: 0 6px 14px rgba(240, 165, 51, 0.12);
    opacity: 0.78;
  }

  .whatsapp-trigger.is-pulse {
    animation: none;
  }

  .topbar {
    padding: 0.68rem 0.72rem;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    width: 112px;
    order: 1;
    flex: 0 0 auto;
  }

  .topbar .button-gold,
  .menu-toggle {
    min-height: 38px;
    padding-inline: 0.78rem;
    font-size: 0.78rem;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .topbar-actions {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
  }

  .topbar-session {
    margin-right: 0;
    width: auto;
    max-width: 100%;
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .topbar-session-pill {
    min-height: 36px;
    width: auto;
    max-width: 100%;
    padding: 0.56rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 0 auto;
  }

  .topbar-logout {
    display: inline-flex !important;
    min-height: 36px;
    padding-inline: 0.72rem;
    font-size: 0.72rem;
    flex: 0 0 auto;
  }

  .topbar .button-gold {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding-inline: 0.72rem;
    font-size: 0.72rem;
    justify-content: center;
    flex: 0 0 auto;
  }

  .cart-trigger {
    min-width: 0;
    min-height: 38px;
    padding-inline: 0.74rem;
    gap: 0.45rem;
    flex: 0 0 auto;
  }

  .cart-trigger__label {
    font-size: 0.74rem;
  }

  .cart-trigger__count {
    min-width: 1.35rem;
    min-height: 1.35rem;
    font-size: 0.72rem;
  }

  .topbar .button-gold {
    min-width: 0;
    padding-inline: 0.74rem;
    font-size: 0.74rem;
    flex: 0 0 auto;
  }

  .nav__utility {
    width: 100%;
  }

  .nav__utility .nav__utility-link {
    flex: 1 1 auto;
    justify-content: center;
  }

  .cart-drawer {
    width: 100vw;
    padding: 0.95rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__meta {
    justify-items: stretch;
  }

  .cart-item__qty {
    justify-content: flex-start;
  }

  .membership-plan-actions,
  .promo-bundle-actions {
    flex-direction: column;
  }

  .gallery-brand-shell {
    padding: 1.2rem;
  }

  .transaction-item,
  .reward-selected-item {
    grid-template-columns: 1fr;
  }

  .transaction-amount,
  .reward-selected-item .button {
    justify-self: flex-start;
  }
}

.member-switcher-controls,
.admin-console-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.member-quick-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.02);
}

.member-quick-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-quick-card strong {
  display: block;
  font-size: 1.1rem;
}

.member-quick-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
}

.admin-console-shell {
  margin-top: 1.5rem;
}

.admin-console-card {
  display: grid;
  gap: 1.2rem;
}

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

.admin-console-toolbar {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 0.9rem;
  align-items: end;
}

.admin-toolbar-field {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.admin-toolbar-field input,
.admin-toolbar-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 164, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.admin-toolbar-meta {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-toolbar-meta strong {
  font-size: 1.2rem;
}

.admin-toolbar-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.admin-notification-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.07), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

.admin-notification-stack {
  display: grid;
  gap: 0.85rem;
}

.admin-notification-item {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 220, 164, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-notification-item.is-unread {
  border-color: rgba(255, 220, 164, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 220, 164, 0.08);
}

.admin-notification-copy h4 {
  margin: 0.15rem 0 0.45rem;
  font-size: 1.05rem;
}

.admin-notification-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-member-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.07), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

.admin-member-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-member-head h3 {
  margin: 0;
}

.admin-member-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-member-form label {
  display: grid;
  gap: 0.45rem;
}

.admin-member-form input,
.admin-member-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 164, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.admin-member-actions {
  display: flex;
  gap: 0.75rem;
  align-items: end;
  grid-column: 1 / -1;
}

.course-preview-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.course-preview-image-shell,
.course-preview-copy,
.course-embed-shell {
  padding: 1rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.07), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

.course-preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.course-preview-copy h4 {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.2rem;
}

.course-preview-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.course-embed-shell {
  margin-top: 1.2rem;
  overflow: hidden;
}

.course-embed-frame {
  display: block;
  width: 100%;
  min-height: 860px;
  border: 0;
  border-radius: 20px;
  background: #111;
}

body.beats-page {
  background:
    radial-gradient(circle at 14% 16%, rgba(83, 149, 255, 0.13), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(240, 170, 88, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.8), rgba(4, 8, 14, 0.92)),
    url("./studio-live.jpg") center 22% / cover fixed no-repeat,
    linear-gradient(180deg, #04070b 0%, #08111c 44%, #04070b 100%);
}

.beats-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.75rem;
  align-items: stretch;
  padding-top: 1.5rem;
}

.beats-hero-copy,
.beats-hero-poster,
.beats-manifesto-copy,
.beats-manifesto-note,
.beats-final-cta-shell,
.beat-empty-state {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 19, 0.8);
  box-shadow: var(--shadow-lg);
}

.beats-hero-copy {
  display: grid;
  align-content: end;
  gap: 1.15rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  min-height: min(78svh, 760px);
}

.beats-hero-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.beats-hero-text {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.beats-hero-badges {
  max-width: 40rem;
}

.beats-hero-poster {
  display: grid;
  align-items: stretch;
  min-height: min(78svh, 760px);
  padding: clamp(1rem, 2vw, 1.25rem);
  background:
    radial-gradient(circle at top left, rgba(255, 201, 112, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 12, 19, 0.86);
}

.beats-poster-frame {
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.85rem;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 26px;
  border: 1px solid rgba(255, 220, 164, 0.18);
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.24), rgba(4, 7, 12, 0.82)),
    radial-gradient(circle at top right, rgba(255, 218, 155, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(17, 31, 51, 0.75), rgba(10, 14, 24, 0.96));
}

.beats-poster-frame::before,
.beats-poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.beats-poster-frame::before {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.05) 46%, transparent 60%);
  mix-blend-mode: screen;
}

.beats-poster-frame::after {
  inset: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 220, 164, 0.16);
}

.beats-poster-label {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.beats-poster-frame strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.beats-poster-frame span,
.beats-poster-frame p {
  margin: 0;
  color: var(--muted);
}

.beats-manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
}

.beats-manifesto-copy {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.beats-manifesto-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.beats-manifesto-quote {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.95;
}

.beats-manifesto-aside {
  display: grid;
  gap: 1rem;
}

.beats-manifesto-note {
  padding: 1.35rem 1.25rem;
}

.beats-manifesto-note p,
.beats-manifesto-note li {
  color: var(--muted);
  line-height: 1.8;
}

.beats-manifesto-note ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.beats-delivery-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 215, 156, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.12), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-lg);
}

.beats-delivery-card h3,
.beats-delivery-card p {
  margin: 0;
}

.beats-delivery-card p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.beats-spotlight-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 19, 0.82);
  box-shadow: var(--shadow-lg);
}

.beats-spotlight-copy h2 {
  margin: 0.2rem 0 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.beats-spotlight-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.beats-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.beat-pack-card .promo-bundle-values {
  margin-bottom: 0.75rem;
}

.beat-pack-card .promo-bundle-meta {
  margin-top: 1rem;
}

.beats-catalog-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.beats-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.beat-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 112, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 19, 0.86);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.beat-card:hover,
.beat-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 220, 164, 0.28);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

.beat-cover {
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.6rem;
  min-height: 290px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 220, 164, 0.1);
  overflow: hidden;
  transition: transform 260ms ease, filter 260ms ease;
}

.beat-card.is-expanded .beat-cover {
  transform: scale(1.03);
  filter: saturate(1.06);
}

.beat-cover::before,
.beat-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.beat-cover::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 80% 24%, rgba(255, 220, 164, 0.16), transparent 20%);
}

.beat-cover::after {
  background:
    radial-gradient(circle at center, transparent 40%, rgba(4, 7, 12, 0.22) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px);
  mix-blend-mode: soft-light;
}

.beat-cover--sunrise {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.18), rgba(8, 12, 18, 0.72)),
    radial-gradient(circle at top, rgba(255, 194, 126, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(20, 51, 82, 0.92), rgba(171, 98, 42, 0.78));
}

.beat-cover--noir {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.12), rgba(8, 12, 18, 0.78)),
    radial-gradient(circle at top right, rgba(255, 186, 121, 0.18), transparent 26%),
    linear-gradient(140deg, rgba(10, 19, 30, 0.96), rgba(49, 57, 82, 0.76));
}

.beat-cover--ember {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.18), rgba(8, 12, 18, 0.76)),
    radial-gradient(circle at top, rgba(255, 142, 58, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(72, 20, 15, 0.92), rgba(183, 83, 31, 0.74));
}

.beat-cover--chrome {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.12), rgba(8, 12, 18, 0.76)),
    radial-gradient(circle at top left, rgba(108, 172, 255, 0.28), transparent 26%),
    linear-gradient(145deg, rgba(14, 18, 28, 0.96), rgba(56, 73, 96, 0.78));
}

.beat-cover--velvet {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.12), rgba(8, 12, 18, 0.74)),
    radial-gradient(circle at top right, rgba(255, 169, 200, 0.26), transparent 24%),
    linear-gradient(145deg, rgba(55, 22, 42, 0.92), rgba(145, 54, 97, 0.74));
}

.beat-cover--tropic {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.14), rgba(8, 12, 18, 0.7)),
    radial-gradient(circle at top, rgba(118, 255, 210, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(11, 53, 57, 0.94), rgba(38, 122, 112, 0.74));
}

.beat-cover--hazard {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.12), rgba(8, 12, 18, 0.78)),
    radial-gradient(circle at top left, rgba(255, 101, 101, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(34, 17, 22, 0.96), rgba(103, 41, 60, 0.76));
}

.beat-cover-kicker,
.beat-cover-meta {
  position: relative;
  z-index: 1;
  color: rgba(243, 247, 251, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.beat-cover-title {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 8ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.beat-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.beat-card-copy h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.beat-card-teaser {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.beat-price-stack {
  display: grid;
  gap: 0.2rem;
  min-width: 120px;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 220, 164, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-align: right;
}

.beat-price-stack strong {
  font-size: 1.15rem;
}

.beat-price-stack span,
.beat-price-stack small {
  color: var(--muted);
}

.beat-audio-shell {
  display: grid;
  gap: 0.55rem;
}

.beat-audio-label {
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.beat-preview-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.beat-audio {
  width: 100%;
  min-height: 54px;
  accent-color: var(--gold-1);
  filter: saturate(0.92) contrast(1.04);
}

.beat-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.beat-detail-grid article {
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(255, 220, 164, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.beat-detail-grid span {
  color: rgba(243, 247, 251, 0.62);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beat-detail-grid strong {
  font-size: 0.95rem;
}

.beat-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.beat-purchase-state {
  margin: 0 0 0.9rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 164, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.beat-purchase-state.is-ready {
  border-color: rgba(255, 210, 126, 0.22);
  color: #f4ead8;
}

.beat-purchase-state.is-shortfall {
  border-color: rgba(108, 161, 255, 0.2);
  color: #d5e0f1;
}

.beat-purchase-state.is-locked {
  border-color: rgba(255, 255, 255, 0.08);
}

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

.editorial-main {
  padding-bottom: 2rem;
}

.editorial-hero {
  --editorial-hero-image: url("./studio-session-2026.jpg");
  position: relative;
  width: min(calc(100% - 1.2rem), calc(var(--max-width) + 7rem));
  min-height: calc(100svh - 7.5rem);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(3, 6, 11, 0.22), rgba(3, 6, 11, 0.88)),
    linear-gradient(135deg, rgba(255, 215, 156, 0.05), rgba(94, 150, 255, 0.08)),
    #05080d;
  box-shadow: var(--shadow-lg);
}

.editorial-hero::before,
.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.editorial-hero::before {
  background:
    linear-gradient(110deg, rgba(5, 8, 13, 0.2) 5%, rgba(5, 8, 13, 0.78) 52%, rgba(5, 8, 13, 0.96) 100%),
    radial-gradient(circle at 16% 18%, rgba(255, 213, 144, 0.18), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(98, 162, 255, 0.18), transparent 26%),
    var(--editorial-hero-image) center / cover no-repeat;
  transform: scale(1.03);
}

.editorial-hero::after {
  inset: -12%;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.98'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  animation: ambient-grain 0.18s steps(2) infinite;
}

.editorial-hero--beats {
  --editorial-hero-image: url("./studio-live.jpg");
}

.editorial-hero--studio {
  --editorial-hero-image: url("./studio-session-2026.jpg");
}

.editorial-hero--producer {
  --editorial-hero-image: url("./studio-live.jpg");
}

.editorial-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(1.35rem, 3vw, 2.4rem);
  align-items: end;
}

.editorial-hero__content {
  max-width: 44rem;
}

.editorial-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-hero__content h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.editorial-hero__lede {
  margin: 1.15rem 0 0;
  max-width: 38rem;
  color: rgba(243, 247, 251, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.72;
}

.editorial-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.editorial-highlight-row span {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 220, 164, 0.16);
  border-radius: 999px;
  background: rgba(7, 12, 19, 0.48);
  backdrop-filter: blur(14px);
  color: rgba(243, 247, 251, 0.76);
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.editorial-hero__panel {
  position: relative;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(255, 220, 164, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(6, 11, 18, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.editorial-hero__panel > p {
  margin: 0;
}

.editorial-panel-copy {
  margin-top: 0.85rem;
  color: rgba(243, 247, 251, 0.8);
  line-height: 1.76;
}

.editorial-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.editorial-metric {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.editorial-metric span,
.editorial-bullet-card span {
  display: block;
  margin-bottom: 0.32rem;
  color: rgba(243, 247, 251, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-metric strong {
  display: block;
  font-size: 1.38rem;
  line-height: 1.05;
}

.editorial-metric small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(243, 247, 251, 0.74);
  line-height: 1.55;
}

.editorial-section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 4rem 0 1rem;
}

.editorial-section__heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.editorial-section__heading h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.editorial-section__heading p,
.editorial-text-block p,
.editorial-list li,
.editorial-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

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

.editorial-bullet-card,
.editorial-text-block,
.editorial-quote,
.editorial-cta,
.editorial-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 12, 19, 0.64);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.editorial-bullet-card {
  padding: 1.35rem 1.3rem;
}

.editorial-bullet-card h3,
.editorial-text-block h2,
.editorial-text-block h3,
.editorial-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.editorial-bullet-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.editorial-bullet-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.editorial-text-block {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.editorial-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.editorial-media-card {
  min-height: 100%;
}

.editorial-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 18%;
}

.editorial-quote {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.editorial-quote blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.editorial-quote p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.editorial-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.editorial-cta {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.editorial-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

  .editorial-hero__inner,
  .editorial-split,
  .editorial-bullet-grid {
    grid-template-columns: 1fr;
  }

  .editorial-hero__content h1 {
    max-width: 13ch;
  }

  .editorial-media-card img {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .editorial-hero {
    width: min(calc(100% - 0.9rem), calc(var(--max-width) + 7rem));
    min-height: calc(100svh - 5.5rem);
    padding: 1.2rem;
    border-radius: 28px;
  }

  .editorial-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.18) 0%, rgba(5, 8, 13, 0.78) 50%, rgba(5, 8, 13, 0.96) 100%),
      radial-gradient(circle at 16% 18%, rgba(255, 213, 144, 0.16), transparent 26%),
      radial-gradient(circle at 78% 22%, rgba(98, 162, 255, 0.16), transparent 26%),
      var(--editorial-hero-image) center 18% / cover no-repeat;
  }

  .editorial-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 12vw, 4.15rem);
  }

  .editorial-highlight-row span {
    width: 100%;
    text-align: center;
  }

  .editorial-metrics {
    grid-template-columns: 1fr;
  }

  .editorial-section {
    width: min(calc(100% - 1.2rem), var(--max-width));
    padding: 3rem 0 0.5rem;
  }

  .editorial-section__heading h2 {
    max-width: 12ch;
  }

  .editorial-media-card img {
    min-height: 280px;
  }

  .editorial-actions,
  .editorial-cta__actions,
  .editorial-link-row {
    flex-direction: column;
  }
}

.beat-empty-state {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
}

.beat-empty-state h3,
.beat-empty-state p {
  margin: 0;
}

.beats-final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.beats-final-cta-shell h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}

.beats-final-cta-shell p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 1120px) {
  .member-switcher-controls,
  .admin-console-summary,
  .admin-console-toolbar,
  .admin-member-form,
  .course-preview-stage,
  .beats-spotlight-shell,
  .beats-hero,
  .beats-manifesto-layout,
  .beats-delivery-grid,
  .beats-pack-grid,
  .beats-final-cta-shell,
  .beat-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-member-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-notification-actions {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 760px) {
  .beats-hero-copy,
  .beats-hero-poster,
  .beats-manifesto-copy,
  .beats-manifesto-note,
  .beats-final-cta-shell,
  .beat-card,
  .beat-empty-state {
    border-radius: 24px;
  }

  .beats-hero-copy,
  .beats-hero-poster {
    min-height: auto;
  }

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

  .beat-card-head,
  .beats-final-cta-shell {
    grid-template-columns: 1fr;
  }

  .cart-license-grid {
    grid-template-columns: 1fr;
  }

  .beat-price-stack {
    min-width: 0;
    text-align: left;
  }

  .beat-cover {
    min-height: 250px;
  }

  .beat-cover-title {
    max-width: 10ch;
  }
}

@media (max-width: 760px) {
  .hero-route__links {
    flex-direction: column;
  }

  .hero-route__links a {
    width: 100%;
    justify-content: center;
  }
}

.artists-entry,
.artists-vault__intro,
.artists-vault-hero__copy,
.artists-vault-hero__aside,
.artist-detail-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 156, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 96, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 10, 8, 0.94);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.artists-entry {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.35rem;
  padding: 1.65rem;
}

.artists-entry__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.artists-entry__copy h2,
.artist-detail-panel h2,
.artists-vault-hero__copy h1,
.artist-profile-hero__content h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.artists-entry__copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  max-width: 12ch;
}

.artists-entry__copy p,
.artists-vault__intro p,
.artists-vault-hero__copy p,
.artists-vault-hero__aside p,
.artist-detail-panel p,
.artist-links-note,
.artist-trophy-card__meta span {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.artists-entry__showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: end;
  min-height: 420px;
}

.artists-entry__showcase .artist-trophy-card.is-compact:nth-child(2) {
  transform: translateY(-22px);
}

.artists-vault-hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1.35rem;
  padding-top: 3.15rem;
  align-items: stretch;
}

.artists-vault-hero__copy,
.artists-vault-hero__aside {
  padding: 1.75rem;
}

.artists-vault-hero__copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.artists-vault-hero__copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  max-width: 10ch;
}

.artists-vault-hero__aside {
  display: grid;
  align-content: end;
  gap: 0.75rem;
  min-height: 100%;
  background:
    radial-gradient(circle at center, rgba(255, 205, 96, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 8, 7, 0.94);
}

.artists-vault-hero__aside strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}

.artists-vault-hero__showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
  min-height: 320px;
}

.artists-vault-hero__showcase .artist-trophy-card.is-compact {
  min-height: 270px;
}

.artists-vault-hero__showcase .artist-trophy-card.is-compact .artist-trophy-card__stage {
  min-height: 185px;
}

.artists-vault-hero__showcase .artist-trophy-card.is-compact img {
  max-height: 180px;
}

.artists-vault {
  display: grid;
  gap: 1.35rem;
}

.artists-vault__intro {
  padding: 1.35rem 1.45rem;
}

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

.artist-trophy-card {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 430px;
  padding: 1.05rem 1rem 1rem;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.94);
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.artist-trophy-card--full {
  align-content: start;
  min-height: 0;
  cursor: default;
}

.artist-trophy-card.is-compact {
  min-height: 360px;
}

.artist-trophy-card__primary {
  display: grid;
  gap: 0.65rem;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.artist-trophy-card__stage {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 320px;
  padding: 0.6rem 0.25rem 0.5rem;
}

.artist-trophy-card.is-compact .artist-trophy-card__stage {
  min-height: 260px;
}

.artist-trophy-card__halo,
.artist-trophy-card__shine,
.artist-trophy-card__pedestal,
.artist-trophy-card__reflection {
  position: absolute;
  pointer-events: none;
}

.artist-trophy-card__halo {
  inset: 8% 14% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 205, 96, 0.32), rgba(255, 205, 96, 0.04) 58%, transparent 76%);
  filter: blur(10px);
  opacity: 0.82;
}

.artist-trophy-card__shine {
  top: -14%;
  bottom: -14%;
  left: -48%;
  width: 34%;
  background: linear-gradient(120deg, transparent, rgba(255, 244, 221, 0.42), transparent);
  transform: skewX(-18deg) translateX(0);
  opacity: 0;
  transition:
    transform 760ms ease,
    opacity 260ms ease;
  z-index: 3;
}

.artist-trophy-card__pedestal {
  left: 12%;
  right: 12%;
  bottom: 10px;
  height: 28px;
  border-radius: 999px 999px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 234, 193, 0.26), rgba(184, 122, 18, 0.18)),
    linear-gradient(90deg, rgba(50, 34, 10, 0.82), rgba(103, 71, 15, 0.92), rgba(50, 34, 10, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 26px rgba(0, 0, 0, 0.34);
  z-index: 0;
}

.artist-trophy-card__reflection {
  left: 18%;
  right: 18%;
  bottom: 2px;
  height: 100px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 230, 182, 0.16), transparent 72%);
  filter: blur(4px);
  opacity: 0.42;
  z-index: 0;
}

.artist-trophy-card__stage img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 22px rgba(255, 204, 96, 0.14));
  transform-origin: center bottom;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.artist-trophy-card.is-compact .artist-trophy-card__stage img {
  max-height: 252px;
}

.artist-trophy-card__meta {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
}

.artist-trophy-card__meta strong {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.04;
  color: var(--text);
}

.artist-trophy-card__meta span {
  font-size: 0.84rem;
  color: rgba(232, 239, 247, 0.66);
}

.artist-trophy-card:hover,
.artist-trophy-card:focus-within,
.artist-trophy-card:focus-visible,
.artist-trophy-card:active {
  transform: translateY(-6px);
  border-color: rgba(255, 220, 164, 0.3);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 215, 156, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.artist-trophy-card:hover .artist-trophy-card__shine,
.artist-trophy-card:focus-within .artist-trophy-card__shine,
.artist-trophy-card:focus-visible .artist-trophy-card__shine,
.artist-trophy-card:active .artist-trophy-card__shine {
  opacity: 1;
  transform: skewX(-18deg) translateX(320%);
}

.artist-trophy-card:hover .artist-trophy-card__stage img,
.artist-trophy-card:focus-within .artist-trophy-card__stage img,
.artist-trophy-card:focus-visible .artist-trophy-card__stage img,
.artist-trophy-card:active .artist-trophy-card__stage img {
  transform: translateY(-8px) scale(1.035);
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(255, 215, 96, 0.2));
}

.artist-trophy-card__footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
}

.artist-profile-shell {
  display: grid;
  gap: 1.25rem;
  padding-top: 3rem;
}

.artist-back-nav,
.artist-bottom-nav,
.artist-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: flex-start;
}

.artist-links-grid.artist-links-grid--card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  align-items: stretch;
}

.artist-links-grid.artist-links-grid--card .artist-platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.artist-links-grid.artist-links-grid--card .artist-platform-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.artist-trophy-card__cta {
  width: 100%;
  justify-content: center;
}

.artist-profile-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
}

.artist-profile-hero__stage,
.artist-profile-hero__content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.94);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.artist-profile-hero__stage {
  min-height: 620px;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 1.4rem;
  isolation: isolate;
}

.artist-profile-hero__stage.is-photo-hero {
  align-items: center;
}

.artist-profile-hero__ambient {
  position: absolute;
  inset: 0;
  background-position: center 12%;
  background-repeat: no-repeat;
  background-size: 72%;
  filter: blur(28px) saturate(110%);
  opacity: 0.22;
  transform: scale(1.15);
}

.artist-profile-hero__stage.is-photo-hero .artist-profile-hero__ambient {
  background-position: center;
  background-size: cover;
  filter: blur(44px) saturate(112%);
  opacity: 0.28;
  transform: scale(1.08);
}

.artist-profile-hero__vitrine {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  width: min(100%, 580px);
  min-height: 100%;
  padding-bottom: 1rem;
}

.artist-profile-hero__halo {
  position: absolute;
  inset: 10% 12% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 205, 96, 0.34), rgba(255, 205, 96, 0.06) 58%, transparent 78%);
  filter: blur(12px);
  opacity: 0.85;
}

.artist-profile-hero__pedestal {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18px;
  height: 34px;
  border-radius: 999px 999px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 238, 204, 0.25), rgba(176, 115, 12, 0.2)),
    linear-gradient(90deg, rgba(54, 37, 9, 0.9), rgba(126, 86, 18, 0.94), rgba(54, 37, 9, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.36);
}

.artist-profile-hero__image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 26px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 32px rgba(255, 205, 96, 0.16));
}

.artist-profile-hero__image.is-photo-hero {
  width: min(100%, 520px);
  max-height: 520px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 228, 174, 0.22);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 244, 226, 0.04);
}

.artist-profile-hero__content {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: 1.85rem;
}

.artist-profile-hero__content h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  max-width: 10ch;
}

.artist-profile-hero__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.artist-profile-mark {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 215, 156, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 226, 171, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 8, 6, 0.78);
}

.artist-profile-mark img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(255, 205, 96, 0.14));
}

.artist-profile-mark div {
  display: grid;
  gap: 0.35rem;
}

.artist-profile-mark strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.artist-profile-mark span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.artist-identity-grid,
.artist-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.artist-detail-panel {
  padding: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.artist-detail-panel--compact strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
}

.artist-detail-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.artist-achievement-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

.artist-links-block {
  display: grid;
  gap: 0.75rem;
}

.artist-links-block .artist-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(3.15rem, 4rem));
  gap: 0.45rem;
  align-items: start;
  justify-content: start;
}

.artist-links-block .artist-platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.artist-links-block .artist-platform-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.artist-link-button {
  min-width: 0;
}

.artist-links-note {
  max-width: 48ch;
}

.artist-editorial-panel {
  align-content: start;
}

.artist-editorial-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.artist-editorial-keywords span {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 156, 0.18);
  background: rgba(255, 214, 150, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.artist-editorial-actions:has(.artist-platform-link) {
  display: grid;
  grid-template-columns: repeat(5, minmax(3.15rem, 4rem));
  gap: 0.55rem;
  align-items: start;
  justify-content: start;
}

.artist-editorial-actions:has(.artist-platform-link) .button {
  grid-column: 1 / -1;
}

.artist-editorial-actions:has(.artist-platform-link) .artist-platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.artist-editorial-actions:has(.artist-platform-link) .artist-platform-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.artists-editorial-entry {
  margin-top: 1.25rem;
}

.editorial-index-shell,
.artist-editorial-shell {
  display: grid;
  gap: 1.25rem;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.editorial-index-hero,
.artist-editorial-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.25rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 215, 156, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 196, 90, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.96);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.editorial-index-hero {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 1.75rem;
}

.artist-editorial-hero {
  grid-template-columns: 1.02fr 0.98fr;
  padding: 1.4rem;
}

.editorial-index-copy,
.artist-editorial-copy,
.artist-editorial-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.editorial-index-copy h1,
.artist-editorial-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.editorial-index-copy p,
.artist-editorial-copy p,
.artist-editorial-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.editorial-index-aside,
.artist-editorial-side {
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 215, 156, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 9, 7, 0.78);
}

.editorial-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.editorial-index-section {
  display: grid;
  gap: 1rem;
}

.editorial-index-section__heading {
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 215, 156, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.88);
}

.editorial-index-section__heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  max-width: 18ch;
}

.editorial-index-section__heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.editorial-index-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 215, 156, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 7, 6, 0.92);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.editorial-index-card:hover,
.editorial-index-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 156, 0.26);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.editorial-index-card__head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
}

.editorial-index-card__head img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 20px rgba(255, 205, 96, 0.16));
}

.editorial-index-card__copy {
  display: grid;
  gap: 0.55rem;
}

.editorial-index-card__copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.18;
}

.editorial-index-card__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.editorial-index-card.is-lab .editorial-index-card__head {
  grid-template-columns: 176px 1fr;
  align-items: stretch;
}

.editorial-index-card.is-lab .editorial-index-card__head img {
  width: 176px;
  height: 148px;
  border-radius: 22px;
  object-fit: cover;
  filter: none;
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 236, 200, 0.08);
}

.editorial-lab-shell {
  padding-top: 1rem;
  padding-bottom: 0;
}

.artist-editorial-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  justify-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 215, 156, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 196, 90, 0.16), transparent 42%),
    rgba(10, 8, 6, 0.88);
  isolation: isolate;
}

.artist-editorial-stage__ambient {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(40px) saturate(112%);
  opacity: 0.3;
  transform: scale(1.08);
}

.artist-editorial-stage__pedestal {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 20px;
  height: 36px;
  border-radius: 999px 999px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 238, 204, 0.25), rgba(176, 115, 12, 0.18)),
    linear-gradient(90deg, rgba(54, 37, 9, 0.9), rgba(126, 86, 18, 0.94), rgba(54, 37, 9, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.36);
}

.artist-editorial-stage__image {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  max-height: 520px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 54px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 24px rgba(255, 205, 96, 0.14));
}

.artist-editorial-stage__image.is-photo {
  width: min(100%, 520px);
  height: min(520px, calc(100% - 44px));
  object-fit: cover;
  object-position: var(--editorial-photo-position, center 22%);
  align-self: end;
  border-radius: 28px;
  border: 1px solid rgba(255, 228, 174, 0.22);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 244, 226, 0.04);
  filter: none;
}

.artist-editorial-trophy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 156, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 226, 171, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 8, 6, 0.78);
}

.artist-editorial-trophy img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.artist-editorial-trophy div {
  display: grid;
  gap: 0.35rem;
}

.artist-editorial-trophy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.artist-editorial-trophy span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.artist-editorial-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.artist-editorial-keywords span {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 156, 0.18);
  background: rgba(255, 214, 150, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.1rem;
}

.artist-editorial-article,
.artist-editorial-aside {
  display: grid;
  gap: 1.1rem;
}

.artist-editorial-richtext,
.artist-editorial-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
}

.artist-editorial-richtext p,
.artist-editorial-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.artist-editorial-richtext h2,
.artist-editorial-panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.artist-editorial-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

.artist-editorial-actions,
.editorial-index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.route-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.4rem 0 0.2rem;
  color: rgba(243, 247, 251, 0.72);
  font-size: 0.95rem;
}

.route-breadcrumbs a {
  color: rgba(255, 215, 156, 0.9);
}

.ruta-teaser__shell,
.ruta-hero,
.ruta-solution__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.ruta-teaser__copy,
.ruta-teaser__frame,
.ruta-hero__copy,
.ruta-hero__visual,
.ruta-problem-card,
.ruta-execution__card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow-lg);
}

.ruta-teaser__copy p:last-of-type,
.ruta-teaser__frame p:last-of-type,
.ruta-hero__copy p:last-of-type,
.ruta-problem-card p,
.ruta-execution__card p {
  color: var(--muted);
  line-height: 1.85;
}

.ruta-teaser__frame,
.ruta-hero__visual {
  display: grid;
  gap: 1rem;
}

.ruta-teaser__frame h3,
.ruta-hero__panel h2,
.ruta-solution__copy h2,
.ruta-plan-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.ruta-teaser__grid,
.ruta-plan-grid {
  display: grid;
  gap: 1rem;
}

.ruta-teaser__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ruta-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.ruta-hero__visual > img {
  width: 100%;
  min-height: 360px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.05) contrast(1.03);
}

.ruta-hero__panel {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 215, 156, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 213, 151, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 15, 0.82);
}

.ruta-hero__lead {
  font-size: 1.08rem;
  line-height: 1.9;
}

.ruta-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.ruta-hero__stats article {
  padding: 0.9rem;
  border: 1px solid rgba(255, 215, 156, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.ruta-hero__stats span,
.ruta-plan-results span,
.ruta-execution__list li,
.ruta-solution__list li {
  color: var(--muted);
}

.ruta-hero__stats strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
}

.ruta-problem-grid,
.ruta-execution__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ruta-problem-card h3,
.ruta-execution__card h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
}

.ruta-solution__copy,
.ruta-solution__aside {
  display: grid;
  gap: 1rem;
}

.ruta-solution__checklist,
.ruta-solution__aside {
  display: grid;
  gap: 0.9rem;
}

.ruta-solution__checklist article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.ruta-solution__checklist span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(255, 215, 156, 0.12);
  color: var(--gold-2);
  font-weight: 700;
}

.ruta-solution__checklist h3 {
  margin: 0 0 0.35rem;
  font-family: "Sora", sans-serif;
}

.ruta-solution__checklist p,
.ruta-solution__list {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.ruta-solution__panel {
  display: grid;
  gap: 0.8rem;
}

.ruta-solution__list {
  padding-left: 1.15rem;
}

.ruta-state-card {
  margin-top: 1rem;
}

.ruta-plan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.08), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.ruta-plan-card[data-ruta-plan-id="ruta-artistica-esencial"] {
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.92) 0%, rgba(7, 10, 15, 0.8) 34%, rgba(7, 10, 15, 0.95) 100%),
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.14), transparent 26%),
    url("./ruta-plan-esencial.jpg") center 30% / cover no-repeat;
}

.ruta-plan-card[data-ruta-plan-id="ruta-artistica-desarrollo"] {
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.9) 0%, rgba(7, 10, 15, 0.76) 34%, rgba(7, 10, 15, 0.94) 100%),
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.14), transparent 24%),
    url("./ruta-plan-desarrollo.jpg") center 22% / cover no-repeat;
}

.ruta-plan-card[data-ruta-plan-id="ruta-artistica-premium"] {
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.9) 0%, rgba(6, 9, 14, 0.74) 30%, rgba(6, 9, 14, 0.95) 100%),
    radial-gradient(circle at top right, rgba(255, 209, 138, 0.18), transparent 24%),
    url("./ruta-plan-premium.jpg") center 14% / cover no-repeat;
}

.ruta-plan-card.is-featured {
  border-color: rgba(255, 215, 156, 0.26);
  background:
    radial-gradient(circle at top right, rgba(255, 214, 149, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(255, 239, 205, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(11, 15, 22, 0.96);
}

.ruta-plan-card.is-featured[data-ruta-plan-id="ruta-artistica-premium"] {
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.88) 0%, rgba(6, 9, 14, 0.72) 30%, rgba(6, 9, 14, 0.94) 100%),
    radial-gradient(circle at top right, rgba(255, 214, 149, 0.18), transparent 22%),
    url("./ruta-plan-premium.jpg") center 14% / cover no-repeat;
}

.ruta-plan-card.is-teaser {
  gap: 0.7rem;
  min-height: 0;
}

.ruta-plan-card.is-teaser .ruta-plan-head {
  display: grid;
  justify-content: initial;
  gap: 0.65rem;
}

.ruta-plan-card.is-teaser .ruta-plan-launch {
  justify-self: start;
}

.ruta-plan-card.is-teaser .ruta-plan-launch,
.ruta-plan-card.is-teaser .ruta-plan-discount,
.ruta-plan-card.is-teaser .ruta-plan-savings {
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

.ruta-plan-card.is-teaser .ruta-plan-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.ruta-plan-card.is-compact {
  padding: 1.2rem;
}

.ruta-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.ruta-plan-head h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.ruta-plan-positioning,
.ruta-plan-description,
.ruta-plan-reference {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.ruta-plan-values {
  display: grid;
  gap: 0.3rem;
}

.ruta-plan-price {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.ruta-plan-original,
.ruta-plan-usd,
.ruta-plan-points {
  color: rgba(243, 247, 251, 0.76);
}

.ruta-plan-original s {
  color: rgba(243, 247, 251, 0.52);
}

.ruta-plan-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ruta-plan-launch,
.ruta-plan-discount,
.ruta-plan-savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 156, 0.18);
  background: rgba(255, 215, 156, 0.1);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ruta-plan-includes,
.ruta-execution__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  line-height: 1.75;
}

.ruta-plan-results {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ruta-plan-results span {
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.92rem;
}

.ruta-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ruta-plan-actions .button {
  flex: 0 1 auto;
  width: auto;
  min-height: 46px;
  padding: 0.82rem 1.08rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.ruta-plan-actions .cart-add-button {
  color: #1c1104;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1) 52%, #f0a533);
  box-shadow:
    0 16px 40px rgba(240, 165, 51, 0.24),
    0 0 0 1px rgba(255, 233, 193, 0.12) inset;
}

.ruta-plan-actions.is-compact .button {
  flex: 0 1 auto;
}

.ruta-process-track {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ruta-member-bridge .subpage-actions,
.ruta-teaser .subpage-actions {
  margin-top: 1rem;
}

@media (max-width: 1180px) {
  .ruta-teaser__shell,
  .ruta-hero,
  .ruta-solution__shell,
  .ruta-plan-grid,
  .ruta-problem-grid,
  .ruta-execution__grid,
  .ruta-process-track {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .route-breadcrumbs {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .ruta-teaser__copy,
  .ruta-teaser__frame,
  .ruta-hero__copy,
  .ruta-hero__visual,
  .ruta-problem-card,
  .ruta-plan-card,
  .ruta-execution__card {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .ruta-teaser__grid,
  .ruta-hero__stats {
    grid-template-columns: 1fr;
  }

  .ruta-plan-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ruta-plan-actions .button,
  .ruta-plan-actions.is-compact .button {
    width: 100%;
    flex: 1 1 auto;
  }
}

@media (max-width: 1180px) {
  .artists-entry,
  .artists-vault-hero,
  .artist-profile-hero,
  .artist-detail-grid,
  .editorial-index-hero,
  .artist-editorial-hero,
  .artist-editorial-layout {
    grid-template-columns: 1fr;
  }

  .artists-entry__showcase {
    order: -1;
  }

  .artists-entry__showcase .artist-trophy-card.is-compact:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 900px) {
  .artists-entry__showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .artists-vault-hero__showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .artists-vault-grid,
  .artist-identity-grid,
  .artist-detail-grid,
  .editorial-index-grid,
  .editorial-index-grid--lab {
    grid-template-columns: 1fr;
  }

  .artist-profile-hero__stage {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .artists-entry,
  .artists-vault__intro,
  .artists-vault-hero__copy,
  .artists-vault-hero__aside,
  .artist-detail-panel,
  .artist-profile-hero__content,
  .artist-profile-hero__stage,
  .editorial-index-hero,
  .artist-editorial-hero,
  .editorial-index-card,
  .artist-editorial-stage,
  .artist-editorial-richtext,
  .artist-editorial-panel {
    border-radius: 24px;
  }

  .artists-entry {
    padding: 1.2rem;
  }

  .artists-entry__copy h2,
  .artists-vault-hero__copy h1,
  .artist-profile-hero__content h1 {
    max-width: none;
  }

  .artist-trophy-card,
  .artist-trophy-card.is-compact {
    min-height: 360px;
  }

  .artist-trophy-card--full {
    min-height: 0;
  }

  .artist-trophy-card__stage,
  .artist-trophy-card.is-compact .artist-trophy-card__stage {
    min-height: 245px;
  }

  .artist-trophy-card__stage img,
  .artist-trophy-card.is-compact .artist-trophy-card__stage img {
    max-height: 240px;
  }

  .artist-links-grid.artist-links-grid--card {
    grid-template-columns: repeat(5, minmax(2.45rem, 1fr));
    gap: 0.35rem;
  }

  .artist-profile-hero__stage {
    min-height: 420px;
    padding: 1rem;
  }

  .artist-profile-hero__image {
    max-height: 360px;
  }

  .artist-profile-mark {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .artist-profile-mark img {
    width: 82px;
    height: 82px;
  }

  .editorial-index-card__head,
  .artist-editorial-trophy {
    grid-template-columns: 1fr;
  }

  .editorial-index-card__head img {
    width: 96px;
    height: 96px;
  }

  .editorial-index-card.is-lab .editorial-index-card__head img {
    width: 100%;
    height: 188px;
  }

  .artist-editorial-stage {
    min-height: 420px;
  }

  .artist-editorial-stage__image {
    max-height: 360px;
  }

  .artist-editorial-stage__image.is-photo {
    width: 100%;
    height: min(360px, calc(100% - 28px));
    object-position: var(--editorial-photo-position, center 18%);
  }

  .artist-back-nav,
  .artist-bottom-nav,
  .editorial-index-actions {
    flex-direction: column;
  }

  .artist-links-block .artist-links-grid {
    grid-template-columns: repeat(5, minmax(2.45rem, 1fr));
    gap: 0.35rem;
  }

  .artist-editorial-actions:has(.artist-platform-link) {
    grid-template-columns: repeat(5, minmax(2.45rem, 1fr));
    gap: 0.35rem;
  }

  .artist-back-nav .button,
  .artist-bottom-nav .button,
  .artist-links-grid .button,
  .editorial-index-actions .button {
    width: 100%;
    justify-content: center;
  }

  .artist-editorial-actions:has(.artist-platform-link) .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .video-proof-shell {
    grid-template-columns: 1fr;
  }

  .video-proof-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .video-proof-panel,
  .video-proof-copy {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .video-proof-player {
    border-radius: 20px;
  }
}
