@font-face {
  font-family: "Halenoir";
  src: url("/fonts/halenoir/HalenoirCompact-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Halenoir";
  src: url("/fonts/halenoir/HalenoirCompact-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Halenoir";
  src: url("/fonts/halenoir/HalenoirCompact-DemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Halenoir";
  src: url("/fonts/halenoir/Halenoir-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #010409;
  --deep: #070d1a;
  --surface: #0d1626;
  --surface2: #111f35;
  --border: rgba(96, 165, 250, 0.14);
  --border2: rgba(96, 165, 250, 0.26);
  --blue: #1e56b4;
  --blue2: #2563eb;
  --blue3: #3b82f6;
  --bluelight: #60a5fa;
  --text: #e8edf5;
  --text2: #9aaecc;
  --text3: #566d8c;
  --gold: #c9a84c;
  --goldlight: #f0d080;
  --success: #22c55e;
  --danger: #ef4444;
  --font-display: "Halenoir", sans-serif;
  --font-ui: "Halenoir", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --frame-bg: rgba(37, 99, 235, 0.1);
  --frame-border-color: rgba(37, 99, 235, 0.3);
  --frame-border: 1px solid var(--frame-border-color);
  --frame-bg-hover: rgba(37, 99, 235, 0.14);
  --bg: var(--black);
  --bg-card: var(--frame-bg);
  --border-hover: rgba(37, 99, 235, 0.5);
  --accent: var(--blue2);
  --accent-soft: var(--bluelight);
  --bull: var(--success);
  --bear: var(--danger);
  --muted: var(--text2);
  --radius: 0;
  --radius-lg: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ui), system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  /* Single scrollable paint layer — avoid fixed pseudo-elements (scroll jank). */
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 85% 20%, rgba(30, 58, 138, 0.18), transparent 50%),
    linear-gradient(rgba(30, 86, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 86, 180, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  background-attachment: scroll;
}

a {
  color: var(--bluelight);
  text-decoration: none;
}
a:hover {
  color: #fff;
}

.site-nav {
  border-bottom: var(--frame-border);
  background: #010409;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-brand:hover {
  color: var(--text);
}
.nav-brand img,
.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}
.nav-kanji {
  display: none;
}
.nav-name {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text2);
}
.nav-back {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  border: var(--frame-border);
  border-radius: 0;
  padding: 10px 14px;
  background: var(--frame-bg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-back:hover {
  border-color: rgba(37, 99, 235, 0.5);
  color: var(--text);
  background: var(--frame-bg-hover);
  text-decoration: none;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.hero {
  margin-bottom: 48px;
}
.eyebrow,
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bluelight);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue3);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-tagline {
  font-size: 17px;
  color: var(--text2);
  max-width: 52ch;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.price-pill {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 12px 18px;
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
}
.price-pill span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text3);
}
.tier-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid var(--border2);
  color: var(--text2);
  background: rgba(8, 14, 28, 0.5);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue2);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--blue3);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: var(--frame-border);
  color: var(--text2);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  background: var(--frame-bg);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(37, 99, 235, 0.5);
  color: var(--text);
  background: var(--frame-bg-hover);
  text-decoration: none;
}

.motivation {
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  padding: 28px 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.motivation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue2), transparent);
}
.motivation p {
  color: var(--text2);
  font-size: 1.02rem;
  max-width: 68ch;
}
.motivation p + p {
  margin-top: 12px;
}
.motivation strong {
  color: var(--text);
}

section {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-desc {
  color: var(--text2);
  max-width: 60ch;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.card {
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  padding: 22px 24px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: var(--frame-bg-hover);
}
.card:hover::before {
  transform: scaleX(1);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.92rem;
  color: var(--text2);
}
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--bluelight);
}

.system-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  padding: 28px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue2), transparent);
}
@media (max-width: 640px) {
  .system-card {
    grid-template-columns: 1fr;
  }
}
.system-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.spec-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 0;
  border: 1px solid var(--border2);
  color: var(--text2);
  background: rgba(8, 14, 28, 0.45);
}
.btc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.btc-icon svg {
  width: 64px;
  height: 64px;
}

.perf-panel {
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.perf-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue2), transparent);
}
.perf-loading {
  text-align: center;
  padding: 48px;
  color: var(--text3);
}
.perf-error {
  text-align: center;
  padding: 32px;
  color: var(--danger);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-box {
  background: rgba(1, 4, 9, 0.45);
  border: var(--frame-border);
  border-radius: 0;
  padding: 16px;
  text-align: center;
}
.stat-box .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 6px;
}
.stat-box .value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat-box .sub {
  font-size: 0.72rem;
  color: var(--text3);
  margin-top: 4px;
}
.value.pos {
  color: var(--success);
}
.value.neg {
  color: var(--danger);
}
.value.neu {
  color: var(--text);
}
.stats-group-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin: 8px 0 12px;
}
.metrics-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .metrics-split {
    grid-template-columns: 1fr;
  }
}
.metrics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.metrics-table th {
  text-align: left;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bluelight);
  border-bottom: 1px solid var(--border);
  background: rgba(37, 99, 235, 0.06);
}
.metrics-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  font-size: 13px;
}
.metrics-table td:first-child {
  color: var(--text3);
  font-family: var(--font-ui);
}
.metrics-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}
.metrics-table tr:last-child td {
  border-bottom: none;
}
.metrics-table .highlight td {
  color: var(--text);
  background: rgba(37, 99, 235, 0.06);
}
.metrics-table .highlight td:last-child {
  color: var(--goldlight);
}
.combined-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.combined-bar.metrics-four,
.metrics-four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .combined-bar.metrics-four,
  .metrics-four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .combined-bar {
    grid-template-columns: 1fr;
  }
  .combined-bar.metrics-four,
  .metrics-four {
    grid-template-columns: 1fr;
  }
}
.perf-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.simple-explainer {
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.simple-explainer h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}
.explain-grid {
  display: grid;
  gap: 12px;
}
.explain-item {
  padding: 12px 14px;
  background: rgba(1, 4, 9, 0.4);
  border-radius: 0;
  border: 1px solid var(--border);
}
.explain-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--bluelight);
  margin-bottom: 4px;
}
.explain-item p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

.chart-wrap {
  position: relative;
  height: 300px;
  margin-top: 8px;
}
.chart-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.chart-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 0;
  border: var(--frame-border);
  background: var(--frame-bg);
  color: var(--text3);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.chart-tab:hover {
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.45);
}
.chart-tab.active {
  border-color: rgba(37, 99, 235, 0.55);
  color: var(--bluelight);
  background: var(--frame-bg-hover);
}

.indicator-list {
  list-style: none;
}
.indicator-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.indicator-list li:last-child {
  border-bottom: none;
}
.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--blue3);
  margin-top: 7px;
  flex-shrink: 0;
}
.ind-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.ind-desc {
  font-size: 0.85rem;
  color: var(--text2);
  margin-top: 2px;
}
.tf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tf-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 0;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--bluelight);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.onboarding-steps {
  counter-reset: step;
  list-style: none;
}
.onboarding-steps li {
  position: relative;
  padding: 20px 20px 20px 64px;
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  margin-bottom: 10px;
}
.onboarding-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--bluelight);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
.onboarding-steps li.required {
  border-color: rgba(37, 99, 235, 0.45);
}
.onboarding-steps h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}
.onboarding-steps p {
  font-size: 0.9rem;
  color: var(--text2);
}
.required-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--goldlight);
  margin-left: 8px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--text2);
}
.include-item::before {
  content: "→";
  color: var(--blue3);
  font-family: var(--font-mono);
  font-weight: 700;
}

.final-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--frame-bg);
  border: var(--frame-border);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue2), transparent);
}
.final-cta h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.final-cta p {
  color: var(--text2);
  margin-bottom: 24px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.hidden {
  display: none !important;
}

.popular-badge,
.new-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
  vertical-align: middle;
}
.popular-badge {
  color: var(--goldlight);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.new-badge {
  color: var(--bluelight);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.coin-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: var(--frame-border);
  background: rgba(8, 14, 28, 0.55);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.coin-icon svg {
  width: 36px;
  height: 36px;
}
.coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coin-alts {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--bluelight);
  letter-spacing: 0.04em;
}

/* Embedded in dashboard iframe (?embed=1) */
html.learn-more-embed .site-nav {
  display: none;
}
html.learn-more-embed,
html.learn-more-embed body {
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html.learn-more-embed::-webkit-scrollbar,
html.learn-more-embed body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
html.learn-more-embed .wrap {
  padding-top: 24px;
  padding-bottom: 32px;
}
/* Subscribers already own the pack — hide marketing subscribe CTAs */
html.learn-more-embed .cta-row .btn-primary,
html.learn-more-embed .final-cta .btn-primary,
html.learn-more-embed a.btn-primary[href="/trading-packages"],
html.learn-more-embed a.btn-primary[href="/investment-programs"] {
  display: none !important;
}
html.learn-more-embed .cta-row::before {
  content: "Included in your subscription";
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Hide redundant bottom marketing CTA in embed — badge already shown at top */
html.learn-more-embed .final-cta {
  display: none !important;
}
html.learn-more-embed .disclaimer {
  margin-top: 28px;
  margin-bottom: 8px;
}
.sys-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.sys-name .sys-note {
  color: var(--text3);
  font-weight: 400;
  font-size: 0.78em;
  letter-spacing: 0.02em;
}
.mini-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Per-system breakdown (Phantom) — CSS grid, not a bare table */
.systems-breakdown {
  margin-top: 4px;
  border: var(--frame-border);
  background: rgba(1, 4, 9, 0.4);
  overflow: hidden;
}
.systems-breakdown-head,
.systems-breakdown-row,
.systems-breakdown-foot {
  display: grid;
  grid-template-columns: minmax(120px, 1.4fr) repeat(3, minmax(72px, 1fr));
  gap: 8px;
  align-items: center;
  padding: 13px 18px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.systems-breakdown-head {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(13, 22, 38, 0.75);
  border-bottom: 1px solid var(--border2);
}
.systems-breakdown-head > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
}
.systems-breakdown-head > span:not(:first-child),
.systems-breakdown-row > span:not(:first-child),
.systems-breakdown-foot > span:not(:first-child) {
  text-align: right;
}
.systems-breakdown-row {
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
  color: var(--text);
  font-size: 0.9rem;
}
.systems-breakdown-row:hover {
  background: rgba(37, 99, 235, 0.06);
}
.systems-breakdown-row .pos,
.systems-breakdown-foot .pos {
  color: var(--success);
  font-weight: 600;
}
.systems-breakdown-foot {
  border-top: 1px solid var(--border2);
  background: rgba(37, 99, 235, 0.1);
  font-weight: 700;
  font-size: 0.9rem;
}
.systems-breakdown-foot > span:first-child {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--bluelight);
}
@media (max-width: 560px) {
  .systems-breakdown-head,
  .systems-breakdown-row,
  .systems-breakdown-foot {
    grid-template-columns: minmax(90px, 1.2fr) repeat(3, minmax(56px, 1fr));
    padding-left: 12px;
    padding-right: 12px;
    gap: 4px;
    font-size: 0.8rem;
  }
}

/* Legacy table support (other pages / docs) */
.systems-table-wrap {
  overflow-x: auto;
  margin-top: 4px;
  border: var(--frame-border);
  background: rgba(1, 4, 9, 0.35);
}
.systems-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  min-width: 480px;
}
.systems-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid var(--border2);
  background: rgba(13, 22, 38, 0.65);
}
.systems-table th:not(:first-child),
.systems-table td:not(:first-child) {
  text-align: right;
}
.systems-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
  font-variant-numeric: tabular-nums;
  color: var(--text);
  vertical-align: middle;
}
.systems-table tbody tr:hover td {
  background: rgba(37, 99, 235, 0.05);
}
.systems-table tbody tr:last-child td {
  border-bottom: none;
}
.systems-table td.pos {
  color: var(--success);
  font-weight: 600;
}
.systems-table td.neg {
  color: var(--danger);
  font-weight: 600;
}
.systems-table tfoot td {
  border-top: 1px solid var(--border2);
  border-bottom: none;
  padding: 14px 16px;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
  color: var(--text);
}
.systems-table tfoot td:first-child {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--bluelight);
}

@media (max-width: 640px) {
  .wrap {
    padding: 32px 16px 64px;
  }
  .motivation,
  .system-card,
  .perf-panel,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }
  .nav-name {
    display: none;
  }
}
