:root {
  color-scheme: light;
  --bg: #f3f5f8;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-2: rgba(255, 255, 255, 0.98);
  --line: rgba(16, 24, 40, 0.11);
  --text: #08111f;
  --muted: #667085;
  --blue: #0657ff;
  --gold: #c99a2e;
  --green: #4cd69c;
  --danger: #ff6b6b;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #050608;
}
body {
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #eef2f7 100%);
  color: var(--text);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
input, textarea, select, button { max-width: 100%; }

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 28px), var(--max));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 70px rgba(16, 24, 40, 0.14);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand-logo { display: block; width: 246px; max-width: 48vw; height: auto; }
.brand span, .avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, #f2d181, var(--gold) 58%, #8d6924);
  color: #080a0e;
  font-weight: 950;
}
.avatar {
  overflow: hidden;
  object-fit: cover;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  min-height: 42px;
  padding: 12px;
  border-radius: 7px;
  color: #364152;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover, .main-nav .nav-cta {
  background: #eef4ff;
  color: #08111f;
}
.main-nav .nav-cta {
  background: #08111f;
  color: #fff;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
}
.lang-switch a {
  min-height: 30px;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 12px;
}
.lang-switch a.active {
  background: #2f83ff;
  color: #fff;
}
.nav-icon {
  display: inline-grid;
  width: 42px;
  min-width: 42px;
  place-items: center;
  padding: 0;
  font-size: 20px;
}
.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 220px;
  padding: 6px 10px 6px 6px;
}
.user-chip span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-chip-photo,
.table-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  min-width: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #62dce2, #0875d7);
  color: #fff;
  object-fit: cover;
  font-size: 12px;
  font-weight: 950;
}
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--text); }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }

.flash {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 28px), 720px);
  padding: 14px 16px;
  border: 1px solid rgba(215, 173, 85, 0.42);
  border-radius: 8px;
  background: rgba(33, 26, 12, 0.95);
  color: #ffe5a8;
  transform: translateX(-50%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  align-items: center;
  padding: 140px 24px 60px;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; opacity: 0.84; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.68) 48%, rgba(5, 7, 11, 0.16)), linear-gradient(0deg, #111827, transparent 34%); }
.hero-content, .section, .footer { position: relative; width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.hero h1, .page-hero h1, .workspace h1 { max-width: 790px; margin: 14px 0 0; font-size: clamp(42px, 8vw, 88px); line-height: 0.96; letter-spacing: 0; }
.hero p, .page-hero > p { max-width: 650px; color: #d7deed; font-size: 19px; line-height: 1.62; }
.page-hero > p, .workspace > p, .section-heading p:last-child { color: var(--muted); }
.hero h1, .hero .eyebrow { color: #fff; }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}
.button.primary { background: linear-gradient(135deg, #f2d181, var(--gold) 58%, #8d6924); color: #080a0e; }
.button.secondary { border-color: var(--line); background: #fff; color: var(--text); }

.metric-grid, .cards {
  display: grid;
  gap: 14px;
}
.metric-grid { max-width: 860px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 54px; }
.metric-grid article, .card, .panel, .stat, .side-nav {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(16, 24, 40, 0.11);
  backdrop-filter: blur(18px);
}
.hero .metric-grid article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.hero .metric-grid span { color: #d7deed; }
.metric-grid article, .card, .panel, .stat { padding: 22px; }
.metric-grid strong, .stat strong, .price strong { display: block; font-size: 32px; }
.metric-grid span, .card p, .card small, .card li, .stat span, .stat small, .price span { color: var(--muted); }

.market-strip {
  display: flex;
  gap: 42px;
  overflow: hidden;
  padding: 16px 24px;
  border-block: 1px solid var(--line);
  background: #08111f;
  color: #87efc6;
  white-space: nowrap;
  font-weight: 900;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.section { padding: 64px 0; position: relative; }
.section-heading { display: grid; grid-template-columns: 1fr 0.78fr; gap: 42px; align-items: end; margin-bottom: 32px; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(32px, 5vw, 56px); line-height: 1.04; }
.section-heading p:last-child { color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr); gap: 16px; }
.stack { display: grid; gap: 14px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pill { padding: 7px 10px; border-radius: 999px; background: rgba(76, 214, 156, 0.16); color: var(--green); font-size: 12px; font-weight: 900; }
canvas { display: block; width: 100%; min-height: 240px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card h2, .card h3 { margin-top: 0; }
.card a { color: var(--gold); font-weight: 900; }
.article-body { max-width: 820px; }
.article-body p { font-size: 18px; line-height: 1.8; }
.product .number {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(215, 173, 85, 0.45);
  border-radius: 7px;
  color: var(--gold);
  font-size: 38px;
  font-weight: 950;
}
.product ul { padding-left: 18px; min-height: 116px; }
.product a { color: var(--gold); font-weight: 900; }
.broker-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 56px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #08111f, #102543 58%, #0b1320);
  color: #fff;
}
.broker-band h2 { margin: 8px 0; font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.broker-list { display: grid; gap: 10px; }
.broker-list article,
.broker-card { display: flex; gap: 16px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); }
.broker-list article > span,
.broker-card > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 7px; background: rgba(30, 136, 255, 0.18); color: #9ccaff; font-weight: 950; }
.broker-list small { display: block; color: #d7deed; margin-top: 4px; }
.broker-card em {
  display: block;
  margin-top: 8px;
  color: #70a8ff;
  font-style: normal;
  font-weight: 950;
}
.broker-logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.admin-logo-preview {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}
.admin-logo-preview { width: 38px; height: 38px; margin-right: 8px; vertical-align: middle; }

.vip-telegram {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 44px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16, 24, 40, 0.11);
}
.vip-telegram h2 { margin: 8px 0; font-size: clamp(32px, 5vw, 58px); line-height: 1; }
.vip-telegram p { max-width: 650px; color: var(--muted); line-height: 1.65; }
.vip-steps { display: grid; gap: 10px; min-width: 260px; }
.vip-steps article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: #f3f6fb;
}
.vip-steps strong { color: var(--blue); }

.page-hero { padding-top: 150px; }
.pricing-row { margin-top: 28px; }
.price form { margin-top: 18px; }

.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 120px 16px 40px; }
.auth-card { width: min(100%, 460px); padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel-2); box-shadow: 0 22px 70px rgba(16, 24, 40, 0.12); }
.auth-card h1 { margin: 8px 0 20px; font-size: 42px; }
.hint { color: var(--muted); font-size: 13px; line-height: 1.6; }

label { display: grid; gap: 8px; margin: 12px 0; color: #dce4f4; font-weight: 800; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }

.app-shell {
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  margin: 0 auto;
  padding: 128px 0 70px;
}
.workspace,
.side-nav,
.card,
.cards {
  min-width: 0;
}
.side-nav { position: sticky; top: 98px; align-self: start; padding: 18px; }
.side-nav strong { display: block; margin: 10px 0 18px; }
.side-nav a {
  display: block;
  min-height: 42px;
  padding: 12px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.side-nav a:hover, .side-nav a.active { background: #eef4ff; color: #08111f; }
.workspace h1 { font-size: clamp(34px, 5vw, 62px); }
.access-list { padding-left: 18px; }

table { width: 100%; margin-top: 20px; border-collapse: collapse; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
th, td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--gold); font-size: 13px; text-transform: uppercase; }
td { color: #dce4f4; }
.inline-form { display: inline; }
.inline-form button, td button { min-height: 36px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, 0.08); color: var(--text); cursor: pointer; }
.inline-form select { width: auto; min-width: 130px; margin-right: 6px; }
.report-form { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; align-items: end; }
.report-form label { margin: 0; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}
.footer span { display: block; margin-top: 5px; color: var(--muted); }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(360px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
  }
  .topbar.open .main-nav { display: flex; }
  .section-heading, .split, .broker-band, .app-shell { grid-template-columns: 1fr; }
  .cards.four, .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vip-telegram { grid-template-columns: 1fr; }
  .report-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-nav { position: static; }
}

@media (max-width: 680px) {
  .hero { min-height: 92svh; padding: 112px 16px 28px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .actions .button { flex: 1 1 150px; }
  .metric-grid, .cards.four, .cards.three, .cards.two, .report-form { grid-template-columns: 1fr; }
  .metric-grid { margin-top: 28px; }
  .section { width: min(calc(100% - 24px), var(--max)); padding: 64px 0; }
  .page-hero { padding-top: 130px; }
  .app-shell { width: min(calc(100% - 24px), var(--max)); padding-top: 112px; }
  .broker-band { padding: 34px 18px; }
  table { display: block; overflow-x: auto; }
  .footer { align-items: stretch; flex-direction: column; }
}

/* Premium dark front office theme for Next Move Academy */
.front {
  --ft-bg: #050608;
  --ft-card: #171719;
  --ft-card-2: #202023;
  --ft-line: rgba(255, 255, 255, 0.12);
  --ft-muted: rgba(255, 255, 255, 0.66);
  --ft-blue: #2f83ff;
  --ft-green: #52bf7a;
  --ft-orange: #ff8618;
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 131, 255, .12), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(138, 43, 226, .10), transparent 40%),
    #050608;
  color: #fff;
}
.front .topbar {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: var(--ft-line);
  background: rgba(6, 8, 12, 0.74);
  box-shadow: none;
  transform: none;
}
.front .brand { color: #fff; }
.front .brand span {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff, #96bfff);
  color: #050608;
}
.front .main-nav a { color: rgba(255,255,255,.83); }
.front .main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.front .main-nav .nav-cta {
  background: linear-gradient(180deg, #63a6ff, #2f83ff);
  color: #fff;
  box-shadow: 0 10px 32px rgba(47, 131, 255, .38);
}
.front .hero {
  min-height: 920px;
  padding-top: 118px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 6%, rgba(47, 131, 255, .54), transparent 26%),
    linear-gradient(180deg, #09131f 0, #050608 45%, #050608 100%);
}
.front .hero-media { opacity: .16; filter: saturate(1.1) contrast(1.04); }
.front .hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,.25), rgba(5,6,8,.96) 74%),
    radial-gradient(circle at 50% 10%, rgba(47,131,255,.54), transparent 34%);
}
.front .hero-content { display: grid; justify-items: center; }
.front .hero-badge {
  display: inline-flex;
  width: auto;
  margin: 10px auto 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-weight: 900;
}
.front .hero h1 {
  max-width: 1120px;
  margin: 10px auto 0;
  font-size: clamp(54px, 7.9vw, 132px);
  line-height: .96;
  text-transform: none;
}
.front .hero p {
  margin-inline: auto;
  color: rgba(255,255,255,.68);
  font-size: 22px;
}
.front .actions { justify-content: center; }
.front .button {
  min-height: 56px;
  border-radius: 8px;
  padding: 15px 22px;
}
.front .button.primary {
  background: linear-gradient(180deg, #61a5ff, #2f83ff);
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 131, 255, .35);
}
.front .button.secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.front .button.ghost {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  align-items: center;
  color: #fff;
  font-weight: 900;
}
.trust-row a { color: rgba(255,255,255,.76); text-decoration: underline; }
.stars {
  display: inline-flex;
  padding: 3px 8px;
  background: #43b77a;
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}
.front .metric-grid {
  width: min(100%, 980px);
  margin-top: 82px;
  padding-top: 36px;
  border-top: 1px solid var(--ft-line);
}
.front .metric-grid article,
.front .card,
.front .panel,
.front .stat {
  border-color: var(--ft-line);
  background: var(--ft-card);
  box-shadow: none;
  color: #fff;
}
.front .metric-grid span,
.front .card p,
.front .card small,
.front .card li,
.front .stat span,
.front .stat small,
.front .price span,
.front .section-heading p:last-child,
.front .page-hero > p {
  color: var(--ft-muted);
}
.front .market-strip {
  justify-content: center;
  border-color: var(--ft-line);
  background: #06070a;
  color: rgba(255,255,255,.68);
}
.front .section { color: #fff; }
.front .section-heading h2,
.front .page-hero h1 { color: #fff; }
.front .eyebrow { color: #68aaff; }

.ft-section {
  position: relative;
  width: min(calc(100% - 32px), 1640px);
  margin: 0 auto;
  padding: 104px 0;
  color: #fff;
}
.ft-heading { text-align: center; margin: 0 auto 42px; }
.ft-heading h2,
.how-section > h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 1.02;
}
.ft-heading p { margin: 14px auto 0; max-width: 780px; color: var(--ft-muted); font-size: 22px; }
.challenge-section {
  background:
    radial-gradient(circle at 50% 0, rgba(48, 132, 255, .48), transparent 28%),
    linear-gradient(180deg, #050608, #050608);
}
.challenge-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(720px, 100%);
  margin: 0 auto 42px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255,255,255,.19);
}
.challenge-toggle button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 26px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,.72);
  text-align: left;
  cursor: pointer;
}
.challenge-toggle button span { grid-row: span 2; font-size: 30px; }
.challenge-toggle button strong { font-size: 22px; color: currentColor; }
.challenge-toggle button small { color: currentColor; font-weight: 800; }
.challenge-toggle .is-active { background: #fff; color: #07080b; }
.challenge-tools {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-block: 1px solid var(--ft-line);
}
.currency-pills,
.switch-tools { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.currency-pills button {
  min-height: 54px;
  padding: 13px 20px;
  border: 0;
  border-radius: 14px;
  background: #202124;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.currency-pills .is-active {
  outline: 1px solid rgba(255,255,255,.46);
  background: #55575e;
}
.mini-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #fff;
}
.mini-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}
.mini-switch span {
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #202124;
}
.mini-switch span::before {
  display: block;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform .2s ease;
}
.mini-switch input:checked + span::before { transform: translateX(26px); }
.challenge-board {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-top: 36px;
}
.objective-list {
  display: grid;
  gap: 26px;
  padding-bottom: 62px;
  color: rgba(255,255,255,.85);
  font-size: 20px;
  font-weight: 900;
}
.objective-list span {
  padding-bottom: 4px;
  border-bottom: 1px dashed rgba(255,255,255,.38);
}
.challenge-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 16px;
}
.challenge-cards article {
  position: relative;
  min-height: 540px;
  padding: 34px 32px 28px;
  border: 1px solid var(--ft-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #171719, #141416);
}
.challenge-cards .is-featured {
  background: radial-gradient(circle at 50% -4%, rgba(255, 134, 24, .4), transparent 32%), linear-gradient(180deg, #22170e, #141416);
}
.challenge-cards small { color: var(--ft-muted); font-weight: 900; }
.challenge-cards h3 { margin: 4px 0 28px; font-size: 34px; }
.challenge-cards ul {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  list-style: none;
}
.challenge-cards li { display: flex; justify-content: space-between; gap: 10px; color: var(--ft-muted); font-weight: 900; }
.challenge-cards .green { color: #53d76b; }
.challenge-cards article[hidden] { display: none; }
.challenge-cards article.is-filtered {
  grid-column: span 2;
  min-height: 500px;
  box-shadow: 0 34px 90px rgba(47,131,255,.16);
}
.feature-muted {
  opacity: .28;
  text-decoration: line-through;
}
.pricing-page {
  min-height: 100vh;
  padding-top: 96px;
  background: #050608;
  color: #fff;
  overflow: clip;
}
.pricing-page .top-note {
  color: var(--ft-muted);
}
.pricing-challenge {
  width: min(calc(100% - 28px), 1980px);
  padding-top: 42px;
}
.pricing-challenge .ft-heading {
  margin-bottom: 38px;
}
.pricing-challenge .ft-heading h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(42px, 5vw, 88px);
  line-height: .98;
}
.pricing-offer-cards article {
  min-height: 640px;
  display: flex;
  flex-direction: column;
}
.offer-price {
  display: grid;
  gap: 2px;
  margin: -12px 0 18px;
}
.offer-price strong {
  color: #fff;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1;
}
.offer-price span,
.trial-note {
  color: rgba(255,255,255,.58);
  font-weight: 850;
}
.pricing-card-form {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.pricing-card-form select,
.pricing-card-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: #0b0c10;
  color: #fff;
  padding: 0 12px;
  outline: none;
}
.pricing-card-form .button {
  width: 100%;
  justify-content: center;
}
.broker-pricing-note {
  padding-top: 24px;
}
.broker-pricing-note article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--ft-line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(47,131,255,.22), rgba(255,255,255,.04));
}
.broker-pricing-note h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 54px);
}
.broker-pricing-note p {
  margin: 0;
  max-width: 820px;
  color: rgba(255,255,255,.68);
}
.best-value,
.discount {
  position: absolute;
  top: -22px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--ft-orange);
  color: #fff;
  font-weight: 950;
}
.best-value { left: 50%; transform: translateX(-50%); }
.discount { right: 22px; transform: rotate(13deg); box-shadow: 0 0 26px rgba(255,134,24,.7); }

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 24px;
}
.proof-stats strong {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  font-size: 28px;
}
.proof-stats span { color: var(--ft-muted); font-size: 18px; }
.video-row,
.member-photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 28px;
  overflow: hidden;
}
.video-row article,
.member-photo-row article {
  padding: 12px 12px 26px;
  border: 1px solid var(--ft-line);
  border-radius: 18px;
  background: var(--ft-card);
}
.member-photo-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: 14px;
  background: #1b1e24;
}
.member-card-body {
  padding: 24px 24px 8px;
}
.member-card-body span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(104,170,255,.16);
  color: #9ccaff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.member-card-body h3 {
  margin: 16px 0 4px;
  color: #fff;
  font-size: 34px;
}
.member-card-body p { margin: 0; color: var(--ft-muted); }
.member-photo-row dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 24px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.member-photo-row dt {
  color: rgba(255,255,255,.44);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.member-photo-row dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}
.video-thumb {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 45% 34%, rgba(255,255,255,.5) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 34%, rgba(0,0,0,.9) 0 9%, transparent 10%),
    linear-gradient(145deg, #234b83, #9c7a55 55%, #242326);
}
.video-row article:nth-child(2) .video-thumb { background: linear-gradient(145deg, #4c97e7, #d7edf9 48%, #0f1a24); }
.video-row article:nth-child(3) .video-thumb { background: linear-gradient(145deg, #2a2f29, #a17852 52%, #171719); }
.video-row article:nth-child(4) .video-thumb { background: linear-gradient(145deg, #ddd, #8f9299 50%, #111); }
.video-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.45));
  content: "";
}
.youtube {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.35);
  font-weight: 900;
}
.video-thumb button {
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff;
  cursor: pointer;
}
.video-row h3 { margin: 26px 22px 6px; font-size: 32px; }
.video-row p { margin: 0 22px 30px; color: var(--ft-muted); }
.video-row dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 22px;
  padding-top: 22px;
  border-top: 1px solid var(--ft-line);
}
.video-row dt {
  color: rgba(255,255,255,.44);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.video-row dd { margin: 7px 0 0; font-size: 20px; font-weight: 950; }

.review-wall { width: min(calc(100% - 32px), 1500px); }
.review-score { text-align: center; margin-bottom: 58px; }
.review-score strong { display: inline-block; margin-right: 12px; font-size: 32px; }
.review-score p { color: var(--ft-muted); font-weight: 800; }
.review-wall > h2 { margin: 0 0 22px; font-size: 20px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-grid article {
  min-height: 230px;
  padding: 24px;
  background: #202020;
}
.review-grid h3 { margin: 8px 0; font-size: 22px; }
.review-grid p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.4; }
.review-grid .review-meta { color: rgba(255,255,255,.6); font-weight: 900; }
.review-grid a { color: #4cc87f; font-weight: 900; text-decoration: underline; }
.trust-button {
  display: table;
  margin: 34px auto 0;
  padding: 18px 24px;
  border-radius: 8px;
  background: #fff;
  color: #08090c;
  font-weight: 950;
}

.how-section { text-align: center; }
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 62px;
  text-align: center;
}
.how-cards article,
.how-cards a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 42px 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #fff;
}
.how-cards article > span,
.how-cards a > span {
  display: inline-grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 42px;
  font-weight: 950;
}
.how-cards small {
  display: block;
  margin: 20px 0 8px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}
.how-cards h3 { margin: 0; font-size: 32px; line-height: 1.14; }
.how-cards p { color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.45; }
.blue-card { background: linear-gradient(180deg, #5da1e5, #172650 72%); }
.green-card { background: linear-gradient(180deg, #55bd70, #16311e 72%); }
.orange-card { background: linear-gradient(180deg, #ce7d2c, #3a170e 72%); }
.how-cards ul {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.how-cards li {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(9, 14, 25, .56);
  text-align: left;
  font-weight: 900;
}
.reward-card,
.premium-stack {
  position: absolute;
  right: 44px;
  bottom: 46px;
  left: 44px;
  padding: 34px;
  border-radius: 16px;
  background: rgba(0,0,0,.55);
  box-shadow: 0 25px 90px rgba(0,0,0,.35);
}
.reward-card strong,
.reward-card b { display: block; }
.reward-card b { color: #53d76b; font-size: 34px; }
.premium-stack { display: flex; justify-content: center; gap: 14px; background: transparent; box-shadow: none; }
.premium-stack b {
  display: grid;
  width: 132px;
  height: 94px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #4338ca, #f6c548);
}
.center-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.platforms-section,
.support-section {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}
.platforms-section h2,
.support-section h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
}
.platforms-section p,
.support-section p {
  color: var(--ft-muted);
  font-size: 22px;
  line-height: 1.45;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 54px 28px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(5,6,8,.98), rgba(5,6,8,.38) 30%, rgba(5,6,8,.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 260px);
}
.platform-grid article {
  display: grid;
  min-height: 210px;
  place-items: center;
  border: 1px solid var(--ft-line);
  border-radius: 14px;
  background: rgba(19,20,23,.72);
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}
.platform-grid b { color: #f5a04c; }
.platform-logo-card {
  gap: 14px;
  padding: 22px;
  text-align: center;
}
.platform-logo-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}
.platform-logo-card span {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}
.people-section { padding-top: 36px; }
.people-photo {
  min-height: 700px;
  overflow: hidden;
  padding: 90px 32px 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(80, 157, 255, .78), rgba(255,255,255,.08) 38%, rgba(5,6,8,.04) 62%),
    radial-gradient(circle at 12% 75%, #f3d6b6 0 3%, transparent 3.3%),
    radial-gradient(circle at 24% 72%, #e8bb94 0 3%, transparent 3.3%),
    radial-gradient(circle at 38% 76%, #d9a77f 0 3%, transparent 3.3%),
    radial-gradient(circle at 52% 73%, #f2c7a2 0 3%, transparent 3.3%),
    radial-gradient(circle at 65% 76%, #e0ae88 0 3%, transparent 3.3%),
    radial-gradient(circle at 78% 72%, #ecc19b 0 3%, transparent 3.3%),
    linear-gradient(180deg, #8cc4f7 0 34%, #d6d1c4 34% 58%, #59412e 58% 100%);
  text-align: center;
}
.people-photo h2 { margin: 0; font-size: clamp(44px, 5.4vw, 82px); }
.people-photo p {
  max-width: 780px;
  margin: 24px auto;
  color: rgba(255,255,255,.86);
  font-size: 22px;
  line-height: 1.4;
}
.availability {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}
.availability span,
.online-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4cc763;
  box-shadow: 0 0 0 8px rgba(76,199,99,.12);
}
.support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 30px;
}
.support-actions a,
.contact-box {
  border: 1px solid var(--ft-line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.support-actions a {
  min-height: 64px;
  padding: 20px;
  color: rgba(255,255,255,.8);
  font-size: 20px;
  font-weight: 900;
}
.contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 20px;
}
.contact-box span { color: var(--ft-muted); font-weight: 900; }
.contact-box strong { display: block; margin-top: 6px; color: #fff; font-size: 20px; }
.support-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10,15,25,.15), rgba(47,100,181,.72)),
    url("support-desk.png") center / cover no-repeat;
}
.language-cloud {
  position: absolute;
  top: 28px;
  left: -20px;
  right: -20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  z-index: 2;
}
.language-cloud span {
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.13);
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.support-person {
  display: none;
}
.support-numbers {
  position: absolute;
  bottom: 44px;
  left: 44px;
  display: flex;
  gap: 62px;
}
.support-numbers strong { font-size: 58px; line-height: 1; }
.support-numbers span { display: block; margin-top: 12px; color: #fff; font-size: 22px; font-weight: 800; }
.faq-strip { width: min(calc(100% - 32px), 1360px); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.faq-grid details {
  border-radius: 18px;
  background: #202023;
}
.faq-grid summary {
  min-height: 90px;
  padding: 30px 34px;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 950;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::before { margin-right: 22px; color: rgba(255,255,255,.7); content: "⊕"; }
.faq-grid details[open] summary::before { content: "⊖"; }
.faq-grid p {
  margin: -12px 34px 30px 76px;
  color: var(--ft-muted);
  font-size: 18px;
  line-height: 1.5;
}
.faq-more {
  margin-top: 38px;
  text-align: center;
  color: var(--ft-muted);
  font-size: 20px;
}
.faq-more a { color: #fff; font-weight: 950; }
.final-cta {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  padding: 48px 42px;
  border-radius: 22px;
  background: linear-gradient(145deg, #3b8cff, #245bb1);
}
.final-cta h2 { margin: 0; font-size: clamp(44px, 5vw, 76px); line-height: 1.05; }
.final-cta ul {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  font-weight: 900;
}
.final-cta li::before { margin-right: 14px; content: "✓"; }
.dashboard-mock {
  position: relative;
  min-height: 480px;
  border: 8px solid rgba(255,255,255,.38);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(5,9,16,.05), rgba(5,9,16,.5)),
    url("trading-dashboard.png") center / cover no-repeat;
  box-shadow: 0 40px 110px rgba(0,0,0,.35);
}
.mock-sidebar,
.mock-chart,
.mock-panel {
  display: none;
}

.front .broker-band {
  border-color: var(--ft-line);
  background: linear-gradient(135deg, #0f1725, #112d59 58%, #07090f);
}
.front .vip-telegram {
  background: #111317;
  box-shadow: none;
  color: #fff;
}
.front .vip-steps article { background: #1b1e24; }
.front .product .number { color: #68aaff; border-color: rgba(104,170,255,.4); }
.front .card a,
.front .product a { color: #68aaff; }
.front label { color: #fff; }
.front input,
.front textarea,
.front select {
  border-color: rgba(255,255,255,.14);
  background: #101216;
  color: #fff;
}
.front table { background: #111317; border-color: var(--ft-line); }
.front td { color: rgba(255,255,255,.78); }
.front .auth-card,
.front .side-nav {
  border-color: var(--ft-line);
  background: #111317;
  color: #fff;
}
.front .side-nav a:hover,
.front .side-nav a.active {
  background: rgba(47,131,255,.18);
  color: #fff;
}
.footer {
  display: block;
  width: min(calc(100% - 32px), 1360px);
  padding: 48px 0 64px;
  color: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ft-line);
}
.footer-brand span { margin-right: 10px; }
.socials { display: flex; gap: 16px; color: rgba(255,255,255,.48); font-weight: 950; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 46px;
  padding-top: 42px;
}
.footer h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}
.footer a {
  display: block;
  margin: 12px 0;
  color: rgba(255,255,255,.46);
  font-weight: 800;
}

.floating-support {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}
.support-orb {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff, rgba(255,255,255,.18) 18%, transparent 28%),
    conic-gradient(from 120deg, #58d6de, #1e88ff, #b65cff, #58d6de);
  box-shadow: 0 22px 55px rgba(30,136,255,.42);
  cursor: pointer;
}
.support-orb::after {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(5,6,8,.78);
  content: "";
}
.support-orb span {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: supportPulse 1.45s ease-in-out infinite;
}
.support-orb span:nth-child(2) { animation-delay: .18s; }
.support-orb span:nth-child(3) { animation-delay: .36s; }
@keyframes supportPulse {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(-7px); opacity: 1; }
}
.support-popover {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(360px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(12, 16, 25, .94);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}
.support-popover-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.support-popover-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.support-bubble {
  margin: 16px 0;
  padding: 14px 15px;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  color: #0b1220;
  line-height: 1.45;
  font-weight: 800;
}
.support-quick-actions {
  display: grid;
  gap: 8px;
}
.support-quick-actions a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 950;
}

@media (max-width: 1180px) {
  .challenge-board { grid-template-columns: 1fr; }
  .objective-list { display: none; }
  .challenge-cards,
  .video-row,
  .member-photo-row,
  .how-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platforms-section,
  .support-section,
  .broker-pricing-note article,
  .final-cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .front .main-nav {
    border-color: var(--ft-line);
    background: rgba(10, 11, 14, .98);
  }
  .challenge-tools,
  .proof-stats { align-items: stretch; flex-direction: column; }
  .review-grid,
  .faq-grid,
  .platform-grid { grid-template-columns: 1fr; }
  .admin .cards.two { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .front .topbar {
    padding: 8px 12px;
    min-height: 68px;
  }
  .front .hero {
    min-height: 840px;
    padding-top: 98px;
  }
  .front .hero h1 { font-size: 54px; }
  .front .hero p { font-size: 18px; }
  .trust-row,
  .center-actions,
  .support-actions,
  .contact-box,
  .footer-top { flex-direction: column; display: flex; align-items: stretch; }
  .ft-section { width: min(calc(100% - 24px), 1640px); padding: 54px 0; }
  .challenge-toggle,
  .challenge-cards,
  .broker-pricing-note article,
  .video-row,
  .member-photo-row,
  .how-cards,
  .footer-grid { grid-template-columns: 1fr; }
  .challenge-cards article.is-filtered { grid-column: auto; }
  .challenge-cards article,
  .how-cards article,
  .how-cards a { min-height: auto; }
  .reward-card,
  .premium-stack,
  .how-cards ul { position: static; margin-top: 28px; }
  .people-photo { min-height: 560px; padding-inline: 18px; }
  .support-visual { min-height: 520px; }
  .support-numbers { left: 24px; gap: 28px; }
  .support-numbers strong { font-size: 42px; }
  .faq-grid summary { font-size: 20px; padding: 24px; }
  .faq-grid p { margin-left: 58px; }
  .final-cta { padding: 42px 22px; }
  .dashboard-mock { min-height: 330px; }
}

/* Member/admin usability layer */
.admin,
.member {
  background: #050608 !important;
  color: #fff !important;
  min-height: 100vh;
}
.admin .workspace h1,
.admin .workspace > .eyebrow,
.member .workspace h1,
.member .workspace > .eyebrow {
  color: #fff !important;
  text-shadow: 0 16px 44px rgba(47, 131, 255, .22);
}
.admin .workspace > p,
.member .workspace > p {
  color: rgba(255,255,255,.72) !important;
}
.admin {
  --max: 100vw;
}
.admin .topbar {
  top: 0;
  width: 100%;
  min-height: 76px;
  padding: 12px 28px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: #050608;
  box-shadow: 0 18px 54px rgba(5, 6, 8, .22);
}
.admin .brand-logo {
  width: 260px;
  max-width: 32vw;
}
.admin .main-nav {
  gap: 8px;
}
.admin .main-nav a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}
.admin .app-shell {
  width: 100%;
  max-width: none;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 28px;
  margin: 0;
  padding: 108px 32px 84px;
}
.admin .admin-menu {
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
}
.admin .admin-menu .avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}
.admin .admin-menu strong {
  margin: 14px 0 22px;
  font-size: 20px;
}
.admin .admin-menu a {
  min-height: 48px;
  margin: 4px 0;
  padding: 14px 15px;
  border-radius: 14px;
  font-size: 15px;
}
.admin .workspace {
  width: 100%;
  padding: 0;
}
.admin .workspace h1 {
  max-width: none;
  margin: 8px 0 28px;
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 1;
}
.admin .eyebrow {
  font-size: 13px;
  letter-spacing: .08em;
}
.admin .cards {
  gap: 26px;
  margin-bottom: 28px;
}
.admin .cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin .cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin .cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin .card {
  padding: 34px;
  border-radius: 26px;
}
.admin .card h2 {
  margin-bottom: 24px;
  font-size: 26px;
  line-height: 1.15;
}
.admin form {
  gap: 16px;
}
.admin input,
.admin textarea,
.admin select {
  min-height: 50px;
  font-size: 15px;
}
.admin textarea {
  min-height: 124px;
}
.admin table {
  margin-top: 28px;
  border-radius: 22px;
  font-size: 15px;
}
.admin th,
.admin td {
  padding: 18px 20px;
}
.admin .stat strong {
  font-size: clamp(34px, 3vw, 56px);
}
.admin .topbar,
.member .topbar {
  background: rgba(7, 12, 24, .96);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(7, 12, 24, .18);
}
.admin .main-nav a,
.member .main-nav a { color: rgba(255,255,255,.82); }
.admin .main-nav a:hover,
.member .main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin .main-nav .nav-cta,
.member .main-nav .nav-cta {
  background: #2f83ff;
  color: #fff;
}
.admin .card,
.member .card,
.admin .panel,
.member .panel,
.admin .stat,
.member .stat,
.admin .side-nav,
.member .side-nav {
  border-color: rgba(15, 23, 42, .11);
  background: #fff;
  color: #0b1220;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}
.admin .card p,
.member .card p,
.admin .card small,
.member .card small,
.admin .card li,
.member .card li,
.admin .stat span,
.member .stat span,
.admin .stat small,
.member .stat small,
.admin .workspace > p,
.member .workspace > p {
  color: #475467;
}
.admin label,
.member label { color: #1d2939; }
.admin input,
.member input,
.admin textarea,
.member textarea,
.admin select,
.member select {
  border-color: rgba(15, 23, 42, .14);
  background: #fff;
  color: #0b1220;
}
.admin table,
.member table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-color: rgba(15, 23, 42, .12);
  background: #fff;
}
.admin th,
.member th {
  color: #175cd3;
}
.admin td,
.member td {
  color: #1d2939;
}
.admin .inline-form button,
.member .inline-form button,
.admin td button,
.member td button {
  background: #f8fafc;
  color: #0b1220;
  border-color: rgba(15, 23, 42, .16);
}
.admin .side-nav a:hover,
.admin .side-nav a.active,
.member .side-nav a:hover,
.member .side-nav a.active {
  background: #eaf2ff;
  color: #175cd3;
}
.admin .footer,
.member .footer {
  width: min(calc(100% - 32px), 1360px);
  padding: 64px 42px;
  border-radius: 22px 22px 0 0;
  background: #050608;
  color: #fff;
}
.admin .footer-top,
.member .footer-top {
  border-bottom-color: rgba(255,255,255,.12);
}
.admin .footer h3,
.member .footer h3 {
  color: #fff;
}
.admin .footer a,
.member .footer a,
.admin .socials,
.member .socials {
  color: rgba(255,255,255,.56);
}
.footer .brand-logo {
  width: 238px;
}
.profile-card {
  display: flex;
  gap: 18px;
  align-items: center;
}
.profile-photo {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  min-width: 104px;
  border-radius: 24px;
  background: linear-gradient(145deg, #62dce2, #0875d7);
  color: #fff;
  object-fit: cover;
  font-size: 34px;
  font-weight: 950;
}
img.profile-photo,
img.avatar,
img.user-chip-photo,
img.table-avatar {
  display: block;
}
.subscriber-cell {
  display: flex;
  gap: 10px;
  align-items: center;
}
.subscriber-cell span {
  display: grid;
  gap: 2px;
}

.member-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.member-action {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(47, 131, 255, .18);
  border-radius: 18px;
  background: linear-gradient(145deg, #0f172a, #1f4fa5);
  color: #fff;
}
.member-action span {
  color: #b9d8ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.member-action strong { font-size: 22px; line-height: 1.12; }
.member-action small { color: rgba(255,255,255,.72); }

.learning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}
.video-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: #050608;
}
.lesson-list {
  display: grid;
  gap: 10px;
}
.lesson-list button,
.lesson-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: #fff;
  color: #0b1220;
  cursor: pointer;
  text-align: left;
}
.lesson-list a {
  text-decoration: none;
}
.lesson-list button.is-active,
.lesson-list button:hover,
.lesson-list a.is-active,
.lesson-list a:hover {
  border-color: rgba(47, 131, 255, .34);
  background: #eaf2ff;
}
.lesson-list button:disabled {
  cursor: not-allowed;
  opacity: .58;
}
.lesson-list button.is-completed span,
.lesson-list a.is-completed span {
  background: #12b76a;
}
.lesson-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #175cd3;
  color: #fff;
  font-weight: 950;
}
.lesson-list small { color: #667085; font-weight: 800; }
.lesson-complete-form {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.lesson-complete-form small {
  color: #667085;
  font-weight: 800;
}
.lesson-headline {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: start;
  margin-top: 22px;
}
.quiz-pass-badge {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #dcfae6;
  color: #067647;
  font-weight: 950;
}
.quiz-form {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
}
.quiz-intro {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #07111f, #123a72 52%, #2f83ff);
  color: #fff;
}
.quiz-intro strong { font-size: 22px; }
.quiz-intro span { color: #d9e8ff; font-weight: 950; }
.quiz-attempt {
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 900;
}
.quiz-attempt.failed {
  background: #fff1f3;
  color: #c01048;
}
.quiz-attempt.passed,
.quiz-completed-box {
  background: #ecfdf3;
  color: #067647;
}
.quiz-question {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
}
.quiz-question h3 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 950;
  color: #0b1220;
}
.quiz-question h3 span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: #eaf2ff;
  color: #175cd3;
  font-size: 16px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quiz-option {
  position: relative;
  display: flex;
  min-height: 64px;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  background: #f8fafc;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.quiz-option:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 131, 255, .34);
  background: #fff;
}
.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quiz-option i {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #98a2b3;
  border-radius: 50%;
  background: #fff;
}
.quiz-option i::after {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #2f83ff;
  transform: scale(0);
  transition: transform .16s ease;
}
.quiz-option strong {
  color: #1d2939;
  font-size: 15px;
  line-height: 1.35;
}
.quiz-option:has(input:checked) {
  border-color: #2f83ff;
  background: #eef4ff;
  box-shadow: 0 14px 34px rgba(47, 131, 255, .16);
}
.quiz-option:has(input:checked) i {
  border-color: #2f83ff;
}
.quiz-option:has(input:checked) i::after {
  transform: scale(1);
}
.quiz-completed-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  font-weight: 950;
}
.quiz-admin-panel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(15,23,42,.1);
}
.quiz-admin-panel h3 {
  margin: 0;
}
.quiz-admin-form {
  padding: 18px;
  border-radius: 18px;
  background: rgba(47,131,255,.08);
}
.quiz-edit-block {
  margin-top: 8px;
}
.locked-learning .broker-list.compact {
  margin-top: 22px;
}
.ticket-thread {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, .1);
}
.ticket-message {
  padding: 13px 15px;
  border-radius: 14px;
  background: #f2f4f7;
}
.ticket-message.admin {
  background: #eaf2ff;
  border: 1px solid rgba(47, 131, 255, .18);
}
.ticket-message.bot {
  background: #ecfff4;
  border: 1px solid rgba(34, 197, 94, .22);
}
.ticket-message small {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-weight: 900;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #175cd3;
  font-size: 12px;
  font-weight: 950;
}
.support-admin-list,
.lesson-admin-row {
  display: grid;
  gap: 14px;
}
.lesson-admin-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
}
.admin-edit-block {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
}
.admin-edit-block summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  cursor: pointer;
}
.admin-broker-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
}
.admin-edit-block summary span,
.admin-broker-summary span {
  grid-column: 2;
  color: #667085;
  font-weight: 800;
}
.admin-edit-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
}
.admin-metric-form {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr) 90px 100px auto;
  gap: 10px;
  align-items: end;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
}
.admin-metric-form button {
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 8px;
  background: #0b1220;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.ticket-admin-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.ticket-reply-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.people-photo {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(28, 116, 255, .78), rgba(5,6,8,.18) 42%, rgba(5,6,8,.72) 100%),
    url("mt-academy-hero.png") center / cover no-repeat;
}
.people-photo::after {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: min(330px, 42vw);
  aspect-ratio: 352 / 92;
  background: url("nextmove-academy.png") center / contain no-repeat;
  content: "";
  opacity: .92;
}
.people-photo h2,
.people-photo p,
.people-photo .center-actions {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .member-action-grid,
  .learning-layout { grid-template-columns: 1fr; }
  .admin .app-shell {
    grid-template-columns: 1fr;
    padding: 100px 18px 64px;
  }
  .admin .admin-menu {
    position: static;
    max-height: none;
  }
  .admin .cards.two,
  .admin .cards.three,
  .admin .cards.four {
    grid-template-columns: 1fr;
  }
  .admin .workspace h1 {
    font-size: clamp(36px, 10vw, 56px);
  }
  .admin-metric-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-logo { width: 154px; }
  .admin .topbar {
    padding-inline: 14px;
  }
  .admin .brand-logo {
    width: 178px;
    max-width: 54vw;
  }
  .admin .card {
    padding: 22px;
  }
  .member-action-grid { grid-template-columns: 1fr; }
  .ticket-admin-head,
  .lesson-admin-row { grid-template-columns: 1fr; }
  .people-photo::after {
    right: 20px;
    bottom: 22px;
    width: 230px;
  }
}

/* Final dashboard layout overrides */
.admin,
.member {
  --max: 100vw;
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 131, 255, .08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(138, 43, 226, .06), transparent 40%),
    #050608;
  min-height: 100vh;
}
.admin .topbar,
.member .topbar {
  top: 0;
  width: 100%;
  min-height: 76px;
  padding: 12px 28px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: #050608;
  box-shadow: 0 18px 54px rgba(5, 6, 8, .22);
}
.admin .brand-logo,
.member .brand-logo {
  width: 260px;
  max-width: 32vw;
}
.admin .app-shell,
.member .app-shell {
  width: 100%;
  max-width: none;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 28px;
  margin: 0;
  padding: 108px 32px 84px;
}
.admin .app-shell {
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 38px;
  padding-inline: 44px;
}
.admin .workspace {
  max-width: 1920px;
}
.admin .workspace,
.member .workspace {
  width: 100%;
  padding: 0;
}
.admin .workspace h1,
.admin .workspace > .eyebrow,
.member .workspace h1,
.member .workspace > .eyebrow {
  color: #0b1220;
  text-shadow: none;
}
.admin .workspace > p,
.member .workspace > p {
  color: rgba(11, 18, 32, .72);
}
.admin .workspace h1,
.member .workspace h1 {
  max-width: none;
  margin: 8px 0 28px;
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 1;
}
.admin .side-nav,
.member .side-nav {
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
}
.admin .side-nav .avatar,
.member .side-nav .avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}
.admin .side-nav strong,
.member .side-nav strong {
  margin: 14px 0 22px;
  font-size: 20px;
}
.admin .side-nav a,
.member .side-nav a {
  min-height: 48px;
  margin: 4px 0;
  padding: 14px 15px;
  border-radius: 14px;
  font-size: 15px;
}
.admin .cards,
.member .cards {
  gap: 26px;
  margin-bottom: 28px;
}
.admin .cards.two,
.member .cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin .cards.three,
.member .cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin .cards.four,
.member .cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.admin .card,
.member .card {
  padding: 34px;
  border-radius: 26px;
}
.settings-form {
  display: grid;
  gap: 28px;
  min-width: 0;
}
.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  min-width: 0;
}
.settings-section {
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
}
.settings-section h2 {
  margin-bottom: 18px;
  font-size: 24px;
}
.settings-section small {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.6);
  overflow-wrap: anywhere;
}
.admin .settings-section input,
.admin .settings-section select,
.admin .settings-section textarea {
  width: 100%;
  min-height: 48px;
}
.log-table td {
  vertical-align: top;
  max-width: 420px;
  overflow-wrap: anywhere;
}
.legal-page .legal-card {
  max-width: 1100px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.8;
}
.admin table,
.member table {
  margin-top: 28px;
  border-radius: 22px;
  font-size: 15px;
}
.admin th,
.admin td,
.member th,
.member td {
  padding: 18px 20px;
}
.google-button {
  width: 100%;
  margin-top: 12px;
  gap: 10px;
  border-color: rgba(15, 23, 42, .14);
  background: #fff;
  color: #0b1220;
}
.google-button img {
  width: 20px;
  height: 20px;
}
.google-setup-card pre {
  overflow: auto;
  padding: 14px;
  border-radius: 14px;
  background: #0b1220;
  color: #eaf2ff;
  font-size: 13px;
  line-height: 1.6;
}
.settings-qr-preview {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 18px;
  background: #fff;
}
.payment-page {
  padding-top: 150px;
}
.payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(47,131,255,.16), rgba(255,255,255,.05)), #070b12;
  color: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.payment-copy h1 {
  margin: 12px 0;
  max-width: 780px;
  font-size: clamp(46px, 5vw, 86px);
  line-height: .96;
}
.payment-copy p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
}
.payment-summary {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}
.payment-summary span {
  color: rgba(255,255,255,.58);
  font-weight: 900;
}
.payment-summary strong {
  overflow-wrap: anywhere;
}
.crypto-box {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  color: #0b1220;
}
.crypto-box h2 {
  margin: 0;
}
.crypto-box code {
  display: block;
  padding: 14px;
  border-radius: 16px;
  background: #eef4ff;
  color: #175cd3;
  overflow-wrap: anywhere;
  font-weight: 950;
}
.crypto-box img,
.qr-placeholder {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 22px;
  background: #f8fafc;
  object-fit: contain;
}
.qr-placeholder {
  display: grid;
  place-items: center;
  color: #98a2b3;
  font-size: 46px;
  font-weight: 950;
}
.crypto-box p {
  color: #475467;
  line-height: 1.6;
}
.admin .footer,
.member .footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px 42px 84px;
  border-radius: 0;
  overflow: hidden;
  background: #050608;
  box-shadow: 0 1px 0 #050608;
}
.admin .footer-top,
.admin .footer-grid,
.member .footer-top,
.member .footer-grid {
  width: min(calc(100% - 32px), 1840px);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.support-chat-log {
  display: grid;
  max-height: 280px;
  overflow: auto;
  gap: 10px;
  margin: 16px 0;
  padding-right: 3px;
}
.support-bubble.user {
  justify-self: end;
  border-radius: 18px 18px 6px 18px;
  background: #2f83ff;
  color: #fff;
}
.support-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}
.support-chat-form textarea {
  min-height: 52px;
  max-height: 120px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.support-chat-form button {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: #2f83ff;
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

.product-showcase {
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 131, 255, .15), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(138, 43, 226, .12), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(5, 6, 8, 1), #050608);
  background-color: #050608;
  color: #fff;
}
.product-showcase .section {
  width: min(calc(100% - 64px), 1280px);
}
.product-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.product-hero-copy h1 {
  max-width: 900px;
  margin: 12px 0;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: .94;
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.product-hero-copy p {
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.product-market-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.product-market-pills span {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #eaf2ff;
  font-weight: 950;
}
.product-visual {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(47,131,255,.14), rgba(255,255,255,.04)),
    rgba(255,255,255,.05);
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
}
.product-image-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: #0b1220;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
}
.product-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual-signals .frame-1 {
  right: -5%;
  width: 62%;
  height: 82%;
}
.product-visual-signals .frame-2 {
  left: 8%;
  width: 42%;
  height: 88%;
  transform: rotate(-2deg);
}
.product-visual-network .frame-1,
.product-visual-matrix .frame-1,
.product-visual-training .frame-1,
.product-visual-dashboard .frame-1 {
  inset: 52px;
}
.product-visual-network .frame-1 img {
  object-fit: contain;
  padding: 36px;
  background: linear-gradient(135deg, #f8fbff, #dcecff);
}
.product-visual-training .frame-1 img,
.product-visual-matrix .frame-1 img {
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.product-signal-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(360px, calc(100% - 68px));
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(5, 8, 14, .78);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}
.product-signal-card span {
  display: block;
  color: #7ab1ff;
  font-weight: 950;
}
.product-signal-card strong {
  display: block;
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.05;
}
.product-signal-card small {
  color: rgba(255,255,255,.66);
  font-weight: 800;
}
.product-process,
.product-benefits,
.product-included,
.product-pricing,
.product-faq {
  padding-block: 72px;
}
.product-showcase .section-heading h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 76px);
  line-height: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article,
.benefit-grid article,
.product-admin-sections article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.process-grid article:hover,
.benefit-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
}
.process-grid span,
.benefit-grid span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(122,177,255,.42);
  border-radius: 18px;
  background: rgba(47,131,255,.12);
  color: #7ab1ff;
  font-size: 18px;
  font-weight: 950;
}
.process-grid h3,
.benefit-grid h3,
.product-admin-sections h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.process-grid p,
.benefit-grid p,
.product-admin-sections p {
  margin: 0;
  color: rgba(255,255,255,.64);
  line-height: 1.65;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.benefit-grid article {
  min-height: 330px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.included-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(47,131,255,.25), rgba(255,255,255,.055));
}
.included-card h2 {
  margin: 10px 0;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 64px);
  line-height: 1;
}
.included-card p {
  max-width: 760px;
  color: rgba(255,255,255,.68);
}
.included-card ul {
  display: grid;
  min-width: 320px;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.included-card li {
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 950;
}
.product-admin-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.product-showcase .card {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
}
.product-showcase .card h2,
.product-showcase .card h3,
.product-showcase .price strong {
  color: #fff;
}
.product-showcase label {
  color: rgba(255,255,255,.72);
}
.product-showcase input,
.product-showcase select {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.backup-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.backup-head {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
}
.backup-head h2 {
  margin: 0 0 8px;
}
.backup-head p {
  margin: 0;
  color: rgba(255,255,255,.62);
}
.backup-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}
.backup-table-wrap table {
  min-width: 760px;
}

.roulette-popup[hidden] {
  display: none !important;
}
.roulette-popup {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 14px;
}
.roulette-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(14px);
}
.roulette-card {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(96vh, 900px);
  overflow: auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 10%, rgba(111, 0, 255, .34), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(215, 173, 85, .28), transparent 34%),
    linear-gradient(135deg, rgba(12, 14, 24, .96), rgba(7, 10, 19, .98));
  color: #fff;
  box-shadow: 0 34px 120px rgba(0,0,0,.58);
  transition: width .35s ease, max-width .35s ease;
}
.roulette-card-wheel-only {
  width: min(700px, 100%);
  text-align: center;
}
.roulette-card-wheel-only .roulette-partner {
  margin-inline: auto;
}
.roulette-card-wheel-only .roulette-layout {
  grid-template-columns: 1fr;
  justify-items: center;
}
.roulette-card-wheel-only .roulette-copy {
  display: none;
}
.roulette-card-with-form .roulette-copy {
  display: block;
  animation: rouletteFormIn .35s ease both;
}
.roulette-card-with-form .roulette-layout {
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  align-items: start;
}
.roulette-card-with-form .roulette-wheel-wrap {
  min-height: 455px;
}
.roulette-card-with-form .roulette-wheel {
  width: min(430px, 42vw);
}
.roulette-card-with-form .roulette-pointer {
  top: 0;
}
@keyframes rouletteFormIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.roulette-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.roulette-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.roulette-partner img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
}
.roulette-partner span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.roulette-partner strong {
  display: block;
}
.roulette-layout {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}
.roulette-wheel-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 510px;
}
.roulette-pointer {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 32px solid #d7ad55;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.36));
}
.roulette-wheel {
  position: relative;
  width: min(500px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 12px solid rgba(255,255,255,.14);
  background: transparent;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.11), 0 24px 80px rgba(0,0,0,.44);
  transition: transform 4.8s cubic-bezier(.11, .78, .12, 1);
  overflow: visible;
}
.roulette-wheel::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(6, 9, 18, .9);
  box-shadow: 0 0 0 10px rgba(255,255,255,.14), 0 14px 34px rgba(0,0,0,.35);
}
.roulette-svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
}
.roulette-svg-label {
  fill: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: .045em;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke fill;
  stroke: rgba(0,0,0,.68);
  stroke-width: 4px;
  stroke-linejoin: round;
}
.roulette-svg-gift {
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.42));
  transform-box: fill-box;
  transform-origin: center;
}
.roulette-wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 78px;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--text-angle));
  transform-origin: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-shadow: 0 2px 3px rgba(0,0,0,.92), 0 0 10px rgba(0,0,0,.64);
}
.wheel-center-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 118px;
  height: 118px;
  margin: 0;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #5f00e6;
  box-shadow: 0 0 0 10px rgba(255,255,255,.16), 0 18px 44px rgba(0,0,0,.46);
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.wheel-center-spin:hover {
  transform: translate(-50%, -50%) scale(1.04);
  filter: brightness(1.08);
}
.wheel-center-spin:disabled {
  cursor: default;
  filter: saturate(.85);
}
.wheel-center-logo {
  display: block;
  width: 82px;
  height: 50px;
  object-fit: contain;
  margin-top: 10px;
}
.wheel-center-spin strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: .85;
  letter-spacing: -.04em;
}
.wheel-center-spin span {
  display: block;
  margin-top: -10px;
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #3b0c91;
}
.roulette-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .96;
}
.roulette-copy p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.roulette-result {
  margin: 18px 0 10px;
  padding: 16px 18px;
  border: 1px solid rgba(215, 173, 85, .32);
  border-radius: 18px;
  background: rgba(215, 173, 85, .12);
  font-weight: 900;
}
.roulette-result-gift {
  display: block;
  width: min(190px, 60vw);
  margin: 0 auto 12px;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.34));
}
.roulette-claim {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.roulette-claim input {
  width: 100%;
  min-height: 48px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.roulette-claim small {
  color: rgba(255,255,255,.56);
}
.roulette-link {
  display: inline-flex;
  margin-top: 14px;
  color: #d7ad55;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .product-landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }
  .product-visual {
    min-height: 560px;
  }
  .process-grid,
  .benefit-grid,
  .product-admin-sections,
  .included-card {
    grid-template-columns: 1fr;
  }
  .backup-head {
    align-items: stretch;
    flex-direction: column;
  }
  .payment-card {
    grid-template-columns: 1fr;
  }
  .payment-summary {
    grid-template-columns: 1fr;
  }
  .admin .app-shell,
  .member .app-shell {
    grid-template-columns: 1fr;
    padding: 100px 18px 64px;
  }
  .admin .side-nav,
  .member .side-nav {
    position: static;
    max-height: none;
  }
  .admin .cards.two,
  .admin .cards.three,
  .admin .cards.four,
  .settings-grid,
  .member .cards.two,
  .member .cards.three,
  .member .cards.four,
  .quiz-options,
  .support-chat-form {
    grid-template-columns: 1fr;
  }
  .roulette-layout {
    grid-template-columns: 1fr;
  }
  .roulette-wheel-wrap {
    min-height: 380px;
  }
  .roulette-card {
    padding: 24px;
    border-radius: 28px;
  }
  .roulette-wheel {
    width: min(340px, 80vw);
  }
  .roulette-svg-label {
    font-size: 17px;
    stroke-width: 3.5px;
  }
  .roulette-wheel::after {
    width: 98px;
    height: 98px;
  }
  .roulette-wheel span {
    width: 68px;
    min-height: 28px;
    padding: 0;
    font-size: 9px;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .82), calc(var(--y) * .82)) rotate(var(--text-angle));
  }
  .wheel-center-spin {
    width: 92px;
    height: 92px;
  }
  .wheel-center-spin strong {
    font-size: 24px;
  }
  .wheel-center-logo {
    width: 64px;
    height: 40px;
    margin-top: 8px;
  }
  .wheel-center-spin span {
    margin-top: -8px;
    font-size: 9px;
  }
}

@media (max-width: 600px) {
  .roulette-popup {
    align-items: start;
    padding: max(10px, env(safe-area-inset-top)) 8px max(10px, env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .roulette-card,
  .roulette-card-wheel-only,
  .roulette-card-with-form {
    width: min(100%, 430px);
    max-height: none;
    min-height: auto;
    padding: 16px 12px 18px;
    border-radius: 22px;
  }
  .roulette-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 24px;
    z-index: 8;
  }
  .roulette-partner {
    max-width: calc(100% - 46px);
    margin: 0 auto 10px;
    padding: 8px 12px 8px 8px;
    gap: 9px;
  }
  .roulette-partner img {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .roulette-partner span {
    font-size: 9px;
    letter-spacing: .06em;
  }
  .roulette-partner strong {
    font-size: 15px;
    line-height: 1.1;
  }
  .roulette-layout,
  .roulette-card-with-form .roulette-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }
  .roulette-wheel-wrap,
  .roulette-card-with-form .roulette-wheel-wrap {
    width: 100%;
    min-height: clamp(292px, 82vw, 350px);
  }
  .roulette-wheel,
  .roulette-card-with-form .roulette-wheel {
    width: min(330px, 82vw);
    border-width: 8px;
    box-shadow: inset 0 0 0 5px rgba(255,255,255,.11), 0 18px 52px rgba(0,0,0,.42);
  }
  .roulette-pointer,
  .roulette-card-with-form .roulette-pointer {
    top: 2px;
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 26px;
  }
  .roulette-wheel::after {
    width: 86px;
    height: 86px;
    box-shadow: 0 0 0 7px rgba(255,255,255,.16), 0 12px 26px rgba(0,0,0,.36);
  }
  .wheel-center-spin {
    width: 86px;
    height: 86px;
    box-shadow: 0 0 0 7px rgba(255,255,255,.16), 0 14px 34px rgba(0,0,0,.42);
  }
  .wheel-center-logo {
    width: 58px;
    height: 34px;
    margin-top: 8px;
  }
  .wheel-center-spin span {
    margin-top: -7px;
    font-size: 8px;
  }
  .roulette-svg-gift {
    transform: scale(.9);
  }
  .roulette-copy {
    width: 100%;
  }
  .roulette-copy h2 {
    font-size: clamp(26px, 9vw, 34px);
    line-height: 1;
    margin-bottom: 10px;
  }
  .roulette-copy p {
    font-size: 14px;
    line-height: 1.5;
  }
  .roulette-result {
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
  }
  .roulette-result-gift {
    width: min(150px, 50vw);
  }
  .roulette-claim {
    gap: 10px;
    margin-top: 10px;
  }
  .roulette-claim input {
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .roulette-wheel,
  .roulette-card-with-form .roulette-wheel {
    width: min(300px, 80vw);
  }
  .roulette-wheel-wrap,
  .roulette-card-with-form .roulette-wheel-wrap {
    min-height: 275px;
  }
  .roulette-card,
  .roulette-card-wheel-only,
  .roulette-card-with-form {
    padding-inline: 10px;
  }
}

.pwa-install-button {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 12000;
  border: 1px solid rgba(47, 131, 255, .45);
  border-radius: 999px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #2f83ff, #16c6ff);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 18px 48px rgba(47, 131, 255, .28), 0 8px 22px rgba(0, 0, 0, .24);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.pwa-install-button::before {
  content: "↧";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.pwa-install-button[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .pwa-install-button {
    left: 18px;
    right: 18px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: auto;
    justify-content: center;
  }
}

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

@media (max-width: 980px) {
  .admin .app-shell {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 92px 14px 64px !important;
  }

  .admin .dashboard-menu-toggle {
    position: sticky;
    top: 82px;
    z-index: 940;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin: 0 0 6px;
    border: 1px solid rgba(47, 131, 255, .26);
    border-radius: 18px;
    background: linear-gradient(135deg, #2f83ff, #13b8ff);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .01em;
    box-shadow: 0 18px 42px rgba(47, 131, 255, .22), 0 10px 24px rgba(0, 0, 0, .22);
  }

  .admin .admin-menu {
    position: fixed !important;
    top: 142px !important;
    left: 14px;
    right: 14px;
    z-index: 960;
    width: auto;
    max-height: min(68vh, 620px) !important;
    padding: 16px !important;
    overflow: auto;
    border: 1px solid rgba(15, 23, 42, .14);
    border-radius: 24px !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transition: opacity .18s ease, transform .18s ease;
  }

  .admin .app-shell.dashboard-menu-open .admin-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .admin .app-shell.dashboard-menu-open::before {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    z-index: 930;
    background: rgba(3, 7, 18, .58);
    backdrop-filter: blur(8px);
  }

  .admin .admin-menu .avatar,
  .admin .admin-menu strong {
    display: none;
  }

  .admin .admin-menu a {
    min-height: 44px !important;
    margin: 3px 0 !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  .admin .workspace {
    min-width: 0;
    padding-top: 0 !important;
  }

  .admin .workspace h1 {
    margin-top: 8px !important;
    margin-bottom: 18px !important;
    font-size: clamp(30px, 10vw, 46px) !important;
    line-height: 1.02 !important;
    overflow-wrap: anywhere;
  }

  .admin .workspace > p {
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .admin .topbar {
    min-height: 70px;
    padding: 10px 12px !important;
  }

  .admin .brand-logo {
    width: 156px !important;
    max-width: 48vw !important;
  }

  .admin .app-shell {
    padding-top: 82px !important;
    padding-inline: 10px !important;
  }

  .admin .dashboard-menu-toggle {
    top: 74px;
    min-height: 48px;
    border-radius: 16px;
  }

  .admin .admin-menu {
    top: 126px !important;
    left: 10px;
    right: 10px;
    max-height: min(70vh, 560px) !important;
  }

  .admin .card,
  .admin .panel,
  .admin .stat {
    border-radius: 20px;
    padding: 18px !important;
  }
}

@media (max-width: 980px) {
  .topbar .menu-button {
    flex: 0 0 44px;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .20);
  }

  .topbar.open .main-nav,
  .admin .topbar.open .main-nav,
  .member .topbar.open .main-nav,
  .front .topbar.open .main-nav {
    right: 12px;
    width: min(390px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(7, 12, 24, .98) !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
    backdrop-filter: blur(20px);
  }

  .topbar.open .main-nav a,
  .admin .topbar.open .main-nav a,
  .member .topbar.open .main-nav a,
  .front .topbar.open .main-nav a,
  .topbar.open .dropdown-trigger {
    width: 100%;
    min-height: 46px;
    padding: 13px 14px;
    border-radius: 15px;
    color: rgba(255, 255, 255, .90) !important;
    background: rgba(255, 255, 255, .06);
    font-size: 15px;
    font-weight: 900;
    text-align: left;
  }

  .topbar.open .main-nav a:hover,
  .topbar.open .main-nav a.active,
  .topbar.open .dropdown-trigger:hover {
    color: #fff !important;
    background: rgba(47, 131, 255, .22);
  }

  .topbar.open .main-nav .nav-cta,
  .admin .topbar.open .main-nav .nav-cta,
  .member .topbar.open .main-nav .nav-cta,
  .front .topbar.open .main-nav .nav-cta {
    background: linear-gradient(135deg, #2f83ff, #16c6ff) !important;
    color: #fff !important;
  }

  .topbar.open .lang-switch {
    width: 100%;
    justify-content: center;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
  }

  .topbar.open .lang-switch a {
    width: auto;
    min-height: 34px;
    color: rgba(255, 255, 255, .86) !important;
    background: transparent;
    text-align: center;
  }

  .topbar.open .lang-switch a.active {
    background: #2f83ff !important;
    color: #fff !important;
  }

  .topbar.open .user-chip {
    max-width: none;
    justify-content: flex-start;
  }

  .topbar.open .dropdown-content {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05) !important;
  }

  .topbar.open .dropdown-content a {
    min-height: 42px;
    padding: 11px 12px;
    background: transparent;
    color: rgba(255, 255, 255, .82) !important;
  }
}
