:root {
  --bg: #07090d;
  --bg-soft: #0b0f15;
  --surface: rgba(18, 23, 31, 0.86);
  --surface-solid: #12171f;
  --surface-2: #171d27;
  --surface-3: #1c2430;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f5f8f7;
  --muted: #98a2af;
  --muted-2: #8b96a4;
  --green: #45f882;
  --green-2: #22c96a;
  --green-soft: rgba(69, 248, 130, 0.12);
  --cyan: #57d9ff;
  --amber: #ffca63;
  --red: #ff6b7a;
  --purple: #a78bfa;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shell: 1220px;
  --header: 76px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

/* Referral launch announcement */
.referral-announcement {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(69, 248, 130, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(69, 248, 130, .08), transparent 32%),
    #0c1218;
}

.referral-announcement-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, .25);
  border-radius: 15px;
  background: rgba(69, 248, 130, .08);
  color: #49d67f;
}

.referral-announcement-icon svg {
  width: 25px;
  height: 25px;
}

.referral-announcement h2 {
  margin: 5px 0 4px;
  color: #f2f6f4;
  font: 700 23px/1.2 "Space Grotesk", sans-serif;
}

.referral-announcement p {
  max-width: 830px;
  margin: 0;
  color: #9facb5;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .referral-announcement {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .referral-announcement-icon {
    width: 44px;
    height: 44px;
  }

  .referral-announcement .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .gallery-overview {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .gallery-overview-orb {
    display: none;
  }

  .gallery-mini-list {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% -25%, rgba(69, 248, 130, 0.11), transparent 36rem),
    linear-gradient(180deg, #080b10 0%, var(--bg) 46%, #090c11 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  border: 0;
}

::selection {
  background: var(--green);
  color: #071009;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #080b10;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #080b10;
  border-radius: 999px;
  background: #303945;
}

::-webkit-scrollbar-thumb:hover {
  background: #45505f;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: #071009;
  font-weight: 800;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ambient,
.noise {
  position: fixed;
  pointer-events: none;
}

.ambient {
  z-index: -3;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.ambient--one {
  top: 12vh;
  right: -20vw;
  background: #45f882;
}

.ambient--two {
  bottom: 2vh;
  left: -22vw;
  background: #1b70ff;
}

.noise {
  inset: 0;
  z-index: -2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.96);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 13, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, 0.35);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(69, 248, 130, 0.2), rgba(69, 248, 130, 0.05));
  box-shadow: inset 0 0 22px rgba(69, 248, 130, 0.05);
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.brand-copy strong span {
  color: var(--green);
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.desktop-nav a.is-active::after {
  position: absolute;
  right: 13px;
  bottom: 3px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.desktop-nav .admin-nav-link {
  border: 1px solid rgba(255, 202, 99, .2);
  background: rgba(255, 202, 99, .055);
  color: var(--amber);
}

.desktop-nav .admin-nav-link:hover {
  background: rgba(255, 202, 99, .11);
  color: #ffe0a3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  transition: transform 160ms var(--ease), border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.account-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(69, 248, 130, 0.28);
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms var(--ease), background 160ms ease;
}

.account-button:hover {
  transform: translateY(-1px);
  background: rgba(69, 248, 130, 0.18);
}

.header-funds-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: #07110b;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(69, 248, 130, 0.18);
  transition: transform 160ms var(--ease), box-shadow 160ms ease, background 160ms ease;
}

.header-funds-button:hover {
  transform: translateY(-2px);
  background: #69ff9e;
  box-shadow: 0 14px 34px rgba(69, 248, 130, 0.28);
}

.header-funds-button .icon {
  width: 16px;
}

.mobile-menu-toggle {
  display: none;
}

.menu-close-icon {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.preview-bar {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 202, 99, 0.16);
  background: linear-gradient(90deg, rgba(255, 202, 99, 0.08), rgba(69, 248, 130, 0.06));
  color: #d9d6ca;
  font-size: 12px;
}

.preview-bar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 16px;
}

.preview-bar b {
  color: var(--amber);
  letter-spacing: 0.08em;
}

.preview-bar a {
  color: var(--green);
  font-weight: 700;
}

.mobile-drawer {
  position: fixed;
  inset: calc(var(--header) + 34px) 0 auto;
  z-index: 95;
  display: none;
  max-height: calc(100dvh - var(--header) - 34px);
  overflow: auto;
  padding: 14px 20px 26px;
  transform: translateY(-110%);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.98);
  transition: transform 240ms var(--ease);
}

.mobile-drawer.is-open {
  transform: translateY(0);
}

.mobile-drawer nav {
  display: grid;
  gap: 4px;
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

main {
  min-height: 70vh;
}

.page-enter {
  animation: page-in 520ms var(--ease) both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title,
.page-title,
.section-title,
.product-title,
.account-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.display-title {
  max-width: 720px;
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 700;
}

.display-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 248, 247, 0.55);
}

.display-title .accent {
  color: var(--green);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #b6c0ca;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms var(--ease), box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.btn--primary {
  background: var(--green);
  box-shadow: 0 13px 40px rgba(69, 248, 130, 0.16);
  color: #061108;
}

.btn--primary:hover {
  box-shadow: 0 16px 46px rgba(69, 248, 130, 0.25);
}

.btn--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
}

.btn--ghost {
  border-color: rgba(69, 248, 130, 0.22);
  background: var(--green-soft);
  color: var(--green);
}

.btn--small {
  min-height: 40px;
  padding-inline: 14px;
  border-radius: 10px;
  font-size: 12px;
}

.btn--wide {
  width: 100%;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, .93fr);
  align-items: center;
  min-height: 720px;
  gap: 52px;
  padding-block: 86px 72px;
}

.home-hero::before {
  position: absolute;
  top: 80px;
  left: -100px;
  z-index: -1;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.012),
    0 0 0 120px rgba(255, 255, 255, 0.008);
  content: "";
}

.hero-left .button-row {
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof .icon {
  width: 17px;
  color: var(--green);
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: 490px;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.hero-stage:focus-visible::after {
  position: absolute;
  inset: 12px 0 52px 36px;
  z-index: 7;
  border: 2px solid rgba(69, 248, 130, 0.78);
  border-radius: 26px;
  pointer-events: none;
  content: "";
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-stage::before {
  position: absolute;
  inset: 8% -8% 0 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 248, 130, 0.16), transparent 62%);
  filter: blur(12px);
  content: "";
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  transform-origin: center;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 6, 9, 0.92));
  content: "";
}

.hero-card--main {
  inset: 24px 2px 54px 52px;
  z-index: 3;
}

.hero-card--back-one {
  inset: 82px 70px 16px 0;
  z-index: 1;
  transform: rotate(-7deg);
  opacity: 0.62;
}

.hero-card--back-two {
  inset: 8px -12px 100px 124px;
  z-index: 2;
  transform: rotate(7deg);
  opacity: 0.76;
}

.hero-slide {
  inset: 52px 62px 42px 18px;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.88);
  transition:
    inset 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
  will-change: inset, opacity, transform;
}

.hero-slide.is-active {
  inset: 24px 2px 62px 52px;
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotate(0) scale(1);
}

.hero-slide.is-prev {
  inset: 82px 72px 18px 0;
  z-index: 1;
  opacity: 0.45;
  transform: translateX(-2%) rotate(-7deg) scale(0.96);
  filter: saturate(0.72) brightness(0.68);
}

.hero-slide.is-next {
  inset: 8px -12px 104px 124px;
  z-index: 2;
  opacity: 0.68;
  transform: translateX(2%) rotate(7deg) scale(0.98);
  filter: saturate(0.82) brightness(0.82);
}

.hero-slide.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translateX(8%) scale(0.86);
}

.hero-stage.is-dragging,
.hero-stage.is-dragging .hero-slide {
  cursor: grabbing;
}

.hero-card-badges {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-card-badges .status-pill,
.hero-card-badges .tier-pill {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-slide:not(.is-active) .hero-card-copy,
.hero-slide:not(.is-active) .hero-card-badges {
  opacity: 0;
}

.hero-slide .hero-card-copy,
.hero-slide .hero-card-badges {
  transition: opacity 280ms ease 120ms;
}

.hero-slide.is-active:hover {
  border-color: rgba(var(--hero-rgb), 0.54);
  box-shadow: 0 24px 80px rgba(var(--hero-rgb), 0.16), var(--shadow);
}

.hero-carousel-arrow {
  position: absolute;
  top: 46%;
  z-index: 8;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f8fbff;
  background: rgba(8, 12, 17, 0.84);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  border-color: rgba(69, 248, 130, 0.62);
  color: #07110a;
  background: var(--green);
  outline: none;
}

.hero-carousel-arrow .icon {
  width: 19px;
}

.hero-carousel-arrow--prev {
  left: 24px;
}

.hero-carousel-arrow--prev:hover,
.hero-carousel-arrow--prev:focus-visible {
  transform: translateX(-3px);
}

.hero-carousel-arrow--prev .icon {
  transform: rotate(180deg);
}

.hero-carousel-arrow--next {
  right: -22px;
}

.hero-carousel-arrow--next:hover,
.hero-carousel-arrow--next:focus-visible {
  transform: translateX(3px);
}

.hero-carousel-footer {
  position: absolute;
  bottom: 8px;
  left: 54px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
}

.hero-carousel-footer > small {
  font-size: 11px;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-carousel-dots button[aria-current="true"] {
  width: 24px;
  background: var(--green);
}

.hero-carousel-dots button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.hero-carousel-count {
  color: #dbe2e9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card-copy {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  z-index: 2;
}

.hero-card-copy small {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-copy h2 {
  margin: 7px 0 3px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.hero-card-copy p {
  margin: 0;
  color: #aab3bd;
  font-size: 12px;
}

.floating-status {
  position: absolute;
  right: -12px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
  padding: 13px 15px;
  border: 1px solid rgba(69, 248, 130, 0.24);
  border-radius: 14px;
  background: rgba(11, 15, 21, 0.9);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.floating-status .status-dot {
  width: 10px;
  height: 10px;
}

.floating-status strong,
.floating-status small {
  display: block;
}

.floating-status strong {
  font-size: 12px;
}

.floating-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.live-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, .8fr);
  gap: 12px;
  margin-top: -34px;
  margin-bottom: 92px;
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 248, 130, .055), transparent 44%),
    linear-gradient(145deg, rgba(19, 25, 32, .93), rgba(10, 15, 21, .94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.live-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 248, 130, .24);
  background: linear-gradient(145deg, rgba(22, 31, 37, .97), rgba(10, 17, 22, .97));
}

.live-stat .icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 11px;
  border: 1px solid rgba(69, 248, 130, .2);
  border-radius: 13px;
  background: rgba(69, 248, 130, .075);
  color: var(--green);
}

.live-stat strong,
.live-stat small {
  display: block;
}

.live-stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.03em;
}

.live-stat small {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-strip > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 14px;
  padding: 0 21px;
  border: 1px solid rgba(69, 248, 130, .45);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .22), transparent 45%),
    linear-gradient(135deg, #45f882, #2fd970);
  box-shadow: 0 20px 60px rgba(69, 248, 130, .16);
  color: #061108;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.live-strip > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(69, 248, 130, .23);
}

.live-strip > a .icon {
  width: 19px;
  flex: 0 0 auto;
}

.section {
  padding-block: 82px;
}

.section--tight {
  padding-block: 58px;
}

.section--panel {
  position: relative;
  margin-block: 54px;
  padding-block: 80px;
}

.section--panel::before {
  position: absolute;
  inset: 0 calc((100vw - min(100vw - 40px, var(--shell))) / -2);
  z-index: -1;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  content: "";
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 28px;
}

.section-heading > div {
  max-width: 650px;
}

.section-title {
  margin-top: 9px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.section-description {
  max-width: 580px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.section-link .icon {
  width: 16px;
  transition: transform 160ms ease;
}

.section-link:hover .icon {
  transform: translateX(3px);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(24, 30, 40, 0.84), rgba(13, 17, 23, 0.94));
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--card-rgb, 69, 248, 130), 0.32);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 9.4;
  overflow: hidden;
  background: #0b0e13;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.04);
}

.product-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 12, 17, 0.86));
  content: "";
}

.product-art-label {
  position: absolute;
  bottom: 68px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(200, 159, 255, 0.5);
  border-radius: 999px;
  background: rgba(9, 7, 15, 0.84);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
  color: #eadcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-media-cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(69, 248, 130, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 12, 9, 0.92), rgba(13, 25, 19, 0.88));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  color: #f5fff8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-media-cta .icon {
  width: 17px;
  height: 17px;
}

.product-media:hover .product-media-cta,
.product-media:focus-visible .product-media-cta {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
  color: #051108;
}

.product-topline {
  position: absolute;
  top: 13px;
  right: 13px;
  left: 13px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-pill,
.tier-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(69, 248, 130, 0.23);
  background: rgba(8, 14, 11, 0.74);
  color: var(--green);
  backdrop-filter: blur(10px);
}

.status-pill--updating {
  border-color: rgba(87, 217, 255, 0.25);
  color: var(--cyan);
}

.status-pill--maintenance {
  border-color: rgba(255, 202, 99, 0.25);
  color: var(--amber);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 14%, transparent);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  50% {
    opacity: .58;
    box-shadow: 0 0 0 7px color-mix(in srgb, currentColor 4%, transparent);
  }
}

.tier-pill {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 10, 0.68);
  color: #dce2e8;
  backdrop-filter: blur(10px);
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 8px 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.product-body > p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}

.price-block small,
.price-block strong {
  display: block;
}

.price-block small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-block strong {
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.card-arrow {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.card-arrow .icon {
  width: 17px;
}

.card-arrow--labeled {
  width: auto;
  min-width: 40px;
  grid-auto-flow: column;
  gap: 8px;
  padding-inline: 12px;
  color: #dfe7e2;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product-card:hover .card-arrow {
  border-color: rgba(69, 248, 130, 0.28);
  background: var(--green);
  color: #061108;
}

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

.step-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.step-card::after {
  position: absolute;
  right: -12px;
  bottom: -35px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Space Grotesk", sans-serif;
  font-size: 138px;
  font-weight: 800;
  line-height: 1;
  content: attr(data-step);
}

.step-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, 0.25);
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
}

.step-card h3 {
  margin: 20px 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
}

.step-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.update-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: center;
  overflow: hidden;
  gap: 30px;
  padding: 38px;
  border: 1px solid rgba(69, 248, 130, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(69, 248, 130, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.update-panel::after {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(69, 248, 130, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(69, 248, 130, 0.025), 0 0 0 104px rgba(69, 248, 130, 0.015);
  content: "";
}

.update-panel > * {
  position: relative;
  z-index: 1;
}

.update-panel h2 {
  margin: 7px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.04em;
}

.update-panel p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.update-live-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(69, 248, 130, 0.24);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(9, 25, 21, 0.96), rgba(8, 14, 20, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.035);
}

.update-live-heading,
.update-live-total {
  display: flex;
  align-items: center;
}

.update-live-heading {
  gap: 10px;
}

.update-live-heading > span:last-child {
  display: grid;
  gap: 2px;
}

.update-live-heading strong,
.update-live-total b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.update-live-heading small,
.update-live-total small,
.update-live-checked {
  color: var(--muted);
  font-size: 11px;
}

.update-live-total {
  align-items: flex-end;
  gap: 16px;
}

.update-live-total > strong {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.update-live-total > strong small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.update-live-total > span {
  display: grid;
  gap: 4px;
}

.update-live-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.update-live-breakdown > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px 10px;
  text-align: center;
}

.update-live-breakdown > span + span {
  border-left: 1px solid var(--line);
}

.update-live-breakdown small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.update-live-breakdown strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.update-live-checked {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.update-live-checked svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 86px 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: -240px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 248, 130, 0.09), transparent 65%);
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.catalog-hero {
  padding-block: 58px 36px;
}

.catalog-section {
  padding-top: 34px;
}

.page-title {
  max-width: 830px;
  margin-top: 12px;
  font-size: clamp(44px, 6vw, 72px);
}

.page-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.mini-pill {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #c7cfd7;
}

.catalog-toolbar {
  position: sticky;
  top: calc(var(--header) + 10px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(230px, .65fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 30px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(16px);
}

.search-control {
  display: flex;
  align-items: center;
  min-height: 45px;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.search-control .icon {
  flex: 0 0 auto;
  width: 18px;
  color: var(--muted);
}

.search-control input {
  width: 100%;
  border: 0;
  outline: 0;
  background: none;
  font-size: 14px;
}

.search-control input::placeholder {
  color: var(--muted-2);
}

.filter-group {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.filter-button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(69, 248, 130, 0.2);
  background: var(--green-soft);
  color: var(--green);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 70px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.product-page {
  --product-accent: var(--green);
  --product-rgb: 69, 248, 130;
  padding-block: 54px 86px;
}

/* A transformed ancestor turns a fixed mobile purchase bar into a scrolling
   element. Product pages therefore skip only the entrance transform. */
.product-page.page-enter {
  animation: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--product-accent);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: start;
  gap: 24px;
}

.product-gallery,
.purchase-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 21, 28, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.19);
}

.product-gallery {
  overflow: hidden;
}

.gallery-main {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #05070a;
}

.gallery-main[hidden] {
  display: none;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5, 7, 10, 0.9)),
    radial-gradient(circle at 82% 5%, rgba(var(--product-rgb), 0.14), transparent 36%);
  content: "";
}

.gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.gallery-overlay {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.gallery-overlay strong,
.gallery-overlay small {
  display: block;
}

.gallery-overlay strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.gallery-overlay small {
  color: #b1bac4;
  font-size: 12px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 11px;
}

.gallery-thumb {
  position: relative;
  min-height: 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0f14;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.gallery-thumb.is-active {
  border-color: rgba(var(--product-rgb), 0.5);
}

.gallery-thumb.is-active img {
  opacity: 1;
}

.gallery-thumb--feature {
  display: grid;
  place-items: center;
  padding: 8px;
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(16, 22, 29, .96), rgba(9, 13, 18, .96));
  color: #c5d0d8;
  font-size: 12px;
  font-weight: 800;
}

.gallery-thumb--feature > span {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.gallery-thumb--feature svg {
  width: 20px;
  height: 20px;
  color: var(--product-accent);
}

.gallery-thumb--feature small {
  color: #eef3f5;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gallery-thumb--feature em {
  color: #98a5af;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.gallery-thumb-label {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 4px 6px;
  border-radius: 7px;
  background: rgba(4, 7, 10, .78);
  color: #eef4f0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-overview {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  padding: clamp(25px, 5vw, 48px);
  background:
    radial-gradient(circle at 15% 25%, rgba(var(--product-rgb), .16), transparent 32%),
    linear-gradient(135deg, #0b1118, #121a22);
}

.gallery-overview::after {
  background: linear-gradient(135deg, transparent, rgba(var(--product-rgb), .05));
}

.gallery-overview > div,
.gallery-overview-orb {
  position: relative;
  z-index: 2;
}

.gallery-overview-orb {
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  border: 1px solid rgba(var(--product-rgb), .35);
  border-radius: 30px;
  background: rgba(var(--product-rgb), .09);
  color: var(--product-accent);
  transform: rotate(-4deg);
}

.gallery-overview-orb svg {
  width: 44px;
  height: 44px;
}

.gallery-overview .gallery-badge {
  position: static;
  display: inline-flex;
  margin-bottom: 12px;
}

.gallery-overview h3 {
  margin: 0 0 9px;
  color: #f4f8f6;
  font: 700 clamp(24px, 3vw, 38px)/1.05 "Space Grotesk", sans-serif;
}

.gallery-overview p {
  max-width: 600px;
  margin: 0 0 18px;
  color: #a6b1bb;
  font-size: 12px;
  line-height: 1.6;
}

.gallery-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.gallery-mini-list span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(5, 9, 13, .48);
  color: #d9e2dd;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-mini-list b {
  color: var(--product-accent);
  font: 700 9px/1 "Space Grotesk", sans-serif;
}

.purchase-panel {
  position: sticky;
  top: calc(var(--header) + 25px);
  padding: 27px;
}

.referral-price-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 13px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(69, 248, 130, .13);
  border-radius: 10px;
  background: rgba(69, 248, 130, .045);
  color: #92a49a;
  font-size: 12px;
  line-height: 1.5;
}

.referral-price-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #4bd982;
}

/* Keep compact gallery panels readable after the later desktop base rules. */
@media (max-width: 760px) {
  .gallery-overview {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 24px 20px;
  }

  .gallery-overview-orb {
    display: none;
  }

  .gallery-mini-list {
    grid-template-columns: 1fr;
  }
}

.purchase-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.purchase-title-area {
  min-width: 0;
}

.product-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.product-title {
  font-size: clamp(34px, 4vw, 49px);
}

.product-lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.compat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.compat-row span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: #b8c0c9;
  font-size: 12px;
  font-weight: 700;
}

.purchase-divider {
  height: 1px;
  margin: 23px 0;
  background: var(--line);
}

.tier-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.tier-label span {
  color: var(--muted-2);
  font-weight: 600;
}

.tier-options {
  display: grid;
  gap: 8px;
}

.tier-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 64px;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms var(--ease);
}

.tier-option:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.tier-option.is-selected {
  border-color: rgba(var(--product-rgb), 0.55);
  background: rgba(var(--product-rgb), 0.085);
}

.tier-radio {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.tier-option.is-selected .tier-radio {
  border-color: var(--product-accent);
}

.tier-option.is-selected .tier-radio::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--product-accent);
  content: "";
}

.tier-option strong,
.tier-option small {
  display: block;
}

.tier-option strong {
  font-size: 13px;
}

.tier-option small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 12.5px;
}

.tier-price {
  color: var(--product-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.purchase-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}

.purchase-summary small,
.purchase-summary strong {
  display: block;
}

.purchase-summary small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.purchase-summary strong {
  margin-top: 2px;
  font-size: 13px;
}

.license-start-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  color: #aeb9b2;
  font-size: 12px;
  line-height: 1.5;
}

.license-start-note .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--product-accent);
}

.summary-price {
  color: var(--product-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  font-weight: 700;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 17px;
}

.purchase-actions .btn--primary {
  background: var(--product-accent);
  box-shadow: 0 13px 40px rgba(var(--product-rgb), 0.14);
}

.hwid-credit-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(69, 248, 130, 0.2);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(69, 248, 130, 0.075), rgba(255, 255, 255, 0.018));
}

.hwid-credit-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, 0.22);
  border-radius: 10px;
  color: var(--green);
  background: rgba(69, 248, 130, 0.07);
}

.hwid-credit-icon .icon {
  width: 16px;
  height: 16px;
}

.hwid-credit-copy {
  min-width: 0;
}

.hwid-credit-copy small,
.hwid-credit-copy strong,
.hwid-credit-copy em {
  display: block;
}

.hwid-credit-copy small {
  margin-bottom: 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hwid-credit-copy strong {
  color: #f2f6f4;
  font-size: 12px;
}

.hwid-credit-copy em {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted-2);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hwid-credit-callout > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hwid-credit-callout > a .icon {
  width: 13px;
  height: 13px;
}

.hwid-credit-callout > a:hover {
  color: #fff;
}

@media (max-width: 430px) {
  .hwid-credit-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hwid-credit-callout > a {
    grid-column: 2;
  }
}

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

.side-link--hwid {
  color: #c7fbd8;
  background: rgba(69, 248, 130, 0.035);
}

.side-link--hwid:hover {
  color: var(--green);
}

.trust-row div {
  padding: 10px 7px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.trust-row strong {
  display: block;
  margin-bottom: 2px;
  color: #dfe4e8;
  font-size: 12px;
}

.product-content {
  margin-top: 34px;
}

.content-panel {
  overflow: hidden;
  border-color: rgba(var(--product-rgb), .16);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--product-rgb), .07), transparent 34%),
    rgba(13, 18, 24, .94);
  box-shadow: 0 26px 85px rgba(0, 0, 0, .24);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  overflow-x: auto;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 12, .42);
}

.tab-button {
  display: grid;
  min-width: 0;
  min-height: 76px;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, .018);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab-button:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--product-rgb), .18);
  background: rgba(255, 255, 255, .03);
}

.tab-button .tab-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  color: var(--muted-2);
}

.tab-button .tab-icon .icon {
  width: 18px;
}

.tab-button strong,
.tab-button small {
  display: block;
}

.tab-button strong {
  color: #d8dee4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.tab-button small {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-button.is-active {
  border-color: rgba(var(--product-rgb), .34);
  background: linear-gradient(135deg, rgba(var(--product-rgb), .14), rgba(var(--product-rgb), .04));
  color: var(--product-accent);
  box-shadow: inset 0 0 0 1px rgba(var(--product-rgb), .04);
}

.tab-button.is-active .tab-icon {
  border-color: rgba(var(--product-rgb), .28);
  background: rgba(var(--product-rgb), .12);
  color: var(--product-accent);
}

.tab-button.is-active strong {
  color: var(--product-accent);
}

.tab-panel {
  display: none;
  min-height: 340px;
  padding: 38px 36px 42px;
}

.tab-panel.is-active {
  display: block;
  animation: tab-in 280ms var(--ease) both;
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tab-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.panel-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tab-panel h2 {
  margin: 0 0 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(27px, 3vw, 34px);
  letter-spacing: -.035em;
}

.tab-panel-head p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.panel-count {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(var(--product-rgb), .2);
  border-radius: 999px;
  background: rgba(var(--product-rgb), .065);
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .012));
  color: #c8cfd6;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feature-item:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--product-rgb), .24);
  background: rgba(var(--product-rgb), .045);
}

.feature-item > span:last-child small,
.feature-item > span:last-child strong {
  display: block;
}

.feature-item > span:last-child small {
  margin-bottom: 3px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
}

.feature-item > span:last-child strong {
  color: #dce2e7;
  font-size: 12px;
}

.feature-check {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(var(--product-rgb), .18);
  border-radius: 10px;
  background: rgba(var(--product-rgb), 0.1);
  color: var(--product-accent);
}

.feature-check .icon {
  width: 15px;
}

.comparison-table,
.status-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td,
.status-table th,
.status-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th,
.status-table th {
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td,
.status-table tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--green);
  font-weight: 800;
}

.no {
  color: var(--muted-2);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.requirement-card {
  position: relative;
  min-height: 124px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .014));
}

.requirement-card > span {
  position: absolute;
  top: 14px;
  right: 15px;
  color: rgba(var(--product-rgb), .34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.requirement-card small,
.requirement-card strong {
  display: block;
}

.requirement-card small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.requirement-card strong {
  margin-top: 24px;
  color: #e2e7eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.timeline {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  min-height: 74px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .012));
}

.timeline-item > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(var(--product-rgb), .2);
  border-radius: 12px;
  background: rgba(var(--product-rgb), .08);
  color: var(--product-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.timeline-item strong,
.timeline-item small {
  display: block;
}

.timeline-item strong {
  color: #e2e7eb;
  font-size: 14px;
}

.timeline-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mobile-buy-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-strong);
  background: rgba(8, 11, 16, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-buy-bar small,
.mobile-buy-bar strong {
  display: block;
}

.mobile-buy-bar small {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-buy-bar strong {
  margin-top: 1px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.status-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.summary-card {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.summary-card small,
.summary-card strong {
  display: block;
}

.summary-card small {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.summary-card strong {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.status-board {
  overflow: hidden;
  margin-bottom: 70px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16, 21, 28, 0.74);
}

.status-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.status-board-header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
}

.status-board-header small {
  color: var(--muted-2);
}

.status-table {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.status-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-product img {
  width: 72px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.status-product strong,
.status-product small {
  display: block;
}

.status-product small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 12px;
}

.status-table .status-pill {
  background: rgba(69, 248, 130, 0.05);
}

.status-hero {
  padding-block: 100px 82px;
}

.status-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: 64px;
}

.status-hero-card {
  padding: 32px;
  border: 1px solid rgba(69, 248, 130, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 248, 130, 0.14), transparent 42%),
    rgba(11, 16, 21, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.status-live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-hero-card > strong {
  display: block;
  margin: 18px 0 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(62px, 6vw, 86px);
  line-height: .95;
}

.status-hero-card > strong small {
  color: var(--muted-2);
  font-size: .34em;
}

.status-hero-card h2 {
  margin: 12px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
}

.status-hero-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.status-content {
  padding-top: 20px;
}

.status-page .status-summary {
  gap: 18px;
  margin: 38px 0;
}

.status-page .summary-card {
  display: flex;
  align-items: center;
  min-height: 118px;
  gap: 18px;
  padding: 25px;
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
}

.summary-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, .24);
  border-radius: 14px;
  background: rgba(69, 248, 130, .08);
  color: var(--green);
}

.summary-icon .icon {
  width: 22px;
}

.summary-icon--cyan {
  border-color: rgba(87, 217, 255, .24);
  background: rgba(87, 217, 255, .08);
  color: var(--cyan);
}

.summary-icon--violet {
  border-color: rgba(167, 139, 250, .24);
  background: rgba(167, 139, 250, .08);
  color: #bda5ff;
}

.status-page .summary-card strong {
  margin-top: 2px;
  font-size: 36px;
  line-height: 1;
}

.status-page .status-board {
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.status-page .status-board-header {
  min-height: 128px;
  padding: 28px 32px;
}

.status-page .status-board-header h2 {
  margin-top: 7px;
  font-size: 27px;
}

.status-board-time {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status-page .status-table th,
.status-page .status-table td {
  padding: 22px 30px;
}

.status-page .status-table {
  font-size: 12px;
}

.status-page .status-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

.status-page .status-table th {
  font-size: 12px;
}

@media (min-width: 641px) {
  .status-page .status-table th:nth-child(1),
  .status-page .status-table td:nth-child(1) {
    width: 34%;
  }

  .status-page .status-table th:nth-child(2),
  .status-page .status-table td:nth-child(2) {
    width: 16%;
  }

  .status-page .status-table th:nth-child(3),
  .status-page .status-table td:nth-child(3) {
    width: 14%;
  }

  .status-page .status-table th:nth-child(4),
  .status-page .status-table td:nth-child(4) {
    width: 24%;
  }

  .status-page .status-table th:nth-child(5),
  .status-page .status-table td:nth-child(5) {
    width: 12%;
    text-align: center;
  }
}

.status-page .status-product {
  gap: 16px;
}

.status-page .status-product img {
  width: 112px;
  height: 68px;
  border-radius: 11px;
}

.status-page .status-product strong {
  font-size: 15px;
}

.status-page .status-product small {
  font-size: 12px;
}

.status-version {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.status-page .status-table .status-pill {
  min-height: 32px;
  padding-inline: 12px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 24px;
  padding-block: 55px 85px;
}

.support-search {
  display: flex;
  align-items: center;
  min-height: 62px;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.support-search .icon {
  width: 22px;
  color: var(--green);
}

.support-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.guide-card {
  min-height: 145px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms var(--ease), border-color 180ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 248, 130, 0.25);
}

.guide-card .icon {
  color: var(--green);
}

.guide-card h3 {
  margin: 14px 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 16px;
  padding: 0 16px;
  background: none;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question .icon {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 12px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.support-side {
  position: sticky;
  top: calc(var(--header) + 25px);
  display: grid;
  gap: 12px;
}

.support-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 21, 28, 0.84);
}

.support-card--discord {
  border-color: rgba(167, 139, 250, 0.25);
  background:
    radial-gradient(circle at 100% 0, rgba(167, 139, 250, 0.17), transparent 45%),
    rgba(16, 21, 28, 0.84);
}

.support-card h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.support-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 12px;
}

.support-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.support-fact:last-child {
  border-bottom: 0;
}

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

.support-hero {
  padding-block: 98px 82px;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 62px;
}

.support-hero-panel {
  padding: 29px;
  border: 1px solid rgba(167, 139, 250, .25);
  border-radius: 23px;
  background:
    radial-gradient(circle at 100% 0, rgba(167, 139, 250, .18), transparent 42%),
    rgba(13, 15, 22, .88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.support-hero-panel ol {
  display: grid;
  gap: 4px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.support-hero-panel li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.support-hero-panel li b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(167, 139, 250, .1);
  color: #c5b3ff;
  font-size: 12px;
}

.support-hero-panel li strong,
.support-hero-panel li small {
  display: block;
}

.support-hero-panel li strong {
  font-size: 12px;
}

.support-hero-panel li small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 12px;
}

.support-content {
  padding-top: 34px;
}

.support-page .support-search {
  min-height: 72px;
  padding-inline: 22px;
  border-radius: 19px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.support-quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.support-quick-strip > a {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 12px;
  padding: 17px;
  background: rgba(14, 19, 25, .98);
  transition: background 180ms ease;
}

.support-quick-strip > a:hover {
  background: rgba(23, 30, 39, .98);
}

.support-quick-strip > a > .icon:first-child {
  width: 21px;
  color: var(--green);
}

.support-quick-strip > a > .icon:last-child {
  width: 15px;
  margin-left: auto;
  color: var(--muted-2);
}

.support-quick-strip small,
.support-quick-strip strong {
  display: block;
}

.support-quick-strip small {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.support-quick-strip strong {
  margin-top: 3px;
  font-size: 12px;
}

.support-page .support-layout {
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  padding-top: 34px;
}

.support-page .guide-grid {
  gap: 14px;
  margin-top: 0;
}

.support-page .guide-card {
  position: relative;
  min-height: 200px;
  padding: 24px;
  border-radius: 19px;
}

.support-page .guide-card > span {
  position: absolute;
  top: 21px;
  right: 22px;
  color: var(--muted-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.support-page .guide-card > .icon {
  width: 25px;
}

.support-page .guide-card h3 {
  margin-top: 32px;
  font-size: 19px;
}

.support-page .guide-card p {
  max-width: 270px;
  font-size: 12px;
  line-height: 1.6;
}

.support-page .guide-card > b {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
}

.support-page .guide-card > b .icon {
  width: 12px;
}

.support-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 45px 0 17px;
}

.support-section-title h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.support-section-title > small {
  color: var(--muted-2);
}

.support-page .faq-list {
  gap: 10px;
  margin-top: 0;
}

.support-page .faq-item {
  border-radius: 16px;
}

.support-page .faq-question {
  min-height: 67px;
  padding-inline: 20px;
}

.support-check ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.support-check li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.support-check li .icon {
  width: 15px;
  color: var(--green);
}

.support-card--status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-color: rgba(69, 248, 130, .18);
}

.support-card--status > .icon:first-child {
  width: 25px;
  color: var(--green);
}

.support-card--status > .icon:last-child {
  width: 15px;
  color: var(--muted-2);
}

.support-card--status small {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.support-card--status h3 {
  margin: 4px 0;
}

.support-card--status p {
  margin: 0;
}

.requirements-strip {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(2, minmax(220px, .75fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 14px;
}

.requirements-strip > div,
.requirements-strip > a {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 19, 25, .86);
}

.requirements-strip > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(135deg, rgba(69, 248, 130, .1), rgba(14, 19, 25, .92));
}

.requirements-strip h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.requirements-strip > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.requirements-strip > a:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 248, 130, .35);
  background: rgba(19, 27, 33, .98);
}

.requirements-strip > a > .icon:first-child {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(69, 248, 130, .1);
  color: var(--green);
}

.requirements-strip > a > .icon:last-child {
  width: 14px;
  color: var(--muted-2);
}

.requirements-strip strong,
.requirements-strip small {
  display: block;
}

.requirements-strip strong {
  font-size: 12px;
}

.requirements-strip small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
}

.auth-page {
  display: grid;
  min-height: calc(100vh - var(--header) - 34px);
  grid-template-columns: 1fr 1fr;
}

.auth-art--recovery {
  background:
    linear-gradient(180deg, rgba(6, 8, 11, .18), rgba(6, 8, 11, .94)),
    url("/assets/whis33-v3/img/chameleon-game.webp") center / cover;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-back:hover {
  color: var(--green);
}

.auth-back .icon {
  width: 15px;
  transform: rotate(180deg);
}

.auth-help-line {
  margin-top: 22px;
  text-align: center;
}

.auth-help-line a {
  color: var(--green);
  font-weight: 700;
}

.standalone-auth {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(46, 106, 255, .12), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(69, 248, 130, .1), transparent 31%),
    #070a0e;
}

.reset-shell {
  width: min(1240px, calc(100% - 44px));
  min-height: 100vh;
  margin-inline: auto;
  padding: 28px 0 48px;
}

.reset-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.reset-brand > span {
  display: grid;
  width: 38px;
  height: 42px;
  place-items: center;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: var(--green);
  color: #061008;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.reset-brand strong,
.reset-brand small {
  display: block;
}

.reset-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .1em;
}

.reset-brand small {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .22em;
}

.reset-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 500px);
  align-items: center;
  gap: clamp(54px, 9vw, 140px);
  min-height: calc(100vh - 118px);
  padding: 56px 4vw;
}

.reset-copy h1 {
  max-width: 720px;
  margin: 18px 0 23px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 7vw, 94px);
  line-height: .94;
  letter-spacing: -.065em;
}

.reset-copy h1 span {
  color: var(--green);
}

.reset-copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.reset-copy ul {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.reset-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.reset-copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(69, 248, 130, .6);
}

.reset-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(12, 17, 22, .9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.reset-panel h2 {
  margin: 11px 0 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 31px;
  letter-spacing: -.035em;
}

.reset-panel > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 12px;
}

.reset-panel .auth-back {
  margin-bottom: 32px;
}

.reset-panel .auth-back svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-panel .btn svg,
.reset-panel .preview-notice svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-alert {
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 100, 114, .25);
  border-radius: 12px;
  background: rgba(255, 71, 87, .09);
  color: #ff929c;
  font-size: 12px;
  line-height: 1.55;
}

.error-shell {
  width: min(1240px, calc(100% - 44px));
  min-height: 100vh;
  margin-inline: auto;
  padding: 28px 0 48px;
}

.error-stage {
  position: relative;
  display: flex;
  min-height: calc(100vh - 90px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 22px;
  text-align: center;
}

.error-stage::before {
  content: "";
  position: absolute;
  width: min(680px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(69, 248, 130, .1);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(69, 248, 130, .035), 0 0 120px rgba(69, 248, 130, .05);
  pointer-events: none;
}

.error-code {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, .025);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(230px, 38vw, 560px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.09em;
  user-select: none;
}

.error-stage > :not(.error-code) {
  position: relative;
  z-index: 1;
}

.error-stage h1 {
  margin: 18px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
}

.error-stage > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.error-stage .button-row {
  margin-top: 31px;
}

.error-stage .btn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 33px;
}

.error-links a {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.error-links a:hover {
  color: var(--green);
}

.error-page--server .error-stage::before {
  border-color: rgba(255, 153, 71, .12);
  box-shadow: inset 0 0 90px rgba(255, 153, 71, .035), 0 0 120px rgba(255, 153, 71, .05);
}

.error-page--server .error-stage .eyebrow {
  color: #ffb56a;
}

.auth-art {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: flex-end;
  overflow: hidden;
  padding: 56px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.2), rgba(6, 8, 11, 0.92)),
    url("/assets/whis33-v3/img/phasmophobia-game.webp") center / cover;
}

.auth-art::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(69, 248, 130, 0.09), transparent 45%),
    radial-gradient(circle at 25% 20%, rgba(69, 248, 130, 0.14), transparent 30%);
  content: "";
}

.auth-art-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.auth-art h1 {
  margin: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.auth-art p {
  max-width: 480px;
  margin: 0;
  color: #b7c0ca;
}

.auth-panel-wrap {
  display: grid;
  place-items: center;
  padding: 55px 30px;
}

.auth-panel {
  width: min(100%, 460px);
}

.auth-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 35px;
  letter-spacing: -0.04em;
}

.auth-panel > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 25px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.auth-tabs a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.auth-tabs a.is-active {
  background: var(--green);
  color: #071009;
}

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

.recaptcha-field {
  min-height: 78px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.field label {
  color: #c7cfd6;
  font-size: 13px;
  font-weight: 700;
}

.field--optional label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field--optional label span {
  padding: 3px 7px;
  border: 1px solid rgba(69, 248, 130, .18);
  border-radius: 999px;
  background: rgba(69, 248, 130, .06);
  color: #65da91;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field-hint {
  margin-top: -3px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  font-size: 15px;
}

.field input:focus {
  border-color: rgba(69, 248, 130, 0.45);
  box-shadow: 0 0 0 3px rgba(69, 248, 130, 0.07);
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
}

.auth-options a {
  color: var(--green);
  font-weight: 700;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.checkbox input {
  accent-color: var(--green);
}

.checkbox a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.preview-notice {
  padding: 12px 13px;
  border: 1px solid rgba(69, 248, 130, 0.2);
  border-radius: 11px;
  background: rgba(69, 248, 130, 0.055);
  color: #c8ddcf;
  font-size: 12px;
}

.account-page {
  padding-block: 48px 90px;
}

.account-signed-out {
  max-width: 760px;
  margin: 70px auto;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 248, 130, .11), transparent 40%),
    rgba(16, 21, 28, .82);
  text-align: center;
}

.account-signed-out .summary-icon {
  margin: 0 auto 22px;
}

.account-signed-out .page-description {
  margin-inline: auto;
}

.account-signed-out .button-row {
  justify-content: center;
}

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

.account-title {
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 62px);
}

.account-balance {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.account-balance small,
.account-balance strong {
  display: block;
}

.account-balance small {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.account-balance strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.funds-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  margin: 0 0 20px;
  padding: 21px 24px;
  overflow: hidden;
  border: 1px solid rgba(69, 248, 130, 0.34);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 20%, rgba(69, 248, 130, 0.2), transparent 30%),
    linear-gradient(118deg, rgba(20, 47, 31, 0.95), rgba(12, 20, 19, 0.96) 52%, rgba(10, 17, 21, 0.98));
  color: var(--text);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
}

.funds-spotlight::after {
  content: "+";
  position: absolute;
  right: 17%;
  top: -42px;
  color: rgba(69, 248, 130, 0.055);
  font: 900 150px/1 "Space Grotesk", sans-serif;
  pointer-events: none;
}

.funds-spotlight:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 248, 130, 0.68);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.3), 0 0 42px rgba(69, 248, 130, 0.08);
}

.funds-spotlight-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(69, 248, 130, 0.4);
  border-radius: 17px;
  background: rgba(69, 248, 130, 0.13);
  color: var(--green);
}

.funds-spotlight-icon .icon {
  width: 25px;
}

.funds-spotlight-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.funds-spotlight-copy small {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.funds-spotlight-copy strong {
  font: 750 23px/1.2 "Space Grotesk", sans-serif;
}

.funds-spotlight-copy > span {
  max-width: 690px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.funds-spotlight-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--green);
  color: #07110b;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.funds-spotlight-action .icon {
  width: 15px;
}

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

.account-main {
  display: grid;
  gap: 20px;
}

.account-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(16, 21, 28, 0.78);
}

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

.account-section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.account-section-head a,
.account-section-head span {
  color: var(--muted);
  font-size: 12px;
}

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

.license-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  gap: 17px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

.license-card img {
  width: 128px;
  height: 84px;
  object-fit: cover;
  border-radius: 11px;
}

.license-info h3 {
  margin: 0 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.license-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
}

.license-progress {
  height: 4px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.license-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.license-actions {
  display: grid;
  gap: 7px;
}

.activity-list {
  display: grid;
  gap: 3px;
}

.activity-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding-inline: 4px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

a.activity-item:hover {
  padding-inline: 13px;
  background: rgba(255, 255, 255, .025);
}

.activity-item:last-child {
  border-bottom: 0;
}

.activity-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
}

.activity-icon .icon {
  width: 20px;
}

.activity-copy strong,
.activity-copy small {
  display: block;
}

.activity-copy strong {
  font-size: 13px;
  line-height: 1.35;
}

.activity-copy small,
.activity-time {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.activity-copy small {
  margin-top: 3px;
}

.activity-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.activity-time .icon {
  width: 14px;
}

.account-launcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 248, 130, .12), transparent 45%),
    rgba(16, 21, 28, .82);
}

.account-launcher h2 {
  margin: 7px 0 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.account-launcher p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.account-side {
  position: sticky;
  top: calc(var(--header) + 25px);
  display: grid;
  gap: 12px;
}

.side-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(16, 21, 28, 0.8);
}

.side-card h3 {
  margin: 0 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.side-link:last-child {
  border-bottom: 0;
}

.side-link:hover {
  color: var(--green);
}

.side-link--admin {
  background: rgba(255, 202, 99, .055);
  color: var(--amber);
}

.side-link--admin:hover {
  background: rgba(255, 202, 99, .1);
}

.side-link--funds {
  margin: 0 -8px 5px;
  padding: 0 8px;
  border: 1px solid rgba(69, 248, 130, 0.25);
  border-radius: 10px;
  background: rgba(69, 248, 130, 0.085);
  color: var(--green);
  font-weight: 800;
}

.side-link--funds:hover {
  background: rgba(69, 248, 130, 0.15);
}

.mobile-drawer .funds-mobile-link {
  border-color: rgba(69, 248, 130, 0.35);
  background: rgba(69, 248, 130, 0.1);
  color: var(--green);
  font-weight: 800;
}

.side-link .icon {
  width: 15px;
}

.command-palette {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: start center;
  padding: 11vh 20px 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 170ms ease, visibility 170ms ease;
}

.command-palette.is-open {
  visibility: visible;
  opacity: 1;
}

.command-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 7, 0.78);
  backdrop-filter: blur(8px);
  cursor: default;
}

.command-box {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #10151c;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
}

.command-search {
  display: flex;
  align-items: center;
  min-height: 61px;
  gap: 12px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
}

.command-search .icon {
  color: var(--green);
}

.command-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
}

kbd {
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
}

.command-results {
  display: grid;
  max-height: 420px;
  overflow: auto;
  gap: 3px;
  padding: 8px;
}

.command-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  gap: 15px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
}

.command-result:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.command-result small {
  color: var(--muted-2);
  font-size: 12px;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 400;
  display: grid;
  width: min(360px, calc(100% - 36px));
  gap: 8px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  transform: translateY(8px);
  border: 1px solid rgba(69, 248, 130, 0.24);
  border-radius: 13px;
  background: rgba(13, 18, 24, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  animation: toast-in 240ms var(--ease) forwards;
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.toast .icon {
  flex: 0 0 auto;
  color: var(--green);
}

.toast strong,
.toast small {
  display: block;
}

.toast strong {
  font-size: 12px;
}

.toast small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  position: relative;
  padding-top: 65px;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.footer-brand p {
  max-width: 420px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links b {
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--green);
}

.legal-page .page-hero {
  padding-bottom: 26px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 23, 31, .94), rgba(8, 12, 17, .96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: clamp(20px, 2vw, 27px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --shell: 940px;
  }

  .home-hero {
    grid-template-columns: 1fr minmax(340px, .82fr);
    gap: 28px;
  }

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

  .product-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .support-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 68px;
  }

  body {
    padding-bottom: 68px;
  }

  .desktop-nav,
  .account-button span,
  .command-trigger,
  .header-funds-button {
    display: none;
  }

  .account-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-toggle,
  .mobile-drawer {
    display: grid;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 68px 46px;
  }

  .hero-left {
    position: relative;
    z-index: 2;
  }

  .display-title {
    max-width: 640px;
    font-size: clamp(50px, 12vw, 78px);
  }

  .hero-stage {
    min-height: 440px;
  }

  .live-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: -20px;
    margin-bottom: 60px;
  }

  .live-stat:nth-child(2) {
    border-right: 0;
  }

  .live-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .live-strip > a {
    min-height: 88px;
  }

  .section {
    padding-block: 62px;
  }

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

  .purchase-panel {
    position: static;
  }

  .product-content {
    margin-bottom: 45px;
  }

  .mobile-buy-bar {
    display: flex;
    bottom: 68px;
  }

  .product-page:has(.mobile-buy-bar) {
    padding-bottom: 130px;
  }

  .support-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .support-side,
  .account-side {
    position: static;
  }

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

  .auth-art {
    min-height: 420px;
    padding: 35px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line-strong);
    background: rgba(8, 11, 16, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-bottom-nav a .icon {
    width: 19px;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--green);
  }

  .mobile-bottom-nav a.is-active::before {
    position: absolute;
    top: -1px;
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    content: "";
  }

  .toast-region {
    bottom: 84px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .preview-bar .shell {
    min-height: 38px;
  }

  .preview-bar span {
    max-width: 250px;
    line-height: 1.35;
  }

  .preview-bar a {
    display: none;
  }

  .mobile-drawer {
    inset: calc(var(--header) + 38px) 0 auto;
  }

  .home-hero {
    padding-top: 48px;
  }

  .display-title {
    font-size: clamp(44px, 15vw, 64px);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-left .button-row {
    margin-top: 26px;
  }

  .button-row .btn {
    flex: 1 1 150px;
  }

  .hero-proof {
    gap: 11px 16px;
    margin-top: 26px;
  }

  .hero-stage {
    min-height: 330px;
  }

  .hero-card--main {
    inset: 10px 10px 42px 28px;
  }

  .hero-card--back-one {
    inset: 58px 54px 4px 0;
  }

  .hero-card--back-two {
    inset: 0 0 74px 88px;
  }

  .hero-slide {
    inset: 34px 42px 28px 4px;
  }

  .hero-slide.is-active {
    inset: 8px 8px 52px 22px;
  }

  .hero-slide.is-prev {
    inset: 54px 46px 4px 0;
  }

  .hero-slide.is-next {
    inset: 0 0 76px 78px;
  }

  .hero-card-badges {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .hero-card-badges .status-pill,
  .hero-card-badges .tier-pill {
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero-carousel-arrow {
    top: 44%;
    width: 42px;
    height: 42px;
  }

  .hero-carousel-arrow--prev {
    left: 0;
  }

  .hero-carousel-arrow--next {
    right: -2px;
  }

  .hero-carousel-footer {
    bottom: 3px;
    left: 22px;
    gap: 9px;
  }

  .hero-carousel-footer > small {
    display: none;
  }

  .hero-stage:focus-visible::after {
    inset: 5px 5px 48px 18px;
  }

  .hero-card-copy {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .hero-card-copy h2 {
    font-size: 21px;
  }

  .floating-status {
    right: 0;
    bottom: 10px;
    min-width: 150px;
    padding: 10px 12px;
  }

  .live-strip {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: -14px;
    margin-bottom: 45px;
  }

  .live-stat {
    min-height: 82px;
    gap: 11px;
    padding: 13px;
  }

  .live-stat .icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 11px;
  }

  .live-stat:nth-child(3) {
    border-right: 0;
  }

  .live-stat strong {
    font-size: 18px;
  }

  .live-stat small {
    margin-top: 5px;
    font-size: 12px;
  }

  .live-strip > a {
    grid-column: 1 / -1;
    min-height: 72px;
    border-color: rgba(69, 248, 130, .45);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 13px;
  }

  .section-title {
    font-size: 34px;
  }

  .product-grid,
  .steps-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .product-body h3 {
    font-size: 19px;
  }

  .step-card {
    min-height: 170px;
  }

  .update-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .update-live-card {
    width: 100%;
  }

  .page-hero {
    padding-block: 60px 45px;
  }

  .catalog-hero {
    padding-block: 38px 26px;
  }

  .catalog-section {
    padding-top: 22px;
  }

  .page-title {
    font-size: 43px;
  }

  .page-description {
    font-size: 14px;
  }

  .catalog-toolbar {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    padding: 9px;
  }

  .filter-group {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-page {
    padding-top: 30px;
  }

  .gallery-main {
    aspect-ratio: 16 / 11;
  }

  .purchase-panel {
    padding: 21px;
  }

  .product-title {
    font-size: 36px;
  }

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

  .tab-panel {
    padding: 21px 17px;
  }

  .feature-list,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .status-summary {
    grid-template-columns: 1fr 1fr;
  }

  .status-board {
    border: 0;
    background: transparent;
  }

  .status-board-header {
    padding-inline: 0;
  }

  .status-table,
  .status-table tbody,
  .status-table tr,
  .status-table td {
    display: block;
    width: 100%;
  }

  .status-table thead {
    display: none;
  }

  .status-table tr {
    margin-bottom: 10px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 21, 28, 0.78);
  }

  .status-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }

  .status-table td::before {
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .status-table td:first-child {
    display: block;
  }

  .status-table td:first-child::before {
    display: none;
  }

  .status-table td:last-child {
    border-bottom: 0;
  }

  .status-product img {
    width: 86px;
    height: 50px;
  }

  .auth-art {
    min-height: 350px;
  }

  .auth-art h1 {
    font-size: 41px;
  }

  .auth-panel-wrap {
    padding: 40px 18px 60px;
  }

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

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

  .account-balance {
    width: 100%;
    justify-content: space-between;
  }

  .account-section {
    padding: 15px;
  }

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

  .license-card img {
    width: 92px;
    height: 70px;
  }

  .license-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .activity-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .activity-time {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 1080px) {
  .status-hero-grid,
  .support-hero-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
  }

  .support-page .support-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .support-quick-strip {
    grid-template-columns: 1fr 1fr;
  }

  .requirements-strip {
    grid-template-columns: 1fr 1fr;
  }

  .requirements-strip > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .status-hero-grid,
  .support-hero-grid {
    grid-template-columns: 1fr;
  }

  .status-hero-card,
  .support-hero-panel {
    max-width: 560px;
  }

  .support-quick-strip {
    grid-template-columns: 1fr;
  }

  .requirements-strip {
    grid-template-columns: 1fr;
  }

  .requirements-strip > div {
    grid-column: auto;
  }

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

  .reset-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-inline: 0;
  }

  .reset-copy {
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .status-hero,
  .support-hero {
    padding-block: 64px 50px;
  }

  .status-hero-card,
  .support-hero-panel {
    padding: 22px;
    border-radius: 19px;
  }

  .status-page .status-summary {
    grid-template-columns: 1fr;
  }

  .status-page .summary-card {
    min-height: 94px;
    padding: 20px;
  }

  .status-page .status-board-header {
    min-height: auto;
    align-items: flex-start;
    padding: 21px 0;
  }

  .status-board-time {
    display: none;
  }

  .status-page .status-table td {
    padding: 9px 0;
  }

  .status-page .status-product img {
    width: 84px;
    height: 52px;
  }

  .support-page .guide-grid {
    grid-template-columns: 1fr;
  }

  .support-page .guide-card {
    min-height: 180px;
  }

  .support-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-signed-out {
    margin-block: 30px;
    padding: 34px 22px;
  }

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

  .reset-shell {
    width: min(100% - 28px, 560px);
    padding-top: 18px;
  }

  .reset-layout {
    padding-top: 44px;
  }

  .reset-copy h1 {
    font-size: 49px;
  }

  .reset-panel {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .error-shell {
    width: min(100% - 28px, 560px);
    padding-top: 18px;
  }

  .error-stage {
    min-height: calc(100vh - 72px);
    padding-inline: 0;
  }

  .error-stage h1 {
    font-size: 50px;
  }
}

@media (max-width: 720px) {
  .account-balance {
    width: 100%;
    justify-content: space-between;
  }

  .funds-spotlight {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 19px;
  }

  .funds-spotlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .funds-spotlight-copy strong {
    font-size: 19px;
  }

  .funds-spotlight-copy > span {
    display: none;
  }

  .funds-spotlight-action {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .product-page .tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-page .content-panel {
    border-radius: 20px;
  }

  .product-page .tab-list {
    gap: 7px;
    padding: 9px;
  }

  .product-page .tab-button {
    min-height: 67px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .product-page .tab-button .tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .product-page .tab-button strong {
    font-size: 12px;
  }

  .product-page .tab-button small {
    font-size: 12px;
  }

  .product-page .tab-panel {
    min-height: 0;
    padding: 27px 19px 30px;
  }

  .product-page .tab-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .product-page .tab-panel h2 {
    font-size: 26px;
  }

  .product-page .tab-panel-head p {
    font-size: 12px;
  }

  .product-page .feature-list,
  .product-page .requirements-grid {
    grid-template-columns: 1fr;
  }

  .product-page .feature-item {
    min-height: 64px;
  }

  .product-page .comparison-table {
    font-size: 12px;
  }

  .product-page .comparison-table th,
  .product-page .comparison-table td {
    padding: 13px 9px;
  }
}

@media (max-width: 520px) {
  .site-header .header-inner {
    width: calc(100% - 16px);
    gap: 6px;
  }

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

  .site-header .header-actions > .icon-button[href*="view=mods"] {
    display: none !important;
  }

  .ambient {
    opacity: .6;
    filter: blur(72px);
  }

  .catalog-toolbar {
    backdrop-filter: blur(9px);
  }
}

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