:root {
  --bg: #0c0c0c;
  --bg-soft: #161616;
  --panel: rgba(22, 22, 22, 0.72);
  --panel-border: rgba(217, 182, 72, 0.18);
  --text: #ece8e0;
  --muted: #a3a9b1;
  --accent: #d9b648;
  --accent-strong: #d9b648;
  --accent-blue: #2d1b33;
  --warning: #d9b648;
  --danger: #cc8e73;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 27, 51, 0.34), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(217, 182, 72, 0.08), transparent 18%),
    linear-gradient(180deg, #090909 0%, #0c0c0c 42%, #101010 100%);
  letter-spacing: 0.05em;
}

body.app-booting {
  overflow: hidden;
  background: #05060a;
}

body.app-booting .page-shell,
body.app-booting .mrx-shell {
  opacity: 0;
  pointer-events: none;
}

body.app-booting::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 182, 72, 0.24);
  border-top-color: rgba(217, 182, 72, 0.92);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: marketread-boot-spin 0.9s linear infinite;
  z-index: 9999;
}

@keyframes marketread-boot-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #f1ece1;
}

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

body.auth-open {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

body.auth-page {
  min-height: 100vh;
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 88px;
}

.auth-page-shell {
  padding-top: 34px;
  padding-bottom: 48px;
}

.auth-page-header {
  margin-bottom: 28px;
}

.auth-page-back {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.auth-page-main {
  display: block;
}

.product-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  margin-bottom: 56px;
  border-radius: 10px;
  border: 1px solid rgba(217, 182, 72, 0.14);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.82), rgba(22, 22, 22, 0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.product-brand,
.product-bar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-bar-actions {
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.product-utility-bar,
.product-auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-nav-item {
  position: relative;
}

.product-nav-link,
.product-nav-button,
.product-dropdown-link,
.product-auth-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #dbe6f4;
  text-decoration: none;
  font: inherit;
}

.product-nav-link,
.product-nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border-radius: 0;
  color: rgba(224, 224, 224, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease-luxury), transform 220ms var(--ease-luxury);
  white-space: nowrap;
}

.product-nav-link:hover,
.product-nav-link:focus-visible,
.product-nav-button:hover,
.product-nav-button:focus-visible {
  color: #f4ecd5;
  transform: translateY(-1px);
  outline: none;
}

.product-nav-dropdown {
  position: relative;
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(217, 182, 72, 0.14);
  background: rgba(22, 22, 22, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.product-nav-dropdown:hover .product-dropdown,
.product-nav-dropdown:focus-within .product-dropdown,
.product-nav-dropdown.is-open .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #eef5ff;
  font-weight: 700;
}

.product-dropdown-link:hover,
.product-dropdown-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.product-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.22);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury), background 220ms var(--ease-luxury);
  white-space: nowrap;
}

.product-auth-button.secondary {
  background: rgba(255, 255, 255, 0.015);
}

.product-auth-button.primary {
  color: #14110a;
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.98), rgba(191, 158, 61, 0.94));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.product-auth-button:hover,
.product-auth-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(217, 182, 72, 0.4);
  outline: none;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-select {
  min-width: 118px;
  border-radius: 3px;
  font-size: 0.8rem;
}

.product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.28);
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.16), rgba(45, 27, 51, 0.38));
  color: #dbc88d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.product-kicker,
.product-subcopy {
  margin: 0;
}

.product-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.product-subcopy {
  margin-top: 3px;
  color: rgba(224, 224, 224, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-link {
  color: rgba(244, 247, 251, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-link:hover,
.product-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.member-only {
  display: block;
}

.app-hooks {
  display: none !important;
}

.ml-language,
.command-language-control,
.marketread-language-switcher {
  display: none !important;
}

body.public-mode .member-only {
  display: none !important;
}

body.is-authenticated .public-only {
  display: none !important;
}

body.is-authenticated .product-auth-button {
  display: none;
}

.workspace-nav-panel {
  grid-column: span 12;
  padding-top: 22px;
  padding-bottom: 22px;
}

.workspace-nav-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.workspace-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workspace-nav-button {
  appearance: none;
  border: 1px solid rgba(143, 169, 201, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 247, 251, 0.9);
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.workspace-nav-button:hover,
.workspace-nav-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.workspace-nav-button.is-active {
  color: #04111b;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 12px 30px rgba(0, 192, 139, 0.22);
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 26px 6px 32px;
}

.hero-premium {
  align-items: stretch;
  gap: 28px;
  padding: 18px 0 36px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.panel h2,
.metric-card h3,
.detail-card h3,
.liquidity-card h3,
.timeframe-card h3 {
  margin: 0;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy {
  flex: 1.1;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 16px 0 0;
}

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

.hero-art-shell {
  position: relative;
  margin-top: 26px;
  padding: 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(121, 224, 192, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.hero-art-image {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.18);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury), background 220ms var(--ease-luxury);
}

.hero-button-primary {
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.96), rgba(191, 158, 61, 0.94));
  color: #15110a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

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

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(217, 182, 72, 0.34);
  outline: none;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-card {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero-proof-card h3,
.hero-proof-card p {
  margin-top: 0;
}

.hero-proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 88px;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 6px 0 0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 14%, rgba(45, 27, 51, 0.44), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(217, 182, 72, 0.08), transparent 14%),
    radial-gradient(circle at 70% 54%, rgba(217, 182, 72, 0.04), transparent 18%),
    linear-gradient(180deg, #101010 0%, #0c0c0c 45%, #111111 100%);
  border: 1px solid rgba(217, 182, 72, 0.12);
  box-shadow: var(--shadow);
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 6px 0 0;
  border-radius: 10px;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.05;
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: center;
  padding: 116px 88px 124px;
}

.landing-copy h1,
.landing-copy p {
  margin-top: 0;
}

.landing-copy h1 {
  max-width: 620px;
  font-size: clamp(4.4rem, 6.8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.landing-copy .hero-text {
  max-width: 460px;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(224, 224, 224, 0.68);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.landing-terminal {
  position: relative;
}

.landing-terminal::before,
.landing-terminal::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}

.landing-terminal::before {
  top: 8%;
  left: -4%;
  width: 260px;
  height: 260px;
  background: rgba(45, 27, 51, 0.34);
}

.landing-terminal::after {
  top: 24%;
  right: 2%;
  width: 220px;
  height: 220px;
  background: rgba(217, 182, 72, 0.12);
}

.landing-terminal-shell {
  position: relative;
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.84), rgba(22, 22, 22, 0.7));
  border: 1px solid rgba(217, 182, 72, 0.14);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(22px);
}

.landing-terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.landing-terminal-top h3,
.landing-side-card h3,
.landing-preview-head h3,
.landing-step-card h3,
.landing-feature-card h3,
.landing-faq-card h3 {
  margin: 0;
}

.landing-live-badge,
.landing-preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.18);
  background: rgba(217, 182, 72, 0.08);
  color: #dbc88d;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-terminal-grid {
  display: grid;
  grid-template-columns: 1.62fr 0.5fr;
  gap: 18px;
}

.landing-chart-card,
.landing-side-card,
.landing-preview-terminal,
.landing-plan-card,
.landing-feature-card,
.landing-step-card,
.landing-testimonial-card,
.landing-faq-card {
  border: 1px solid rgba(217, 182, 72, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(22, 22, 22, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.landing-chart-card,
.landing-side-card,
.landing-preview-terminal {
  border-radius: 8px;
  padding: 28px;
}

.landing-chart-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(224, 224, 224, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-chart-state {
  color: #dbc88d;
  font-weight: 600;
}

.landing-chart-stage {
  position: relative;
  height: 410px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(217, 182, 72, 0.08);
  background:
    radial-gradient(circle at 24% 20%, rgba(45, 27, 51, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(14, 14, 14, 1), rgba(10, 10, 10, 1));
}

.landing-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.18;
}

.landing-liquidity-band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 12px;
  filter: blur(5px);
}

.landing-liquidity-band.band-gold {
  top: 18%;
  background: linear-gradient(to right, transparent, rgba(217, 182, 72, 0.2), transparent);
}

.landing-liquidity-band.band-blue {
  top: 48%;
  background: linear-gradient(to right, transparent, rgba(45, 27, 51, 0.38), transparent);
}

.landing-chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-chart-pill {
  position: absolute;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.14);
  background: rgba(22, 22, 22, 0.76);
  color: #d6cfbf;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.landing-chart-pill.is-gold {
  border-color: rgba(217, 182, 72, 0.2);
  background: rgba(217, 182, 72, 0.08);
  color: #e1cd8a;
}

.landing-chart-pill.is-green {
  border-color: rgba(217, 182, 72, 0.16);
  background: rgba(45, 27, 51, 0.52);
  color: #d3bfe1;
}

.landing-chart-pill.bottom-left {
  left: 16px;
  bottom: 16px;
}

.landing-chart-pill.top-right {
  top: 16px;
  right: 16px;
}

.landing-chart-pill.center-right {
  top: 38%;
  left: 58%;
}

.landing-terminal-side {
  display: grid;
  gap: 14px;
}

.landing-side-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
}

.landing-side-header p,
.landing-plan-card p,
.landing-feature-card p,
.landing-step-card p,
.landing-preview-list li,
.landing-testimonial-card span,
.landing-faq-card p {
  color: var(--muted);
  line-height: 1.65;
}

.landing-score-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.12);
  color: #9ef3cc;
  font-size: 0.94rem;
  font-weight: 800;
}

.landing-progress-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.landing-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: rgba(244, 247, 251, 0.66);
  font-size: 0.84rem;
}

.landing-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.landing-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}

.landing-signal-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.landing-signal-chip {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid rgba(217, 182, 72, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(224, 224, 224, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.landing-signal-chip.is-blue {
  border-color: rgba(217, 182, 72, 0.1);
  background: rgba(45, 27, 51, 0.48);
  color: #d7c8e2;
}

.landing-signal-chip.is-green {
  border-color: rgba(217, 182, 72, 0.12);
  background: rgba(217, 182, 72, 0.07);
  color: #dfcc91;
}

.landing-section {
  grid-column: span 12;
  padding: 84px 72px;
}

.landing-section-header,
.landing-pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 40px;
}

.landing-section-header h2,
.landing-pricing-header h2 {
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.landing-section-copy {
  max-width: 460px;
  margin: 0;
  color: rgba(224, 224, 224, 0.58);
  line-height: 1.9;
}

.landing-feature-grid,
.landing-steps-grid,
.landing-pricing-grid,
.landing-testimonial-grid,
.landing-faq-list {
  display: grid;
  gap: 16px;
}

.landing-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.landing-feature-card {
  border-radius: 8px;
  padding: 36px 32px;
  transition: transform 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury), box-shadow 220ms var(--ease-luxury);
}

.landing-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 182, 72, 0.2);
}

.landing-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.18);
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.1), rgba(45, 27, 51, 0.34));
  color: #dbc88d;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.landing-feature-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.14);
  background: rgba(217, 182, 72, 0.06);
  color: rgba(224, 224, 224, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-feature-visual {
  height: 160px;
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)), #09111c;
  position: relative;
  overflow: hidden;
}

.landing-feature-visual.heatmap::before,
.landing-feature-visual.signals::before,
.landing-feature-visual.delta::before,
.landing-feature-visual.expansion::before {
  content: "";
  position: absolute;
  inset: 14px;
}

.landing-feature-visual.heatmap::before {
  background:
    linear-gradient(90deg, rgba(250, 204, 21, 0.5), transparent 22%) 0 0 / 25% 25%,
    linear-gradient(90deg, rgba(59, 130, 246, 0.55), transparent 22%) 0 0 / 25% 25%;
  opacity: 0.6;
}

.landing-feature-visual.signals::before {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.16), transparent),
    linear-gradient(180deg, rgba(16, 185, 129, 0.2), transparent),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 38px 0 -28px rgba(59, 130, 246, 0.22),
    0 76px 0 -56px rgba(16, 185, 129, 0.18);
}

.landing-feature-visual.delta::before {
  background:
    linear-gradient(to right, transparent 4%, rgba(59, 130, 246, 0.8) 4% 10%, transparent 10% 16%, rgba(34, 211, 238, 0.8) 16% 23%, transparent 23% 28%, rgba(250, 204, 21, 0.72) 28% 35%, transparent 35% 40%, rgba(59, 130, 246, 0.8) 40% 47%, transparent 47% 52%, rgba(34, 211, 238, 0.8) 52% 60%, transparent 60% 66%, rgba(59, 130, 246, 0.8) 66% 72%, transparent 72%);
  mask-image: linear-gradient(to top, black 75%, transparent);
}

.landing-feature-visual.expansion::before {
  display: grid;
  place-items: center;
  content: "FX   CRYPTO   INDICES";
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 251, 0.65);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-preview-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 44px;
  align-items: center;
}

.landing-preview-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.landing-preview-list li {
  padding: 16px 0 0;
  border: 0;
  background: transparent;
}

.landing-preview-panel {
  padding: 20px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.landing-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.landing-preview-frame {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 16px;
}

.landing-preview-main {
  min-height: 320px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 18%, rgba(59, 130, 246, 0.18), transparent 28%),
    linear-gradient(180deg, #0a1420, #08111c);
  position: relative;
  overflow: hidden;
}

.landing-preview-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
}

.landing-preview-main::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 126px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 34%, rgba(250, 204, 21, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-preview-stack {
  display: grid;
  gap: 16px;
}

.landing-preview-stack article {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #07101a;
}

.landing-preview-stack h3 {
  margin: 10px 0 0;
  font-size: 2rem;
}

.landing-preview-stack h3.is-positive {
  color: #9ef3cc;
}

.landing-pricing-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing-pricing-intro {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 34px;
}

.landing-pricing-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.landing-pricing-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(224, 224, 224, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.landing-pricing-chip.is-active {
  border-color: rgba(217, 182, 72, 0.28);
  background: rgba(217, 182, 72, 0.08);
  color: #f0dfaa;
}

.landing-pricing-chip.is-static {
  cursor: default;
}

.landing-pricing-save {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 2px;
  background: rgba(45, 27, 51, 0.62);
  color: #d5bfdf;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.landing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 8px;
  padding: 42px 34px;
}

.landing-plan-card.is-popular {
  border-color: rgba(217, 182, 72, 0.24);
  background: linear-gradient(180deg, rgba(217, 182, 72, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.54);
}

.landing-plan-card.is-elite {
  border-color: rgba(217, 182, 72, 0.16);
  background: linear-gradient(180deg, rgba(45, 27, 51, 0.18), rgba(255, 255, 255, 0.02));
}

.landing-plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.18);
  background: rgba(217, 182, 72, 0.08);
  color: #e3cf8f;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-plan-name {
  margin: 6px 0 0;
  color: rgba(224, 224, 224, 0.76);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-plan-kicker {
  margin: 0;
  color: rgba(217, 182, 72, 0.58) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-plan-price {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.landing-plan-amount {
  display: inline-block;
  line-height: 0.95;
}

.landing-plan-period {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  line-height: 1.4;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.landing-plan-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.landing-plan-card li {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(224, 224, 224, 0.82);
}

.landing-plan-bill-note {
  margin: 18px 0 0;
  color: rgba(224, 224, 224, 0.42) !important;
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-plan-button {
  width: 100%;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: #f1ece1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury);
}

.landing-plan-button.is-primary {
  border-color: rgba(217, 182, 72, 0.22);
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.96), rgba(191, 158, 61, 0.94));
  color: #15110a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.landing-plan-button.is-gold {
  border-color: rgba(217, 182, 72, 0.18);
  color: #15110a;
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.94), rgba(232, 213, 150, 0.92));
}

.landing-plan-button:hover,
.landing-plan-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(217, 182, 72, 0.32);
  outline: none;
}

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

.landing-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.landing-proof-stat {
  padding: 30px 28px;
  border-radius: 8px;
  border: 1px solid rgba(217, 182, 72, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.landing-proof-stat strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f1ece1;
}

.landing-proof-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(224, 224, 224, 0.56);
  line-height: 1.55;
}

.landing-testimonial-card {
  border-radius: 8px;
  padding: 38px 34px;
}

.landing-testimonial-card p {
  margin: 0;
  color: rgba(224, 224, 224, 0.92);
  font-size: 1rem;
  line-height: 1.92;
}

.landing-testimonial-card span {
  display: block;
  margin-top: 24px;
  color: rgba(224, 224, 224, 0.48);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-faq-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

.landing-faq-card {
  border-radius: 28px;
  padding: 24px;
}

.landing-faq-card p {
  margin-bottom: 0;
}

.hero-status {
  min-width: 300px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-preview {
  flex: 0.95;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  min-height: 100%;
}

.hero-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-preview-card {
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(121, 224, 192, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(6, 16, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-preview-head h3,
.hero-preview-head p,
.hero-preview-stat h3,
.hero-preview-stat p {
  margin-top: 0;
}

.hero-preview-head p,
.hero-preview-stat p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-preview-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-live-card {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero-live-card h3,
.hero-live-card p {
  margin-top: 0;
}

.hero-live-card p {
  color: var(--muted);
  line-height: 1.6;
}

.install-cta {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.install-button {
  width: fit-content;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #9dc3ff, #79e0c0);
  color: #081521;
  font-weight: 700;
  cursor: pointer;
}

.install-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(121, 224, 192, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.status-caption {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.user-session {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.user-name,
.user-email {
  margin: 0 0 8px;
}

.user-name {
  font-weight: 700;
}

.user-role {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.88rem;
}

.user-plan-card {
  margin: 14px 0 6px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(121, 224, 192, 0.08);
  border: 1px solid rgba(121, 224, 192, 0.16);
}

.user-plan-name {
  margin: 0 0 6px;
}

.user-plan-status,
.user-plan-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.user-trial-note {
  margin: 8px 0 0;
  color: var(--warning);
  line-height: 1.5;
}

.user-plan-summary {
  margin-top: 8px;
}

.trial-button {
  margin-top: 12px;
  width: fit-content;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcc6f, #ffd98e);
  color: #342100;
  font-weight: 700;
  cursor: pointer;
}

.settings-field {
  display: block;
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.settings-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.logout-button {
  margin-top: 12px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 142, 127, 0.22);
  background: rgba(255, 142, 127, 0.12);
  color: #ffd7d1;
  cursor: pointer;
}

.refresh-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.refresh-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.refresh-button {
  width: fit-content;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #072016;
  font-weight: 700;
  cursor: pointer;
}

.detail-button {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(121, 224, 192, 0.22);
  border-radius: 999px;
  background: rgba(121, 224, 192, 0.08);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.follow-up-action {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(121, 224, 192, 0.22);
  border-radius: 999px;
  background: rgba(121, 224, 192, 0.08);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

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

.panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(121, 224, 192, 0.08), transparent 65%);
  pointer-events: none;
}

.journey-panel,
.follow-up-panel,
.showcase-panel,
.landing-narrative-panel,
.resources-panel,
.product-guide-panel,
.telegram-panel,
.account-panel,
.support-panel,
.account-sync-panel,
.market-board-panel,
.value-panel,
.learn-panel,
.notifications-panel,
.upgrade-panel,
.watcher-panel,
.plans-panel,
.snapshot-panel,
.gold-panel,
.chart-panel,
.detail-panel,
.pulse-panel {
  grid-column: span 12;
}

.follow-up-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.follow-up-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.follow-up-card h3 {
  margin: 0 0 10px;
}

.follow-up-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.follow-up-card .follow-up-action {
  margin-top: 14px;
}

.follow-up-card.trial {
  background: rgba(255, 204, 111, 0.09);
  border-color: rgba(255, 204, 111, 0.2);
}

.follow-up-card.upgrade {
  background: rgba(121, 224, 192, 0.08);
  border-color: rgba(121, 224, 192, 0.2);
}

.follow-up-card.premium {
  background: rgba(88, 156, 255, 0.1);
  border-color: rgba(88, 156, 255, 0.22);
}

.follow-up-card.guidance {
  background: rgba(255, 255, 255, 0.04);
}

.market-board-grid,
.value-grid,
.learn-grid,
.resources-grid,
.landing-narrative-grid,
.showcase-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

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

.showcase-grid {
  grid-template-columns: 1.35fr 1fr;
}

.market-board-card,
.value-card,
.learn-card,
.resource-card,
.product-guide-card,
.landing-narrative-card,
.showcase-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.landing-narrative-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.showcase-card-wide {
  min-height: 100%;
}

.showcase-copy h3,
.showcase-copy p {
  margin-top: 0;
}

.showcase-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.landing-narrative-card h3,
.landing-narrative-card p {
  margin-top: 0;
}

.landing-narrative-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.resource-card h3,
.resource-card p {
  margin-top: 0;
}

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

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

.product-guide-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.product-guide-card.is-active {
  border-color: rgba(121, 224, 192, 0.26);
  background:
    linear-gradient(180deg, rgba(121, 224, 192, 0.12), rgba(121, 224, 192, 0.05)),
    rgba(255, 255, 255, 0.03);
}

.product-guide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-guide-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(121, 224, 192, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-guide-card h3,
.product-guide-card p {
  margin-top: 0;
}

.product-guide-card h3 {
  margin-bottom: 10px;
}

.product-guide-summary,
.product-guide-copy {
  color: var(--muted);
  line-height: 1.6;
}

.product-guide-copy + .product-guide-copy {
  margin-top: 10px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-footnote {
  margin-top: 12px;
  color: #c8d6e9;
  font-size: 0.92rem;
}

.resources-panel .resource-card,
.product-guide-card,
.landing-narrative-card,
.showcase-card {
  min-height: 100%;
}

.telegram-grid,
.telegram-form-grid,
.telegram-checkbox-grid {
  display: grid;
  gap: 14px;
}

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

.telegram-checkbox-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.telegram-card,
.telegram-field-group {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.telegram-card h3,
.telegram-card p,
.telegram-helper {
  margin-top: 0;
}

.telegram-card p,
.telegram-helper,
.telegram-steps,
.telegram-toggle span {
  color: var(--muted);
  line-height: 1.6;
}

.telegram-form {
  margin-top: 18px;
}

.telegram-steps {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.telegram-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.telegram-toggle input {
  width: 18px;
  height: 18px;
}

.telegram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.market-board-card.is-active {
  background: rgba(121, 224, 192, 0.08);
  border-color: rgba(121, 224, 192, 0.2);
}

.market-board-card {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.market-board-card:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 183, 255, 0.26);
  background: rgba(142, 183, 255, 0.08);
}

.market-board-card h3,
.value-card h3,
.learn-card h3 {
  margin: 0 0 10px;
}

.market-board-card p,
.value-card p,
.learn-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.market-board-meta,
.learn-meta {
  margin-top: 10px;
  font-size: 0.88rem;
}

.notifications-list,
.upgrade-requests-list {
  display: grid;
  gap: 14px;
}

.notification-card,
.upgrade-request-card,
.upgrade-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.notification-card h3,
.upgrade-request-card h3,
.upgrade-card h3 {
  margin: 0 0 10px;
  font-family: "Inter", "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.notification-card p,
.upgrade-request-card p,
.upgrade-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.notification-card.unread {
  border-color: rgba(121, 224, 192, 0.28);
  background: rgba(121, 224, 192, 0.08);
}

.notification-card.read {
  opacity: 0.86;
}

.notification-actions,
.upgrade-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.billing-plan-actions {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.billing-manage-button {
  justify-self: start;
}

.billing-plan-action-grid {
  display: grid;
  gap: 12px;
}

.billing-plan-button {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
  padding: 14px 16px;
}

.billing-plan-button span {
  font-weight: 700;
  color: var(--text);
}

.billing-plan-button small {
  font-size: 0.82rem;
  color: var(--muted);
}

.billing-plan-button-primary small {
  color: rgba(12, 12, 12, 0.8);
}

.notification-meta,
.upgrade-request-meta {
  margin-top: 10px;
  font-size: 0.88rem;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.upgrade-stage-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.billing-journey-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.billing-confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.billing-confidence-item {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.billing-confidence-item h4 {
  margin: 6px 0 8px;
  font-family: "Inter", "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.billing-confidence-item p {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.auth-textarea {
  resize: vertical;
  min-height: 104px;
}

.upgrade-request-card.reviewing {
  border-color: rgba(255, 204, 111, 0.25);
  background: rgba(255, 204, 111, 0.08);
}

.upgrade-request-card.approved {
  border-color: rgba(121, 224, 192, 0.28);
  background: rgba(121, 224, 192, 0.08);
}

.upgrade-request-card.declined {
  border-color: rgba(255, 142, 127, 0.28);
  background: rgba(255, 142, 127, 0.08);
}

.auth-overlay,
.detail-drawer {
  position: fixed;
  inset: 0;
  display: none;
}

.auth-overlay {
  z-index: 40;
  overflow-y: auto;
  padding: 20px 12px;
  box-sizing: border-box;
}

.detail-drawer {
  z-index: 30;
}

.auth-overlay.is-open,
.detail-drawer.is-open {
  display: block;
}

.auth-overlay.is-open {
  display: grid;
  align-items: start;
  justify-items: center;
}

.auth-backdrop,
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(8px);
}

.idle-warning-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 10, 18, 0.72);
  backdrop-filter: blur(10px);
}

.billing-compliance-overlay {
  position: fixed;
  inset: 0;
  z-index: 46;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(12px);
}

.billing-compliance-overlay[hidden] {
  display: none !important;
}

.billing-compliance-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(76, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 21, 29, 0.98), rgba(8, 10, 15, 0.99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.billing-compliance-hero h3 {
  margin: 6px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.billing-compliance-hero p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.billing-compliance-form {
  display: grid;
  gap: 18px;
}

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

.billing-compliance-grid .auth-label:first-child {
  grid-column: 1 / -1;
}

.billing-compliance-checks {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.billing-compliance-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.billing-compliance-check input {
  margin-top: 4px;
  accent-color: var(--gold);
}

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

.idle-warning-overlay[hidden] {
  display: none !important;
}

.idle-warning-dialog {
  width: min(420px, 100%);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 21, 29, 0.96), rgba(10, 12, 18, 0.98)),
    rgba(11, 13, 18, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.idle-warning-dialog h3,
.idle-warning-dialog p {
  margin-top: 0;
}

.idle-warning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.auth-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: max(20px, 4vh) auto;
  padding: 28px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.06), transparent 20%),
    linear-gradient(180deg, #0a1423 0%, #0d1728 100%);
  border: 1px solid rgba(143, 169, 201, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
}

.auth-shell-page {
  align-items: stretch;
}

.auth-brand-column,
.auth-form-column {
  border-radius: 8px;
  border: 1px solid rgba(217, 182, 72, 0.1);
  background: rgba(22, 22, 22, 0.7);
  padding: 30px;
  backdrop-filter: blur(20px);
}

.auth-brand-column {
  background:
    radial-gradient(circle at top left, rgba(45, 27, 51, 0.32), transparent 34%),
    radial-gradient(circle at bottom right, rgba(217, 182, 72, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.auth-form-column {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(22, 22, 22, 0.72);
}

.auth-access-header {
  margin-bottom: 18px;
}

.auth-tab-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid rgba(217, 182, 72, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.auth-tab-button {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(224, 224, 224, 0.62);
  font: inherit;
  font-weight: 600;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 3px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms var(--ease-luxury), color 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury);
}

.auth-tab-button:hover,
.auth-tab-button:focus-visible {
  color: #ffffff;
  outline: none;
}

.auth-tab-button.is-active {
  border-color: rgba(217, 182, 72, 0.16);
  background: rgba(217, 182, 72, 0.08);
  color: #f0dfaa;
}

.auth-close-button {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  margin: -4px -4px 12px auto;
  border-radius: 999px;
  border: 1px solid rgba(143, 169, 201, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 247, 251, 0.92);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.auth-close-button:hover,
.auth-close-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.auth-copy {
  color: var(--muted);
  line-height: 1.85;
}

.auth-status-banner {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(121, 224, 192, 0.16);
  background: rgba(121, 224, 192, 0.08);
  color: #dff8ec;
  line-height: 1.55;
}

.auth-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(217, 182, 72, 0.08);
}

.auth-topbar h2 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  line-height: 1.05;
}

.auth-brand-title {
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 4.4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.auth-brand-surface {
  margin-top: 22px;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid rgba(217, 182, 72, 0.08);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(8, 8, 8, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.auth-brand-surface-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-brand-surface-head h4 {
  margin: 6px 0 0;
}

.auth-surface-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.18);
  background: rgba(217, 182, 72, 0.08);
  color: #dbc88d;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-surface-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 12px;
  margin-top: 14px;
}

.auth-surface-chart {
  position: relative;
  min-height: 180px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 39, 1), rgba(8, 16, 27, 1));
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.auth-surface-chart::before {
  content: "";
  position: absolute;
  inset: auto 0 18px 0;
  height: 100px;
  background:
    linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.06)),
    linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.85) 18%, rgba(255, 255, 255, 0.94) 55%, rgba(250, 204, 21, 0.9) 100%);
  clip-path: polygon(0 78%, 10% 76%, 18% 60%, 28% 58%, 39% 43%, 48% 46%, 58% 34%, 68% 29%, 78% 17%, 88% 12%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.auth-surface-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.18), transparent);
  filter: blur(5px);
}

.auth-surface-annotation {
  position: absolute;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.auth-surface-annotation.is-buy {
  left: 12px;
  bottom: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.12);
  color: #d7e7ff;
}

.auth-surface-annotation.is-level {
  right: 12px;
  top: 12px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.12);
  color: #f5db9c;
}

.auth-surface-stats {
  display: grid;
  gap: 10px;
}

.auth-surface-stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.auth-surface-stat span {
  display: block;
  color: rgba(244, 247, 251, 0.46);
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.auth-surface-stat strong {
  display: block;
  font-size: 1rem;
  color: #f4f7fb;
}

.auth-mode-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.auth-mode-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(224, 224, 224, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-mode-pill.is-active {
  border-color: rgba(217, 182, 72, 0.18);
  background: rgba(217, 182, 72, 0.08);
  color: #f0dfaa;
}

.auth-benefits-premium {
  margin-top: 24px;
}

.auth-brand-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.auth-brand-proof span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 247, 251, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
}

.auth-form-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-form-card-secondary {
  margin-top: 12px;
}

.auth-form-column-page .auth-form-card-secondary {
  margin-top: 0;
}

.auth-trial-copy {
  color: #f5db9c;
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.auth-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-input {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 3px;
  border: 1px solid rgba(217, 182, 72, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  transition: border-color 220ms var(--ease-luxury), background 220ms var(--ease-luxury), box-shadow 220ms var(--ease-luxury);
}

.auth-input:focus {
  outline: none;
  border-color: rgba(217, 182, 72, 0.26);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(217, 182, 72, 0.08);
}

.auth-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.45rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.auth-consent-row input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.password-input-wrap {
  position: relative;
}

.password-input-wrap .auth-input,
.password-input-wrap .auth-access-input {
  padding-right: 82px;
}

.password-toggle-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(217, 182, 72, 0.2);
  border-radius: 3px;
  background: rgba(217, 182, 72, 0.08);
  color: #d9b648;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.password-toggle-button:hover {
  border-color: rgba(217, 182, 72, 0.38);
  background: rgba(217, 182, 72, 0.14);
}

.auth-submit {
  margin-top: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(217, 182, 72, 0.2);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(217, 182, 72, 0.96), rgba(191, 158, 61, 0.94));
  color: #14110a;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.auth-error {
  min-height: 20px;
  color: #ffd7d1;
}

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

.auth-link-button {
  padding: 0;
  border: 0;
  background: none;
  color: #dbc88d;
  font: inherit;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.auth-link-button:hover {
  color: #f0dfaa;
}

.auth-demo {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(217, 182, 72, 0.08);
}

.auth-create-panel {
  margin-top: 24px;
}

.auth-demo-copy {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: Consolas, monospace;
}

.auth-signup-copy {
  font-family: inherit;
  line-height: 1.6;
}

.auth-signup-benefits {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.auth-signup-benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.auth-signup-benefit span {
  color: var(--muted);
  font-size: 0.86rem;
}

.auth-signup-benefit strong {
  font-size: 0.92rem;
  color: #f4f7fb;
  text-align: right;
}

.auth-reset-panel {
  margin-top: 16px;
}

.auth-reset-copy {
  font-family: inherit;
  line-height: 1.6;
}

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

.account-settings-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
}

.support-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-thread-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
  margin: 16px 0 14px;
}

.chat-message-card {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.chat-message-card.user {
  background: rgba(121, 224, 192, 0.09);
  border-color: rgba(121, 224, 192, 0.16);
}

.chat-message-card.assistant {
  background: rgba(142, 183, 255, 0.08);
  border-color: rgba(142, 183, 255, 0.16);
}

.chat-message-card.admin {
  background: rgba(255, 204, 111, 0.08);
  border-color: rgba(255, 204, 111, 0.16);
}

.chat-message-card.system {
  background: rgba(255, 255, 255, 0.04);
}

.chat-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-message-head h4,
.chat-thread-card h4 {
  margin: 0;
}

.chat-message-copy,
.chat-thread-preview,
.chat-thread-transcript {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.chat-message-copy {
  color: var(--text);
}

.chat-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-thread-list::-webkit-scrollbar {
  width: 8px;
}

.chat-thread-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.chat-thread-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-thread-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.chat-thread-transcript {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  white-space: pre-line;
}

.chat-thread-reply {
  display: grid;
  gap: 10px;
}

.chat-thread-reply textarea {
  min-height: 110px;
}

.chat-thread-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.support-request-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-request-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.support-request-head h3,
.support-request-head h4 {
  margin: 0 0 6px;
}

.support-request-meta,
.support-request-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-request-copy {
  margin-top: 10px;
}

.support-request-note {
  margin: 10px 0 0;
  color: var(--text);
  line-height: 1.55;
}

.support-request-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.support-status-badge.open {
  background: rgba(255, 204, 111, 0.14);
  color: #ffd88d;
}

.support-status-badge.reviewing {
  background: rgba(121, 224, 192, 0.14);
  color: var(--accent);
}

.support-status-badge.ai_active {
  background: rgba(142, 183, 255, 0.14);
  color: #b9cdff;
}

.support-status-badge.waiting_human {
  background: rgba(255, 204, 111, 0.14);
  color: #ffd88d;
}

.support-status-badge.human_active {
  background: rgba(121, 224, 192, 0.14);
  color: var(--accent);
}

.support-status-badge.resolved {
  background: rgba(124, 157, 255, 0.14);
  color: #c8d4ff;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(180deg, #0a1423 0%, #0d1728 100%);
  border-left: 1px solid rgba(143, 169, 201, 0.16);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
  padding: 24px 22px 28px;
}

.drawer-header,
.drawer-section-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.drawer-header {
  align-items: flex-start;
  margin-bottom: 22px;
}

.drawer-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.drawer-close {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.drawer-grid,
.drawer-timeframes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.drawer-card,
.drawer-timeframe-card,
.drawer-timeline-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-card h3,
.drawer-timeframe-card h3,
.drawer-section h3,
.drawer-timeline-item h4 {
  margin: 0 0 8px;
}

.drawer-card p,
.drawer-timeframe-card p,
.drawer-copy,
.drawer-timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.drawer-section {
  margin-top: 24px;
}

.drawer-section-header {
  display: block;
  margin-bottom: 12px;
}

.drawer-copy {
  color: #e4edf8;
}

.drawer-timeline,
.drawer-alerts {
  display: grid;
  gap: 12px;
}

.drawer-time {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-change-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.snapshot-panel,
.detail-panel,
.pulse-panel,
.watcher-panel,
.admin-panel,
.plans-panel,
.journey-panel,
.market-board-panel,
.value-panel,
.learn-panel {
  grid-column: span 12;
}

.news-panel {
  grid-column: span 12;
}

.insight-panel,
.alerts-panel,
.warnings-panel {
  grid-column: span 6;
}

.tags-panel,
.liquidity-panel,
.replay-panel {
  grid-column: span 4;
}

.timeframe-panel {
  grid-column: span 12;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-header.compact {
  margin-bottom: 18px;
}

.panel:has(.section-info-button),
.command-center-hero-card:has(.section-info-button),
.command-center-side-card:has(.section-info-button),
.command-center-intel-card:has(.section-info-button),
.review-suite-card:has(.section-info-button),
.review-suite-intraday-strip:has(.section-info-button),
.review-suite-auction-control:has(.section-info-button),
.review-suite-replay-panel:has(.section-info-button),
.review-suite-decision-console:has(.section-info-button) {
  overflow: visible !important;
}

.has-section-info {
  position: relative;
}

.panel-header.has-section-info,
.deep-diagnostic-head.has-section-info,
.review-suite-intraday-strip-head.has-section-info,
.review-suite-replay-head.has-section-info,
.review-suite-rc-head.has-section-info,
.review-suite-btcc-head.has-section-info,
.review-suite-cac-head.has-section-info,
.review-suite-regime-head.has-section-info,
.review-suite-watch-head.has-section-info,
.review-suite-card-head.has-section-info,
.command-center-side-label.has-section-info,
.command-center-intel-label.has-section-info {
  align-items: flex-start;
}

.section-info-button {
  position: relative;
  z-index: 8;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  color: rgba(245, 232, 182, 0.95);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 42%),
    rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 10px 24px rgba(0, 0, 0, 0.24);
  cursor: help;
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.section-info-button::after {
  content: attr(data-section-info);
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  width: min(420px, 78vw);
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  color: rgba(245, 247, 252, 0.92);
  background:
    linear-gradient(135deg, rgba(20, 24, 32, 0.98), rgba(10, 12, 17, 0.98)),
    rgba(10, 12, 17, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: normal;
}

.section-info-button[data-tooltip-align="right"]::after {
  right: -8px;
  left: auto;
  transform-origin: top right;
}

.section-info-button[data-tooltip-align="left"]::after {
  right: auto;
  left: -8px;
  transform-origin: top left;
}

.section-info-button::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 2px;
  width: 10px;
  height: 10px;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(20, 24, 32, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.section-info-button[data-tooltip-align="right"]::before {
  right: 2px;
  left: auto;
}

.section-info-button[data-tooltip-align="left"]::before {
  right: auto;
  left: 2px;
}

.section-info-button:hover,
.section-info-button:focus-visible {
  border-color: rgba(245, 232, 182, 0.86);
  color: #050608;
  background: linear-gradient(135deg, #f5e8b6, #c9a84c);
  outline: none;
  transform: translateY(-1px);
}

.section-info-button:hover::after,
.section-info-button:focus-visible::after,
.section-info-button:hover::before,
.section-info-button:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-info-button:hover::before,
.section-info-button:focus-visible::before {
  transform: rotate(45deg) translateY(0);
}

.price {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  font-weight: 700;
}

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

.chart-badge,
.chart-change {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.chart-badge {
  background: rgba(142, 183, 255, 0.12);
  color: var(--accent-blue);
}

body.is-authenticated .chart-badge {
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(245, 232, 182, 0.94);
  background: rgba(201, 168, 76, 0.1);
}

.chart-change {
  background: rgba(121, 224, 192, 0.1);
  color: var(--accent);
}

.chart-shell {
  position: relative;
  margin-top: 18px;
  padding: 18px 18px 6px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 16%, rgba(121, 224, 192, 0.08), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chart-timeframe-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chart-session-label {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.chart-timeframe-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.chart-timeframe-button:hover,
.chart-timeframe-button.is-active {
  color: var(--text);
  background: rgba(121, 224, 192, 0.14);
  border-color: rgba(121, 224, 192, 0.22);
}

.chart-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-select-wrap {
  display: inline-flex;
}

.chart-select {
  min-width: 112px;
  padding: 9px 34px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(226, 235, 248, 0.65) 50%),
    linear-gradient(135deg, rgba(226, 235, 248, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.chart-fullscreen-button {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.chart-fullscreen-button:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.12);
}

.price-chart {
  display: block;
  width: 100%;
  height: 360px;
  min-height: 360px;
}

.chart-shell:fullscreen,
.chart-shell.is-fullscreen {
  padding: 22px;
  background:
    radial-gradient(circle at 18% 16%, rgba(121, 224, 192, 0.1), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(59, 130, 246, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 13, 18, 0.98), rgba(5, 6, 10, 1));
}

.chart-shell:fullscreen .price-chart,
.chart-shell.is-fullscreen .price-chart {
  height: calc(100vh - 140px);
  min-height: 560px;
}

.chart-overlay-layer {
  position: absolute;
  inset: 18px 18px 12px;
  pointer-events: none;
}

.chart-overlay-tag,
.chart-overlay-live {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 16, 0.76);
  backdrop-filter: blur(10px);
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.chart-overlay-tag.liquidity-above {
  top: 18px;
  right: 18px;
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.2);
}

.chart-overlay-tag.liquidity-below {
  bottom: 18px;
  left: 18px;
  color: var(--accent);
  border-color: rgba(121, 224, 192, 0.2);
}

.chart-overlay-tag.bias {
  top: 18px;
  left: 18px;
}

.chart-overlay-tag.confidence {
  top: 62px;
  left: 18px;
}

.chart-overlay-tag.momentum {
  top: 106px;
  left: 18px;
  color: #8ec5ff;
  border-color: rgba(59, 130, 246, 0.2);
}

.chart-overlay-live {
  right: 18px;
  bottom: 18px;
  color: #79e0c0;
}

.chart-overlay-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: chart-live-pulse 1.8s infinite;
}

.chart-empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px 0 10px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.32), rgba(7, 10, 16, 0.72));
}

.chart-footer {
  display: grid;
  grid-template-columns: 180px 180px 180px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 12px;
}

.chart-range {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-range h3 {
  margin: 6px 0 0;
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 4px 6px;
}

@keyframes chart-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.gold-live-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gold-live-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.gold-reference-grid,
.gold-timeframe-grid {
  display: grid;
  gap: 14px;
}

.gold-reference-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.gold-timeframe-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.snapshot-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.symbol-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.symbol-button {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.symbol-button:hover,
.symbol-button.is-active {
  color: var(--text);
  background: rgba(121, 224, 192, 0.14);
  border-color: rgba(121, 224, 192, 0.22);
}

.snapshot-grid,
.detail-grid,
.pulse-grid,
.watcher-grid,
.liquidity-grid,
.timeframe-grid {
  display: grid;
  gap: 14px;
}

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

.detail-grid,
.watcher-grid,
.timeframe-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.read-guide-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.read-guide-card {
  position: relative;
  min-height: 148px;
  padding: 16px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.14);
  overflow: hidden;
}

.read-guide-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.95), rgba(121, 224, 192, 0.22));
}

.read-guide-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: rgba(5, 6, 10, 0.95);
  background: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.read-guide-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.read-guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.pulse-grid {
  grid-template-columns: 1.2fr 1fr;
}

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

.watcher-health-header {
  margin-top: 18px;
}

.watcher-health-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
}

.chart-badge[data-health-state="healthy"] {
  border-color: rgba(88, 214, 141, 0.28);
  color: rgba(88, 214, 141, 0.92);
}

.chart-badge[data-health-state="watch"] {
  border-color: rgba(212, 175, 55, 0.28);
  color: rgba(245, 216, 112, 0.92);
}

.chart-badge[data-health-state="stale"] {
  border-color: rgba(255, 95, 95, 0.3);
  color: rgba(255, 140, 140, 0.96);
}

.metric-card,
.detail-card,
.pulse-card,
.watcher-card,
.liquidity-card,
.timeframe-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.journey-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-card h3 {
  margin: 0 0 8px;
}

.journey-card p,
.journey-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.journey-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.journey-button {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.journey-button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #072016;
}

.journey-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.journey-checklist {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.journey-note {
  margin-top: 12px;
}

.metric-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-card h3,
.detail-card h3,
.pulse-card h3,
.watcher-card h3,
.liquidity-card h3,
.timeframe-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.metric-support,
.detail-card p,
.pulse-card p,
.watcher-card p,
.liquidity-note,
.timeframe-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.watcher-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.watcher-permission-note {
  margin: 0 0 12px;
  color: var(--warning);
  line-height: 1.55;
}

.watcher-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.watcher-start {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #072016;
}

.watcher-stop {
  background: rgba(255, 142, 127, 0.14);
  color: #ffd7d1;
  border: 1px solid rgba(255, 142, 127, 0.2);
}

.watcher-log-path {
  color: var(--muted);
  line-height: 1.5;
  word-break: break-word;
}

.admin-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.10), transparent 46%),
    rgba(8, 10, 14, 0.72);
}

.admin-section-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.admin-section-button:hover,
.admin-section-button.is-active {
  border-color: rgba(201, 168, 76, 0.62);
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
}

.admin-section-button.is-active {
  transform: translateY(-1px);
}

.admin-section-context {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--gold);
  background:
    radial-gradient(circle at top right, rgba(76, 168, 255, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.admin-section-context span {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.admin-section-context strong {
  color: var(--text-primary);
  line-height: 1.5;
}

[data-admin-section][hidden] {
  display: none !important;
}

.admin-grid,
.admin-users-list,
.plan-catalog-grid {
  display: grid;
  gap: 14px;
}

.admin-grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.admin-grid-secondary {
  margin-top: 14px;
}

.admin-wide-card {
  grid-column: 1 / -1;
}

.admin-card,
.admin-user-card,
.plan-card,
.feature-lock {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-user-form {
  display: grid;
  gap: 10px;
}

.admin-user-directory-controls {
  display: grid;
  gap: 12px;
  margin: 12px 0 16px;
  padding: 14px;
  border: 1px solid rgba(214, 178, 75, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(214, 178, 75, 0.08), transparent 38%),
    rgba(10, 13, 18, 0.48);
}

.admin-user-search-row {
  display: grid;
  gap: 8px;
}

.admin-user-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-user-filter-button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.admin-user-filter-button strong {
  color: var(--text-primary);
  font-family: var(--body-font);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.admin-user-filter-button.is-active {
  border-color: rgba(214, 178, 75, 0.68);
  background: rgba(214, 178, 75, 0.14);
  color: var(--gold);
}

.admin-user-directory-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-status {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-user-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-user-head h3 {
  margin: 0 0 6px;
}

.admin-user-head p,
.admin-user-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-user-meta {
  margin-top: 12px;
}

.admin-user-subscription {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.registration-intelligence-card {
  background:
    radial-gradient(circle at top right, rgba(76, 168, 255, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(201, 168, 76, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.registration-intelligence-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.registration-intel-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 11, 17, 0.72);
}

.registration-intel-card.verified {
  border-color: rgba(76, 213, 143, 0.22);
}

.registration-intel-card.review {
  border-color: rgba(255, 110, 121, 0.28);
}

.registration-intel-card.watch,
.registration-intel-card.ready {
  border-color: rgba(201, 168, 76, 0.24);
}

.registration-intel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.registration-intel-head h4,
.registration-intel-head p {
  margin: 0;
}

.registration-intel-head p,
.registration-intel-note {
  color: var(--muted);
}

.registration-risk-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.registration-risk-badge.verified {
  color: #76efaa;
  background: rgba(76, 213, 143, 0.12);
}

.registration-risk-badge.review {
  color: #ff9aa4;
  background: rgba(255, 110, 121, 0.12);
}

.registration-risk-badge.watch,
.registration-risk-badge.ready {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.12);
}

.registration-intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.registration-intel-grid div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
  min-width: 0;
}

.registration-intel-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-intel-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.registration-intel-note {
  margin: 12px 0 0;
  line-height: 1.55;
}

.back-office-card {
  background:
    radial-gradient(circle at top left, rgba(76, 168, 255, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 30%),
    rgba(12, 15, 21, 0.95);
}

.back-office-header {
  align-items: flex-start;
}

.back-office-lede {
  max-width: 780px;
  margin: 8px 0 0;
  line-height: 1.65;
}

.back-office-actions,
.back-office-draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.back-office-guardrail {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.12), rgba(255, 255, 255, 0.02));
}

.back-office-guardrail span,
.back-office-section-head .metric-label,
.back-office-mini-card span,
.back-office-draft-head span,
.back-office-calendar-item span,
.back-office-kpi span {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.back-office-guardrail strong {
  color: var(--text-primary);
  line-height: 1.5;
}

.marketing-engine-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 42%),
    rgba(8, 11, 17, 0.76);
}

.marketing-engine-form > div,
.marketing-engine-form .auth-textarea {
  grid-column: 1 / -1;
}

.marketing-engine-form .auth-submit {
  align-self: end;
}

.marketing-mini-form {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.marketing-lead-directory-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) 160px 170px 170px auto auto;
  gap: 8px;
  margin: 12px 0;
  align-items: end;
}

.marketing-lead-directory {
  display: grid;
  gap: 10px;
}

.marketing-lead-directory-summary {
  display: grid;
  grid-template-columns: 0.6fr 0.5fr 1.4fr;
  gap: 8px;
}

.marketing-lead-directory-summary article {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.marketing-lead-directory-summary span,
.marketing-lead-table-row small {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.marketing-lead-directory-summary strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
}

.marketing-lead-directory-summary .marketing-country-list small {
  max-height: 64px;
  overflow-y: auto;
  line-height: 1.45;
}

.marketing-lead-table {
  display: grid;
  overflow-x: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-lead-table-row {
  display: grid;
  grid-template-columns: minmax(95px, 0.85fr) minmax(150px, 1.15fr) minmax(95px, 0.7fr) minmax(110px, 0.75fr) minmax(86px, 0.62fr) minmax(84px, 0.6fr) minmax(86px, 0.58fr) minmax(120px, 0.9fr) 126px;
  gap: 8px;
  min-width: 0;
  padding: 7px 8px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.74rem;
  line-height: 1.25;
}

.marketing-lead-table-row > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-lead-table-row.is-head {
  color: var(--text-muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.04);
}

.compact-lead-action {
  min-height: 28px;
  padding: 6px 8px;
  font-size: 0.62rem;
}

.marketing-lead-actions {
  display: flex;
  gap: 6px;
}

.compact-lead-delete {
  border-color: rgba(222, 91, 91, 0.38);
  color: #ff9f9f;
}

.marketing-lead-follow-up-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.marketing-lead-follow-up-panel[hidden] {
  display: none;
}

.marketing-follow-up-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.marketing-follow-up-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
}

.marketing-compliance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 10px 0 0;
}

.marketing-compliance-row small {
  color: var(--text-muted);
  line-height: 1.45;
}

.marketing-asset-card {
  border-left: 2px solid rgba(201, 168, 76, 0.55);
}

.marketing-campaign-card small {
  display: inline-block;
  margin-top: 4px;
  color: var(--text-muted);
}

.marketing-launch-room {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background:
    radial-gradient(circle at top left, rgba(90, 215, 145, 0.09), transparent 28%),
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(8, 11, 17, 0.88));
}

.marketing-growth-room {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(97, 178, 255, 0.2);
  background:
    radial-gradient(circle at top right, rgba(97, 178, 255, 0.09), transparent 30%),
    rgba(8, 11, 17, 0.82);
}

.marketing-operator-room {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(90, 215, 145, 0.22);
  background:
    radial-gradient(circle at top left, rgba(90, 215, 145, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.08), transparent 32%),
    rgba(8, 11, 17, 0.84);
}

.marketing-launch-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.marketing-launch-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.marketing-launch-tasks,
.marketing-publish-pack,
.marketing-performance-list {
  display: grid;
  gap: 10px;
}

.marketing-brief-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

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

.marketing-operator-grid > section,
.marketing-brief-card,
.marketing-sequence-card,
.marketing-experiment-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 11, 17, 0.78);
}

.marketing-operator-grid > section {
  padding: 14px;
}

.marketing-brief-card,
.marketing-sequence-card,
.marketing-experiment-card {
  padding: 14px;
}

.marketing-brief-card.is-primary {
  border-color: rgba(90, 215, 145, 0.24);
  background:
    linear-gradient(135deg, rgba(90, 215, 145, 0.1), transparent 46%),
    rgba(8, 11, 17, 0.82);
}

.marketing-brief-card span,
.marketing-sequence-card span,
.marketing-experiment-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-brief-card h5,
.marketing-sequence-card h5,
.marketing-experiment-card h5 {
  margin: 0 0 8px;
  color: var(--text-primary);
}

.marketing-brief-card p,
.marketing-experiment-card p {
  margin: 0 0 8px;
  color: var(--text-muted);
  line-height: 1.55;
}

.marketing-brief-card small,
.marketing-sequence-card small,
.marketing-experiment-card small {
  display: block;
  margin: 0 0 8px;
  color: rgba(235, 230, 214, 0.74);
}

.marketing-brief-card ul,
.marketing-sequence-card ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

.marketing-nurture-list,
.marketing-experiment-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.marketing-launch-task,
.marketing-publish-card,
.marketing-performance-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 11, 17, 0.78);
}

.marketing-growth-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  margin-bottom: 12px;
}

.marketing-performance-form {
  display: grid;
  gap: 8px;
}

.marketing-growth-insights {
  display: grid;
  gap: 10px;
}

.marketing-growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.marketing-growth-metrics article {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.marketing-growth-metrics span,
.marketing-next-actions span,
.marketing-performance-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-growth-metrics strong {
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.marketing-next-actions {
  padding: 12px 14px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.09), rgba(255, 255, 255, 0.02));
}

.marketing-next-actions ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

.marketing-performance-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.marketing-performance-card h5 {
  margin: 0 0 6px;
  color: var(--text-primary);
}

.marketing-performance-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.marketing-performance-numbers {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 4px 8px;
  text-align: right;
}

.marketing-performance-numbers strong {
  color: var(--text-primary);
}

.marketing-performance-numbers small {
  color: var(--text-muted);
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-launch-task-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.marketing-launch-task span,
.marketing-publish-card span {
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-launch-task h5,
.marketing-publish-card h5 {
  margin: 5px 0 8px;
  color: var(--text-primary);
}

.marketing-launch-task p,
.marketing-publish-card p {
  margin: 0 0 8px;
  color: var(--text-muted);
  line-height: 1.58;
}

.marketing-launch-task small,
.marketing-publish-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(235, 230, 214, 0.74);
}

.marketing-launch-task ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

.back-office-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.back-office-kpi,
.back-office-section,
.back-office-draft-card,
.back-office-mini-card,
.back-office-calendar-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 11, 17, 0.74);
}

.back-office-kpi {
  padding: 14px;
}

.back-office-kpi strong {
  display: block;
  margin: 8px 0 2px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
}

.back-office-kpi small {
  color: var(--text-muted);
}

.back-office-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
}

.back-office-layout-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.back-office-layout-secondary > .back-office-section[data-admin-section="leads"] {
  grid-column: 1 / -1;
}

.back-office-section {
  padding: 16px;
}

.back-office-section-head {
  margin-bottom: 12px;
}

.back-office-section-head h4,
.back-office-draft-card h5,
.back-office-mini-card h5 {
  margin: 4px 0 0;
  color: var(--text-primary);
}

.back-office-calendar,
.back-office-drafts,
.back-office-funnel,
.back-office-onboarding {
  display: grid;
  gap: 10px;
}

.back-office-calendar-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.back-office-calendar-item strong {
  display: block;
  margin-top: 3px;
  color: var(--text-primary);
}

.back-office-calendar-item p,
.back-office-draft-card p,
.back-office-mini-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.back-office-draft-card,
.back-office-mini-card {
  padding: 14px;
}

.back-office-draft-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.back-office-draft-card small {
  display: block;
  margin: 10px 0 12px;
  color: rgba(235, 230, 214, 0.78);
  line-height: 1.5;
}

.back-office-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketing-lead-table .back-office-status {
  min-width: 70px;
  padding: 4px 6px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.back-office-status.is-approved {
  border-color: rgba(90, 215, 145, 0.34);
  color: #aef2c4;
  background: rgba(90, 215, 145, 0.08);
}

.back-office-status.is-scheduled {
  border-color: rgba(201, 168, 76, 0.34);
  color: #f0d98b;
  background: rgba(201, 168, 76, 0.09);
}

.back-office-status.is-published {
  border-color: rgba(97, 178, 255, 0.34);
  color: #b9dcff;
  background: rgba(97, 178, 255, 0.08);
}

.back-office-status.is-watching,
.back-office-status.is-active {
  border-color: rgba(201, 168, 76, 0.32);
  color: #f4d57c;
  background: rgba(201, 168, 76, 0.08);
}

.back-office-status.is-ready {
  border-color: rgba(90, 215, 145, 0.34);
  color: #aef2c4;
  background: rgba(90, 215, 145, 0.08);
}

.back-office-status.is-running,
.back-office-status.is-won {
  border-color: rgba(90, 215, 145, 0.34);
  color: #aef2c4;
  background: rgba(90, 215, 145, 0.08);
}

.back-office-status.is-new,
.back-office-status.is-contacted,
.back-office-status.is-replied,
.back-office-status.is-interested,
.back-office-status.is-trial_sent,
.back-office-status.is-customer {
  border-color: rgba(90, 215, 145, 0.34);
  color: #aef2c4;
  background: rgba(90, 215, 145, 0.08);
}

.back-office-status.is-no_response,
.back-office-status.is-do_not_contact {
  border-color: rgba(255, 139, 139, 0.3);
  color: #ffb8b8;
  background: rgba(255, 139, 139, 0.08);
}

.back-office-status.is-planning {
  border-color: rgba(255, 176, 74, 0.28);
  color: #f0c789;
  background: rgba(255, 176, 74, 0.07);
}

.back-office-status.is-planned {
  border-color: rgba(255, 176, 74, 0.28);
  color: #f0c789;
  background: rgba(255, 176, 74, 0.07);
}

.back-office-status.is-posted {
  border-color: rgba(97, 178, 255, 0.34);
  color: #b9dcff;
  background: rgba(97, 178, 255, 0.08);
}

.back-office-status.is-lost,
.back-office-status.is-paused {
  border-color: rgba(255, 101, 118, 0.3);
  color: #ffb6bf;
  background: rgba(255, 101, 118, 0.07);
}

.back-office-status.is-needs_review,
.back-office-status.is-draft {
  border-color: rgba(255, 176, 74, 0.28);
  color: #f0c789;
  background: rgba(255, 176, 74, 0.07);
}

.back-office-status.is-archived {
  border-color: rgba(180, 185, 202, 0.18);
  color: rgba(204, 209, 225, 0.72);
  background: rgba(180, 185, 202, 0.05);
}

.account-status-badge.active {
  background: rgba(34, 197, 94, 0.12);
  color: #9be5b0;
}

.account-status-badge.suspended {
  background: rgba(245, 158, 11, 0.12);
  color: #f6cd7a;
}

.account-status-badge.deleted {
  background: rgba(239, 68, 68, 0.12);
  color: #f5a3a3;
}

.danger-button {
  border-color: rgba(239, 68, 68, 0.18);
  color: #f5b2b2;
}

.danger-button:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.12);
}

.admin-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-role-badge.admin {
  background: rgba(121, 224, 192, 0.12);
  color: var(--accent);
}

.admin-role-badge.analyst {
  background: rgba(255, 204, 111, 0.1);
  color: #f5db9c;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-badge.basic {
  background: rgba(255, 255, 255, 0.08);
  color: #dbe6f4;
}

.plan-badge.pro {
  background: rgba(255, 204, 111, 0.12);
  color: #f5db9c;
}

.plan-badge.premium {
  background: rgba(121, 224, 192, 0.12);
  color: var(--accent);
}

.plan-badge.inactive,
.plan-badge.past_due,
.plan-badge.trial,
.plan-badge.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card.highlighted {
  background: rgba(121, 224, 192, 0.08);
  border-color: rgba(121, 224, 192, 0.18);
}

.plan-card h3,
.feature-lock h3 {
  margin: 0;
}

.plan-price {
  font-size: 1.9rem;
  font-weight: 700;
}

.plan-summary,
.plan-feature-list li,
.feature-lock p {
  color: var(--muted);
  line-height: 1.55;
}

.plan-feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.feature-lock {
  margin-top: 14px;
  background: rgba(255, 204, 111, 0.08);
  border-color: rgba(255, 204, 111, 0.16);
}

.account-sync-grid,
.positions-list {
  display: grid;
  gap: 14px;
}

.account-sync-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.account-sync-card,
.position-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.account-sync-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.account-sync-status-card {
  background:
    radial-gradient(circle at top right, rgba(121, 224, 192, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.account-health-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 16px;
}

.account-health-indicator {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.account-health-indicator.healthy {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(121, 224, 192, 0.08);
}

.account-health-indicator.waiting {
  background: var(--warning);
  box-shadow: 0 0 0 8px rgba(255, 204, 111, 0.08);
}

.account-health-label {
  margin-bottom: 4px;
}

.account-health-title {
  margin: 0;
}

.account-sync-card h3,
.position-card h3,
.position-card p {
  margin-top: 0;
}

.account-sync-section-title {
  margin: 0 0 8px;
}

.account-sync-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.account-sync-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe6f4;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.account-sync-mini-stat {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.account-sync-mini-stat h3,
.account-sync-mini-stat p {
  margin-top: 0;
}

.account-sync-mini-stat h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.account-import-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-import-helper-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.account-import-helper-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.account-import-helper-card h3,
.account-import-helper-card p {
  margin-top: 0;
}

.account-import-helper-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.account-review-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.account-review-visual {
  margin: 8px 0 22px;
}

.account-review-track {
  display: grid;
  gap: 10px;
}

.account-review-bar {
  display: block;
  height: 12px;
  width: 0;
  border-radius: 999px;
  transition: width 320ms var(--ease-luxury);
}

.account-review-bar.aligned {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.85), rgba(59, 130, 246, 0.6));
}

.account-review-bar.caution {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(255, 204, 111, 0.7));
}

.account-review-bar.against {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.9), rgba(255, 142, 127, 0.7));
}

.account-review-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.account-review-stat h3,
.account-review-stat p {
  margin-top: 0;
}

.account-review-stat h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.account-review-stat p:last-child {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.account-review-stat.aligned {
  border-color: rgba(121, 224, 192, 0.18);
  background: rgba(121, 224, 192, 0.08);
}

.account-review-stat.caution {
  border-color: rgba(255, 204, 111, 0.16);
  background: rgba(255, 204, 111, 0.08);
}

.account-review-stat.against {
  border-color: rgba(255, 142, 127, 0.18);
  background: rgba(255, 142, 127, 0.08);
}

.account-heatmap-shell {
  margin: 6px 0 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.account-heatmap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.account-heatmap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.account-heatmap-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-heatmap-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.account-heatmap-legend i.aligned {
  background: rgba(34, 197, 94, 0.85);
}

.account-heatmap-legend i.caution {
  background: rgba(212, 175, 55, 0.9);
}

.account-heatmap-legend i.against {
  background: rgba(239, 68, 68, 0.9);
}

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

.account-heatmap-cell {
  position: relative;
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.account-heatmap-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.account-heatmap-cell.aligned::before {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.36), transparent 62%);
}

.account-heatmap-cell.caution::before {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.34), transparent 62%);
}

.account-heatmap-cell.against::before {
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.34), transparent 62%);
}

.account-heatmap-cell > * {
  position: relative;
  z-index: 1;
}

.account-heatmap-cell h4,
.account-heatmap-cell p {
  margin: 0;
}

.account-heatmap-symbol {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.account-heatmap-symbol strong {
  font-size: 1rem;
}

.account-heatmap-strength {
  font-size: 0.78rem;
  color: rgba(236, 232, 224, 0.76);
}

.account-heatmap-meter {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.account-heatmap-meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
}

.account-heatmap-cell.aligned .account-heatmap-meter span {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.92), rgba(59, 130, 246, 0.72));
}

.account-heatmap-cell.caution .account-heatmap-meter span {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(255, 204, 111, 0.78));
}

.account-heatmap-cell.against .account-heatmap-meter span {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.95), rgba(255, 142, 127, 0.76));
}

.account-heatmap-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
}

.account-heatmap-empty h3,
.account-heatmap-empty p {
  margin: 0;
}

.account-heatmap-empty h3 {
  margin-top: 6px;
}

.account-heatmap-empty p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.upgrade-wide-card {
  grid-column: 1 / -1;
}

.review-suite-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.review-suite-premium-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.review-suite-premium-card h3,
.review-suite-premium-card h4,
.review-suite-premium-card p,
.review-suite-premium-card ul {
  margin-top: 0;
}

.review-suite-premium-card-lg {
  grid-column: span 1;
}

.review-suite-premium-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-suite-btc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.review-suite-btc-stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.review-suite-btc-stat h4 {
  margin-bottom: 0;
}

.review-suite-premium-copy {
  color: var(--muted);
  line-height: 1.65;
}

.review-suite-meter {
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.review-suite-meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(59, 130, 246, 0.78));
}

.review-suite-edge-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.account-sync-wide {
  grid-column: 1 / -1;
}

.position-card {
  display: grid;
  gap: 14px;
}

.position-visual-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.position-visual-bar span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: inherit;
}

.position-card.aligned {
  border-color: rgba(121, 224, 192, 0.26);
  background: rgba(121, 224, 192, 0.08);
}

.position-card.aligned .position-visual-bar span {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(121, 224, 192, 0.8));
}

.position-card.caution {
  border-color: rgba(255, 204, 111, 0.22);
  background: rgba(255, 204, 111, 0.07);
}

.position-card.caution .position-visual-bar span {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(255, 204, 111, 0.8));
}

.position-card.against {
  border-color: rgba(255, 142, 127, 0.24);
  background: rgba(255, 142, 127, 0.08);
}

.position-card.against .position-visual-bar span {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.9), rgba(255, 142, 127, 0.82));
}

.position-card.waiting {
  border-color: rgba(255, 255, 255, 0.08);
}

.position-card.waiting .position-visual-bar span {
  background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
}

.position-card-top,
.position-metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.position-headline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.position-side-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.position-side-badge.buy {
  background: rgba(121, 224, 192, 0.12);
  color: var(--accent);
}

.position-side-badge.sell {
  background: rgba(255, 142, 127, 0.14);
  color: #ffd2ca;
}

.position-side-badge.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.position-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.position-status-badge.aligned {
  background: rgba(121, 224, 192, 0.12);
  color: var(--accent);
}

.position-status-badge.caution {
  background: rgba(255, 204, 111, 0.12);
  color: #f5db9c;
}

.position-status-badge.against {
  background: rgba(255, 142, 127, 0.14);
  color: #ffd2ca;
}

.position-status-badge.waiting {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.position-card-copy,
.position-snapshot-meta {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.position-metrics,
.position-extra-metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.position-metrics {
  color: #dbe6f4;
  font-weight: 600;
}

.position-extra-metrics {
  color: var(--muted);
  font-size: 0.92rem;
}

.usage-summary-grid,
.usage-users-list,
.audit-event-list,
.report-actions {
  display: grid;
  gap: 12px;
}

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

.usage-stat-card,
.usage-user-card,
.audit-event-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.usage-stat-card h4,
.usage-user-card h4,
.audit-event-card h4 {
  margin: 0 0 8px;
}

.usage-stat-value {
  font-size: 1.7rem;
  font-weight: 700;
}

.usage-user-meta,
.audit-event-meta,
.audit-event-copy,
.usage-user-metrics {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.usage-user-plan-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.usage-user-metrics {
  margin-top: 10px;
}

.audit-event-meta {
  font-size: 0.88rem;
}

.audit-event-copy {
  margin-top: 10px;
}

.report-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-path {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  word-break: break-word;
}

.report-preview {
  margin: 12px 0 0;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dbe6f4;
  max-height: 280px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Consolas, monospace;
}

.code-textarea {
  font-family: Consolas, "Courier New", monospace;
  min-height: 280px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 24px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-title,
.site-footer-copy {
  margin: 0;
}

.site-footer-title {
  font-weight: 700;
}

.site-footer-copy {
  margin-top: 6px;
  color: var(--muted);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-nav a {
  color: #dbe6f4;
  text-decoration: none;
}

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

.auth-benefit-card {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-benefit-card h3,
.auth-benefit-card p {
  margin-top: 0;
}

.auth-benefit-card p {
  color: var(--muted);
  line-height: 1.55;
}

.auth-links {
  margin-top: 12px;
}

.insight-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e4edf8;
}

.pulse-chart {
  width: 100%;
  height: 84px;
  margin: 10px 0 12px;
  display: block;
}

.pulse-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.change-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.alerts-list,
.replay-steps {
  display: grid;
  gap: 12px;
}

.alert-card,
.replay-step {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.alert-card.high {
  background: rgba(255, 142, 127, 0.1);
  border-color: rgba(255, 142, 127, 0.18);
}

.alert-card.medium {
  background: rgba(255, 204, 111, 0.08);
  border-color: rgba(255, 204, 111, 0.16);
}

.alert-card.low {
  background: rgba(121, 224, 192, 0.08);
  border-color: rgba(121, 224, 192, 0.18);
}

.alert-level,
.replay-time {
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.alert-title,
.replay-title,
.replay-summary h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.alert-body,
.replay-body,
.replay-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.replay-summary {
  margin-bottom: 14px;
}

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

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 204, 111, 0.08);
  border: 1px solid rgba(255, 204, 111, 0.16);
}

.warning-icon {
  color: var(--warning);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.warning-copy {
  color: #f9e9c2;
  line-height: 1.55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(121, 224, 192, 0.1);
  border: 1px solid rgba(121, 224, 192, 0.18);
  color: #dffcf4;
  font-size: 0.95rem;
  font-weight: 600;
}

.empty-state {
  color: var(--muted);
  margin: 0;
}

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

.news-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(143, 169, 201, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.news-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.news-source {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #f2f7ff;
  text-decoration: none;
  font-weight: 800;
}

.news-link:hover,
.news-link:focus-visible {
  color: var(--accent);
  outline: none;
}

@media (max-width: 980px) {
  .landing-hero-grid,
  .landing-preview-grid,
  .landing-terminal-grid,
  .landing-preview-frame,
  .landing-feature-grid,
  .landing-pricing-grid,
  .landing-testimonial-grid,
  .landing-proof-stats {
    grid-template-columns: 1fr;
  }

  .landing-pricing-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
  }

  .product-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
  }

  .hero-status {
    width: 100%;
  }

  .snapshot-actions {
    width: 100%;
    align-items: flex-start;
  }

  .symbol-switcher {
    justify-content: flex-start;
  }

  .insight-panel,
  .alerts-panel,
  .warnings-panel,
  .tags-panel,
  .liquidity-panel,
  .timeframe-panel,
  .detail-panel,
  .pulse-panel,
  .gold-panel,
  .chart-panel,
  .account-panel,
  .support-panel,
  .admin-panel,
  .replay-panel {
    grid-column: span 12;
  }

  .snapshot-grid,
  .detail-grid,
  .deep-focus-grid,
  .deep-thesis-layout,
  .deep-confluence-grid,
  .deep-meter-grid,
  .pulse-grid,
  .journey-grid,
  .showcase-grid,
  .landing-narrative-grid,
  .market-board-grid,
  .account-settings-grid,
  .value-grid,
  .learn-grid,
  .resources-grid,
  .hero-proof-grid,
  .hero-preview-grid,
  .hero-live-grid,
  .telegram-grid,
  .support-grid,
  .telegram-form-grid,
  .telegram-checkbox-grid,
  .watcher-grid,
  .watcher-health-grid,
  .account-sync-grid,
  .review-suite-premium-grid,
  .account-import-helper-grid,
  .account-sync-mini-grid,
  .account-review-summary,
  .account-heatmap-grid,
  .liquidity-grid,
  .timeframe-grid,
  .chart-footer,
  .gold-reference-grid,
  .gold-timeframe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .plan-catalog-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .product-bar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .product-utility-bar {
    width: 100%;
    flex-wrap: wrap;
  }

  .product-auth-actions {
    margin-left: auto;
  }

  .drawer-panel {
    width: min(640px, 100%);
  }
}

@media (max-width: 640px) {
  .landing-hero-grid {
    padding: 56px 24px 64px;
  }

  .landing-hero::before,
  .landing-hero::after {
    border-radius: 8px;
  }

  .landing-copy h1 {
    font-size: clamp(3.2rem, 12vw, 4.3rem);
  }

  .landing-terminal-shell,
  .landing-preview-panel,
  .landing-plan-card,
  .landing-feature-card,
  .landing-step-card,
  .landing-testimonial-card,
  .landing-faq-card {
    border-radius: 8px;
  }

  .landing-chart-stage,
  .landing-preview-main {
    min-height: 250px;
    height: 250px;
  }

  .landing-preview-stack h3,
  .landing-plan-price {
    font-size: 2.5rem;
  }

  .landing-proof-pills {
    gap: 10px;
  }

  .landing-proof-pill {
    width: 100%;
    justify-content: center;
  }

  .auth-overlay {
    padding: 12px 8px;
  }

  .auth-panel {
    width: min(460px, 100%);
    margin: 0 auto;
    padding: 22px 18px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }

  .auth-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auth-page-header {
    margin-bottom: 18px;
  }

  .auth-brand-column,
  .auth-form-column {
    padding: 22px;
  }

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

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

  .auth-mode-pills {
    justify-content: flex-start;
  }

  .auth-signup-benefit {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-signup-benefit strong {
    text-align: left;
  }

  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .panel {
    padding: 22px;
    border-radius: 8px;
  }

  .snapshot-grid,
  .detail-grid,
  .deep-focus-grid,
  .deep-thesis-layout,
  .deep-confluence-grid,
  .deep-meter-grid,
  .pulse-grid,
  .journey-grid,
  .showcase-grid,
  .landing-narrative-grid,
  .market-board-grid,
  .value-grid,
  .learn-grid,
  .resources-grid,
  .hero-proof-grid,
  .hero-preview-grid,
  .hero-live-grid,
  .telegram-grid,
  .telegram-form-grid,
  .telegram-checkbox-grid,
  .watcher-grid,
  .watcher-health-grid,
  .account-sync-grid,
  .review-suite-premium-grid,
  .account-import-helper-grid,
  .account-sync-mini-grid,
  .account-review-summary,
  .account-heatmap-grid,
  .liquidity-grid,
  .timeframe-grid,
  .chart-footer,
  .gold-reference-grid,
  .gold-timeframe-grid,
  .usage-summary-grid,
  .report-actions {
    grid-template-columns: 1fr;
  }

  .review-suite-btc-grid {
    grid-template-columns: 1fr;
  }

  .position-card-top,
  .position-metrics,
  .position-extra-metrics {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-bottom: 18px;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .hero-preview-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-benefits,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .workspace-nav-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-brand,
  .product-bar-actions {
    flex-wrap: wrap;
  }

  .product-bar {
    border-radius: 8px;
    padding: 16px;
  }

  .product-bar-actions {
    justify-content: flex-start;
  }

  .product-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
    margin-right: 0;
  }

  .product-subcopy {
    display: none;
  }

  .product-utility-bar {
    gap: 10px;
  }

  .product-auth-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .product-auth-button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .workspace-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
.public-only.app-hooks,
.hero-premium.public-only {
  display: none !important;
}

/* MarketRead premium public landing */

.ml-nav,
.ml-hero,
.ml-section,
.ml-final-cta,
.ml-footer {
  position: relative;
  z-index: 2;
}

.dashboard > .ml-section.public-only,
.dashboard > .ml-final-cta.public-only {
  grid-column: 1 / -1;
}

.ml-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.84), rgba(10, 12, 18, 0.7));
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.ml-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  width: 220px;
}

.ml-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d4af37, #3b82f6);
  color: #05060a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ml-brand-logo-wrap {
  width: 62px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
}

.ml-brand-mark-only {
  width: auto;
}

.ml-brand-logo-wrap img,
.command-sidebar-logo-wrap img,
.mrx-logo-image-wrap img,
.auth-access-logo-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ml-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ml-brand-copy strong {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ml-brand-copy small {
  display: grid;
  gap: 1px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.15;
}

.ml-nav-links,
.ml-nav-actions,
.ml-language {
  display: flex;
  align-items: center;
}

.ml-nav-links {
  gap: 14px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.ml-nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 220ms var(--ease-luxury), transform 220ms var(--ease-luxury);
  white-space: nowrap;
}

.ml-nav-links a:hover,
.ml-nav-links a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.ml-nav-actions {
  gap: 10px;
  flex-shrink: 0;
}

.ml-language {
  gap: 0;
}

.ml-language-select {
  min-height: 42px;
  min-width: 118px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.ml-nav-button,
.ml-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  transition:
    transform 240ms var(--ease-luxury),
    border-color 240ms var(--ease-luxury),
    background 240ms var(--ease-luxury),
    box-shadow 240ms var(--ease-luxury);
}

.ml-button-stack {
  display: inline-grid;
  gap: 1px;
  text-align: left;
  justify-items: start;
  padding: 11px 28px 10px;
}

.ml-button-stack span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.05;
}

.ml-button-stack small {
  display: block;
  font-size: 0.66rem;
  line-height: 1.05;
  letter-spacing: 0.1em;
  opacity: 0.88;
}

.ml-button-arrow {
  position: relative;
  padding-right: 56px;
}

.ml-button-arrow::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.05rem;
  font-weight: 800;
}

.ml-button-play::after {
  content: "▶";
  font-size: 0.8rem;
}

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

.ml-nav-button.secondary,
.ml-button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.ml-nav-button.primary,
.ml-button.primary {
  color: #05060a;
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #ffffff, #d4af37);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18);
}

.ml-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px 0 50px;
  text-align: center;
}

.ml-hero-copy {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ml-eyebrow,
.ml-section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d4af37;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ml-hero h1,
.ml-section-heading h2,
.ml-text-block h2,
.ml-final-shell h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.ml-hero h1 {
  margin-top: 16px;
  font-size: clamp(4.1rem, 8.4vw, 6.9rem);
  line-height: 0.9;
  text-wrap: unset;
  max-width: 980px;
}

.ml-hero h1 span {
  display: block;
  white-space: nowrap;
}

.ml-hero-text,
.ml-section-heading p,
.ml-text-block p,
.ml-final-shell p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.ml-hero-text {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.ml-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.ml-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ml-lock-icon {
  font-size: 0.94rem;
  line-height: 1;
}

.ml-terminal-wrap {
  position: relative;
  width: 100%;
  max-width: 1160px;
}

.ml-terminal-glow {
  position: absolute;
  inset: 8% -2% -8% 4%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 18%, rgba(59, 130, 246, 0.28), transparent 32%),
    radial-gradient(circle at 72% 26%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(34, 211, 238, 0.12), transparent 26%);
  filter: blur(54px);
  opacity: 0.95;
}

.ml-terminal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(9, 11, 17, 0.94), rgba(8, 10, 16, 0.88));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(24px);
}

.ml-hero-proofbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1160px;
  padding: 18px 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 18, 13, 0.84), rgba(14, 14, 14, 0.72));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.ml-hero-proofcopy {
  display: grid;
  gap: 4px;
}

.ml-hero-proofcopy strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ml-hero-proofcopy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.ml-hero-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ml-hero-flags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  overflow: hidden;
}

.ml-hero-flags img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-hero-flags-more {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem !important;
  font-weight: 700;
}

.ml-terminal-bar,
.ml-terminal-main,
.ml-side-card,
.ml-card,
.ml-plan,
.ml-output-card,
.ml-testimonial,
.ml-faq-item,
.ml-final-shell,
.ml-footer {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ml-terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-width: 0 0 1px;
}

.ml-terminal-lights {
  display: flex;
  gap: 8px;
}

.ml-terminal-lights span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.ml-terminal-lights span:nth-child(1) { background: rgba(248, 113, 113, 0.85); }
.ml-terminal-lights span:nth-child(2) { background: rgba(250, 204, 21, 0.85); }
.ml-terminal-lights span:nth-child(3) { background: rgba(74, 222, 128, 0.85); }

.ml-terminal-chip,
.ml-live-status,
.ml-terminal-head span,
.ml-output-badge,
.ml-save-pill,
.ml-plan-badge {
  border-radius: 999px;
}

.ml-terminal-chip {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.ml-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ml-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: ml-live-pulse 1.8s infinite;
}

.ml-terminal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: 18px;
  padding: 20px;
}

.ml-terminal-main,
.ml-side-card,
.ml-card,
.ml-plan,
.ml-output-card,
.ml-testimonial,
.ml-faq-item,
.ml-final-shell {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
}

.ml-terminal-main,
.ml-side-card,
.ml-output-card {
  border-radius: 28px;
}

.ml-terminal-main {
  padding: 22px;
  min-width: 0;
}

.ml-terminal-head,
.ml-output-head,
.ml-pressure-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ml-terminal-head > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.ml-terminal-head p,
.ml-output-head span,
.ml-side-card p,
.ml-card p,
.ml-plan-kicker,
.ml-faq-item p,
.ml-footer-copy,
.ml-output-stack article span,
.ml-metrics article p {
  color: rgba(224, 229, 236, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ml-terminal-head h3,
.ml-output-head h3,
.ml-card h3,
.ml-plan h3,
.ml-output-stack article strong,
.ml-faq-item summary,
.ml-footer-title {
  margin: 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.ml-terminal-head h3,
.ml-output-head h3,
.ml-card h3 {
  font-size: 1.35rem;
  line-height: 1.02;
}

.ml-terminal-head span,
.ml-output-badge {
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.ml-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 18px;
}

.ml-terminal-meta,
.ml-live-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ml-terminal-meta {
  margin-top: 14px;
}

.ml-terminal-meta span,
.ml-live-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ml-metrics article,
.ml-output-stack article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ml-metrics article strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

@media (min-width: 821px) {
  .ml-terminal-main {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: start;
  }

  .ml-terminal-head {
    gap: 20px;
  }

  .ml-terminal-head h3 {
    font-size: 1.5rem;
  }

  .ml-terminal-head span {
    align-self: center;
  }

  .ml-metrics article {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.ml-chart-stage {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.ml-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.ml-chart-band {
  position: absolute;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  filter: blur(0.4px);
  animation: ml-band-shift 9s ease-in-out infinite;
}

.ml-chart-band.top { top: 18%; width: 88%; animation-delay: 0s; }
.ml-chart-band.middle { top: 46%; width: 68%; animation-delay: 1.2s; }
.ml-chart-band.bottom { top: 72%; width: 92%; animation-delay: 2.4s; }

.ml-chart-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ml-chart-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(5, 6, 10, 0.62);
  backdrop-filter: blur(18px);
  color: rgba(236, 232, 224, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ml-chart-pill.bottom-left { left: 16px; bottom: 16px; }
.ml-chart-pill.top-right { right: 16px; top: 16px; color: #d4af37; }

.ml-terminal-side {
  display: grid;
  gap: 14px;
}

.ml-side-card {
  padding: 18px;
}

.ml-side-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ml-side-card strong.is-red { color: #fca5a5; }
.ml-side-card strong.is-gold { color: #d4af37; }
.ml-side-card strong.is-blue { color: #93c5fd; }

.ml-progress-item {
  margin-top: 12px;
}

.ml-progress-item div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.ml-progress-item i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ml-progress-item b {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee, #d4af37);
}

.ml-side-card.highlight {
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.1);
}

.ml-ai-head span {
  color: #d4af37;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ml-side-card.highlight p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0.02em;
}

.ml-section,
.ml-final-cta {
  padding: 36px;
  margin-top: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.ml-section-heading {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.ml-section-heading h2,
.ml-text-block h2,
.ml-final-shell h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
  margin-top: 18px;
}

.ml-card-grid {
  display: grid;
  gap: 18px;
}

.ml-card-grid.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ml-card-grid.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ml-card,
.ml-testimonial {
  padding: 24px;
  border-radius: 26px;
  transition: transform 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury), background 220ms var(--ease-luxury);
}

.ml-card:hover,
.ml-testimonial:hover,
.ml-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.ml-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #d4af37;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ml-card h3,
.ml-plan h3 {
  font-size: 1.28rem;
}

.ml-card p,
.ml-plan-copy,
.ml-output-card p,
.ml-testimonial p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.ml-dual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 22px;
  align-items: center;
}

.ml-text-block,
.ml-output-card {
  padding: 28px;
}

.ml-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.ml-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.ml-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d4af37;
}

.ml-problem-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.ml-problem-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.ml-comparison-grid.primary {
  margin-bottom: 22px;
}

.ml-compare-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.ml-compare-card.featured {
  border-color: rgba(212, 175, 55, 0.26);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.035));
}

.ml-compare-kicker {
  margin: 0 0 18px;
  color: #d4af37;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ml-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.ml-compare-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.ml-compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d4af37;
}

.ml-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ml-inline-cta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ml-live-read-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.ml-live-read-copy {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ml-live-read-copy h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.ml-live-read-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.ml-live-quotes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ml-live-quotes span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ml-output-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.ml-output-summary {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.1);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.ml-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.ml-toggle-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 700;
  cursor: pointer;
  transition: background 220ms var(--ease-luxury), color 220ms var(--ease-luxury);
}

.ml-toggle-button.is-active {
  background: #ffffff;
  color: #05060a;
}

.ml-save-pill {
  padding: 9px 14px;
  background: #d4af37;
  color: #05060a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ml-card-grid.pricing {
  align-items: stretch;
}

.ml-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 28px;
}

.ml-plan.featured {
  border-color: rgba(212, 175, 55, 0.34);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.12);
}

.ml-plan-kicker {
  margin: 0;
}

.ml-plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 14px 0 12px;
}

.ml-plan-amount {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ml-plan-period,
.ml-plan-note {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.ml-plan-note {
  margin: 18px 0 0;
  line-height: 1.7;
}

.ml-plan-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ml-plan-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.ml-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d4af37;
}

.ml-plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-luxury), background 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury);
}

.ml-plan-button:hover,
.ml-plan-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.ml-plan-button.featured {
  background: linear-gradient(135deg, #ffffff, #d4af37);
  color: #05060a;
  border-color: rgba(212, 175, 55, 0.3);
}

.ml-plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  background: #d4af37;
  color: #05060a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ml-plan-badge.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
}

.ml-pricing-reassurance,
.ml-disclaimer {
  margin: 24px auto 0;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.8;
  text-align: center;
}

.ml-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.ml-proof-stats article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.trust-grid .ml-testimonial {
  text-align: left;
}

.trust-grid .ml-testimonial p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.ml-proof-stats strong {
  display: block;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.ml-proof-stats span,
.ml-testimonial span,
.ml-footer-nav a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ml-testimonial span {
  display: block;
  margin-top: 18px;
}

.ml-faq-list {
  display: grid;
  gap: 14px;
}

.ml-faq-item {
  padding: 22px 24px;
  border-radius: 24px;
}

.ml-faq-item summary {
  cursor: pointer;
  list-style: none;
}

.ml-faq-item summary::-webkit-details-marker {
  display: none;
}

.ml-faq-item p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.ml-card.mini {
  padding: 22px;
}

.ml-final-shell {
  padding: 44px 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.ml-final-shell p {
  max-width: 720px;
  margin: 18px auto 0;
}

.ml-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  margin-top: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.ml-footer-title {
  font-size: 1rem;
}

.ml-footer-copy {
  margin-top: 8px;
}

.ml-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.ml-footer-nav a {
  text-decoration: none;
  transition: color 220ms var(--ease-luxury);
}

.ml-footer-nav a:hover,
.ml-footer-nav a:focus-visible {
  color: #ffffff;
  outline: none;
}

.ml-mobile-sticky-cta {
  display: none;
}

@keyframes ml-band-shift {
  0%, 100% {
    transform: scaleX(0.32);
    transform-origin: left center;
    opacity: 0.52;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left center;
    opacity: 1;
  }
}

@keyframes ml-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.52);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@media (max-width: 1180px) {
  .ml-hero,
  .ml-dual-grid,
  .ml-terminal-grid,
  .ml-live-read-grid {
    grid-template-columns: 1fr;
  }

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

  .ml-nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ml-nav-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .ml-terminal-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .ml-terminal-head span {
    width: fit-content;
  }

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

  .ml-card-grid.columns-3,
  .ml-proof-stats,
  .ml-comparison-grid {
    grid-template-columns: 1fr;
  }

  .ml-hero-proofbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ml-hero-flags {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
    padding-top: 18px;
  }

  .ml-nav,
  .ml-section,
  .ml-final-cta,
  .ml-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ml-nav {
    gap: 16px;
    border-radius: 20px;
  }

  .ml-brand-copy small,
  .ml-nav-links,
  .ml-language span {
    display: none;
  }

  .ml-brand {
    width: auto;
  }

  .ml-nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  .ml-language {
    flex: 1;
    min-width: 0;
  }

  .ml-language-select {
    width: 100%;
  }

  .ml-nav-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .ml-button-stack {
    padding: 9px 18px 8px;
  }

  .ml-button-stack span {
    font-size: 0.74rem;
  }

  .ml-button-stack small {
    font-size: 0.58rem;
  }

  .ml-hero {
    gap: 28px;
    padding-top: 10px;
    padding-bottom: 46px;
  }

  .ml-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .ml-hero-text,
  .ml-section-heading p,
  .ml-text-block p,
  .ml-final-shell p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .ml-card-grid.columns-4,
  .ml-card-grid.pricing {
    grid-template-columns: 1fr;
  }

  .ml-proof-mini-grid,
  .ml-comparison-grid,
  .ml-live-read-grid {
    grid-template-columns: 1fr;
  }

  .ml-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ml-proof-stats {
    grid-template-columns: 1fr;
  }

  .ml-hero-proofbar {
    padding: 16px 18px;
  }

  .ml-terminal-main {
    padding: 18px;
  }

  .ml-terminal-head {
    gap: 12px;
  }

  .ml-terminal-head h3 {
    font-size: 1.16rem;
  }

  .ml-terminal-head p,
  .ml-metrics article p {
    font-size: 0.68rem;
  }

  .ml-metrics article {
    padding: 14px;
    border-radius: 16px;
  }

  .ml-metrics article strong {
    font-size: 0.94rem;
  }

  .ml-chart-stage {
    min-height: 280px;
  }

  .ml-plan-badge {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
  }

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

  .ml-inline-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ml-mobile-sticky-cta {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    display: block;
    padding: 0 18px 10px;
  }

  .ml-mobile-sticky-cta .ml-button {
    width: 100%;
    min-height: 50px;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.22);
  }

  body.public-mode {
    padding-bottom: 84px;
  }
}

@media (max-width: 980px) {
  body.is-authenticated .review-suite-workbench-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-workbench-chart-shell {
    min-height: 360px;
  }

  body.is-authenticated .review-suite-workbench-side {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body.is-authenticated .review-suite-technical-workbench {
    padding: 14px;
  }

  body.is-authenticated .review-suite-workbench-toolbar {
    align-items: stretch;
  }

  body.is-authenticated .review-suite-workbench-timeframes,
  body.is-authenticated .review-suite-workbench-tools {
    width: 100%;
  }

  body.is-authenticated .review-suite-tool-button,
  body.is-authenticated .review-suite-tech-timeframe {
    flex: 1 1 auto;
  }

  body.is-authenticated .review-suite-workbench-chart-shell {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .ml-terminal-bar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ml-terminal-chip {
    order: 3;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .ml-terminal-main {
    padding: 16px;
  }

  .ml-terminal-head {
    align-items: flex-start;
  }

  .ml-terminal-head span {
    align-self: flex-start;
    max-width: 100%;
  }

  .ml-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ml-metrics article {
    min-height: 92px;
    padding: 12px;
  }

  .ml-metrics article strong {
    font-size: 0.88rem;
  }

  .ml-chart-stage {
    min-height: 240px;
  }

  .ml-chart-pill {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.72rem;
  }
}

body.is-authenticated {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.07), transparent 22%),
    #05060a;
}

body.is-authenticated .page-shell {
  width: min(1720px, calc(100% - 32px));
  display: block;
  padding-top: 24px;
}

body.is-authenticated .dashboard.app-dashboard {
  gap: 28px;
  margin-top: 22px;
}

body.is-authenticated .command-sidebar {
  display: block;
  position: sticky;
  top: 16px;
  z-index: 40;
}

.command-sidebar-inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.96), rgba(11, 13, 18, 0.9));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 14px 18px;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.command-sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0;
  flex: 0 1 auto;
  min-width: 0;
}

.command-sidebar-brand strong {
  display: block;
  font-size: 0.98rem;
}

.command-sidebar-brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.command-sidebar-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0d12;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #3b82f6);
}

.command-sidebar-logo-wrap {
  width: 56px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
}

.command-sidebar-brand-mark-only {
  flex: 0 0 auto;
}

.command-sidebar-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.command-sidebar-nav::-webkit-scrollbar {
  display: none;
}

.command-sidebar-link {
  flex: 0 0 auto;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(236, 232, 224, 0.86);
  padding: 10px 11px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.command-sidebar-nav > .command-sidebar-link[data-app-view-target="review-guide"] {
  display: none !important;
}

.command-sidebar-link:hover,
.command-sidebar-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.28);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(59, 130, 246, 0.08));
  color: #fff;
}

.command-portal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 0;
}

.command-profile-trigger {
  min-width: 150px;
  max-width: 190px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.command-profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(59, 130, 246, 0.86));
  color: #0b0d12;
  font-weight: 700;
  font-size: 0.82rem;
}

.command-profile-copy {
  display: grid;
  min-width: 0;
}

.command-sidebar-account {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 40px));
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 17, 23, 0.98), rgba(11, 13, 18, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
}

.command-sidebar-account h3,
.command-sidebar-plan p:first-child {
  margin: 0;
}

.command-profile-menu-head {
  display: grid;
  gap: 4px;
}

.command-profile-menu-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.command-profile-avatar-menu {
  width: 36px;
  height: 36px;
  font-size: 0.8rem;
}

.command-sidebar-account p {
  color: var(--muted);
  margin: 4px 0;
}

.command-sidebar-plan {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.command-profile-plan-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.command-profile-menu-links {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.command-profile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.command-profile-menu-link span,
.command-refresh-control span {
  font-weight: 600;
  color: #f5f5f5;
}

.command-profile-menu-link small,
.command-refresh-control small {
  color: rgba(224, 229, 236, 0.62);
  font-size: 0.78rem;
  margin-left: auto;
}

.command-profile-menu-link:hover {
  border-color: rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.command-profile-menu-link-static {
  cursor: default;
}

.command-profile-menu-link-static:hover {
  transform: none;
}

.command-profile-menu-divider {
  height: 1px;
  margin: 10px 0 2px;
  background: rgba(255, 255, 255, 0.07);
}

.command-profile-menu-footer {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.command-refresh-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
}

.command-refresh-control:hover {
  border-color: rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.command-refresh-control select {
  min-width: 82px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  color: rgba(248, 230, 166, 0.95);
  text-align: right;
  padding: 7px 28px 7px 9px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.command-language-control {
  align-items: center;
}

.command-language-control select {
  max-width: 154px;
  min-width: 120px;
  color: rgba(248, 230, 166, 0.95);
}

.command-language-control option {
  color: #0b0d12;
  background: #f7f1e3;
}

body.is-authenticated .panel {
  border-color: rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(11, 13, 18, 0.9);
  padding: 30px;
}

.command-logout-button {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px 14px;
  font-weight: 600;
  cursor: pointer;
}

.command-logout-link {
  text-align: left;
  border-color: transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 13px 14px;
}

.command-logout-link:hover {
  border-color: rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.app-topbar-panel {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.app-topbar-left h2 {
  margin: 6px 0 0;
}

.app-topbar-center {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  color: var(--muted);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pill i,
.command-pulse-live i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse-live 1.6s infinite;
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.app-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.plan-badge,
.symbol-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: #f1d57a;
  border: 1px solid rgba(212, 175, 55, 0.18);
  font-weight: 600;
}

.topbar-profile-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  display: grid;
  gap: 2px;
  text-align: left;
  cursor: pointer;
}

.topbar-profile-button span {
  color: var(--muted);
  font-size: 0.82rem;
}

.snapshot-panel {
  grid-column: span 12;
}

.command-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.command-hero-main,
.command-pulse-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
  padding: 30px;
}

.command-hero-head,
.command-hero-price-row,
.command-hero-actions,
.command-pulse-list {
  display: grid;
  gap: 16px;
}

.command-hero-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.command-hero-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.command-hero-subtitle {
  margin: 10px 0 0;
  max-width: 42rem;
  color: rgba(224, 224, 224, 0.6);
  line-height: 1.7;
}

.command-confidence {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.command-confidence-ring {
  position: relative;
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.command-confidence-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.command-confidence-track,
.command-confidence-fill {
  fill: none;
  stroke-width: 8;
}

.command-confidence-track {
  stroke: rgba(255, 255, 255, 0.08);
}

.command-confidence-fill {
  stroke: #d4af37;
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  transition: stroke-dashoffset 420ms var(--ease-luxury);
}

.command-confidence-center {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
}

.command-confidence strong {
  font-size: 2rem;
  color: #fff;
}

.command-confidence small {
  color: var(--muted);
}

.command-hero-price-row {
  grid-template-columns: repeat(2, minmax(0, auto)) minmax(180px, 1fr);
  align-items: center;
  margin: 26px 0 20px;
}

.command-preview-shell {
  margin-bottom: 22px;
  padding: 20px 20px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.02);
}

.command-preview-head,
.command-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.command-preview-head h3 {
  margin: 6px 0 0;
  font-size: 1.2rem;
}

.command-preview-chart {
  width: 100%;
  height: 220px;
  min-height: 220px;
  margin: 16px 0 14px;
}

.command-preview-meta {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.command-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8e6c3;
  font-size: 0.84rem;
  font-weight: 600;
}

.command-live-indicator i,
.command-pulse-live i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
  animation: marketPulse 1.7s ease-out infinite;
}

.command-interpretation {
  margin: 0;
  padding: 24px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.command-interpretation p:last-child {
  margin: 0;
  max-width: 52rem;
  line-height: 1.8;
}

.command-hero-actions {
  grid-template-columns: repeat(2, minmax(0, 220px));
  margin-top: 22px;
}

.command-pulse-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.command-pulse-top,
.command-pulse-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.command-pulse-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.command-state-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

.command-state-card p,
.command-state-card span {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.command-state-card strong {
  font-size: 1.02rem;
}

.command-pulse-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9bdab3;
  font-weight: 600;
}

.command-metric-grid {
  margin-top: 20px;
}

.command-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.command-signal-card {
  min-height: 180px;
  padding: 24px;
  border: none;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.command-signal-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.command-signal-meter {
  position: relative;
  height: 10px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.command-signal-meter span {
  display: block;
  width: 22%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.95), rgba(212, 175, 55, 0.95));
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
  transition: width 320ms var(--ease-luxury);
}

.command-signal-wave {
  position: relative;
  height: 44px;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(255,255,255,0.02);
  background-size: 28px 28px, 28px 28px, auto;
}

.command-signal-wave::after {
  content: "";
  position: absolute;
  inset: 50% -10% auto -10%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.95), transparent);
  transform: translateY(-50%);
  animation: commandWave 3.6s linear infinite;
}

.command-signal-wave-blue::after {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.95), transparent);
}

.command-signal-wave-mix::after {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.9), rgba(212, 175, 55, 0.9), transparent);
}

.command-signal-card.is-active,
.command-state-card.is-active {
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

@keyframes commandWave {
  0% { transform: translate(-12%, -50%); }
  50% { transform: translate(8%, -42%); }
  100% { transform: translate(26%, -50%); }
}

.chart-panel {
  grid-column: span 12;
}

.learn-panel {
  grid-column: span 5;
}

.command-insight-grid {
  display: grid;
  gap: 16px;
}

.command-change-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.command-change-list li {
  margin-bottom: 8px;
  color: var(--text);
}

.gold-panel,
.news-panel,
.detail-panel,
.pulse-panel {
  grid-column: span 12;
}

.insight-panel,
.alerts-panel,
.warnings-panel {
  grid-column: span 6;
}

.tags-panel,
.liquidity-panel {
  grid-column: span 4;
}

.timeframe-panel {
  grid-column: span 12;
}

.replay-panel,
.telegram-panel,
.upgrade-panel,
.support-panel,
.review-suite-premium-panel,
.account-panel,
.account-sync-panel,
.admin-panel,
.watcher-panel {
  grid-column: span 12;
}

.history-timeline-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.history-event {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.history-time {
  margin: 0;
  color: #d4af37;
  font-weight: 600;
}

.history-event h3,
.history-event p {
  margin: 0;
}

body.is-authenticated .panel {
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.chart-panel,
.snapshot-panel,
.review-suite-premium-panel,
.deep-focus-panel,
.deep-thesis-panel,
.deep-diagnostic-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(11, 13, 18, 0.96);
}

.deep-focus-panel {
  grid-column: span 12;
  position: relative;
  overflow: hidden;
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(212, 175, 55, 0.04) inset;
}

.deep-focus-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 50%);
  pointer-events: none;
}

.deep-focus-summary {
  position: relative;
  z-index: 1;
  margin: -2px 0 18px;
  max-width: 82ch;
  color: rgba(232, 236, 243, 0.78);
  line-height: 1.75;
}

.deep-live-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -4px 0 18px;
}

.deep-live-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 11, 17, 0.76);
  color: rgba(232, 236, 243, 0.74);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-beginner-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.deep-beginner-sequence article {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(145deg, rgba(18, 23, 32, 0.95), rgba(8, 12, 18, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.11), transparent 42%);
}

.deep-beginner-sequence article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(82, 194, 122, 0.76));
  opacity: 0.86;
}

.deep-beginner-sequence span {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.deep-beginner-sequence strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.deep-beginner-sequence p {
  margin: 8px 0 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.82rem;
  line-height: 1.58;
}

.deep-focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.deep-focus-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
}

.deep-focus-card.is-primary {
  border-color: rgba(212, 175, 55, 0.24);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.015)),
    rgba(255, 255, 255, 0.015);
}

.deep-focus-card h3 {
  margin: 0 0 10px;
  color: var(--text);
}

.deep-focus-card p:last-child {
  margin: 0;
  color: rgba(232, 236, 243, 0.72);
  line-height: 1.7;
}

.panel[data-priority="first"] {
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.05) inset;
}

.panel[data-priority="next"] {
  border-color: rgba(105, 189, 255, 0.18);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(105, 189, 255, 0.04) inset;
}

.panel[data-priority="confirm"] {
  border-color: rgba(88, 214, 141, 0.18);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(88, 214, 141, 0.04) inset;
}

.panel[data-priority="first"] .section-label,
.panel[data-priority="next"] .section-label,
.panel[data-priority="confirm"] .section-label {
  color: rgba(245, 232, 182, 0.9);
}

.deep-focus-panel {
  order: 5;
}

.deep-thesis-panel {
  order: 1;
  grid-column: span 12;
  border-color: rgba(105, 189, 255, 0.16);
  background:
    radial-gradient(circle at 8% 0%, rgba(105, 189, 255, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(11, 13, 18, 0.96);
}

.deep-thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.deep-thesis-main,
.deep-thesis-side article,
.deep-meter-card,
.deep-confluence-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
}

.deep-thesis-main {
  padding: 22px;
  border-radius: 20px;
  min-height: 190px;
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(212, 175, 55, 0.05) inset;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.018);
}

.deep-quality-console {
  --quality-accent: #d4af37;
  --quality-glow: rgba(212, 175, 55, 0.34);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(105, 189, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(105, 189, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 189, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(5, 8, 13, 0.6);
  background-size: 22px 22px, 22px 22px, auto, auto;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 34px var(--quality-glow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 42px rgba(105, 189, 255, 0.05);
}

.deep-quality-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.13) 45%, transparent 58%),
    linear-gradient(180deg, rgba(105, 189, 255, 0.08), transparent 42%, rgba(212, 175, 55, 0.07));
  opacity: 0.55;
  transform: translateX(-36%);
  animation: deep-quality-scan 5.8s ease-in-out infinite;
}

.deep-quality-console::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 16px;
  pointer-events: none;
}

.deep-quality-radar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(128px, 1fr) minmax(174px, 218px) minmax(128px, 1fr);
  grid-template-areas:
    "confirm core conflict"
    "price core freshness"
    "liquidity core flow";
  gap: 14px 16px;
  align-items: center;
}

.deep-quality-radar::before {
  content: "";
  position: absolute;
  inset: 13% 17%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(105, 189, 255, 0.16) 49% 51%, transparent 52%),
    linear-gradient(180deg, transparent 0 48%, rgba(105, 189, 255, 0.14) 49% 51%, transparent 52%),
    radial-gradient(circle, transparent 0 33%, rgba(105, 189, 255, 0.12) 34% 35%, transparent 36% 100%);
  opacity: 0.72;
  pointer-events: none;
}

.deep-quality-feeder {
  position: relative;
  min-height: 112px;
  padding: 13px 14px;
  border: 1px solid rgba(105, 189, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(105, 189, 255, 0.105), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.014)),
    rgba(6, 10, 16, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 12px 24px rgba(0, 0, 0, 0.22);
}

.deep-quality-feeder::before {
  content: "";
  position: absolute;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--quality-accent);
  box-shadow: 0 0 14px var(--quality-glow);
}

.deep-quality-feeder::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--quality-accent), transparent);
  opacity: 0.78;
}

.feeder-confirm {
  grid-area: confirm;
}

.feeder-price {
  grid-area: price;
}

.feeder-liquidity {
  grid-area: liquidity;
}

.feeder-conflict {
  grid-area: conflict;
}

.feeder-freshness {
  grid-area: freshness;
}

.feeder-flow {
  grid-area: flow;
}

.feeder-confirm::before,
.feeder-price::before,
.feeder-liquidity::before {
  right: 12px;
}

.feeder-confirm::after,
.feeder-price::after,
.feeder-liquidity::after {
  right: -20px;
}

.feeder-conflict::before,
.feeder-freshness::before,
.feeder-flow::before {
  left: -5px;
}

.feeder-conflict::after,
.feeder-freshness::after,
.feeder-flow::after {
  left: -28px;
  transform: rotate(180deg);
}

.deep-quality-feeder span {
  display: block;
  margin-bottom: 8px;
  color: rgba(232, 236, 243, 0.58);
  font-family: var(--mono-font);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deep-quality-feeder strong {
  display: block;
  margin-bottom: 6px;
  color: #f6f0da;
  font-size: 0.94rem;
}

.deep-quality-feeder p {
  margin: 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.deep-quality-ring {
  position: relative;
  display: grid;
  place-items: center;
  grid-area: core;
  justify-self: center;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background:
    repeating-conic-gradient(from -90deg, rgba(255, 255, 255, 0.18) 0 2deg, transparent 2deg 11deg),
    conic-gradient(from -90deg, rgba(105, 189, 255, 0.14), rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.04), rgba(105, 189, 255, 0.14)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.42),
    0 0 26px var(--quality-glow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 28px rgba(0, 0, 0, 0.34);
}

.deep-quality-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  border: 1px solid rgba(105, 189, 255, 0.28);
  box-shadow:
    0 0 20px rgba(105, 189, 255, 0.12),
    inset 0 0 18px rgba(105, 189, 255, 0.09);
}

.deep-quality-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  border: 1px dashed rgba(246, 240, 218, 0.16);
  animation: deep-quality-rotate 16s linear infinite;
}

.deep-quality-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.deep-quality-track,
.deep-quality-fill {
  fill: none;
  stroke-width: 9;
}

.deep-quality-track {
  stroke: rgba(255, 255, 255, 0.075);
}

.deep-quality-fill {
  stroke: var(--quality-accent);
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  filter:
    drop-shadow(0 0 8px var(--quality-glow))
    drop-shadow(0 0 18px var(--quality-glow));
  transition:
    stroke-dashoffset 360ms ease,
    stroke 240ms ease;
}

.deep-quality-console[data-quality-state="strong"] .deep-quality-fill {
  stroke: var(--quality-accent);
}

.deep-quality-console[data-quality-state="usable"] .deep-quality-fill {
  stroke: var(--quality-accent);
}

.deep-quality-console[data-quality-state="caution"] .deep-quality-fill {
  stroke: var(--quality-accent);
}

.deep-quality-console[data-quality-state="observe"] .deep-quality-fill {
  stroke: var(--quality-accent);
}

.deep-quality-console[data-quality-state="strong"] {
  --quality-accent: #58d68d;
  --quality-glow: rgba(88, 214, 141, 0.34);
}

.deep-quality-console[data-quality-state="usable"] {
  --quality-accent: #d4af37;
  --quality-glow: rgba(212, 175, 55, 0.34);
}

.deep-quality-console[data-quality-state="caution"] {
  --quality-accent: #ffb347;
  --quality-glow: rgba(255, 179, 71, 0.32);
}

.deep-quality-console[data-quality-state="observe"] {
  --quality-accent: #ff5f5f;
  --quality-glow: rgba(255, 95, 95, 0.3);
}

.deep-quality-center {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.018)),
    #11141a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -18px 22px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(0, 0, 0, 0.42);
}

.deep-quality-center strong {
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: 2.28rem;
  line-height: 0.9;
  text-shadow:
    0 0 12px var(--quality-glow),
    0 0 24px rgba(246, 240, 218, 0.12);
}

.deep-quality-center span {
  margin-top: -10px;
  color: rgba(232, 236, 243, 0.52);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.deep-thesis-main .deep-quality-copy h3 {
  margin: 6px 0 10px;
  max-width: 28ch;
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.02;
}

.deep-quality-copy p:last-child {
  margin: 0;
  max-width: 78ch;
  color: rgba(232, 236, 243, 0.78);
  line-height: 1.7;
  font-weight: 600;
}

.deep-quality-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.deep-product-desk {
  position: relative;
  isolation: isolate;
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid rgba(105, 189, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(105, 189, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 189, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(10, 16, 26, 0.9), rgba(5, 7, 12, 0.94));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.deep-product-desk::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(88, 214, 141, 0.11), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(212, 175, 55, 0.11), transparent 25%),
    linear-gradient(115deg, transparent 0 42%, rgba(105, 189, 255, 0.08) 46%, transparent 52%);
  opacity: 0.85;
}

.deep-product-desk-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.deep-product-desk-head span,
.deep-product-card-head span {
  color: rgba(245, 215, 110, 0.88);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.deep-product-desk-head h3 {
  margin: 0;
  max-width: 22ch;
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.02;
}

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

.deep-product-card {
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
    rgba(7, 10, 16, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.deep-product-card-wide {
  grid-column: span 2;
}

.deep-product-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.deep-product-card-head strong {
  max-width: 18ch;
  color: #f6f0da;
  text-align: right;
  font-size: 0.96rem;
  line-height: 1.2;
}

.deep-product-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.76);
  font-size: 0.92rem;
  line-height: 1.62;
}

.deep-change-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.deep-change-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  color: rgba(246, 240, 218, 0.82);
  background: rgba(212, 175, 55, 0.07);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-stability-rail {
  position: relative;
  height: 9px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.deep-stability-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 74%;
  border-radius: inherit;
  background: linear-gradient(90deg, #58d68d, #d4af37);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
}

.deep-stability-rail[data-stability="reviewing"]::before {
  width: 46%;
  background: linear-gradient(90deg, #ffb347, #ff5f5f);
}

.deep-stability-rail[data-stability="shifted"]::before {
  width: 88%;
  background: linear-gradient(90deg, #69bdff, #58d68d);
}

.deep-read-timeline {
  display: grid;
  gap: 9px;
}

.deep-read-timeline-row {
  display: grid;
  grid-template-columns: 16px minmax(92px, 0.22fr) minmax(0, 0.42fr) minmax(0, 0.36fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-left: 3px solid #d4af37;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.028);
}

.deep-read-timeline-row::before,
.package-mini-timeline-row::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}

.deep-read-timeline-row.is-strong {
  border-left-color: #58d68d;
}

.deep-read-timeline-row.is-strong::before {
  background: #58d68d;
  box-shadow: 0 0 16px rgba(88, 214, 141, 0.5);
}

.deep-read-timeline-row.is-caution {
  border-left-color: #ffb347;
}

.deep-read-timeline-row.is-caution::before {
  background: #ffb347;
  box-shadow: 0 0 16px rgba(255, 179, 71, 0.5);
}

.deep-read-timeline-row.is-observe {
  border-left-color: #ff5f5f;
}

.deep-read-timeline-row.is-observe::before {
  background: #ff5f5f;
  box-shadow: 0 0 16px rgba(255, 95, 95, 0.5);
}

.deep-read-timeline-row span,
.deep-read-timeline-row em {
  color: rgba(232, 236, 243, 0.58);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.deep-read-timeline-row strong {
  color: #f6f0da;
  font-size: 0.92rem;
}

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

.deep-scenario-card {
  position: relative;
  min-height: 190px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(8, 11, 17, 0.78);
}

.deep-scenario-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(105, 189, 255, 0.95), transparent);
}

.deep-scenario-card.is-bullish {
  border-color: rgba(88, 214, 141, 0.24);
}

.deep-scenario-card.is-bullish::before {
  background: linear-gradient(90deg, rgba(88, 214, 141, 0.95), transparent);
}

.deep-scenario-card.is-bearish {
  border-color: rgba(255, 95, 95, 0.22);
}

.deep-scenario-card.is-bearish::before {
  background: linear-gradient(90deg, rgba(255, 95, 95, 0.95), transparent);
}

.deep-scenario-card.is-neutral {
  border-color: rgba(212, 175, 55, 0.22);
}

.deep-scenario-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.deep-scenario-card-head strong {
  color: #f6f0da;
  line-height: 1.18;
}

.deep-scenario-card-head span,
.deep-scenario-card em {
  color: rgba(245, 215, 110, 0.86);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deep-scenario-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 6px 8px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  text-align: center;
}

.deep-scenario-card p {
  margin: 12px 0;
}

.deep-scenario-meter {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.deep-scenario-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #69bdff, #d4af37);
}

.deep-scenario-card.is-bullish .deep-scenario-meter span {
  background: linear-gradient(90deg, #4adf91, #d4af37);
}

.deep-scenario-card.is-bearish .deep-scenario-meter span {
  background: linear-gradient(90deg, #ff5f5f, #d4af37);
}

.deep-package-flow {
  display: grid;
  gap: 10px;
}

.deep-package-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.026);
}

.deep-package-step strong {
  color: #f5d76e;
  font-family: var(--mono-font);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deep-watch-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deep-watch-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(232, 236, 243, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.deep-watch-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.34);
}

.deep-product-empty {
  color: rgba(232, 236, 243, 0.62);
}

.package-operating-desk {
  position: relative;
  isolation: isolate;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(105, 189, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(105, 189, 255, 0.042) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 189, 255, 0.034) 1px, transparent 1px),
    linear-gradient(135deg, rgba(9, 14, 22, 0.94), rgba(5, 6, 10, 0.96));
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.package-operating-desk::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 214, 141, 0.105), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.11), transparent 27%),
    linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.055) 48%, transparent 55%);
  opacity: 0.85;
}

.package-operating-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.package-operating-head span,
.package-operating-card span,
.package-timeline-head span,
.public-package-head span,
.package-operating-public-card span {
  color: rgba(245, 215, 110, 0.88);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-operating-head h3,
.public-package-head h3 {
  margin: 6px 0 0;
  max-width: 24ch;
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 2.45vw, 2.1rem);
  line-height: 1.03;
}

.package-operating-head > strong {
  min-width: 126px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: #050608;
  background: #d4af37;
  text-align: center;
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.review-completion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-operating-card {
  min-height: 180px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(8, 11, 17, 0.74);
}

.package-operating-card.is-primary {
  border-color: rgba(88, 214, 141, 0.22);
  box-shadow: inset 0 0 22px rgba(88, 214, 141, 0.045);
}

.package-score-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.package-score-orb {
  --score: 0%;
  position: relative;
  width: 116px;
  aspect-ratio: 1;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 12, 18, 0.96) 0 52%, transparent 53%),
    conic-gradient(from -90deg, #58d68d var(--score), rgba(255, 255, 255, 0.1) 0),
    radial-gradient(circle at 50% 50%, rgba(105, 189, 255, 0.2), transparent 68%);
  box-shadow:
    0 0 26px rgba(88, 214, 141, 0.12),
    inset 0 0 22px rgba(105, 189, 255, 0.16);
}

.package-score-orb::before,
.package-score-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.package-score-orb::before {
  inset: 10px;
  border: 1px solid rgba(105, 189, 255, 0.22);
}

.package-score-orb::after {
  inset: -6px;
  border: 1px dashed rgba(105, 189, 255, 0.18);
}

.package-score-orb strong,
.package-score-orb em {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.package-score-orb strong {
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: 1.4rem;
  line-height: 1;
}

.package-score-orb em {
  width: 100%;
  margin-top: 5px;
  color: rgba(245, 215, 110, 0.8);
  font-family: var(--mono-font);
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.package-score-copy {
  min-width: 0;
}

.package-operating-card-wide {
  grid-column: span 2;
}

.package-operating-card strong {
  display: block;
  margin: 10px 0;
  color: #f6f0da;
  font-size: 1.08rem;
  line-height: 1.2;
}

.package-operating-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.73);
  font-size: 0.91rem;
  line-height: 1.58;
}

.package-timeline-shell {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.package-timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.package-timeline-head strong {
  color: rgba(246, 240, 218, 0.82);
  font-family: var(--mono-font);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-mini-timeline {
  display: grid;
  gap: 8px;
}

.package-mini-timeline-row {
  display: grid;
  grid-template-columns: 16px minmax(90px, 0.22fr) minmax(0, 0.42fr) minmax(0, 0.36fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #d4af37;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.package-mini-timeline-row span,
.package-mini-timeline-row em {
  color: rgba(232, 236, 243, 0.58);
  font-family: var(--mono-font);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-mini-timeline-row strong {
  color: #f6f0da;
  font-size: 0.9rem;
}

.public-package-operating-matrix {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(105, 189, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(105, 189, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 7, 12, 0.78);
  background-size: 30px 30px, auto, auto;
}

.public-package-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.public-package-head p {
  max-width: 76ch;
  margin: 0;
  color: rgba(232, 236, 243, 0.76);
  line-height: 1.65;
}

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

.package-operating-public-card {
  position: relative;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(9, 12, 18, 0.78);
}

.package-operating-public-card.package-tier-deep_read {
  border-color: rgba(212, 175, 55, 0.22);
}

.package-operating-public-card.package-tier-review_suite {
  border-color: rgba(88, 214, 141, 0.2);
}

.package-public-rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 14px;
  color: #f5d76e;
  background: rgba(212, 175, 55, 0.075);
  font-family: var(--mono-font);
  font-weight: 900;
}

.package-operating-public-card h3 {
  margin: 8px 0 10px;
  color: #f6f0da;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.package-operating-public-card h3 em {
  display: block;
  margin-top: 6px;
  color: #f5d76e;
  font-family: var(--mono-font);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.package-operating-public-card p {
  margin: 0 0 14px;
  color: rgba(232, 236, 243, 0.74);
  line-height: 1.62;
}

.package-operating-public-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.package-operating-public-card div {
  min-width: 0;
}

.package-operating-public-card dt {
  margin-bottom: 3px;
  color: rgba(245, 215, 110, 0.82);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-operating-public-card dd {
  margin: 0;
  color: rgba(246, 240, 218, 0.86);
  font-size: 0.9rem;
  line-height: 1.52;
}

@keyframes deep-quality-scan {
  0%,
  52% {
    transform: translateX(-42%);
    opacity: 0.24;
  }
  68% {
    transform: translateX(18%);
    opacity: 0.58;
  }
  100% {
    transform: translateX(42%);
    opacity: 0.24;
  }
}

@keyframes deep-quality-rotate {
  to {
    transform: rotate(360deg);
  }
}

.deep-quality-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.deep-quality-lanes article {
  min-height: 124px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-top: 2px solid rgba(212, 175, 55, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(7, 11, 17, 0.58);
}

.deep-quality-lanes article:first-child {
  border-top-color: #58d68d;
}

.deep-quality-lanes article:nth-child(2) {
  border-top-color: #ffb347;
}

.deep-quality-lanes article:last-child {
  border-top-color: #69bdff;
}

.deep-quality-lanes span {
  display: block;
  margin-bottom: 10px;
  color: rgba(232, 236, 243, 0.56);
  font-family: var(--mono-font);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deep-quality-lanes strong {
  display: block;
  margin-bottom: 8px;
  color: #f6f0da;
  font-size: 0.98rem;
}

.deep-quality-lanes p {
  margin: 0;
  color: rgba(232, 236, 243, 0.68);
  line-height: 1.58;
  font-size: 0.9rem;
}

.deep-thesis-main h3 {
  margin: 8px 0 14px;
  max-width: 26ch;
  color: #f5d76e;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.03;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.deep-thesis-main p:last-child {
  margin: 0;
  max-width: 78ch;
  color: rgba(246, 240, 218, 0.9);
  line-height: 1.75;
  font-weight: 600;
}

.deep-trust-audit {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 16px;
  align-items: start;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(88, 214, 141, 0.2);
  border-left: 3px solid #58d68d;
  background: rgba(88, 214, 141, 0.055);
}

.deep-trust-audit-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(232, 236, 243, 0.56);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deep-trust-audit strong {
  color: #dfffe9;
  font-size: 1rem;
}

.deep-trust-audit p {
  margin: 0;
  color: rgba(232, 236, 243, 0.78);
  line-height: 1.65;
}

.deep-trust-audit[data-trust-state="watch"],
.deep-trust-audit[data-trust-state="reviewing"] {
  border-color: rgba(212, 175, 55, 0.26);
  border-left-color: #d4af37;
  background: rgba(212, 175, 55, 0.065);
}

.deep-trust-audit[data-trust-state="watch"] strong,
.deep-trust-audit[data-trust-state="reviewing"] strong {
  color: #f5d76e;
}

.deep-trust-audit[data-trust-state="under-review"],
.deep-trust-audit[data-trust-state="degraded"] {
  border-color: rgba(255, 95, 95, 0.3);
  border-left-color: #ff5f5f;
  background: rgba(255, 95, 95, 0.075);
}

.deep-trust-audit[data-trust-state="under-review"] strong,
.deep-trust-audit[data-trust-state="degraded"] strong {
  color: #ff9f9f;
}

.deep-thesis-side {
  display: grid;
  gap: 14px;
}

.deep-thesis-side article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 20px;
  border-radius: 18px;
  overflow: hidden;
}

.deep-thesis-side article:first-child {
  border-color: rgba(88, 214, 141, 0.16);
  background:
    radial-gradient(circle at top right, rgba(88, 214, 141, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
}

.deep-thesis-side article:last-child {
  border-color: rgba(255, 95, 95, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 95, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.018);
}

.deep-thesis-side strong {
  display: block;
  color: rgba(245, 232, 182, 0.94);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.deep-thesis-visual {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
}

.deep-thesis-visual-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.22), transparent 0 14%, rgba(255, 255, 255, 0.04) 15%, transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.deep-thesis-visual-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.deep-thesis-visual-track,
.deep-thesis-visual-fill {
  fill: none;
  stroke-width: 7;
}

.deep-thesis-visual-track {
  stroke: rgba(255, 255, 255, 0.075);
}

.deep-thesis-visual-fill {
  stroke: #58d68d;
  stroke-linecap: round;
  stroke-dasharray: 182;
  stroke-dashoffset: 182;
  filter: drop-shadow(0 0 10px rgba(88, 214, 141, 0.32));
  transition: stroke-dashoffset 340ms ease;
}

.deep-thesis-action-card.is-invalidation .deep-thesis-visual-fill {
  stroke: #ffb347;
  filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.3));
}

.deep-thesis-visual-ring > div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  line-height: 1;
}

.deep-thesis-visual-ring strong {
  color: var(--text);
  font-family: "DM Mono", monospace;
  font-size: 1.12rem;
  line-height: 1;
}

.deep-thesis-visual-ring span {
  margin-top: 3px;
  color: rgba(232, 236, 243, 0.52);
  font-family: "DM Mono", monospace;
  font-size: 0.56rem;
}

.deep-thesis-visual-label {
  display: block;
  color: var(--text-secondary);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.deep-thesis-visual small {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.deep-thesis-checklist {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deep-thesis-checklist li {
  position: relative;
  padding-left: 18px;
  color: rgba(232, 236, 243, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.deep-thesis-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.deep-diagnostic-panel {
  order: 2;
  grid-column: span 12;
  border-color: rgba(88, 214, 141, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 214, 141, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(11, 13, 18, 0.96);
}

.deep-diagnostic-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.deep-diagnostic-head h2 {
  margin: 6px 0 0;
}

.deep-diagnostic-badge {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(212, 175, 55, 0.08);
  color: rgba(245, 232, 182, 0.9);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.deep-confluence-card {
  min-height: 288px;
  padding: 16px 16px 18px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.015) inset;
}

.deep-confluence-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.18);
}

.deep-confluence-card.is-aligned::before {
  background: linear-gradient(180deg, #58d68d, rgba(88, 214, 141, 0.2));
}

.deep-confluence-card.is-mixed::before,
.deep-confluence-card.is-neutral::before {
  background: linear-gradient(180deg, #d4af37, rgba(212, 175, 55, 0.18));
}

.deep-confluence-card.is-caution::before {
  background: linear-gradient(180deg, #ff5f5f, rgba(255, 95, 95, 0.18));
}

.deep-confluence-card::after {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--tone, #d4af37) 18%, transparent), transparent 66%);
  opacity: 0.9;
}

.deep-confluence-top,
.deep-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deep-confluence-top span,
.deep-meter-head span {
  color: rgba(232, 236, 243, 0.62);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deep-confluence-top strong,
.deep-meter-head strong {
  color: rgba(245, 232, 182, 0.92);
  font-family: var(--mono-font);
  font-size: 0.72rem;
}

.deep-confluence-gauge {
  --score: 50;
  --tone: #d4af37;
  position: relative;
  display: grid;
  place-items: center;
  width: min(132px, 72%);
  aspect-ratio: 1;
  margin: 18px auto 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 0 13%, rgba(255, 255, 255, 0.04) 14%, transparent 32%),
    conic-gradient(var(--tone) calc(var(--score) * 1%), rgba(255, 255, 255, 0.075) 0);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px color-mix(in srgb, var(--tone) 32%, transparent),
    inset 0 0 0 9px rgba(255, 255, 255, 0.035);
}

.deep-confluence-gauge::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.015)),
    #11141a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 -18px 24px rgba(0, 0, 0, 0.32);
}

.deep-confluence-gauge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.32), transparent 0 18%, rgba(255, 255, 255, 0.04) 19%, transparent 38%),
    #f5f0e8;
  color: #11141a;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.32),
    inset 0 -10px 18px rgba(0, 0, 0, 0.12);
}

.deep-confluence-gauge-inner strong {
  color: #11141a;
  font-family: var(--display-font);
  font-size: 1.65rem;
  line-height: 0.85;
}

.deep-confluence-gauge-inner span {
  margin-top: -4px;
  color: rgba(17, 20, 26, 0.62);
  font-family: var(--mono-font);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.deep-confluence-meter {
  height: 6px;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.deep-confluence-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--tone, #d4af37) 55%, transparent), var(--tone, #d4af37));
  box-shadow: 0 0 18px color-mix(in srgb, var(--tone, #d4af37) 34%, transparent);
  transition: width 280ms ease;
}

.deep-confluence-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.deep-confluence-card.is-aligned h3 {
  color: #58d68d;
}

.deep-confluence-card.is-caution h3 {
  color: #ff6b6b;
}

.deep-confluence-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.72);
  line-height: 1.65;
}

.deep-meter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.deep-meter-card {
  padding: 18px;
  border-radius: 18px;
}

.deep-meter-track {
  height: 9px;
  margin: 16px 0 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.deep-meter-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  transition: width 280ms ease;
}

.deep-meter-fill.is-confirmation {
  background: linear-gradient(90deg, #58d68d, #d4af37);
}

.deep-meter-fill.is-invalidation {
  background: linear-gradient(90deg, #d4af37, #ff5f5f);
}

.deep-meter-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.7);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .deep-thesis-layout,
  .deep-trust-audit,
  .deep-quality-console,
  .read-guide-strip,
  .deep-meter-grid {
    grid-template-columns: 1fr;
  }

  .deep-quality-radar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "core core"
      "confirm conflict"
      "price freshness"
      "liquidity flow";
  }

  .deep-quality-radar::before {
    inset: 4% 20% 50%;
  }

  .deep-quality-ring {
    width: 164px;
    height: 164px;
    margin-bottom: 4px;
  }

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

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

@media (max-width: 640px) {
  .deep-live-strip,
  .deep-quality-lanes,
  .deep-confluence-grid {
    grid-template-columns: 1fr;
  }

  .deep-quality-console {
    padding: 16px;
  }

  .deep-quality-radar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "confirm"
      "price"
      "liquidity"
      "conflict"
      "freshness"
      "flow";
  }

  .deep-quality-radar::before,
  .deep-quality-feeder::after {
    display: none;
  }

  .deep-quality-feeder::before {
    left: 12px;
    right: auto;
  }

  .deep-quality-feeder {
    min-height: auto;
    padding-left: 28px;
  }

  .deep-diagnostic-head {
    flex-direction: column;
  }

  .deep-confluence-grid {
    grid-template-columns: 1fr;
  }
}

.insight-panel {
  order: 4;
  grid-column: span 12;
  padding: 20px 22px;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(11, 13, 18, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.04) inset;
}

.insight-panel .panel-header {
  margin-bottom: 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.insight-text {
  margin: 0;
  max-width: 88ch;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(232, 236, 243, 0.84);
}

.chart-panel {
  order: 3;
}

.pulse-panel {
  order: 6;
}

.detail-panel {
  order: 10;
}

.warnings-panel,
.liquidity-panel,
.timeframe-panel {
  order: 7;
}

.alerts-panel,
.tags-panel,
.news-panel {
  order: 8;
}

.warnings-panel,
.liquidity-panel,
.timeframe-panel {
  position: relative;
}

.warnings-panel::before,
.liquidity-panel::before,
.timeframe-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  opacity: 0.9;
}

.warnings-panel::before {
  background: linear-gradient(90deg, rgba(255, 95, 95, 0.92), rgba(255, 95, 95, 0.12));
}

.liquidity-panel::before {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.92), rgba(212, 175, 55, 0.12));
}

.timeframe-panel::before {
  background: linear-gradient(90deg, rgba(88, 214, 141, 0.92), rgba(88, 214, 141, 0.12));
}

.timeframe-panel .timeframe-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.timeframe-panel .timeframe-card {
  min-height: 170px;
}

.gold-panel {
  order: 9;
}

.market-board-panel[data-app-view="deep-analysis"] {
  order: 11;
}

.detail-grid {
  gap: 18px;
}

.detail-card,
.pulse-card,
.liquidity-card,
.timeframe-card,
.news-card {
  border-color: rgba(255, 255, 255, 0.04);
}

.review-suite-chart-card {
  grid-column: span 2;
}

.review-suite-chart-shell {
  position: relative;
  margin: 16px 0 14px;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 14%, rgba(59, 130, 246, 0.14), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(212, 175, 55, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.02);
}

.review-suite-chart {
  width: 100%;
  height: 300px;
  min-height: 300px;
}

.review-suite-chart-overlay {
  position: absolute;
  inset: 14px;
  pointer-events: none;
}

.review-suite-position-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.review-suite-position-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-suite-position-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.review-suite-position-legend i.is-aligned {
  background: #22c55e;
}

.review-suite-position-legend i.is-caution {
  background: #d4af37;
}

.review-suite-position-legend i.is-against {
  background: #ef4444;
}

@keyframes marketPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1180px) {
  body.is-authenticated .page-shell {
    width: min(100% - 24px, 1600px);
  }
}

/* MarketRead redesign based on DM Serif / Syne public landing */

.mrx-shell {
  --mrx-black: #121212;
  --mrx-surface: #181a1e;
  --mrx-card: #1d2025;
  --mrx-border: rgba(255, 255, 255, 0.07);
  --mrx-gold: #d4af37;
  --mrx-gold-light: #edd17a;
  --mrx-blue: #00d1ff;
  --mrx-red: #e05252;
  --mrx-green: #52c27a;
  --mrx-text: #f2eee7;
  --mrx-muted: #aaa6b3;
  --mrx-subtle: #8f8a99;
  --mrx-nav-offset: 124px;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 18px;
}

body.public-mode {
  background: #121212;
  color: var(--mrx-text);
  font-family: "Syne", sans-serif;
  line-height: 1.6;
}

html:lang(id) body.public-mode,
html:lang(id) body.public-mode button,
html:lang(id) body.public-mode input,
html:lang(id) body.public-mode textarea,
html:lang(id) body.public-mode select {
  font-family: "Syne", sans-serif;
}

html:lang(id) body.public-mode h1,
html:lang(id) body.public-mode h2,
html:lang(id) body.public-mode .mrx-hero-title,
html:lang(id) body.public-mode .mrx-section-title,
html:lang(id) body.public-mode .mrx-cta-strip h2 {
  font-family: "DM Serif Display", serif;
}

html:lang(id) body.public-mode .mrx-btn,
html:lang(id) body.public-mode .mrx-btn-primary,
html:lang(id) body.public-mode .mrx-btn-ghost,
html:lang(id) body.public-mode .mrx-eyebrow,
html:lang(id) body.public-mode .mrx-live-text,
html:lang(id) body.public-mode .mrx-price-card li,
html:lang(id) body.public-mode .mrx-pricing-trust,
html:lang(id) body.public-mode .mrx-footer {
  font-family: "DM Mono", monospace;
}

html:lang(th) body.public-mode,
html:lang(th) body.public-mode button,
html:lang(th) body.public-mode input,
html:lang(th) body.public-mode textarea,
html:lang(th) body.public-mode select {
  font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, sans-serif;
}

html:lang(th) body.public-mode h1,
html:lang(th) body.public-mode h2,
html:lang(th) body.public-mode .mrx-hero-title,
html:lang(th) body.public-mode .mrx-section-title,
html:lang(th) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, sans-serif;
}

html:lang(vi) body.public-mode,
html:lang(vi) body.public-mode button,
html:lang(vi) body.public-mode input,
html:lang(vi) body.public-mode textarea,
html:lang(vi) body.public-mode select,
html:lang(vi) body.public-mode h1,
html:lang(vi) body.public-mode h2,
html:lang(vi) body.public-mode .mrx-hero-title,
html:lang(vi) body.public-mode .mrx-section-title,
html:lang(vi) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans", "Inter", "Segoe UI", sans-serif;
}

html:lang(es) body.public-mode,
html:lang(es) body.public-mode button,
html:lang(es) body.public-mode input,
html:lang(es) body.public-mode textarea,
html:lang(es) body.public-mode select,
html:lang(es) body.public-mode h1,
html:lang(es) body.public-mode h2,
html:lang(es) body.public-mode .mrx-hero-title,
html:lang(es) body.public-mode .mrx-section-title,
html:lang(es) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans", "Inter", "Segoe UI", sans-serif;
}

html:lang(fr) body.public-mode,
html:lang(fr) body.public-mode button,
html:lang(fr) body.public-mode input,
html:lang(fr) body.public-mode textarea,
html:lang(fr) body.public-mode select,
html:lang(fr) body.public-mode h1,
html:lang(fr) body.public-mode h2,
html:lang(fr) body.public-mode .mrx-hero-title,
html:lang(fr) body.public-mode .mrx-section-title,
html:lang(fr) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans", "Inter", "Segoe UI", sans-serif;
}

html:lang(ar) body.public-mode,
html:lang(ar) body.public-mode button,
html:lang(ar) body.public-mode input,
html:lang(ar) body.public-mode textarea,
html:lang(ar) body.public-mode select,
html:lang(ar) body.public-mode h1,
html:lang(ar) body.public-mode h2,
html:lang(ar) body.public-mode .mrx-hero-title,
html:lang(ar) body.public-mode .mrx-section-title,
html:lang(ar) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans Arabic", "Noto Sans", "Segoe UI", sans-serif;
}

html:lang(ja) body.public-mode,
html:lang(ja) body.public-mode button,
html:lang(ja) body.public-mode input,
html:lang(ja) body.public-mode textarea,
html:lang(ja) body.public-mode select,
html:lang(ja) body.public-mode h1,
html:lang(ja) body.public-mode h2,
html:lang(ja) body.public-mode .mrx-hero-title,
html:lang(ja) body.public-mode .mrx-section-title,
html:lang(ja) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans JP", "Noto Sans", "Segoe UI", sans-serif;
}

html:lang(ko) body.public-mode,
html:lang(ko) body.public-mode button,
html:lang(ko) body.public-mode input,
html:lang(ko) body.public-mode textarea,
html:lang(ko) body.public-mode select,
html:lang(ko) body.public-mode h1,
html:lang(ko) body.public-mode h2,
html:lang(ko) body.public-mode .mrx-hero-title,
html:lang(ko) body.public-mode .mrx-section-title,
html:lang(ko) body.public-mode .mrx-cta-strip h2 {
  font-family: "Noto Sans KR", "Noto Sans", "Segoe UI", sans-serif;
}

html:lang(ar) body.public-mode {
  text-align: right;
}

html:lang(ar) body.public-mode .mrx-nav,
html:lang(ar) body.public-mode .mrx-live-card,
html:lang(ar) body.public-mode .mrx-price-card,
html:lang(ar) body.public-mode .mrx-footer {
  direction: rtl;
}

html:lang(ar) body.public-mode .marketread-language-switcher select {
  direction: ltr;
}

.marketread-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 4px 6px 4px 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(5, 6, 8, 0.48);
}

.marketread-language-switcher label {
  color: rgba(240, 237, 232, 0.68);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketread-language-switcher select {
  min-height: 28px;
  min-width: 118px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(15, 16, 20, 0.92);
  color: #f5d76e;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  outline: none;
  padding: 0 26px 0 9px;
  text-transform: uppercase;
}

.marketread-language-switcher select:focus {
  border-color: rgba(245, 215, 110, 0.72);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.14);
}

body.public-mode::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.mrx-nav,
.mrx-hero,
.mrx-section,
.mrx-trust-bar,
.mrx-cta-strip,
.mrx-footer,
.mrx-gold-rule {
  position: relative;
  z-index: 2;
}

.mrx-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  width: min(1400px, calc(100% - 40px));
  transform: translateX(-50%);
  z-index: 60;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 30px;
  border: 1px solid var(--mrx-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 56px rgba(0, 0, 0, 0.4);
}

.mrx-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 228px;
  text-decoration: none;
}

.mrx-logo-mark {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--mrx-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--mrx-gold);
  letter-spacing: 0.05em;
}

.mrx-logo-image-wrap {
  width: 74px;
  height: 46px;
  border: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(84, 132, 255, 0.18));
}

.mrx-nav-logo-mark-only {
  gap: 0;
}

.mrx-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mrx-logo-copy strong,
.mrx-logo-text {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--mrx-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mrx-logo-copy small {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: rgba(212, 175, 55, 0.82);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mrx-nav-links,
.mrx-footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
}

.mrx-nav-links a,
.mrx-footer-links a,
.mrx-btn-ghost {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--mrx-muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mrx-nav-links a:hover,
.mrx-footer-links a:hover,
.mrx-btn-ghost:hover {
  color: var(--mrx-text);
}

.mrx-nav-cta,
.mrx-hero-actions,
.mrx-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mrx-btn-primary,
.mrx-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}

.mrx-btn-primary {
  background: linear-gradient(135deg, #f1d98b 0%, #d4af37 62%, #d4af37 100%);
  color: var(--mrx-black);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18), 0 14px 34px rgba(212, 175, 55, 0.18);
}

.mrx-btn-primary:hover {
  background: linear-gradient(135deg, #f5e2a2 0%, #e2be52 62%, #e2be52 100%);
  transform: translateY(-1px);
}

.mrx-btn-secondary {
  border: 1px solid var(--mrx-border);
  color: var(--mrx-text);
}

.mrx-btn-secondary:hover {
  border-color: var(--mrx-blue);
  color: var(--mrx-blue);
}

.mrx-btn-block {
  width: 100%;
}

.mrx-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--mrx-nav-offset) + 28px) 48px 56px;
  position: relative;
  overflow: hidden;
  gap: 44px;
}

.mrx-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mrx-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mrx-pricing-trust {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mrx-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--mrx-gold);
  border-radius: 50%;
  animation: mrx-pulse 2s infinite;
}

@keyframes mrx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.mrx-eyebrow-text,
.mrx-section-eyebrow,
.mrx-trust-label,
.mrx-footer-copy,
.mrx-pricing-note,
.mrx-card-label,
.mrx-price-tier,
.mrx-price-currency,
.mrx-price-period,
.mrx-price-label,
.mrx-bias-label,
.mrx-ai-reading-label,
.mrx-meter-name,
.mrx-meter-pct,
.mrx-stat-label,
.mrx-compare-col-header {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mrx-eyebrow-text,
.mrx-section-eyebrow,
.mrx-ai-reading-label {
  color: var(--mrx-gold);
}

.mrx-hero h1,
.mrx-section-title,
.mrx-price-name,
.mrx-stat-number,
.mrx-cta-strip h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--mrx-text);
}

.mrx-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.mrx-hero h1 em,
.mrx-hero-gold,
.mrx-section-title em,
.mrx-cta-strip h2 em {
  font-style: italic;
  color: var(--mrx-gold);
}

.mrx-hero-gold {
  font-style: normal;
}

.mrx-hero-desc,
.mrx-section-sub,
.mrx-feature-desc,
.mrx-price-desc,
.mrx-faq-a,
.mrx-cta-strip p {
  font-size: 16px;
  color: var(--mrx-muted);
  line-height: 1.7;
}

.mrx-hero-desc {
  max-width: 440px;
  margin-bottom: 28px;
}

.mrx-no-cc {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--mrx-subtle);
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.mrx-hero-card,
.mrx-feature-card,
.mrx-price-card,
.mrx-faq-item,
.mrx-stat-card,
.mrx-compare-col,
.mrx-flow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(29, 32, 37, 0.66);
  border: 1px solid var(--mrx-border);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.mrx-hero-card {
  padding: 28px;
  position: relative;
}

.mrx-hero-card::before,
.mrx-gold-rule {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mrx-gold), transparent);
}

.mrx-hero-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mrx-card-header,
.mrx-bias-row,
.mrx-meter-top,
.mrx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mrx-card-title-group,
.mrx-price-item,
.mrx-meter,
.mrx-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mrx-card-pair,
.mrx-feature-title,
.mrx-faq-q {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--mrx-text);
  letter-spacing: 0.05em;
}

.mrx-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(82, 194, 122, 0.3);
  background: rgba(82, 194, 122, 0.08);
  backdrop-filter: blur(12px);
}

.mrx-live-dot {
  width: 5px;
  height: 5px;
  background: var(--mrx-green);
  border-radius: 50%;
  animation: mrx-blink 1.5s infinite;
}

@keyframes mrx-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mrx-live-text {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--mrx-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mrx-price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mrx-border);
}

.mrx-price-label,
.mrx-bias-label,
.mrx-meter-name {
  color: #b5b2bc;
}

.mrx-price-tier,
.mrx-price-currency,
.mrx-price-period,
.mrx-meter-pct,
.mrx-stat-label {
  color: #b9c0c8;
}

.mrx-price-val {
  font-family: "DM Mono", monospace;
  font-size: 20px;
  font-weight: 500;
}

.mrx-price-val.bid { color: var(--mrx-green); }
.mrx-price-val.ask { color: var(--mrx-red); }
.mrx-price-val.spread { color: var(--mrx-muted); font-size: 16px; }

.mrx-bias-row {
  margin-bottom: 20px;
}

.mrx-bias-val {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mrx-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mrx-bias-row.is-locked {
  padding: 12px 14px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.045);
}

.mrx-bias-row.is-locked .mrx-bias-val {
  color: var(--mrx-gold-light);
}

.mrx-ai-reading {
  padding: 14px;
  background: rgba(201, 168, 76, 0.04);
  border-left: 2px solid var(--mrx-gold);
  margin-bottom: 24px;
}

.mrx-ai-reading.is-locked {
  position: relative;
  overflow: hidden;
  border-left-color: var(--mrx-gold-light);
  background:
    linear-gradient(90deg, rgba(201, 168, 76, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(201, 168, 76, 0.04);
}

.mrx-ai-reading.is-locked::after,
.mrx-terminal-entry.is-preview-locked::after {
  content: "Core Read";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(5, 6, 10, 0.72);
  color: var(--mrx-gold-light);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:lang(zh-Hans) .mrx-ai-reading.is-locked::after,
:lang(zh-Hans) .mrx-terminal-entry.is-preview-locked::after {
  content: "Core Read";
}

:lang(id) .mrx-ai-reading.is-locked::after,
:lang(id) .mrx-terminal-entry.is-preview-locked::after {
  content: "Core Read";
}

.mrx-ai-reading-text,
.mrx-compare-item,
.mrx-price-features li,
.mrx-feature-desc,
.mrx-price-desc,
.mrx-faq-a {
  font-size: 13px;
  line-height: 1.5;
}

.mrx-ai-reading-text {
  color: var(--mrx-text);
}

.mrx-meters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mrx-meter-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.mrx-meter-fill {
  height: 100%;
  transition: width 1s ease;
}

.mrx-meter-fill.red { background: var(--mrx-red); }
.mrx-meter-fill.amber { background: var(--mrx-gold); }
.mrx-meter-fill.orange { background: var(--mrx-blue); }

.mrx-meter.is-locked .mrx-meter-track {
  position: relative;
  overflow: hidden;
}

.mrx-meter.is-locked .mrx-meter-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 6, 10, 0.1) 0,
    rgba(5, 6, 10, 0.1) 6px,
    rgba(255, 255, 255, 0.08) 6px,
    rgba(255, 255, 255, 0.08) 7px
  );
}

.mrx-meter.is-locked .mrx-meter-pct {
  color: var(--mrx-gold-light);
}

.mrx-preview-unlock {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.1));
  color: var(--mrx-gold-light);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.mrx-section {
  padding: 72px 48px;
}

.mrx-section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.mrx-section-sub {
  max-width: 560px;
}

.mrx-trust-bar {
  padding: 24px 48px;
  border-top: 1px solid var(--mrx-border);
  border-bottom: 1px solid var(--mrx-border);
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(24, 26, 30, 0.62);
  backdrop-filter: blur(20px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 32px rgba(0, 0, 0, 0.12);
}

.mrx-source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  color: rgba(240, 237, 232, 0.36);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mrx-source-strip span {
  position: relative;
}

.mrx-source-strip span:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -16px;
  color: rgba(240, 237, 232, 0.2);
}

.mrx-trust-label {
  color: rgba(240, 237, 232, 0.38);
  white-space: nowrap;
  flex-shrink: 0;
}

.mrx-flag-scroll {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mrx-flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mrx-flag-item:hover { opacity: 1; }

.mrx-flag-item img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.mrx-flag-name {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--mrx-muted);
  letter-spacing: 0.08em;
}

.mrx-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mrx-compare-table,
.mrx-faq-grid {
  display: grid;
  gap: 2px;
}

.mrx-compare-table {
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.mrx-compare-col {
  padding: 28px;
}

.mrx-compare-col.highlight {
  border-color: var(--mrx-gold);
  background: rgba(201, 168, 76, 0.04);
}

.mrx-compare-col-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mrx-border);
  color: var(--mrx-muted);
}

.mrx-compare-col.highlight .mrx-compare-col-header {
  color: var(--mrx-gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.mrx-compare-item,
.mrx-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mrx-muted);
}

.mrx-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 40px;
}

.mrx-flow-card {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.mrx-flow-card.highlight {
  border-color: rgba(201, 168, 76, 0.24);
  background: rgba(201, 168, 76, 0.05);
}

.mrx-flow-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.mrx-flow-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mrx-text);
}

.mrx-flow-card p {
  color: var(--mrx-muted);
  line-height: 1.7;
}

.mrx-flow-arrow {
  align-self: center;
  color: rgba(201, 168, 76, 0.72);
  font-family: "DM Mono", monospace;
  font-size: 1.4rem;
}

.mrx-section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: end;
}

.mrx-terminal-feed {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 2px;
  margin-top: 40px;
}

.mrx-terminal-column,
.mrx-terminal-sidecard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(29, 32, 37, 0.64);
  border: 1px solid var(--mrx-border);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.16);
}

.mrx-terminal-column,
.mrx-terminal-sidecard {
  padding: 28px;
}

.mrx-terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mrx-terminal-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mrx-terminal-entry:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.mrx-terminal-entry.alert {
  position: relative;
}

.mrx-terminal-entry.alert::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.9), rgba(201, 168, 76, 0.08));
}

.mrx-terminal-time {
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.mrx-terminal-entry-body {
  display: grid;
  gap: 8px;
}

.mrx-terminal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(240, 237, 232, 0.88);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mrx-terminal-badge.alert {
  border-color: rgba(201, 168, 76, 0.24);
  background: rgba(201, 168, 76, 0.08);
  color: var(--mrx-gold-light);
}

.mrx-terminal-entry h3,
.mrx-terminal-sidecard h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mrx-text);
  margin: 0;
}

.mrx-terminal-entry p,
.mrx-terminal-sidecard p {
  color: var(--mrx-muted);
  line-height: 1.7;
  margin: 0;
}

.mrx-terminal-tags {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.mrx-terminal-tags li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(240, 237, 232, 0.78);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.mrx-section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: end;
}

.mrx-terminal-feed {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 2px;
  margin-top: 40px;
}

.mrx-terminal-column,
.mrx-terminal-sidecard,
.mrx-roadmap-section {
  background: var(--mrx-card);
  border: 1px solid var(--mrx-border);
}

.mrx-terminal-column,
.mrx-terminal-sidecard {
  padding: 28px;
}

.mrx-terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.mrx-terminal-entry {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mrx-terminal-entry.is-preview-locked {
  padding-right: 92px;
}

.mrx-terminal-entry:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.mrx-terminal-time {
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.mrx-terminal-entry h3,
.mrx-terminal-sidecard h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mrx-text);
  margin-bottom: 6px;
}

.mrx-terminal-entry p,
.mrx-terminal-sidecard p,
.mrx-roadmap-status {
  color: var(--mrx-muted);
  line-height: 1.7;
}

.mrx-terminal-tags {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.mrx-terminal-tags li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(240, 237, 232, 0.78);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.mrx-compare-col.highlight .mrx-compare-item {
  color: var(--mrx-text);
}

.mrx-features-grid,
.mrx-pricing-grid,
.mrx-stats-row {
  display: grid;
  gap: 2px;
  margin-top: 40px;
}

.mrx-features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mrx-feature-card {
  padding: 32px;
  transition: border-color 0.3s;
}

.mrx-feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.mrx-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--mrx-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--mrx-gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.mrx-pricing-section {
  background: var(--mrx-surface);
}

.mrx-pricing-trust {
  margin-top: 16px;
  color: var(--mrx-gold);
}

.mrx-roadmap-section {
  padding: 36px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(29, 32, 37, 0.64);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.16);
}

.mrx-roadmap-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 26px;
}

.mrx-roadmap-input {
  min-height: 46px;
  border: 1px solid var(--mrx-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mrx-text);
  padding: 0 16px;
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  backdrop-filter: blur(12px);
}

.mrx-roadmap-input::placeholder {
  color: rgba(240, 237, 232, 0.32);
}

.mrx-roadmap-status {
  margin-top: 12px;
  font-size: 0.92rem;
}

.mrx-pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mrx-price-card {
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mrx-price-card.featured {
  border-color: var(--mrx-gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(212, 175, 55, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(212, 175, 55, 0.12);
}

.mrx-price-card.featured::before {
  content: "MOST COMPLETE";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mrx-gold);
  color: var(--mrx-black);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  white-space: nowrap;
}

:lang(zh-Hans) .mrx-price-card.featured::before {
  content: "最完整方案";
}

:lang(id) .mrx-price-card.featured::before {
  content: "PALING LENGKAP";
}

:lang(th) .mrx-price-card.featured::before {
  content: "ครบถ้วนที่สุด";
}

.mrx-price-card.diagnostic {
  border-color: rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.mrx-price-ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--mrx-text);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mrx-price-name {
  font-size: 22px;
  margin-bottom: 4px;
}

.mrx-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--mrx-border);
  border-bottom: 1px solid var(--mrx-border);
}

.mrx-price-number {
  font-family: "Syne", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--mrx-text);
}

.mrx-price-desc {
  margin-bottom: 24px;
}

.mrx-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
  padding: 0;
}

.mrx-price-features li::before {
  content: "—";
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mrx-package-sop {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(87, 185, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(87, 185, 255, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.012)),
    rgba(7, 10, 15, 0.78);
  background-size: 30px 30px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 46px rgba(0, 0, 0, 0.18);
}

.mrx-package-sop-head {
  max-width: 820px;
}

.mrx-package-sop-head h3 {
  margin: 8px 0 10px;
  color: var(--mrx-text);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.04;
}

.mrx-package-sop-head p {
  margin: 0;
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.65;
}

.mrx-package-sop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mrx-package-sop-card {
  min-height: 380px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(13, 16, 22, 0.78);
}

.mrx-package-sop-card.diagnostic {
  border-color: rgba(212, 175, 55, 0.22);
}

.mrx-package-sop-card.review {
  border-color: rgba(88, 214, 141, 0.2);
}

.mrx-package-sop-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  background: rgba(212, 175, 55, 0.07);
}

.mrx-package-sop-card h4 {
  margin: 0 0 6px;
  color: var(--mrx-text);
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
}

.mrx-package-sop-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mrx-package-sop-card p {
  margin: 0 0 18px;
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.62;
}

.mrx-package-sop-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.mrx-package-sop-card dt {
  margin-bottom: 4px;
  color: rgba(212, 175, 55, 0.84);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mrx-package-sop-card dd {
  margin: 0;
  color: rgba(240, 237, 232, 0.86);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mrx-pricing-note {
  text-align: center;
  margin-top: 24px;
  color: var(--mrx-subtle);
}

.mrx-trust-hero {
  padding-top: clamp(76px, 10vw, 118px);
  max-width: 960px;
}

.mrx-trust-hero .mrx-hero-actions {
  margin-top: 28px;
}

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

.mrx-company-panel {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 46%),
    rgba(8, 10, 14, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.mrx-company-panel h2 {
  margin: 0 0 14px;
  color: var(--mrx-text);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.mrx-company-panel p {
  margin: 0;
  color: var(--mrx-subtle);
  line-height: 1.68;
}

.mrx-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mrx-archive-meta span,
.mrx-archive-risk {
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.06);
  color: rgba(240, 237, 232, 0.82);
}

.mrx-archive-meta span {
  padding: 10px 12px;
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrx-archive-trust-statement,
.mrx-archive-disclaimer {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 9, 12, 0.86);
  color: rgba(244, 241, 234, 0.84);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.mrx-archive-trust-statement {
  max-width: 960px;
  margin-top: 28px;
  padding: 20px 22px;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.66;
}

.mrx-read-archive-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(201, 168, 76, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.95), rgba(4, 6, 9, 0.99));
}

.mrx-read-archive-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.55;
}

.mrx-read-archive-section > * {
  position: relative;
  z-index: 1;
}

.mrx-archive-filter-bar,
.mrx-archive-symbol-switch,
.mrx-archive-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mrx-archive-symbol-switch {
  margin-top: 24px;
}

.mrx-archive-category-bar {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mrx-archive-filter-bar button,
.mrx-archive-symbol-switch a,
.mrx-archive-category-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.026);
  color: rgba(244, 241, 234, 0.76);
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.mrx-archive-filter-bar button:hover,
.mrx-archive-filter-bar button:focus-visible,
.mrx-archive-filter-bar button.is-active,
.mrx-archive-symbol-switch a:hover,
.mrx-archive-symbol-switch a:focus-visible,
.mrx-archive-symbol-switch a.is-active,
.mrx-archive-category-bar button:hover,
.mrx-archive-category-bar button:focus-visible,
.mrx-archive-category-bar button.is-active {
  border-color: rgba(201, 168, 76, 0.46);
  background: rgba(201, 168, 76, 0.08);
  color: var(--mrx-text);
}

.mrx-archive-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mrx-archive-proof-strip article {
  padding: 18px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background:
    linear-gradient(135deg, rgba(82, 194, 122, 0.08), rgba(201, 168, 76, 0.04) 42%, rgba(255, 92, 122, 0.05)),
    rgba(8, 10, 14, 0.82);
}

.mrx-archive-proof-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  font-weight: 800;
}

.mrx-archive-proof-strip strong {
  display: block;
  color: var(--mrx-text);
  font-size: 1rem;
}

.mrx-archive-proof-strip p {
  margin: 8px 0 0;
  color: var(--mrx-subtle);
  line-height: 1.55;
}

.mrx-archive-risk {
  margin-top: 14px;
  padding: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mrx-archive-risk strong {
  color: var(--mrx-text);
  font-weight: 800;
}

.mrx-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.mrx-mission-copy,
.mrx-mission-principles,
.mrx-archive-card {
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 42%),
    rgba(8, 10, 14, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.mrx-mission-copy {
  padding: clamp(28px, 4vw, 46px);
}

.mrx-mission-note {
  margin-top: 26px;
  padding: 18px;
  border-left: 2px solid var(--mrx-gold);
  background: rgba(201, 168, 76, 0.06);
}

.mrx-mission-note strong,
.mrx-archive-result {
  color: var(--mrx-gold);
  font-weight: 800;
}

.mrx-mission-note p {
  margin: 8px 0 0;
  color: var(--mrx-subtle);
}

.mrx-mission-principles {
  display: grid;
  gap: 1px;
  background-color: rgba(201, 168, 76, 0.18);
}

.mrx-mission-principles article {
  padding: 24px;
  background: rgba(8, 10, 14, 0.94);
}

.mrx-mission-principles span,
.mrx-archive-top span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mrx-mission-principles h3,
.mrx-archive-card h3 {
  margin: 0;
  color: var(--mrx-text);
}

.mrx-mission-principles p,
.mrx-archive-card p {
  margin: 10px 0 0;
  color: var(--mrx-subtle);
  line-height: 1.62;
}

.mrx-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.mrx-archive-record-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.14);
}

.mrx-archive-record-heading span {
  color: var(--mrx-text);
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mrx-archive-record-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(244, 241, 234, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mrx-archive-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background:
    linear-gradient(180deg, rgba(14, 17, 21, 0.94), rgba(6, 8, 11, 0.97)),
    rgba(8, 10, 14, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 62px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.mrx-archive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.38;
}

.mrx-archive-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.78), rgba(84, 198, 215, 0.48), transparent);
  opacity: 0.42;
}

.mrx-archive-card > * {
  position: relative;
  z-index: 1;
}

.mrx-archive-card.is-up { border-top: 2px solid #52c27a; }
.mrx-archive-card.is-down { border-top: 2px solid #ff5c7a; }
.mrx-archive-card.is-warn { border-top: 2px solid var(--mrx-gold); }

.mrx-archive-chart {
  position: relative;
  height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    rgba(3, 5, 8, 0.72);
  background-size: 24px 24px, 24px 24px, auto;
}

.mrx-archive-sparkline svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mrx-archive-sparkline .mrx-zone,
.mrx-archive-sparkline .mrx-zone-soft {
  fill: none;
  stroke: rgba(201, 168, 76, 0.32);
  stroke-dasharray: 5 6;
  stroke-width: 1;
}

.mrx-archive-sparkline .mrx-zone-soft {
  stroke: rgba(84, 198, 215, 0.22);
}

.mrx-archive-sparkline .mrx-spark {
  fill: none;
  stroke: rgba(244, 241, 234, 0.88);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mrx-archive-sparkline circle {
  fill: var(--mrx-gold);
  stroke: rgba(5, 6, 8, 0.9);
  stroke-width: 2;
}

.mrx-archive-chart span {
  display: block;
  min-height: 10px;
  background: linear-gradient(180deg, var(--mrx-gold), rgba(201, 168, 76, 0.16));
}

.mrx-archive-card.is-up .mrx-archive-sparkline .mrx-spark {
  stroke: rgba(88, 211, 139, 0.9);
}

.mrx-archive-card.is-down .mrx-archive-sparkline .mrx-spark {
  stroke: rgba(255, 108, 128, 0.9);
}

.mrx-archive-proof {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent),
    rgba(255, 255, 255, 0.025);
}

.mrx-archive-proof span,
.mrx-archive-result span {
  display: block;
  margin-bottom: 8px;
  color: rgba(201, 168, 76, 0.92);
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mrx-archive-proof p {
  margin: 0;
}

.mrx-archive-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.mrx-archive-top strong {
  color: var(--mrx-text);
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  white-space: nowrap;
}

.mrx-archive-result {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mrx-archive-result p {
  margin: 0;
}

.mrx-archive-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.mrx-archive-card-head h3 {
  margin-top: 12px;
  font-size: clamp(1.24rem, 1.6vw, 1.52rem);
  line-height: 1.12;
}

.mrx-archive-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  background: rgba(201, 168, 76, 0.06);
  color: rgba(232, 210, 151, 0.94);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mrx-archive-clarity {
  display: grid;
  place-items: center;
  flex: 0 0 82px;
  width: 82px;
  min-height: 64px;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2);
}

.mrx-archive-clarity strong {
  color: var(--mrx-text);
  font-size: 1.45rem;
  line-height: 1;
}

.mrx-archive-clarity span {
  margin: -12px 0 0;
  color: rgba(244, 241, 234, 0.66);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.mrx-archive-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-inline: 0;
  background: transparent;
}

.mrx-archive-card-meta span {
  color: rgba(244, 241, 234, 0.72);
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrx-archive-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.mrx-archive-report-metrics span {
  min-height: 62px;
  padding: 12px;
  background: rgba(5, 7, 10, 0.9);
  color: rgba(244, 241, 234, 0.56);
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mrx-archive-report-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--mrx-text);
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.mrx-archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mrx-archive-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(84, 198, 215, 0.18);
  background: rgba(84, 198, 215, 0.045);
  color: rgba(201, 232, 238, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mrx-archive-disclaimer {
  max-width: 960px;
  margin: 28px auto 0;
  padding: 16px 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

.mrx-archive-empty-card {
  min-height: 220px;
}

.mrx-risk-disclaimer {
  max-width: 920px;
  margin: 22px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 14, 0.74);
  color: rgba(232, 236, 243, 0.7);
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
}

.mrx-risk-disclaimer strong {
  color: var(--mrx-gold);
}

.mrx-faq-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.mrx-faq-item {
  padding: 28px 32px;
}

.mrx-faq-q {
  font-size: 14px;
  margin-bottom: 12px;
}

.mrx-stats-row {
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0;
}

.mrx-stat-card {
  padding: 32px;
  text-align: center;
}

.mrx-stat-number {
  font-size: 48px;
  color: var(--mrx-gold);
  display: block;
  margin-bottom: 8px;
}

.mrx-stat-label {
  color: #b9c0c8;
}

.mrx-cta-strip {
  padding: 76px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mrx-cta-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mrx-cta-strip h2,
.mrx-cta-strip p,
.mrx-cta-actions {
  position: relative;
}

.mrx-cta-strip h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.mrx-cta-strip p {
  max-width: 480px;
  margin: 0 auto 30px;
}

.mrx-cta-actions {
  justify-content: center;
}

.mrx-footer {
  padding: 36px 48px;
  border-top: 1px solid var(--mrx-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(24, 26, 30, 0.62);
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(360px, 1.7fr) minmax(120px, 0.5fr);
  align-items: start;
  gap: 32px;
  backdrop-filter: blur(18px) saturate(125%);
}

.mrx-footer-brand {
  display: grid;
  gap: 12px;
}

.mrx-footer-copy {
  color: var(--mrx-subtle);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mrx-footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.mrx-footer-directory div {
  display: grid;
  gap: 9px;
}

.mrx-footer-directory span {
  color: var(--mrx-gold);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mrx-footer-directory a {
  color: var(--mrx-muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mrx-footer-directory a:hover,
.mrx-footer-directory a:focus-visible {
  color: var(--mrx-text);
}

.mrx-gold-rule {
  margin: 0 48px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .mrx-shell {
    --mrx-nav-offset: 168px;
    width: min(100% - 24px, 1440px);
  }

  .mrx-nav {
    top: 12px;
    width: min(100% - 24px, 1440px);
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .mrx-nav-links {
    order: 3;
    display: flex;
    width: 100%;
    gap: 8px;
    margin: 2px -4px 0;
    padding: 10px 4px 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
  }

  .mrx-nav-links::-webkit-scrollbar {
    display: none;
  }

  .mrx-nav-links li {
    flex: 0 0 auto;
  }

  .mrx-nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(5, 6, 8, 0.5);
    color: rgba(240, 237, 232, 0.78);
    white-space: nowrap;
  }

  .mrx-nav-links a:hover,
  .mrx-nav-links a:focus-visible {
    border-color: rgba(245, 215, 110, 0.46);
    color: var(--mrx-text);
  }

  .mrx-nav-cta {
    margin-left: auto;
    gap: 10px;
  }

  .mrx-hero {
    grid-template-columns: 1fr;
    padding: calc(var(--mrx-nav-offset) + 20px) 24px 46px;
    gap: 32px;
  }

  .mrx-section,
  .mrx-cta-strip {
    padding: 52px 24px;
  }

  .mrx-why-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mrx-features-grid,
  .mrx-pricing-grid,
  .mrx-package-sop-grid,
  .mrx-archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mrx-mission-grid {
    grid-template-columns: 1fr;
  }

  .mrx-section-heading-row,
  .mrx-terminal-feed,
  .mrx-flow-grid,
  .mrx-company-grid {
    grid-template-columns: 1fr;
  }

  .mrx-section-heading-row,
  .mrx-terminal-feed {
    grid-template-columns: 1fr;
  }

  .mrx-flow-arrow {
    display: none;
  }

  .mrx-archive-proof-strip {
    grid-template-columns: 1fr;
  }

  .mrx-archive-card-meta,
  .mrx-archive-report-metrics {
    grid-template-columns: 1fr;
  }

  .mrx-archive-record-heading {
    display: grid;
  }

  .mrx-faq-grid,
  .mrx-stats-row {
    grid-template-columns: 1fr;
  }

  .mrx-trust-bar {
    padding: 24px;
  }

  .mrx-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .mrx-footer-brand,
  .mrx-footer-directory {
    justify-items: center;
  }

  .mrx-gold-rule {
    margin: 0 24px;
  }
}

@media (max-width: 640px) {
  .mrx-shell {
    --mrx-nav-offset: 160px;
  }

  .mrx-nav {
    gap: 14px;
    padding: 14px 16px;
  }

  .mrx-nav-logo {
    min-width: auto;
  }

  .mrx-logo-image-wrap {
    width: 64px;
    height: 40px;
  }

  .mrx-logo-copy {
    display: none;
  }

  .mrx-nav-cta .mrx-btn-primary {
    display: none;
  }

  .mrx-nav-cta {
    gap: 8px;
  }

  .marketread-language-switcher {
    min-height: 32px;
    padding: 3px 4px;
  }

  .marketread-language-switcher label {
    display: none;
  }

  .marketread-language-switcher select {
    min-height: 26px;
    min-width: 102px;
    font-size: 9px;
  }

  .mrx-nav-links {
    gap: 7px;
  }

  .mrx-nav-links a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .mrx-features-grid,
  .mrx-pricing-grid,
  .mrx-package-sop-grid,
  .mrx-archive-grid,
  .mrx-compare-table,
  .mrx-price-row {
    grid-template-columns: 1fr;
  }

  .mrx-package-sop {
    padding: 18px;
  }

  .mrx-package-sop-card {
    min-height: 0;
    padding: 18px;
  }

  .mrx-roadmap-form {
    grid-template-columns: 1fr;
  }

  .mrx-source-strip {
    gap: 10px 18px;
  }

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

  .mrx-archive-card-head {
    display: grid;
  }

  .mrx-archive-clarity {
    width: 100%;
    min-height: 54px;
  }
}

  .command-sidebar-inner {
    align-items: stretch;
  }

  .command-portal-actions {
    justify-content: flex-start;
    margin-left: 0;
  }

  .command-hero-grid,
  .app-topbar-panel {
    grid-template-columns: 1fr;
  }

  .chart-panel,
  .learn-panel {
    grid-column: span 12;
  }
}

@media (max-width: 820px) {
  .command-sidebar-nav {
    padding-bottom: 2px;
  }

  .command-sidebar-link {
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .command-portal-search {
    display: none;
  }

  .command-profile-trigger {
    min-width: 0;
    width: 100%;
  }

  .command-hero-price-row,
  .command-hero-actions,
  .command-signal-strip,
  .command-state-grid {
    grid-template-columns: 1fr;
  }

  .app-topbar-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .chart-meta {
    justify-content: flex-start;
  }

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

  .command-preview-head,
  .command-preview-meta,
  .review-suite-position-legend {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-chart {
    height: 300px;
    min-height: 300px;
  }

  .command-preview-chart,
  .review-suite-chart {
    height: 240px;
    min-height: 240px;
  }

  .chart-overlay-layer {
    inset: 12px 12px 10px;
  }

  .chart-overlay-tag,
  .chart-overlay-live {
    max-width: calc(100% - 24px);
    font-size: 0.72rem;
  }

  .chart-overlay-tag.liquidity-above,
  .chart-overlay-live {
    right: 12px;
  }

  .chart-overlay-tag.bias,
  .chart-overlay-tag.confidence,
  .chart-overlay-tag.momentum,
  .chart-overlay-tag.liquidity-below {
    left: 12px;
  }

  .chart-overlay-tag.confidence {
    top: 56px;
  }

  .chart-overlay-tag.momentum {
    top: 100px;
  }
}

/* Auth and portal theme alignment with the editorial landing */
body.auth-page,
body.is-authenticated {
  --mrx-auth-black: #050608;
  --mrx-auth-surface: #0b0d10;
  --mrx-auth-card: #10131a;
  --mrx-auth-border: rgba(255, 255, 255, 0.07);
  --mrx-auth-gold: #c9a84c;
  --mrx-auth-gold-light: #e8c96a;
  --mrx-auth-gold-dim: rgba(201, 168, 76, 0.15);
  --mrx-auth-text: #f0ede8;
  --mrx-auth-muted: #8a8890;
  --mrx-auth-subtle: #3a3845;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(58, 96, 158, 0.09), transparent 25%),
    linear-gradient(180deg, #050608 0%, #090b0f 52%, #07080b 100%);
  color: var(--mrx-auth-text);
  font-family: "Syne", sans-serif;
}

body.auth-page::before,
body.is-authenticated::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.45;
  z-index: 0;
}

body.auth-page .page-shell,
body.is-authenticated .page-shell {
  position: relative;
  z-index: 1;
}

body.auth-page h1,
body.auth-page h2,
body.auth-page h3,
body.auth-page h4,
body.auth-page h5,
body.auth-page h6,
body.is-authenticated h1,
body.is-authenticated h2,
body.is-authenticated h3,
body.is-authenticated h4,
body.is-authenticated h5,
body.is-authenticated h6 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--mrx-auth-text);
}

body.auth-page .section-label,
body.auth-page .metric-label,
body.auth-page .auth-label,
body.auth-page .auth-mode-pill,
body.auth-page .auth-submit,
body.auth-page .auth-link-button,
body.is-authenticated .section-label,
body.is-authenticated .metric-label,
body.is-authenticated .plan-badge,
body.is-authenticated .symbol-badge,
body.is-authenticated .command-sidebar-link,
body.is-authenticated .detail-button,
body.is-authenticated .trial-button,
body.is-authenticated .auth-submit,
body.is-authenticated .settings-field,
body.is-authenticated .journey-note,
body.is-authenticated .topbar-profile-button strong {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.auth-page .page-shell {
  width: min(1380px, calc(100% - 40px));
  padding-top: 28px;
}

body.auth-page .auth-page-header {
  margin-bottom: 22px;
}

body.auth-page .auth-page-back {
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(14px);
}

body.auth-page .product-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--mrx-auth-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mrx-auth-gold);
  background: transparent;
  border-radius: 0;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

body.auth-page .product-kicker,
body.auth-page .product-subcopy {
  margin: 0;
}

body.auth-page .product-kicker {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--mrx-auth-text);
}

body.auth-page .product-subcopy {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mrx-auth-muted);
}

body.auth-page .auth-shell-page {
  width: 100%;
  gap: 2px;
  border: 1px solid var(--mrx-auth-border);
  background: var(--mrx-auth-surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

body.auth-page .auth-brand-column,
body.auth-page .auth-form-column {
  border: 0;
  border-radius: 0;
  padding: 40px 38px;
  background: transparent;
  backdrop-filter: none;
}

body.auth-page .auth-brand-column {
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(17, 20, 27, 0.98), rgba(12, 14, 19, 0.98));
  border-right: 1px solid var(--mrx-auth-border);
}

body.auth-page .auth-form-column {
  background: linear-gradient(180deg, rgba(14, 16, 22, 0.98), rgba(10, 12, 17, 0.98));
}

body.auth-page .auth-topbar {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--mrx-auth-border);
}

body.auth-page .auth-topbar h2,
body.auth-page .auth-access-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

body.auth-page .auth-brand-title {
  font-size: clamp(3rem, 5vw, 4.75rem);
  line-height: 0.95;
  max-width: 12ch;
}

body.auth-page .auth-copy,
body.auth-page .auth-demo-copy,
body.auth-page .auth-signup-copy {
  color: var(--mrx-auth-muted);
  line-height: 1.75;
}

body.auth-page .auth-brand-surface,
body.auth-page .auth-form-card,
body.auth-page .auth-demo,
body.auth-page .auth-reset-panel {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(16, 19, 26, 0.72);
  box-shadow: none;
}

body.auth-page .auth-brand-surface {
  margin-top: 26px;
  background:
    linear-gradient(180deg, rgba(14, 15, 21, 0.92), rgba(10, 11, 16, 0.96));
}

body.auth-page .auth-tab-row {
  padding: 4px;
  border-radius: 0;
  border-color: var(--mrx-auth-border);
  background: rgba(255, 255, 255, 0.02);
}

body.auth-page .auth-tab-button {
  min-height: 42px;
  border-radius: 0;
  font-size: 0.72rem;
}

body.auth-page .auth-tab-button.is-active {
  background: var(--mrx-auth-gold);
  border-color: var(--mrx-auth-gold);
  color: #050608;
}

body.auth-page .auth-input,
body.auth-page .settings-select,
body.auth-page textarea {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--mrx-auth-text);
}

body.auth-page .auth-input::placeholder,
body.auth-page textarea::placeholder {
  color: rgba(240, 237, 232, 0.34);
}

body.auth-page .auth-submit,
body.auth-page .resource-link,
body.is-authenticated .auth-submit,
body.is-authenticated .detail-button,
body.is-authenticated .trial-button {
  border-radius: 0;
  min-height: 46px;
  border: 1px solid var(--mrx-auth-gold);
  background: var(--mrx-auth-gold);
  color: #050608;
  font-size: 0.72rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

body.auth-page .auth-submit:hover,
body.auth-page .resource-link:hover,
body.is-authenticated .auth-submit:hover,
body.is-authenticated .detail-button:hover,
body.is-authenticated .trial-button:hover {
  background: var(--mrx-auth-gold-light);
  transform: translateY(-1px);
}

body.auth-page .auth-link-button,
body.is-authenticated .command-logout-button,
body.is-authenticated .command-logout-link {
  border-radius: 0;
}

body.auth-page .auth-signup-benefit,
body.auth-page .auth-surface-stat {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(255, 255, 255, 0.02);
}

body.auth-page .auth-surface-live {
  border-radius: 0;
  padding: 7px 12px;
  background: rgba(82, 194, 122, 0.06);
  border-color: rgba(82, 194, 122, 0.28);
  color: #89d4a0;
}

body.auth-page .auth-brand-proof span {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--mrx-auth-muted);
}

body.is-authenticated .page-shell {
  width: min(1440px, calc(100% - 40px));
  padding-top: 20px;
  padding-bottom: 48px;
}

body.is-authenticated .command-sidebar {
  top: 0;
}

body.is-authenticated .command-sidebar-inner {
  border: 1px solid var(--mrx-auth-border);
  border-radius: 0;
  padding: 18px 16px;
  gap: 10px;
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

body.is-authenticated .command-sidebar-brand strong {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

body.is-authenticated .command-sidebar-brand small,
body.is-authenticated .command-profile-copy span,
body.is-authenticated .command-sidebar-account p,
body.is-authenticated .app-topbar-center,
body.is-authenticated .admin-status,
body.is-authenticated .report-path,
body.is-authenticated .telegram-helper,
body.is-authenticated .journey-note,
body.is-authenticated .faq-answer,
body.is-authenticated .follow-up-card p {
  color: var(--mrx-auth-muted);
}

body.is-authenticated .command-sidebar-mark,
body.is-authenticated .command-profile-avatar {
  border-radius: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 1), rgba(108, 149, 212, 1));
}

body.is-authenticated .command-sidebar-logo-wrap {
  border-radius: 0;
  background: transparent;
}

body.is-authenticated .command-sidebar-nav {
  gap: 6px;
}

body.is-authenticated .command-sidebar-link,
body.is-authenticated .topbar-profile-button,
body.is-authenticated .plan-badge,
body.is-authenticated .symbol-badge {
  border-radius: 0;
}

body.is-authenticated .command-sidebar-link {
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--mrx-auth-border);
  color: rgba(240, 237, 232, 0.72);
  font-size: 0.68rem;
  white-space: nowrap;
}

body.is-authenticated .command-sidebar-link[href*="view=account"] {
  display: none !important;
}

body.is-authenticated .command-portal-actions {
  gap: 8px;
}

body.is-authenticated .command-sidebar-link:hover,
body.is-authenticated .command-sidebar-link.is-active {
  transform: translateY(-1px);
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.32);
  color: var(--mrx-auth-text);
}

body.is-authenticated .command-profile-trigger,
body.is-authenticated .topbar-profile-button {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--mrx-auth-border);
}

body.is-authenticated .command-profile-trigger {
  min-width: 150px;
  max-width: 190px;
}

body.is-authenticated .command-profile-copy strong,
body.is-authenticated .command-profile-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.is-authenticated .command-sidebar-account {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(9, 11, 16, 0.97);
}

body.is-authenticated .command-sidebar-plan,
body.is-authenticated .command-profile-menu-link:hover,
body.is-authenticated .command-refresh-control:hover,
body.is-authenticated .command-logout-link:hover {
  border-color: rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.05);
}

body.is-authenticated .dashboard.app-dashboard {
  gap: 20px;
}

body.lead-manager-only .command-sidebar,
body.lead-manager-only .admin-section-nav,
body.lead-manager-only #admin-section-context,
body.lead-manager-only #admin-refresh-button,
body.lead-manager-only .command-portal-actions {
  display: none !important;
}

body.lead-manager-only .dashboard.app-dashboard {
  gap: 0;
  margin-top: 0;
}

body.lead-manager-only .admin-panel {
  padding-top: 22px;
}

body.is-authenticated .panel {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(11, 13, 18, 0.78);
  box-shadow: none;
}

body.is-authenticated .panel-header h2,
body.is-authenticated .app-topbar-left h2,
body.is-authenticated .command-hero-head h2,
body.is-authenticated .command-pulse-card h3,
body.is-authenticated .review-suite-premium-card h3,
body.is-authenticated .review-suite-premium-card h4,
body.is-authenticated .support-card h3,
body.is-authenticated .billing-card h3,
body.is-authenticated .account-settings-card h3,
body.is-authenticated .telegram-card h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

body.is-authenticated .app-topbar-panel {
  grid-template-columns: 1.15fr 1fr auto;
  gap: 22px;
  margin-top: 8px;
  padding: 26px 30px;
}

body.is-authenticated .app-topbar-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

body.is-authenticated .plan-badge,
body.is-authenticated .symbol-badge {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: #dcc57d;
  font-size: 0.72rem;
}

body.is-authenticated .command-hero-main,
body.is-authenticated .command-pulse-card,
body.is-authenticated .chart-panel,
body.is-authenticated .learn-panel,
body.is-authenticated .review-suite-chart-card,
body.is-authenticated .review-suite-premium-card,
body.is-authenticated .telegram-card,
body.is-authenticated .account-settings-card,
body.is-authenticated .follow-up-card,
body.is-authenticated .support-card,
body.is-authenticated .billing-card,
body.is-authenticated .admin-card,
body.is-authenticated .chart-footer-card,
body.is-authenticated .command-state-card,
body.is-authenticated .command-signal-card {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(16, 19, 26, 0.72);
}

body.is-authenticated .command-hero-main,
body.is-authenticated .command-pulse-card {
  padding: 34px;
}

body.is-authenticated .command-hero-head h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 0.95;
}

body.is-authenticated .command-hero-subtitle,
body.is-authenticated .command-summary-copy,
body.is-authenticated .review-suite-premium-copy,
body.is-authenticated .support-card p,
body.is-authenticated .billing-card p {
  color: var(--mrx-auth-muted);
  line-height: 1.7;
}

body.is-authenticated .command-pulse-list,
body.is-authenticated .command-state-grid,
body.is-authenticated .command-signal-strip,
body.is-authenticated .account-settings-grid,
body.is-authenticated .telegram-grid,
body.is-authenticated .billing-grid,
body.is-authenticated .support-grid,
body.is-authenticated .review-suite-premium-grid {
  gap: 14px;
}

body.is-authenticated .price-chart,
body.is-authenticated .command-preview-chart,
body.is-authenticated .review-suite-chart {
  border-radius: 0;
}

body.is-authenticated .chart-shell.is-fullscreen {
  border-radius: 0;
}

body.is-authenticated .auth-input,
body.is-authenticated .settings-select,
body.is-authenticated textarea,
body.is-authenticated select {
  border-radius: 0;
  border: 1px solid var(--mrx-auth-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--mrx-auth-text);
}

body.is-authenticated .auth-input::placeholder,
body.is-authenticated textarea::placeholder {
  color: rgba(240, 237, 232, 0.3);
}

body.is-authenticated .detail-button {
  background: transparent;
  color: var(--mrx-auth-gold-light);
  border-color: rgba(201, 168, 76, 0.3);
}

body.is-authenticated .detail-button:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--mrx-auth-text);
}

body.is-authenticated .trial-button {
  background: rgba(255, 255, 255, 0.02);
  color: var(--mrx-auth-text);
  border-color: var(--mrx-auth-border);
}

body.is-authenticated .trial-button:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  body.auth-page .page-shell,
  body.is-authenticated .page-shell {
    width: min(100% - 24px, 1440px);
  }

  body.auth-page .auth-brand-column,
  body.auth-page .auth-form-column {
    padding: 28px 24px;
  }

  body.is-authenticated .command-sidebar-inner {
    padding: 14px 16px;
  }

  body.is-authenticated .app-topbar-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  body.auth-page .auth-brand-title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  body.is-authenticated .command-hero-main,
  body.is-authenticated .command-pulse-card,
  body.is-authenticated .panel {
    padding: 22px;
  }

  body.is-authenticated .command-sidebar-link {
    padding: 10px 12px;
  }
}

/* Auth page redesign based on the split access layout */
body.auth-page.auth-page-redesign {
  background: #050608;
  color: #f0ede8;
  min-height: 100vh;
  overflow: hidden;
}

body.auth-page.auth-page-redesign .auth-access-layout {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

body.auth-page.auth-page-redesign .auth-access-left,
body.auth-page.auth-page-redesign .auth-access-right {
  min-height: 100vh;
}

body.auth-page.auth-page-redesign .auth-access-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px 40px 40px;
  background: #0b0d10;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

body.auth-page.auth-page-redesign .auth-access-left::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

body.auth-page.auth-page-redesign .auth-access-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: 28px;
}

body.auth-page.auth-page-redesign .auth-access-logo-mark {
  width: 32px;
  height: 32px;
  border: 1.5px solid #c9a84c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: #c9a84c;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

body.auth-page.auth-page-redesign .auth-access-logo-image-wrap {
  width: 64px;
  height: 40px;
  border: 0;
  background: transparent;
}

body.auth-page.auth-page-redesign .auth-access-logo-mark-only {
  width: auto;
}

body.auth-page.auth-page-redesign .auth-access-logo-name {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #f0ede8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.auth-page.auth-page-redesign .auth-access-left-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  max-width: 460px;
  margin-left: auto;
  margin-right: 28px;
  width: 100%;
}

body.auth-page.auth-page-redesign .auth-access-eyebrow,
body.auth-page.auth-page-redesign .auth-access-form-eyebrow,
body.auth-page.auth-page-redesign .auth-access-label,
body.auth-page.auth-page-redesign .auth-access-tab,
body.auth-page.auth-page-redesign .auth-access-submit,
body.auth-page.auth-page-redesign .auth-access-link,
body.auth-page.auth-page-redesign .auth-access-footer a,
body.auth-page.auth-page-redesign .auth-access-live-pill,
body.auth-page.auth-page-redesign .auth-access-meta-label,
body.auth-page.auth-page-redesign .auth-access-trust-item,
body.auth-page.auth-page-redesign .auth-access-google-btn,
body.auth-page.auth-page-redesign .auth-access-or,
body.auth-page.auth-page-redesign .auth-access-status {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.auth-page.auth-page-redesign .auth-access-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 10px;
  color: #c9a84c;
  letter-spacing: 0.25em;
}

body.auth-page.auth-page-redesign .auth-access-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #c9a84c;
}

body.auth-page.auth-page-redesign .auth-access-headline {
  margin: 0 0 20px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.08;
  font-weight: 400;
  color: #f0ede8;
}

body.auth-page.auth-page-redesign .auth-access-headline em {
  font-style: italic;
  color: #c9a84c;
}

body.auth-page.auth-page-redesign .auth-access-copy,
body.auth-page.auth-page-redesign .auth-access-form-copy,
body.auth-page.auth-page-redesign .auth-access-benefit-item span {
  margin: 0;
  font-size: 14px;
  color: #8a8890;
  line-height: 1.7;
}

body.auth-page.auth-page-redesign .auth-access-copy {
  max-width: 390px;
  margin-bottom: 40px;
}

body.auth-page.auth-page-redesign .auth-access-ticker-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 22px;
  background: #10131a;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body.auth-page.auth-page-redesign .auth-access-ticker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

body.auth-page.auth-page-redesign .auth-access-ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

body.auth-page.auth-page-redesign .auth-access-ticker-pair {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f0ede8;
  letter-spacing: 0.08em;
}

body.auth-page.auth-page-redesign .auth-access-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border: 1px solid rgba(82, 194, 122, 0.25);
  background: rgba(82, 194, 122, 0.05);
  font-size: 9px;
  color: #52c27a;
  letter-spacing: 0.12em;
}

body.auth-page.auth-page-redesign .auth-access-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52c27a;
  animation: blink 1.5s infinite;
}

body.auth-page.auth-page-redesign .auth-access-ticker-price {
  margin-bottom: 16px;
  font-family: "DM Mono", monospace;
  font-size: 28px;
  font-weight: 500;
  color: #52c27a;
  letter-spacing: -0.02em;
}

body.auth-page.auth-page-redesign .auth-access-ticker-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body.auth-page.auth-page-redesign .auth-access-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.auth-page.auth-page-redesign .auth-access-meta-label {
  font-size: 9px;
  color: #3a3845;
  letter-spacing: 0.12em;
}

body.auth-page.auth-page-redesign .auth-access-meta-value {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #f0ede8;
}

body.auth-page.auth-page-redesign .auth-access-meta-value.is-bullish {
  color: #52c27a;
}

body.auth-page.auth-page-redesign .auth-access-meta-value.is-gold {
  color: #c9a84c;
}

body.auth-page.auth-page-redesign .auth-access-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

body.auth-page.auth-page-redesign .auth-access-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #8a8890;
  letter-spacing: 0.06em;
  text-transform: none;
}

body.auth-page.auth-page-redesign .auth-access-trust-dash {
  width: 14px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
}

body.auth-page.auth-page-redesign .auth-access-footer {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: 28px;
}

body.auth-page.auth-page-redesign .auth-access-footer a {
  font-size: 10px;
  color: #3a3845;
  text-decoration: none;
}

body.auth-page.auth-page-redesign .auth-access-footer a:hover {
  color: #8a8890;
}

body.auth-page.auth-page-redesign .auth-access-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 48px;
  overflow-y: auto;
}

body.auth-page.auth-page-redesign .auth-access-form-wrap {
  width: 100%;
  max-width: 440px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 28px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

body.auth-page.auth-page-redesign .auth-access-tab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 36px;
}

body.auth-page.auth-page-redesign .auth-access-tab {
  padding: 12px;
  border: 0;
  background: transparent;
  color: #8a8890;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.auth-page.auth-page-redesign .auth-access-tab.active,
body.auth-page.auth-page-redesign .auth-access-tab.is-active {
  color: #050608;
  background: #c9a84c;
}

body.auth-page.auth-page-redesign .auth-access-tab:not(.active):not(.is-active):hover {
  color: #f0ede8;
}

body.auth-page.auth-page-redesign .access-panel {
  display: block;
}

body.auth-page.auth-page-redesign .access-panel[hidden] {
  display: none !important;
}

body.auth-page.auth-page-redesign .auth-access-form-eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  color: #c9a84c;
  letter-spacing: 0.2em;
}

body.auth-page.auth-page-redesign .auth-access-form-title {
  margin: 0 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: #f0ede8;
  line-height: 1.1;
}

body.auth-page.auth-page-redesign .auth-access-form-copy {
  margin-bottom: 24px;
}

body.auth-page.auth-page-redesign .auth-access-status,
body.auth-page.auth-page-redesign .auth-access-error {
  min-height: 18px;
  margin: 0;
  color: #c9a84c;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

body.auth-page.auth-page-redesign .auth-access-status {
  margin-bottom: 18px;
}

body.auth-page.auth-page-redesign .auth-access-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  margin-bottom: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #f0ede8;
  font-size: 11px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.auth-page.auth-page-redesign .auth-access-google-btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

body.auth-page.auth-page-redesign .auth-access-google-btn.is-disabled,
body.auth-page.auth-page-redesign .auth-access-google-btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

body.auth-page.auth-page-redesign .auth-access-google-btn.is-disabled:hover,
body.auth-page.auth-page-redesign .auth-access-google-btn:disabled:hover {
  border-color: rgba(255, 255, 255, 0.07);
  background: transparent;
}

body.auth-page.auth-page-redesign .auth-access-google-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

body.auth-page.auth-page-redesign .auth-access-helper-note {
  margin: 8px 0 0;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8890;
}

body.auth-page.auth-page-redesign .auth-access-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 10px;
  color: #3a3845;
  letter-spacing: 0.15em;
}

body.auth-page.auth-page-redesign .auth-access-or::before,
body.auth-page.auth-page-redesign .auth-access-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

body.auth-page.auth-page-redesign .auth-access-form {
  display: flex;
  flex-direction: column;
}

body.auth-page.auth-page-redesign .auth-access-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

body.auth-page.auth-page-redesign .auth-access-label {
  font-size: 10px;
  color: #8a8890;
  letter-spacing: 0.15em;
}

body.auth-page.auth-page-redesign .auth-access-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #10131a;
  color: #f0ede8;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s ease;
}

body.auth-page.auth-page-redesign .auth-access-input::placeholder {
  color: #3a3845;
}

body.auth-page.auth-page-redesign .auth-access-input:focus {
  border-color: #c9a84c;
}

body.auth-page.auth-page-redesign .password-toggle-button {
  border-color: rgba(201, 168, 76, 0.28);
  background: #17120b;
  color: #c9a84c;
  font-size: 10px;
}

body.auth-page.auth-page-redesign .auth-access-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 0;
  background: #c9a84c;
  color: #050608;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

body.auth-page.auth-page-redesign .auth-access-submit:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}

body.auth-page.auth-page-redesign .auth-access-link {
  display: block;
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: #3a3845;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

body.auth-page.auth-page-redesign .auth-access-link:hover {
  color: #8a8890;
}

body.auth-page.auth-page-redesign .auth-access-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

body.auth-page.auth-page-redesign .auth-access-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #8a8890;
}

body.auth-page.auth-page-redesign .auth-access-benefit-item strong {
  color: #f0ede8;
}

body.auth-page.auth-page-redesign .auth-access-benefit-dash {
  color: #c9a84c;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 860px) {
  body.auth-page.auth-page-redesign {
    overflow: auto;
  }

  body.auth-page.auth-page-redesign .auth-access-layout {
    grid-template-columns: 1fr;
  }

  body.auth-page.auth-page-redesign .auth-access-left {
    display: none;
  }

  body.auth-page.auth-page-redesign .auth-access-right {
    min-height: 100vh;
    padding: 40px 24px;
  }

  body.auth-page.auth-page-redesign .auth-access-form-wrap {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
  }
}

body.is-authenticated .core-read-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  box-shadow: none;
}

body.is-authenticated .core-read-top-row,
body.is-authenticated .core-read-alert-row,
body.is-authenticated .core-read-detail-grid,
body.is-authenticated .core-read-intel-row {
  display: grid;
  gap: 2px;
}

body.is-authenticated .core-read-top-row,
body.is-authenticated .core-read-alert-row {
  grid-template-columns: 1fr 1fr;
}

body.is-authenticated .core-read-detail-grid,
body.is-authenticated .core-read-intel-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-authenticated .core-read-section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 2px;
}

body.is-authenticated .core-read-section-eyebrow,
body.is-authenticated .core-read-gold-ref-eyebrow,
body.is-authenticated .core-read-intel-eyebrow,
body.is-authenticated .core-read-card-label,
body.is-authenticated .core-read-gold-stat-key,
body.is-authenticated .core-read-headline-time,
body.is-authenticated .core-read-refresh-label,
body.is-authenticated .core-read-pulse-footer span,
body.is-authenticated .core-read-liq-zone-label,
body.is-authenticated .core-read-liq-zone-strength,
body.is-authenticated .core-read-tf-name,
body.is-authenticated .core-read-tf-label,
body.is-authenticated .core-read-alert-detail,
body.is-authenticated .core-read-card-sub,
body.is-authenticated .core-read-changed-desc,
body.is-authenticated .core-read-change-text,
body.is-authenticated .core-read-gold-context-text,
body.is-authenticated .core-read-live-text {
  font-family: "DM Mono", monospace;
}

body.is-authenticated .core-read-section-eyebrow,
body.is-authenticated .core-read-gold-ref-eyebrow,
body.is-authenticated .core-read-intel-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

body.is-authenticated .core-read-section-eyebrow,
body.is-authenticated .core-read-gold-ref-eyebrow {
  color: #c9a84c;
}

body.is-authenticated .core-read-section-title,
body.is-authenticated .core-read-headlines-title,
body.is-authenticated .core-read-gold-ref-title,
body.is-authenticated .core-read-alert-title,
body.is-authenticated .core-read-intel-title,
body.is-authenticated .core-read-changed-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  color: #f0ede8;
}

body.is-authenticated .core-read-section-title {
  font-size: 22px;
}

body.is-authenticated .core-read-section-title em,
body.is-authenticated .core-read-alert-title em {
  font-style: italic;
  color: #c9a84c;
}

body.is-authenticated .core-read-section-divider {
  height: 1px;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  opacity: 0.2;
}

body.is-authenticated .core-read-spacer {
  height: 20px;
}

body.is-authenticated .core-read-card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.96), rgba(11, 13, 16, 0.96));
  transition: border-color 0.22s ease;
}

body.is-authenticated .core-read-card:hover {
  border-color: rgba(255, 255, 255, 0.11);
}

body.is-authenticated .core-read-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 9px;
  color: #9ea5ae;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.is-authenticated .core-read-card-meta {
  color: #2a2c38;
}

body.is-authenticated .core-read-card-top-rule,
body.is-authenticated .core-read-intel-top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

body.is-authenticated .core-read-card-top-rule {
  height: 1px;
}

body.is-authenticated .core-read-card-top-rule.amber {
  background: linear-gradient(90deg, #e09a30, transparent);
}

body.is-authenticated .core-read-card-top-rule.red {
  background: linear-gradient(90deg, #e05252, transparent);
}

body.is-authenticated .core-read-pulse-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.is-authenticated .core-read-pulse-canvas {
  min-height: 100px;
  margin: 8px 0;
}

body.is-authenticated .core-read-pulse-svg {
  width: 100%;
  height: 80px;
}

body.is-authenticated .core-read-pulse-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated #core-read-pulse-current {
  color: #c9a84c;
}

body.is-authenticated .core-read-changed-title,
body.is-authenticated .core-read-alert-title,
body.is-authenticated .core-read-intel-title,
body.is-authenticated .core-read-gold-ref-title {
  font-size: 20px;
  margin-bottom: 8px;
}

body.is-authenticated .core-read-changed-desc,
body.is-authenticated .core-read-card-sub,
body.is-authenticated .core-read-gold-context-text {
  font-size: 11px;
  color: #a1a8b2;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

body.is-authenticated .core-read-change-items,
body.is-authenticated .core-read-alert-items,
body.is-authenticated .core-read-liq-map,
body.is-authenticated .core-read-tf-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.is-authenticated .core-read-change-item,
body.is-authenticated .core-read-alert-item,
body.is-authenticated .core-read-liq-zone,
body.is-authenticated .core-read-tf-row {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.86);
}

body.is-authenticated .core-read-change-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-left: 2px solid #7a7885;
}

body.is-authenticated .core-read-change-item.up {
  border-left-color: #52c27a;
}

body.is-authenticated .core-read-change-item.down {
  border-left-color: #e05252;
}

body.is-authenticated .core-read-change-item.watch {
  border-left-color: #c9a84c;
}

body.is-authenticated .core-read-change-dot {
  width: 6px;
  height: 6px;
  margin-top: 3px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #7a7885;
}

body.is-authenticated .core-read-change-item.up .core-read-change-dot {
  background: #52c27a;
}

body.is-authenticated .core-read-change-item.down .core-read-change-dot {
  background: #e05252;
}

body.is-authenticated .core-read-change-item.watch .core-read-change-dot {
  background: #c9a84c;
}

body.is-authenticated .core-read-change-text strong,
body.is-authenticated .core-read-alert-heading,
body.is-authenticated .core-read-headline-text,
body.is-authenticated .core-read-card-val {
  color: #f0ede8;
}

body.is-authenticated .core-read-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

body.is-authenticated .core-read-detail-card.style::before {
  background: #c9a84c;
}

body.is-authenticated .core-read-detail-card.priority::before {
  background: #e09a30;
}

body.is-authenticated .core-read-detail-card.guidance::before {
  background: #52c27a;
}

body.is-authenticated .core-read-detail-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 3px 9px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  color: #c9a84c;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .core-read-headlines-card,
body.is-authenticated .core-read-gold-reference {
  padding: 0;
  overflow: hidden;
}

body.is-authenticated .core-read-headlines-header,
body.is-authenticated .core-read-gold-ref-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.is-authenticated .core-read-headlines-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .core-read-refresh-row,
body.is-authenticated .core-read-gold-ref-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.is-authenticated .core-read-refresh-toggle {
  width: 36px;
  height: 20px;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.12);
}

body.is-authenticated .core-read-refresh-knob {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c9a84c;
}

body.is-authenticated .core-read-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(82, 194, 122, 0.25);
  background: rgba(82, 194, 122, 0.08);
}

body.is-authenticated .core-read-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52c27a;
  animation: blink 1.5s infinite;
}

body.is-authenticated .core-read-live-text {
  font-size: 9px;
  color: #52c27a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .core-read-headlines-list {
  display: flex;
  flex-direction: column;
}

body.is-authenticated .core-read-headline-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .core-read-headline-item:last-child {
  border-bottom: none;
}

body.is-authenticated .core-read-headline-text {
  font-size: 13px;
  line-height: 1.4;
}

body.is-authenticated .core-read-headline-tag,
body.is-authenticated .core-read-flow-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  white-space: nowrap;
}

body.is-authenticated .core-read-headline-tag.neutral,
body.is-authenticated .core-read-flow-tag.neut {
  color: #7a7885;
  border-color: rgba(255, 255, 255, 0.11);
}

body.is-authenticated .core-read-headline-tag.macro {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

body.is-authenticated .core-read-headline-tag.risk {
  color: #e05252;
  border-color: rgba(224, 82, 82, 0.3);
  background: rgba(224, 82, 82, 0.08);
}

body.is-authenticated .core-read-headline-tag.flow,
body.is-authenticated .core-read-flow-tag.buy {
  color: #52c27a;
  border-color: rgba(82, 194, 122, 0.3);
  background: rgba(82, 194, 122, 0.08);
}

body.is-authenticated .core-read-headline-tag.struct {
  color: #5289e0;
  border-color: rgba(82, 137, 224, 0.3);
  background: rgba(82, 137, 224, 0.08);
}

body.is-authenticated .core-read-flow-tag.sell {
  color: #e05252;
  border-color: rgba(224, 82, 82, 0.3);
  background: rgba(224, 82, 82, 0.08);
}

body.is-authenticated .core-read-flow-tag.watch {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

body.is-authenticated .core-read-alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
}

body.is-authenticated .core-read-alert-item.warn {
  border-left: 2px solid #e09a30;
  background: rgba(224, 154, 48, 0.05);
}

body.is-authenticated .core-read-alert-item.danger {
  border-left: 2px solid #e05252;
  background: rgba(224, 82, 82, 0.08);
}

body.is-authenticated .core-read-alert-item.info {
  border-left: 2px solid #5289e0;
  background: rgba(82, 137, 224, 0.06);
}

body.is-authenticated .core-read-alert-icon {
  margin-top: 1px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  flex-shrink: 0;
}

body.is-authenticated .core-read-alert-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.is-authenticated .core-read-alert-heading {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

body.is-authenticated .core-read-intel-top-rule {
  height: 2px;
}

body.is-authenticated .core-read-intel-top-rule.gold {
  background: #c9a84c;
}

body.is-authenticated .core-read-intel-eyebrow.gold {
  color: #c9a84c;
}

body.is-authenticated .core-read-intel-top-rule.amber {
  background: #e09a30;
}

body.is-authenticated .core-read-intel-eyebrow.amber {
  color: #e09a30;
}

body.is-authenticated .core-read-intel-top-rule.green {
  background: #52c27a;
}

body.is-authenticated .core-read-intel-eyebrow.green {
  color: #52c27a;
}

body.is-authenticated .core-read-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.is-authenticated .core-read-liq-zone {
  padding: 12px 14px;
}

body.is-authenticated .core-read-liq-zone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

body.is-authenticated .core-read-liq-zone.above .core-read-liq-zone-label,
body.is-authenticated .core-read-liq-zone.above .core-read-liq-zone-price {
  color: #52c27a;
}

body.is-authenticated .core-read-liq-zone.below .core-read-liq-zone-label,
body.is-authenticated .core-read-liq-zone.below .core-read-liq-zone-price {
  color: #e05252;
}

body.is-authenticated .core-read-liq-zone-price,
body.is-authenticated .core-read-gold-ref-price {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: -0.01em;
}

body.is-authenticated .core-read-liq-zone-price {
  font-size: 14px;
}

body.is-authenticated .core-read-liq-bar,
body.is-authenticated .core-read-tf-bar {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

body.is-authenticated .core-read-liq-bar-fill,
body.is-authenticated .core-read-tf-bar-fill {
  height: 100%;
}

body.is-authenticated .core-read-liq-zone.above .core-read-liq-bar-fill {
  background: #52c27a;
}

body.is-authenticated .core-read-liq-zone.below .core-read-liq-bar-fill {
  background: #e05252;
}

body.is-authenticated .core-read-tf-row {
  display: grid;
  grid-template-columns: 50px 1fr 92px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
}

body.is-authenticated .core-read-tf-label {
  text-align: right;
}

body.is-authenticated .core-read-tf-label.bull {
  color: #52c27a;
}

body.is-authenticated .core-read-tf-label.bear {
  color: #e05252;
}

body.is-authenticated .core-read-tf-label.neut {
  color: #7a7885;
}

body.is-authenticated .core-read-waiting {
  padding: 20px 0;
  text-align: center;
  color: #2a2c38;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.is-authenticated .core-read-gold-reference {
  padding: 0;
}

body.is-authenticated .core-read-gold-ref-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .core-read-gold-ref-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.is-authenticated .core-read-gold-ref-price {
  font-size: 20px;
  color: #52c27a;
}

body.is-authenticated .core-read-gold-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

body.is-authenticated .core-read-gold-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .core-read-gold-stat:last-child {
  border-right: none;
}

body.is-authenticated .core-read-gold-stat-val {
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-weight: 500;
  color: #f0ede8;
}

body.is-authenticated .core-read-gold-stat-val.green {
  color: #52c27a;
}

body.is-authenticated .core-read-gold-stat-val.gold {
  color: #c9a84c;
}

body.is-authenticated .core-read-gold-context-bar {
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.86);
}

body.is-authenticated .core-read-gold-context-text span {
  color: #f0ede8;
}

body.is-authenticated .core-read-hero-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.is-authenticated .core-read-symbol-switcher {
  margin-top: 12px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  body.is-authenticated .core-read-top-row,
  body.is-authenticated .core-read-alert-row,
  body.is-authenticated .core-read-detail-grid,
  body.is-authenticated .core-read-intel-row,
  body.is-authenticated .core-read-gold-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.is-authenticated .core-read-headline-item {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .core-read-headlines-header,
  body.is-authenticated .core-read-gold-ref-header,
  body.is-authenticated .core-read-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  body.is-authenticated .core-read-tf-row {
    grid-template-columns: 44px 1fr 78px;
  }
}

body.is-authenticated .command-center-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  box-shadow: none;
}

body.is-authenticated .command-center-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 12px;
  align-items: start;
}

body.is-authenticated .command-center-hero-card,
body.is-authenticated .command-center-side-card,
body.is-authenticated .command-center-intel-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.98), rgba(11, 13, 16, 0.98));
}

body.is-authenticated .command-center-hero-card {
  overflow: hidden;
  padding: 32px 36px 28px;
}

body.is-authenticated .command-center-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

body.is-authenticated .command-center-hero-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

body.is-authenticated .command-center-hero-eyebrow,
body.is-authenticated .command-center-chart-title,
body.is-authenticated .command-center-chart-stat-label,
body.is-authenticated .command-center-side-label,
body.is-authenticated .command-center-state-key,
body.is-authenticated .command-center-state-sub,
body.is-authenticated .command-center-meter-name,
body.is-authenticated .command-center-meter-pct,
body.is-authenticated .command-center-intel-label,
body.is-authenticated .command-center-symbol-key,
body.is-authenticated .command-center-gauge-label,
body.is-authenticated .command-center-ai-label,
body.is-authenticated .command-center-side-muted {
  font-family: "DM Mono", monospace;
}

body.is-authenticated .command-center-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 10px;
  color: #c9a84c;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  animation: pulse 2.5s infinite;
}

body.is-authenticated .command-center-hero-title {
  margin: 0 0 8px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: #f0ede8;
}

body.is-authenticated .command-center-hero-desc {
  margin: 0 0 28px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #7a7885;
  letter-spacing: 0.06em;
}

body.is-authenticated .command-center-symbol-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

body.is-authenticated .command-center-symbol-block,
body.is-authenticated .command-center-price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.is-authenticated .command-center-symbol-key {
  font-size: 9px;
  color: #7a7885;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-symbol-val {
  font-size: 15px;
  font-weight: 700;
  color: #f0ede8;
  letter-spacing: 0.06em;
}

body.is-authenticated .command-center-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
}

body.is-authenticated .command-center-price,
body.is-authenticated .command-center-gauge-value,
body.is-authenticated .command-center-intel-value {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: -0.02em;
}

body.is-authenticated .command-center-price {
  font-size: 28px;
  line-height: 1;
}

body.is-authenticated .command-center-change {
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

body.is-authenticated .command-center-symbol-switcher {
  margin-left: auto;
  justify-content: flex-end;
}

body.is-authenticated .command-center-chart-area {
  min-height: 220px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.9);
}

body.is-authenticated .command-center-chart-head,
body.is-authenticated .command-center-chart-footer,
body.is-authenticated .command-center-meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.is-authenticated .command-center-chart-head {
  margin-bottom: 16px;
}

body.is-authenticated .command-center-chart-title,
body.is-authenticated .command-center-chart-stat-label,
body.is-authenticated .command-center-side-label,
body.is-authenticated .command-center-state-key,
body.is-authenticated .command-center-state-sub,
body.is-authenticated .command-center-meter-name,
body.is-authenticated .command-center-meter-pct,
body.is-authenticated .command-center-ai-label,
body.is-authenticated .command-center-intel-label,
body.is-authenticated .command-center-side-muted {
  font-size: 9px;
  color: #7a7885;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #52c27a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #52c27a;
  animation: blink 1.5s infinite;
}

body.is-authenticated .command-center-chart-svg {
  width: 100%;
  height: 140px;
}

body.is-authenticated .command-center-chart-footer {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .command-center-chart-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.is-authenticated .command-center-chart-stat-val,
body.is-authenticated .command-center-state-val {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: #f0ede8;
}

body.is-authenticated .command-center-ai-box {
  margin-bottom: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-left: 3px solid #c9a84c;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(201, 168, 76, 0.045);
}

body.is-authenticated .command-center-ai-label {
  margin-bottom: 10px;
  font-size: 10px;
  color: #c9a84c;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-ai-text,
body.is-authenticated .command-center-intel-status {
  margin: 0;
  max-width: 116ch;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.82;
  color: #f0ede8;
  letter-spacing: 0.01em;
}

body.is-authenticated .command-center-beginner-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -8px 0 22px;
}

body.is-authenticated .command-center-beginner-box > div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(32, 40, 55, 0.88), rgba(8, 12, 18, 0.92)),
    radial-gradient(circle at 10% 0%, rgba(201, 168, 76, 0.14), transparent 38%);
}

body.is-authenticated .command-center-beginner-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-beginner-box strong {
  display: block;
  color: var(--text-primary);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.35;
}

body.is-authenticated .command-center-beginner-box p {
  margin: 9px 0 0;
  color: rgba(232, 236, 243, 0.7);
  font-size: 0.85rem;
  line-height: 1.62;
}

body.is-authenticated .command-center-action-row,
body.is-authenticated .command-center-bottom-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.is-authenticated .command-center-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.is-authenticated .command-center-side-card {
  padding: 20px;
}

body.is-authenticated .command-center-gauge {
  padding: 8px 0;
  text-align: center;
}

body.is-authenticated .command-center-gauge-wrap {
  position: relative;
  width: 120px;
  height: 70px;
  margin: 0 auto 12px;
}

body.is-authenticated .command-center-gauge-svg {
  width: 120px;
  height: 70px;
}

body.is-authenticated .command-center-gauge-value {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #c9a84c;
  line-height: 1;
}

body.is-authenticated .command-center-gauge-label {
  font-size: 10px;
  color: #7a7885;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .command-center-state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.is-authenticated .command-center-state-card {
  position: relative;
  overflow: hidden;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.86);
}

body.is-authenticated .command-center-state-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

body.is-authenticated .command-center-state-card.green::before {
  background: #52c27a;
}

body.is-authenticated .command-center-state-card.gold::before {
  background: #c9a84c;
}

body.is-authenticated .command-center-state-card.amber::before {
  background: #e09a30;
}

body.is-authenticated .command-center-state-card.red::before {
  background: #e05252;
}

body.is-authenticated .command-center-state-val {
  margin-bottom: 3px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

body.is-authenticated .command-center-quick-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.is-authenticated .command-center-quick-link {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 14px;
  font-size: 10px;
  text-decoration: none;
}

body.is-authenticated .command-center-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

body.is-authenticated .command-center-intel-card {
  overflow: hidden;
  padding: 24px;
}

body.is-authenticated .command-center-intel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

body.is-authenticated .command-center-intel-card.liq::before {
  background: linear-gradient(90deg, #c9a84c, transparent);
}

body.is-authenticated .command-center-intel-card.mom::before {
  background: linear-gradient(90deg, #e09a30, transparent);
}

body.is-authenticated .command-center-intel-card.flow::before {
  background: linear-gradient(90deg, #52c27a, transparent);
}

body.is-authenticated .command-center-intel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

body.is-authenticated .command-center-intel-card.liq .command-center-intel-label,
body.is-authenticated .command-center-intel-card.liq .command-center-intel-value {
  color: #c9a84c;
}

body.is-authenticated .command-center-intel-card.mom .command-center-intel-label,
body.is-authenticated .command-center-intel-card.mom .command-center-intel-value {
  color: #e09a30;
}

body.is-authenticated .command-center-intel-card.flow .command-center-intel-label,
body.is-authenticated .command-center-intel-card.flow .command-center-intel-value {
  color: #52c27a;
}

body.is-authenticated .command-center-intel-value {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
}

body.is-authenticated .command-center-intel-status {
  margin-bottom: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: #7a7885;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

body.is-authenticated .command-center-meter-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.is-authenticated .command-center-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.is-authenticated .command-center-meter-track {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

body.is-authenticated .command-center-meter-fill {
  position: relative;
  height: 100%;
}

body.is-authenticated .command-center-meter-fill::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 3px;
  height: 4px;
  background: inherit;
  filter: brightness(1.4);
}

body.is-authenticated .command-center-meter-fill.gold {
  background: #c9a84c;
}

body.is-authenticated .command-center-meter-fill.amber {
  background: #e09a30;
}

body.is-authenticated .command-center-meter-fill.green {
  background: #52c27a;
}

@media (max-width: 1100px) {
  body.is-authenticated .command-center-main-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .command-center-bottom-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.is-authenticated .command-center-hero-card {
    padding: 20px;
  }

  body.is-authenticated .command-center-symbol-row,
  body.is-authenticated .command-center-chart-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  body.is-authenticated .command-center-state-grid {
    grid-template-columns: 1fr;
  }
}

body.is-authenticated {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --text-primary: #f0ede8;
  --text-secondary: #bdb7c9;
  --text-muted: #7a7885;
  --success: #52c27a;
}

body.is-authenticated .review-suite-premium-panel,
body.is-authenticated .account-sync-panel {
  background: transparent;
  border: 0;
  padding: 0;
  gap: 0;
  box-shadow: none;
}

body.is-authenticated .review-suite-page-shell,
body.is-authenticated .review-suite-page-content {
  display: flex;
  flex-direction: column;
}

body.is-authenticated .review-suite-hero-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 13, 16, 0.88);
}

body.is-authenticated .review-suite-hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

body.is-authenticated .review-suite-hero-header::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

body.is-authenticated .review-suite-hero-left,
body.is-authenticated .review-suite-hero-right {
  position: relative;
  z-index: 1;
}

body.is-authenticated .review-suite-hero-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body.is-authenticated .review-suite-hero-eyebrow,
body.is-authenticated .review-suite-sec-label,
body.is-authenticated .review-suite-import-lbl,
body.is-authenticated .review-suite-hm-lbl,
body.is-authenticated .review-suite-connect-lbl,
body.is-authenticated .review-suite-status-lbl,
body.is-authenticated .review-suite-rc-label,
body.is-authenticated .review-suite-btcc-label,
body.is-authenticated .review-suite-cac-label,
body.is-authenticated .review-suite-regime-label,
body.is-authenticated .review-suite-edge-label,
body.is-authenticated .review-suite-opt-tag,
body.is-authenticated .review-suite-field-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-hero-title em,
body.is-authenticated .review-suite-sec-title em {
  color: var(--gold);
  font-style: italic;
}

body.is-authenticated .review-suite-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

body.is-authenticated .review-suite-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.is-authenticated .review-suite-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

body.is-authenticated .review-suite-meta-key {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-meta-val {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-meta-val-gold {
  color: var(--gold);
}

body.is-authenticated .review-suite-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(82, 194, 122, 0.25);
  background: rgba(82, 194, 122, 0.05);
}

body.is-authenticated .review-suite-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  animation: reviewSuiteBlink 1.5s infinite;
}

@keyframes reviewSuiteBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

body.is-authenticated .review-suite-live-text {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--success);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-hero-actions {
  display: flex;
  gap: 8px;
}

body.is-authenticated .review-suite-btn-outline,
body.is-authenticated .review-suite-btn-sm,
body.is-authenticated .review-suite-symbol-btn {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.is-authenticated .review-suite-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 10px;
  text-decoration: none;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

body.is-authenticated .review-suite-btn-outline:hover,
body.is-authenticated .review-suite-btn-outline.active {
  background: var(--gold);
  color: #050608;
  border-color: var(--gold);
}

body.is-authenticated .review-suite-page-content {
  gap: 28px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 28px 40px;
}

body.is-authenticated .review-suite-secondary-content {
  padding-top: 0;
}

body.is-authenticated .review-suite-sec-title {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 5px;
}

body.is-authenticated .review-suite-sec-desc,
body.is-authenticated .review-suite-btcc-desc,
body.is-authenticated .review-suite-cac-desc,
body.is-authenticated .review-suite-form-note,
body.is-authenticated .review-suite-readonly-note,
body.is-authenticated .review-suite-status-line {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

body.is-authenticated .review-suite-gold-rule {
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.2;
}

body.is-authenticated .review-suite-desk-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.10), rgba(10, 12, 16, 0.96) 36%),
    rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

body.is-authenticated .review-suite-desk-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 236, 243, 0.70);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.is-authenticated .review-suite-desk-nav-btn:hover {
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--gold);
  transform: translateY(-1px);
}

body.is-authenticated .review-suite-desk-nav-btn.is-active {
  border-color: rgba(201, 168, 76, 0.72);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.30), rgba(201, 168, 76, 0.06)),
    rgba(255, 255, 255, 0.05);
  color: #f7e6ad;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

body.is-authenticated .review-suite-desk-next-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

body.is-authenticated .review-suite-desk-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.035)),
    rgba(255, 255, 255, 0.025);
  color: #f0d989;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.is-authenticated .review-suite-desk-next-btn:hover {
  background: var(--gold);
  color: #050608;
  transform: translateY(-1px);
}

body.is-authenticated .review-suite-desk-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 168, 76, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006));
}

body.is-authenticated .review-suite-desk-page[hidden] {
  display: none !important;
}

body.is-authenticated .review-suite-desk-page-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}

body.is-authenticated .review-suite-desk-page-head h2 {
  margin: 4px 0 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-desk-page-head p {
  max-width: 560px;
  margin: 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

body.is-authenticated .review-suite-desk-section,
body.is-authenticated .review-suite-sync-section,
body.is-authenticated .review-suite-import-section,
body.is-authenticated .review-suite-review-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.is-authenticated .review-suite-desk-top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

body.is-authenticated .review-suite-desk-bottom,
body.is-authenticated .review-suite-sync-grid {
  display: grid;
  gap: 14px;
}

body.is-authenticated .review-suite-desk-bottom {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

body.is-authenticated .review-suite-sync-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

body.is-authenticated .review-suite-operator-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.8fr);
  gap: 16px;
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 168, 76, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

body.is-authenticated .review-suite-guide-intro {
  padding: 14px;
  border-left: 2px solid rgba(201, 168, 76, 0.84);
}

body.is-authenticated .review-suite-guide-intro h2 {
  margin: 8px 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

body.is-authenticated .review-suite-guide-intro p,
body.is-authenticated .review-suite-guide-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.68);
  line-height: 1.65;
}

body.is-authenticated .review-suite-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.is-authenticated .review-suite-guide-card {
  position: relative;
  min-height: 158px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(12, 15, 22, 0.82);
  overflow: hidden;
}

body.is-authenticated .review-suite-guide-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.95), transparent);
}

body.is-authenticated .review-suite-guide-card.is-primary {
  border-color: rgba(201, 168, 76, 0.34);
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.13), rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 22, 0.9);
}

body.is-authenticated .review-suite-guide-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(201, 168, 76, 0.9);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

body.is-authenticated .review-suite-guide-card strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 237, 232, 0.95);
  font-size: 0.92rem;
}

body.is-authenticated .review-suite-guide-card p {
  font-size: 0.78rem;
}

body.is-authenticated .review-guide-page {
  grid-column: span 12;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.is-authenticated .review-guide-hero,
body.is-authenticated .review-guide-step,
body.is-authenticated .review-guide-rules article {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(13, 17, 24, 0.94);
}

body.is-authenticated .review-guide-hero {
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 168, 76, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(20, 24, 31, 0.98), rgba(8, 11, 16, 0.98));
}

body.is-authenticated .review-guide-hero h1 {
  max-width: 780px;
  margin: 8px 0 16px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
}

body.is-authenticated .review-guide-hero p {
  max-width: 860px;
  margin: 0 0 24px;
  color: rgba(232, 236, 243, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

body.is-authenticated .review-guide-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

body.is-authenticated .review-guide-step {
  min-height: 260px;
  padding: 22px;
  border-top: 2px solid rgba(201, 168, 76, 0.36);
}

body.is-authenticated .review-guide-step.is-primary {
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.12), rgba(255, 255, 255, 0.015)),
    rgba(13, 17, 24, 0.96);
}

body.is-authenticated .review-guide-step span,
body.is-authenticated .review-guide-rules span {
  color: rgba(201, 168, 76, 0.92);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.is-authenticated .review-guide-step h2 {
  margin: 18px 0 12px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

body.is-authenticated .review-guide-step p,
body.is-authenticated .review-guide-rules p {
  color: rgba(232, 236, 243, 0.7);
  line-height: 1.65;
}

body.is-authenticated .review-guide-step strong {
  display: block;
  margin-top: 18px;
  color: rgba(245, 232, 182, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
}

body.is-authenticated .review-guide-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

body.is-authenticated .review-guide-rules article {
  padding: 22px;
}

body.is-authenticated .review-guide-rules h3 {
  margin: 14px 0 10px;
  color: var(--text-primary);
  font-size: 1.1rem;
}

body.is-authenticated .review-suite-intraday-strip {
  padding: 18px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 168, 76, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(10, 14, 20, 0.98), rgba(18, 22, 29, 0.94));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

body.is-authenticated .review-suite-intraday-strip-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

body.is-authenticated .review-suite-intraday-strip h2 {
  margin: 4px 0 0;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 400;
}

body.is-authenticated .review-suite-intraday-strip-summary {
  max-width: 900px;
  margin: 12px 0 0;
  color: rgba(232, 236, 243, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

body.is-authenticated .review-suite-beginner-battle {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

body.is-authenticated .review-suite-beginner-battle article {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(17, 22, 30, 0.95), rgba(6, 10, 16, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(201, 168, 76, 0.12), transparent 44%);
}

body.is-authenticated .review-suite-beginner-battle article:nth-child(2) {
  border-top: 2px solid rgba(255, 93, 102, 0.88);
}

body.is-authenticated .review-suite-beginner-battle article:nth-child(3) {
  border-top: 2px solid rgba(82, 194, 122, 0.88);
}

body.is-authenticated .review-suite-beginner-battle span {
  display: block;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-beginner-battle strong {
  display: block;
  margin-top: 8px;
  color: var(--text-primary);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.35;
}

body.is-authenticated .review-suite-beginner-battle p {
  margin: 8px 0 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.is-authenticated .review-suite-intraday-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 93, 102, 0.08), transparent 32%, rgba(201, 168, 76, 0.1) 50%, transparent 68%, rgba(82, 194, 122, 0.08)),
    rgba(5, 8, 13, 0.74);
}

body.is-authenticated .review-suite-intraday-map::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #ff5d66, rgba(201, 168, 76, 0.9), #52c27a);
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.28);
}

body.is-authenticated .review-suite-intraday-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.is-authenticated .review-suite-intraday-map-zone {
  position: relative;
  z-index: 1;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 21, 0.86);
}

body.is-authenticated .review-suite-intraday-map-zone::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 5px;
  background: currentColor;
  opacity: 0.72;
}

body.is-authenticated .review-suite-intraday-map-zone.is-seller {
  color: #ff5d66;
}

body.is-authenticated .review-suite-intraday-map-zone.is-spot {
  color: var(--gold);
  text-align: center;
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(201, 168, 76, 0.12);
}

body.is-authenticated .review-suite-intraday-map-zone.is-buyer {
  color: #52c27a;
  text-align: right;
}

body.is-authenticated .review-suite-intraday-map-zone span {
  display: block;
  color: rgba(232, 236, 243, 0.62);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-intraday-map-zone strong {
  display: block;
  margin-top: 10px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  font-weight: 400;
}

body.is-authenticated .review-suite-intraday-map-zone small {
  display: block;
  max-width: 24rem;
  margin-top: 8px;
  color: rgba(232, 236, 243, 0.62);
  font-size: 0.74rem;
  line-height: 1.4;
}

body.is-authenticated .review-suite-intraday-map-zone.is-buyer small {
  margin-left: auto;
}

body.is-authenticated .review-suite-intraday-map-flow {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: -4px;
}

body.is-authenticated .review-suite-intraday-map-flow span {
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(201, 168, 76, 0.36));
}

body.is-authenticated .review-suite-intraday-map p {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.is-authenticated .review-suite-nearby-reaction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-nearby-reaction div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(18, 22, 30, 0.9), rgba(7, 11, 17, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.1), transparent 45%);
}

body.is-authenticated .review-suite-nearby-reaction div:first-child {
  border-left: 3px solid rgba(255, 93, 102, 0.86);
}

body.is-authenticated .review-suite-nearby-reaction div:last-child {
  border-left: 3px solid rgba(82, 194, 122, 0.86);
}

body.is-authenticated .review-suite-nearby-reaction span {
  display: block;
  color: var(--text-secondary);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-nearby-reaction strong {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
  font-size: 1.24rem;
  line-height: 1.15;
}

body.is-authenticated .review-suite-nearby-reaction p {
  margin: 6px 0 0;
  color: rgba(232, 236, 243, 0.62);
  font-size: 0.74rem;
  line-height: 1.45;
}

body.is-authenticated .review-suite-intraday-event-tape {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-intraday-event {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(201, 168, 76, 0.7);
  background:
    linear-gradient(135deg, rgba(19, 23, 32, 0.94), rgba(7, 11, 17, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(201, 168, 76, 0.1), transparent 42%);
}

body.is-authenticated .review-suite-intraday-event.is-seller {
  border-left-color: #ff5d66;
}

body.is-authenticated .review-suite-intraday-event.is-buyer {
  border-left-color: #52c27a;
}

body.is-authenticated .review-suite-intraday-event span {
  display: block;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-intraday-event strong {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
  font-size: 0.88rem;
  line-height: 1.35;
}

body.is-authenticated .review-suite-intraday-event p {
  margin: 7px 0 0;
  color: rgba(232, 236, 243, 0.62);
  font-size: 0.76rem;
  line-height: 1.45;
}

body.is-authenticated .review-suite-intraday-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

body.is-authenticated .review-suite-intraday-zone {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 17, 0.86);
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}

body.is-authenticated .review-suite-intraday-zone.is-seller {
  border-top-color: #ff5d66;
}

body.is-authenticated .review-suite-intraday-zone.is-buyer {
  border-top-color: #52c27a;
}

body.is-authenticated .review-suite-intraday-zone.is-active {
  border-top-color: var(--gold);
}

body.is-authenticated .review-suite-intraday-zone span {
  color: var(--text-secondary);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-intraday-zone strong {
  display: block;
  margin-top: 10px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
}

body.is-authenticated .review-suite-intraday-zone p {
  margin: 8px 0 0;
  color: rgba(232, 236, 243, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

body.is-authenticated .review-suite-auction-control {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 18% 20%, rgba(82, 194, 122, 0.1), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255, 93, 102, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(10, 14, 20, 0.97), rgba(17, 20, 27, 0.94));
}

body.is-authenticated .review-suite-auction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 14px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-auction-main,
body.is-authenticated .review-suite-auction-side-panel {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 18, 0.82);
}

body.is-authenticated .review-suite-auction-main {
  padding: 16px;
}

body.is-authenticated .review-suite-auction-kicker,
body.is-authenticated .review-suite-auction-list-label,
body.is-authenticated .review-suite-auction-side span,
body.is-authenticated .review-suite-auction-balance span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.is-authenticated .review-suite-auction-main h3 {
  margin: 8px 0 0;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  font-weight: 400;
}

body.is-authenticated .review-suite-auction-main p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(232, 236, 243, 0.68);
  line-height: 1.6;
}

body.is-authenticated .review-suite-auction-battle {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(220px, 1fr) minmax(110px, 0.7fr);
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

body.is-authenticated .review-suite-auction-side {
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(16, 20, 28, 0.9);
}

body.is-authenticated .review-suite-auction-side strong {
  display: block;
  margin-top: 12px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
}

body.is-authenticated .review-suite-auction-side.is-buyer {
  border-top: 2px solid #52c27a;
}

body.is-authenticated .review-suite-auction-side.is-seller {
  border-top: 2px solid #ff5d66;
  text-align: right;
}

body.is-authenticated .review-suite-auction-track {
  position: relative;
  height: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(82, 194, 122, 0.85), rgba(201, 168, 76, 0.8), rgba(255, 93, 102, 0.85));
}

body.is-authenticated .review-suite-auction-center {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.7);
}

body.is-authenticated .review-suite-auction-needle {
  position: absolute;
  top: -5px;
  bottom: -5px;
  width: 4px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

body.is-authenticated .review-suite-auction-side-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
}

body.is-authenticated .review-suite-auction-side-panel ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

body.is-authenticated .review-suite-auction-side-panel li {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 2px solid rgba(201, 168, 76, 0.7);
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

body.is-authenticated .review-suite-card,
body.is-authenticated .review-suite-connect-card,
body.is-authenticated .review-suite-status-card,
body.is-authenticated .review-suite-import-card,
body.is-authenticated .review-suite-hm-card,
body.is-authenticated .account-review-stat {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 18, 24, 0.92);
}

body.is-authenticated .review-suite-card-top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

body.is-authenticated .review-suite-card-top-rule-gold {
  background: linear-gradient(90deg, var(--gold), transparent);
}

body.is-authenticated .review-suite-card-top-rule-blue {
  background: linear-gradient(90deg, #5289e0, transparent);
}

body.is-authenticated .review-suite-card-top-rule-amber {
  background: linear-gradient(90deg, #e09a30, transparent);
}

body.is-authenticated .review-suite-card-top-rule-neutral {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

body.is-authenticated .review-suite-card-top-rule-green {
  background: linear-gradient(90deg, rgba(82, 194, 122, 0.55), transparent);
}

body.is-authenticated .review-suite-review-chart-card,
body.is-authenticated .review-suite-liquidity-card,
body.is-authenticated .review-suite-cac-card,
body.is-authenticated .review-suite-card.review-suite-decision-console,
body.is-authenticated .review-suite-regime-card,
body.is-authenticated .review-suite-edge-card,
body.is-authenticated .review-suite-connect-card,
body.is-authenticated .review-suite-status-card,
body.is-authenticated .review-suite-import-card,
body.is-authenticated .review-suite-hm-card {
  padding: 18px;
}

body.is-authenticated .review-suite-review-chart-card {
  grid-column: 1 / span 7;
  grid-row: span 2;
}

body.is-authenticated .review-suite-liquidity-card {
  grid-column: 8 / -1;
}

body.is-authenticated .review-suite-cac-card {
  grid-column: 8 / -1;
}

body.is-authenticated .review-suite-scoreboard-card {
  grid-column: 1 / -1;
}

body.is-authenticated .review-suite-card.review-suite-decision-console {
  grid-column: 1 / -1;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .review-suite-regime-card,
body.is-authenticated .review-suite-fundamental-card,
body.is-authenticated .review-suite-edge-card {
  grid-column: span 4;
  min-height: 100%;
}

body.is-authenticated .review-suite-rc-head,
body.is-authenticated .review-suite-btcc-head,
body.is-authenticated .review-suite-import-head,
body.is-authenticated .review-suite-hm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

body.is-authenticated .review-suite-rc-title,
body.is-authenticated .review-suite-opt-title {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-symbol-btn {
  padding: 5px 12px;
  font-size: 10px;
  border: none;
  background: var(--gold);
  color: #050608;
}

body.is-authenticated .review-suite-rc-body {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .review-suite-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.is-authenticated .review-suite-rc-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.is-authenticated .review-suite-rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

body.is-authenticated .review-suite-rc-badge-on {
  color: var(--success);
  border-color: rgba(82, 194, 122, 0.3);
  background: rgba(82, 194, 122, 0.06);
}

body.is-authenticated .review-suite-rc-bd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

body.is-authenticated .review-suite-position-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
}

body.is-authenticated .review-suite-position-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
}

body.is-authenticated .review-suite-position-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

body.is-authenticated .review-suite-position-legend .is-aligned { background: var(--success); }
body.is-authenticated .review-suite-position-legend .is-caution { background: #e09a30; }
body.is-authenticated .review-suite-position-legend .is-against { background: #e05252; }

body.is-authenticated .review-suite-technical-workbench {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.12), transparent 34%),
    rgba(10, 13, 18, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

body.is-authenticated .review-suite-workbench-head,
body.is-authenticated .review-suite-workbench-toolbar,
body.is-authenticated .review-suite-workbench-status,
body.is-authenticated .review-suite-workbench-tools,
body.is-authenticated .review-suite-workbench-timeframes {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.is-authenticated .review-suite-workbench-head {
  justify-content: space-between;
  gap: 18px;
}

body.is-authenticated .review-suite-workbench-head h2 {
  margin: 4px 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-workbench-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(232, 236, 243, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

body.is-authenticated .review-suite-workbench-status span,
body.is-authenticated .review-suite-tool-button,
body.is-authenticated .review-suite-tech-timeframe {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(232, 236, 243, 0.78);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-workbench-status span {
  padding: 7px 10px;
}

body.is-authenticated .review-suite-workbench-status span:first-child {
  color: #f3dc91;
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
}

body.is-authenticated .review-suite-workbench-toolbar {
  justify-content: space-between;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

body.is-authenticated .review-suite-workbench-readout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.is-authenticated .review-suite-workbench-readout article {
  position: relative;
  min-height: 132px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 16% 0%, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
}

body.is-authenticated .review-suite-workbench-readout article::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.82), rgba(82, 194, 122, 0.32), transparent);
}

body.is-authenticated .review-suite-workbench-readout span {
  color: rgba(180, 185, 198, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-workbench-readout strong {
  display: block;
  margin: 12px 0 8px;
  color: #f5e6b6;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.12;
}

body.is-authenticated .review-suite-workbench-readout p {
  margin: 0;
  color: rgba(232, 236, 243, 0.66);
  font-size: 0.84rem;
  line-height: 1.5;
}

body.is-authenticated .review-suite-tool-button,
body.is-authenticated .review-suite-tech-timeframe {
  min-height: 34px;
  padding: 8px 12px;
  cursor: pointer;
}

body.is-authenticated .review-suite-tool-button.is-active,
body.is-authenticated .review-suite-tech-timeframe.is-active {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.16);
  color: #f7e7aa;
}

body.is-authenticated .review-suite-workbench-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

body.is-authenticated .review-suite-workbench-chart-shell {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    #07090d;
  background-size: 48px 48px;
}

body.is-authenticated .review-suite-workbench-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.is-authenticated .review-suite-workbench-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 9, 13, 0.84);
  color: rgba(232, 236, 243, 0.72);
  text-align: center;
  z-index: 3;
}

body.is-authenticated .review-suite-workbench-empty[hidden] {
  display: none !important;
}

body.is-authenticated .review-suite-workbench-trend {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 30%;
  height: 2px;
  pointer-events: none;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.88), transparent);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.42);
  z-index: 2;
}

body.is-authenticated .review-suite-workbench-trend.is-down {
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 92, 122, 0.84), transparent);
  box-shadow: 0 0 18px rgba(255, 92, 122, 0.38);
}

body.is-authenticated .review-suite-workbench-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.is-authenticated .review-suite-workbench-side-card,
body.is-authenticated .review-suite-workbench-stat-grid article,
body.is-authenticated .review-suite-workbench-levels,
body.is-authenticated .review-suite-workbench-level-list article {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 18, 24, 0.86);
}

body.is-authenticated .review-suite-workbench-side-card,
body.is-authenticated .review-suite-workbench-levels {
  padding: 16px;
}

body.is-authenticated .review-suite-workbench-side-card span,
body.is-authenticated .review-suite-workbench-stat-grid span,
body.is-authenticated .review-suite-workbench-level-list span {
  color: rgba(180, 185, 198, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-workbench-side-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 38px;
}

body.is-authenticated .review-suite-workbench-side-card p,
body.is-authenticated .review-suite-workbench-level-list p {
  margin: 0;
  color: rgba(232, 236, 243, 0.66);
  font-size: 0.83rem;
  line-height: 1.55;
}

body.is-authenticated .review-suite-workbench-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.is-authenticated .review-suite-workbench-stat-grid article {
  padding: 13px;
}

body.is-authenticated .review-suite-workbench-stat-grid strong,
body.is-authenticated .review-suite-workbench-level-list strong {
  display: block;
  margin-top: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

body.is-authenticated .review-suite-workbench-level-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-workbench-level-list.is-muted {
  opacity: 0.44;
}

body.is-authenticated .review-suite-workbench-level-list article {
  padding: 12px;
  border-left: 3px solid rgba(212, 175, 55, 0.7);
}

body.is-authenticated .review-suite-workbench-level-list article.is-seller {
  border-left-color: #ff5c7a;
}

body.is-authenticated .review-suite-workbench-level-list article.is-buyer {
  border-left-color: #52c27a;
}

body.is-authenticated .review-suite-workbench-level-list article.is-spot {
  border-left-color: var(--gold);
}

body.is-authenticated .review-suite-replay-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .review-suite-replay-head,
body.is-authenticated .review-suite-readiness-head,
body.is-authenticated .review-suite-readiness-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-authenticated .review-suite-replay-label,
body.is-authenticated .review-suite-replay-badge,
body.is-authenticated .review-suite-readiness-badge,
body.is-authenticated .review-suite-readiness-score {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-replay-label {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-replay-badge,
body.is-authenticated .review-suite-readiness-badge {
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

body.is-authenticated .review-suite-replay-title {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-replay-list {
  margin-top: 0;
}

body.is-authenticated .review-suite-decision-console {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .review-suite-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 12px;
}

body.is-authenticated .review-suite-decision-hero,
body.is-authenticated .review-suite-decision-stat,
body.is-authenticated .review-suite-decision-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .review-suite-decision-hero {
  padding: 14px 16px;
}

body.is-authenticated .review-suite-decision-kicker,
body.is-authenticated .review-suite-decision-score-label,
body.is-authenticated .review-suite-decision-stat-name,
body.is-authenticated .review-suite-decision-mini-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.is-authenticated .review-suite-decision-title {
  margin-top: 8px;
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-decision-meter {
  margin-top: 16px;
}

body.is-authenticated .review-suite-decision-scale,
body.is-authenticated .review-suite-decision-score-row,
body.is-authenticated .review-suite-decision-stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-authenticated .review-suite-decision-scale {
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.is-authenticated .review-suite-decision-track,
body.is-authenticated .review-suite-decision-stat-track {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 23, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-decision-track {
  height: 18px;
}

body.is-authenticated .review-suite-decision-fill,
body.is-authenticated .review-suite-decision-stat-fill {
  height: 100%;
}

body.is-authenticated .review-suite-decision-fill {
  background: linear-gradient(90deg, #e05252 0%, #e09a30 50%, var(--success) 100%);
}

body.is-authenticated .review-suite-decision-needle {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

body.is-authenticated .review-suite-decision-score-row {
  margin-top: 10px;
}

body.is-authenticated .review-suite-decision-score,
body.is-authenticated .review-suite-decision-stat-value {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-decision-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.is-authenticated .review-suite-decision-stat {
  padding: 12px;
}

body.is-authenticated .review-suite-decision-stat-track {
  height: 8px;
  margin-top: 10px;
}

body.is-authenticated .review-suite-decision-stat-fill.is-green {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.16));
}

body.is-authenticated .review-suite-decision-stat-fill.is-red {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.16));
}

body.is-authenticated .review-suite-decision-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

body.is-authenticated .review-suite-decision-mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 12px;
}

body.is-authenticated .review-suite-decision-mini-value {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.is-authenticated .review-suite-desk-heatmap-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .review-suite-desk-heatmap-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 12px;
  min-height: 260px;
}

body.is-authenticated .review-suite-desk-heatmap-grid,
body.is-authenticated .review-suite-desk-heatmap-profile {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .review-suite-desk-heatmap-grid {
  display: grid;
  gap: 2px;
  padding: 10px;
}

body.is-authenticated .review-suite-desk-heatmap-cell {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.02);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.is-authenticated .review-suite-desk-heatmap-cell.is-decision {
  box-shadow: inset 0 0 0 1px rgba(208, 170, 84, 0.18);
}

body.is-authenticated .review-suite-desk-heatmap-cell.is-live {
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(91, 226, 151, 0.22);
}

body.is-authenticated .review-suite-desk-heatmap-cell.is-live.is-down {
  box-shadow: 0 0 10px rgba(255, 98, 98, 0.24);
}

body.is-authenticated .review-suite-desk-heatmap-cell.is-live.is-hot {
  animation: reviewDeskHeatmapPulse 1.2s ease-in-out infinite;
}

body.is-authenticated .review-suite-desk-heatmap-cell.is-live.is-hot.is-down {
  animation-name: reviewDeskHeatmapPulseDown;
}

body.is-authenticated .review-suite-desk-heatmap-profile {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 2px;
  padding: 10px 8px;
}

body.is-authenticated .review-suite-desk-profile-row {
  display: flex;
  justify-content: flex-end;
  min-height: 0;
}

body.is-authenticated .review-suite-desk-profile-bar {
  height: 100%;
  min-height: 8px;
  background: linear-gradient(90deg, rgba(115, 66, 213, 0.45), rgba(189, 111, 255, 0.82));
}

body.is-authenticated .review-suite-desk-heatmap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.is-authenticated .review-suite-desk-heatmap-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.is-authenticated .review-suite-desk-heatmap-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 1px;
}

body.is-authenticated .review-suite-desk-heatmap-legend .is-gold {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.28));
}

body.is-authenticated .review-suite-desk-heatmap-legend .is-green {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.24));
}

body.is-authenticated .review-suite-desk-heatmap-legend .is-red {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.24));
}

body.is-authenticated .review-suite-desk-heatmap-legend .is-blue {
  background: linear-gradient(90deg, #5289e0, rgba(82, 137, 224, 0.24));
}

body.is-authenticated .review-suite-desk-heatmap-summary {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(208, 170, 84, 0.18);
  background: rgba(208, 170, 84, 0.06);
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.65;
}

body.is-authenticated .review-suite-desk-heatmap-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

body.is-authenticated .review-suite-desk-heatmap-notes li {
  position: relative;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.7;
}

body.is-authenticated .review-suite-desk-heatmap-notes li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(208, 170, 84, 0.55);
}

body.is-authenticated .review-suite-desk-flow {
  margin-top: 2px;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 168, 76, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

body.is-authenticated .review-suite-desk-flow-head,
body.is-authenticated .review-suite-desk-flow-card {
  display: flex;
}

body.is-authenticated .review-suite-desk-flow-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.is-authenticated .review-suite-desk-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.is-authenticated .review-suite-desk-flow-card {
  position: relative;
  min-height: 146px;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid rgba(201, 168, 76, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(7, 11, 17, 0.88);
}

body.is-authenticated .review-suite-desk-flow-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.18;
}

body.is-authenticated .review-suite-desk-flow-card.is-primary {
  color: var(--gold);
}

body.is-authenticated .review-suite-desk-flow-card.is-seller {
  color: #ff5d66;
  border-top-color: rgba(255, 93, 102, 0.74);
}

body.is-authenticated .review-suite-desk-flow-card.is-buyer {
  color: #52c27a;
  border-top-color: rgba(82, 194, 122, 0.74);
}

body.is-authenticated .review-suite-desk-flow-card.is-caution {
  color: #e09a30;
  border-top-color: rgba(224, 154, 48, 0.74);
}

body.is-authenticated .review-suite-desk-flow-step {
  width: max-content;
  padding: 3px 7px;
  border: 1px solid currentColor;
  background: color-mix(in srgb, currentColor 10%, transparent);
  color: currentColor;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

body.is-authenticated .review-suite-desk-flow-card strong {
  color: var(--text-primary);
  font-size: 0.94rem;
  line-height: 1.35;
}

body.is-authenticated .review-suite-desk-flow-card p {
  margin: 0;
  color: rgba(232, 236, 243, 0.66);
  font-size: 0.78rem;
  line-height: 1.55;
}

@keyframes reviewDeskHeatmapPulse {
  0%,
  100% {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(91, 226, 151, 0.26);
  }
  50% {
    transform: scale(1.22);
    box-shadow: 0 0 18px rgba(91, 226, 151, 0.48);
  }
}

@keyframes reviewDeskHeatmapPulseDown {
  0%,
  100% {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(255, 98, 98, 0.28);
  }
  50% {
    transform: scale(1.22);
    box-shadow: 0 0 18px rgba(255, 98, 98, 0.52);
  }
}

body.is-authenticated .review-suite-btcc-tag,
body.is-authenticated .account-sync-pill {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-btcc-title,
body.is-authenticated .review-suite-conn-title,
body.is-authenticated .review-suite-import-title,
body.is-authenticated .review-suite-edge-title,
body.is-authenticated .review-suite-no-pos-title {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-btcc-grid,
body.is-authenticated .account-sync-mini-grid,
body.is-authenticated .conn-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

body.is-authenticated .review-suite-liquidity-ladder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-level-map {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(6, 9, 14, 0.1)),
    rgba(13, 17, 25, 0.96);
}

body.is-authenticated .review-suite-level-map-head,
body.is-authenticated .review-suite-level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.is-authenticated .review-suite-level-map-summary {
  margin: 10px 0 0;
  color: rgba(232, 236, 243, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.is-authenticated .review-suite-level-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-level-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 11, 17, 0.92);
  padding: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-level-card.is-seller {
  border-left-color: #ff5d66;
}

body.is-authenticated .review-suite-level-card.is-buyer {
  border-left-color: #52c27a;
}

body.is-authenticated .review-suite-level-side,
body.is-authenticated .review-suite-level-strength {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-level-side {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-level-strength {
  color: var(--gold);
}

body.is-authenticated .review-suite-level-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text-primary);
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

body.is-authenticated .review-suite-level-meter {
  height: 7px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

body.is-authenticated .review-suite-level-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
}

body.is-authenticated .review-suite-level-card.is-seller .review-suite-level-meter span {
  background: linear-gradient(90deg, #ff5d66, rgba(255, 93, 102, 0.16));
}

body.is-authenticated .review-suite-level-card.is-buyer .review-suite-level-meter span {
  background: linear-gradient(90deg, #52c27a, rgba(82, 194, 122, 0.16));
}

body.is-authenticated .review-suite-level-card p,
body.is-authenticated .review-suite-level-card small {
  display: block;
  margin: 10px 0 0;
  color: rgba(232, 236, 243, 0.62);
  font-size: 0.72rem;
  line-height: 1.5;
}

body.is-authenticated .review-suite-level-card small {
  color: rgba(232, 236, 243, 0.46);
}

body.is-authenticated .review-suite-liquidity-row {
  display: grid;
  grid-template-columns: 118px 1fr 84px;
  align-items: center;
  gap: 10px;
}

body.is-authenticated .review-suite-liquidity-label,
body.is-authenticated .review-suite-liquidity-value,
body.is-authenticated .review-suite-scenario-name,
body.is-authenticated .review-suite-scenario-score {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-liquidity-label,
body.is-authenticated .review-suite-liquidity-value {
  color: var(--text-muted);
}

body.is-authenticated .review-suite-liquidity-track {
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 23, 32, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-liquidity-fill {
  height: 100%;
  width: 20%;
}

body.is-authenticated .review-suite-liquidity-fill.is-above {
  background: linear-gradient(90deg, #5289e0, rgba(82, 137, 224, 0.25));
}

body.is-authenticated .review-suite-liquidity-fill.is-mid {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.25));
}

body.is-authenticated .review-suite-liquidity-fill.is-below {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.25));
}

body.is-authenticated .review-suite-heatmap-visual,
body.is-authenticated .review-suite-orderflow-shell {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .review-suite-heatmap-head,
body.is-authenticated .review-suite-orderflow-head,
body.is-authenticated .review-suite-heatmap-cell-head,
body.is-authenticated .review-suite-orderflow-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.is-authenticated .review-suite-heatmap-label,
body.is-authenticated .review-suite-heatmap-note,
body.is-authenticated .review-suite-heatmap-cell-label,
body.is-authenticated .review-suite-heatmap-cell-score,
body.is-authenticated .review-suite-orderflow-name,
body.is-authenticated .review-suite-orderflow-score {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-heatmap-label,
body.is-authenticated .review-suite-heatmap-cell-label,
body.is-authenticated .review-suite-orderflow-name {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-heatmap-note,
body.is-authenticated .review-suite-heatmap-cell-score,
body.is-authenticated .review-suite-orderflow-score {
  color: var(--gold);
}

body.is-authenticated .review-suite-heatmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-heatmap-cell,
body.is-authenticated .review-suite-orderflow-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 13, 20, 0.9);
  padding: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

body.is-authenticated .review-suite-heatmap-cell.is-blue {
  border-left-color: #5289e0;
}

body.is-authenticated .review-suite-heatmap-cell.is-blue-soft {
  border-left-color: rgba(82, 137, 224, 0.55);
}

body.is-authenticated .review-suite-heatmap-cell.is-gold {
  border-left-color: var(--gold);
}

body.is-authenticated .review-suite-heatmap-cell.is-green-soft {
  border-left-color: rgba(82, 194, 122, 0.55);
}

body.is-authenticated .review-suite-heatmap-cell.is-green {
  border-left-color: var(--success);
}

body.is-authenticated .review-suite-heatmap-cell.is-neutral {
  border-left-color: rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-heatmap-cell-fill,
body.is-authenticated .review-suite-orderflow-bar {
  height: 10px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 23, 32, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-heatmap-cell-glow,
body.is-authenticated .review-suite-orderflow-fill {
  height: 100%;
}

body.is-authenticated .review-suite-heatmap-cell.is-blue .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, #5289e0, rgba(82, 137, 224, 0.15));
}

body.is-authenticated .review-suite-heatmap-cell.is-blue-soft .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, rgba(82, 137, 224, 0.82), rgba(82, 137, 224, 0.12));
}

body.is-authenticated .review-suite-heatmap-cell.is-gold .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.18));
}

body.is-authenticated .review-suite-heatmap-cell.is-green-soft .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, rgba(82, 194, 122, 0.82), rgba(82, 194, 122, 0.12));
}

body.is-authenticated .review-suite-heatmap-cell.is-green .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.18));
}

body.is-authenticated .review-suite-heatmap-cell.is-neutral .review-suite-heatmap-cell-glow {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
}

body.is-authenticated .review-suite-heatmap-cell-copy,
body.is-authenticated .review-suite-orderflow-summary,
body.is-authenticated .review-suite-orderflow-copy {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

body.is-authenticated .review-suite-orderflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

body.is-authenticated .review-suite-orderflow-card.is-green {
  border-left-color: var(--success);
}

body.is-authenticated .review-suite-orderflow-card.is-red {
  border-left-color: #e05252;
}

body.is-authenticated .review-suite-orderflow-card.is-amber {
  border-left-color: #e09a30;
}

body.is-authenticated .review-suite-orderflow-card.is-neutral {
  border-left-color: rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-orderflow-fill.is-buy {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.15));
}

body.is-authenticated .review-suite-orderflow-fill.is-sell {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.15));
}

body.is-authenticated .review-suite-orderflow-fill.is-absorb {
  background: linear-gradient(90deg, #e09a30, rgba(224, 154, 48, 0.15));
}

body.is-authenticated .review-suite-orderflow-fill.is-risk {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
}

body.is-authenticated .review-suite-btcc-stat,
body.is-authenticated .account-sync-mini-stat {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.is-authenticated .review-suite-btcc-sk,
body.is-authenticated .review-suite-conn-hl,
body.is-authenticated .review-suite-hm-li,
body.is-authenticated .review-suite-cac-row,
body.is-authenticated .review-suite-regime-label,
body.is-authenticated .review-suite-no-pos-lbl {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-btcc-sv,
body.is-authenticated .account-sync-mini-stat h3 {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-cac-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.is-authenticated .review-suite-cac-val,
body.is-authenticated .review-suite-regime-val {
  font-family: "DM Mono", monospace;
  font-size: 22px;
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-readiness-score {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-cac-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

body.is-authenticated .review-suite-cac-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), #e09a30);
}

body.is-authenticated .review-suite-readiness-meter {
  background: linear-gradient(90deg, var(--success), #7be0a2);
}

body.is-authenticated .review-suite-cac-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.is-authenticated .review-suite-cac-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .review-suite-regime-desc,
body.is-authenticated .review-suite-no-pos-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

body.is-authenticated .review-suite-edge-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.is-authenticated .review-suite-edge-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid var(--gold);
  background: rgba(19, 23, 32, 0.95);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

body.is-authenticated .review-suite-edge-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}

body.is-authenticated .review-suite-scenarios {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

body.is-authenticated .review-suite-scenario-board {
  display: grid;
  gap: 12px;
}

body.is-authenticated .review-suite-scenario-base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.is-authenticated .review-suite-scenario-node {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  padding: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

body.is-authenticated .review-suite-scenario-node.is-lead {
  width: min(100%, 72%);
  justify-self: center;
  padding: 14px 16px;
}

body.is-authenticated .review-suite-scenario-node.is-gold {
  border-left-color: var(--gold);
}

body.is-authenticated .review-suite-scenario-node.is-amber {
  border-left-color: #e09a30;
}

body.is-authenticated .review-suite-scenario-node.is-red {
  border-left-color: #e05252;
}

body.is-authenticated .review-suite-scenario-rank {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-scenario-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

body.is-authenticated .review-suite-scenario-name {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-scenario-score {
  color: var(--gold);
}

body.is-authenticated .review-suite-scenario-meter {
  height: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 23, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-scenario-fill {
  height: 100%;
}

body.is-authenticated .review-suite-scenario-fill.is-gold {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.18));
}

body.is-authenticated .review-suite-scenario-fill.is-amber {
  background: linear-gradient(90deg, #e09a30, rgba(224, 154, 48, 0.18));
}

body.is-authenticated .review-suite-scenario-fill.is-red {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.18));
}

body.is-authenticated .review-suite-scenario-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

body.is-authenticated .review-suite-scenario-stack {
  display: flex;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 23, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-scenario-stack-segment {
  height: 100%;
}

body.is-authenticated .review-suite-scenario-stack-segment.is-gold {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.22));
}

body.is-authenticated .review-suite-scenario-stack-segment.is-amber {
  background: linear-gradient(90deg, #e09a30, rgba(224, 154, 48, 0.22));
}

body.is-authenticated .review-suite-scenario-stack-segment.is-red {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.22));
}

body.is-authenticated .review-suite-watch-section {
  margin-top: 0;
}

body.is-authenticated .review-suite-watch-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.is-authenticated .review-suite-import-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  grid-template-areas:
    "import heatmap"
    "import coach";
  align-items: start;
  gap: 14px;
}

body.is-authenticated .review-suite-import-card {
  grid-area: import;
}

body.is-authenticated .review-suite-hm-card {
  grid-area: heatmap;
}

body.is-authenticated .review-suite-coach-card {
  grid-area: coach;
}

body.is-authenticated .review-suite-scoreboard-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.is-authenticated .review-suite-scoreboard-head,
body.is-authenticated .review-suite-score-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-authenticated .review-suite-scoreboard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body.is-authenticated .review-suite-score-tile {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  padding: 14px 12px 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

body.is-authenticated .review-suite-score-tile.is-strong {
  border-top-color: var(--gold);
}

body.is-authenticated .review-suite-score-tile.is-watch {
  border-top-color: #e09a30;
}

body.is-authenticated .review-suite-score-tile.is-soft {
  border-top-color: rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-score-tile-name,
body.is-authenticated .review-suite-score-tile-value {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-score-tile-name {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-score-tile-value {
  color: var(--gold);
}

body.is-authenticated .review-suite-score-tile-gauge {
  --gauge-color: var(--gold);
  --score-angle: 0deg;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 13, 18, 0.94) 0 56%, transparent 57%),
    conic-gradient(from -90deg, var(--gauge-color) 0deg var(--score-angle), rgba(255, 255, 255, 0.08) var(--score-angle) 360deg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 24px rgba(255, 255, 255, 0.02);
}

body.is-authenticated .review-suite-score-tile-gauge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

body.is-authenticated .review-suite-score-tile-gauge::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

body.is-authenticated .review-suite-score-tile-gauge.is-gold {
  --gauge-color: var(--gold);
}

body.is-authenticated .review-suite-score-tile-gauge.is-green {
  --gauge-color: var(--success);
}

body.is-authenticated .review-suite-score-tile-gauge.is-blue {
  --gauge-color: #6e9dff;
}

body.is-authenticated .review-suite-score-tile-gauge.is-amber {
  --gauge-color: #e09a30;
}

body.is-authenticated .review-suite-score-tile-gauge.is-neutral {
  --gauge-color: #c4cad6;
}

body.is-authenticated .review-suite-score-tile-gauge-inner {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.7), rgba(246, 247, 249, 0.95) 45%, rgba(220, 224, 231, 0.96) 100%);
  box-shadow:
    inset 0 -4px 8px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

body.is-authenticated .review-suite-score-tile-gauge-score {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  line-height: 1;
  color: #252932;
}

body.is-authenticated .review-suite-score-tile-gauge-unit {
  margin-top: 2px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(37, 41, 50, 0.72);
}

body.is-authenticated .review-suite-score-tile-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

body.is-authenticated .review-suite-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

body.is-authenticated .review-suite-macro-visual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.is-authenticated .review-suite-visual-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  padding: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

body.is-authenticated .review-suite-visual-card.is-strong {
  border-left-color: var(--gold);
}

body.is-authenticated .review-suite-visual-card.is-watch {
  border-left-color: #e09a30;
}

body.is-authenticated .review-suite-visual-card.is-soft {
  border-left-color: rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-visual-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.is-authenticated .review-suite-visual-name,
body.is-authenticated .review-suite-visual-value {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-visual-name {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-visual-value {
  color: var(--gold);
}

body.is-authenticated .review-suite-visual-meter {
  height: 9px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 18, 0.95);
  overflow: hidden;
}

body.is-authenticated .review-suite-visual-fill {
  height: 100%;
}

body.is-authenticated .review-suite-visual-fill.is-green {
  background: linear-gradient(90deg, var(--success), rgba(82, 194, 122, 0.15));
}

body.is-authenticated .review-suite-visual-fill.is-amber {
  background: linear-gradient(90deg, #e09a30, rgba(224, 154, 48, 0.15));
}

body.is-authenticated .review-suite-visual-fill.is-red {
  background: linear-gradient(90deg, #e05252, rgba(224, 82, 82, 0.15));
}

body.is-authenticated .review-suite-visual-fill.is-neutral {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
}

body.is-authenticated .review-suite-visual-fill.is-gold {
  background: linear-gradient(90deg, var(--gold), rgba(208, 170, 84, 0.15));
}

body.is-authenticated .review-suite-visual-fill.is-blue {
  background: linear-gradient(90deg, #5289e0, rgba(82, 137, 224, 0.15));
}

body.is-authenticated .review-suite-watch-head,
body.is-authenticated .review-suite-watch-lane-head,
body.is-authenticated .review-suite-watch-factor-head,
body.is-authenticated .review-suite-watch-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.is-authenticated .review-suite-watch-grid,
body.is-authenticated .review-suite-watch-factor-grid {
  display: grid;
  gap: 12px;
}

body.is-authenticated .review-suite-watch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-authenticated .review-suite-watch-factor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.is-authenticated .review-suite-watch-lane,
body.is-authenticated .review-suite-watch-factor-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  padding: 12px;
}

body.is-authenticated .review-suite-watch-lane {
  border-left: 2px solid rgba(255, 255, 255, 0.14);
}

body.is-authenticated .review-suite-watch-lane.is-gold,
body.is-authenticated .review-suite-watch-factor-card.is-gold {
  border-left-color: var(--gold);
}

body.is-authenticated .review-suite-watch-lane.is-amber,
body.is-authenticated .review-suite-watch-factor-card.is-amber {
  border-left-color: #e09a30;
}

body.is-authenticated .review-suite-watch-lane.is-neutral,
body.is-authenticated .review-suite-watch-factor-card.is-neutral {
  border-left-color: rgba(255, 255, 255, 0.16);
}

body.is-authenticated .review-suite-watch-lane-label,
body.is-authenticated .review-suite-watch-lane-time,
body.is-authenticated .review-suite-watch-factor-name,
body.is-authenticated .review-suite-watch-factor-score {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-authenticated .review-suite-watch-lane-label,
body.is-authenticated .review-suite-watch-factor-name {
  color: var(--text-secondary);
}

body.is-authenticated .review-suite-watch-lane-time,
body.is-authenticated .review-suite-watch-factor-score {
  color: var(--gold);
}

body.is-authenticated .review-suite-watch-lane-title {
  margin-top: 8px;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  color: var(--text-primary);
}

body.is-authenticated .review-suite-watch-lane-copy,
body.is-authenticated .review-suite-watch-factor-copy {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

body.is-authenticated .review-suite-watchlist-meter {
  background: linear-gradient(90deg, #5289e0, var(--gold));
}

body.is-authenticated .review-suite-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.is-authenticated .review-suite-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

body.is-authenticated .review-suite-field-tight {
  margin-bottom: 10px;
}

body.is-authenticated .review-suite-field-input,
body.is-authenticated .review-suite-field-select,
body.is-authenticated .review-suite-field-textarea {
  width: 100%;
  outline: none;
  color: var(--text-primary);
  background: rgba(19, 23, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  transition: border-color 0.2s ease;
}

body.is-authenticated .review-suite-field-input,
body.is-authenticated .review-suite-field-select {
  padding: 11px 14px;
}

body.is-authenticated .review-suite-field-textarea {
  min-height: 110px;
  resize: vertical;
  padding: 14px;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

body.is-authenticated .review-suite-field-input:focus,
body.is-authenticated .review-suite-field-select:focus,
body.is-authenticated .review-suite-field-textarea:focus {
  border-color: var(--gold);
}

body.is-authenticated .review-suite-field-input::placeholder,
body.is-authenticated .review-suite-field-textarea::placeholder {
  color: rgba(122, 120, 133, 0.6);
}

body.is-authenticated .review-suite-field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7885'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

body.is-authenticated .review-suite-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: none;
  background: var(--gold);
  color: #050608;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

body.is-authenticated .review-suite-submit-btn:hover,
body.is-authenticated .review-suite-symbol-btn:hover {
  background: var(--gold-light);
  color: #050608;
  transform: translateY(-1px);
}

body.is-authenticated .review-suite-conn-health {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

body.is-authenticated .review-suite-status-card .account-health-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

body.is-authenticated .review-suite-conn-sub,
body.is-authenticated .review-suite-conn-meta {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--text-muted);
}

body.is-authenticated .account-sync-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

body.is-authenticated .account-sync-mini-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

body.is-authenticated .review-suite-import-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.is-authenticated .review-suite-btn-sm {
  padding: 7px 14px;
  font-size: 9px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

body.is-authenticated .review-suite-btn-sm:hover {
  background: rgba(201, 168, 76, 0.12);
}

body.is-authenticated .review-suite-import-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 14px;
}

body.is-authenticated .review-suite-import-opt {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.is-authenticated .review-suite-import-opt:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

body.is-authenticated .review-suite-import-opt.sel {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

body.is-authenticated .review-suite-opt-desc {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}

body.is-authenticated .review-suite-readonly-note {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  text-transform: uppercase;
}

body.is-authenticated .review-suite-pos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

body.is-authenticated .account-review-stat {
  padding: 18px 16px;
  overflow: hidden;
}

body.is-authenticated .account-review-stat h3 {
  font-family: "DM Serif Display", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}

body.is-authenticated .account-review-stat p:last-child {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

body.is-authenticated .review-suite-hm-card {
  padding: 20px;
}

body.is-authenticated .review-suite-coach-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

body.is-authenticated .account-trade-coach-grid {
  margin-top: 2px;
}

body.is-authenticated .review-suite-hm-legend {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.is-authenticated .review-suite-hm-li {
  display: flex;
  align-items: center;
  gap: 5px;
}

body.is-authenticated .review-suite-hm-ld {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

body.is-authenticated .review-suite-hm-ld-green { background: var(--success); }
body.is-authenticated .review-suite-hm-ld-amber { background: #e09a30; }
body.is-authenticated .review-suite-hm-ld-red { background: #e05252; }

body.is-authenticated .account-review-visual {
  margin: 12px 0 18px;
  background: transparent;
}

body.is-authenticated .positions-list.review-suite-no-pos-wrap,
body.is-authenticated .positions-list {
  display: block;
}

body.is-authenticated .review-suite-no-pos,
body.is-authenticated .positions-list .position-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 40px 28px;
  border: 1px dashed rgba(255, 255, 255, 0.07);
  background: rgba(15, 18, 24, 0.92);
}

body.is-authenticated .review-suite-no-pos-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 20px;
}

body.is-authenticated .positions-list .position-card h3,
body.is-authenticated .positions-list .position-card p {
  max-width: 480px;
}

@media (max-width: 1180px) {
  body.is-authenticated .review-suite-desk-top {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-operator-guide {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-guide-flow,
  body.is-authenticated .review-guide-rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-authenticated .review-suite-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.is-authenticated .review-suite-review-chart-card,
  body.is-authenticated .review-suite-liquidity-card,
  body.is-authenticated .review-suite-cac-card {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  body.is-authenticated .review-suite-import-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "import"
      "heatmap"
      "coach";
  }
}

@media (max-width: 960px) {
  body.is-authenticated .review-suite-page-content {
    padding: 18px 18px 30px;
  }

  body.is-authenticated .review-suite-desk-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
  }

  body.is-authenticated .review-suite-desk-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.is-authenticated .review-suite-desk-bottom,
  body.is-authenticated .review-suite-sync-grid,
  body.is-authenticated .review-suite-import-opts,
  body.is-authenticated .review-suite-pos-row {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-scoreboard-card,
  body.is-authenticated .review-suite-regime-card,
  body.is-authenticated .review-suite-fundamental-card,
  body.is-authenticated .review-suite-edge-card {
    grid-column: 1 / -1;
  }

  body.is-authenticated .review-suite-watch-grid,
  body.is-authenticated .review-suite-watch-factor-grid,
  body.is-authenticated .review-suite-level-grid,
  body.is-authenticated .review-suite-orderflow-grid,
  body.is-authenticated .review-suite-desk-flow-grid,
  body.is-authenticated .review-suite-scoreboard-grid,
  body.is-authenticated .review-suite-visual-grid,
  body.is-authenticated .review-suite-macro-visual-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-authenticated .account-sync-mini-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-decision-grid,
  body.is-authenticated .review-suite-decision-mini-grid,
  body.is-authenticated .review-suite-desk-heatmap-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.is-authenticated .review-suite-desk-nav {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-desk-next-row {
    justify-content: stretch;
  }

  body.is-authenticated .review-suite-desk-next-btn {
    width: 100%;
  }

  body.is-authenticated .review-suite-desk-page {
    padding: 14px;
  }

  body.is-authenticated .review-suite-guide-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-guide-flow,
  body.is-authenticated .review-guide-rules {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-intraday-strip-head {
    flex-direction: column;
  }

  body.is-authenticated .review-suite-intraday-strip-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-nearby-reaction {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-intraday-event-tape {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-intraday-map {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-intraday-map-zone,
  body.is-authenticated .review-suite-intraday-map-zone.is-buyer,
  body.is-authenticated .review-suite-intraday-map-zone.is-spot {
    min-height: 96px;
    text-align: left;
    transform: none;
  }

  body.is-authenticated .review-suite-intraday-map-zone.is-buyer small {
    margin-left: 0;
  }

  body.is-authenticated .review-suite-auction-grid,
  body.is-authenticated .review-suite-auction-battle,
  body.is-authenticated .review-suite-auction-side-panel {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-auction-side.is-seller {
    text-align: left;
  }

  body.is-authenticated .review-suite-scenario-base,
  body.is-authenticated .review-suite-heatmap-grid,
  body.is-authenticated .review-suite-watch-grid,
  body.is-authenticated .review-suite-watch-factor-grid,
  body.is-authenticated .review-suite-desk-flow-grid,
  body.is-authenticated .review-suite-orderflow-grid,
  body.is-authenticated .review-suite-scoreboard-grid,
  body.is-authenticated .review-suite-visual-grid,
  body.is-authenticated .review-suite-macro-visual-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .review-suite-scenario-node.is-lead {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body.is-authenticated .review-suite-hero-header {
    padding: 20px 18px;
  }

  body.is-authenticated .review-suite-hero-right,
  body.is-authenticated .review-suite-meta-item {
    align-items: flex-start;
  }

  body.is-authenticated .review-suite-hero-actions,
  body.is-authenticated .review-suite-hero-meta,
  body.is-authenticated .review-suite-import-btns,
  body.is-authenticated .review-suite-hm-legend,
  body.is-authenticated .review-suite-position-legend {
    flex-wrap: wrap;
  }
}

body.is-authenticated .history-page-panel {
  background: transparent;
  border: 0;
  padding: 0;
  gap: 0;
  box-shadow: none;
}

body.is-authenticated .history-page-shell,
body.is-authenticated .history-page-content {
  display: flex;
  flex-direction: column;
}

body.is-authenticated .history-hero-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 13, 16, 0.88);
}

body.is-authenticated .history-hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

body.is-authenticated .history-hero-header::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

body.is-authenticated .history-hero-left,
body.is-authenticated .history-hero-right {
  position: relative;
  z-index: 1;
}

body.is-authenticated .history-hero-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body.is-authenticated .history-hero-eyebrow,
body.is-authenticated .history-sec-label,
body.is-authenticated .history-sp-key,
body.is-authenticated .history-tl-footer-key,
body.is-authenticated .history-meta-key,
body.is-authenticated .history-tl-wait-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.is-authenticated .history-hero-title,
body.is-authenticated .history-sec-title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--text-primary);
}

body.is-authenticated .history-hero-title {
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.05;
}

body.is-authenticated .history-sec-title {
  font-size: 28px;
  margin-bottom: 18px;
}

body.is-authenticated .history-hero-title em,
body.is-authenticated .history-sec-title em {
  color: var(--gold);
  font-style: italic;
}

body.is-authenticated .history-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

body.is-authenticated .history-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.is-authenticated .history-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

body.is-authenticated .history-meta-key {
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

body.is-authenticated .history-meta-val {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

body.is-authenticated .history-meta-val-gold {
  color: var(--gold);
}

body.is-authenticated .history-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(82, 194, 122, 0.25);
  background: rgba(82, 194, 122, 0.05);
}

body.is-authenticated .history-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  animation: historyBlink 1.5s infinite;
}

@keyframes historyBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

body.is-authenticated .history-live-text {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--success);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .history-hero-actions,
body.is-authenticated .history-filter-left,
body.is-authenticated .history-filter-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

body.is-authenticated .history-btn-outline,
body.is-authenticated .history-filter-btn,
body.is-authenticated .history-load-more-btn {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.is-authenticated .history-btn-outline {
  padding: 8px 16px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

body.is-authenticated .history-btn-outline:hover,
body.is-authenticated .history-btn-outline.active {
  background: var(--gold);
  color: #050608;
  border-color: var(--gold);
}

body.is-authenticated .history-page-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px 60px;
  gap: 2px;
}

body.is-authenticated .history-sec-head {
  padding: 0 2px 16px;
}

body.is-authenticated .history-gold-rule {
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.2;
}

body.is-authenticated .history-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

body.is-authenticated .history-filter-btn {
  padding: 6px 14px;
  font-size: 9px;
  color: var(--text-muted);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .history-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.11);
  color: var(--text-primary);
}

body.is-authenticated .history-filter-btn.active {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

body.is-authenticated .history-search-wrap {
  position: relative;
}

body.is-authenticated .history-search-input,
body.is-authenticated .history-sym-select {
  outline: none;
  color: var(--text-primary);
  background: rgba(19, 23, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "DM Mono", monospace;
  transition: border-color 0.2s ease;
}

body.is-authenticated .history-search-input {
  width: 200px;
  padding: 7px 12px 7px 32px;
  font-size: 11px;
  letter-spacing: 0.03em;
}

body.is-authenticated .history-search-input::placeholder {
  color: var(--text-secondary);
}

body.is-authenticated .history-search-input:focus,
body.is-authenticated .history-sym-select:focus {
  border-color: var(--gold);
}

body.is-authenticated .history-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  pointer-events: none;
}

body.is-authenticated .history-sym-select {
  appearance: none;
  cursor: pointer;
  padding: 7px 28px 7px 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7885'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

body.is-authenticated .history-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 16px;
}

body.is-authenticated .history-stat-pill {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 18, 24, 0.92);
}

body.is-authenticated .history-stat-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

body.is-authenticated .history-stat-pill.total::before { background: linear-gradient(90deg, var(--text-muted), transparent); opacity: 0.4; }
body.is-authenticated .history-stat-pill.bull::before { background: linear-gradient(90deg, var(--success), transparent); }
body.is-authenticated .history-stat-pill.bear::before { background: linear-gradient(90deg, #e05252, transparent); }
body.is-authenticated .history-stat-pill.neut::before { background: linear-gradient(90deg, var(--gold), transparent); }

body.is-authenticated .history-sp-key {
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

body.is-authenticated .history-sp-val {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

body.is-authenticated .history-stat-pill.total .history-sp-val { color: var(--text-muted); }
body.is-authenticated .history-stat-pill.bull .history-sp-val { color: var(--success); }
body.is-authenticated .history-stat-pill.bear .history-sp-val { color: #e05252; }
body.is-authenticated .history-stat-pill.neut .history-sp-val { color: var(--gold); }

body.is-authenticated .history-sp-sub {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}

body.is-authenticated .history-timeline-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.is-authenticated .history-tl-item {
  display: grid;
  grid-template-columns: 100px 20px 1fr;
  align-items: stretch;
}

body.is-authenticated .history-tl-time-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 3px;
  padding: 18px 16px 18px 0;
}

body.is-authenticated .history-tl-time,
body.is-authenticated .history-tl-date,
body.is-authenticated .history-tl-sym,
body.is-authenticated .history-tl-conf,
body.is-authenticated .history-tl-footer-val,
body.is-authenticated .history-tl-wait-desc {
  font-family: "DM Mono", monospace;
}

body.is-authenticated .history-tl-time {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body.is-authenticated .history-tl-date {
  font-size: 9px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body.is-authenticated .history-tl-spine {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
}

body.is-authenticated .history-tl-dot {
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

body.is-authenticated .history-tl-item:hover .history-tl-dot {
  transform: scale(1.3);
}

body.is-authenticated .history-tl-dot.bull { background: rgba(82, 194, 122, 0.2); border-color: var(--success); }
body.is-authenticated .history-tl-dot.bear { background: rgba(224, 82, 82, 0.2); border-color: #e05252; }
body.is-authenticated .history-tl-dot.neut { background: rgba(201, 168, 76, 0.15); border-color: var(--gold); }
body.is-authenticated .history-tl-dot.wait { background: rgba(42, 44, 56, 0.4); border-color: var(--text-secondary); animation: historyDotPulse2 2s infinite; }

body.is-authenticated .history-tl-line {
  flex: 1;
  width: 1px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.06);
}

body.is-authenticated .history-tl-card,
body.is-authenticated .history-tl-waiting {
  position: relative;
  margin: 8px 0 8px 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 18, 24, 0.92);
}

body.is-authenticated .history-tl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
}

body.is-authenticated .history-tl-card.bull::before { background: var(--success); }
body.is-authenticated .history-tl-card.bear::before { background: #e05252; }
body.is-authenticated .history-tl-card.neut::before { background: var(--gold); }

body.is-authenticated .history-tl-item:hover .history-tl-card {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .history-tl-card-top,
body.is-authenticated .history-tl-tags,
body.is-authenticated .history-tl-card-footer,
body.is-authenticated .history-tl-footer-item,
body.is-authenticated .history-tl-wait-loader,
body.is-authenticated .history-tl-wait-dots {
  display: flex;
  align-items: center;
}

body.is-authenticated .history-tl-card-top {
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

body.is-authenticated .history-tl-tags,
body.is-authenticated .history-tl-card-footer {
  gap: 6px;
}

body.is-authenticated .history-tl-tag {
  padding: 3px 8px;
  border: 1px solid;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.is-authenticated .history-tl-tag.bull { color: var(--success); border-color: rgba(82, 194, 122, 0.3); background: rgba(82, 194, 122, 0.06); }
body.is-authenticated .history-tl-tag.bear { color: #e05252; border-color: rgba(224, 82, 82, 0.3); background: rgba(224, 82, 82, 0.06); }
body.is-authenticated .history-tl-tag.neut { color: var(--gold); border-color: rgba(201, 168, 76, 0.3); background: rgba(201, 168, 76, 0.05); }

body.is-authenticated .history-tl-sym {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

body.is-authenticated .history-tl-card-title,
body.is-authenticated .history-tl-wait-title {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

body.is-authenticated .history-tl-card-desc {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

body.is-authenticated .history-tl-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

body.is-authenticated .history-tl-outcome-grid div {
  padding: 11px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(8, 10, 14, 0.58);
}

body.is-authenticated .history-tl-outcome-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(201, 168, 76, 0.86);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.is-authenticated .history-tl-outcome-grid p {
  margin: 0;
  color: rgba(232, 236, 243, 0.76);
  font-size: 0.86rem;
  line-height: 1.5;
}

body.is-authenticated .history-tl-card-footer {
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.is-authenticated .history-tl-footer-key {
  color: var(--text-secondary);
  letter-spacing: 0.12em;
}

body.is-authenticated .history-tl-footer-val {
  font-size: 10px;
  color: var(--text-muted);
}

body.is-authenticated .history-tl-footer-val.bull { color: var(--success); }
body.is-authenticated .history-tl-footer-val.bear { color: #e05252; }
body.is-authenticated .history-tl-footer-val.gold { color: var(--gold); }

body.is-authenticated .history-tl-waiting {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--text-secondary);
}

body.is-authenticated .history-tl-wait-dots {
  gap: 4px;
}

body.is-authenticated .history-tl-wait-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-secondary);
  animation: historyWaitDotPulse 1.4s infinite both;
}

body.is-authenticated .history-tl-wait-dot:nth-child(2) { animation-delay: 0.2s; }
body.is-authenticated .history-tl-wait-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes historyWaitDotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

@keyframes historyDotPulse2 {
  0%, 100% { opacity: 0.3; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 6px rgba(42, 44, 56, 0.8); }
}

body.is-authenticated .history-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

body.is-authenticated .history-load-more-btn {
  padding: 11px 32px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

body.is-authenticated .history-load-more-btn:hover {
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

body.is-authenticated .history-hidden-replay {
  display: none;
}

@media (max-width: 900px) {
  body.is-authenticated .history-tl-outcome-grid {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .history-stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body.is-authenticated .history-page-content {
    padding: 20px 18px 40px;
  }

  body.is-authenticated .history-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  body.is-authenticated .history-hero-right,
  body.is-authenticated .history-meta-item {
    align-items: flex-start;
  }

  body.is-authenticated .history-tl-item {
    grid-template-columns: 70px 16px 1fr;
  }

  body.is-authenticated .history-stats-strip {
    grid-template-columns: 1fr;
  }
}

body.is-authenticated .telegram-panel,
body.is-authenticated .account-panel,
body.is-authenticated .support-panel,
body.is-authenticated .upgrade-panel,
body.is-authenticated .market-board-panel,
body.is-authenticated .watcher-panel,
body.is-authenticated .admin-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 13, 16, 0.88);
}

body.is-authenticated .telegram-panel::before,
body.is-authenticated .account-panel::before,
body.is-authenticated .support-panel::before,
body.is-authenticated .upgrade-panel::before,
body.is-authenticated .market-board-panel::before,
body.is-authenticated .watcher-panel::before,
body.is-authenticated .admin-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

body.is-authenticated .telegram-panel::after,
body.is-authenticated .account-panel::after,
body.is-authenticated .support-panel::after,
body.is-authenticated .upgrade-panel::after,
body.is-authenticated .market-board-panel::after,
body.is-authenticated .watcher-panel::after,
body.is-authenticated .admin-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

body.is-authenticated .telegram-panel > *,
body.is-authenticated .account-panel > *,
body.is-authenticated .support-panel > *,
body.is-authenticated .upgrade-panel > *,
body.is-authenticated .market-board-panel > *,
body.is-authenticated .watcher-panel > *,
body.is-authenticated .admin-panel > * {
  position: relative;
  z-index: 1;
}

body.is-authenticated .telegram-panel .panel-header,
body.is-authenticated .account-panel .panel-header,
body.is-authenticated .support-panel .panel-header,
body.is-authenticated .upgrade-panel .panel-header,
body.is-authenticated .market-board-panel .panel-header,
body.is-authenticated .watcher-panel .panel-header,
body.is-authenticated .admin-panel .panel-header {
  margin-bottom: 18px;
}

body.is-authenticated .telegram-panel .panel-header h2,
body.is-authenticated .account-panel .panel-header h2,
body.is-authenticated .support-panel .panel-header h2,
body.is-authenticated .upgrade-panel .panel-header h2,
body.is-authenticated .market-board-panel .panel-header h2,
body.is-authenticated .watcher-panel .panel-header h2,
body.is-authenticated .admin-panel .panel-header h2,
body.is-authenticated .upgrade-card h3,
body.is-authenticated .support-card h3,
body.is-authenticated .account-settings-card h3,
body.is-authenticated .telegram-card h3,
body.is-authenticated .watcher-card h3,
body.is-authenticated .admin-card h3,
body.is-authenticated .market-board-card h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

body.is-authenticated .telegram-grid,
body.is-authenticated .support-grid,
body.is-authenticated .upgrade-grid,
body.is-authenticated .account-settings-grid,
body.is-authenticated .watcher-grid,
body.is-authenticated .admin-grid,
body.is-authenticated .admin-grid-secondary,
body.is-authenticated .market-board-grid,
body.is-authenticated .telegram-form-grid,
body.is-authenticated .telegram-checkbox-grid,
body.is-authenticated .product-guide-grid,
body.is-authenticated .billing-confidence-grid,
body.is-authenticated .usage-summary-grid,
body.is-authenticated .plan-catalog-grid {
  gap: 2px;
}

body.is-authenticated .telegram-card,
body.is-authenticated .support-card,
body.is-authenticated .upgrade-card,
body.is-authenticated .account-settings-card,
body.is-authenticated .watcher-card,
body.is-authenticated .admin-card,
body.is-authenticated .admin-user-card,
body.is-authenticated .market-board-card,
body.is-authenticated .account-import-helper-card,
body.is-authenticated .billing-confidence-item,
body.is-authenticated .plan-catalog-card,
body.is-authenticated .usage-summary-card,
body.is-authenticated .usage-user-card,
body.is-authenticated .upgrade-request-card,
body.is-authenticated .support-request-card,
body.is-authenticated .chat-message-card,
body.is-authenticated .audit-event-card,
body.is-authenticated .follow-up-card,
body.is-authenticated .product-guide-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 18, 24, 0.92);
  box-shadow: none;
}

body.is-authenticated .telegram-card::before,
body.is-authenticated .support-card::before,
body.is-authenticated .upgrade-card::before,
body.is-authenticated .account-settings-card::before,
body.is-authenticated .watcher-card::before,
body.is-authenticated .admin-card::before,
body.is-authenticated .market-board-card::before,
body.is-authenticated .follow-up-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.6), transparent);
}

body.is-authenticated .telegram-card,
body.is-authenticated .support-card,
body.is-authenticated .upgrade-card,
body.is-authenticated .account-settings-card,
body.is-authenticated .watcher-card,
body.is-authenticated .admin-card,
body.is-authenticated .market-board-card,
body.is-authenticated .follow-up-card {
  padding: 18px;
}

body.is-authenticated .telegram-card p,
body.is-authenticated .support-card p,
body.is-authenticated .upgrade-card p,
body.is-authenticated .account-settings-card p,
body.is-authenticated .watcher-card p,
body.is-authenticated .admin-card p,
body.is-authenticated .market-board-card p,
body.is-authenticated .follow-up-card p,
body.is-authenticated .telegram-helper,
body.is-authenticated .journey-note,
body.is-authenticated .report-path,
body.is-authenticated .report-preview,
body.is-authenticated .admin-status,
body.is-authenticated .support-request-copy,
body.is-authenticated .support-request-note,
body.is-authenticated .chat-message-copy,
body.is-authenticated .audit-event-copy {
  color: var(--text-muted);
}

body.is-authenticated .market-board-card,
body.is-authenticated .follow-up-card {
  min-height: 160px;
}

body.is-authenticated .market-board-card h3,
body.is-authenticated .follow-up-card h3 {
  margin-bottom: 6px;
}

body.is-authenticated .telegram-form,
body.is-authenticated .auth-form,
body.is-authenticated .admin-user-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.is-authenticated .telegram-field-group,
body.is-authenticated .auth-form .auth-label,
body.is-authenticated .admin-user-form .auth-label {
  margin-bottom: 0;
}

body.is-authenticated .auth-label,
body.is-authenticated .settings-field,
body.is-authenticated .telegram-toggle span {
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

body.is-authenticated .auth-input,
body.is-authenticated .settings-select,
body.is-authenticated textarea {
  background: rgba(19, 23, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

body.is-authenticated .auth-input:focus,
body.is-authenticated .settings-select:focus,
body.is-authenticated textarea:focus {
  border-color: var(--gold);
}

body.is-authenticated .auth-input::placeholder,
body.is-authenticated textarea::placeholder {
  color: rgba(122, 120, 133, 0.7);
}

body.is-authenticated .detail-button,
body.is-authenticated .trial-button,
body.is-authenticated .auth-submit,
body.is-authenticated .watcher-button,
body.is-authenticated .billing-plan-button,
body.is-authenticated .resource-link {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.is-authenticated .detail-button,
body.is-authenticated .resource-link,
body.is-authenticated .billing-plan-button,
body.is-authenticated .watcher-button {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
}

body.is-authenticated .detail-button:hover,
body.is-authenticated .resource-link:hover,
body.is-authenticated .billing-plan-button:hover,
body.is-authenticated .watcher-button:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
}

body.is-authenticated .auth-submit,
body.is-authenticated .trial-button,
body.is-authenticated .billing-plan-button-primary,
body.is-authenticated .watcher-start {
  background: var(--gold);
  border-color: var(--gold);
  color: #050608;
}

body.is-authenticated .auth-submit:hover,
body.is-authenticated .trial-button:hover,
body.is-authenticated .billing-plan-button-primary:hover,
body.is-authenticated .watcher-start:hover {
  background: var(--gold-light);
  color: #050608;
}

body.is-authenticated .watcher-stop {
  border-color: rgba(224, 82, 82, 0.28);
  color: #e05252;
}

body.is-authenticated .watcher-stop:hover {
  background: rgba(224, 82, 82, 0.08);
  border-color: rgba(224, 82, 82, 0.4);
  color: #ff8c8c;
}

body.is-authenticated .telegram-toggle,
body.is-authenticated .telegram-checkbox-grid label {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 23, 32, 0.95);
}

body.is-authenticated .resource-links,
body.is-authenticated .telegram-actions,
body.is-authenticated .chat-actions,
body.is-authenticated .report-actions,
body.is-authenticated .notification-actions,
body.is-authenticated .watcher-actions,
body.is-authenticated .billing-plan-actions,
body.is-authenticated .billing-plan-action-grid,
body.is-authenticated .support-request-actions,
body.is-authenticated .support-request-head,
body.is-authenticated .admin-user-actions,
body.is-authenticated .admin-user-head,
body.is-authenticated .upgrade-stage-row,
body.is-authenticated .upgrade-request-actions {
  gap: 10px;
}

body.is-authenticated .billing-confidence-item,
body.is-authenticated .account-import-helper-card,
body.is-authenticated .product-guide-card,
body.is-authenticated .plan-catalog-card,
body.is-authenticated .usage-summary-card,
body.is-authenticated .usage-user-card {
  padding: 14px 16px;
}

body.is-authenticated .support-status-badge,
body.is-authenticated .admin-role-badge,
body.is-authenticated .plan-badge,
body.is-authenticated .symbol-badge {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.08);
}

body.is-authenticated .support-status-badge.open,
body.is-authenticated .support-status-badge.reviewing,
body.is-authenticated .support-status-badge.ai_active,
body.is-authenticated .support-status-badge.waiting_human,
body.is-authenticated .support-status-badge.human_active,
body.is-authenticated .support-status-badge.resolved {
  box-shadow: none;
}

body.is-authenticated .support-requests-list,
body.is-authenticated .chat-thread-list,
body.is-authenticated .upgrade-requests-list,
body.is-authenticated .audit-event-list,
body.is-authenticated .admin-users-list,
body.is-authenticated .usage-users-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.is-authenticated .report-preview {
  background: rgba(19, 23, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .admin-section-nav {
    gap: 8px;
    padding: 10px;
  }

  .admin-section-button {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .back-office-kpi-grid,
  .back-office-layout,
  .back-office-layout-secondary,
  .marketing-launch-grid,
  .marketing-growth-grid,
  .marketing-brief-grid,
  .marketing-operator-grid {
    grid-template-columns: 1fr;
  }

  .marketing-lead-directory-controls,
  .marketing-lead-directory-summary,
  .marketing-follow-up-options {
    grid-template-columns: 1fr;
  }

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

  .marketing-performance-card,
  .marketing-performance-numbers {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .marketing-launch-head {
    flex-direction: column;
  }

  .back-office-calendar-item {
    grid-template-columns: 1fr;
  }

  .back-office-actions,
  .back-office-draft-actions {
    justify-content: flex-start;
  }

  body.is-authenticated .telegram-panel,
  body.is-authenticated .account-panel,
  body.is-authenticated .support-panel,
  body.is-authenticated .upgrade-panel,
  body.is-authenticated .market-board-panel,
  body.is-authenticated .watcher-panel,
  body.is-authenticated .admin-panel {
    padding: 18px;
  }
}

/* Phone-first rescue layer: keep the product usable when the premium desktop
   desk is viewed on narrow screens. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .billing-compliance-grid,
  .registration-intel-grid {
    grid-template-columns: 1fr;
  }

  .billing-compliance-actions,
  .registration-intel-head {
    align-items: stretch;
    flex-direction: column;
  }

  body,
  body.auth-page,
  body.is-authenticated {
    letter-spacing: 0.025em;
  }

  .page-shell,
  body.auth-page .page-shell,
  body.is-authenticated .page-shell {
    width: min(100% - 20px, 100%);
    padding: 10px 0 32px;
  }

  body.is-authenticated .command-sidebar {
    position: sticky;
    top: 0;
    z-index: 80;
  }

  body.is-authenticated .command-sidebar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-left: 0;
    border-right: 0;
    overflow: visible;
  }

  body.is-authenticated .command-sidebar-logo-wrap {
    width: 54px;
    height: 36px;
  }

  body.is-authenticated .command-sidebar-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    padding: 4px 0 2px;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  body.is-authenticated .command-sidebar-link {
    min-width: max-content;
    padding: 10px 12px;
    font-size: 0.68rem;
    scroll-snap-align: start;
  }

  body.is-authenticated .command-portal-actions {
    justify-content: flex-end;
    min-width: 0;
    gap: 8px;
  }

  body.is-authenticated .command-profile-trigger {
    width: auto;
    min-width: 44px;
    max-width: 54vw;
    padding: 7px;
  }

  body.is-authenticated .command-profile-avatar {
    width: 30px;
    height: 30px;
  }

  body.is-authenticated .command-profile-copy {
    display: none;
  }

  body.is-authenticated .dashboard.app-dashboard,
  .dashboard {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 14px;
  }

  body.is-authenticated .panel,
  body.is-authenticated .admin-panel,
  body.is-authenticated .telegram-panel,
  body.is-authenticated .account-panel,
  body.is-authenticated .support-panel,
  body.is-authenticated .upgrade-panel,
  body.is-authenticated .market-board-panel,
  body.is-authenticated .watcher-panel {
    width: 100%;
    padding: 16px;
    grid-column: 1 / -1;
    overflow: hidden;
  }

  body.is-authenticated .app-topbar-panel,
  body.is-authenticated .command-hero-grid,
  body.is-authenticated .command-hero-price-row,
  body.is-authenticated .command-center-beginner-box,
  body.is-authenticated .command-state-grid,
  body.is-authenticated .command-signal-strip,
  body.is-authenticated .command-insight-grid,
  body.is-authenticated .chart-footer,
  body.is-authenticated .deep-thesis-layout,
  body.is-authenticated .deep-trust-audit,
  body.is-authenticated .deep-quality-console,
  body.is-authenticated .deep-live-strip,
  body.is-authenticated .deep-beginner-sequence,
  body.is-authenticated .deep-quality-lanes,
  body.is-authenticated .deep-confluence-grid,
  body.is-authenticated .deep-product-grid,
  body.is-authenticated .deep-scenario-grid,
  body.is-authenticated .package-operating-grid,
  body.is-authenticated .deep-focus-grid,
  body.is-authenticated .deep-meter-grid,
  body.is-authenticated .upgrade-grid,
  body.is-authenticated .admin-grid,
  body.is-authenticated .admin-grid-secondary,
  body.is-authenticated .watcher-grid,
  body.is-authenticated .live-health-grid,
  body.is-authenticated .review-suite-desk-top,
  body.is-authenticated .review-suite-desk-bottom,
  body.is-authenticated .review-suite-decision-grid,
  body.is-authenticated .review-suite-decision-mini-grid,
  body.is-authenticated .review-suite-intraday-strip-grid,
  body.is-authenticated .review-suite-beginner-battle,
  body.is-authenticated .review-suite-nearby-reaction,
  body.is-authenticated .review-suite-intraday-map,
  body.is-authenticated .review-suite-intraday-event-tape,
  body.is-authenticated .review-suite-auction-grid,
  body.is-authenticated .review-suite-auction-battle,
  body.is-authenticated .review-suite-auction-side-panel,
  body.is-authenticated .review-suite-heatmap-grid,
  body.is-authenticated .review-suite-orderflow-grid,
  body.is-authenticated .review-suite-scoreboard-grid,
  body.is-authenticated .review-suite-visual-grid,
  body.is-authenticated .review-suite-macro-visual-grid,
  body.is-authenticated .review-suite-watch-grid,
  body.is-authenticated .review-suite-watch-factor-grid,
  body.is-authenticated .review-suite-level-grid,
  body.is-authenticated .review-suite-sync-grid,
  body.is-authenticated .review-suite-import-section,
  body.is-authenticated .review-suite-import-opts {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
  }

  body.is-authenticated .app-topbar-panel,
  body.is-authenticated .command-hero-main,
  body.is-authenticated .command-pulse-card,
  body.is-authenticated .chart-panel,
  body.is-authenticated .learn-panel,
  body.is-authenticated .review-suite-page-content,
  body.is-authenticated .review-suite-hero-header,
  body.is-authenticated .review-suite-premium-card,
  body.is-authenticated .review-suite-intraday-strip,
  body.is-authenticated .review-suite-auction-control,
  body.is-authenticated .review-suite-decision-console,
  body.is-authenticated .review-suite-replay-panel {
    padding: 16px;
  }

  body.is-authenticated .app-topbar-left h2,
  body.is-authenticated .command-hero-head h2,
  body.is-authenticated .review-suite-sec-title,
  body.is-authenticated .deep-thesis-title,
  body.is-authenticated .panel-header h2 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  body.is-authenticated .command-hero-head,
  body.is-authenticated .command-preview-head,
  body.is-authenticated .panel-header,
  body.is-authenticated .review-suite-intraday-strip-head,
  body.is-authenticated .review-suite-replay-head,
  body.is-authenticated .review-suite-hero-header,
  body.is-authenticated .review-suite-hero-actions,
  body.is-authenticated .review-suite-hero-meta,
  body.is-authenticated .watcher-actions,
  body.is-authenticated .resource-links,
  body.is-authenticated .telegram-actions,
  body.is-authenticated .admin-user-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.is-authenticated .detail-button,
  body.is-authenticated .trial-button,
  body.is-authenticated .auth-submit,
  body.is-authenticated .watcher-button,
  body.is-authenticated .billing-plan-button,
  body.is-authenticated .resource-link {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  body.is-authenticated .price-chart,
  body.is-authenticated .command-preview-chart,
  body.is-authenticated .review-suite-chart {
    height: 245px;
    min-height: 245px;
  }

  body.is-authenticated .chart-overlay-layer,
  body.is-authenticated .chart-grid,
  body.is-authenticated .review-suite-chart-shell {
    min-width: 0;
  }

  body.is-authenticated .chart-overlay-tag,
  body.is-authenticated .chart-overlay-live {
    max-width: calc(100% - 16px);
    font-size: 0.64rem;
    padding: 6px 8px;
  }

  body.is-authenticated .review-suite-intraday-map-zone,
  body.is-authenticated .review-suite-intraday-map-zone.is-buyer,
  body.is-authenticated .review-suite-intraday-map-zone.is-spot {
    min-height: 104px;
    text-align: left;
    transform: none;
  }

  body.is-authenticated .review-suite-desk-heatmap-grid,
  body.is-authenticated .review-suite-desk-heatmap-profile {
    overflow-x: auto;
  }

  body.is-authenticated .review-suite-desk-heatmap-cell,
  body.is-authenticated .review-suite-orderflow-card,
  body.is-authenticated .review-suite-score-card,
  body.is-authenticated .review-suite-visual-card,
  body.is-authenticated .deep-product-card,
  body.is-authenticated .package-operating-card,
  body.is-authenticated .deep-meter-card,
  body.is-authenticated .deep-confluence-card,
  body.is-authenticated .watcher-card,
  body.is-authenticated .admin-card,
  body.is-authenticated .upgrade-card {
    min-width: 0;
  }

  body.is-authenticated p,
  body.is-authenticated li,
  body.is-authenticated .journey-note,
  body.is-authenticated .review-suite-regime-desc,
  body.is-authenticated .review-suite-premium-copy,
  body.is-authenticated .command-interpretation,
  body.is-authenticated .insight-text {
    font-size: 0.94rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  body.is-authenticated .deep-product-desk {
    margin-inline: 0;
    padding: 14px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(12, 16, 24, 0.98), rgba(6, 8, 12, 0.98)),
      rgba(6, 8, 12, 0.98);
  }

  body.is-authenticated .deep-product-desk-head,
  body.is-authenticated .deep-product-card-head {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  body.is-authenticated .deep-product-desk-head h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.08;
  }

  body.is-authenticated .deep-product-grid,
  body.is-authenticated .deep-scenario-grid {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  body.is-authenticated .deep-product-card-wide {
    grid-column: auto;
  }

  body.is-authenticated .deep-product-card {
    min-height: 0;
    padding: 16px;
    border-color: rgba(212, 175, 55, 0.16);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
      rgba(14, 17, 24, 0.92);
  }

  body.is-authenticated .deep-product-card-head strong {
    max-width: none;
    text-align: left;
    font-size: 1rem;
    line-height: 1.25;
  }

  body.is-authenticated .deep-read-timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 7px;
    padding: 12px 12px 12px 28px;
    border-radius: 12px;
  }

  body.is-authenticated .deep-read-timeline-row::before {
    position: absolute;
    left: 12px;
    top: 18px;
  }

  body.is-authenticated .deep-read-timeline-row span,
  body.is-authenticated .deep-read-timeline-row strong,
  body.is-authenticated .deep-read-timeline-row em {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.is-authenticated .deep-read-timeline-row strong {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  body.is-authenticated .deep-scenario-card {
    min-height: 0;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(10, 13, 19, 0.9);
  }

  body.is-authenticated .deep-scenario-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body.is-authenticated .deep-scenario-card-head strong,
  body.is-authenticated .deep-scenario-card-head span {
    display: block;
  }

  body.is-authenticated .deep-package-step {
    grid-template-columns: 1fr;
  }

  body.is-authenticated .package-operating-desk,
  .public-package-operating-matrix {
    margin-inline: 0;
    padding: 14px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(12, 16, 24, 0.98), rgba(6, 8, 12, 0.98)),
      rgba(6, 8, 12, 0.98);
  }

  body.is-authenticated .package-operating-head,
  .package-timeline-head {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body.is-authenticated .package-operating-head h3 {
    max-width: none;
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.08;
  }

  body.is-authenticated .package-operating-head > strong {
    width: max-content;
    max-width: 100%;
  }

  body.is-authenticated .package-operating-grid {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  body.is-authenticated .package-operating-card,
  body.is-authenticated .package-operating-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 16px;
    border-color: rgba(212, 175, 55, 0.16);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
      rgba(14, 17, 24, 0.92);
  }

  body.is-authenticated .package-operating-card strong {
    display: block;
    margin: 8px 0;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  body.is-authenticated .package-operating-card span,
  body.is-authenticated .package-operating-card p {
    display: block;
    overflow-wrap: anywhere;
  }

  body.is-authenticated .package-score-card {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body.is-authenticated .package-score-orb {
    width: 116px;
  }

  body.is-authenticated .package-mini-timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 7px;
    padding: 12px 12px 12px 28px;
    border-radius: 12px;
  }

  body.is-authenticated .package-mini-timeline-row::before {
    position: absolute;
    left: 12px;
    top: 18px;
  }

  body.is-authenticated .package-mini-timeline-row span,
  body.is-authenticated .package-mini-timeline-row strong,
  body.is-authenticated .package-mini-timeline-row em {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.is-authenticated .package-mini-timeline-row strong {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .public-package-operating-grid {
    grid-template-columns: 1fr;
  }

  .package-operating-public-card {
    min-height: 0;
  }

  .mrx-shell {
    width: min(100% - 20px, 100%);
    --mrx-nav-offset: 104px;
  }

  .mrx-nav {
    width: min(100% - 20px, 100%);
    padding: 12px;
    gap: 10px;
  }

  .mrx-nav-cta {
    gap: 8px;
  }

  .mrx-btn-ghost,
  .mrx-btn-primary,
  .mrx-btn-secondary {
    padding: 11px 12px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .mrx-hero,
  .mrx-section,
  .mrx-cta-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mrx-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
  }

  .mrx-hero-actions,
  .mrx-terminal-grid,
  .mrx-price-row,
  .mrx-meters,
  .mrx-features-grid,
  .mrx-pricing-grid,
  .mrx-compare-table {
    grid-template-columns: 1fr !important;
  }
}

.password-input-wrap .auth-input,
body.is-authenticated .password-input-wrap .auth-input,
body.auth-page .password-input-wrap .auth-input,
body.auth-page.auth-page-redesign .password-input-wrap .auth-access-input {
  padding-right: 82px;
}

@media (max-width: 980px) {
  .deep-product-desk,
  .package-operating-desk {
    display: block !important;
    margin: 18px 0 !important;
    padding: 14px !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 16% 0%, rgba(105, 189, 255, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(16, 20, 30, 0.98), rgba(4, 6, 10, 0.98)) !important;
  }

  .deep-product-grid,
  .package-operating-grid,
  .review-completion-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .deep-product-card,
  .package-operating-card,
  .deep-scenario-card {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(212, 175, 55, 0.18) !important;
    border-radius: 16px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
      rgba(11, 14, 20, 0.94) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 14px 30px rgba(0, 0, 0, 0.24) !important;
  }

  .deep-product-card-head,
  .package-operating-head,
  .deep-scenario-card-head,
  .package-timeline-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .deep-product-card-head strong,
  .package-operating-card strong,
  .deep-scenario-card-head strong,
  .package-mini-timeline-row strong,
  .deep-read-timeline-row strong {
    display: block !important;
    margin: 0 !important;
    color: #f6f0da !important;
    font-size: 1rem !important;
    line-height: 1.28 !important;
    overflow-wrap: anywhere !important;
  }

  .deep-change-meta,
  .deep-read-timeline-row,
  .package-mini-timeline-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    width: 100% !important;
    margin-top: 10px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid #d4af37 !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.035) !important;
  }

  .deep-change-meta span,
  .deep-read-timeline-row span,
  .deep-read-timeline-row em,
  .package-mini-timeline-row span,
  .package-mini-timeline-row em {
    display: block !important;
    min-width: 0 !important;
    color: rgba(232, 236, 243, 0.72) !important;
    font-family: var(--mono-font) !important;
    font-size: 0.72rem !important;
    font-style: normal !important;
    letter-spacing: 0.06em !important;
    line-height: 1.45 !important;
    text-transform: uppercase !important;
    overflow-wrap: anywhere !important;
  }

  .deep-scenario-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .deep-scenario-card-head .deep-scenario-score,
  .deep-scenario-score {
    display: inline-flex !important;
    width: max-content !important;
    min-width: 72px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: rgba(212, 175, 55, 0.1) !important;
  }

  .deep-scenario-meter,
  .deep-stability-rail {
    display: block !important;
    width: 100% !important;
    height: 9px !important;
    margin: 12px 0 !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .package-score-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .package-score-orb {
    width: 118px !important;
  }
}
