:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #9eb0c9;
  --night: #030713;
  --panel: rgba(9, 21, 49, 0.72);
  --line: rgba(133, 177, 255, 0.18);
  --cyan: #12d8ff;
  --blue: #1683ff;
  --gold: #ffd34e;
  --gold-deep: #f7a900;
  --success: #70ffd1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 12%, rgba(11, 118, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 14% 47%, rgba(9, 218, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #04091a 0%, var(--night) 66%, #02040c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(128, 181, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 181, 255, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

a {
  color: inherit;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.header-link {
  color: #c9d8eb;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link:hover,
.header-link:focus-visible,
.header-link[aria-current="page"] {
  color: var(--cyan);
}

.header-link[aria-current="page"] {
  text-shadow: 0 0 18px rgba(18, 216, 255, 0.38);
}

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

.account-trigger {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(18, 216, 255, 0.34);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(18, 216, 255, 0.07);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.account-trigger:hover,
.account-trigger:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(18, 216, 255, 0.12);
}

.account-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(255, 211, 78, 0.72);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 78px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 16px var(--cyan);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.8vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(94deg, var(--cyan) 5%, #8af3ff 45%, var(--gold) 94%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 650px;
  color: #b8c7dc;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: #02101a;
  background: linear-gradient(135deg, var(--cyan), #63ecff);
  box-shadow: 0 11px 36px rgba(18, 216, 255, 0.22);
}

.button-secondary {
  border-color: rgba(255, 211, 78, 0.56);
  color: var(--gold);
  background: rgba(255, 211, 78, 0.06);
}

.microcopy {
  margin: 15px 0 0;
  color: #8193ae;
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.glow-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(18, 216, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(18, 216, 255, 0.05), 0 0 80px rgba(30, 93, 255, 0.08);
}

.glow-orbit::before,
.glow-orbit::after {
  content: "";
  position: absolute;
  inset: 43px;
  border: 1px dashed rgba(255, 211, 78, 0.2);
  border-radius: inherit;
}

.glow-orbit::after {
  inset: 112px;
  border-style: solid;
  border-color: rgba(18, 216, 255, 0.22);
}

.launch-card {
  position: relative;
  width: min(380px, 100%);
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(85, 161, 255, 0.35);
  border-radius: 22px 8px 22px 8px;
  background: linear-gradient(150deg, rgba(12, 28, 66, 0.96), rgba(4, 10, 26, 0.94));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45), 0 0 42px rgba(0, 132, 255, 0.12);
  transform: rotate(2deg);
}

.launch-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 2px;
  top: 0;
  right: 20px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 24px var(--cyan);
}

.card-topline,
.card-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-topline {
  color: #7d98bf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.status-chip {
  padding: 7px 10px;
  border: 1px solid rgba(255, 211, 78, 0.4);
  border-radius: 100px;
  color: var(--gold);
  background: rgba(255, 211, 78, 0.08);
}

.card-logo-wrap {
  min-height: 155px;
  display: grid;
  place-items: center;
}

.card-logo-wrap img {
  width: 92%;
  height: auto;
  filter: drop-shadow(0 9px 18px rgba(0, 170, 255, 0.23));
}

.card-metric {
  padding: 20px 0 10px;
  border-top: 1px solid var(--line);
  color: #a9b9d1;
}

.card-metric strong {
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
}

.signal-bars {
  height: 40px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.signal-bars span {
  width: 16%;
  height: 35%;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(18, 216, 255, 0.25);
}

.signal-bars span:nth-child(2) { height: 54%; }
.signal-bars span:nth-child(3) { height: 42%; }
.signal-bars span:nth-child(4) { height: 78%; }
.signal-bars span:nth-child(5) { height: 100%; background: linear-gradient(to top, var(--gold-deep), var(--gold)); }

.launch-card > p {
  margin: 17px 0 0;
  color: #8498b7;
  font-size: 0.86rem;
  line-height: 1.6;
}

.promise-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 21px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  background: rgba(6, 17, 42, 0.78);
  color: #bdd0e8;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.promise-strip span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.catalog-section,
.how,
.launch-section,
.safety-note,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.catalog-section {
  padding: 118px 0 38px;
}

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

.catalog-heading > div:first-child {
  max-width: 760px;
}

.catalog-heading h2 {
  margin: 0 0 18px;
}

.approval-flow {
  width: min(1240px, calc(100% - 48px));
  margin: -24px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(18, 216, 255, 0.18);
  border-radius: 16px 5px 16px 5px;
  background: rgba(5, 14, 34, 0.72);
}

.approval-flow > div {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  align-items: center;
}

.approval-flow span {
  width: 32px;
  height: 32px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 216, 255, 0.46);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
}

.approval-flow strong {
  font-size: 0.82rem;
}

.approval-flow small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.catalog-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.catalog-status {
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 211, 78, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 211, 78, 0.05);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 211, 78, 0.68);
}

.catalog-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-loading,
.catalog-error {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(6, 17, 42, 0.7);
}

.catalog-product {
  min-height: 206px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px 5px 16px 5px;
  background:
    linear-gradient(145deg, rgba(12, 28, 61, 0.9), rgba(4, 11, 27, 0.92));
  transition: transform 180ms ease, border-color 180ms ease;
}

.catalog-product:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 216, 255, 0.38);
}

.catalog-product-brand {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-product h3 {
  margin: 23px 0 7px;
  font-size: 1.35rem;
}

.catalog-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.catalog-price {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-price strong {
  color: var(--gold);
  font-size: 1.22rem;
}

.catalog-price span {
  color: #7589a8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-action {
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(18, 216, 255, 0.25);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(18, 216, 255, 0.055);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
}

.catalog-action:hover,
.catalog-action:focus-visible {
  border-color: rgba(18, 216, 255, 0.58);
  background: rgba(18, 216, 255, 0.1);
}

.catalog-coming-soon {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.catalog-coming-soon article {
  padding: 23px;
  border: 1px dashed rgba(133, 177, 255, 0.2);
  border-radius: 12px;
  background: rgba(5, 13, 32, 0.58);
}

.catalog-coming-soon span {
  display: block;
  margin-bottom: 8px;
  color: #7f93b1;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-coming-soon strong {
  font-size: 1rem;
}

.catalog-coming-soon p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.account-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(18, 216, 255, 0.28);
  border-radius: 24px 8px 24px 8px;
  color: var(--ink);
  background: #071023;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.72), 0 0 55px rgba(18, 216, 255, 0.1);
}

.account-dialog::backdrop {
  background: rgba(1, 4, 13, 0.82);
  backdrop-filter: blur(10px);
}

.order-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(18, 216, 255, 0.3);
  border-radius: 22px 7px 22px 7px;
  color: var(--ink);
  background: #071023;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.74), 0 0 58px rgba(18, 216, 255, 0.1);
}

.order-dialog::backdrop {
  background: rgba(1, 4, 13, 0.84);
  backdrop-filter: blur(10px);
}

.order-shell {
  position: relative;
  padding: 44px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 216, 255, 0.1), transparent 19rem),
    linear-gradient(145deg, rgba(8, 19, 43, 0.99), rgba(3, 8, 21, 0.99));
}

.order-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #b9c9df;
  background: rgba(4, 10, 26, 0.82);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.order-heading {
  padding-right: 42px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.order-heading h2 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.045em;
}

.order-heading > div > p:last-child {
  max-width: 510px;
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.6;
}

.order-mode {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 211, 78, 0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 211, 78, 0.06);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-product-summary {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(18, 216, 255, 0.2);
  border-radius: 13px;
  background: rgba(18, 216, 255, 0.045);
}

.order-product-summary span,
.review-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-product-summary > strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.customer-order-form {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.order-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.order-field-grid[hidden],
.order-review[hidden],
.review-grid > div[hidden],
.order-lock-note[hidden] {
  display: none;
}

.order-field-grid label,
.order-bank-field {
  display: grid;
  gap: 8px;
  color: #c8d6e9;
  font-size: 0.82rem;
  font-weight: 760;
}

.order-field-grid input,
.order-bank-field select {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(133, 177, 255, 0.22);
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: rgba(3, 10, 25, 0.82);
  font: inherit;
}

.order-field-grid input:focus,
.order-bank-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 216, 255, 0.1);
}

.order-field-grid small,
.order-bank-field small {
  color: #7589a8;
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.45;
}

.order-check {
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #95a8c2;
  background: rgba(5, 14, 34, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
}

.order-check input {
  margin-top: 2px;
  accent-color: var(--cyan);
}

.order-primary,
.order-secondary {
  min-height: 49px;
  padding: 0 18px;
  border-radius: 9px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.order-primary {
  border: 0;
  color: #051018;
  background: linear-gradient(135deg, var(--gold), #ffe68a);
}

.order-primary:disabled {
  color: #71839f;
  background: rgba(133, 177, 255, 0.1);
  cursor: not-allowed;
}

.order-secondary {
  border: 1px solid rgba(133, 177, 255, 0.24);
  color: #c1d0e4;
  background: transparent;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 14, 34, 0.7);
}

.review-grid > div {
  min-width: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.review-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.review-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.payment-safety {
  margin-top: 18px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
  border: 1px solid rgba(112, 255, 209, 0.22);
  border-radius: 11px;
  background: rgba(112, 255, 209, 0.045);
}

.payment-safety > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #03120d;
  background: var(--success);
  font-size: 0.75rem;
  font-weight: 950;
}

.payment-safety p {
  margin: 0;
  color: #a9bdd3;
  font-size: 0.78rem;
  line-height: 1.55;
}

.payment-safety strong {
  color: var(--success);
}

.order-review-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
}

.order-lock-note,
.order-feedback {
  color: #8193ae;
  font-size: 0.75rem;
  line-height: 1.5;
}

.order-lock-note {
  margin: 12px 0 0;
  text-align: center;
}

.order-feedback {
  min-height: 20px;
  margin: 20px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.order-feedback.is-error {
  color: #ff9c9c;
}

.account-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 590px;
}

.account-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #b9c9df;
  background: rgba(4, 10, 26, 0.78);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.account-close:hover,
.account-close:focus-visible {
  color: var(--cyan);
  border-color: rgba(18, 216, 255, 0.5);
}

.account-intro {
  padding: 48px 38px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(11, 38, 87, 0.95), rgba(4, 11, 27, 0.98)),
    radial-gradient(circle at 20% 0, rgba(18, 216, 255, 0.2), transparent 18rem);
}

.account-intro::after {
  content: "96";
  display: block;
  margin: 58px 0 -45px 88px;
  color: rgba(18, 216, 255, 0.045);
  font-size: 11rem;
  font-weight: 950;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.account-intro img {
  width: 150px;
  height: auto;
}

.account-kicker {
  margin: 62px 0 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.account-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4vw, 3.5rem);
}

.account-intro ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.account-intro li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: center;
  color: #c1d1e7;
  font-size: 0.92rem;
}

.account-intro li span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
}

.account-panel {
  padding: 64px 58px 42px;
  background: linear-gradient(145deg, rgba(8, 19, 43, 0.98), rgba(3, 8, 21, 0.98));
}

.account-heading h2 {
  margin-bottom: 8px;
  font-size: 2.3rem;
}

.account-heading > p:last-child {
  margin-bottom: 28px;
  color: var(--muted);
}

.account-form {
  display: none;
  gap: 17px;
}

.account-form.is-active {
  display: grid;
}

.account-form label:not(.check-label) {
  display: grid;
  gap: 8px;
  color: #c8d6e9;
  font-size: 0.84rem;
  font-weight: 750;
}

.account-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid rgba(133, 177, 255, 0.22);
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: rgba(3, 10, 25, 0.82);
  font: inherit;
  font-size: 0.94rem;
}

.account-form input:not([type="checkbox"]):focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 216, 255, 0.1);
}

.account-form input::placeholder {
  color: #5f7290;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #8fa2bc;
  font-size: 0.8rem;
  line-height: 1.5;
}

.check-label input {
  margin-top: 2px;
  accent-color: var(--cyan);
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--cyan);
  background: transparent;
  font: inherit;
  font-size: 0.79rem;
  cursor: pointer;
}

.account-submit {
  min-height: 51px;
  border: 0;
  border-radius: 9px;
  color: #061019;
  background: linear-gradient(135deg, var(--gold), #ffe68a);
  box-shadow: 0 12px 34px rgba(255, 211, 78, 0.12);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
}

.account-submit:hover,
.account-submit:focus-visible {
  filter: brightness(1.05);
}

.account-submit:disabled {
  cursor: wait;
  filter: grayscale(0.35);
  opacity: 0.68;
}

.form-note {
  margin: -4px 0 0;
  color: #8193ae;
  font-size: 0.78rem;
  line-height: 1.55;
}

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

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

.dashboard-head,
.dashboard-card-head,
.order-history-head,
.level-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-kicker,
.dashboard-card span,
.order-history-head > div > span {
  margin: 0 0 7px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dashboard-head h3 {
  margin: 0 0 6px;
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.dashboard-email {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.verified-chip,
.preview-chip,
.orders-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.verified-chip {
  border: 1px solid rgba(112, 255, 209, 0.35);
  color: var(--success);
  background: rgba(112, 255, 209, 0.07);
}

.verified-chip span {
  margin-right: 4px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 12px;
}

.dashboard-card,
.order-history {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 14, 34, 0.72);
}

.dashboard-card {
  min-height: 168px;
  padding: 20px;
}

.rewards-card {
  border-color: rgba(255, 211, 78, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 211, 78, 0.07), rgba(5, 14, 34, 0.7)),
    rgba(5, 14, 34, 0.72);
}

.preview-chip {
  margin: 0 !important;
  border: 1px solid rgba(255, 211, 78, 0.35);
  color: var(--gold) !important;
  background: rgba(255, 211, 78, 0.06);
}

.vip-live-chip {
  margin: 0 !important;
  padding: 4px 8px;
  border: 1px solid rgba(112, 255, 209, 0.35);
  border-radius: 999px;
  color: var(--success) !important;
  background: rgba(112, 255, 209, 0.07);
  font-size: 0.62rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.points-total {
  display: block;
  margin: 18px 0 5px;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.points-total small {
  color: #c9d8eb;
  font-size: 0.78rem;
}

.dashboard-card p,
.empty-orders p,
.order-main p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.level-track {
  height: 4px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.level-track span {
  display: block;
  width: 7%;
  height: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.level-labels {
  margin-top: 7px;
}

.level-labels span {
  margin: 0;
  color: #8193ae;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.vip-cycle {
  display: block;
  margin-top: 12px;
  color: #8193ae;
  font-size: 0.66rem;
  line-height: 1.45;
}

.security-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 216, 255, 0.28);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(18, 216, 255, 0.07);
}

.security-card > span {
  margin-bottom: 5px;
  color: #8193ae;
  letter-spacing: 0.08em;
}

.security-card strong {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.order-history {
  padding: 18px 20px;
}

.order-history h4 {
  margin: 0;
  font-size: 1rem;
}

.orders-count {
  color: #93a6c2;
  background: rgba(133, 177, 255, 0.08);
}

.empty-orders {
  margin-top: 16px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.empty-orders > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(133, 177, 255, 0.18);
  border-radius: 10px;
  color: #6d82a2;
  font-size: 0.76rem;
  font-weight: 900;
}

.empty-orders strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.order-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.order-list .empty-orders {
  margin-top: 0;
  border-top: 0;
}

.order-row {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.order-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-main {
  min-width: 0;
  flex: 1 1 auto;
}

.order-main strong,
.order-summary strong {
  display: block;
  font-size: 0.86rem;
}

.order-main p {
  margin-top: 5px;
}

.receipt-upload {
  max-width: 440px;
  margin-top: 13px;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(18, 216, 255, 0.2);
  border-radius: 10px;
  background: rgba(18, 216, 255, 0.045);
}

.receipt-upload label {
  display: grid;
  gap: 7px;
  color: #c8d6e9;
  font-size: 0.82rem;
  font-weight: 800;
}

.receipt-upload input {
  min-width: 0;
  color: #94a8c4;
  font: inherit;
  font-size: 0.75rem;
}

.receipt-upload small {
  color: #7186a5;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
}

.receipt-upload button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(18, 216, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(18, 216, 255, 0.08);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.receipt-upload button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.receipt-state {
  color: var(--success) !important;
  font-weight: 750;
}

.order-summary {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 6px;
}

.order-status {
  padding: 5px 8px;
  border: 1px solid rgba(18, 216, 255, 0.25);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(18, 216, 255, 0.06);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-completed {
  border-color: rgba(112, 255, 209, 0.32);
  color: var(--success);
  background: rgba(112, 255, 209, 0.06);
}

.status-cancelled,
.status-refunded {
  border-color: rgba(158, 176, 201, 0.22);
  color: #93a6c2;
  background: rgba(133, 177, 255, 0.05);
}

.dashboard-sign-out,
.dashboard-admin-link {
  min-height: 42px;
  border: 1px solid rgba(133, 177, 255, 0.2);
  border-radius: 9px;
  color: #aebfd5;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 211, 78, 0.32);
  color: var(--gold);
  background: rgba(255, 211, 78, 0.05);
  text-decoration: none;
}

.dashboard-admin-link[hidden] {
  display: none;
}

.dashboard-sign-out:hover,
.dashboard-sign-out:focus-visible,
.dashboard-admin-link:hover,
.dashboard-admin-link:focus-visible {
  border-color: rgba(18, 216, 255, 0.42);
  color: var(--cyan);
}

.terms-check {
  margin-top: 2px;
}

.account-status {
  min-height: 40px;
  margin: 22px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #7f91ac;
  font-size: 0.76rem;
  line-height: 1.45;
}

.how {
  padding: 132px 0 115px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 46px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

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

.step-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(12, 26, 56, 0.75), rgba(5, 12, 29, 0.8));
}

.step-card.featured {
  transform: translateY(-12px);
  border-color: rgba(18, 216, 255, 0.38);
  box-shadow: 0 23px 62px rgba(0, 120, 255, 0.08);
}

.step-number {
  display: inline-block;
  margin-bottom: 63px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step-card p,
.launch-copy > p,
.safety-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.launch-section {
  padding: 80px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 78px;
  align-items: center;
  border: 1px solid rgba(255, 211, 78, 0.23);
  border-radius: 26px 8px 26px 8px;
  background:
    linear-gradient(110deg, rgba(9, 22, 53, 0.93), rgba(5, 12, 28, 0.95)),
    radial-gradient(circle at 0 0, rgba(255, 211, 78, 0.14), transparent 20rem);
}

.launch-copy h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.55rem);
}

.status-panel {
  border-top: 1px solid var(--line);
}

.status-row {
  min-height: 78px;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.status-marker {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(158, 176, 201, 0.3);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.status-row.complete .status-marker {
  border-color: rgba(112, 255, 209, 0.45);
  color: var(--success);
  background: rgba(112, 255, 209, 0.07);
}

.status-row.pending .status-marker {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 8px var(--night), inset 0 0 0 11px var(--gold), 0 0 20px rgba(255, 211, 78, 0.2);
}

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

.status-row strong {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.status-row small {
  color: #8193ae;
  font-size: 0.78rem;
}

.safety-note {
  margin-top: 38px;
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(18, 216, 255, 0.16);
  background: rgba(5, 15, 36, 0.68);
}

.safety-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 216, 255, 0.5);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(18, 216, 255, 0.08);
}

.safety-note h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

footer {
  margin-top: 110px;
  padding: 42px 0 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 132px;
  height: auto;
}

.footer-brand p,
.footer-meta p {
  margin: 13px 0 0;
  color: #7285a2;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-meta {
  max-width: 510px;
  text-align: right;
}

@media (prefers-reduced-motion: no-preference) {
  .glow-orbit {
    animation: breathe 5s ease-in-out infinite;
  }

  @keyframes breathe {
    50% { transform: scale(1.035); opacity: 0.78; }
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

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

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

  .promise-strip span:nth-child(2) {
    border-right: 0;
  }

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

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

  .step-card,
  .step-card.featured {
    min-height: 0;
    transform: none;
  }

  .step-number {
    margin-bottom: 36px;
  }

  .launch-section {
    padding: 55px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .account-intro {
    padding: 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .account-intro .account-kicker,
  .account-intro h2,
  .account-intro ul,
  .account-intro::after {
    display: none;
  }

  .account-panel {
    padding: 48px 34px 34px;
  }

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

@media (max-width: 600px) {
  .site-header,
  .hero,
  .promise-strip,
  .catalog-section,
  .how,
  .launch-section,
  .safety-note,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 128px;
  }

  .site-header { position: relative; padding: 12px 0; align-items: flex-start; flex-direction: column; }
  .site-header .brand img { width: 132px; }
  .header-actions { width: 100%; gap: 16px; overflow-x: auto; scrollbar-width: none; }
  .header-actions::-webkit-scrollbar { display: none; }
  .site-header .account-trigger { position: absolute; top: 12px; right: 0; min-height: 38px; padding: 0 12px; }
  .header-link { display: inline-flex; flex: 0 0 auto; font-size: 0.72rem; }

  .account-trigger {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .account-dialog {
    width: min(100% - 20px, 1040px);
    max-height: calc(100dvh - 20px);
  }

  .account-intro {
    padding: 24px;
  }

  .account-panel {
    padding: 42px 20px 24px;
  }

  .dashboard-head {
    align-items: flex-start;
  }

  .order-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .receipt-upload {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .order-summary {
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .order-summary .order-status {
    justify-self: end;
  }

  .verified-chip {
    margin-right: 34px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .glow-orbit {
    width: 330px;
    height: 330px;
  }

  .launch-card {
    padding: 22px;
    transform: none;
  }

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

  .promise-strip span {
    padding-bottom: 12px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .promise-strip span:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .catalog-section {
    padding: 86px 0 20px;
  }

  .catalog-heading,
  .catalog-grid,
  .catalog-coming-soon {
    grid-template-columns: 1fr;
  }

  .catalog-status {
    justify-self: start;
  }

  .how {
    padding: 94px 0 80px;
  }

  .launch-section {
    padding: 38px 24px;
  }

  .safety-note {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  footer {
    margin-top: 80px;
    align-items: start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .account-dialog {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 18px 6px 18px 6px;
  }

  .order-dialog {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 18px 6px 18px 6px;
  }

  .order-shell {
    padding: 42px 20px 24px;
  }

  .order-heading {
    padding-right: 34px;
    display: block;
  }

  .order-mode {
    display: inline-flex;
    margin-bottom: 18px;
  }

  .order-field-grid,
  .review-grid,
  .order-review-actions {
    grid-template-columns: 1fr;
  }

  .review-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .order-product-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-intro {
    padding: 25px 22px;
  }

  .account-intro img {
    width: 126px;
  }

  .account-panel {
    padding: 44px 22px 26px;
  }

  .account-heading h2 {
    font-size: 2rem;
  }

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

  .form-options {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Multi-page marketplace routes */
.route-main {
  min-height: calc(100vh - 86px);
  overflow: hidden;
}

.route-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 48px;
  border-bottom: 1px solid var(--line);
}

.route-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.route-hero > p:last-child,
.store-route-hero > div > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.route-section {
  margin-top: 0;
  padding-top: 72px;
}

.store-route-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.store-page .catalog-section {
  padding-bottom: 40px;
}

.store-page {
  overflow: visible;
}

.route-cards a {
  color: inherit;
  text-decoration: none;
}

.route-cards .step-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-cards .step-card:hover,
.route-cards .step-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(18, 216, 255, 0.42);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.route-arrow {
  display: inline-block;
  margin-top: 26px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-contact {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 100px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(18, 216, 255, 0.2);
  border-radius: 20px 7px 20px 7px;
  background: rgba(5, 14, 34, 0.78);
}

.launch-contact h2 { margin: 0; font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -0.045em; }

.account-page-main { padding-bottom: 96px; }

.account-page-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 50px auto 0;
  overflow: hidden;
  border: 1px solid rgba(18, 216, 255, 0.28);
  border-radius: 24px 8px 24px 8px;
  background: #071023;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42), 0 0 55px rgba(18, 216, 255, 0.08);
}

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

.admin-main .admin-portal-head h1 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

@media (max-width: 900px) {
  .store-route-hero { align-items: start; flex-direction: column; }
  .account-page-shell { grid-template-columns: 1fr; }
  .account-page-shell .account-intro { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .route-hero { width: calc(100% - 28px); padding: 62px 0 34px; }
  .route-hero h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .route-section { padding-top: 52px; }
  .launch-contact { width: calc(100% - 28px); padding: 24px; align-items: stretch; flex-direction: column; }
  .account-page-shell { width: calc(100% - 20px); }
  .account-page-shell .account-panel { padding-top: 30px; }
}

/* Unified portal storefront — Option 1 */
.admin-nav-link[hidden],
.portal-admin-section[hidden],
.portal-admin-section [hidden],
.selection-fields[hidden] {
  display: none !important;
}

.catalog-section {
  width: min(1320px, calc(100% - 40px));
  padding-top: 104px;
}

.catalog-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
}

.catalog-status strong {
  font: inherit;
}

.catalog-tabs {
  margin: 34px 0 18px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.catalog-tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(133, 177, 255, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(5, 14, 34, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-tab.is-active,
.catalog-tab:hover,
.catalog-tab:focus-visible {
  border-color: rgba(18, 216, 255, 0.58);
  color: var(--ink);
  background: rgba(18, 216, 255, 0.1);
}

.catalog-subnav {
  margin: -2px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-subnav[hidden] {
  display: none;
}

.catalog-subnav button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 198, 76, 0.3);
  border-radius: 12px 4px 12px 4px;
  color: #d9e7ff;
  background: rgba(9, 21, 47, 0.86);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.catalog-subnav button.is-active,
.catalog-subnav button:hover,
.catalog-subnav button:focus-visible {
  border-color: var(--gold);
  color: #101525;
  background: linear-gradient(135deg, #ffe27a, #ffb726);
  box-shadow: 0 10px 28px rgba(255, 183, 38, 0.15);
}

.catalog-tab.is-vip {
  border-color: rgba(255, 191, 64, 0.38);
  color: #ffd778;
  background: rgba(91, 55, 5, 0.34);
}

.catalog-tab.is-vip.is-active,
.catalog-tab.is-vip:hover,
.catalog-tab.is-vip:focus-visible {
  border-color: #ffbf40;
  color: #fff8df;
  background: linear-gradient(135deg, rgba(179, 103, 5, 0.42), rgba(75, 42, 2, 0.52));
  box-shadow: 0 0 24px rgba(255, 174, 31, 0.15);
}

.catalog-tab.is-apple {
  border-color: rgba(204, 214, 230, 0.42);
  color: #e8edf5;
  background: rgba(70, 82, 103, 0.28);
}

.catalog-tab.is-apple.is-active,
.catalog-tab.is-apple:hover,
.catalog-tab.is-apple:focus-visible {
  border-color: #e8edf5;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(107, 119, 139, 0.45), rgba(28, 37, 55, 0.72));
}

.catalog-tab.is-playstation {
  border-color: rgba(78, 151, 255, 0.48);
  color: #a9d0ff;
  background: rgba(18, 55, 128, 0.32);
}

.catalog-tab.is-playstation.is-active,
.catalog-tab.is-playstation:hover,
.catalog-tab.is-playstation:focus-visible {
  border-color: #4e97ff;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(20, 88, 195, 0.72), rgba(8, 35, 91, 0.84));
}

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

.store-layout.is-family-view {
  grid-template-columns: 1fr;
}

.store-layout .catalog-grid.is-family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-family-card {
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(120, 173, 255, 0.25);
  border-radius: 22px 6px 22px 6px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: radial-gradient(circle at 88% 8%, rgba(18, 216, 255, 0.13), transparent 12rem), linear-gradient(145deg, rgba(9, 29, 63, 0.98), rgba(4, 10, 25, 0.99));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-family-card:hover,
.catalog-family-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(18, 216, 255, 0.68);
  box-shadow: 0 24px 50px rgba(0, 30, 90, 0.3);
}

.catalog-family-card.is-gift,
.catalog-family-card.is-apple {
  background: radial-gradient(circle at 88% 8%, rgba(232, 237, 245, 0.16), transparent 12rem), linear-gradient(145deg, rgba(35, 46, 68, 0.98), rgba(7, 12, 24, 0.99));
}

.catalog-family-card.is-playstation {
  background: radial-gradient(circle at 88% 8%, rgba(57, 132, 255, 0.24), transparent 12rem), linear-gradient(145deg, rgba(12, 46, 105, 0.98), rgba(5, 12, 28, 0.99));
}

.catalog-family-art {
  height: 160px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.catalog-family-art img {
  width: min(150px, 44%);
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

.catalog-family-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  letter-spacing: -0.035em;
}

.catalog-family-card p {
  min-height: 3em;
  color: var(--muted);
}

.family-card-action {
  margin-top: 18px;
  display: inline-block;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-layout .catalog-grid {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-product {
  min-width: 0;
  min-height: 248px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.catalog-product::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 30px rgba(18, 216, 255, 0.13);
  transition: opacity 180ms ease;
}

.catalog-product.is-selected {
  border-color: var(--cyan);
  background: linear-gradient(145deg, rgba(11, 43, 72, 0.98), rgba(4, 12, 29, 0.96));
}

.catalog-product.is-selected::after {
  opacity: 1;
}

.catalog-product.is-vip {
  border-color: rgba(255, 191, 64, 0.34);
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 194, 71, 0.16), transparent 8rem),
    linear-gradient(145deg, rgba(48, 31, 8, 0.97), rgba(10, 12, 24, 0.98));
}

.catalog-product.is-vip::before {
  content: "PREMIUM";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 215, 120, 0.45);
  border-radius: 999px;
  color: #fff1bf;
  background: rgba(123, 69, 0, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.catalog-product.is-vip .catalog-product-brand,
.catalog-product.is-vip .catalog-price strong {
  color: #ffcf61;
}

.catalog-product.is-vip .catalog-product-art img {
  filter: sepia(0.38) saturate(1.35) hue-rotate(350deg) drop-shadow(0 10px 20px rgba(255, 166, 28, 0.2));
}

.catalog-product.is-vip.is-selected {
  border-color: #ffbf40;
  background: linear-gradient(145deg, rgba(73, 45, 7, 0.99), rgba(14, 15, 27, 0.98));
}

.catalog-product.is-vip.is-rp {
  border-color: rgba(78, 156, 255, 0.58);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 202, 85, 0.2), transparent 8rem),
    linear-gradient(145deg, rgba(13, 62, 132, 0.98), rgba(5, 15, 36, 0.99));
}

.catalog-product.is-vip.is-rp::before {
  content: "RP";
  border-color: rgba(155, 205, 255, 0.68);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(20, 108, 218, 0.92), rgba(9, 50, 120, 0.94));
}

.catalog-product.is-vip.is-rp .catalog-product-brand {
  color: #9fd7ff;
}

.catalog-product.is-vip.is-rp.is-selected {
  border-color: #78c8ff;
  background: linear-gradient(145deg, rgba(18, 78, 160, 0.99), rgba(5, 17, 40, 0.99));
  box-shadow: inset 0 0 0 1px rgba(255, 210, 92, 0.45), 0 18px 44px rgba(0, 65, 155, 0.24);
}

.catalog-product.is-apple {
  border-color: rgba(203, 213, 225, 0.34);
  background:
    radial-gradient(circle at 88% 8%, rgba(226, 232, 240, 0.16), transparent 8rem),
    linear-gradient(145deg, rgba(32, 42, 61, 0.97), rgba(8, 13, 25, 0.98));
}

.catalog-product.is-apple .catalog-product-brand,
.catalog-product.is-apple .catalog-price strong {
  color: #e8edf5;
}

.catalog-product.is-apple.is-selected {
  border-color: #e8edf5;
  background: linear-gradient(145deg, rgba(57, 69, 90, 0.99), rgba(10, 15, 27, 0.98));
}

.catalog-product.is-playstation {
  border-color: rgba(78, 151, 255, 0.42);
  background: radial-gradient(circle at 88% 8%, rgba(57, 132, 255, 0.2), transparent 8rem), linear-gradient(145deg, rgba(12, 46, 105, 0.97), rgba(5, 12, 28, 0.99));
}

.catalog-product.is-playstation .catalog-product-brand,
.catalog-product.is-playstation .catalog-price strong { color: #91c4ff; }
.catalog-product.is-playstation.is-selected { border-color: #4e97ff; background: linear-gradient(145deg, rgba(18, 74, 160, 0.99), rgba(5, 17, 40, 0.99)); }

.catalog-product-art {
  height: 76px;
  margin: -6px 0 4px;
  display: grid;
  place-items: center;
}

.catalog-product-art img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.catalog-product h3 {
  margin: 13px 0 7px;
  font-size: 1.22rem;
}

.catalog-product p {
  min-height: 2.5em;
}

.catalog-price {
  padding-top: 15px;
}

.selection-panel {
  position: sticky;
  top: 24px;
  padding: 24px;
  border: 1px solid rgba(18, 216, 255, 0.28);
  border-radius: 18px 6px 18px 6px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 216, 255, 0.13), transparent 13rem),
    linear-gradient(145deg, rgba(8, 20, 46, 0.98), rgba(3, 9, 23, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.selection-eyebrow {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-product {
  margin-top: 18px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.selection-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.selection-product span,
.selection-price span {
  color: var(--muted);
  font-size: 0.76rem;
}

.selection-product strong {
  margin-top: 4px;
  display: block;
  font-size: 1.13rem;
}

.selection-price {
  padding: 20px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.selection-price strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.selection-vip {
  margin: -8px 0 18px;
  padding: 12px;
  border: 1px solid rgba(255, 211, 78, 0.24);
  border-radius: 10px;
  background: rgba(255, 211, 78, 0.06);
}

.selection-vip > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.selection-vip span,
.selection-vip small {
  color: #aebfd5;
  font-size: 0.68rem;
}

.selection-vip strong {
  color: var(--gold);
  font-size: 0.78rem;
}

.selection-vip small {
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}

.selection-fields {
  display: grid;
  gap: 12px;
}

.selection-fields label {
  display: grid;
  gap: 7px;
  color: #cbd9eb;
  font-size: 0.76rem;
  font-weight: 750;
}

.selection-fields input {
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(133, 177, 255, 0.22);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(2, 8, 21, 0.8);
  font: inherit;
}

.selection-fields input:focus {
  outline: 2px solid rgba(18, 216, 255, 0.22);
  border-color: var(--cyan);
}

.selection-note {
  margin: 17px 0;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  border: 1px solid rgba(112, 255, 209, 0.18);
  border-radius: 10px;
  color: #c9f8e9;
  background: rgba(112, 255, 209, 0.05);
  font-size: 0.74rem;
  line-height: 1.5;
}

.selection-note span {
  color: var(--success);
}

.selection-action {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: #06101d;
  background: linear-gradient(135deg, var(--gold), #ffb51b);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 193, 45, 0.14);
}

.selection-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.selection-panel > small {
  margin-top: 12px;
  display: block;
  color: #7488a5;
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.portal-admin-section {
  width: min(1320px, calc(100% - 40px));
  margin: 104px auto 0;
  padding: 40px;
  scroll-margin-top: 24px;
  border: 1px solid rgba(255, 211, 78, 0.2);
  border-radius: 24px 8px 24px 8px;
  background: rgba(3, 9, 24, 0.72);
}

.admin-portal-head {
  padding-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-portal-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.admin-portal-head p:last-child {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .store-layout .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .store-layout { grid-template-columns: 1fr; }
  .store-layout .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selection-panel { position: static; }
  .store-layout .catalog-grid.is-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portal-admin-section { padding: 28px; }
  .admin-portal-head { align-items: start; flex-direction: column; }
}

@media (max-width: 600px) {
  .catalog-section,
  .portal-admin-section { width: calc(100% - 28px); }
  .approval-flow { width: calc(100% - 28px); grid-template-columns: 1fr; margin-top: -10px; }
  .approval-flow > div { padding: 9px 10px; }
  .store-layout .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-layout .catalog-grid.is-family-grid { grid-template-columns: 1fr; }
  .catalog-family-card { min-height: 300px; padding: 20px; }
  .catalog-family-art { height: 130px; }
  .catalog-family-art img { height: 125px; }
  .catalog-product { min-height: 226px; padding: 14px; }
  .catalog-product-art { height: 66px; }
  .catalog-product-art img { width: 78px; height: 78px; }
  .catalog-product h3 { font-size: 1.05rem; }
  .catalog-product p { display: none; }
  .catalog-price { align-items: start; flex-direction: column; gap: 5px; }
  .catalog-price strong { font-size: 1.02rem; }
  .portal-admin-section { padding: 22px 14px; }
}

/* Mobile Legends catalogue and refreshed home */
.game-launch-card {
  transform: rotate(1deg);
}

.product-showcase {
  align-content: center;
  grid-template-rows: 440px auto;
}

.showcase-stage {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  height: 440px;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 430px;
  transform: translateX(24px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms;
}

.showcase-slide.is-active {
  z-index: 2;
  transform: translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.showcase-slide > a {
  margin-top: 18px;
  display: inline-flex;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.showcase-controls {
  position: relative;
  z-index: 3;
  width: min(390px, 100%);
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 14px;
  align-items: center;
}

.showcase-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(133, 177, 255, 0.28);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(8, 22, 52, 0.88);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
}

.showcase-controls > button:hover,
.showcase-controls > button:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.showcase-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #425678;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.showcase-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.game-launch-art {
  height: 190px;
  display: grid;
  place-items: center;
}

.game-launch-art img {
  width: 210px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 128, 255, 0.3));
}

.game-launch-card > a {
  margin-top: 18px;
  display: inline-flex;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-games {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 10px;
  scroll-margin-top: 40px;
}

.featured-games .section-heading {
  max-width: 760px;
}

.featured-games .section-heading h2,
.mlbb-shop-head h2,
.mlbb-how h2 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.featured-games .section-heading > p:last-child,
.mlbb-shop-head > div > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.game-feature-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.game-feature-card {
  min-height: 300px;
  padding: 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px 7px 22px 7px;
  color: inherit;
  background: linear-gradient(145deg, rgba(12, 28, 61, 0.92), rgba(4, 11, 27, 0.96));
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-feature-card:hover,
.game-feature-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(18, 216, 255, 0.48);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.3);
}

.game-feature-art {
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(18, 216, 255, 0.12), transparent 66%);
}

.game-feature-art img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.game-feature-card span,
.game-feature-card strong {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-feature-card h3 {
  margin: 12px 0;
  font-size: 1.8rem;
  letter-spacing: -0.035em;
}

.game-feature-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.mlbb-feature {
  border-color: rgba(78, 133, 255, 0.34);
  background: radial-gradient(circle at 10% 50%, rgba(42, 88, 255, 0.18), transparent 18rem), linear-gradient(145deg, rgba(11, 29, 74, 0.96), rgba(4, 11, 27, 0.96));
}

.apple-feature {
  border-color: rgba(203, 213, 225, 0.34);
  background: radial-gradient(circle at 10% 50%, rgba(203, 213, 225, 0.16), transparent 20rem), linear-gradient(145deg, rgba(31, 42, 61, 0.96), rgba(4, 11, 27, 0.96));
}

.apple-feature span,
.apple-feature strong {
  color: #e8edf5;
}

.playstation-feature {
  border-color: rgba(78, 151, 255, 0.4);
  background: radial-gradient(circle at 10% 50%, rgba(45, 116, 255, 0.2), transparent 20rem), linear-gradient(145deg, rgba(12, 45, 104, 0.97), rgba(4, 11, 27, 0.97));
}

.playstation-feature span,
.playstation-feature strong { color: #91c4ff; }

.catalog-game-link {
  min-width: 300px;
  padding: 11px 15px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(18, 216, 255, 0.24);
  border-radius: 14px;
  color: inherit;
  background: rgba(9, 24, 55, 0.82);
  text-decoration: none;
}

.catalog-game-link:hover,
.catalog-game-link:focus-visible {
  border-color: var(--cyan);
}

.catalog-game-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.catalog-game-link small,
.catalog-game-link strong {
  display: block;
}

.catalog-game-link small {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-game-link strong {
  font-size: 0.83rem;
}

.mlbb-page {
  overflow: visible;
}

.mlbb-hero {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.mlbb-breadcrumb {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #768aa7;
  font-size: 0.78rem;
  font-weight: 750;
}

.mlbb-breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.mlbb-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mlbb-hero-copy h1 {
  max-width: 800px;
  margin: 0 0 26px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.mlbb-hero-copy h1 em {
  display: block;
}

.mlbb-hero-copy > p:not(.section-kicker) {
  max-width: 690px;
  color: #b8c7dc;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.mlbb-trust-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mlbb-trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(133, 177, 255, 0.17);
  border-radius: 999px;
  color: #93a8c4;
  background: rgba(5, 14, 34, 0.66);
  font-size: 0.7rem;
  font-weight: 750;
}

.mlbb-hero-art {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.mlbb-art-glow {
  position: absolute;
  width: min(420px, 85%);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 216, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 255, 0.2), transparent 65%);
  box-shadow: 0 0 80px rgba(0, 102, 255, 0.13);
}

.mlbb-hero-art > img {
  position: relative;
  z-index: 1;
  width: min(430px, 88%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 42, 120, 0.48));
}

.mlbb-package-count {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 9%;
  padding: 14px 18px;
  display: grid;
  border: 1px solid rgba(255, 211, 78, 0.32);
  border-radius: 14px 5px 14px 5px;
  background: rgba(4, 11, 27, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

.mlbb-package-count strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.mlbb-package-count span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.mlbb-shop {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 40px;
  scroll-margin-top: 20px;
}

.mlbb-shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.mlbb-shop-head > div {
  max-width: 780px;
}

.mlbb-preview-badge {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 211, 78, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 211, 78, 0.06);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlbb-region-row,
.mlbb-filter-row {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
}

.mlbb-region-row {
  margin-top: 38px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(6, 16, 38, 0.7);
}

.mlbb-region-row > span {
  margin-right: 7px;
  color: #cbd7e9;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.mlbb-region-row button,
.mlbb-filter-row button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(133, 177, 255, 0.2);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(5, 14, 34, 0.7);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
}

.mlbb-region-row button.is-active,
.mlbb-filter-row button.is-active {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(255, 211, 78, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 78, 0.18);
}

.mlbb-region-row button:disabled {
  opacity: 0.38;
}

.mlbb-filter-row {
  margin: 20px 0;
}

.mlbb-filter-row button {
  border-radius: 999px;
  cursor: pointer;
}

.mlbb-filter-row button[data-mlbb-filter="passes"] {
  border-color: rgba(188, 139, 255, 0.45);
  color: #dbc8ff;
  background: rgba(86, 40, 136, 0.22);
}

.mlbb-filter-row button[data-mlbb-filter="passes"].is-active {
  border-color: #d6a8ff;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(126, 66, 186, 0.58), rgba(58, 28, 104, 0.72));
  box-shadow: 0 0 22px rgba(174, 102, 255, 0.17);
}

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

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

.mlbb-package-card {
  min-width: 0;
  min-height: 240px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(133, 177, 255, 0.17);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(11, 25, 55, 0.94), rgba(4, 10, 25, 0.96));
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mlbb-package-card:hover,
.mlbb-package-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(18, 216, 255, 0.5);
}

.mlbb-package-card.is-selected {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(16, 46, 83, 0.98), rgba(5, 13, 31, 0.98));
  box-shadow: inset 0 0 0 1px rgba(18, 216, 255, 0.4), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.mlbb-package-card.is-premium {
  border-color: rgba(190, 135, 255, 0.44);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 211, 78, 0.18), transparent 7rem),
    linear-gradient(145deg, rgba(71, 34, 113, 0.96), rgba(14, 11, 35, 0.98));
}

.mlbb-package-card.is-premium:hover,
.mlbb-package-card.is-premium:focus-visible {
  border-color: #d5a5ff;
  box-shadow: 0 14px 34px rgba(74, 26, 129, 0.24);
}

.mlbb-package-card.is-premium.is-selected {
  border-color: #f0c76a;
  background: linear-gradient(145deg, rgba(93, 45, 146, 0.99), rgba(19, 13, 45, 0.99));
  box-shadow: inset 0 0 0 1px rgba(224, 181, 255, 0.48), 0 18px 40px rgba(72, 24, 126, 0.28);
}

.mlbb-package-card.is-premium > span {
  color: #e4c6ff;
}

.mlbb-package-card.is-premium > em {
  color: #ffd872;
}

.mlbb-package-card.is-premium img {
  filter: hue-rotate(38deg) saturate(1.25) drop-shadow(0 12px 18px rgba(116, 48, 181, 0.38));
}

.mlbb-package-card img {
  width: 74px;
  height: 74px;
  margin: -4px auto 8px;
  align-self: center;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 56, 180, 0.36));
}

.mlbb-package-card > span {
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mlbb-package-card > strong {
  margin-top: 7px;
  font-size: 1rem;
}

.mlbb-package-card > small {
  margin-top: 9px;
  color: #7e91ad;
  font-size: 0.67rem;
}

.mlbb-package-card > em {
  margin-top: auto;
  padding-top: 15px;
  color: var(--gold);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.mlbb-selection {
  position: sticky;
  top: 24px;
  padding: 25px;
  border: 1px solid rgba(18, 216, 255, 0.3);
  border-radius: 18px 6px 18px 6px;
  background: radial-gradient(circle at 100% 0, rgba(18, 216, 255, 0.14), transparent 14rem), linear-gradient(145deg, rgba(8, 20, 46, 0.99), rgba(3, 9, 23, 0.99));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.mlbb-selected-product {
  margin-top: 18px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mlbb-selected-product img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.mlbb-selected-product span,
.mlbb-selected-price span {
  color: var(--muted);
  font-size: 0.72rem;
}

.mlbb-selected-product strong {
  margin-top: 5px;
  display: block;
  font-size: 1.12rem;
}

.mlbb-selected-price {
  padding: 20px 0;
  display: grid;
  gap: 9px;
}

.mlbb-selected-price > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.mlbb-selected-price strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.mlbb-selected-price small {
  color: #7387a5;
  font-size: 0.7rem;
}

.mlbb-customer-fields {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
}

.mlbb-customer-fields label {
  display: grid;
  gap: 7px;
  color: #cbd9eb;
  font-size: 0.74rem;
  font-weight: 750;
}

.mlbb-customer-fields input {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(133, 177, 255, 0.22);
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: rgba(2, 8, 21, 0.8);
  font: inherit;
  font-size: 0.8rem;
}

.mlbb-customer-fields input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 216, 255, 0.1);
}

.mlbb-help {
  margin: 14px 0 18px;
  color: #8398b5;
  font-size: 0.72rem;
  line-height: 1.55;
}

.mlbb-how {
  width: min(1180px, calc(100% - 40px));
  margin: 80px auto 110px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 22px 7px 22px 7px;
  background: rgba(6, 16, 38, 0.72);
}

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

.mlbb-how li {
  padding: 17px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border: 1px solid rgba(133, 177, 255, 0.13);
  border-radius: 12px;
  background: rgba(4, 11, 27, 0.64);
}

.mlbb-how li > span {
  grid-row: 1 / 3;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.mlbb-how li p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.mlbb-review-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(18, 216, 255, 0.3);
  border-radius: 20px 7px 20px 7px;
  color: var(--ink);
  background: #071023;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.72);
}

.mlbb-review-dialog::backdrop {
  background: rgba(1, 4, 13, 0.84);
  backdrop-filter: blur(10px);
}

.mlbb-review-dialog > div {
  position: relative;
  padding: 38px;
}

.mlbb-review-dialog h2 {
  margin-bottom: 22px;
  font-size: 2.4rem;
  letter-spacing: -0.045em;
}

.mlbb-review-dialog dl {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.mlbb-review-dialog dl > div {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.mlbb-review-dialog dl > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.mlbb-review-dialog dt {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlbb-review-dialog dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.85rem;
  font-weight: 750;
}

.mlbb-review-dialog .payment-safety {
  grid-template-columns: 28px 1fr;
}

.mlbb-review-dialog .order-primary {
  width: 100%;
}

@media (max-width: 1120px) {
  .game-feature-card { grid-template-columns: 145px 1fr; padding: 24px; }
  .game-feature-art img { width: 145px; height: 145px; }
  .mlbb-package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .game-feature-grid,
  .mlbb-hero-grid,
  .mlbb-layout,
  .mlbb-how { grid-template-columns: 1fr; }
  .game-feature-card { grid-template-columns: 180px 1fr; }
  .mlbb-hero-grid { gap: 16px; }
  .mlbb-hero-art { min-height: 370px; }
  .mlbb-selection { position: static; }
  .mlbb-how { gap: 24px; }
}

@media (max-width: 700px) {
  .featured-games,
  .mlbb-hero,
  .mlbb-shop,
  .mlbb-how { width: calc(100% - 28px); }
  .featured-games { padding-top: 84px; }
  .product-showcase { grid-template-rows: 420px auto; }
  .showcase-stage { height: 420px; }
  .showcase-slide { min-height: 405px; }
  .showcase-slide .game-launch-art { height: 160px; }
  .showcase-slide .game-launch-art img { width: 175px; max-height: 155px; }
  .game-feature-card { grid-template-columns: 1fr; }
  .game-feature-art { height: 150px; }
  .game-feature-art img { width: 140px; height: 140px; }
  .mlbb-hero { padding-top: 24px; }
  .mlbb-hero-grid { padding-top: 40px; }
  .mlbb-hero-copy h1 { font-size: clamp(3.1rem, 17vw, 5.2rem); }
  .mlbb-hero-art { min-height: 320px; }
  .mlbb-hero-art > img { width: 300px; max-height: 300px; }
  .mlbb-shop { padding-top: 66px; }
  .mlbb-shop-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .mlbb-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mlbb-package-card { min-height: 220px; padding: 14px; }
  .mlbb-package-card img { width: 62px; height: 62px; }
  .mlbb-customer-fields { grid-template-columns: 1fr; }
  .mlbb-how { padding: 24px 18px; }
  .mlbb-review-dialog > div { padding: 34px 22px 24px; }
  .mlbb-review-dialog dl { grid-template-columns: 1fr; }
  .mlbb-review-dialog dl > div:nth-child(odd) { border-right: 0; }
}
