:root {
  color-scheme: dark;
  --bg: #030305;
  --panel: #101014;
  --panel-soft: #17171d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f4ff;
  --muted: #b5b0c4;
  --dim: #7d778b;
  --violet: #b46cff;
  --cyan: #6ce7ff;
  --green: #8df7bd;
  --amber: #ffd36b;
  --hot: #ff6fb1;
  --max: 1180px;
  --header-duration: 2000ms;
  --header-surface-duration: 1500ms;
  --header-ease: cubic-bezier(0.3, 0.45, 0.2, 1);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.modal-open,
html.modal-open body {
  overflow: hidden;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% 6%, rgba(108, 231, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(180, 108, 255, 0.06), transparent 520px),
    var(--bg);
  color: var(--text);
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
}

body::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(104deg, transparent 0 22%, rgba(95, 54, 206, 0.08) 31%, rgba(190, 92, 255, 0.72) 43%, rgba(255, 107, 214, 0.48) 50%, rgba(97, 197, 255, 0.18) 58%, transparent 72% 100%),
    linear-gradient(114deg, transparent 0 34%, rgba(60, 255, 208, 0.12) 42%, rgba(169, 85, 247, 0.52) 54%, rgba(255, 111, 177, 0.22) 62%, transparent 78% 100%),
    radial-gradient(ellipse 88% 22% at 46% 72%, rgba(168, 85, 247, 0.72), rgba(168, 85, 247, 0.2) 46%, transparent 75%),
    radial-gradient(ellipse 54% 18% at 76% 84%, rgba(216, 180, 254, 0.5), rgba(108, 231, 255, 0.14) 45%, transparent 74%);
  background-position: -24% 76%, 110% 62%, 0% 10%, 56% 24%;
  background-size: 170% 88%, 160% 76%, 150% 150%, 140% 140%;
  background-blend-mode: screen;
  filter: blur(18px) saturate(160%);
  opacity: 1;
  animation: ambient-flow 11s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  mask-image: linear-gradient(to bottom, transparent 0 8%, black 20% 94%, transparent 100%);
}

body::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 3, 5, 0.14), rgba(3, 3, 5, 0.34) 56%, rgba(3, 3, 5, 0.86)),
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 38%), rgba(180, 108, 255, 0.16), transparent 23rem),
    radial-gradient(circle, rgba(196, 181, 253, 0.22) 0 1px, transparent 1.3px);
  background-size: auto, auto, 18px 18px;
  background-position: 0 0, 0 0, 0 0;
  animation: star-drift 24s linear infinite;
}

@keyframes ambient-flow {
  0% {
    background-position: -24% 78%, 108% 68%, 0% 4%, 56% 20%;
  }

  50% {
    background-position: 24% 66%, 48% 58%, 42% 11%, 70% 28%;
  }

  100% {
    background-position: 108% 72%, -18% 64%, 100% 18%, 38% 34%;
  }
}

@keyframes star-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 36px 72px;
  }
}

.site-header,
main,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: calc(100% - 48px);
  min-height: 82px;
  padding: 18px 0;
  border: 1px solid transparent;
  border-radius: 26px;
  background: rgba(7, 7, 10, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(0) saturate(100%);
  transform: translateX(-50%);
  transition:
    top var(--header-duration) var(--header-ease),
    width var(--header-duration) var(--header-ease),
    min-height var(--header-duration) var(--header-ease),
    padding var(--header-duration) var(--header-ease),
    border-radius var(--header-duration) var(--header-ease),
    border-color var(--header-surface-duration) var(--header-ease),
    background var(--header-surface-duration) var(--header-ease),
    box-shadow var(--header-surface-duration) var(--header-ease),
    backdrop-filter var(--header-surface-duration) var(--header-ease);
}

.site-header.is-elevated {
  top: 16px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  padding: 10px 18px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(7, 7, 10, 0.46);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(132%);
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(22px, 4vw, 42px);
  transition: gap var(--header-duration) var(--header-ease);
}

.site-header.is-elevated .header-left {
  gap: 18px;
}

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

.brand img {
  width: 54px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(180, 108, 255, 0.55));
  transition: width var(--header-duration) var(--header-ease), height var(--header-duration) var(--header-ease);
}

.site-header.is-elevated .brand img {
  width: 46px;
  height: 30px;
}

.brand span {
  font-size: 16px;
  transition: font-size var(--header-duration) var(--header-ease);
}

.site-header.is-elevated .brand span {
  font-size: 15px;
}

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

.nav-link,
.dropdown-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-dropdown:focus-within .dropdown-trigger,
.nav-dropdown:hover .dropdown-trigger,
.dropdown-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 28px;
  content: "";
}

.dropdown-trigger {
  gap: 7px;
}

.dropdown-trigger span {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:focus-within .dropdown-trigger span,
.nav-dropdown:hover .dropdown-trigger span,
.nav-dropdown.is-open .dropdown-trigger span {
  transform: translateY(3px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 12, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px) saturate(150%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 40px;
  border-radius: 12px;
  white-space: nowrap;
}

.plugins-page {
  padding: 150px 0 86px;
}

.plugin-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

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

.plugin-panel-head {
  display: flex;
  justify-content: flex-start;
}

.plugin-panel-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.plugin-panel-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.plugin-panel-tabs button:hover,
.plugin-panel-tabs button.is-active {
  border-color: rgba(108, 231, 255, 0.38);
  background: rgba(108, 231, 255, 0.12);
  color: var(--text);
}

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

.plugin-entry-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(11, 11, 16, 0.78);
}

.plugin-entry-card.is-hidden {
  display: none;
}

.plugin-entry-thumb {
  position: relative;
  flex: 1 1 58%;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}

.plugin-entry-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(3, 3, 5, 0.28));
  pointer-events: none;
}

.plugin-entry-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.plugin-entry-thumb.product-thumb {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 44% 38%, rgba(180, 108, 255, 0.3), transparent 42%),
    rgba(5, 7, 12, 0.78);
}

.plugin-entry-thumb.product-thumb img {
  width: min(74%, 240px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.44));
}

.plugin-entry-body {
  display: flex;
  flex: 0 0 42%;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 16px;
}

.plugin-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.plugin-entry-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.plugin-entry-card[data-plugin-type="free"] .plugin-entry-meta span:first-child {
  border-color: rgba(108, 231, 255, 0.32);
  color: #bcefff;
}

.plugin-entry-card[data-plugin-type="paid"] .plugin-entry-meta span:first-child {
  border-color: rgba(255, 211, 107, 0.32);
  color: #ffe3a2;
}

.plugin-entry-body h3 {
  margin: 0;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.12;
}

.plugin-entry-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.plugin-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.plugin-entry-actions .button {
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.plugin-detail-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 138px 0 72px;
}

.plugin-detail-shell {
  display: grid;
  gap: 18px;
}

.plugin-detail-overview,
.plugin-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(108, 231, 255, 0.1), rgba(180, 108, 255, 0.07) 46%, rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 15, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.plugin-detail-overview {
  display: grid;
  grid-template-columns: minmax(520px, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
}

.plugin-video-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
}

.plugin-video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.plugin-video-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(108, 231, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(3, 3, 5, 0.12), rgba(3, 3, 5, 0.72));
}

.plugin-video-play {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.plugin-video-play span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.plugin-detail-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 8px 6px 8px 0;
}

.plugin-detail-copy h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

.plugin-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.plugin-detail-chips,
.plugin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plugin-detail-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(108, 231, 255, 0.34);
  border-radius: 999px;
  color: #bff6ff;
  font-size: 12px;
  font-weight: 900;
}

.plugin-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 0.9fr) minmax(0, 0.95fr);
  align-items: center;
  margin-top: 2px;
}

.plugin-detail-status {
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(108, 231, 255, 0.24);
  border-radius: 14px;
  background: rgba(108, 231, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.plugin-detail-status.is-error {
  border-color: rgba(255, 111, 177, 0.36);
  background: rgba(255, 111, 177, 0.1);
  color: #ffd1e5;
}

.plugin-detail-copy p.plugin-legal-note {
  margin: -6px 0 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11.5px;
  line-height: 1.55;
}

.plugin-detail-copy p.plugin-legal-note a {
  color: rgba(105, 234, 255, 0.72);
  font-weight: 650;
}

.plugin-detail-copy p.plugin-legal-note a:hover {
  color: #fff;
}

.cart-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(108, 231, 255, 0.38);
  border-radius: 999px;
  background: rgba(108, 231, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 110ms ease, border-color 110ms ease, background 110ms ease, color 110ms ease;
}

.cart-icon-button::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: 1;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.35) rotate(0deg);
  background:
    radial-gradient(circle, rgba(108, 231, 255, 0.95) 0 2px, transparent 3px) 50% 0 / 7px 7px no-repeat,
    radial-gradient(circle, rgba(255, 111, 177, 0.92) 0 2px, transparent 3px) 100% 28% / 7px 7px no-repeat,
    radial-gradient(circle, rgba(141, 247, 189, 0.9) 0 2px, transparent 3px) 84% 88% / 7px 7px no-repeat,
    radial-gradient(circle, rgba(180, 108, 255, 0.9) 0 2px, transparent 3px) 18% 86% / 7px 7px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 1.5px, transparent 3px) 0 36% / 6px 6px no-repeat;
}

.cart-icon-button::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 20;
  width: max-content;
  max-width: 120px;
  padding: 6px 10px;
  border: 1px solid rgba(108, 231, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #08070b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 2px);
  transition: opacity 40ms ease, transform 40ms ease;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.cart-icon-button:hover::after,
.cart-icon-button:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-icon-button:hover,
.cart-icon-button.is-in-cart {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  color: #08070b;
  transform: translateY(-1px);
}

.cart-icon-button.is-bursting::before {
  animation: cart-particle-burst 260ms ease-out;
}

.cart-icon-button.is-failed {
  border-color: rgba(255, 117, 117, 0.78);
  background: rgba(255, 117, 117, 0.94);
  color: #08070b;
}

.cart-icon-button:disabled {
  cursor: pointer;
  opacity: 0.92;
}

@keyframes cart-particle-burst {
  0% {
    opacity: 0;
    transform: scale(0.28) rotate(0deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.8) rotate(22deg);
  }
}

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

.plugin-detail-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 220px;
  padding: 20px;
}

.plugin-detail-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.08;
}

.plugin-detail-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

.plugin-faq-card {
  grid-column: span 3;
}

.button.is-disabled,
.button:disabled {
  opacity: 0.62;
  pointer-events: none;
}

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

.plugin-meta-list div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

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

.plugin-meta-list dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 900;
}

.plugin-meta-list dd {
  color: var(--text);
  font-weight: 800;
}

.plugin-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

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

.plugin-faq-list div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.plugin-faq-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-action,
.account-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.header-action {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: #f7f4ff;
  color: #08070b;
  transform: translateY(-1px);
}

.account-action {
  min-width: 88px;
  padding: 0 18px;
  border: 1px solid rgba(108, 231, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(108, 231, 255, 0.95), rgba(247, 244, 255, 0.96));
  color: #050509;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(108, 231, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.account-action:hover,
.account-action.is-logged-in {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(180, 108, 255, 0.24);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: currentColor;
}

.section-band {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 86svh;
  padding-top: 136px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.text-nowrap {
  white-space: nowrap;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-width: 148px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: #f7f4ff;
  color: #07070a;
  box-shadow: 0 18px 46px rgba(180, 108, 255, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-logo-shell {
  position: absolute;
  top: 4%;
  left: 50%;
  width: min(460px, 82%);
  transform: translateX(-50%);
  opacity: 0.96;
  filter: drop-shadow(0 0 34px rgba(180, 108, 255, 0.5));
}

.preview-window {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 96%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    #101016;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hot);
}

.preview-topbar span:nth-child(2) {
  background: var(--amber);
}

.preview-topbar span:nth-child(3) {
  background: var(--green);
}

.preview-stage {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(108, 231, 255, 0.18) 46% 48%, transparent 48% 100%),
    linear-gradient(135deg, rgba(180, 108, 255, 0.2), rgba(255, 111, 177, 0.06) 40%, rgba(141, 247, 189, 0.12));
}

.frame-title {
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(108, 231, 255, 0.35);
}

.frame-subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.timeline {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.6fr 1fr;
  gap: 10px;
  padding: 18px 20px 22px;
}

.timeline i {
  display: block;
  height: 36px;
  border-radius: 8px;
  background: rgba(180, 108, 255, 0.6);
}

.timeline i:nth-child(2) {
  background: rgba(108, 231, 255, 0.55);
}

.timeline i:nth-child(3) {
  background: rgba(141, 247, 189, 0.5);
}

.timeline i:nth-child(4) {
  background: rgba(255, 211, 107, 0.52);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.stats-strip div {
  min-height: 124px;
  padding: 24px;
  background: rgba(13, 13, 18, 0.72);
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.stats-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.product-section,
.resource-section,
.workflow {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card,
.resource-feature,
.workflow-item,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(15, 15, 20, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.product-card {
  overflow: hidden;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 248px;
  padding: 24px;
  overflow: hidden;
  background: #15151b;
}

.product-media::after {
  position: absolute;
  inset: auto 22px 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.media-label {
  position: relative;
  z-index: 1;
  align-self: start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.kinetic-text {
  position: relative;
  z-index: 1;
  align-self: end;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.title-pack {
  background:
    linear-gradient(135deg, rgba(180, 108, 255, 0.4), rgba(255, 111, 177, 0.12)),
    #111117;
}

.scan-lines,
.scan-lines::before,
.scan-lines::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  content: "";
}

.scan-lines {
  inset: 52px 36px 38px;
}

.scan-lines::before {
  inset: 18px -18px -18px 18px;
}

.scan-lines::after {
  inset: -18px 18px 18px -18px;
}

.transition-pack {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(108, 231, 255, 0.32), rgba(141, 247, 189, 0.12)),
    #10131a;
}

.motion-bars {
  display: grid;
  gap: 14px;
}

.motion-bars i {
  display: block;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  transform: skewX(-18deg);
}

.motion-bars i:nth-child(1) {
  width: 72%;
}

.motion-bars i:nth-child(2) {
  width: 92%;
  background: var(--cyan);
}

.motion-bars i:nth-child(3) {
  width: 54%;
  background: var(--green);
}

.look-pack {
  background:
    linear-gradient(135deg, rgba(255, 211, 107, 0.28), rgba(255, 111, 177, 0.12)),
    #16130f;
}

.grade-board {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.grade-board b {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--cyan), var(--violet), var(--hot), var(--amber), var(--cyan));
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.18);
}

.product-content {
  padding: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(180, 108, 255, 0.34);
  border-radius: 999px;
  background: rgba(180, 108, 255, 0.12);
  color: #dec2ff;
  font-size: 12px;
  font-weight: 900;
}

.tag.green {
  border-color: rgba(141, 247, 189, 0.34);
  background: rgba(141, 247, 189, 0.1);
  color: #bcffd7;
}

.tag.amber {
  border-color: rgba(255, 211, 107, 0.34);
  background: rgba(255, 211, 107, 0.1);
  color: #ffe3a2;
}

.product-content h3,
.resource-feature h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-content p,
.resource-feature p,
.workflow-item p {
  color: var(--muted);
  line-height: 1.7;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.price-row span {
  font-size: 22px;
  font-weight: 900;
}

.price-row a,
.text-link {
  color: var(--cyan);
  font-weight: 900;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
}

.resource-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

.resource-screen {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(108, 231, 255, 0.14), transparent),
    #0b0c11;
}

.sheet-row {
  height: 38px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.sheet-row.strong {
  width: 84%;
  background: rgba(108, 231, 255, 0.36);
}

.sheet-row.short {
  width: 62%;
}

.folder-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.folder-tabs span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.resource-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.resource-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 231, 255, 0.38);
  background: rgba(108, 231, 255, 0.075);
}

.resource-list span {
  color: var(--dim);
  font-weight: 900;
}

.resource-list strong {
  font-size: 18px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workflow-item {
  min-height: 190px;
  padding: 26px;
}

.workflow-item span {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 900;
}

.contact-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.placeholder-page {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100svh;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.placeholder-panel {
  max-width: 760px;
}

.placeholder-panel h1 {
  margin-bottom: 18px;
}

.placeholder-panel p {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: clamp(28px, 6vw, 54px);
  background:
    linear-gradient(135deg, rgba(180, 108, 255, 0.16), rgba(108, 231, 255, 0.08)),
    rgba(17, 17, 23, 0.86);
}

.contact-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dim);
}

.site-footer .brand {
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
  gap: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-legal-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-record-placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  white-space: nowrap;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  min-height: 92svh;
  padding-top: 132px;
}

.home-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.8vw, 88px);
}

.home-lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.home-actions,
.plugin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 670px;
  margin: 34px 0 0;
}

.home-status div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.home-status dt,
.video-platform {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-status dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.home-hero-panel,
.plugin-card,
.wishlist-preview,
.roadmap-item,
.video-card,
.subscribe-panel,
.request-dialog {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(13, 13, 18, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(132%);
}

.home-hero-panel {
  overflow: hidden;
  border-radius: 28px;
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hot);
}

.console-topbar span:nth-child(2) {
  background: var(--amber);
}

.console-topbar span:nth-child(3) {
  background: var(--green);
}

.console-topbar strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(230px, 0.92fr);
  align-items: center;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
}

.console-focus h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.console-focus p,
.plugin-card p,
.wishlist-copy p,
.request-card p,
.roadmap-item p,
.video-heading p,
.video-card p,
.subscribe-panel p,
.request-dialog p {
  color: var(--muted);
  line-height: 1.72;
}

.mini-product-stage {
  --mini-product-x: -40px;
  --mini-product-scale: 1.13;
  --mini-product-y: 11px;

  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(108, 231, 255, 0.18), transparent 42%),
    radial-gradient(circle at 50% 38%, rgba(180, 108, 255, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.035);
  perspective: 900px;
}

.mini-product-stage img {
  position: relative;
  z-index: 1;
  width: min(108%, 390px);
  max-height: 330px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.5));
  transform: translate(var(--mini-product-x), var(--mini-product-y)) scale(var(--mini-product-scale)) rotateX(1deg);
}

.console-queue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.09);
}

.console-queue span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 14px;
  background: rgba(7, 7, 10, 0.58);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.plugin-section,
.wishlist-section,
.roadmap-section,
.video-section,
.subscribe-section {
  padding: 84px 0;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "featured featured"
    "utility blob";
  gap: 18px;
  align-items: stretch;
}

.plugin-card {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
}

.plugin-card-featured {
  grid-area: featured;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  min-height: 540px;
}

.plugin-card:nth-child(2) {
  grid-area: utility;
}

.plugin-card:nth-child(3) {
  grid-area: blob;
}

.plugin-product-media {
  --product-stage-x: -72px;
  --product-stage-y: 7px;
  --product-stage-scale: 1.1;
  --product-stage-rotate-x: 1deg;
  --product-stage-rotate-y: -4deg;
  --product-stage-width: 510px;
  --product-stage-max-height: 536px;
  --product-ring-y: -4%;
  --product-ring-x: 11%;
  --product-ring-width: 104%;
  --product-ring-height: 30%;
  --product-stage-design-size: 560;
  --product-stage-x-fluid: -12.857cqw;
  --product-stage-y-fluid: 1.25cqw;
  --product-stage-width-fluid: 91.071cqw;
  --product-stage-height-fluid: 95.714cqw;

  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(circle at 48% 38%, rgba(180, 108, 255, 0.22), transparent 28%),
    radial-gradient(ellipse at 48% 78%, rgba(108, 231, 255, 0.26), transparent 46%),
    rgba(5, 7, 12, 0.72);
}

.plugin-product-media::before {
  position: absolute;
  inset: 9% 8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(900px) rotateX(64deg) translateY(22%);
  transform-origin: 50% 100%;
  opacity: 0.62;
}

.product-stage {
  position: relative;
  display: grid;
  container-type: inline-size;
  width: min(560px, 100%);
  aspect-ratio: 1;
  place-items: center;
  perspective: 1000px;
}

.product-stage-scene {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--product-stage-width-fluid), 96cqw);
  height: min(var(--product-stage-height-fluid), 96cqw);
  place-items: center;
  transform:
    translate(var(--product-stage-x-fluid), var(--product-stage-y-fluid))
    scale(var(--product-stage-scale))
    rotateX(var(--product-stage-rotate-x))
    rotateY(var(--product-stage-rotate-y));
  transform-origin: 50% 58%;
}

.stage-glow,
.stage-ring {
  position: absolute;
  pointer-events: none;
}

.stage-glow {
  inset: 4% 2% 10%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 34%, rgba(180, 108, 255, 0.42), transparent 38%),
    radial-gradient(circle at 62% 60%, rgba(108, 231, 255, 0.22), transparent 34%);
  filter: blur(22px);
  opacity: 0.85;
}

.stage-ring {
  left: calc(50% + var(--product-ring-x));
  width: var(--product-ring-width);
  height: var(--product-ring-height);
  bottom: var(--product-ring-y);
  border: 1px solid rgba(108, 231, 255, 0.38);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(108, 231, 255, 0.12), transparent 68%);
  box-shadow:
    0 0 40px rgba(108, 231, 255, 0.18),
    inset 0 0 24px rgba(180, 108, 255, 0.16);
  transform: translateX(-50%) rotateX(68deg);
}

.product-stage-scene img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 46px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 28px rgba(180, 108, 255, 0.18));
}

.plugin-card-body {
  padding: clamp(22px, 4vw, 34px);
}

.plugin-card-featured .plugin-card-body {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.plugin-card:not(.plugin-card-featured) {
  min-height: 100%;
}

.plugin-card:not(.plugin-card-featured) .plugin-card-body {
  align-content: start;
}

.plugin-card h3,
.request-dialog h2 {
  margin: 14px 0 12px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.plugin-points {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.plugin-points li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.plugin-points li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
  vertical-align: 1px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-chip.live {
  border-color: rgba(141, 247, 189, 0.38);
  background: rgba(141, 247, 189, 0.1);
  color: #bcffd7;
}

.status-chip.building {
  border-color: rgba(108, 231, 255, 0.38);
  background: rgba(108, 231, 255, 0.1);
  color: #bcefff;
}

.status-chip.planning {
  border-color: rgba(255, 211, 107, 0.38);
  background: rgba(255, 211, 107, 0.1);
  color: #ffe3a2;
}

.muted-button {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: var(--dim);
  cursor: default;
}

.plugin-icon-board {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.utility-board {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.utility-board span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(108, 231, 255, 0.28), rgba(180, 108, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.utility-board span:nth-child(2),
.utility-board span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(141, 247, 189, 0.22), rgba(255, 111, 177, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.blob-board {
  display: block;
  min-height: 250px;
  padding: 0;
  aspect-ratio: 1.9 / 1;
  background:
    radial-gradient(circle at 25% 18%, rgba(141, 247, 189, 0.14), transparent 36%),
    radial-gradient(circle at 78% 22%, rgba(255, 111, 177, 0.14), transparent 38%),
    rgba(7, 8, 13, 0.92);
}

.blob-board img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-50%) scale(1.01);
  transition:
    filter 260ms ease,
    transform 360ms var(--ease);
}

.blob-board::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(7, 8, 13, 0.16)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.plugin-card:hover .blob-board img {
  filter: saturate(1.1) contrast(1.04);
  transform: translateY(-50%) scale(1.035);
}

.wishlist-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px) clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(108, 231, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 38%, rgba(180, 108, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(12, 22, 38, 0.82), rgba(48, 26, 80, 0.74));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.wishlist-section::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.wishlist-copy,
.wishlist-preview {
  position: relative;
  z-index: 1;
}

.wishlist-copy h2,
.video-heading h2,
.subscribe-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.wishlist-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(239, 246, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.85;
}

.wishlist-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.wishlist-preview {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(10, 20, 36, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(3, 8, 18, 0.32);
  backdrop-filter: blur(18px);
}

.request-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.request-card strong {
  display: block;
  margin: 18px 0 12px;
  color: #f7fbff;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.16;
}

.request-card p {
  max-width: 680px;
  color: rgba(235, 243, 255, 0.72);
  line-height: 1.78;
}

.request-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.request-flow span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72px;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.request-flow b {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
}

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

.roadmap-item {
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
}

.roadmap-item span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.roadmap-item strong {
  display: block;
  margin: 20px 0 12px;
  font-size: 24px;
}

.video-heading,
.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 440px;
}

.platform-links a,
.platform-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.platform-links a:hover {
  border-color: rgba(108, 231, 255, 0.4);
  color: var(--text);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  transform: translateY(0) scale(1);
  transform-origin: 50% 58%;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 720ms cubic-bezier(0.16, 1, 0.3, 1),
    background 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.video-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgba(108, 231, 255, 0.18), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(180, 108, 255, 0.2), transparent 30%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover,
.video-card:focus-visible {
  border-color: rgba(108, 231, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
    rgba(18, 16, 26, 0.78);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(108, 231, 255, 0.08),
    0 0 42px rgba(180, 108, 255, 0.12);
  transform: translateY(-8px) scale(1.012);
}

.video-card:active {
  transform: translateY(-3px) scale(0.992);
  transition-duration: 180ms;
}

.video-card:hover::after,
.video-card:focus-visible::after {
  opacity: 1;
}

.video-card > div:last-child {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.video-card h3 {
  min-height: 68px;
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.video-thumb {
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.outline-thumb {
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 111, 177, 0.28), rgba(141, 247, 189, 0.13)),
    #101014;
}

.workflow-thumb {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 100%),
    linear-gradient(135deg, rgba(255, 211, 107, 0.25), rgba(108, 231, 255, 0.12)),
    #111318;
  background-size: 42px 100%, auto, auto;
}

.subscribe-panel {
  align-items: start;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(180, 108, 255, 0.16), rgba(108, 231, 255, 0.08)),
    rgba(15, 15, 20, 0.78);
}

.subscribe-panel > div:first-child {
  align-self: start;
  padding-top: 2px;
}

.subscribe-form,
.request-form {
  display: grid;
  gap: 12px;
}

.subscribe-form {
  align-self: start;
  width: min(390px, 100%);
}

.subscribe-form label,
.request-form label {
  display: grid;
  gap: 7px;
}

.request-form label.has-email-suggestions {
  position: relative;
}

.subscribe-form label span,
.request-form label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.subscribe-form input,
.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 0 13px;
}

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

.subscribe-form input:focus,
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: rgba(108, 231, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(108, 231, 255, 0.12);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.form-status.is-error {
  color: #ff9a9a;
}

.auth-shell {
  min-height: 100vh;
  padding: 132px 20px 72px;
}

.auth-shell-centered {
  display: grid;
  place-items: center;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(108, 231, 255, 0.1), rgba(180, 108, 255, 0.12)),
    rgba(10, 10, 14, 0.74);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(132%);
}

.auth-card-head {
  margin-bottom: 22px;
}

.auth-card-head h1 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
}

.auth-card-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-view[hidden],
.auth-pane[hidden] {
  display: none;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.auth-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.auth-tabs button.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.auth-pane {
  margin-top: 20px;
}

.auth-form {
  display: grid;
  gap: 14px;
}

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

.auth-field.has-email-suggestions {
  position: relative;
}

.auth-field label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.auth-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font: inherit;
}

.auth-password-control {
  position: relative;
}

.auth-password-control input {
  padding-right: 52px;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
  background: rgba(108, 231, 255, 0.14);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(108, 231, 255, 0.1);
  outline: none;
}

.auth-password-toggle span {
  position: relative;
  width: 18px;
  height: 11px;
  border: 1.8px solid currentColor;
  border-radius: 999px 999px 820px 820px;
}

.auth-password-toggle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.auth-password-toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-42deg) scaleX(0.86);
  transition: opacity 160ms ease;
}

.auth-password-toggle.is-visible {
  background: rgba(108, 231, 255, 0.17);
  color: #b9f5ff;
}

.auth-password-toggle.is-visible span::after {
  opacity: 1;
}

.auth-field input:focus {
  border-color: rgba(108, 231, 255, 0.64);
  box-shadow: 0 0 0 3px rgba(108, 231, 255, 0.14);
}

.email-suggest-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  max-height: 232px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(108, 231, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(9, 9, 14, 0.94);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(132%);
}

.email-suggest-list[hidden] {
  display: none;
}

.email-suggest-list::-webkit-scrollbar {
  width: 6px;
}

.email-suggest-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(108, 231, 255, 0.36);
}

.email-suggest-option {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-align: left;
}

.email-suggest-option:hover,
.email-suggest-option[aria-selected="true"] {
  background: rgba(108, 231, 255, 0.14);
  color: var(--text);
}

.auth-inline-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

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

.auth-code-control .button {
  min-height: 48px;
  white-space: nowrap;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-top: 2px;
}

.auth-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-card-footer button,
.auth-logout-link {
  border: 0;
  background: transparent;
  color: rgba(108, 231, 255, 0.88);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 0;
}

.auth-card-footer button:hover,
.auth-logout-link:hover {
  color: var(--text);
}

.auth-status,
.auth-dev-code,
.auth-session {
  margin-top: 16px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  line-height: 1.7;
}

.auth-status.is-error {
  border-color: rgba(255, 111, 177, 0.42);
  color: #ffb6d8;
}

.auth-status-line {
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.auth-status-line.is-error {
  color: #ffb6d8;
}

.auth-session strong,
.auth-dev-code strong {
  color: var(--text);
}

.auth-logout-link {
  display: inline-flex;
  margin-top: 12px;
}

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

.auth-register-success {
  position: absolute;
  inset: auto 28px 26px;
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(96, 255, 186, 0.32);
  border-radius: 999px;
  background: rgba(96, 255, 186, 0.13);
  color: #c9ffe5;
  font-size: 16px;
  font-weight: 950;
  pointer-events: none;
}

.auth-register-success[hidden] {
  display: none;
}

.auth-register-success.is-playing {
  animation: auth-success-pop 760ms cubic-bezier(0.2, 1.22, 0.28, 1) both;
}

@keyframes auth-success-pop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1);
  }
}

.account-shell {
  display: grid;
  gap: 24px;
  padding: 132px 0 72px;
}

.account-shell > .section-band {
  min-width: 0;
  max-width: calc(100vw - 24px);
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.account-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.account-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 21px);
  line-height: 1.78;
}

.account-status-card,
.account-panel,
.account-plugin-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(140deg, rgba(108, 231, 255, 0.1), rgba(180, 108, 255, 0.08)),
    rgba(10, 10, 14, 0.58);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.account-status-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
}

.account-status-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.account-status-card p {
  color: var(--muted);
  font-size: 15px;
}

.account-status-card p.is-error {
  color: #ffb6d8;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(108, 231, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.account-pill.is-error {
  border-color: rgba(255, 111, 177, 0.42);
  color: #ffb6d8;
}

.account-order-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.account-inline-button,
.account-row-button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #08070b;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.account-inline-button {
  padding: 0 14px;
}

.account-row-button {
  padding: 0 11px;
}

.account-inline-button:hover,
.account-row-button:hover {
  transform: translateY(-1px);
}

.account-inline-button:disabled,
.account-row-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.account-inline-status {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.account-inline-status.is-error {
  color: #ffb7b7;
}

.account-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(141, 247, 189, 0.56);
  border-radius: 999px;
  background: rgba(141, 247, 189, 0.16);
  color: #dfffee;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.account-download-link:hover {
  background: rgba(141, 247, 189, 0.28);
  color: #fff;
}

.account-panel {
  padding: clamp(20px, 4vw, 32px);
  border-radius: 24px;
}

.account-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.account-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.account-list-wrap {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(247, 244, 255, 0.94);
  color: #090910;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.account-list {
  display: grid;
  min-width: 0;
}

.account-list-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) minmax(110px, 0.72fr) minmax(110px, 0.72fr) minmax(130px, 0.72fr);
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  border-top: 1px solid rgba(9, 9, 16, 0.09);
  font-size: 15px;
}

.account-list-row:first-child {
  border-top: 0;
}

.account-list-row[hidden] {
  display: none !important;
}

.account-list-head {
  min-height: 44px;
  background: rgba(9, 9, 16, 0.065);
  color: rgba(9, 9, 16, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.account-list-row strong {
  font-size: 16px;
}

.account-order-row strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.account-list-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(9, 9, 16, 0.72);
}

.account-list-row a {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #08070b;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.account-list-row.is-muted {
  background: rgba(9, 9, 16, 0.035);
}

.account-order-list .account-list-row {
  grid-template-columns:
    minmax(168px, 1.15fr)
    minmax(120px, 0.9fr)
    minmax(82px, 0.58fr)
    minmax(92px, 0.62fr)
    minmax(108px, 0.72fr)
    minmax(148px, 0.9fr);
}

.account-cart-list .account-list-row {
  grid-template-columns:
    minmax(180px, 1.25fr)
    minmax(90px, 0.6fr)
    minmax(80px, 0.5fr)
    minmax(110px, 0.65fr);
}

.account-status-text {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.account-status-text.is-pending {
  background: rgba(255, 211, 107, 0.18);
  color: #8c5c00;
}

.account-status-text.is-paid {
  background: rgba(38, 168, 94, 0.16);
  color: #086a34;
}

.account-status-text.is-cancelled,
.account-status-text.is-refunded {
  background: rgba(9, 9, 16, 0.08);
  color: rgba(9, 9, 16, 0.62);
}

.account-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.account-plugin-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 250px;
  padding: 20px;
  border-radius: 20px;
}

.account-plugin-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.account-plugin-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.account-plugin-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 4px;
}

.account-plugin-card.is-locked {
  background:
    linear-gradient(140deg, rgba(255, 211, 107, 0.09), rgba(180, 108, 255, 0.08)),
    rgba(10, 10, 14, 0.58);
}

.legal-page {
  display: grid;
  gap: 24px;
  padding: 132px 0 56px;
}

.legal-hero {
  display: grid;
  gap: 14px;
  padding-top: clamp(28px, 5vw, 52px);
  padding-bottom: clamp(24px, 5vw, 46px);
}

.legal-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.75;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 10, 14, 0.58);
  backdrop-filter: blur(18px) saturate(130%);
}

.legal-nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 900;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: rgba(108, 231, 255, 0.12);
  color: #fff;
}

.legal-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(108, 231, 255, 0.08), rgba(180, 108, 255, 0.07)),
    rgba(10, 10, 14, 0.62);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.legal-card h2:not(:first-child) {
  margin-top: 34px;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.86;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-site-footer {
  margin-bottom: 24px;
}

.admin-shell {
  display: grid;
  gap: 24px;
  padding: 132px 0 72px;
}

.admin-shell > .section-band {
  min-width: 0;
  max-width: calc(100vw - 24px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.admin-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.78;
}

.admin-status-card,
.admin-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(140deg, rgba(108, 231, 255, 0.1), rgba(180, 108, 255, 0.08)),
    rgba(10, 10, 14, 0.58);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.admin-status-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
}

.admin-status-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.admin-status-card p {
  color: var(--muted);
  font-size: 15px;
}

.admin-status-card p.is-error {
  color: #ffb6d8;
}

.admin-panel {
  padding: clamp(20px, 4vw, 32px);
  border-radius: 24px;
}

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

.admin-metric {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.admin-metric strong {
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.admin-list-wrap {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(247, 244, 255, 0.96);
  color: #090910;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.admin-list {
  display: grid;
  min-width: 720px;
}

.admin-list-row {
  display: grid;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  border-top: 1px solid rgba(9, 9, 16, 0.09);
  font-size: 14px;
}

.admin-list-row:first-child {
  border-top: 0;
}

.admin-list-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.admin-list-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(9, 9, 16, 0.72);
}

.admin-list-head {
  min-height: 44px;
  background: rgba(9, 9, 16, 0.065);
  color: rgba(9, 9, 16, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.admin-list-row.is-muted {
  background: rgba(9, 9, 16, 0.035);
}

.admin-empty-cell {
  grid-column: 1 / span var(--admin-empty-columns, 4);
}

.admin-users-list .admin-list-row {
  grid-template-columns:
    minmax(180px, 1.25fr)
    minmax(100px, 0.6fr)
    minmax(100px, 0.6fr)
    minmax(132px, 0.8fr);
}

.admin-orders-list .admin-list-row {
  grid-template-columns:
    minmax(168px, 1.05fr)
    minmax(150px, 0.9fr)
    minmax(138px, 0.85fr)
    minmax(80px, 0.48fr)
    minmax(86px, 0.52fr)
    minmax(116px, 0.7fr);
}

.admin-tokens-list .admin-list-row {
  grid-template-columns:
    minmax(100px, 0.6fr)
    minmax(150px, 0.9fr)
    minmax(138px, 0.85fr)
    minmax(76px, 0.46fr)
    minmax(76px, 0.46fr)
    minmax(116px, 0.7fr);
}

.admin-files-list .admin-list-row {
  grid-template-columns:
    minmax(150px, 0.9fr)
    minmax(112px, 0.66fr)
    minmax(124px, 0.74fr)
    minmax(88px, 0.52fr)
    minmax(120px, 0.72fr)
    minmax(220px, 1.25fr);
}

.admin-plugin-requests-list .admin-list-row {
  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(170px, 1fr)
    minmax(132px, 0.72fr)
    minmax(190px, 0.92fr)
    minmax(96px, 0.5fr)
    minmax(116px, 0.62fr);
}

.admin-subscriptions-list .admin-list-row {
  grid-template-columns:
    minmax(190px, 1fr)
    minmax(220px, 1.2fr)
    minmax(160px, 0.86fr)
    minmax(88px, 0.5fr)
    minmax(116px, 0.64fr);
}

.request-modal[hidden] {
  display: none;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.request-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(24px, 5vw, 38px);
  border-radius: 28px;
}

.request-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transform-origin: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.request-close::before,
.request-close::after {
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

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

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

.request-close:hover,
.request-close:focus-visible {
  border-color: rgba(108, 231, 255, 0.42);
  background: rgba(108, 231, 255, 0.14);
  box-shadow:
    0 0 0 4px rgba(108, 231, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.24);
  color: #dffbff;
  outline: none;
  transform: scale(1.06) rotate(6deg);
}

.request-close:active {
  transform: scale(0.92) rotate(0deg);
}

.paid-checkout-modal[hidden],
.paid-checkout-step[hidden],
.paid-checkout-download-link[hidden] {
  display: none;
}

.paid-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
}

.paid-checkout-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.paid-checkout-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 24px;
}

.paid-checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.paid-checkout-dialog h2,
.paid-payment-placeholder h3 {
  margin-bottom: 14px;
  letter-spacing: 0;
}

.paid-checkout-dialog h2 {
  max-width: calc(100% - 46px);
  font-size: clamp(28px, 5vw, 44px);
}

.paid-payment-placeholder h3 {
  font-size: clamp(24px, 4vw, 34px);
}

.paid-checkout-step {
  display: grid;
  gap: 16px;
}

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

.paid-checkout-loading,
.paid-checkout-empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.paid-checkout-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.paid-checkout-item-main {
  min-width: 0;
}

.paid-checkout-item-main strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 16px;
}

.paid-checkout-item-meta {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.paid-checkout-item-remove {
  min-width: 64px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.paid-checkout-item-remove:hover,
.paid-checkout-item-remove:focus-visible {
  border-color: rgba(255, 211, 107, 0.42);
  color: #fff;
}

.paid-checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(108, 231, 255, 0.24);
  border-radius: 16px;
  background: rgba(108, 231, 255, 0.08);
}

.paid-checkout-total span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.paid-checkout-total strong {
  color: #fff;
  font-size: 20px;
}

.paid-checkout-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(108, 231, 255, 0.24);
  border-radius: 14px;
  background: rgba(108, 231, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.paid-checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.paid-checkout-actions .button {
  min-width: 128px;
}

.paid-payment-placeholder {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 211, 107, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 211, 107, 0.12), rgba(180, 108, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.paid-payment-placeholder.is-success {
  border-color: rgba(141, 247, 189, 0.34);
  background:
    linear-gradient(135deg, rgba(141, 247, 189, 0.13), rgba(108, 231, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.paid-payment-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.paid-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.paid-payment-methods button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.paid-payment-methods button.is-active {
  border-color: rgba(108, 231, 255, 0.56);
  background: rgba(108, 231, 255, 0.15);
  color: #dffbff;
}

.paid-payment-methods button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.paid-poll-status {
  color: rgba(108, 231, 255, 0.8);
}

/* 表达式查找表页面 */
.expression-page {
  padding: 150px 0 96px;
}

.expression-shell {
  display: grid;
  gap: 28px;
}

.expression-intro {
  max-width: 780px;
}

.expression-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 92px);
}

.expression-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.expression-tools {
  display: grid;
  gap: 16px;
}

.expression-search {
  display: grid;
  gap: 8px;
  max-width: 560px;
}

.expression-search span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.expression-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 12, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
}

.expression-search input:focus {
  border-color: rgba(108, 231, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(108, 231, 255, 0.12);
}

.expression-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expression-filter button,
.expression-card-top button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.expression-filter button {
  padding: 0 12px;
}

.expression-filter button:hover,
.expression-filter button.is-active {
  border-color: rgba(108, 231, 255, 0.42);
  background: rgba(108, 231, 255, 0.13);
  color: var(--text);
}

.expression-empty {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.expression-sections {
  display: grid;
  gap: 36px;
}

.expression-group {
  display: grid;
  gap: 16px;
}

.expression-group.is-hidden {
  display: none;
}

.expression-group-head {
  display: flex;
  align-items: end;
  gap: 12px;
}

.expression-group-head span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.expression-group-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.06;
}

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

.expression-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
  min-height: 232px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(108, 231, 255, 0.085), rgba(180, 108, 255, 0.05) 42%, rgba(255, 255, 255, 0.028)),
    rgba(10, 10, 15, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.expression-card.is-hidden {
  display: none;
}

.expression-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.expression-card-top button {
  flex: 0 0 auto;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.expression-card-top button:hover,
.expression-card-top button.is-copied {
  border-color: rgba(141, 247, 189, 0.42);
  background: rgba(141, 247, 189, 0.12);
  color: var(--text);
  transform: translateY(-1px);
}

.expression-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(108, 231, 255, 0.35);
  border-radius: 999px;
  color: #bff6ff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.expression-card pre {
  min-width: 0;
  margin: 0;
  padding: 14px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
}

.expression-card code {
  color: #f6f4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre;
}

.expression-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .video-card.reveal {
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 720ms cubic-bezier(0.16, 1, 0.3, 1),
    background 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .video-card.reveal.is-visible:hover,
.js .video-card.reveal.is-visible:focus-visible {
  transform: translateY(-8px) scale(1.018);
}

.js .video-card.reveal.is-visible:active {
  transform: translateY(-3px) scale(0.994);
  transition-duration: 180ms;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid,
  .home-hero,
  .product-grid,
  .plugin-grid,
  .plugin-card-featured,
  .plugin-detail-overview,
  .plugin-detail-grid,
  .wishlist-section,
  .resource-layout,
  .workflow-grid,
  .expression-grid,
  .roadmap-grid,
  .video-heading,
  .video-grid,
  .subscribe-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .plugin-grid {
    grid-template-areas:
      "featured"
      "utility"
      "blob";
  }

  .home-hero {
    min-height: auto;
    padding-top: 136px;
  }

  .console-focus {
    grid-template-columns: 1fr;
  }

  .mini-product-stage {
    min-height: 360px;
  }

  .mini-product-stage img {
    max-height: 360px;
  }

  .plugin-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .plugin-product-media {
    min-height: 430px;
  }

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

  .hero-visual {
    min-height: 460px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .resource-feature {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .plugin-faq-card {
    grid-column: auto;
  }

  .plugin-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: space-between;
    width: calc(100% - 24px);
    padding: 10px 12px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(7, 7, 10, 0.76);
    backdrop-filter: blur(22px) saturate(150%);
  }

  .site-header.is-elevated {
    width: calc(100% - 24px);
  }

  .nav-links,
  .header-contact-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
      rgba(7, 7, 10, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(22px) saturate(150%);
  }

  .nav-links.is-open .nav-link {
    justify-content: space-between;
    min-height: 44px;
    padding: 0 14px;
  }

  .nav-links.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px) scale(0.98);
    visibility: hidden;
  }

  .nav-links.is-open .nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links.is-open .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 6px;
    padding: 6px;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-links.is-open .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links.is-open .dropdown-menu a {
    min-height: 40px;
  }

  .plugin-panel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plugin-panel-tabs {
    justify-content: flex-start;
  }

  .plugin-panel-grid {
    grid-template-columns: 1fr;
  }

  .plugin-entry-card {
    aspect-ratio: 1.08 / 1;
  }

  .plugin-video-frame {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .plugin-detail-page {
    padding-top: 122px;
  }

  .plugin-detail-card {
    border-radius: 20px;
    padding: 18px;
  }

  .plugin-detail-overview {
    border-radius: 20px;
    padding: 14px;
  }

  .plugin-detail-actions,
  .plugin-meta-list {
    grid-template-columns: 1fr;
  }

  .plugin-meta-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .expression-page {
    padding-top: 122px;
  }

  .expression-tools {
    gap: 12px;
  }

  .expression-filter {
    flex-wrap: nowrap;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
  }

  .expression-filter button {
    flex: 0 0 auto;
  }

  .expression-card {
    min-height: 0;
    padding: 14px;
  }

  .expression-card-top {
    align-items: flex-start;
  }

  .expression-card-top button {
    min-height: 32px;
    font-size: 12px;
  }


  .site-header {
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 10px;
    padding-left: 12px;
  }

  .site-header.is-elevated {
    width: calc(100% - 20px);
  }

  .brand img {
    width: 46px;
    height: 30px;
  }

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

  .section-band,
  .stats-strip,
  .contact-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    padding-right: 4px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .preview-window {
    width: 100%;
    border-radius: 22px;
  }

  .preview-stage {
    min-height: 210px;
    padding: 22px;
  }

  .hero-logo-shell {
    width: 88%;
  }

  .hero-actions,
  .home-actions,
  .plugin-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .product-section,
  .plugin-section,
  .wishlist-section,
  .roadmap-section,
  .video-section,
  .subscribe-section,
  .resource-section,
  .workflow {
    padding: 56px 0;
  }

  .home-hero {
    gap: 18px;
    padding-top: 122px;
  }

  .home-hero-copy h1 {
    margin-bottom: 14px;
    font-size: 42px;
  }

  .home-lede {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.62;
  }

  .home-actions {
    gap: 10px;
  }

  .home-status div {
    min-height: auto;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .home-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .home-status dt {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .home-status dd {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.18;
    white-space: nowrap;
  }

  .console-focus,
  .plugin-card-body,
  .subscribe-panel,
  .wishlist-preview {
    padding: 20px;
  }

  .home-hero-panel {
    border-radius: 22px;
  }

  .console-topbar {
    min-height: 42px;
    padding: 0 14px;
  }

  .console-topbar strong {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .console-focus {
    gap: 10px;
    padding: 16px;
  }

  .console-focus h2 {
    margin: 10px 0 8px;
    font-size: 30px;
  }

  .console-focus p {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .console-queue span {
    min-height: 46px;
    padding: 8px 6px;
    font-size: 11px;
    white-space: nowrap;
  }

  .request-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .request-flow span {
    min-height: 46px;
    padding: 8px 4px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .request-flow b {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .plugin-product-media {
    min-height: 330px;
    padding: 16px;
  }

  .product-stage {
    --product-stage-x: -40px;
    --product-stage-y: 12px;
    --product-stage-x-fluid: -11.111cqw;
    --product-stage-y-fluid: 3.333cqw;
    --product-stage-width: 330px;
    --product-stage-max-height: 350px;
    --product-stage-width-fluid: 91.667cqw;
    --product-stage-height-fluid: 97.222cqw;
    --product-ring-y: 0%;
    --product-ring-x: 11%;

    width: min(360px, 100%);
    min-height: 0;
  }

  .product-stage-scene {
    width: min(var(--product-stage-width-fluid), 94cqw);
    height: min(var(--product-stage-height-fluid), 94cqw);
  }

  .mini-product-stage {
    --mini-product-x: -30px;
    --mini-product-y: 12px;
    --mini-product-scale: 1.08;

    min-height: 220px;
  }

  .mini-product-stage img {
    max-height: 238px;
  }

  .plugin-icon-board {
    min-height: 190px;
  }

  .wishlist-section {
    gap: 18px;
    overflow: hidden;
    padding: 34px 16px;
    border-radius: 24px;
  }

  .wishlist-copy h2 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1.08;
  }

  .wishlist-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .wishlist-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .wishlist-preview {
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .request-card {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .request-card strong {
    margin: 12px 0 8px;
    font-size: 25px;
    line-height: 1.12;
  }

  .request-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .plugin-entry-card {
    aspect-ratio: 0.92 / 1;
  }

  .plugin-entry-thumb {
    flex-basis: 56%;
  }

  .plugin-entry-body {
    flex-basis: 44%;
    padding: 15px;
  }

  .plugin-entry-body p {
    -webkit-line-clamp: 1;
  }

  .plugin-entry-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-height: auto;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .roadmap-section {
    padding: 34px 0;
  }

  .roadmap-section .section-heading {
    margin-bottom: 14px;
  }

  .roadmap-section .section-heading h2 {
    margin-bottom: 8px;
    font-size: 34px;
  }

  .roadmap-section .section-heading p:not(.eyebrow) {
    display: none;
  }

  .roadmap-grid {
    gap: 8px;
  }

  .roadmap-item span {
    font-size: 12px;
  }

  .roadmap-item strong {
    margin: 0;
    font-size: 16px;
  }

  .roadmap-item p {
    display: none;
  }

  .video-card h3 {
    min-height: 0;
  }

  .subscribe-form {
    width: 100%;
  }

  .product-media {
    min-height: 220px;
  }

  .resource-list a {
    grid-template-columns: 38px 1fr;
    padding: 0 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 26px 0 34px;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .account-hero {
    grid-template-columns: 1fr;
  }

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

  .legal-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .auth-shell {
    padding: 108px 14px 42px;
  }

  .auth-card {
    width: min(100%, 430px);
    padding: 22px;
  }

  .auth-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-code-control {
    grid-template-columns: 1fr;
  }

  .auth-register-success {
    inset: auto 22px 20px;
  }

  .account-shell {
    padding-top: 112px;
  }

  .legal-page {
    padding-top: 112px;
  }

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

  .legal-card {
    border-radius: 20px;
  }

  .footer-legal-links {
    justify-content: center;
    gap: 10px 16px;
  }

  .footer-record-placeholder {
    white-space: normal;
  }

  .admin-shell {
    padding-top: 112px;
  }

  .account-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .account-list-row,
  .account-list-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    padding: 14px;
  }

  .account-list-head {
    display: none;
  }

  .account-plugin-grid {
    grid-template-columns: 1fr;
  }

  .account-plugin-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
