:root {
  color-scheme: dark;
  --bg: #090a0b;
  --panel: #121416;
  --panel-2: #1b1f22;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f7f3;
  --muted: #a8b0b8;
  --accent: #ff9f1a;
  --accent-2: #46d8c8;
  --accent-3: #6ce57c;
  --accent-4: #f4d35e;
  --success: #6ce57c;
  --soft-bg: #0f1113;
  --soft-panel: #171a1d;
  --soft-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --soft-radius: 8px;
  --box-padding: clamp(28px, 3vw, 38px);
  --box-padding-compact: clamp(24px, 2.4vw, 32px);
  --content-width: 1320px;
  --page-top-padding: clamp(104px, 8vw, 124px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #090a0b;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

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

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(clamp(18px, 4vw, 56px), calc((100vw - var(--content-width)) / 2 + 20px));
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 44px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 30px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-size: 18px;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-width: 0;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-link,
.nav-submenu a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: inherit;
  transition: color 140ms ease, opacity 140ms ease;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 25;
  width: 220px;
  height: 16px;
  pointer-events: none;
  transform: translateX(-50%);
}

.nav-group:hover::after,
.nav-group:focus-within::after {
  pointer-events: auto;
}

.nav-trigger {
  gap: 6px;
}

.nav-trigger::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.68;
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  background: rgba(12, 13, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 140ms ease;
  backdrop-filter: blur(16px);
}

.nav-submenu a {
  justify-content: flex-start;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible,
.nav-menu-toggle[aria-expanded="true"] {
  border-color: rgba(248, 168, 38, 0.56);
  color: var(--accent);
}

.nav-menu-toggle .fa-icon {
  --fa-size: 17px;
}

.nav-backdrop {
  display: none;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  width: 48px;
  flex: 0 0 48px;
}

.language-toggle {
  display: inline-grid;
  width: 100%;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #172323;
  color: var(--text);
  border-radius: var(--soft-radius);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(248, 168, 38, 0.56);
  color: var(--accent);
}

.language-flag {
  display: block;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  object-fit: cover;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 95;
  display: grid;
  width: 178px;
  padding: 8px;
  background: rgba(12, 13, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--soft-radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

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

.language-option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  gap: 12px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.language-option .language-flag {
  width: 24px;
  height: 17px;
}

.language-option small {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.language-option.is-active small {
  color: var(--accent);
}

.notification-center {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.notification-bell-button {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.notification-bell-button:hover,
.notification-bell-button:focus-visible,
.notification-bell-button[aria-expanded="true"] {
  border-color: rgba(248, 168, 38, 0.56);
  background: rgba(248, 168, 38, 0.12);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(248, 168, 38, 0.12);
}

.notification-bell-button .fa-icon {
  --fa-size: 16px;
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -3px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  box-shadow: 0 0 0 2px #101214;
  font-size: 10px;
  font-weight: 950;
  line-height: 17px;
  text-align: center;
}

.notification-badge[hidden] {
  display: none;
}

.notification-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 65;
  display: grid;
  width: min(360px, calc(100vw - 28px));
  max-height: min(520px, calc(100vh - 96px));
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--soft-radius);
  background: rgba(13, 15, 16, 0.98);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
  backdrop-filter: blur(18px);
}

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

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

.notification-panel-head {
  display: grid;
  gap: 4px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notification-panel-head h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.notification-panel-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.notification-list {
  display: grid;
  gap: 2px;
  min-height: 120px;
  overflow-y: auto;
  padding: 6px;
}

.notification-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 8px;
  color: var(--text);
  transition: background 140ms ease, color 140ms ease;
}

.notification-item:hover,
.notification-item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.notification-item.is-unread {
  background: rgba(248, 168, 38, 0.09);
}

.notification-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #1f2a2c;
  color: var(--accent-2);
  background-position: center;
  background-size: cover;
  font-size: 12px;
  font-weight: 950;
}

.notification-avatar.has-image {
  color: transparent;
}

.notification-avatar.is-update {
  background: var(--accent);
  color: #101010;
}

.notification-avatar .fa-icon {
  --fa-size: 15px;
}

.notification-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.notification-copy strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.notification-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.notification-copy em {
  color: rgba(242, 244, 245, 0.5);
  font-size: 11px;
  font-style: normal;
}

.notification-empty {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
}

.notification-empty strong {
  color: var(--text);
  font-size: 15px;
}

.notification-empty p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.notification-empty .button {
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
}

.notification-panel-foot {
  display: flex;
  justify-content: flex-end;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.notification-panel-foot a:hover,
.notification-panel-foot a:focus-visible {
  color: var(--accent);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 42px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 850;
}

.user-pill.is-signed-in {
  color: var(--text);
}

.fa-icon {
  display: inline-block;
  width: var(--fa-size, 1em);
  height: var(--fa-size, 1em);
  flex: 0 0 auto;
  background: currentColor;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-mask: var(--fa-icon) center / contain no-repeat;
  mask: var(--fa-icon) center / contain no-repeat;
}

.fa-play {
  --fa-icon: url("/vendor/fontawesome/play.svg");
  transform: translateX(1px);
}

.fa-icon.fa-play {
  margin-right: -1px;
  margin-left: 1px;
  transform: none;
}
.fa-pause { --fa-icon: url("/vendor/fontawesome/pause.svg"); }
.fa-heart { --fa-icon: url("/vendor/fontawesome/heart.svg"); }
.fa-download { --fa-icon: url("/vendor/fontawesome/download.svg"); }
.fa-comment { --fa-icon: url("/vendor/fontawesome/comment.svg"); }
.fa-paper-plane { --fa-icon: url("/vendor/fontawesome/paper-plane.svg"); }
.fa-search { --fa-icon: url("/vendor/fontawesome/magnifying-glass.svg"); }
.fa-bell { --fa-icon: url("/vendor/fontawesome/bell.svg"); }
.fa-plus { --fa-icon: url("/vendor/fontawesome/plus.svg"); }
.fa-user { --fa-icon: url("/vendor/fontawesome/user.svg"); }
.fa-pencil { --fa-icon: url("/vendor/fontawesome/pencil.svg"); }
.fa-arrow-left { --fa-icon: url("/vendor/fontawesome/arrow-left.svg"); }
.fa-handshake { --fa-icon: url("/vendor/fontawesome/handshake-outline.svg"); }
.fa-apple { --fa-icon: url("/vendor/fontawesome/apple.svg"); }
.fa-windows { --fa-icon: url("/vendor/fontawesome/windows.svg"); }
.fa-linux { --fa-icon: url("/vendor/fontawesome/linux.svg"); }
.fa-bars { --fa-icon: url("/vendor/fontawesome/bars.svg"); }

.user-pill-avatar,
.account-avatar {
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.user-pill-avatar {
  display: grid;
  position: relative;
  isolation: isolate;
  width: 38px;
  height: 38px;
  place-items: center;
  background-color: var(--panel-2);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
}

.user-pill-avatar.is-premium {
  box-shadow: 0 0 0 2px #131516, 0 0 0 4px rgba(87, 214, 209, 0.58), 0 0 16px rgba(243, 174, 53, 0.26);
}

.user-pill-avatar.has-image {
  color: transparent;
}

.user-pill-avatar.is-guest {
  background: var(--accent);
  color: transparent;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}

.user-pill-avatar.is-guest::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 38%;
  height: 38%;
  background: #101010;
  transform: translate(-50%, -50%);
  -webkit-mask: url("/vendor/fontawesome/user.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/user.svg") center / contain no-repeat;
}

.user-pill-avatar.has-profile-action::before {
  content: "";
  position: absolute;
  left: 75%;
  top: 0;
  z-index: -1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  background: #3a3d40;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.user-pill-avatar.has-profile-action::after {
  content: "";
  position: absolute;
  left: calc(75% + 50%);
  top: 50%;
  z-index: -1;
  width: 34%;
  height: 34%;
  background: rgba(242, 244, 245, 0.84);
  transform: translate(-50%, -50%);
  transition: background 140ms ease;
  -webkit-mask: url("/vendor/fontawesome/plus.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/plus.svg") center / contain no-repeat;
}

.user-pill:hover .user-pill-avatar.has-profile-action::before,
.user-pill:focus-visible .user-pill-avatar.has-profile-action::before {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(248, 168, 38, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.user-pill:hover .user-pill-avatar.has-profile-action::after,
.user-pill:focus-visible .user-pill-avatar.has-profile-action::after {
  background: #101010;
}

.is-clickable,
a.user-avatar-large,
a.profile-subheader-avatar,
a.profile-social-avatar,
a.mini-avatar {
  cursor: pointer;
}

.profile-subheader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 18;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.profile-subheader.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.profile-subheader-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, var(--content-width));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 36px);
  background: rgba(16, 17, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 var(--soft-radius) var(--soft-radius);
  backdrop-filter: blur(16px);
}

.profile-subheader-avatar {
  display: grid;
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  background-color: var(--accent-2);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  color: #101112;
  font-size: 12px;
  font-weight: 900;
}

.profile-subheader-avatar[style*="background-image"] {
  color: transparent;
}

.profile-subheader-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.profile-subheader-copy strong,
.profile-subheader-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-subheader-copy strong {
  font-size: 16px;
}

.profile-subheader-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.profile-subheader-action {
  padding: 8px 12px;
  background: #24272a;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--soft-radius);
  font-size: 13px;
  font-weight: 850;
}

.profile-subheader-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.profile-subheader-action[hidden] {
  display: none;
}

.profile-subheader-action.is-active {
  background: var(--accent);
  color: #111;
  border-color: rgba(248, 168, 38, 0.72);
}

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(760px, 98svh, 1040px);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 6vw, 86px);
  align-content: start;
  justify-items: center;
  padding: clamp(128px, 12vw, 174px) max(clamp(20px, 4vw, 56px), calc((100vw - var(--content-width)) / 2 + 20px)) 0;
  background:
    linear-gradient(180deg, #0b171a 0%, #091113 42%, #0b0c10 100%),
    #081114;
  border-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(248, 168, 38, 0.08) 0%, rgba(87, 214, 209, 0.06) 100%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-meta-badge {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform: translateY(-1px);
}

.premium-meta-badge::before,
.premium-meta-badge::after {
  content: "";
  position: absolute;
  inset: 0;
}

.premium-meta-badge::before {
  background: #57d6d1;
  filter: drop-shadow(0 0 2px #101112) drop-shadow(0 0 6px rgba(87, 214, 209, 0.46));
  -webkit-mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
}

.premium-meta-badge::after {
  inset: 4px;
  background: #fff;
  -webkit-mask: url("/vendor/fontawesome/check.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/check.svg") center / contain no-repeat;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.9;
  font-weight: 950;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button.secondary {
  display: none;
}

.hero-actions .button.primary {
  min-height: 52px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-badges {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-top: 18px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.ai-plus-section {
  width: min(100%, var(--content-width));
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  border-block: 0;
}

.ai-plus-section > * {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.ai-plus-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.ai-plus-main {
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ai-plus-main h3 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
}

.ai-plus-main p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.ai-plus-main .button {
  margin-top: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  font-weight: 800;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease, filter 140ms ease;
}

.button .fa-icon {
  --fa-size: 15px;
}

.button.primary {
  background: var(--accent);
  color: #121212;
  border-color: var(--accent);
}

.button.secondary {
  background: var(--soft-panel);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-panel {
  position: relative;
  width: min(100%, 1140px);
  max-width: 100%;
  min-height: min(54vw, 540px);
  display: block;
  padding: 18px;
  background: #020303;
  border: 0;
  border-radius: var(--soft-radius) var(--soft-radius) 0 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--soft-radius) - 3px);
}

.hero-screenshot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: min(50vw, 500px);
  object-fit: cover;
  object-position: 50% 0;
  border-radius: calc(var(--soft-radius) - 3px);
}

.hero-visual-strip {
  display: none;
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  align-items: end;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  background: rgba(8, 9, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(12px);
}

.hero-visual-strip span {
  display: block;
  width: 7px;
  background: var(--bar-accent, var(--accent));
  border-radius: 999px;
}

.hero-visual-strip span:nth-child(1) { height: 22px; }
.hero-visual-strip span:nth-child(2) { --bar-accent: var(--accent-2); height: 48px; }
.hero-visual-strip span:nth-child(3) { --bar-accent: var(--accent-3); height: 34px; }
.hero-visual-strip span:nth-child(4) { --bar-accent: var(--accent-4); height: 60px; }
.hero-visual-strip span:nth-child(5) { --bar-accent: var(--accent-2); height: 40px; }
.hero-visual-strip span:nth-child(6) { --bar-accent: var(--accent); height: 54px; }

.home-comments-strip {
  position: relative;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px) 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.home-comments-marquee {
  --home-comment-gap: clamp(24px, 4vw, 58px);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.home-comments-track {
  display: flex;
  width: max-content;
  gap: var(--home-comment-gap);
  animation: home-comments-loop var(--home-comments-duration, 42s) linear infinite;
  will-change: transform;
}

.home-comments-strip:hover .home-comments-track,
.home-comments-strip:focus-within .home-comments-track {
  animation-play-state: paused;
}

.home-comments-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--home-comment-gap);
  min-width: max-content;
}

.home-comment-item {
  display: grid;
  grid-template-columns: 42px minmax(160px, 260px);
  align-items: center;
  gap: 11px;
  width: clamp(220px, 24vw, 320px);
  min-width: 0;
  max-width: 320px;
  color: var(--text);
  text-decoration: none;
}

a.home-comment-item {
  cursor: pointer;
}

.home-comment-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--home-comment-avatar, none) center / cover no-repeat, #1a272b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 920;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.home-comment-avatar.has-image {
  color: transparent;
}

.home-comment-body {
  display: block;
  min-width: 0;
}

.home-comment-body strong,
.home-comment-body span {
  display: block;
  min-width: 0;
}

.home-comment-body strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 920;
  line-height: 1.04;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-comment-body span {
  color: var(--muted);
  display: -webkit-box;
  font-size: clamp(11px, 0.78vw, 12px);
  font-weight: 720;
  line-height: 1.3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes home-comments-loop {
  to {
    transform: translate3d(calc(-50% - (var(--home-comment-gap) / 2)), 0, 0);
  }
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 68px) 0;
}

main > .section.scroll-reveal-section {
  opacity: var(--section-scroll-opacity, 1);
  filter: blur(var(--section-scroll-blur, 0px));
  transform:
    translate3d(0, var(--section-scroll-offset, 0px), 0)
    scale(var(--section-scroll-scale, 1));
  transform-origin: center;
  transition: opacity 80ms linear, filter 80ms linear, transform 80ms linear;
  will-change: opacity, filter, transform;
}

@media (prefers-reduced-motion: reduce) {
  main > .section.scroll-reveal-section {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .home-comments-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-comments-track {
    width: auto;
    animation: none;
  }

  .home-comments-group[aria-hidden="true"] {
    display: none;
  }
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 30px);
  padding-bottom: 0;
  text-align: center;
}

.section-heading .eyebrow,
.hero .eyebrow {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading h2 {
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.06;
}

.community-section {
  display: grid;
  gap: clamp(22px, 3.5vw, 40px);
  padding-top: clamp(48px, 5vw, 68px);
}

.community-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.community-intro .eyebrow {
  margin: 0;
  color: var(--muted);
}

.community-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
}

.community-intro p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.35;
}

.download-grid,
.plugin-grid,
.manual-grid,
.profile-grid,
.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.lightweight-section {
  padding-top: clamp(28px, 4vw, 48px);
}

.lightweight-panel,
.lightweight-download-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(28px, 5vw, 54px);
  background: #0e1518;
  border: 1px solid rgba(87, 214, 209, 0.24);
  border-radius: var(--soft-radius);
}

.lightweight-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 760px;
}

.lightweight-copy h2,
.lightweight-download-banner h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
}

.lightweight-copy p,
.lightweight-download-banner p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 650;
  line-height: 1.5;
}

.lightweight-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.lightweight-stats {
  display: grid;
  min-width: min(100%, 280px);
  justify-items: center;
  gap: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: #162123;
  border: 1px solid rgba(87, 214, 209, 0.42);
  border-radius: var(--soft-radius);
  text-align: center;
}

.lightweight-stats strong {
  color: var(--text);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.95;
}

.lightweight-stats span {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.lightweight-stats small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.download-notes-link {
  margin: 18px 0 0;
  text-align: center;
}

.download-notes-link a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.download-notes-link a:hover,
.download-notes-link a:focus-visible {
  color: var(--accent);
}

.card {
  position: relative;
  min-height: 184px;
  padding: var(--box-padding-compact);
  background: #10191d;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--soft-radius);
  box-shadow: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  overflow: hidden;
}

.card::before {
  display: none;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--card-accent, var(--accent));
  opacity: 1;
}

.download-grid .card:nth-child(4n + 1),
.plugin-grid .card:nth-child(4n + 1),
.manual-grid .card:nth-child(4n + 1),
.profile-grid .card:nth-child(4n + 1),
.publication-grid .card:nth-child(4n + 1),
.access-grid .card:nth-child(4n + 1) {
  --card-accent: var(--accent);
}

.download-grid .card:nth-child(4n + 2),
.plugin-grid .card:nth-child(4n + 2),
.manual-grid .card:nth-child(4n + 2),
.profile-grid .card:nth-child(4n + 2),
.publication-grid .card:nth-child(4n + 2),
.access-grid .card:nth-child(4n + 2) {
  --card-accent: var(--accent-2);
}

.download-grid .card:nth-child(4n + 3),
.plugin-grid .card:nth-child(4n + 3),
.manual-grid .card:nth-child(4n + 3),
.profile-grid .card:nth-child(4n + 3),
.publication-grid .card:nth-child(4n + 3),
.access-grid .card:nth-child(4n + 3) {
  --card-accent: var(--accent-3);
}

.download-grid .card:nth-child(4n),
.plugin-grid .card:nth-child(4n),
.manual-grid .card:nth-child(4n),
.profile-grid .card:nth-child(4n),
.publication-grid .card:nth-child(4n),
.access-grid .card:nth-child(4n) {
  --card-accent: var(--accent-4);
}

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

.plugin-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.plugin-preview-frame {
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
}

.plugin-preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plugin-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--box-padding-compact);
}

.plugin-card-body h3 {
  margin-bottom: 0;
}

.plugin-card-body p {
  margin: 0;
}

.plugin-tagline {
  color: var(--text) !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.plugin-compat-note {
  max-width: 900px !important;
  margin: 16px 0 0;
  padding: 12px 14px;
  color: var(--text) !important;
  background: rgba(87, 214, 209, 0.1);
  border: 1px solid rgba(87, 214, 209, 0.28);
  border-radius: var(--soft-radius);
  font-size: 15px !important;
  font-weight: 760;
  line-height: 1.45 !important;
}

.plugin-detail-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.plugin-detail-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plugin-detail-list dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plugin-detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.plugin-format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.plugin-format-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  background: rgba(87, 214, 209, 0.12);
  border: 1px solid rgba(87, 214, 209, 0.28);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
}

.plugin-audio-preview {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.plugin-audio-preview > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.plugin-audio-console {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plugin-audio-topline {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 42px;
}

.plugin-audio-play {
  display: grid;
  place-items: center;
  width: 48px;
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.plugin-audio-play::before {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background: currentColor;
  transform: translateX(3px);
}

.plugin-audio-play.is-playing::before {
  width: 16px;
  height: 20px;
  transform: none;
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-mask-image: url("/vendor/fontawesome/pause.svg");
  mask-image: url("/vendor/fontawesome/pause.svg");
}

.plugin-audio-play:hover,
.plugin-audio-play:focus-visible {
  color: var(--accent);
  background: rgba(248, 168, 38, 0.11);
}

.plugin-audio-play-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.plugin-audio-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.plugin-audio-toggle {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.plugin-audio-toggle + .plugin-audio-toggle {
  border-left: 1px solid var(--line);
}

.plugin-audio-toggle.is-active {
  color: #07100f;
  background: var(--accent-2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.plugin-audio-toggle:not(.is-active):hover,
.plugin-audio-toggle:not(.is-active):focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.plugin-audio-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -2px;
}

.plugin-audio-player {
  display: none;
}

.plugin-audio-seek {
  --audio-progress: 0%;
  appearance: none;
  width: 100%;
  height: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(90deg,
      #ffffff 0%,
      #ffffff var(--audio-progress),
      rgba(255, 255, 255, 0.16) var(--audio-progress),
      rgba(255, 255, 255, 0.16) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 3px;
  cursor: pointer;
  transition: opacity 120ms ease;
}

.plugin-audio-seek:disabled {
  cursor: default;
  opacity: 0.46;
}

.plugin-audio-seek:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -2px;
}

.plugin-audio-seek::-webkit-slider-runnable-track {
  height: 14px;
  border: 0;
  background: transparent;
}

.plugin-audio-seek::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 2px 7px rgba(0, 0, 0, 0.28);
  transform: translateY(2px);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.plugin-audio-seek:hover::-webkit-slider-thumb,
.plugin-audio-seek:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.24), 0 3px 10px rgba(0, 0, 0, 0.34);
  transform: translateY(2px) scale(1.16);
}

.plugin-audio-seek::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 2px 7px rgba(0, 0, 0, 0.28);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.plugin-audio-seek::-moz-range-track {
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.plugin-audio-seek::-moz-range-progress {
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.plugin-audio-empty em {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.plugin-tier-group {
  min-width: 0;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.plugin-tier-group legend {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.plugin-tier-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.plugin-tier-option {
  min-width: 0;
  cursor: pointer;
}

.plugin-tier-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plugin-tier-option span {
  display: grid;
  min-height: 92px;
  align-content: start;
  gap: 4px;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.plugin-tier-option strong,
.plugin-tier-option em,
.plugin-tier-option b {
  display: block;
  min-width: 0;
}

.plugin-tier-option strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.plugin-tier-option em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.25;
}

.plugin-tier-option b {
  margin-top: 2px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 950;
}

.plugin-tier-option input:checked + span {
  background: rgba(248, 168, 38, 0.12);
  border-color: rgba(248, 168, 38, 0.62);
  box-shadow: 0 0 0 1px rgba(248, 168, 38, 0.18);
}

.plugin-tier-option:focus-within span {
  border-color: rgba(87, 214, 209, 0.62);
}

.plugin-actions {
  margin-top: auto;
}

.home-plugin-section {
  padding-top: clamp(44px, 5vw, 64px);
}

.home-plugin-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.home-plugin-copy,
.home-plugin-preview {
  background: #10191d;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--soft-radius);
  box-shadow: none;
}

.home-plugin-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-plugin-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.04;
}

.home-plugin-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.home-plugin-copy .button {
  align-self: flex-start;
  margin-top: auto;
}

.home-plugin-preview {
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  background: #0c0d0e;
}

.home-plugin-preview img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.78) saturate(0.86);
  object-fit: cover;
}

.home-plugin-copy .plugin-format-row span {
  min-height: 26px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

a.card:hover,
.profile-card:hover,
.publication-card:hover,
.access-card:hover,
.showreel-item:hover {
  border-color: rgba(248, 168, 38, 0.34);
  box-shadow: none;
  transform: none;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.08;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}

.card-title-row h3 {
  margin: 0;
}

.card-title-row .fa-icon {
  --fa-size: 28px;
  color: var(--accent);
}

.download-page-title {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.download-page-title .fa-icon {
  --fa-size: clamp(58px, 8vw, 96px);
  color: var(--accent);
}

.card p {
  color: var(--muted);
  line-height: 1.45;
}

.card-meta {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
}

.access-section {
  width: min(100%, var(--content-width));
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  border-block: 0;
}

.access-section > * {
  width: min(100%, var(--content-width));
  margin-right: auto;
  margin-left: auto;
}

.access-card {
  position: relative;
  min-height: 220px;
  padding: var(--box-padding);
  background: #10191d;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--soft-radius);
  box-shadow: none;
}

.access-card.is-free {
  background: #10191d;
  border-color: rgba(248, 168, 38, 0.34);
}

.access-card h3 {
  margin: 10px 0 12px;
  font-size: 24px;
}

.access-card p {
  color: var(--muted);
  line-height: 1.5;
}

.free-pricing-section {
  width: min(calc(100% - 40px), var(--content-width));
  padding-top: clamp(48px, 5vw, 68px);
}

.free-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.free-pricing-copy {
  display: grid;
  gap: 0;
}

.free-pricing-copy article {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.free-pricing-copy article:first-child {
  padding-top: 0;
}

.free-pricing-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
}

.free-pricing-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.free-edition-panel {
  display: grid;
  gap: 12px;
  padding: clamp(26px, 4vw, 42px);
  background: #11181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: var(--soft-shadow);
}

.free-edition-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  text-align: center;
}

.free-edition-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 22px 24px;
  background: #221d16;
  border: 1px solid rgba(248, 168, 38, 0.88);
  border-radius: var(--soft-radius);
  box-shadow: inset 0 0 0 1px rgba(248, 168, 38, 0.22);
}

.free-edition-mark {
  display: inline-grid;
  min-width: 74px;
  min-height: 38px;
  place-items: center;
  padding: 0 12px;
  background: var(--accent);
  border-radius: 999px;
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.edition-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.edition-copy strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.edition-copy span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.edition-price {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 950;
  white-space: nowrap;
}

.free-support-note {
  margin: 0;
  padding: 18px 20px;
  background: #151a1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--soft-radius);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.free-support-note strong {
  color: var(--text);
}

.free-pricing-cta {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  font-size: 18px;
}

.free-pricing-footnote {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
}

.publication-feed {
  margin-top: 34px;
}

.publication-feed h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.publication-card {
  display: block;
  position: relative;
  min-height: 128px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  overflow: hidden;
}

.publication-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--card-accent, var(--accent-2));
  opacity: 1;
}

.publication-card strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.publication-card p {
  color: var(--muted);
  line-height: 1.45;
}

.community-wall.profile-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 124px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.community-wall-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: #10191d;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--soft-radius);
  color: var(--text);
  box-shadow: none;
}

.community-wall-card.is-photo,
.community-media-card {
  grid-row: span 4;
  align-items: end;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.05) 0%, rgba(7, 8, 9, 0.18) 48%, rgba(7, 8, 9, 0.86) 100%),
    var(--profile-photo, var(--media-poster)) center / cover no-repeat,
    #11181b;
}

.community-wall-card.is-photo.is-tall,
.community-media-card {
  grid-row: span 5;
  min-height: 654px;
}

.community-wall-card.is-quote,
.community-wall-card.is-identity {
  grid-row: span 2;
  align-content: space-between;
  gap: 24px;
  min-height: 248px;
  padding: clamp(24px, 2.5vw, 32px);
}

.community-wall-card.is-quote p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #dfe4e7;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.community-wall-card.is-identity {
  background: #111d20;
}

.community-avatar-large {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #101112;
  font-size: 22px;
  font-weight: 950;
}

.community-mini-author {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.community-mini-author .profile-card-photo {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.community-mini-author strong,
.community-card-footer strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
}

.community-mini-author em,
.community-card-footer em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.25;
}

.community-card-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: clamp(22px, 2.2vw, 30px);
}

.community-card-footer > span:not(.profile-card-stats) {
  color: var(--muted);
  line-height: 1.45;
}

.community-verified {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: var(--accent);
  -webkit-mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
}

.community-media-card {
  --media-poster: url("/assets/dawtone-showreel-session.png");
  justify-items: center;
}

.community-publication-card {
  grid-row: span 3;
  align-items: end;
  min-height: 386px;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.04) 0%, rgba(7, 8, 9, 0.2) 42%, rgba(7, 8, 9, 0.9) 100%),
    var(--publication-cover) center / cover no-repeat,
    #11181b;
}

.community-publication-card.is-tall {
  grid-row: span 4;
  min-height: 520px;
}

.community-publication-card .community-card-footer {
  gap: 5px;
}

.community-publication-card .community-card-footer small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.community-publication-card .community-card-footer strong {
  font-size: clamp(19px, 1.6vw, 24px);
}

.community-publication-card .community-card-footer p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.community-publication-card .community-play-button {
  width: 54px;
  height: 54px;
  --play-icon-size: 42%;
}

.suggestions-section {
  margin-top: clamp(44px, 7vw, 86px);
}

.suggestions-section[hidden] {
  display: none;
}

.suggestion-wall {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 118px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.suggestion-wall .community-wall-card {
  min-height: 236px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, filter 160ms ease;
}

.suggestion-wall .community-wall-card:hover {
  border-color: rgba(243, 174, 53, 0.42);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
}

.suggestion-wall .community-publication-card,
.suggestion-wall .community-wall-card.is-photo {
  grid-row: span 3;
  min-height: 354px;
}

.suggestion-wall .community-publication-card.is-tall,
.suggestion-wall .community-wall-card.is-photo.is-tall {
  grid-row: span 4;
  min-height: 472px;
}

.suggestion-wall .community-wall-card.is-identity {
  grid-row: span 2;
  min-height: 236px;
}

.suggestion-card .community-card-footer {
  align-self: end;
}

.suggestion-card .community-card-footer small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.suggestion-card .community-card-footer > span:not(.profile-card-stats):not(.suggestion-tags) {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.suggestion-card .community-card-footer > span:not(.profile-card-stats):not(.suggestion-tags) strong {
  display: inline;
  color: var(--text);
  font-size: inherit;
  font-weight: 900;
  line-height: inherit;
}

.suggestion-card .community-card-footer > span:not(.profile-card-stats):not(.suggestion-tags) em {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.suggestion-tags i {
  max-width: 100%;
  padding: 5px 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.community-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.community-play-button::before {
  content: "";
  display: block;
  width: 31px;
  height: 38px;
  background: #101112;
  transform: translateX(4px);
}

.profile-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  position: relative;
}

.profile-card-photo {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: var(--accent);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #101112;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.profile-card-photo.has-image {
  color: transparent;
}

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

.profile-card-copy h3,
.profile-card-copy p {
  margin: 0;
}

.profile-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
  color: var(--muted);
}

.profile-card-stats span {
  display: inline-grid;
  gap: 2px;
}

.profile-card-stats strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

.profile-card-stats em {
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.profile-card.is-premium::after,
.account-avatar.is-premium::after,
.user-avatar-large.is-premium::after,
.profile-subheader-avatar.is-premium::after,
.profile-person-avatar.is-premium::after,
.profile-social-avatar.is-premium::after,
.profile-collaboration-avatar.is-premium::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -6px;
  top: -6px;
  width: 24px;
  height: 24px;
  background: #57d6d1;
  filter: drop-shadow(0 0 2px #101112) drop-shadow(0 0 8px rgba(87, 214, 209, 0.45));
  -webkit-mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/certificate.svg") center / contain no-repeat;
}

.profile-card.is-premium::after {
  right: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
}

.profile-card.is-premium::before,
.account-avatar.is-premium::before,
.user-avatar-large.is-premium::before,
.profile-subheader-avatar.is-premium::before,
.profile-person-avatar.is-premium::before,
.profile-social-avatar.is-premium::before,
.profile-collaboration-avatar.is-premium::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  -webkit-mask: url("/vendor/fontawesome/check.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/check.svg") center / contain no-repeat;
}

.profile-card.is-premium::before {
  right: 19px;
  top: 19px;
  width: 14px;
  height: 14px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 1fr);
  gap: 18px;
}

.account-card,
.account-info-panel {
  padding: var(--box-padding);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.account-avatar {
  display: grid;
  position: relative;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent-2);
  color: #101112;
  font-weight: 900;
}

.account-avatar[style*="background-image"] {
  color: transparent;
}

.account-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.account-card p {
  color: var(--muted);
  line-height: 1.45;
}

.unlock-panel {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.unlock-panel strong {
  font-size: 18px;
}

.unlock-panel p {
  margin-bottom: 0;
  font-size: 14px;
}

.unlock-status {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.email-auth-form {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.email-auth-form label {
  display: grid;
  gap: 6px;
}

.email-auth-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.email-auth-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  background: var(--soft-bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  font: inherit;
  outline: none;
}

.email-auth-form input:focus {
  border-color: var(--accent-2);
}

.email-auth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal.is-open {
  display: flex;
}

.auth-modal-open {
  overflow: hidden;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.auth-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: var(--box-padding);
  background: var(--panel);
  border: 1px solid rgba(248, 168, 38, 0.38);
  border-radius: var(--soft-radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.auth-modal-panel h2 {
  margin: 8px 36px 10px 0;
  font-size: 32px;
}

.auth-modal-panel > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.account-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.account-confirm-modal.is-open {
  display: flex;
}

.account-confirm-open {
  overflow: hidden;
}

.account-confirm-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.account-confirm-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 420px);
  padding: var(--box-padding);
  background: var(--panel);
  border: 1px solid rgba(248, 168, 38, 0.38);
  border-radius: var(--soft-radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.account-confirm-panel h2 {
  margin: 4px 38px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.account-confirm-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.auth-google-button {
  width: 100%;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.privacy-consent span {
  min-width: 0;
}

.privacy-consent a {
  color: var(--text);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-approval {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 95;
  display: none;
  width: min(420px, calc(100vw - 28px));
}

.privacy-approval.is-visible {
  display: block;
}

.privacy-approval-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #111416;
  border: 1px solid rgba(248, 168, 38, 0.34);
  border-radius: var(--soft-radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
}

.privacy-approval-panel strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.05;
}

.privacy-approval-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.privacy-approval-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.privacy-approval-actions .button {
  min-height: 42px;
  padding: 0 14px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.config-note {
  margin-bottom: 0;
  font-size: 13px;
}

.config-note:empty {
  display: none;
}

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

.account-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.account-perks div {
  min-height: 92px;
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.account-perks span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-perks strong {
  display: block;
  line-height: 1.25;
}

.app-managed-note {
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.app-managed-note h3 {
  margin: 10px 0;
  font-size: 24px;
}

.app-managed-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

.site-footer {
  background: #08090a;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer-inner {
  display: grid;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 70px) clamp(20px, 4vw, 56px) 28px;
  gap: clamp(28px, 4vw, 46px);
}

.site-footer-brand {
  display: grid;
  max-width: 520px;
  gap: 12px;
}

.site-footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.site-footer-logo img {
  width: 30px;
  height: 38px;
  object-fit: contain;
}

.site-footer-brand p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.site-footer-nav section {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 9px;
}

.site-footer-nav h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer-nav a,
.site-footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer-nav a:hover,
.site-footer-bottom a:hover {
  color: var(--accent);
}

.site-footer-manifesto {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer-founder {
  display: grid;
  grid-template-columns: clamp(78px, 9vw, 118px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0;
}

.site-footer-founder img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #101112;
  filter: grayscale(1) contrast(1.06);
  opacity: 0.9;
}

.site-footer-founder figcaption {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.site-footer-founder strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  line-height: 1.05;
}

.site-footer-founder span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer-manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.site-footer-manifesto-copy article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.site-footer-manifesto-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-footer-manifesto-copy p {
  margin: 0;
  color: rgba(239, 242, 246, 0.78);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 720;
}

.site-footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.site-footer-legal-links a {
  font-size: inherit;
}

.showreel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
}

.showreel-feature {
  display: grid;
  grid-template-rows: minmax(320px, 54vh) auto;
  min-height: 540px;
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.showreel-poster {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(18, 20, 21, 0.08), rgba(18, 20, 21, 0.72)),
    var(--poster) center / cover no-repeat,
    #121415;
}

.showreel-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.showreel-play {
  position: absolute;
  left: 28px;
  bottom: 26px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: transparent;
  background: var(--accent);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.showreel-play::before {
  content: "";
  display: block;
  width: 40px;
  height: 48px;
  background: #111;
  transform: translateX(5px);
}

.showreel-bars {
  position: absolute;
  right: 28px;
  bottom: 34px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 72px;
}

.showreel-bars i {
  display: block;
  width: 9px;
  background: rgba(242, 244, 245, 0.72);
}

.showreel-bars i:nth-child(1) { height: 26px; }
.showreel-bars i:nth-child(2) { height: 54px; }
.showreel-bars i:nth-child(3) { height: 38px; }
.showreel-bars i:nth-child(4) { height: 68px; }
.showreel-bars i:nth-child(5) { height: 44px; }
.showreel-bars i:nth-child(6) { height: 62px; }
.showreel-bars i:nth-child(7) { height: 32px; }
.showreel-bars i:nth-child(8) { height: 58px; }

.showreel-copy {
  display: grid;
  gap: 10px;
  padding: var(--box-padding);
}

.showreel-copy strong {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.showreel-copy span:last-child {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.5;
}

.showreel-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.showreel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 116px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.showreel-item span {
  display: grid;
  gap: 8px;
}

.showreel-item small {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.showreel-item strong {
  font-size: 19px;
}

.showreel-item em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.user-page {
  min-height: calc(100vh - 72px);
  width: min(100%, var(--content-width));
  margin: 0 auto;
  background: transparent;
}

.user-hero {
  --profile-hero-image: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) clamp(20px, 4vw, 56px);
  background: #131516;
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--soft-radius) var(--soft-radius);
}

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

.user-hero::before {
  z-index: -2;
  background: var(--profile-hero-image) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(22px) saturate(1.16);
  transition: opacity 180ms ease;
}

.user-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.86) 0%, rgba(12, 13, 14, 0.64) 52%, rgba(12, 13, 14, 0.88) 100%),
    linear-gradient(180deg, rgba(14, 15, 16, 0.22) 0%, rgba(14, 15, 16, 0.82) 100%);
}

.user-hero.has-profile-image::before {
  opacity: 0.78;
}

.user-avatar-large {
  display: grid;
  position: relative;
  width: 140px;
  height: 140px;
  place-items: center;
  background-color: var(--accent-2);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  color: #101112;
  font-size: 34px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.user-avatar-large[style*="background-image"] {
  color: transparent;
}

.user-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 92px);
}

.user-bio {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.follow-button {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(22px, 3.5vw, 36px);
  z-index: 2;
  min-width: 112px;
  min-height: 42px;
  padding: 0 18px;
  background: var(--accent);
  color: #111;
  border: 0;
  border-radius: var(--soft-radius);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.follow-button:hover {
  filter: brightness(1.08);
}

.follow-button:disabled {
  cursor: default;
  opacity: 0.55;
}

.follow-button.is-following {
  background: #2a2d30;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 56px) 0;
}

.profile-section-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--soft-radius);
  font-size: 14px;
  font-weight: 900;
}

.profile-section-link:hover,
.profile-section-link:focus-visible,
.profile-section-link.is-active {
  background: var(--accent);
  color: #111;
  border-color: rgba(248, 168, 38, 0.72);
}

.profile-section-link[hidden] {
  display: none;
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(34px, 5vw, 56px) clamp(20px, 4vw, 56px) clamp(56px, 7vw, 92px);
}

.profile-content[hidden] {
  display: none;
}

.profile-private-panel {
  width: min(100% - clamp(40px, 8vw, 112px), var(--content-width));
  margin: clamp(26px, 4vw, 44px) auto 0;
  padding: var(--box-padding);
  background: var(--soft-panel);
  border: 1px solid rgba(87, 214, 209, 0.2);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.profile-private-panel[hidden] {
  display: none;
}

.profile-private-panel .section-heading {
  align-items: center;
  margin-bottom: 22px;
}

.profile-private-panel h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3vw, 42px);
}

.profile-private-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.private-plugin-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: var(--box-padding-compact);
  background: #121d1d;
  border: 1px solid rgba(87, 214, 209, 0.24);
  border-radius: var(--soft-radius);
}

.private-plugin-summary-card h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.private-plugin-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.private-plugin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
}

.private-plugin-card {
  min-width: 0;
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.installed-plugin-list,
.profile-license-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.installed-plugin-item,
.private-plugin-empty {
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--soft-radius);
}

.installed-plugin-item.has-license {
  border-color: rgba(49, 209, 88, 0.38);
}

.installed-plugin-status {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.installed-plugin-item.has-license .installed-plugin-status {
  color: var(--success);
}

.installed-plugin-item strong,
.private-plugin-empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.installed-plugin-item p,
.private-plugin-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.license-card {
  min-height: 0;
}

.license-meta-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.license-meta-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.license-meta-list dt,
.license-meta-list dd {
  margin: 0;
  min-width: 0;
}

.license-meta-list dt {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.license-meta-list dd {
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.license-actions .button {
  gap: 8px;
}

.license-actions .fa-icon {
  --fa-size: 14px;
  color: currentColor;
}

.license-output {
  overflow-wrap: anywhere;
}

.account-plugins-page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: var(--page-top-padding) clamp(20px, 4vw, 56px) clamp(64px, 7vw, 104px);
}

.account-plugins-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(22px, 4vw, 52px);
  margin-bottom: 28px;
}

.account-plugins-hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
}

.account-plugins-status,
.account-plugins-shell {
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.account-plugins-status {
  padding: var(--box-padding-compact);
}

.account-plugins-status span,
.account-plugins-toolbar span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-plugins-status strong,
.account-plugins-toolbar strong {
  display: block;
  font-size: 22px;
}

.account-plugins-shell {
  padding: var(--box-padding);
}

.account-plugins-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

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

.account-plugin-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 112px;
  overflow: hidden;
  background: var(--soft-bg);
  border: 1px solid color-mix(in srgb, var(--plugin-accent) 34%, rgba(255, 255, 255, 0.1));
  border-radius: var(--soft-radius);
}

.account-plugin-card.is-target {
  border-color: color-mix(in srgb, var(--plugin-accent) 72%, rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--plugin-accent) 32%, transparent);
}

.account-plugin-art {
  display: grid;
  min-height: 112px;
  padding: 8px;
  place-items: center;
  background: #0f1011;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.account-plugin-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-plugin-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.account-plugin-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-plugin-title-row h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
}

.account-plugin-badge {
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  padding: 6px 9px;
  background: color-mix(in srgb, var(--plugin-accent) 22%, rgba(255, 255, 255, 0.06));
  border: 1px solid color-mix(in srgb, var(--plugin-accent) 48%, rgba(255, 255, 255, 0.1));
  border-radius: var(--soft-radius);
  color: var(--text);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-plugin-body > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.account-plugin-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
  margin: 0;
}

.account-plugin-meta div {
  min-width: 0;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--soft-radius);
}

.account-plugin-meta dt,
.account-plugin-meta dd {
  margin: 0;
}

.account-plugin-meta dt {
  margin-bottom: 4px;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-plugin-meta dd {
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.account-plugin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.account-plugin-actions .button {
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
}

.account-plugin-empty {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: center;
  padding: var(--box-padding);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.account-plugin-empty strong {
  font-size: clamp(24px, 3vw, 38px);
}

.account-plugin-empty p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.publications-column {
  min-width: 0;
}

.profile-side-column {
  align-self: start;
  position: sticky;
  top: 148px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.profile-sidebar,
.profile-feedback-panel {
  display: grid;
  gap: 18px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.profile-feedback-panel {
  gap: 11px;
  border-color: rgba(87, 214, 209, 0.2);
  background: rgba(16, 25, 29, 0.92);
}

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

.user-stats.has-collaborations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.user-stats div,
.profile-view-tab {
  min-width: 0;
}

.profile-view-tab {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-view-tab:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

.profile-view-tab.is-active strong,
.profile-view-tab:hover strong {
  color: var(--accent);
}

.user-stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.user-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.user-section {
  padding-top: 0;
}

.user-publications {
  display: grid;
  gap: 14px;
}

.user-publications {
  grid-template-columns: 1fr;
}

.profile-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 16px;
}

.profile-person-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  color: inherit;
  text-align: center;
}

.profile-person-card:hover {
  border-color: rgba(243, 174, 53, 0.45);
}

.profile-person-avatar {
  display: grid;
  position: relative;
  width: 76px;
  height: 76px;
  place-items: center;
  background: center / cover no-repeat var(--panel-2);
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 900;
}

.profile-person-avatar[style*="background-image"] {
  color: transparent;
}

.profile-person-card strong {
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-publication-card,
.empty-state {
  min-height: 156px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.profile-sidebar-block {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-sidebar-block span,
.profile-feedback-panel > span,
.profile-feedback-panel .comments-list-block > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-sidebar-block strong,
.profile-sidebar-block a,
.user-publication-card strong,
.empty-state strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.profile-sidebar-block p,
.user-publication-card p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.profile-sidebar-block a {
  color: var(--text);
  overflow-wrap: anywhere;
}

.profile-comment-composer {
  display: grid;
  gap: 10px;
}

.profile-feedback-panel .comments-list-block {
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-comment-form {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
}

.profile-comment-form .mini-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 11px;
}

.profile-comment-form input {
  min-width: 0;
  min-height: 40px;
  padding: 0 12px;
  background: #202427;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.profile-comment-form input:disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.72;
}

.profile-comment-form .send-comment {
  height: 40px;
}

.profile-comment-form .send-comment:disabled {
  cursor: default;
  opacity: 0.55;
}

.profile-comment-status {
  min-height: 16px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.social-list-block[hidden] {
  display: none;
}

.comments-list-block[hidden] {
  display: none;
}

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

.profile-social-item,
.profile-track-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.profile-social-avatar {
  display: grid;
  position: relative;
  width: 36px;
  height: 36px;
  place-items: center;
  background-color: var(--panel-2);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
}

.profile-social-avatar[style*="background-image"] {
  color: transparent;
}

a.profile-social-avatar,
a.mini-avatar {
  text-decoration: none;
}

.profile-social-item strong,
.profile-track-item strong {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.profile-track-cover {
  width: 36px;
  height: 36px;
  background: center / cover no-repeat #24272a;
}

.profile-track-item span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.profile-track-item em {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-social-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

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

.profile-collaboration-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: var(--box-padding-compact);
  border: 1px solid var(--line);
  background: var(--soft-panel);
  border-radius: var(--soft-radius);
  color: inherit;
  text-decoration: none;
}

.profile-collaboration-card:hover {
  border-color: rgba(243, 174, 53, 0.45);
}

.profile-collaboration-avatar {
  display: grid;
  position: relative;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: center / cover no-repeat var(--panel-2);
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 900;
}

.profile-collaboration-avatar[style*="background-image"] {
  color: transparent;
}

.profile-collaboration-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.profile-collaboration-copy strong,
.profile-collaboration-copy span,
.profile-collaboration-copy em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-collaboration-copy strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.1;
}

.profile-collaboration-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.profile-collaboration-copy em,
.profile-collaboration-status {
  color: var(--accent-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-collaboration-status {
  justify-self: end;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

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

.profile-comment-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: inherit;
}

.profile-comment-body {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.profile-comment-item strong,
.profile-comment-item em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-comment-item strong {
  margin: 0;
  font-size: 14px;
  line-height: 1.15;
}

.profile-comment-item em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
}

.profile-comment-item p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collaboration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.collaboration-actions a,
.collaboration-actions button {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.collaboration-actions a:hover,
.collaboration-actions button:hover {
  border-color: rgba(248, 168, 38, 0.45);
  color: var(--text);
}

.collaboration-actions button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.collaboration-thread {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.collaboration-message {
  display: grid;
  gap: 3px;
  max-width: 92%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.collaboration-message.is-mine {
  justify-self: end;
  border-color: rgba(248, 168, 38, 0.28);
  background: rgba(248, 168, 38, 0.12);
}

.collaboration-message strong {
  color: var(--text);
  font-size: 11px;
  font-weight: 850;
}

.collaboration-message span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.collaboration-message-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 7px;
  margin-top: 10px;
}

.collaboration-message-form input {
  min-width: 0;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.collaboration-message-form button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #101112;
  cursor: pointer;
}

.collaboration-message-form button:disabled {
  opacity: 0.6;
  cursor: progress;
}

.collaboration-request-item.is-highlighted {
  outline: 2px solid rgba(248, 168, 38, 0.75);
  outline-offset: 4px;
}

.collaboration-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #181a1c;
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.collaboration-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.collaboration-dialog form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.collaboration-page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 92px clamp(20px, 4vw, 56px) 76px;
}

.collaboration-detail-hero {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: 320px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: #181b1d;
}

.collaboration-detail-cover {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: center / cover no-repeat var(--panel-2);
  color: var(--accent-2);
  font-size: 34px;
  font-weight: 950;
}

.collaboration-detail-heading {
  display: grid;
  gap: 16px;
}

.collaboration-detail-heading h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
}

.collaboration-detail-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 760;
}

.collaboration-participants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.collaboration-participant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  text-decoration: none;
}

.collaboration-participant span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: center / cover no-repeat var(--panel-2);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
}

.collaboration-participant span[style*="background-image"] {
  color: transparent;
}

.collaboration-participant strong {
  font-size: 14px;
}

.collaboration-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.collaboration-detail-panel,
.collaboration-detail-side {
  border: 1px solid var(--line);
  background: var(--panel);
}

.collaboration-detail-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.collaboration-detail-side {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 20px;
}

.collaboration-detail-thread {
  display: grid;
  gap: 12px;
}

.collaboration-detail-message {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  max-width: 78%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.collaboration-detail-message.is-mine {
  justify-self: end;
  border-color: rgba(248, 168, 38, 0.28);
  background: rgba(248, 168, 38, 0.12);
}

.collaboration-detail-message span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.collaboration-detail-message strong,
.collaboration-detail-message em,
.collaboration-detail-message p {
  margin: 0;
}

.collaboration-detail-message strong {
  font-size: 14px;
}

.collaboration-detail-message em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.collaboration-detail-message p {
  color: var(--text);
  line-height: 1.45;
}

.collaboration-detail-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  margin-top: 8px;
}

.collaboration-detail-form[hidden] {
  display: none;
}

.collaboration-detail-form input {
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 760;
}

.collaboration-detail-form button {
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--accent);
  color: #101112;
  cursor: pointer;
}

.collaboration-detail-actions {
  display: grid;
  gap: 10px;
}

.collaboration-detail-actions button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.collaboration-detail-actions button:first-child {
  background: var(--accent);
  color: #101112;
}

.collaboration-detail-actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.collaboration-dialog-head {
  position: relative;
  padding-right: 42px;
}

.collaboration-dialog h2 {
  margin: 2px 0 0;
  font-size: 28px;
  line-height: 1.05;
}

.collaboration-dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.collaboration-plugin-summary {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.collaboration-plugin-summary section {
  display: grid;
  gap: 6px;
}

.collaboration-plugin-summary strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.collaboration-plugin-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collaboration-plugin-summary li,
.collaboration-plugin-summary p {
  margin: 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.collaboration-plugin-summary .has-missing li {
  background: rgba(248, 168, 38, 0.12);
  color: #f2c46f;
}

.dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.11);
  color: var(--text);
}

.collaboration-dialog textarea {
  width: 100%;
  min-height: 138px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #101112;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

.collaboration-dialog textarea:focus {
  border-color: rgba(248, 168, 38, 0.72);
  outline: none;
}

.track-edit-dialog {
  width: min(620px, calc(100vw - 32px));
}

.track-edit-grid {
  display: grid;
  gap: 14px;
}

.track-edit-grid label {
  display: grid;
  gap: 7px;
}

.track-edit-grid > label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.track-edit-grid input,
.track-edit-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #101112;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

.track-edit-grid input {
  min-height: 44px;
}

.track-edit-grid textarea {
  min-height: 126px;
  resize: vertical;
}

.track-edit-grid input:focus,
.track-edit-grid textarea:focus {
  border-color: rgba(248, 168, 38, 0.72);
  outline: none;
}

.track-tag-editor {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px 10px;
  min-height: 112px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #101112;
  cursor: text;
}

.track-tag-editor:focus-within {
  border-color: rgba(248, 168, 38, 0.72);
}

.track-tag-list {
  display: contents;
}

.track-tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: 100%;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.track-tag-chip strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: none;
}

.track-tag-chip:hover,
.track-tag-chip:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text);
  outline: none;
}

.track-tag-chip:hover strong,
.track-tag-chip:focus-visible strong {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.track-tag-editor .track-tag-input {
  flex: 1 0 150px;
  width: auto;
  min-width: 130px;
  min-height: 32px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.track-tag-editor .track-tag-input:focus {
  border: 0;
  outline: none;
}

.track-tag-editor .track-tag-input::placeholder {
  color: rgba(168, 176, 184, 0.72);
}

.collaboration-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ghost-button,
.primary-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.ghost-button:disabled,
.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.primary-button {
  border: 0;
  background: var(--accent);
  color: #101112;
}

.app-surface-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #090a0b;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.app-surface-shell {
  display: grid;
  grid-template-rows: auto minmax(0, auto);
  align-content: start;
  gap: 18px;
  width: min(100vw, 1180px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 22px;
  overflow: visible;
}

.app-surface-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #141719;
}

.app-surface-head h1 {
  margin: 2px 0 0;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1;
}

.app-surface-status {
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-align: right;
}

.app-surface-status[data-tone="success"] {
  color: var(--success);
}

.app-surface-status[data-tone="warning"] {
  color: var(--accent);
}

.app-surface-panel {
  display: block;
  min-height: auto;
  overflow: visible;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #111315;
}

.app-surface-panel[data-panel="browser"] {
  overflow: visible;
}

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

.app-upload-form {
  display: flex;
  flex-direction: column;
  min-height: auto;
  gap: 22px;
}

.app-upload-form .app-native-row {
  margin-top: 0;
  margin-bottom: 2px;
}

.app-upload-form .app-form-grid {
  row-gap: 20px;
}

.app-form-grid label,
.app-browser-topbar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 860;
}

.app-form-wide {
  grid-column: 1 / -1;
}

.app-form-grid input,
.app-form-grid select,
.app-form-grid textarea,
.app-browser-topbar input,
.app-browser-topbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0d0f10;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 12px;
}

.app-form-grid textarea {
  min-height: 116px;
  padding-top: 12px;
  resize: vertical;
}

.app-tag-editor {
  min-height: 88px;
}

.app-cover-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.app-cover-preview,
.app-profile-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: var(--preview-image) center / cover no-repeat, #202326;
  color: var(--text);
  cursor: pointer;
}

.app-cover-preview {
  width: 96px;
  aspect-ratio: 1;
}

.app-cover-preview::after,
.app-profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.38));
  opacity: 0;
  transition: opacity 0.16s ease;
}

.app-cover-preview:hover::after,
.app-cover-preview:focus-visible::after,
.app-profile-photo:hover::after,
.app-profile-photo:focus-visible::after {
  opacity: 1;
}

.app-cover-preview span,
.app-profile-photo span {
  z-index: 1;
  font-size: 19px;
  font-weight: 920;
}

.app-cover-preview.has-image span,
.app-profile-photo.has-image span {
  opacity: 0;
}

.app-cover-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.app-profile-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
}

.app-profile-photo-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.app-profile-photo {
  width: 100%;
  aspect-ratio: 1;
}

.app-profile-photo-panel .ghost-button {
  width: 100%;
}

.app-profile-photo-panel > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.app-native-row,
.app-surface-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-native-row {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.app-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--text);
  font-weight: 800;
}

.app-surface-actions {
  justify-content: flex-end;
  margin-top: 18px;
}

.app-browser-mode-tabs {
  display: inline-flex;
  gap: 10px;
  margin: 0 0 18px;
  padding: 5px;
  background: #080a0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.app-browser-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.app-browser-category.is-active,
.app-browser-category:hover,
.app-browser-category:focus-visible {
  background: #f2f3f4;
  color: #090b0c;
  outline: none;
}

.app-browser-category strong {
  font-size: 14px;
  font-weight: 930;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-browser-category em {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(248, 168, 38, 0.18);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.app-browser-searchbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 14px;
  padding: 0 18px;
  background: #24272b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.app-browser-searchbar span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 32px;
  line-height: 1;
}

.app-browser-searchbar input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: 0;
  outline: none;
}

.app-browser-searchbar input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.app-browser-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.app-browser-topbar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 860;
}

.app-browser-topbar select {
  min-width: 150px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #25282b;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  padding: 0 18px;
}

.app-browser-collections {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  overflow-x: auto;
  border: 0;
  background: transparent;
}

.app-browser-collection {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.app-browser-collection.is-active,
.app-browser-collection:hover,
.app-browser-collection:focus-visible {
  border-color: #f2f3f4;
  background: #f2f3f4;
  color: #090b0c;
  outline: none;
}

.app-browser-collection strong,
.app-browser-collection span {
  font-size: 13px;
  font-weight: 820;
}

.app-browser-sound-tabs {
  display: flex;
  gap: 34px;
  min-height: 54px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.app-browser-sound-tabs button {
  position: relative;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 20px;
  font-weight: 850;
  cursor: pointer;
}

.app-browser-sound-tabs button.is-active {
  color: var(--text);
}

.app-browser-sound-tabs button.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--text);
}

.app-browser-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
}

.app-browser-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 12px;
  height: clamp(420px, calc(100dvh - 430px), 680px);
  min-height: 0;
}

.app-browser-results,
.app-browser-detail {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #08090a;
}

.app-browser-results {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.app-browser-table-head,
.app-browser-row {
  display: grid;
  grid-template-columns: 150px minmax(220px, 1fr) 72px 92px 64px 74px 92px;
  align-items: center;
  gap: 10px;
}

.app-browser-table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #111315;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-browser-list {
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-user-select: none;
  user-select: none;
}

.app-browser-row {
  width: 100%;
  min-height: 70px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.app-browser-row:hover,
.app-browser-row:focus-visible,
.app-browser-row.is-selected {
  background: #1a1e21;
  outline: none;
}

.app-browser-row strong,
.app-browser-row em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-browser-row strong {
  font-size: 15px;
  font-weight: 880;
}

.app-browser-row em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 680;
}

.app-browser-row > span:not(:first-child) {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-browser-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #08090a;
}

.app-browser-pagination span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.app-browser-pagination button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: #24272b;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 880;
  cursor: pointer;
}

.app-browser-pagination button:disabled {
  opacity: 0.38;
  cursor: default;
}

.app-browser-row .is-downloaded {
  color: var(--success);
}

.app-browser-row .is-licensed {
  color: var(--accent);
}

.app-browser-sample-row {
  grid-template-columns: 22px 42px 46px minmax(0, 1fr) 56px 96px;
  min-height: 68px;
  margin: 0;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: transparent;
}

.app-browser-sample-row.is-plugin-row {
  grid-template-columns: 22px 42px minmax(0, 1fr) 56px 96px;
}

.app-browser-sample-row:first-child {
  margin-top: 0;
}

.app-browser-sample-row:hover,
.app-browser-sample-row.is-selected {
  background: rgba(255, 255, 255, 0.035);
}

.app-browser-check {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.app-browser-cover-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.app-browser-cover-button span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cover-image) center / cover, #202326;
}

.app-browser-play {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
}

.app-browser-play:hover,
.app-browser-play:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  outline: none;
}

.app-browser-sample-title {
  min-width: 0;
  cursor: grab;
}

.app-browser-sample-title strong {
  font-size: 14px;
}

.app-browser-sample-title em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.app-browser-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  height: 42px;
  overflow: hidden;
}

.app-browser-waveform i {
  display: block;
  flex: 0 0 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
}

.app-browser-time {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 760;
  text-align: right;
}

.app-browser-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.app-browser-row-actions button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
}

.app-browser-row-actions button:hover,
.app-browser-row-actions button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.app-browser-row-actions button.is-liked {
  color: #ffcf66;
}

.app-browser-row-actions button.is-downloaded {
  color: var(--success);
}

@media (max-width: 980px) {
  .app-browser-sample-row {
    grid-template-columns: 18px 36px 40px minmax(0, 1fr) 44px 84px;
  }

  .app-browser-sample-row.is-plugin-row {
    grid-template-columns: 18px 36px minmax(0, 1fr) 44px 84px;
  }

  .app-browser-kind {
    display: none;
  }

  .app-browser-row-actions {
    gap: 5px;
  }

  .app-browser-row-actions button {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

.app-browser-detail {
  display: grid;
  grid-template-rows: clamp(92px, 24%, 156px) minmax(0, 1fr) auto;
  overflow: hidden;
}

.app-surface-page[data-browser-category="sounds"] .app-browser-layout {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(520px, calc(100dvh - 430px), 760px);
}

.app-surface-page[data-browser-category="sounds"] .app-browser-detail {
  min-height: 0;
}

.app-surface-page[data-browser-category="sounds"] .app-browser-cover {
  min-height: 100%;
}

.app-surface-page[data-browser-category="sounds"] .app-browser-detail-body {
  display: grid;
  align-content: center;
}

.app-surface-page[data-browser-category="sounds"] .app-browser-detail-body dl,
.app-surface-page[data-browser-category="sounds"] .app-browser-detail-body p {
  display: none;
}

.app-surface-page[data-browser-category="sounds"] .app-browser-actions {
  position: static;
  align-self: stretch;
  min-width: 240px;
  align-content: center;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.app-surface-page[data-browser-category="sounds"][data-sound-tab="samples"] .app-browser-table-head {
  display: none;
}

.app-browser-detail[hidden],
.app-browser-root-preview[hidden] {
  display: none;
}

.app-browser-root-preview {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 52px 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 12px 22px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 15, 0.98);
  box-shadow: 0 -22px 30px rgba(0, 0, 0, 0.38);
  -webkit-user-select: none;
  user-select: none;
}

.app-surface-page:has(.app-browser-root-preview:not([hidden])) {
  padding-bottom: 110px;
}

.app-browser-preview-cover {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.app-browser-preview-cover span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cover-image) center / cover, #202326;
}

.app-browser-preview-play {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 820;
  cursor: pointer;
}

.app-browser-preview-main {
  display: grid;
  grid-template-rows: auto minmax(44px, 1fr);
  align-self: stretch;
  min-width: 0;
  gap: 3px;
  padding: 4px 0 2px;
  cursor: grab;
}

.app-browser-preview-main .app-browser-waveform {
  position: relative;
  height: 50px;
  max-width: 100%;
}

.app-browser-waveform-svg {
  display: block;
  align-self: center;
  width: 100%;
  height: 52px;
  min-height: 52px;
  overflow: visible;
  opacity: 1;
  cursor: grab;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.app-browser-waveform[data-waveform-drag] {
  cursor: grab;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.app-browser-waveform-svg:active,
.app-browser-waveform[data-waveform-drag]:active {
  cursor: grabbing;
}

.app-browser-waveform-svg .wave-bars rect {
  fill: #a7b0c4;
}

.app-browser-waveform-svg .wave-beats line {
  stroke: #f8a826 !important;
  stroke-width: 2;
  opacity: 0.66;
}

.app-browser-waveform-real .wave-lanes line {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.app-browser-waveform-real .wave-real path {
  fill: rgba(215, 222, 238, 0.72);
}

.app-browser-preview-main .app-browser-waveform i {
  flex: 1 1 3px;
  min-width: 2px;
  background: rgba(132, 138, 154, 0.76);
}

.app-browser-waveform-preview {
  width: 100%;
  padding: 0 2px;
}

.app-browser-waveform-preview b {
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: rgba(248, 168, 38, 0.44);
  pointer-events: none;
}

.app-browser-preview-main strong {
  align-self: start;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-browser-preview-actions {
  display: flex;
  gap: 8px;
}

.app-browser-preview-actions button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  cursor: pointer;
}

.app-browser-preview-actions button.is-liked {
  color: #ffcf66;
}

.app-browser-preview-actions button.is-downloaded {
  color: var(--success);
}

.app-browser-cover {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    var(--cover-image) center / cover,
    #202326;
}

.app-browser-detail-body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 14px;
}

.app-browser-detail-body p,
.app-browser-detail-body h2,
.app-browser-detail-body span {
  margin: 0;
}

.app-browser-detail-body p {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-browser-detail-body h2 {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.05;
}

.app-browser-detail-body span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.app-browser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.app-browser-tags b {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.app-browser-detail-body dl {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.app-browser-detail-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.app-browser-detail-body dt,
.app-browser-detail-body dd {
  margin: 0;
}

.app-browser-detail-body dd {
  color: var(--text);
  font-weight: 840;
  text-align: right;
}

.app-browser-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0f10;
  box-shadow: 0 -10px 18px rgba(0, 0, 0, 0.24);
}

.app-browser-actions button {
  min-width: 0;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 900;
  line-height: 1.12;
  padding: 0 8px;
  cursor: pointer;
}

.app-browser-actions button:hover,
.app-browser-actions button:focus-visible {
  border-color: rgba(248, 168, 38, 0.54);
  color: var(--accent);
  outline: none;
}

.app-browser-detail-empty {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.app-browser-detail-empty strong {
  color: var(--text);
}

.app-upload-list {
  display: grid;
  gap: 8px;
  max-height: clamp(168px, 24dvh, 300px);
  min-height: 112px;
  overflow: auto;
  padding: 10px;
  overscroll-behavior: contain;
}

.app-upload-queue {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0d0f10;
}

.app-upload-progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.app-upload-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: 999px;
  background: var(--accent);
  animation: app-upload-progress 1.1s ease-in-out infinite;
}

@keyframes app-upload-progress {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(240%);
  }
}

.app-upload-queue .app-surface-actions {
  position: relative;
  margin-top: 0;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 15, 16, 0.98);
  box-shadow: none;
}

.app-upload-row,
.app-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #171a1d;
}

.app-upload-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-upload-row span,
.app-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.app-upload-row[data-state="uploading"] {
  border-color: rgba(248, 168, 38, 0.42);
}

.app-upload-row[data-state="uploaded"] span {
  color: var(--success);
}

.app-upload-row[data-state="failed"] span {
  color: var(--accent);
}

@media (max-width: 760px) {
  .app-surface-shell {
    padding: 14px;
  }

  .app-surface-head,
  .app-cover-row,
  .app-profile-layout,
  .app-native-row,
  .app-surface-actions {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .app-surface-status {
    max-width: none;
    text-align: left;
  }

  .app-form-grid,
  .app-browser-topbar,
  .app-browser-layout {
    grid-template-columns: 1fr;
  }

  .app-browser-layout {
    height: auto;
    min-height: 0;
  }

  .app-browser-collections {
    overflow-x: auto;
  }

  .app-browser-detail {
    height: clamp(320px, calc(100dvh - 150px), 520px);
    min-height: 0;
  }

  .app-profile-photo {
    width: 108px;
  }
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.primary-button:hover {
  filter: brightness(1.07);
}

.publication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.publication-tags em {
  padding: 4px 7px;
  background: #111315;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.user-publication-card small {
  color: var(--accent);
  font-weight: 850;
}

.track-publication-card {
  display: grid;
  grid-template-columns: minmax(118px, 172px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.track-cover {
  display: block;
  min-height: 118px;
  aspect-ratio: 1;
  background: var(--cover) center / cover no-repeat, #1f2225;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.track-cover span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.28));
}

.track-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.track-cover-overlay {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.track-topline {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.track-play {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  cursor: pointer;
}

.track-play:disabled {
  cursor: default;
  opacity: 0.35;
}

.track-play::before {
  content: "";
  display: block;
  width: 24px;
  height: 28px;
  background: #050505;
  transform: translateX(3px);
}

.track-publication-card.is-playing .track-play::before {
  width: 18px;
  height: 24px;
  transform: none;
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-mask-image: url("/vendor/fontawesome/pause.svg");
  mask-image: url("/vendor/fontawesome/pause.svg");
}

.track-title-block span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
}

.track-title-block strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
}

.track-meta {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.track-meta em {
  padding: 7px 12px;
  border-radius: 999px;
  background: #2e3032;
  color: var(--text);
  font-style: normal;
}

.track-waveform {
  position: relative;
  display: block;
  aspect-ratio: 10 / 1;
  min-height: 0;
  color: var(--muted);
  cursor: pointer;
}

.waveform-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.waveform-canvas::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  z-index: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(-0.5px);
  pointer-events: none;
}

.waveform-canvas span {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(184, 184, 184, 0.28) 0 3px,
      transparent 3px 7px
    );
  opacity: 0.7;
}

.track-waveform.is-ready .waveform-canvas span {
  display: none;
}

.waveform-time {
  position: absolute;
  bottom: 4px;
  z-index: 2;
  padding: 2px 5px;
  background: rgba(5, 5, 5, 0.86);
  color: #f2f4f5;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  pointer-events: none;
}

.waveform-current {
  left: 4px;
}

.waveform-total {
  right: 4px;
}

.track-waveform small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.track-comment-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
}

.mini-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  min-width: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--avatar) center / cover no-repeat, #2b2d30;
  color: var(--text);
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-indent: 0;
  white-space: nowrap;
}

.mini-avatar.has-image {
  background-position: center;
  background-size: cover;
  color: transparent;
  font-size: 0;
  text-indent: -999px;
}

.track-comment-row input {
  min-height: 44px;
  border: 0;
  padding: 0 16px;
  background: #2a2c2e;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.track-comment-row input::placeholder {
  color: #b5b5b5;
}

.send-comment {
  display: grid;
  place-items: center;
  border: 0;
  background: #202224;
  color: var(--text);
  cursor: pointer;
}

.send-comment {
  height: 44px;
}

.send-comment::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--muted);
  -webkit-mask: url("/vendor/fontawesome/paper-plane.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/paper-plane.svg") center / contain no-repeat;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.track-stat {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.track-stat .fa-icon,
.track-stat-icon {
  --fa-size: 16px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--muted);
  line-height: 1;
}

.track-stat-icon {
  position: relative;
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--fa-icon) center / contain no-repeat;
  mask: var(--fa-icon) center / contain no-repeat;
}

.comment-icon {
  --fa-icon: url("/vendor/fontawesome/comment.svg");
}

.track-stat strong {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
}

.track-like,
.track-collab,
.track-edit {
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.track-collab:hover,
.track-edit:hover {
  background: rgba(255, 255, 255, 0.06);
}

.track-collab .fa-handshake {
  --fa-size: 19px;
  width: 19px;
  height: 19px;
  flex-basis: 19px;
  transition: color 160ms ease;
}

.track-collab.is-requested {
  background: rgba(87, 214, 209, 0.11);
  color: var(--accent-2);
}

.track-collab.is-requested span,
.track-collab.is-requested strong {
  color: var(--accent-2);
}

.track-collab.is-requested:hover {
  background: rgba(87, 214, 209, 0.18);
}

.track-collab.is-accepted {
  background: rgba(49, 209, 88, 0.12);
  color: var(--success);
}

.track-collab.is-accepted .fa-handshake {
  --fa-icon: url("/vendor/fontawesome/handshake-solid.svg");
}

.track-collab.is-accepted span,
.track-collab.is-accepted strong {
  color: var(--success);
}

.track-collab.is-accepted:hover {
  background: rgba(49, 209, 88, 0.2);
}

.track-collab {
  margin-left: auto;
  cursor: pointer;
}

.track-edit {
  cursor: pointer;
}

.track-edit .fa-pencil {
  --fa-size: 16px;
}

.track-like.is-liked span,
.track-like.is-liked strong {
  color: var(--accent);
}

.track-like:disabled,
.track-collab:disabled,
.track-edit:disabled {
  cursor: default;
  opacity: 0.65;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

.track-tags em {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: #2b2d30;
  color: var(--text);
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
  white-space: nowrap;
}

.doc-page {
  width: min(100%, var(--content-width));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: var(--page-top-padding) clamp(20px, 4vw, 56px) clamp(42px, 7vw, 92px);
}

.doc-article {
  max-width: 920px;
}

.doc-article:not(.download-article):not(.release-article) {
  max-width: 1120px;
  margin: 0 auto;
}

.download-article {
  max-width: var(--content-width);
  margin: 0 auto;
}

.release-article {
  max-width: var(--content-width);
  margin: 0 auto;
}

.community-article {
  max-width: var(--content-width) !important;
  margin: 0 auto;
}

.community-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(36px, 5vw, 64px);
  background: #1b1f22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: var(--soft-shadow);
}

.community-hero .doc-lead {
  margin-bottom: 0;
}

.community-panel {
  margin-top: 18px;
}

.community-panel .section-heading {
  margin-bottom: 24px;
}

.admin-hero {
  align-items: center;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-status-panel,
.admin-section {
  margin-top: 18px;
  padding: var(--box-padding);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.admin-status-panel[data-tone="success"] {
  border-color: rgba(90, 190, 130, 0.42);
}

.admin-status-panel[data-tone="warning"] {
  border-color: rgba(248, 168, 38, 0.42);
}

.admin-status-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.admin-status-panel p {
  margin: 0;
  color: var(--muted);
}

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

.admin-stat-card {
  min-height: 132px;
  padding: 22px;
  background: #191d20;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.admin-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.admin-stat-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

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

.admin-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.admin-list-item {
  padding: 16px;
  background: #191d20;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.admin-list-item strong,
.admin-list-item span {
  display: block;
}

.admin-list-item strong {
  color: var(--text);
}

.admin-list-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.admin-list-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.release-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(36px, 5vw, 64px);
  background: #1b1f22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: var(--soft-shadow);
}

.release-hero h1 {
  margin-bottom: 16px;
}

.release-hero .doc-lead {
  margin-bottom: 0;
}

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

.doc-article .release-list section {
  position: relative;
  min-height: 190px;
  padding: var(--box-padding);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.doc-article .release-list section:first-child {
  grid-column: span 2;
  background: #211c13;
  border-color: rgba(248, 168, 38, 0.32);
}

.doc-article .release-list section p {
  margin-bottom: 0;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(36px, 5vw, 64px);
  background: #1b1f22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: var(--soft-shadow);
}

.download-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.download-info-stack {
  display: grid;
  gap: 16px;
}

.doc-article h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 92px);
}

.doc-article h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.doc-article section {
  margin-top: 18px;
  padding: var(--box-padding);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.download-info-stack section {
  display: grid;
  align-content: start;
  min-height: 156px;
  padding: var(--box-padding);
  background: rgba(27, 30, 32, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.download-info-stack section p {
  margin-bottom: 0;
}

.doc-article ul,
.doc-article ol {
  max-width: 820px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.doc-article li + li {
  margin-top: 8px;
}

.doc-article p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.doc-lead {
  margin-bottom: 38px;
  color: var(--text) !important;
  font-size: 21px !important;
}

.download-support-panel {
  border-color: rgba(248, 168, 38, 0.34) !important;
}

.free-download-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  background: #11181b !important;
  border-color: rgba(248, 168, 38, 0.46) !important;
}

.free-download-banner .eyebrow {
  margin-bottom: 8px;
}

.free-download-banner h2 {
  margin-bottom: 10px;
}

.free-download-banner p {
  margin-bottom: 0;
}

.free-download-banner > strong {
  display: grid;
  min-width: 128px;
  min-height: 88px;
  place-items: center;
  padding: 16px 22px;
  background: #221d16;
  border: 1px solid rgba(248, 168, 38, 0.72);
  border-radius: var(--soft-radius);
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: 1;
}

.lightweight-download-banner {
  margin-top: 20px;
  margin-bottom: 22px;
  border-color: rgba(87, 214, 209, 0.34);
}

.lightweight-download-banner .eyebrow {
  margin-bottom: 8px;
}

.lightweight-download-banner h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.3vw, 42px);
}

.requirements-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(32px, 5vw, 58px);
  background: #101719;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--soft-radius);
}

.requirements-hero h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.requirements-hero .doc-lead {
  margin-bottom: 0;
}

.requirements-hero img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--soft-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

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

.requirements-stats article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: var(--box-padding-compact);
  background: #10191d;
  border: 1px solid rgba(87, 214, 209, 0.24);
  border-radius: var(--soft-radius);
}

.requirements-stats strong {
  color: var(--text);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 1;
}

.requirements-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.requirements-panel {
  margin-top: 22px;
}

.requirements-grid .doc-card {
  min-height: 180px;
}

.requirements-note {
  max-width: none;
}

.doc-article .download-support-panel h2 {
  margin-top: 6px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.download-warning {
  border-color: rgba(248, 168, 38, 0.22) !important;
}

.download-warning h2 {
  color: var(--accent);
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.download-modal.is-open {
  display: flex;
}

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.download-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: var(--box-padding);
  background: var(--panel);
  border: 1px solid rgba(248, 168, 38, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.download-modal-panel h2 {
  margin: 8px 36px 10px 0;
  font-size: 32px;
}

.download-modal-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.download-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
}

.download-modal-close::before {
  content: "";
  display: block;
  width: 42%;
  height: 42%;
  margin: auto;
  background: currentColor;
  -webkit-mask: url("/vendor/fontawesome/plus.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/plus.svg") center / contain no-repeat;
  transform: rotate(45deg);
}

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

.amount-button {
  min-height: 52px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}

.amount-button::after {
  content: " euro";
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.amount-button.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #121212;
}

.amount-button.is-selected::after {
  color: rgba(18, 18, 18, 0.76);
}

.custom-amount-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.custom-amount-field input {
  min-height: 44px;
  padding: 0 12px;
  background: #0f1011;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
}

.download-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.doc-back::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
  transform: translateY(-0.5px);
  -webkit-mask: url("/vendor/fontawesome/arrow-left.svg") center / contain no-repeat;
  mask: url("/vendor/fontawesome/arrow-left.svg") center / contain no-repeat;
}

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

.doc-card,
.doc-callout {
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.doc-card h3,
.doc-callout h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.doc-card p,
.doc-callout p {
  margin-bottom: 0;
  font-size: 16px;
}

.doc-callout {
  max-width: 820px;
  margin: 20px 0 0;
  background: #121d1d;
  border-color: rgba(87, 214, 209, 0.3);
}

.use-case {
  max-width: 920px;
  margin: 24px 0;
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid rgba(248, 168, 38, 0.34);
  border-radius: var(--soft-radius);
}

.use-case > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.use-case h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.use-case p {
  margin-bottom: 14px;
  font-size: 16px;
}

.use-case ol,
.use-case ul {
  padding-left: 22px;
}

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

.goal-list a,
.goal-list div {
  padding: var(--box-padding-compact);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.goal-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.goal-list span {
  color: var(--muted);
  line-height: 1.45;
}

.doc-figure {
  width: min(1180px, 100%);
  margin: 30px 0 34px;
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  overflow: hidden;
}

.doc-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.doc-figure figcaption {
  padding: var(--box-padding-compact);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  border-top: 1px solid var(--line);
}

.doc-table {
  width: min(920px, 100%);
  border-collapse: separate;
  border-spacing: 0;
  color: var(--muted);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.doc-table th,
.doc-table td {
  padding: 18px 20px;
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.doc-table tr:first-child th,
.doc-table tr:first-child td {
  border-top: 0;
}

.doc-table th + th,
.doc-table td + td {
  border-left: 1px solid var(--line);
}

.doc-table th {
  color: var(--text);
  background: var(--soft-bg);
  font-size: 13px;
  text-transform: uppercase;
}

.manual-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
}

.manual-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: var(--muted);
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.manual-nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.showreel-page {
  width: min(100%, var(--content-width));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: var(--page-top-padding) clamp(20px, 4vw, 56px) clamp(42px, 7vw, 92px);
}

.showreel-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.showreel-index-card {
  display: grid;
  gap: 14px;
  min-height: 360px;
  padding: var(--box-padding-compact);
  background: var(--soft-panel);
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.showreel-index-card:hover {
  border-color: rgba(248, 168, 38, 0.48);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.showreel-index-poster {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(18, 20, 21, 0.06), rgba(18, 20, 21, 0.58)),
    var(--poster) center / cover no-repeat,
    #121415;
  border-radius: var(--soft-radius);
}

.showreel-index-card strong {
  font-size: 24px;
  line-height: 1.08;
}

.showreel-index-card > span:last-child {
  color: var(--muted);
  line-height: 1.45;
}

.showreel-detail {
  max-width: 1180px;
}

.showreel-detail h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 7vw, 96px);
}

.showreel-video-placeholder {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151718;
  border: 1px solid var(--line);
}

.showreel-video-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.92;
}

.showreel-video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 18, 0.05), rgba(16, 17, 18, 0.58));
  pointer-events: none;
}

.showreel-video-placeholder span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.showreel-video-frame {
  overflow: hidden;
  background: #080909;
  border: 1px solid var(--line);
}

.showreel-video-frame video,
.showreel-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #080909;
  border: 0;
}

.showreel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.track-page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: var(--page-top-padding) clamp(14px, 2vw, 22px) clamp(56px, 7vw, 92px);
}

.track-hero-detail {
  --track-hero-art: none;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(24px, 4vw, 56px);
  min-height: 460px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  background: #0c0e0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.track-hero-detail::before,
.track-hero-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.track-hero-detail::before {
  background: var(--track-hero-art) center / cover no-repeat;
  filter: blur(26px) saturate(1.12);
  opacity: 0.42;
  transform: scale(1.12);
}

.track-hero-detail::after {
  z-index: -1;
  background: rgba(7, 8, 9, 0.72);
}

.track-hero-player {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
}

.track-hero-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, max-content);
  align-items: start;
  gap: 18px;
}

.track-hero-play {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  background: #f7f8f3;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.track-hero-play::before {
  content: "";
  width: 40px;
  height: 48px;
  background: #050505;
  transform: translateX(5px);
}

.track-hero-play.is-playing::before {
  width: 28px;
  height: 40px;
  transform: none;
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-mask-image: url("/vendor/fontawesome/pause.svg");
  mask-image: url("/vendor/fontawesome/pause.svg");
}

.track-hero-heading h1,
.track-hero-heading a {
  display: table;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  background: transparent;
}

.track-hero-heading h1 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.track-hero-heading a {
  margin-top: 0;
  color: rgba(246, 247, 243, 0.66);
  font-size: 20px;
  font-weight: 850;
}

.track-hero-meta {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
}

.track-hero-meta em {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-style: normal;
}

.track-hero-waveform {
  position: relative;
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
  aspect-ratio: 10 / 2;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.track-hero-waveform::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  z-index: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(-0.5px);
  pointer-events: none;
}

.track-hero-waveform span {
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: center;
  color: #d0d4d6;
  font-weight: 850;
}

.track-hero-current,
.track-hero-duration {
  position: absolute;
  bottom: 0;
  z-index: 3;
  padding: 3px 5px;
  background: #050505;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.track-hero-current {
  left: 0;
}

.track-hero-duration {
  right: 0;
}

.track-hero-cover {
  align-self: center;
  aspect-ratio: 1;
  background: center / cover no-repeat #1f2225;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.36);
}

.track-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 28px;
}

.track-detail-main {
  display: grid;
  align-content: start;
  gap: 22px;
}

.track-detail-comment-row {
  grid-template-columns: 44px minmax(0, 1fr) 64px;
}

.track-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.track-comments-section {
  margin-top: 10px;
}

.compact-heading {
  margin-bottom: 16px;
}

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

.track-comment-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: #151718;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.track-comment-item strong,
.track-comment-item em {
  display: block;
}

.track-comment-item em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.track-comment-item p {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.45;
}

.track-detail-sidebar {
  align-self: start;
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

@media (max-width: 1180px) {
  .community-wall.profile-grid {
    grid-auto-rows: 112px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suggestion-wall {
    grid-auto-rows: 108px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-wall-card.is-photo,
  .community-media-card,
  .community-publication-card {
    min-height: 448px;
  }

  .community-wall-card.is-photo.is-tall,
  .community-media-card,
  .community-publication-card.is-tall {
    min-height: 560px;
  }
}

.detail-tags {
  justify-content: flex-start;
  margin-left: 0;
}

@media (max-width: 900px) {
  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .free-pricing-section {
    width: min(100%, var(--content-width));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(104px, 22vw, 128px);
    padding-right: 14px;
    padding-bottom: clamp(38px, 10vw, 64px);
    padding-left: 14px;
  }

  .hero-panel,
  .hero-screenshot {
    min-height: 260px;
  }

  .home-comments-marquee {
    --home-comment-gap: 22px;
  }

  .home-comment-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    width: min(70vw, 290px);
    max-width: min(70vw, 290px);
  }

  .home-comment-avatar {
    width: 38px;
    height: 38px;
  }

  .home-comment-body strong {
    font-size: 13px;
  }

  .download-hero {
    grid-template-columns: 1fr;
  }

  .download-hero-copy {
    min-height: 0;
  }

  .release-hero,
  .community-hero,
  .showreel-index-grid,
  .release-list {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .profile-card-photo {
    width: 58px;
    height: 58px;
    font-size: 15px;
  }

  .doc-article .release-list section:first-child {
    grid-column: auto;
  }

	  .download-grid,
	  .plugin-grid,
	  .manual-grid,
	  .publication-grid,
  .access-grid,
  .lightweight-panel,
  .lightweight-download-banner,
  .free-pricing-layout,
  .free-download-banner,
  .ai-plus-layout,
  .requirements-hero,
  .requirements-stats,
  .private-plugin-grid,
  .private-plugin-summary-card,
  .account-plugins-hero,
  .account-plugin-card,
  .account-plugin-meta,
  .profile-content,
  .user-publications,
  .doc-grid,
  .goal-list,
  .account-perks,
  .showreel-layout,
	  .account-layout {
	    grid-template-columns: 1fr;
	  }

  .free-edition-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .edition-price {
    grid-column: auto;
  }

  .free-download-banner > strong {
    width: 100%;
  }

  .lightweight-copy .button,
  .lightweight-download-banner .button {
    width: 100%;
  }

  .lightweight-stats {
    width: 100%;
  }

  .requirements-hero {
    padding: 24px;
  }

  .profile-grid:not(.community-wall) {
    grid-template-columns: 1fr;
  }

  .community-intro {
    justify-items: start;
    text-align: left;
  }

  .community-intro h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .community-intro p:last-child {
    font-size: 18px;
  }

  .community-wall.profile-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .suggestion-wall {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .community-wall-card.is-photo,
  .community-wall-card.is-photo.is-tall,
  .community-media-card,
  .community-publication-card,
  .community-publication-card.is-tall,
  .community-wall-card.is-quote,
  .community-wall-card.is-identity {
    grid-row: auto;
    min-height: 0;
  }

  .community-wall-card.is-photo,
  .community-wall-card.is-photo.is-tall,
  .community-media-card,
  .community-publication-card,
  .community-publication-card.is-tall {
    min-height: 420px;
  }

  .suggestion-wall .community-publication-card,
  .suggestion-wall .community-publication-card.is-tall,
  .suggestion-wall .community-wall-card.is-photo,
  .suggestion-wall .community-wall-card.is-photo.is-tall,
  .suggestion-wall .community-wall-card.is-identity {
    grid-row: auto;
    min-height: 360px;
  }

  .community-wall-card.is-quote,
  .community-wall-card.is-identity {
    padding: 22px;
  }

  .showreel-feature {
    grid-template-rows: minmax(280px, 44vh) auto;
    min-height: 0;
  }

  .home-plugin-feature {
    grid-template-columns: 1fr;
  }

  .home-plugin-preview {
    min-height: 240px;
  }

  .user-hero {
    grid-template-columns: 1fr;
  }

  .track-hero-detail,
  .track-detail-layout {
    grid-template-columns: 1fr;
  }

  .collaboration-page {
    padding-top: 82px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .collaboration-detail-hero,
  .collaboration-detail-layout {
    grid-template-columns: 1fr;
  }

  .collaboration-detail-cover {
    width: min(260px, 100%);
  }

  .collaboration-detail-side {
    position: static;
  }

  .collaboration-detail-message {
    max-width: 100%;
  }

  .track-hero-heading {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .track-hero-play {
    width: 64px;
    height: 64px;
  }

  .track-detail-sidebar {
    position: static;
  }

  .follow-button {
    position: static;
    justify-self: start;
  }

  .profile-side-column {
    position: static;
  }

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

  .user-stats.has-collaborations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profile-collaboration-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .profile-collaboration-status {
    justify-self: start;
  }

  .track-publication-card,
  .track-comment-row {
    grid-template-columns: 1fr;
  }

  .track-publication-card {
    grid-template-areas:
      "cover"
      "comments"
      "actions";
    gap: 14px;
  }

  .track-cover {
    grid-area: cover;
    width: 100%;
    max-width: none;
    min-height: 360px;
    aspect-ratio: 1;
  }

  .track-cover span {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0.76) 100%);
  }

  .track-main {
    display: contents;
  }

  .track-cover-overlay {
    grid-area: cover;
    align-self: stretch;
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 14px;
    min-height: 360px;
    padding: 18px 14px 14px;
    pointer-events: none;
  }

  .track-cover-overlay a,
  .track-cover-overlay button,
  .track-cover-overlay .track-waveform {
    pointer-events: auto;
  }

  .track-topline {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .track-meta {
    justify-items: start;
    white-space: normal;
  }

  .track-play {
    width: 58px;
    height: 58px;
  }

	  .track-play::before {
	    width: 24px;
	    height: 28px;
	    transform: translateX(3px);
	  }

  .track-waveform {
    width: 100%;
  }

  .track-comment-row {
    grid-area: comments;
    grid-template-columns: 40px minmax(0, 1fr) 52px;
  }

  .track-actions {
    grid-area: actions;
  }

  .track-publication-card.is-playing .track-play::before {
    transform: none;
  }

  .track-tags {
    width: 100%;
    margin-left: 0;
  }

  .profile-subheader-inner {
    min-height: 58px;
  }

  .profile-subheader-action {
    display: none;
  }

  .user-page {
    border-left: 0;
    border-right: 0;
  }

  .profile-private-panel {
    width: calc(100% - 28px);
    padding: var(--box-padding-compact);
  }

  .account-plugins-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .account-plugins-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-plugin-art {
    min-height: 86px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
  }

  .account-plugin-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 86px;
  }

  .account-plugin-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .account-plugin-body {
    padding: 12px;
  }

  .site-footer-inner {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .site-footer-manifesto,
  .site-footer-manifesto-copy {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 54px 38px 38px;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 10px 14px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(0, 0, 0, 0.48);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .topbar.is-nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .brand {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
    flex: 0 1 auto;
    gap: 8px;
    margin-right: 0;
    position: relative;
    z-index: 80;
  }

  .brand-logo {
    width: 28px;
    height: 38px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-menu-toggle {
    position: relative;
    z-index: 90;
    display: inline-grid;
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    grid-column: 1;
    justify-self: start;
  }

  .language-switcher {
    position: relative;
    z-index: 80;
    grid-column: 3;
    justify-self: end;
    width: 44px;
    flex-basis: 44px;
  }

  .language-toggle {
    height: 38px;
    padding: 0 6px;
  }

  .language-menu {
    top: calc(100% + 8px);
    right: 0;
    width: min(178px, calc(100vw - 28px));
  }

  .user-pill {
    position: relative;
    z-index: 80;
    grid-column: 5;
    justify-self: end;
    min-height: 38px;
  }

  .notification-center {
    position: relative;
    z-index: 80;
    grid-column: 4;
    justify-self: end;
  }

  .notification-bell-button {
    width: 38px;
    height: 38px;
  }

  .notification-panel {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: min(520px, calc(100vh - 92px));
  }

  .user-pill-avatar {
    width: 36px;
    height: 36px;
  }

  .nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: flex;
    width: min(300px, 82vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 82px 16px 18px;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(16, 18, 20, 0.98);
    box-shadow: 22px 0 54px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 180ms ease, opacity 160ms ease;
    backdrop-filter: blur(18px);
  }

  .topbar.is-nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-group,
  .nav-link,
  .nav-submenu a {
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-group {
    width: 100%;
    flex-direction: column;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .nav-group:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .nav-group::after {
    display: none;
  }

  .nav-link,
  .nav-submenu a {
    width: 100%;
    min-width: 100%;
    padding: 10px 0;
    border-radius: 6px;
  }

  .nav-trigger {
    color: var(--text);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-trigger::after {
    margin-left: auto;
  }

  .nav-submenu {
    position: static;
    display: grid;
    justify-items: start;
    width: 100%;
    min-width: 0;
    gap: 2px;
    padding: 2px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    justify-content: flex-start;
    min-height: 32px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }

  .nav-link:hover,
  .nav-submenu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-badges {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
  }

  .hero-badges span {
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
  }
}

@media (max-width: 560px) {
  .admin-hero {
    grid-template-columns: 1fr;
  }

  .admin-hero-actions,
  .admin-hero-actions .button {
    width: 100%;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-comments-strip {
    width: 100%;
    padding: 12px 14px;
  }

  .home-comment-item {
    grid-template-columns: 34px minmax(0, 1fr);
    width: min(72vw, 270px);
    max-width: min(72vw, 270px);
  }

  .home-comment-avatar {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .home-comment-body span {
    font-size: 11px;
  }

  .privacy-approval {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .privacy-approval-actions {
    grid-template-columns: 1fr;
  }

  .site-footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer-nav section {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer-nav section:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .site-footer-founder {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .site-footer-manifesto {
    gap: 22px;
    padding: 24px 0;
  }

  .site-footer-manifesto-copy {
    gap: 18px;
  }
}

.plugin-audio-play,
.track-hero-play {
  position: relative;
}

.plugin-audio-play {
  --play-icon-size: 46%;
  --pause-icon-size: 40%;
}

.showreel-play,
.community-play-button,
.track-hero-play {
  --play-icon-size: 50%;
  --pause-icon-size: 42%;
}

.track-play {
  --play-icon-size: 50%;
  --pause-icon-size: 42%;
}

.showreel-play {
  color: #111;
  font-size: 0;
}

.community-play-button {
  color: #101112;
}

.track-play {
  color: #050505;
}

.track-hero-play {
  color: #050505;
}

.plugin-audio-play::before,
.community-play-button::before,
.showreel-play::before,
.track-play::before,
.track-hero-play::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: none;
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-mask: url("/vendor/fontawesome/play.svg") center / var(--play-icon-size, 50%) no-repeat;
  mask: url("/vendor/fontawesome/play.svg") center / var(--play-icon-size, 50%) no-repeat;
  pointer-events: none;
}

.plugin-audio-play.is-playing::before,
.track-publication-card.is-playing .track-play::before,
.track-hero-play.is-playing::before {
  width: 100%;
  height: 100%;
  transform: none;
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-mask: url("/vendor/fontawesome/pause.svg") center / var(--pause-icon-size, 42%) no-repeat;
  mask: url("/vendor/fontawesome/pause.svg") center / var(--pause-icon-size, 42%) no-repeat;
}
