:root {
  --night: #090913;
  --night-2: #111022;
  --panel: rgba(18, 18, 33, 0.84);
  --panel-hot: rgba(36, 22, 42, 0.84);
  --paper: #fff6d7;
  --muted: #aeb4c7;
  --line: rgba(255, 246, 215, 0.18);
  --pink: #ff4fb8;
  --aqua: #2ff3e0;
  --lime: #a7ff46;
  --sun: #ffd447;
  --orange: #ff8a35;
  --blue: #4f7cff;
  --red: #ff4a4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --glow-pink: 0 0 22px rgba(255, 79, 184, 0.44);
  --glow-aqua: 0 0 22px rgba(47, 243, 224, 0.34);
  --radius: 8px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, rgba(255, 79, 184, 0.22), transparent 32%),
    linear-gradient(220deg, rgba(47, 243, 224, 0.16), transparent 36%),
    linear-gradient(180deg, #17112a 0%, #0a0b14 48%, #06060c 100%);
  color: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 212, 71, 0.08) 8% 8.3%, transparent 8.3% 100%),
    repeating-linear-gradient(112deg, transparent 0 56px, rgba(255, 255, 255, 0.035) 56px 57px);
  content: "";
  opacity: 0.72;
}

body::after {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 32vh;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56)),
    repeating-linear-gradient(90deg, rgba(255, 246, 215, 0.12) 0 2px, transparent 2px 84px);
  clip-path: polygon(0 44%, 9% 38%, 9% 27%, 16% 27%, 16% 43%, 25% 32%, 32% 39%, 32% 23%, 38% 23%, 38% 43%, 48% 32%, 57% 38%, 57% 18%, 63% 18%, 63% 42%, 74% 28%, 86% 40%, 86% 25%, 92% 25%, 92% 42%, 100% 34%, 100% 100%, 0 100%);
  content: "";
  opacity: 0.42;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 246, 215, 0.14);
  background: rgba(6, 6, 12, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid #05050a;
  background:
    linear-gradient(135deg, var(--sun), var(--orange) 52%, var(--pink));
  color: #080710;
  font-weight: 950;
  font-size: 0.88rem;
  letter-spacing: 0;
  box-shadow:
    5px 5px 0 #05050a,
    var(--glow-pink);
}

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

.brand strong {
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 #05050a;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f5edd2;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(47, 243, 224, 0.5);
  background: rgba(47, 243, 224, 0.11);
  box-shadow: var(--glow-aqua);
  outline: none;
}

main {
  display: grid;
  gap: clamp(36px, 6vw, 82px);
  padding: clamp(22px, 4vw, 54px);
}

.article-main {
  max-width: 1180px;
  margin: 0 auto;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(47, 243, 224, 0.18), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.article-hero::after {
  position: absolute;
  right: -40px;
  bottom: -56px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 212, 71, 0.16) 0 12px,
    rgba(255, 79, 184, 0.18) 12px 24px
  );
  content: "";
  opacity: 0.44;
}

.article-hero > * {
  position: relative;
  z-index: 1;
}

.article-hero h1 {
  max-width: 12ch;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.toc-card,
.content-panel,
.method-table article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.toc-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.toc-card span,
.method-table span {
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.toc-card a,
.guide-card a,
.footer a {
  color: var(--sun);
  font-weight: 900;
}

.guide-card a {
  display: inline-block;
  margin-top: 12px;
}

.content-panel {
  padding: clamp(20px, 3vw, 30px);
}

.content-panel h2 + p,
.content-panel p + h2 {
  margin-top: 18px;
}

.content-panel p {
  color: #e4dac6;
  font-size: 1.04rem;
  line-height: 1.62;
}

.method-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-table article {
  min-height: 220px;
  padding: 18px;
}

.method-table p {
  color: #d6cdbb;
  line-height: 1.52;
}

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

.policy-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 243, 224, 0.12), transparent 46%),
    rgba(5, 5, 10, 0.54);
  box-shadow: var(--shadow);
}

.policy-grid span {
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-grid p {
  color: #d6cdbb;
  line-height: 1.52;
}

.submit-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.report-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-auth {
  display: grid;
}

.token-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.token-form .form-note {
  grid-column: 1 / -1;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.admin-stat,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-stat {
  min-height: 140px;
  padding: 18px;
}

.admin-stat span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-stat strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
  text-shadow: 2px 2px 0 #05050a;
}

.source-stat strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.18;
  text-shadow: none;
}

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

.admin-panel {
  padding: 18px;
}

.admin-actions {
  margin-bottom: 14px;
}

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

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

.funnel-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 246, 215, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.5);
}

.funnel-row strong,
.funnel-row span {
  display: block;
}

.funnel-row span,
.funnel-row small {
  color: var(--muted);
}

.funnel-meter {
  overflow: hidden;
  height: 10px;
  border: 1px solid rgba(255, 246, 215, 0.14);
  border-radius: 999px;
  background: rgba(255, 246, 215, 0.08);
}

.funnel-meter i {
  display: block;
  height: 100%;
  min-width: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
  box-shadow: var(--glow-aqua);
}

.admin-row,
.empty-state {
  padding: 12px;
  border: 1px solid rgba(255, 246, 215, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.5);
}

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

.admin-row strong {
  color: #ffffff;
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.breakdown-row strong {
  overflow-wrap: anywhere;
}

.breakdown-row span {
  margin-top: 0;
  color: var(--sun);
  font-weight: 950;
}

.admin-row span {
  margin-top: 5px;
  color: #d6cdbb;
}

.admin-row small {
  margin-top: 5px;
  color: var(--muted);
}

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

.admin-row-actions button {
  min-height: 32px;
  border: 1px solid rgba(255, 246, 215, 0.2);
  border-radius: 999px;
  background: rgba(47, 243, 224, 0.1);
  color: #fff6d7;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-row-actions button:hover,
.admin-row-actions button:focus-visible {
  border-color: var(--aqua);
  box-shadow: var(--glow-aqua);
  outline: none;
}

.empty-state {
  margin: 0;
  color: #d6cdbb;
}

.tracker-board,
.payout-log-board {
  display: grid;
  gap: 10px;
}

.tracker-row,
.tracker-empty,
.payout-row,
.payout-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tracker-row,
.outreach-row,
.payout-row {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1fr) repeat(3, minmax(120px, 0.4fr));
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.outreach-row,
.payout-row {
  grid-template-columns: 44px minmax(220px, 1fr) repeat(3, minmax(120px, 0.4fr)) auto;
}

.outreach-row {
  grid-template-columns: 44px minmax(0, 1fr) repeat(3, minmax(82px, 0.34fr)) auto;
}

.split-board,
.business-board {
  display: grid;
  gap: 10px;
}

.blueprint-board,
.buyer-pipeline-board,
.buyer-board,
.compliance-board,
.demand-board,
.founder-board,
.ladder-board,
.millionaire-board,
.objection-board,
.offer-board,
.outreach-board,
.pricing-board,
.proof-pack-board,
.proof-board,
.renewal-board,
.roadmap-board,
.pitch-board,
.sponsor-board,
.validation-board {
  display: grid;
  gap: 16px;
}

.split-row,
.business-row {
  display: grid;
  grid-template-columns: 44px minmax(140px, 1fr) repeat(2, minmax(110px, 0.5fr));
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.5);
}

.tracker-rank {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #05050a;
  border-radius: 50%;
  background: var(--sun);
  color: #05050a;
  font-weight: 950;
  box-shadow: 3px 3px 0 #05050a;
}

.tracker-row h3,
.outreach-row h3,
.payout-row h3 {
  margin-bottom: 5px;
}

.outreach-row small {
  display: block;
  margin-top: 8px;
  color: #bfb49d;
  line-height: 1.35;
}

.split-row h3,
.business-row h3 {
  margin-bottom: 5px;
}

.tracker-row p,
.outreach-row p,
.payout-row p {
  margin: 0;
  color: #d6cdbb;
}

.split-row p,
.business-row p {
  margin: 0;
  color: #d6cdbb;
}

.tracker-row span,
.outreach-row span,
.payout-row span {
  display: block;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.split-row span,
.business-row span {
  display: block;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tracker-row strong,
.outreach-row strong,
.payout-row strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.3rem;
  text-shadow: 2px 2px 0 #05050a;
}

.split-row strong,
.business-row strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.3rem;
  text-shadow: 2px 2px 0 #05050a;
}

.tracker-empty,
.payout-empty {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 20px;
}

.tracker-empty p,
.payout-empty p {
  margin: 0;
  color: #d6cdbb;
}

.remove-outreach-row,
.remove-payout-row {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 246, 215, 0.22);
  border-radius: 50%;
  background: rgba(5, 5, 10, 0.74);
  color: var(--pink);
  font-weight: 950;
}

.remove-outreach-row:hover,
.remove-outreach-row:focus-visible,
.remove-payout-row:hover,
.remove-payout-row:focus-visible {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  outline: none;
}

.command-center {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(22px, 4vw, 44px);
  min-height: calc(100vh - 138px);
  align-items: stretch;
}

.briefing-panel,
.tool-panel,
.opportunity-panel,
.waitlist-section,
.crew-form,
.crew-board,
.lane-card,
.network-card,
.ticker-band article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.briefing-panel {
  position: relative;
  display: flex;
  min-height: 560px;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.briefing-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.2), transparent 32%),
    linear-gradient(315deg, rgba(47, 243, 224, 0.15), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 246, 215, 0.04) 0 1px, transparent 1px 18px);
  content: "";
}

.briefing-panel::after {
  position: absolute;
  right: -60px;
  bottom: -46px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255, 212, 71, 0.48);
  border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 212, 71, 0.2) 0 12px,
    rgba(255, 79, 184, 0.18) 12px 24px
  );
  content: "";
  opacity: 0.52;
}

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

.status-strip {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 243, 224, 0.32);
  border-radius: 999px;
  background: rgba(47, 243, 224, 0.1);
  color: #efffff;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: var(--glow-aqua);
}

.status-strip span:last-child {
  overflow-wrap: anywhere;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(167, 255, 70, 0.16), 0 0 18px rgba(167, 255, 70, 0.72);
}

.eyebrow {
  margin: 0 0 10px;
  max-width: 100%;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.25;
  text-shadow: 0 0 16px rgba(47, 243, 224, 0.4);
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin: 28px 0 18px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 6.1rem;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    4px 4px 0 #05050a,
    8px 8px 0 rgba(255, 79, 184, 0.46),
    0 0 32px rgba(255, 212, 71, 0.28);
}

h2 {
  margin: 0;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 3px 3px 0 #05050a;
}

h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
}

p {
  overflow-wrap: anywhere;
}

.lede {
  max-width: 58ch;
  margin: 0;
  color: #eee3cc;
  font-size: 1.12rem;
  line-height: 1.58;
}

.street-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.street-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 212, 71, 0.34);
  border-radius: 999px;
  background: rgba(255, 212, 71, 0.11);
  color: #fff6d7;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #05050a;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
}

.button.primary {
  background: linear-gradient(135deg, var(--sun), var(--orange) 58%, var(--pink));
  color: #080710;
  box-shadow: 5px 5px 0 #05050a, var(--glow-pink);
}

.button.primary span {
  background: #05050a;
  color: var(--sun);
}

.button.ghost {
  border-color: rgba(47, 243, 224, 0.5);
  background: rgba(47, 243, 224, 0.1);
  color: #ffffff;
  box-shadow: var(--glow-aqua);
}

.button.ghost span {
  background: var(--aqua);
  color: #05050a;
}

.button.dark {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  box-shadow: 5px 5px 0 #05050a;
}

.button.dark span {
  background: #05050a;
  color: var(--sun);
}

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

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
}

.metric-row div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 246, 215, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.58);
}

.metric-row dt {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.metric-row dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: clamp(1.42rem, 3vw, 2rem);
  font-weight: 950;
  text-shadow: 2px 2px 0 #05050a;
}

.market-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 215, 0.16);
  border-radius: var(--radius);
  background: #070812;
  box-shadow: var(--shadow), var(--glow-pink);
}

.market-map::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  content: "";
  mix-blend-mode: screen;
}

.market-map canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.map-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: min(300px, calc(100% - 36px));
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid rgba(47, 243, 224, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.74);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: var(--glow-aqua);
}

.map-overlay div {
  padding: 14px;
}

.map-overlay div + div {
  border-left: 1px solid rgba(255, 246, 215, 0.14);
}

.map-overlay span,
.result-grid span,
.lane-card span,
.ticker-band span,
.form-note {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.map-overlay span {
  color: var(--aqua);
}

.map-overlay strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.42rem;
  line-height: 1.05;
  text-shadow: 2px 2px 0 #05050a;
}

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

.ticker-band article {
  min-height: 128px;
  overflow: hidden;
  padding: 18px;
  box-shadow: none;
}

.ticker-band article:nth-child(1) {
  border-color: rgba(255, 212, 71, 0.3);
}

.ticker-band article:nth-child(2) {
  border-color: rgba(255, 79, 184, 0.34);
}

.ticker-band article:nth-child(3) {
  border-color: rgba(47, 243, 224, 0.34);
}

.ticker-band span {
  color: var(--sun);
}

.ticker-band strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.25;
}

.section-block {
  display: grid;
  gap: 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

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

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

.network-card {
  min-height: 240px;
  padding: 18px;
  box-shadow: none;
}

.network-card.terminal-card {
  background:
    linear-gradient(145deg, rgba(255, 79, 184, 0.32), transparent 38%),
    linear-gradient(315deg, rgba(47, 243, 224, 0.24), transparent 42%),
    rgba(5, 5, 10, 0.86);
  color: white;
}

.network-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 212, 71, 0.16);
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.network-card:nth-child(2) .network-kicker {
  color: var(--pink);
}

.network-card:nth-child(3) .network-kicker {
  color: var(--aqua);
}

.network-card:nth-child(4) .network-kicker {
  color: var(--lime);
}

.network-card h3 {
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.56rem;
  line-height: 1;
  text-shadow: 2px 2px 0 #05050a;
}

.network-card p {
  margin: 12px 0 0;
  color: #d9d0bd;
  line-height: 1.52;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
}

.guide-copy,
.guide-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.guide-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
}

.guide-copy p {
  margin: 0;
  color: #e4dac6;
  font-size: 1.04rem;
  line-height: 1.58;
}

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

.guide-card {
  min-height: 210px;
  padding: 18px;
}

.guide-card span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid #05050a;
  border-radius: 50%;
  background: var(--sun);
  color: #05050a;
  font-weight: 950;
  box-shadow: 3px 3px 0 #05050a;
}

.guide-card:nth-child(2) span {
  background: var(--pink);
  color: white;
}

.guide-card:nth-child(3) span {
  background: var(--aqua);
  color: #05050a;
}

.guide-card:nth-child(4) span {
  background: var(--lime);
  color: #05050a;
}

.guide-card:nth-child(5) span {
  background: var(--blue);
  color: #ffffff;
}

.guide-card:nth-child(6) span {
  background: var(--orange);
  color: #05050a;
}

.guide-card:nth-child(7) span {
  background: var(--sun);
  color: #05050a;
}

.guide-card p,
.faq-item p {
  margin: 10px 0 0;
  color: #d6cdbb;
  line-height: 1.52;
}

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

.faq-item {
  min-height: 220px;
  padding: 18px;
}

.faq-item h3 {
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.34rem;
  line-height: 1.05;
  text-shadow: 2px 2px 0 #05050a;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 40px;
  border: 1px solid rgba(255, 246, 215, 0.2);
  border-radius: 999px;
  background: rgba(255, 246, 215, 0.06);
  color: #f9f1d8;
  padding: 0 15px;
  font-weight: 950;
}

.chip.active,
.chip:hover,
.chip:focus-visible {
  border-color: #05050a;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: #080710;
  box-shadow: 4px 4px 0 #05050a;
  outline: none;
}

.method-filter-bar {
  max-width: 760px;
}

.market-filter-bar {
  max-width: 920px;
}

.score-board {
  display: grid;
  gap: 12px;
}

.micro-board {
  display: grid;
  gap: 12px;
}

.score-card,
.score-empty,
.micro-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.12), transparent 36%),
    rgba(18, 18, 33, 0.84);
  box-shadow: var(--shadow);
}

.score-card,
.micro-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  padding: 16px;
}

.score-rank {
  display: grid;
  min-height: 100%;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(47, 243, 224, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.7);
}

.score-rank span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
}

.score-rank strong {
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 2.8rem;
  line-height: 0.95;
  text-shadow: 3px 3px 0 #05050a;
}

.score-copy {
  min-width: 0;
}

.micro-copy {
  min-width: 0;
}

.score-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.score-heading span {
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.score-heading h3 {
  margin-top: 4px;
  font-size: 1.54rem;
}

.score-heading mark {
  display: inline-grid;
  min-width: 70px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 212, 71, 0.28);
  border-radius: 999px;
  background: rgba(255, 212, 71, 0.12);
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.score-copy p {
  margin: 10px 0 0;
  color: #ded4c0;
  line-height: 1.5;
}

.score-bar {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 215, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 10, 0.72);
}

.score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--sun), var(--pink));
  box-shadow: var(--glow-aqua);
}

.score-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.score-meta div {
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(255, 246, 215, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.48);
}

.score-meta dt {
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.score-meta dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.score-empty {
  padding: 18px;
  color: #d6cdbb;
}

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

.lane-card {
  position: relative;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  box-shadow: none;
}

.lane-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--sun), var(--aqua));
  content: "";
}

.lane-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.lane-card p {
  margin: 0;
  color: #d6cdbb;
  line-height: 1.48;
}

.lane-card .tag {
  width: fit-content;
  min-width: 70px;
  height: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(47, 243, 224, 0.28);
  border-radius: 999px;
  background: rgba(47, 243, 224, 0.1);
  color: var(--aqua);
  text-align: center;
}

.lane-card .payout {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lane-card .payout strong {
  display: block;
  margin-top: 4px;
  color: var(--sun);
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.62rem;
  text-shadow: 2px 2px 0 #05050a;
}

.risk-meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.risk-meter i {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 246, 215, 0.12);
}

.risk-meter i.on:nth-child(1),
.risk-meter i.on:nth-child(2) {
  background: var(--lime);
}

.risk-meter i.on:nth-child(3) {
  background: var(--sun);
}

.risk-meter i.on:nth-child(4),
.risk-meter i.on:nth-child(5) {
  background: var(--red);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.tool-panel,
.opportunity-panel {
  padding: clamp(20px, 3vw, 28px);
}

.panel-heading {
  margin-bottom: 20px;
}

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

label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

label span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 246, 215, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.66);
  color: #fff6d7;
  overflow: hidden;
  padding: 0 12px;
  text-overflow: ellipsis;
}

input,
select {
  min-height: 46px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(47, 243, 224, 0.13);
  outline: none;
}

label.consent-row {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 0;
}

label.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--aqua);
}

label.consent-row span {
  color: #e4dac6;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

label.consent-row a {
  color: var(--sun);
  font-weight: 950;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.result-grid article {
  min-height: 98px;
  padding: 14px;
  border: 1px solid rgba(255, 246, 215, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.14), transparent 48%),
    rgba(5, 5, 10, 0.78);
  color: white;
}

.result-grid span {
  color: var(--aqua);
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.64rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-shadow: 2px 2px 0 #05050a;
}

.calculator-summary {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(47, 243, 224, 0.24);
  border-radius: var(--radius);
  background: rgba(47, 243, 224, 0.1);
  color: #efffff;
  font-weight: 850;
  line-height: 1.5;
}

.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.planner-actions .button {
  min-width: min(210px, 100%);
}

.plan-stack {
  display: grid;
  gap: 0;
}

.blueprint-plan,
.buyer-plan,
.compliance-plan,
.demand-plan,
.founder-plan,
.millionaire-plan,
.objection-plan,
.offer-plan,
.pitch-plan,
.pricing-plan,
.proof-pack-plan,
.proof-plan,
.renewal-plan,
.revenue-plan,
.roadmap-plan,
.sponsor-plan,
.validation-plan {
  margin-top: 6px;
}

.blueprint-board .business-row strong,
.buyer-pipeline-board .outreach-row strong,
.buyer-board .business-row strong,
.compliance-board .business-row strong,
.demand-board .business-row strong,
.founder-board .business-row strong,
.ladder-board .business-row strong,
.millionaire-board .business-row strong,
.objection-board .business-row strong,
.offer-board .business-row strong,
.pitch-board .business-row strong,
.pricing-board .business-row strong,
.proof-pack-board .business-row strong,
.proof-board .business-row strong,
.renewal-board .business-row strong,
.roadmap-board .business-row strong,
.sponsor-board .business-row strong,
.validation-board .business-row strong {
  overflow-wrap: anywhere;
}

.objection-plan textarea,
.proof-pack-plan textarea {
  min-height: 168px;
  margin-top: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.48;
}

.plan-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 246, 215, 0.14);
}

.plan-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.plan-index {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 212, 71, 0.34);
  border-radius: 50%;
  background: rgba(255, 212, 71, 0.12);
  color: var(--sun);
  font-weight: 950;
}

.plan-step span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-step h3 {
  margin-top: 4px;
}

.plan-step p {
  margin: 8px 0 0;
  color: #ded4c0;
  line-height: 1.5;
}

.plan-step dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.plan-step dl div {
  min-height: 62px;
  padding: 9px;
  border: 1px solid rgba(255, 246, 215, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.42);
}

.plan-step dt {
  color: var(--sun);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-step dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.25;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.calculator-actions .button {
  min-width: min(220px, 100%);
}

.comparison-board {
  display: grid;
  gap: 10px;
}

.comparison-row,
.comparison-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 44px minmax(220px, 1fr) repeat(3, minmax(110px, 0.34fr)) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.comparison-row h3 {
  margin-bottom: 5px;
}

.comparison-row p {
  margin: 0;
  color: #d6cdbb;
  line-height: 1.45;
}

.comparison-row span {
  display: block;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-row strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-family: Impact, "Arial Black", Inter, system-ui, sans-serif;
  font-size: 1.22rem;
  text-shadow: 2px 2px 0 #05050a;
}

.comparison-empty {
  padding: 18px;
  color: #d6cdbb;
}

.remove-comparison {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 246, 215, 0.22);
  border-radius: 50%;
  background: rgba(5, 5, 10, 0.74);
  color: var(--pink);
  font-weight: 950;
}

.remove-comparison:hover,
.remove-comparison:focus-visible {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  outline: none;
}

.form-note a {
  color: var(--sun);
}

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

.thesis-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.46);
}

.thesis-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #05050a;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 950;
  box-shadow: 3px 3px 0 #05050a;
}

.thesis-list article:nth-child(2) > span {
  background: var(--aqua);
  color: #05050a;
}

.thesis-list article:nth-child(3) > span {
  background: var(--sun);
  color: #05050a;
}

.thesis-list p {
  margin: 6px 0 0;
  color: #d6cdbb;
  line-height: 1.5;
}

.crew-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.2fr);
  gap: 18px;
}

.crew-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  padding: 18px;
  box-shadow: none;
}

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

.crew-board {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 344px;
  padding: 18px;
  box-shadow: none;
}

.crew-post {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 10, 0.5);
}

.crew-post h3 {
  margin-bottom: 6px;
}

.crew-post p {
  margin: 0;
  color: #d6cdbb;
  line-height: 1.45;
}

.crew-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.crew-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 79, 184, 0.14);
  color: #ffe8f7;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.remove-post {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 246, 215, 0.22);
  border-radius: 50%;
  background: rgba(5, 5, 10, 0.74);
  color: var(--pink);
  font-weight: 950;
}

.remove-post:hover,
.remove-post:focus-visible {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  outline: none;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.24), transparent 42%),
    linear-gradient(315deg, rgba(255, 212, 71, 0.22), transparent 38%),
    rgba(18, 18, 33, 0.86);
}

.waitlist-section p {
  max-width: 62ch;
  color: #e4dac6;
  line-height: 1.56;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: #d3c8b4;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px) 44px;
  color: #c6beac;
  font-size: 0.86rem;
}

.footer p {
  margin: 0;
  max-width: 68ch;
}

@media (max-width: 1100px) {
  .command-center,
  .split-section,
  .crew-layout,
  .guide-layout,
  .article-layout,
  .submit-layout {
    grid-template-columns: 1fr;
  }

  .command-center {
    min-height: auto;
  }

  .briefing-panel,
  .market-map {
    min-height: 520px;
  }

  .lane-grid,
  .network-grid,
  .faq-list,
  .policy-grid,
  .method-table,
  .admin-grid,
  .admin-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracker-row {
    grid-template-columns: 44px minmax(220px, 1fr) repeat(2, minmax(120px, 0.5fr));
  }

  .payout-row {
    grid-template-columns: 44px minmax(220px, 1fr) repeat(2, minmax(120px, 0.5fr)) auto;
  }

  .payout-row > div:nth-of-type(5) {
    grid-column: 2 / -1;
  }

  .split-row,
  .business-row {
    grid-template-columns: 44px minmax(180px, 1fr) minmax(110px, 0.5fr);
  }

  .split-row > div:nth-of-type(4),
  .business-row > div:nth-of-type(4) {
    grid-column: 2 / -1;
  }

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

  .comparison-row {
    grid-template-columns: 44px minmax(220px, 1fr) repeat(2, minmax(110px, 0.5fr)) auto;
  }

  .comparison-row > div:nth-of-type(4) {
    grid-column: 2 / -1;
  }

  .tracker-row > div:last-child {
    grid-column: 2 / -1;
  }

  .toc-card {
    position: static;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  main {
    max-width: 100vw;
    padding: 18px 12px;
  }

  .command-center,
  .briefing-panel,
  .market-map,
  .tool-panel,
  .opportunity-panel,
  .crew-form,
  .crew-board,
  .waitlist-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .briefing-panel,
  .market-map {
    min-height: auto;
  }

  .briefing-panel {
    padding: 22px;
    width: calc(100% - 8px);
  }

  .market-map canvas {
    min-height: 420px;
  }

  h1 {
    max-width: 8.2ch;
    font-size: 3rem;
  }

  .lede {
    max-width: 34ch;
  }

  h2 {
    font-size: 2.12rem;
  }

  .metric-row,
  .ticker-band,
  .lane-grid,
  .network-grid,
  .guide-grid,
  .faq-list,
  .policy-grid,
  .method-table,
  .admin-grid,
  .admin-panels,
  .control-stack,
  .result-grid,
  .crew-form,
  .report-form,
  .token-form,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .tracker-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .outreach-row,
  .payout-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .outreach-row > div:nth-of-type(n + 2),
  .payout-row > div:nth-of-type(n + 2) {
    grid-column: 2 / -1;
  }

  .outreach-row .remove-outreach-row,
  .payout-row .remove-payout-row {
    grid-column: 3;
    grid-row: 1;
  }

  .split-row,
  .business-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .split-row > div:nth-of-type(n + 3),
  .business-row > div:nth-of-type(n + 3) {
    grid-column: 2 / -1;
  }

  .score-card,
  .micro-card {
    grid-template-columns: 1fr;
  }

  .score-rank {
    grid-template-columns: auto 1fr;
    min-height: 78px;
    justify-items: start;
    padding: 0 18px;
  }

  .score-rank strong {
    justify-self: end;
  }

  .score-heading {
    flex-direction: column;
  }

  .score-heading mark {
    min-width: 0;
    padding: 0 12px;
  }

  .score-meta {
    grid-template-columns: 1fr;
  }

  .plan-step dl {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .comparison-row > div:nth-of-type(n + 2) {
    grid-column: 2 / -1;
  }

  .comparison-row .remove-comparison {
    grid-column: 3;
    grid-row: 1;
  }

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

  .tracker-row > div:last-child {
    grid-column: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .lane-card {
    min-height: 240px;
  }

  .footer {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: calc(100% - 8px);
    min-width: 0;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .nav-links a {
    padding: 6px 6px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .briefing-panel {
    padding: 20px;
    width: calc(100% - 26px);
  }

  .button.primary,
  .button.dark {
    box-shadow: 3px 3px 0 #05050a, var(--glow-pink);
  }

  .hero-actions .button {
    width: 100%;
  }

  .eyebrow {
    max-width: 26ch;
  }

  .lede {
    max-width: 27ch;
  }

  .street-tags span {
    width: 100%;
    text-align: center;
  }

  .map-overlay {
    grid-template-columns: 1fr;
  }

  .map-overlay div + div {
    border-top: 1px solid rgba(255, 246, 215, 0.14);
    border-left: 0;
  }
}

/* Platform polish pass */
:root {
  --night: #070810;
  --night-2: #0d1019;
  --panel: rgba(16, 18, 28, 0.78);
  --panel-hot: rgba(26, 22, 34, 0.8);
  --paper: #fff8df;
  --muted: #a8b0bf;
  --line: rgba(255, 248, 223, 0.14);
  --pink: #ff4db2;
  --aqua: #31e8d4;
  --lime: #b7f05d;
  --sun: #ffd166;
  --orange: #ff8a3c;
  --blue: #7aa5ff;
  --red: #ff5c5c;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.085);
  --ink-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 42px rgba(0, 0, 0, 0.22);
  --glow-pink: 0 16px 42px rgba(255, 77, 178, 0.18);
  --glow-aqua: 0 16px 42px rgba(49, 232, 212, 0.14);
  --radius: 8px;
  --hairline: 1px solid rgba(255, 248, 223, 0.13);
}

body {
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.075) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, rgba(255, 77, 178, 0.2), transparent 28%),
    linear-gradient(225deg, rgba(49, 232, 212, 0.13), transparent 34%),
    linear-gradient(180deg, #13101d 0%, #090b13 44%, #05060b 100%);
  background-size: 84px 100%, 100% 56px, auto, auto, auto;
  text-rendering: geometricprecision;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 209, 102, 0.08) 12% 12.16%, transparent 12.16% 100%),
    repeating-linear-gradient(112deg, transparent 0 76px, rgba(255, 255, 255, 0.025) 76px 77px);
  opacity: 0.58;
}

body::after {
  height: 22vh;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64)),
    repeating-linear-gradient(90deg, rgba(255, 248, 223, 0.08) 0 1px, transparent 1px 96px);
  opacity: 0.22;
}

::selection {
  background: rgba(49, 232, 212, 0.32);
  color: #ffffff;
}

.topbar {
  position: sticky;
  overflow: hidden;
  min-height: 72px;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 248, 223, 0.1);
  background:
    linear-gradient(180deg, rgba(17, 20, 31, 0.94), rgba(8, 9, 16, 0.82)),
    rgba(6, 7, 12, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.topbar::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 232, 212, 0.54), rgba(255, 209, 102, 0.28), transparent);
  content: "";
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 77, 178, 0.22), transparent 22%, rgba(49, 232, 212, 0.22), transparent);
  content: "";
  opacity: 0.8;
}

.brand {
  position: relative;
  flex: 0 0 auto;
  padding-right: 14px;
}

.brand::after {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 223, 0.18), transparent);
  content: "";
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 223, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.98), rgba(255, 138, 60, 0.95) 46%, rgba(255, 77, 178, 0.94));
  box-shadow: 0 12px 32px rgba(255, 77, 178, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.brand strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  text-shadow: none;
}

.brand small {
  color: rgba(255, 248, 223, 0.58);
}

.nav-links {
  max-width: min(72vw, 1120px);
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 3px 2px 5px;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0 93%, transparent);
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  min-height: 34px;
  border-color: rgba(255, 248, 223, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 248, 223, 0.78);
  font-size: 0.82rem;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a[href*="real-money"],
.nav-links a[href*="buyer"],
.nav-links a[href*="founder"] {
  border-color: rgba(49, 232, 212, 0.16);
  background: rgba(49, 232, 212, 0.065);
  color: rgba(255, 248, 223, 0.88);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(49, 232, 212, 0.36);
  background: rgba(49, 232, 212, 0.1);
  color: #ffffff;
  box-shadow: none;
  transform: translateY(-1px);
}

main {
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(20px, 3.5vw, 52px);
}

.command-center {
  grid-template-columns: minmax(340px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(18px, 3vw, 34px);
  min-height: auto;
  align-items: stretch;
}

.article-hero,
.briefing-panel,
.tool-panel,
.opportunity-panel,
.waitlist-section,
.crew-form,
.crew-board,
.guide-copy,
.guide-card,
.faq-item,
.toc-card,
.content-panel,
.method-table article,
.policy-grid article,
.admin-stat,
.admin-panel,
.tracker-row,
.tracker-empty,
.payout-row,
.payout-empty,
.comparison-row,
.comparison-empty,
.lane-card,
.network-card,
.ticker-band article,
.score-card,
.score-empty,
.micro-card {
  border: var(--hairline);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 25, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.article-hero,
.briefing-panel,
.tool-panel,
.opportunity-panel,
.waitlist-section {
  position: relative;
  overflow: hidden;
}

.article-hero::before,
.briefing-panel::before,
.tool-panel::before,
.opportunity-panel::before,
.waitlist-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 209, 102, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(49, 232, 212, 0.1), transparent 42%);
  content: "";
  opacity: 0.78;
}

.article-hero::after,
.briefing-panel::after {
  right: 18px;
  bottom: 18px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.13) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 77, 178, 0.11) 0 1px, transparent 1px 100%);
  background-size: 16px 16px;
  opacity: 0.48;
  transform: skew(-8deg);
}

.briefing-panel,
.market-map {
  min-height: 560px;
}

.briefing-panel {
  justify-content: flex-end;
  padding: clamp(24px, 2.6vw, 32px);
}

.status-strip {
  border-color: rgba(49, 232, 212, 0.22);
  border-radius: 8px;
  background: rgba(49, 232, 212, 0.08);
  box-shadow: none;
}

.status-dot {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 240, 93, 0.12), 0 0 18px rgba(183, 240, 93, 0.56);
}

.eyebrow,
label span,
.split-row span,
.business-row span,
.tracker-row span,
.outreach-row span,
.payout-row span,
.result-grid span,
.map-overlay span,
.toc-card span,
.method-table span,
.plan-step span,
.score-rank span,
.score-heading span,
.network-kicker,
.ticker-band span,
.form-note {
  letter-spacing: 0;
}

h1,
h2,
.network-card h3,
.faq-item h3,
.metric-row dd,
.map-overlay strong,
.lane-card .payout strong,
.result-grid strong,
.split-row strong,
.business-row strong,
.tracker-row strong,
.outreach-row strong,
.payout-row strong,
.comparison-row strong,
.admin-stat strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-shadow: none;
}

h1 {
  max-width: 100%;
  margin: 24px 0 18px;
  font-size: clamp(3.55rem, 7.4vw, 6.55rem);
  line-height: 0.88;
  overflow-wrap: break-word;
}

.article-hero h1 {
  max-width: min(100%, 13ch);
  font-size: clamp(3.1rem, 7vw, 6.15rem);
}

h2 {
  font-size: clamp(2.12rem, 4.3vw, 4.35rem);
  line-height: 0.96;
}

h3 {
  line-height: 1.12;
}

.lede {
  color: rgba(255, 248, 223, 0.82);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.street-tags span,
.chip,
.crew-meta span,
.score-heading mark,
.network-kicker {
  border-radius: 8px;
}

.street-tags span {
  border-color: rgba(255, 209, 102, 0.24);
  background: rgba(255, 209, 102, 0.08);
}

.button {
  min-height: 46px;
  border: 1px solid rgba(255, 248, 223, 0.16);
  border-radius: 8px;
  box-shadow: none;
}

.button.primary {
  border-color: rgba(255, 209, 102, 0.7);
  background: linear-gradient(135deg, var(--sun), var(--orange) 58%, var(--pink));
  box-shadow: 0 14px 34px rgba(255, 138, 60, 0.2);
}

.button.ghost {
  border-color: rgba(49, 232, 212, 0.28);
  background: rgba(49, 232, 212, 0.08);
  box-shadow: none;
}

.button.dark {
  border-color: rgba(255, 77, 178, 0.34);
  background: linear-gradient(135deg, rgba(255, 77, 178, 0.82), rgba(122, 165, 255, 0.78));
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.metric-row div,
.score-meta div,
.plan-step dl div,
.result-grid article,
.thesis-list article,
.admin-row,
.empty-state,
.crew-post,
.split-row,
.business-row,
.outreach-row,
.comparison-row,
.payout-row {
  border-color: rgba(255, 248, 223, 0.1);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.metric-row dd,
.result-grid strong,
.map-overlay strong,
.lane-card .payout strong,
.split-row strong,
.business-row strong,
.tracker-row strong,
.outreach-row strong,
.payout-row strong,
.comparison-row strong {
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 920;
}

.market-map {
  height: 560px;
  border: 1px solid rgba(255, 248, 223, 0.12);
  background: #06070c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(49, 232, 212, 0.08);
}

.market-map canvas {
  height: 100%;
  min-height: 560px;
}

.market-map::before {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(255, 248, 223, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.025) 0 1px, transparent 1px 100%);
  background-size: auto, 42px 100%, 100% 42px;
  mix-blend-mode: normal;
}

.map-overlay {
  border-color: rgba(49, 232, 212, 0.2);
  border-radius: 8px;
  background: rgba(8, 10, 16, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ticker-band article,
.network-card,
.guide-card,
.lane-card,
.method-table article,
.policy-grid article,
.faq-item {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ticker-band article:hover,
.network-card:hover,
.guide-card:hover,
.lane-card:hover,
.method-table article:hover,
.policy-grid article:hover,
.faq-item:hover {
  border-color: rgba(49, 232, 212, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(16, 18, 28, 0.86);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.ticker-band article {
  min-height: 112px;
}

.network-grid {
  grid-template-columns: minmax(320px, 1.08fr) repeat(3, minmax(180px, 0.64fr));
}

.network-card {
  min-height: 220px;
}

.network-card.terminal-card {
  background:
    linear-gradient(135deg, rgba(255, 77, 178, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(49, 232, 212, 0.16), transparent 48%),
    rgba(12, 15, 24, 0.88);
}

.network-card h3 {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.guide-layout {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.guide-copy {
  position: sticky;
  top: 94px;
  align-content: start;
}

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

.guide-card {
  min-height: 188px;
}

.guide-card span,
.tracker-rank,
.thesis-list article > span,
.plan-index {
  border: 1px solid rgba(255, 248, 223, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.guide-card span,
.tracker-rank,
.thesis-list article > span {
  width: 36px;
  height: 36px;
}

.guide-card a,
.toc-card a,
.footer a,
.form-note a,
.content-panel a {
  color: var(--sun);
  text-decoration: underline;
  text-decoration-color: rgba(255, 209, 102, 0.36);
  text-underline-offset: 4px;
}

.guide-card a:hover,
.toc-card a:hover,
.footer a:hover,
.form-note a:hover,
.content-panel a:hover {
  color: #ffffff;
  text-decoration-color: var(--aqua);
}

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

.lane-card {
  min-height: 276px;
}

.lane-card::before {
  height: 2px;
  opacity: 0.85;
}

.lane-card .tag {
  border-radius: 8px;
}

.split-section {
  gap: 18px;
}

.tool-panel,
.opportunity-panel {
  padding: clamp(20px, 2.6vw, 32px);
}

.control-stack {
  gap: 12px;
}

label span {
  color: rgba(49, 232, 212, 0.86);
}

input,
select,
textarea {
  border-color: rgba(255, 248, 223, 0.14);
  background: rgba(4, 5, 10, 0.58);
  color: #fff8df;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 248, 223, 0.24);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(49, 232, 212, 0.72);
  box-shadow: 0 0 0 4px rgba(49, 232, 212, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.result-grid {
  gap: 8px;
}

.result-grid article {
  min-height: 92px;
  background:
    linear-gradient(140deg, rgba(49, 232, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.calculator-summary {
  border-color: rgba(49, 232, 212, 0.2);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.1), transparent),
    rgba(255, 255, 255, 0.035);
}

.planner-actions {
  gap: 10px;
}

.planner-actions .button,
.calculator-actions .button {
  min-width: min(190px, 100%);
}

.plan-step {
  border-top-color: rgba(255, 248, 223, 0.1);
}

.plan-index {
  background: rgba(255, 209, 102, 0.1);
}

.waitlist-section {
  background:
    linear-gradient(135deg, rgba(255, 77, 178, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(255, 209, 102, 0.14), transparent 42%),
    rgba(15, 17, 26, 0.84);
}

.footer {
  border-top: 1px solid rgba(255, 248, 223, 0.08);
  background: rgba(5, 6, 11, 0.26);
}

@media (min-width: 761px) {
  .article-main {
    width: min(1180px, calc(100vw - 64px));
  }
}

@media (max-width: 1180px) {
  .guide-grid,
  .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-links {
    max-width: min(64vw, 760px);
  }
}

@media (max-width: 760px) {
  .topbar {
    gap: 12px;
  }

  .nav-links {
    max-width: 100%;
    mask-image: none;
  }

  .command-center,
  .guide-layout,
  .network-grid,
  .guide-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .guide-copy {
    position: static;
  }

  .briefing-panel,
  .market-map {
    min-height: auto;
  }

  .market-map canvas {
    min-height: 430px;
  }

  h1,
  .article-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

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

  .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .metric-row,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .briefing-panel,
  .tool-panel,
  .opportunity-panel,
  .waitlist-section,
  .content-panel {
    padding: 18px;
  }

  .nav-links a {
    min-height: 32px;
  }
}

/* Executive platform layer */
@media (min-width: 1181px) {
  .app-shell::before {
    position: fixed;
    top: 96px;
    bottom: 32px;
    left: 22px;
    z-index: 0;
    width: 1px;
    background:
      linear-gradient(180deg, transparent, rgba(49, 232, 212, 0.34), rgba(255, 209, 102, 0.28), transparent);
    content: "";
    pointer-events: none;
  }

  .app-shell::after {
    position: fixed;
    top: 108px;
    left: 14px;
    z-index: 0;
    display: grid;
    width: 17px;
    height: 152px;
    background:
      linear-gradient(180deg, rgba(49, 232, 212, 0.82) 0 9px, transparent 9px 38px),
      linear-gradient(180deg, transparent 0 48px, rgba(255, 209, 102, 0.72) 48px 57px, transparent 57px 94px),
      linear-gradient(180deg, transparent 0 104px, rgba(255, 77, 178, 0.72) 104px 113px, transparent 113px);
    content: "";
    pointer-events: none;
  }
}

main#top {
  width: min(1560px, 100%);
  margin: 0 auto;
  gap: clamp(22px, 2.7vw, 36px);
  padding-top: clamp(18px, 2.4vw, 30px);
}

.briefing-panel {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.1), transparent 35%),
    linear-gradient(315deg, rgba(49, 232, 212, 0.08), transparent 45%),
    rgba(13, 16, 25, 0.82);
}

.briefing-panel h1 {
  max-width: 10ch;
  margin: 16px 0 14px;
  font-size: clamp(3rem, 4.45vw, 4.45rem);
  line-height: 0.92;
}

.briefing-panel .lede {
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.48;
}

.briefing-panel .street-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.briefing-panel .street-tags span {
  min-height: 32px;
  padding: 7px 8px;
  text-align: center;
}

.briefing-panel .hero-actions {
  margin: 16px 0;
}

.briefing-panel .metric-row {
  display: flex;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.briefing-panel .metric-row::-webkit-scrollbar {
  display: none;
}

.briefing-panel .metric-row div {
  flex: 0 0 88px;
  min-height: 74px;
  padding: 8px;
  overflow: hidden;
}

.briefing-panel .metric-row dt {
  font-size: 0.56rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.briefing-panel .metric-row dd {
  font-size: clamp(1rem, 1.55vw, 1.26rem);
  overflow-wrap: anywhere;
}

.map-chrome {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 248, 223, 0.12);
  border-radius: 8px;
  background: rgba(5, 6, 11, 0.62);
  color: rgba(255, 248, 223, 0.78);
  backdrop-filter: blur(16px);
}

.map-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 223, 0.28);
}

.map-chrome span:nth-child(1) {
  background: var(--pink);
}

.map-chrome span:nth-child(2) {
  background: var(--sun);
}

.map-chrome span:nth-child(3) {
  background: var(--aqua);
}

.map-chrome strong {
  margin-left: 6px;
  color: rgba(255, 248, 223, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-legend {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  max-width: calc(100% - 360px);
  flex-wrap: wrap;
  gap: 8px;
}

.map-legend span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 248, 223, 0.12);
  border-radius: 8px;
  background: rgba(5, 6, 11, 0.6);
  color: rgba(255, 248, 223, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.map-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 14px rgba(49, 232, 212, 0.58);
}

.map-legend span:nth-child(2) i {
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 77, 178, 0.52);
}

.map-legend span:nth-child(3) i {
  background: var(--sun);
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.48);
}

.platform-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.overview-copy,
.overview-module {
  position: relative;
  overflow: hidden;
  border: var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
    rgba(13, 16, 25, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.overview-copy {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: clamp(22px, 3.2vw, 36px);
}

.overview-copy h2 {
  max-width: 9ch;
}

.overview-copy p:last-child {
  max-width: 48ch;
  margin: 16px 0 0;
  color: rgba(255, 248, 223, 0.78);
  line-height: 1.58;
}

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

.overview-module {
  display: grid;
  min-height: 172px;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
}

.overview-module::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--sun), var(--pink));
  content: "";
  opacity: 0.72;
}

.module-primary {
  grid-row: span 2;
  min-height: 358px;
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.13), transparent 46%),
    rgba(13, 16, 25, 0.82);
}

.overview-module span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.overview-module strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  line-height: 1.02;
}

.overview-module p {
  margin: 0;
  color: rgba(255, 248, 223, 0.72);
  line-height: 1.52;
}

.module-meter {
  overflow: hidden;
  height: 8px;
  border: 1px solid rgba(255, 248, 223, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.module-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--sun));
}

.section-heading {
  position: relative;
  padding-bottom: 10px;
}

.section-heading::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 232, 212, 0.4), rgba(255, 209, 102, 0.16), transparent);
  content: "";
}

.guide-card-hero,
.guide-card-priority,
.guide-card:nth-child(1),
.guide-card:nth-child(15),
.guide-card:nth-child(20) {
  grid-column: span 2;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.12), transparent 40%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.12), transparent 42%),
    rgba(13, 16, 25, 0.84);
}

.guide-card-hero h3,
.guide-card-priority h3,
.guide-card:nth-child(1) h3,
.guide-card:nth-child(15) h3,
.guide-card:nth-child(20) h3 {
  max-width: 12ch;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.ticker-band {
  position: relative;
}

.ticker-band::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.34), transparent);
  content: "";
}

.market-terminal {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 248, 223, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, rgba(49, 232, 212, 0.085), transparent 35%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.075), transparent 42%),
    rgba(4, 6, 10, 0.58);
  background-size: 44px 100%, 100% 44px, auto, auto, auto;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.market-terminal::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(320px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.36), rgba(49, 232, 212, 0.4));
  content: "";
  opacity: 0.76;
}

.market-terminal::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(255, 248, 223, 0.055);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.1) 0 1px, transparent 1px 100%);
  background-size: 13px 13px;
  content: "";
  opacity: 0.42;
  transform: skew(-8deg);
}

.market-terminal > * {
  position: relative;
  z-index: 1;
}

.terminal-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: end;
  padding: 4px 2px 14px;
  border-bottom: 1px solid rgba(255, 248, 223, 0.09);
}

.terminal-header h2 {
  max-width: 14ch;
}

.terminal-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.terminal-status span,
.terminal-kicker,
.ledger-head span {
  color: rgba(49, 232, 212, 0.9);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.terminal-status span {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(49, 232, 212, 0.18);
  border-radius: 8px;
  background: rgba(49, 232, 212, 0.07);
  color: rgba(255, 248, 223, 0.76);
}

.terminal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(420px, 1.45fr) minmax(260px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.terminal-panel {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 223, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 20, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.terminal-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--sun), var(--pink));
  content: "";
  opacity: 0.68;
}

.terminal-panel:hover {
  border-color: rgba(49, 232, 212, 0.22);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.07), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.022)),
    rgba(10, 13, 20, 0.88);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.terminal-command {
  align-content: end;
  gap: 22px;
  min-height: 332px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.13), transparent 40%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.1), transparent 46%),
    rgba(10, 13, 20, 0.86);
}

.terminal-command::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 248, 223, 0.07);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.12) 0 1px, transparent 1px 100%);
  background-size: 14px 14px;
  content: "";
  opacity: 0.5;
  transform: skew(-7deg);
}

.terminal-command h3 {
  max-width: 15ch;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.02;
}

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

.terminal-metrics div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 248, 223, 0.095);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.terminal-metrics dt {
  color: rgba(255, 248, 223, 0.58);
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.terminal-metrics dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-weight: 950;
}

.terminal-ledger {
  grid-row: span 2;
  align-content: start;
  gap: 14px;
  min-height: 332px;
  padding: 18px;
}

.terminal-ledger header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.terminal-ledger header strong {
  color: #ffffff;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  line-height: 1.08;
}

.ledger-table {
  display: grid;
  gap: 8px;
}

.ledger-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(92px, 0.8fr) minmax(120px, 1fr) minmax(140px, 1.1fr) minmax(76px, 0.42fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 248, 223, 0.085);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.034);
}

.ledger-row:not(.ledger-head)::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, var(--aqua), var(--sun));
  content: "";
  opacity: 0.48;
}

.ledger-head {
  min-height: 34px;
  background: rgba(49, 232, 212, 0.055);
}

.ledger-row span {
  min-width: 0;
  color: rgba(255, 248, 223, 0.72);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.25;
}

.ledger-row strong {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 8px;
  background: rgba(255, 209, 102, 0.08);
  color: var(--sun);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.terminal-stack,
.terminal-compliance {
  gap: 12px;
  min-height: 160px;
  padding: 16px;
}

.stack-row {
  display: grid;
  gap: 8px;
}

.stack-row div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.stack-row strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.stack-row small {
  color: rgba(255, 248, 223, 0.58);
  font-weight: 780;
}

.stack-row i {
  display: block;
  position: relative;
  overflow: hidden;
  height: 8px;
  border: 1px solid rgba(255, 248, 223, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.stack-row i::before {
  display: block;
  width: var(--stack-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--sun));
  content: "";
}

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

.compliance-grid span {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 77, 178, 0.16);
  border-radius: 8px;
  background: rgba(255, 77, 178, 0.055);
  color: rgba(255, 248, 223, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.command-dock {
  display: grid;
  grid-template-columns: 1.18fr repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  border: var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 11, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.dock-command {
  position: relative;
  display: grid;
  min-height: 156px;
  align-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 248, 223, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(13, 16, 25, 0.82);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dock-command::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 248, 223, 0.08);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.15) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.12) 0 1px, transparent 1px 100%);
  background-size: 9px 9px;
  content: "";
  opacity: 0.52;
}

.dock-command:hover,
.dock-command:focus-visible {
  border-color: rgba(49, 232, 212, 0.3);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(13, 16, 25, 0.9);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-3px);
}

.dock-command span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 248, 223, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(49, 232, 212, 0.92);
  font-size: 0.72rem;
  font-weight: 950;
}

.dock-command strong {
  display: block;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.45vw, 1.46rem);
  line-height: 1.02;
}

.dock-command small {
  display: block;
  max-width: 24ch;
  color: rgba(255, 248, 223, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.42;
}

.dock-primary {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.14), transparent 40%),
    linear-gradient(315deg, rgba(49, 232, 212, 0.13), transparent 44%),
    rgba(13, 16, 25, 0.9);
}

.tool-panel,
.opportunity-panel,
.content-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 23, 0.8);
}

@media (max-width: 1180px) {
  .platform-overview {
    grid-template-columns: 1fr;
  }

  .overview-copy {
    min-height: auto;
  }

  .overview-copy h2 {
    max-width: 14ch;
  }

  .map-legend {
    max-width: calc(100% - 36px);
    bottom: 82px;
  }

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

  .terminal-header,
  .terminal-grid {
    grid-template-columns: 1fr;
  }

  .terminal-status {
    justify-content: flex-start;
  }

  .terminal-command,
  .terminal-ledger {
    min-height: auto;
  }

  .terminal-ledger {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  main#top {
    gap: 18px;
    padding-top: 14px;
  }

  .briefing-panel h1 {
    max-width: 9ch;
    margin: 12px 0 10px;
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .briefing-panel {
    padding: 18px;
  }

  .briefing-panel .lede {
    max-width: 31ch;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .briefing-panel .street-tags {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .briefing-panel .street-tags::-webkit-scrollbar {
    display: none;
  }

  .briefing-panel .street-tags span {
    flex: 0 0 auto;
    min-height: 30px;
    white-space: nowrap;
  }

  .briefing-panel .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(110px, 0.72fr);
    gap: 8px;
    margin: 14px 0 0;
  }

  .briefing-panel .hero-actions .button {
    width: auto;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .briefing-panel .metric-row {
    display: none;
  }

  .briefing-panel .metric-row div {
    flex: 0 0 88px;
    min-height: 64px;
  }

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

  .module-primary {
    grid-row: auto;
    min-height: 190px;
  }

  .map-chrome {
    right: 10px;
    left: 10px;
  }

  .market-map {
    height: 220px;
    min-height: 220px;
  }

  .market-map canvas {
    min-height: 220px;
  }

  .map-overlay {
    right: 10px;
    bottom: 10px;
    width: min(250px, calc(100% - 20px));
  }

  .map-legend {
    display: none;
  }

  .command-dock {
    grid-template-columns: 1fr;
  }

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

  .ledger-head {
    display: none;
  }

  .terminal-metrics,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .dock-command {
    min-height: 132px;
  }

  .guide-card-hero,
  .guide-card-priority,
  .guide-card:nth-child(1),
  .guide-card:nth-child(15),
  .guide-card:nth-child(20) {
    grid-column: auto;
    min-height: 188px;
  }
}

/* Workstation interface pass */
.article-main {
  position: relative;
  display: grid;
  gap: clamp(22px, 3.4vw, 42px);
}

.article-main::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: -18px;
  width: 1px;
  background:
    linear-gradient(180deg, transparent, rgba(49, 232, 212, 0.34), rgba(255, 209, 102, 0.22), transparent);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.article-main > .article-hero {
  display: grid;
  min-height: 220px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: end;
  padding: clamp(20px, 2.8vw, 32px);
  border-color: rgba(255, 248, 223, 0.11);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.12), transparent 36%),
    linear-gradient(305deg, rgba(255, 77, 178, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 20, 0.86);
}

.article-main > .article-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.03) 0 1px, transparent 1px 100%);
  background-size: 38px 100%, 100% 38px;
  opacity: 0.7;
}

.article-main > .article-hero::after {
  right: 24px;
  bottom: 24px;
  width: min(210px, 28vw);
  height: min(210px, 28vw);
  border-color: rgba(49, 232, 212, 0.18);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.16) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 28% 32%, rgba(255, 77, 178, 0.18), transparent 36%);
  background-size: 18px 18px, 18px 18px, auto;
  opacity: 0.56;
}

.article-main > .article-hero .eyebrow {
  width: fit-content;
  margin-bottom: 0;
  padding: 7px 9px;
  border: 1px solid rgba(49, 232, 212, 0.2);
  border-radius: 8px;
  background: rgba(49, 232, 212, 0.075);
}

.article-main > .article-hero > * {
  grid-column: 1;
}

.article-main > .article-hero h1 {
  max-width: 30ch;
  margin: 12px 0 10px;
  font-size: clamp(2.2rem, 3.8vw, 3.55rem);
  line-height: 0.98;
}

.article-main > .article-hero .lede {
  max-width: 66ch;
}

.article-main > .split-section {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.article-main .tool-panel,
.article-main .opportunity-panel,
.article-main .content-panel {
  border-color: rgba(255, 248, 223, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 20, 0.84);
}

.article-main .tool-panel::after,
.article-main .opportunity-panel::after,
.article-main .content-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--sun), var(--pink));
  content: "";
  opacity: 0.64;
}

.article-main .content-panel {
  position: relative;
  overflow: hidden;
}

.panel-heading {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 248, 223, 0.09);
}

.panel-heading::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: min(160px, 42%);
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 232, 212, 0.72), transparent);
  content: "";
}

.tool-panel .panel-heading h2,
.opportunity-panel .panel-heading h2,
.crew-form .panel-heading h2,
.crew-board .panel-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
  line-height: 1;
}

.control-stack {
  align-items: stretch;
}

.control-stack label:not(.consent-row):not(.honeypot) {
  position: relative;
  min-height: 90px;
  padding: 10px;
  border: 1px solid rgba(255, 248, 223, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.026);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.control-stack label:not(.consent-row):not(.honeypot):focus-within {
  border-color: rgba(49, 232, 212, 0.44);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.044);
  transform: translateY(-1px);
}

.control-stack label:not(.consent-row):not(.honeypot) > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
}

.control-stack label:not(.consent-row):not(.honeypot) > span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
  opacity: 0.78;
}

.control-stack input,
.control-stack select,
.control-stack textarea {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.025)),
    rgba(3, 4, 8, 0.72);
}

.result-grid {
  padding: 8px;
  border: 1px solid rgba(255, 248, 223, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.055), transparent 42%),
    rgba(3, 4, 8, 0.38);
}

.result-grid article {
  position: relative;
  display: grid;
  min-height: 108px;
  align-content: space-between;
  overflow: hidden;
  border-radius: 6px;
}

.result-grid article::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 248, 223, 0.07);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.12) 0 1px, transparent 1px 100%);
  background-size: 8px 8px;
  content: "";
  opacity: 0.46;
}

.result-grid article:nth-child(2)::after {
  background:
    linear-gradient(90deg, rgba(255, 77, 178, 0.15) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 209, 102, 0.12) 0 1px, transparent 1px 100%);
  background-size: 8px 8px;
}

.calculator-summary,
.form-note {
  border-radius: 8px;
}

.form-note {
  padding: 11px 12px;
  border: 1px solid rgba(255, 209, 102, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.026);
  line-height: 1.45;
  text-transform: none;
}

.plan-stack,
.blueprint-board,
.buyer-pipeline-board,
.buyer-board,
.compliance-board,
.demand-board,
.founder-board,
.ladder-board,
.millionaire-board,
.objection-board,
.offer-board,
.outreach-board,
.pricing-board,
.proof-pack-board,
.proof-board,
.renewal-board,
.roadmap-board,
.pitch-board,
.sponsor-board,
.validation-board {
  gap: 10px;
}

.plan-step {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 248, 223, 0.095);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.024);
}

.plan-step:first-child {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 248, 223, 0.095);
}

.plan-step::before,
.business-row::before,
.split-row::before,
.comparison-row::before,
.tracker-row::before,
.outreach-row::before,
.payout-row::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 2px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, var(--aqua), var(--sun));
  content: "";
  opacity: 0.58;
}

.business-row,
.split-row,
.comparison-row,
.tracker-row,
.outreach-row,
.payout-row,
.crew-post,
.admin-row {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.business-row:hover,
.split-row:hover,
.comparison-row:hover,
.tracker-row:hover,
.outreach-row:hover,
.payout-row:hover,
.crew-post:hover,
.admin-row:hover,
.plan-step:hover {
  border-color: rgba(49, 232, 212, 0.2);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.055), transparent 44%),
    rgba(255, 255, 255, 0.046);
}

.plan-index {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.16), rgba(49, 232, 212, 0.08)),
    rgba(255, 255, 255, 0.034);
}

.plan-step dl div {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(3, 4, 8, 0.34);
}

.planner-actions,
.calculator-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 14px;
  border-top: 1px solid rgba(255, 248, 223, 0.085);
}

.planner-actions .button,
.calculator-actions .button {
  width: 100%;
  min-width: 0;
}

.article-main .method-table article,
.article-main .policy-grid article,
.article-main .faq-item {
  position: relative;
  overflow: hidden;
}

.article-main .method-table article::after,
.article-main .policy-grid article::after,
.article-main .faq-item::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 248, 223, 0.065);
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.13) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(49, 232, 212, 0.12) 0 1px, transparent 1px 100%);
  background-size: 8px 8px;
  content: "";
  opacity: 0.42;
}

.command-center {
  position: relative;
}

.command-center::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 232, 212, 0.38), rgba(255, 209, 102, 0.22), transparent);
  content: "";
}

.briefing-panel,
.market-map {
  isolation: isolate;
}

@media (min-width: 1101px) {
  .briefing-panel,
  .market-map {
    min-height: 520px;
  }

  .briefing-panel {
    padding: clamp(20px, 2.2vw, 28px);
  }

  .market-map {
    height: 520px;
  }

  .market-map canvas {
    min-height: 520px;
  }

  .briefing-panel .metric-row div {
    flex-basis: 82px;
    min-height: 68px;
  }
}

.command-dock {
  position: relative;
}

.command-dock::before {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 232, 212, 0.36), rgba(255, 209, 102, 0.14), transparent);
  content: "";
  opacity: 0.74;
}

.dock-command {
  padding-top: 18px;
}

.dock-primary span {
  border-color: rgba(255, 209, 102, 0.28);
  color: var(--sun);
}

.platform-overview,
.ticker-band,
.section-block,
.split-section,
.crew-layout,
.waitlist-section {
  position: relative;
}

a:focus-visible,
button:focus-visible,
.dock-command:focus-visible,
.guide-card:focus-within {
  outline: 2px solid rgba(49, 232, 212, 0.72);
  outline-offset: 3px;
}

@media (min-width: 1181px) {
  .article-main > .split-section .tool-panel {
    align-self: start;
  }

  .article-main .opportunity-panel {
    min-height: 100%;
  }
}

@media (max-width: 1180px) {
  .article-main > .article-hero,
  .article-main > .split-section {
    grid-template-columns: 1fr;
  }

  .article-main::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .article-main {
    width: 100%;
    gap: 18px;
  }

  .article-main > .article-hero {
    min-height: auto;
  }

  .article-main > .article-hero::after {
    width: 112px;
    height: 112px;
  }

  .control-stack label:not(.consent-row):not(.honeypot) {
    min-height: 84px;
  }

  .planner-actions,
  .calculator-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Interface OS pass */
main#top {
  position: relative;
}

.command-center {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 248, 223, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.032) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.024) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, rgba(49, 232, 212, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.06), transparent 38%),
    rgba(4, 6, 10, 0.5);
  background-size: 52px 100%, 100% 52px, auto, auto, auto;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.command-center::after {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 232, 212, 0.42), rgba(255, 209, 102, 0.18), transparent);
  content: "";
  opacity: 0.74;
  pointer-events: none;
}

.briefing-panel,
.market-map {
  border-color: rgba(255, 248, 223, 0.1);
  box-shadow: none;
}

.briefing-panel {
  min-height: 500px;
}

.briefing-panel h1 {
  position: relative;
}

.briefing-panel h1::after {
  display: block;
  width: min(170px, 62%);
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--aqua), var(--sun), transparent);
  content: "";
}

.status-strip {
  min-height: 34px;
  border-radius: 6px;
}

.market-map {
  height: 500px;
  min-height: 500px;
}

.market-map canvas {
  min-height: 500px;
}

.map-overlay {
  right: 14px;
  bottom: 14px;
}

.command-dock {
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.dock-command {
  min-height: 136px;
  padding: 14px;
}

.dock-command::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 18px rgba(49, 232, 212, 0.55);
  content: "";
  opacity: 0.82;
}

.dock-command:nth-child(2)::before,
.dock-command:nth-child(5)::before {
  background: var(--sun);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.46);
}

.dock-command:nth-child(3)::before,
.dock-command:nth-child(6)::before {
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 77, 178, 0.45);
}

.dock-command::after {
  width: 38px;
  height: 38px;
  opacity: 0.38;
}

.dock-command strong {
  max-width: 12ch;
}

.dock-command small {
  max-width: 22ch;
  font-size: 0.74rem;
}

.market-terminal {
  gap: 12px;
}

.terminal-grid {
  grid-template-columns: minmax(230px, 0.84fr) minmax(420px, 1.5fr) minmax(250px, 0.82fr);
}

.terminal-command {
  min-height: 300px;
}

.terminal-ledger {
  min-height: 300px;
}

.terminal-stack,
.terminal-compliance {
  min-height: 144px;
}

.platform-overview {
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
}

.overview-copy {
  min-height: 312px;
}

.overview-copy h2 {
  max-width: 12ch;
}

.overview-grid {
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(170px, 0.72fr));
  min-width: 0;
  gap: 12px;
}

.module-primary {
  grid-row: auto;
  min-height: 100%;
}

.overview-module {
  min-height: 176px;
}

@media (min-width: 1181px) {
  .guide-layout {
    grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
  }

  .guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .guide-card {
    display: grid;
    min-height: 158px;
    align-content: space-between;
    padding: 14px;
  }

  .guide-card-hero,
  .guide-card-priority,
  .guide-card:nth-child(1),
  .guide-card:nth-child(15),
  .guide-card:nth-child(20) {
    grid-column: span 2;
    min-height: 190px;
  }

  .guide-card p {
    font-size: 0.91rem;
    line-height: 1.43;
  }

  .guide-card a {
    width: fit-content;
    margin-top: 10px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 209, 102, 0.18);
    border-radius: 8px;
    background: rgba(255, 209, 102, 0.055);
    font-size: 0.8rem;
    text-decoration: none;
  }
}

@media (max-width: 1180px) {
  .command-center,
  .platform-overview,
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .command-center {
    padding: 8px;
  }

  .briefing-panel {
    min-height: auto;
  }

  .briefing-panel h1::after {
    width: 128px;
    margin-top: 10px;
  }

  .market-map {
    height: 214px;
    min-height: 214px;
  }

  .market-map canvas {
    min-height: 214px;
  }

  .command-dock {
    gap: 8px;
    padding: 8px;
  }

  .dock-command {
    min-height: 98px;
    padding: 12px;
  }

  .dock-command small {
    max-width: 30ch;
  }

  .terminal-command {
    min-height: 260px;
  }
}

@media (min-width: 761px) {
  .briefing-panel {
    justify-content: center;
  }

  .briefing-panel .metric-row {
    position: absolute;
    right: 22px;
    bottom: 18px;
    left: 22px;
    margin: 0;
  }

  .platform-overview,
  .overview-grid,
  .overview-module {
    min-width: 0;
  }

  .overview-grid {
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(0, 0.72fr));
  }
}

/* Live terminal instrumentation pass */
.signal-board {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  width: min(174px, 34%);
  gap: 6px;
}

.signal-board div,
.map-signal-rail div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 14, 21, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.signal-board span,
.map-signal-rail span {
  overflow: hidden;
  color: rgba(234, 246, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-board strong,
.map-signal-rail strong {
  overflow: hidden;
  color: #fff7d1;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.86rem, 1.4vw, 1.12rem);
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-signal-rail {
  position: absolute;
  top: 66px;
  left: 14px;
  z-index: 4;
  display: grid;
  width: min(192px, calc(48% - 18px));
  gap: 7px;
}

.terminal-tape {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 1px solid rgba(255, 209, 102, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 209, 102, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(2, 9, 14, 0.95), rgba(13, 26, 31, 0.96), rgba(2, 9, 14, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.28);
}

.terminal-tape::before,
.terminal-tape::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 68px;
  content: "";
  pointer-events: none;
}

.terminal-tape::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 9, 14, 1), rgba(2, 9, 14, 0));
}

.terminal-tape::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 9, 14, 1), rgba(2, 9, 14, 0));
}

.tape-track {
  display: flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  animation: tape-scroll 30s linear infinite;
  will-change: transform;
}

.tape-track span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(234, 246, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.tape-track b {
  color: var(--sun);
  font-weight: 950;
}

@keyframes tape-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .signal-board,
  .map-signal-rail {
    display: none;
  }

  .terminal-tape {
    min-height: 36px;
  }

  .terminal-tape::before,
  .terminal-tape::after {
    width: 34px;
  }

  .tape-track {
    min-height: 36px;
    animation: none;
  }

  .tape-track span {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tape-track {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .market-terminal > *,
  .terminal-header,
  .terminal-grid,
  .terminal-tape {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .terminal-header,
  .terminal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .command-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dock-primary {
    grid-column: 1 / -1;
  }
}

/* Platform glass and command hierarchy pass */
.app-shell {
  position: relative;
  isolation: isolate;
}

.app-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 209, 102, 0.055) 6% 6.12%, transparent 6.12% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 18%),
    radial-gradient(circle at 72% 8%, rgba(49, 232, 212, 0.14), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(255, 77, 178, 0.12), transparent 26%);
  content: "";
  pointer-events: none;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(236px, max-content) minmax(0, 1fr);
  min-height: 76px;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  border-bottom-color: rgba(255, 248, 223, 0.11);
  background:
    linear-gradient(180deg, rgba(11, 13, 22, 0.92), rgba(5, 7, 12, 0.82)),
    rgba(5, 6, 11, 0.88);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
}

.topbar::after {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: -1px;
  left: clamp(18px, 4vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 232, 212, 0.46), rgba(255, 209, 102, 0.2), transparent);
  content: "";
  pointer-events: none;
}

.brand-mark {
  border-radius: 6px;
  box-shadow:
    4px 4px 0 #05050a,
    0 16px 34px rgba(255, 77, 178, 0.2);
}

.brand strong {
  text-shadow: 0 1px 0 #05050a, 0 0 22px rgba(255, 255, 255, 0.16);
}

.nav-links {
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
  padding: 5px 2px 6px;
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  min-height: 31px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-color: rgba(255, 248, 223, 0.075);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 248, 223, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
}

.nav-links a[href="#waitlist"],
.nav-links a[href="./gta-6-founder-dashboard.html"] {
  border-color: rgba(255, 209, 102, 0.2);
  background: rgba(255, 209, 102, 0.1);
  color: #fff6d7;
}

main#top {
  width: min(100%, 1500px);
  margin-inline: auto;
}

.command-center {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 10px;
  min-height: calc(100vh - 152px);
}

.command-center::before {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 2;
  height: 26px;
  border: 1px solid rgba(255, 248, 223, 0.06);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.12), transparent 26%),
    linear-gradient(270deg, rgba(255, 209, 102, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.02);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.briefing-panel {
  padding-top: clamp(34px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(49, 232, 212, 0.105), transparent 36%),
    linear-gradient(315deg, rgba(255, 77, 178, 0.095), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 17, 0.78);
}

.briefing-panel h1 {
  max-width: 8.7ch;
  text-shadow:
    0 1px 0 #05050a,
    0 12px 36px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 77, 178, 0.2);
}

.lede {
  max-width: 42ch;
  color: rgba(255, 248, 223, 0.78);
}

.hero-actions .button {
  min-height: 48px;
  border-radius: 8px;
}

.button.primary {
  box-shadow:
    0 16px 36px rgba(255, 77, 178, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.button.ghost {
  box-shadow: 0 0 0 1px rgba(49, 232, 212, 0.12) inset;
}

.market-map {
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.03) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.028) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 72% 22%, rgba(255, 209, 102, 0.14), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(49, 232, 212, 0.13), transparent 30%),
    rgba(5, 7, 12, 0.84);
  background-size: 42px 100%, 100% 42px, auto, auto, auto;
}

.market-map::after {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 248, 223, 0.075);
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.map-chrome,
.map-overlay,
.map-legend,
.map-signal-rail {
  z-index: 5;
}

.map-overlay {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(340px, calc(100% - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 248, 223, 0.1);
  border-radius: 8px;
  background: rgba(3, 7, 10, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.map-overlay div {
  min-width: 0;
}

.command-dock {
  border-color: rgba(255, 248, 223, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(8, 10, 17, 0.72);
}

.dock-command {
  isolation: isolate;
  border-color: rgba(255, 248, 223, 0.095);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
    rgba(12, 16, 24, 0.88);
}

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

.market-terminal,
.platform-overview,
.section-block,
.waitlist-section {
  border-radius: 8px;
}

.platform-overview {
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255, 248, 223, 0.105);
  background:
    linear-gradient(90deg, rgba(49, 232, 212, 0.075), transparent 28%),
    linear-gradient(270deg, rgba(255, 209, 102, 0.055), transparent 24%),
    rgba(5, 7, 12, 0.64);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.overview-copy {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(11, 14, 21, 0.64);
}

.overview-module {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(11, 14, 21, 0.76);
}

.module-primary {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.14), transparent 40%),
    linear-gradient(315deg, rgba(49, 232, 212, 0.12), transparent 42%),
    rgba(12, 16, 24, 0.84);
}

.ticker-band {
  align-items: stretch;
  gap: 10px;
}

.ticker-band article {
  min-height: 118px;
  padding: 16px;
  border-color: rgba(255, 248, 223, 0.095);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 17, 0.72);
}

.guide-copy {
  border: 1px solid rgba(255, 248, 223, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.016)),
    rgba(8, 10, 17, 0.68);
  box-shadow: var(--shadow-soft);
}

.guide-card {
  border-color: rgba(255, 248, 223, 0.105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 20, 0.74);
}

.guide-card-hero,
.guide-card-priority,
.guide-card:nth-child(1),
.guide-card:nth-child(15),
.guide-card:nth-child(20) {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(49, 232, 212, 0.11), transparent 44%),
    rgba(11, 15, 24, 0.86);
}

@media (min-width: 1181px) {
  .guide-copy {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
  }

  .command-center {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 98px;
    padding: 8px 20px;
    gap: 6px;
  }

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

  .brand small {
    max-width: 28ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.7rem;
  }

  .command-center::before {
    display: none;
  }

  .briefing-panel {
    padding-top: 22px;
  }

  .street-tags span,
  .hero-actions .button {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .briefing-panel .hero-actions {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.82fr);
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 9px 8px;
    font-size: 0.78rem;
    white-space: normal;
  }

  .market-map {
    height: 198px;
    min-height: 198px;
  }

  .market-map canvas {
    min-height: 198px;
  }

  .map-overlay {
    width: min(306px, calc(100% - 28px));
  }

  .ticker-band article {
    min-height: 96px;
  }
}

/* Editorial market desk reset: Bloomberg/Forbes energy, Apple restraint */
:root {
  --desk-ink: #050506;
  --desk-paper: #f7f2e8;
  --desk-paper-2: #fffaf0;
  --desk-muted: #6f716f;
  --desk-line: rgba(5, 5, 6, 0.12);
  --desk-yellow: #ffd34d;
  --desk-aqua: #25d8cb;
  --desk-rose: #ff4f9a;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 211, 77, 0.08), transparent 18%),
    linear-gradient(135deg, #060607 0%, #0d0d10 52%, #050506 100%);
  color: var(--desk-paper);
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.36;
}

body::after {
  display: none;
}

.topbar {
  grid-template-columns: minmax(238px, max-content) minmax(0, max-content);
  min-height: 70px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(5, 5, 6, 0.1);
  background: rgba(247, 242, 232, 0.92);
  color: var(--desk-ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.topbar::after {
  background: linear-gradient(90deg, var(--desk-yellow), var(--desk-aqua), transparent);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--desk-ink);
  border-radius: 8px;
  background: var(--desk-yellow);
  box-shadow: 4px 4px 0 var(--desk-ink);
  color: var(--desk-ink);
}

.brand strong {
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  text-shadow: none;
}

.brand small {
  color: rgba(5, 5, 6, 0.58);
}

.nav-links {
  justify-content: flex-end;
  overflow: visible;
  padding: 0;
  mask-image: none;
}

.nav-links a {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(5, 5, 6, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.035);
  color: rgba(5, 5, 6, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(5, 5, 6, 0.24);
  background: var(--desk-ink);
  color: var(--desk-paper);
  box-shadow: none;
}

.nav-links a[href="#waitlist"],
.nav-links a[href="./gta-6-founder-dashboard.html"] {
  border-color: var(--desk-ink);
  background: var(--desk-ink);
  color: var(--desk-paper);
}

main#top {
  max-width: 1480px;
  gap: clamp(24px, 3vw, 40px);
}

.command-center {
  min-height: min(560px, calc(100vh - 160px));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: var(--desk-paper);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.command-center::before,
.command-center::after {
  display: none;
}

.briefing-panel {
  min-height: 520px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(5, 5, 6, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.5), transparent 32%),
    linear-gradient(180deg, var(--desk-paper-2), var(--desk-paper));
  color: var(--desk-ink);
  box-shadow: none;
}

.briefing-panel::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 6, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
}

.briefing-panel::after {
  display: none;
}

.status-strip {
  border: 1px solid rgba(5, 5, 6, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(5, 5, 6, 0.74);
  box-shadow: none;
}

.status-dot {
  background: var(--desk-aqua);
  box-shadow: 0 0 0 5px rgba(37, 216, 203, 0.13);
}

.briefing-panel .eyebrow {
  color: rgba(5, 5, 6, 0.62);
  text-shadow: none;
}

.briefing-panel h1 {
  max-width: 12ch;
  margin-top: 22px;
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.65rem, 5vw, 5.65rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: none;
}

.briefing-panel h1::after {
  width: min(250px, 58%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--desk-ink), var(--desk-yellow), var(--desk-rose));
}

.lede {
  max-width: 48ch;
  color: rgba(5, 5, 6, 0.72);
  font-size: clamp(1rem, 1.24vw, 1.08rem);
  line-height: 1.36;
}

.street-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.street-tags span {
  min-height: 30px;
  padding: 6px 8px;
  border-color: rgba(5, 5, 6, 0.14);
  background: rgba(255, 255, 255, 0.54);
  color: rgba(5, 5, 6, 0.72);
  font-size: 0.68rem;
}

.hero-actions .button {
  border-radius: 8px;
  font-weight: 950;
}

.briefing-panel .hero-actions {
  margin-top: 12px;
  margin-bottom: 0;
}

.button.primary {
  border-color: var(--desk-ink);
  background: var(--desk-ink);
  color: var(--desk-paper);
  box-shadow: 5px 5px 0 var(--desk-yellow);
}

.button.primary span {
  background: var(--desk-yellow);
  color: var(--desk-ink);
}

.button.ghost {
  border-color: rgba(5, 5, 6, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--desk-ink);
  box-shadow: none;
}

.button.ghost span {
  background: rgba(5, 5, 6, 0.08);
  color: var(--desk-ink);
}

.briefing-panel .metric-row div {
  border-color: rgba(5, 5, 6, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.briefing-panel .metric-row dt {
  color: rgba(5, 5, 6, 0.52);
}

.briefing-panel .metric-row dd {
  color: var(--desk-ink);
}

.signal-board {
  width: 164px;
}

.signal-board div {
  border-color: rgba(5, 5, 6, 0.11);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 28px rgba(5, 5, 6, 0.08);
}

.signal-board span {
  color: rgba(5, 5, 6, 0.52);
}

.signal-board strong {
  color: var(--desk-ink);
}

.market-map {
  min-height: 520px;
  height: 520px;
  border: 1px solid rgba(5, 5, 6, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 18%, rgba(255, 211, 77, 0.18), transparent 24%),
    #050506;
  background-size: 46px 46px, 46px 46px, auto, auto;
  box-shadow: none;
}

.market-map canvas {
  min-height: 520px;
  height: 520px;
}

.map-chrome {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.7);
}

.map-overlay,
.map-signal-rail div {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(8, 8, 10, 0.74);
  box-shadow: none;
}

.map-overlay span,
.map-signal-rail span {
  color: rgba(255, 250, 240, 0.52);
}

.map-overlay strong,
.map-signal-rail strong {
  color: var(--desk-paper);
}

.command-dock {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: none;
}

.command-dock::before {
  display: none;
}

.dock-command {
  min-height: 146px;
  border-color: rgba(255, 250, 240, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.035)),
    rgba(255, 250, 240, 0.04);
  color: var(--desk-paper);
  box-shadow: none;
}

.dock-command::after {
  display: none;
}

.dock-command span {
  border-color: rgba(255, 211, 77, 0.32);
  background: rgba(255, 211, 77, 0.14);
  color: var(--desk-yellow);
}

.dock-command strong {
  max-width: 14ch;
}

.dock-command small {
  color: rgba(255, 250, 240, 0.66);
}

.dock-primary {
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.22), transparent 42%),
    rgba(255, 250, 240, 0.06);
}

.market-terminal {
  border-color: rgba(255, 250, 240, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.025)),
    #070708;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.terminal-header h2 {
  max-width: 18ch;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.8rem);
  line-height: 0.94;
}

.terminal-status span,
.terminal-panel,
.terminal-tape {
  border-color: rgba(255, 250, 240, 0.12);
}

.terminal-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.07), rgba(255, 250, 240, 0.02)),
    rgba(255, 250, 240, 0.035);
  box-shadow: none;
}

.platform-overview {
  border-color: rgba(255, 250, 240, 0.12);
  background: var(--desk-paper);
  color: var(--desk-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.overview-copy,
.overview-module {
  border-color: rgba(5, 5, 6, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--desk-ink);
  box-shadow: none;
}

.overview-copy .eyebrow,
.overview-module span {
  color: rgba(5, 5, 6, 0.54);
  text-shadow: none;
}

.overview-copy p,
.overview-module p {
  color: rgba(5, 5, 6, 0.66);
}

.module-meter {
  background: rgba(5, 5, 6, 0.08);
}

.module-meter i {
  background: linear-gradient(90deg, var(--desk-ink), var(--desk-yellow));
}

.ticker-band article,
.guide-card,
.network-card,
.lane-card,
.tool-panel,
.opportunity-panel,
.crew-board,
.crew-form,
.waitlist-section,
.section-block {
  border-color: rgba(255, 250, 240, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.075), rgba(255, 250, 240, 0.025)),
    rgba(255, 250, 240, 0.035);
  box-shadow: none;
}

.guide-copy {
  border-color: rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.055);
  box-shadow: none;
}

.guide-card-hero,
.guide-card-priority,
.guide-card:nth-child(1),
.guide-card:nth-child(15),
.guide-card:nth-child(20) {
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.13), transparent 42%),
    rgba(255, 250, 240, 0.05);
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr;
    min-height: 104px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 40px), transparent 100%);
  }

  .command-center {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .briefing-panel,
  .market-map,
  .market-map canvas {
    min-height: 360px;
  }

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

  .dock-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 96px;
    background: rgba(247, 242, 232, 0.94);
  }

  main#top {
    padding: 14px;
  }

  .briefing-panel {
    min-height: auto;
    padding: 18px;
  }

  .briefing-panel h1 {
    max-width: 100%;
    margin: 14px 0 10px;
    font-size: clamp(2.85rem, 12vw, 3.35rem);
    line-height: 0.92;
  }

  .briefing-panel h1::after {
    width: 118px;
    height: 3px;
    margin-top: 8px;
  }

  .lede {
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .street-tags {
    gap: 6px;
  }

  .street-tags span {
    min-height: 28px;
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .signal-board {
    display: none;
  }

  .briefing-panel .metric-row {
    display: none;
  }

  .market-map,
  .market-map canvas {
    min-height: 190px;
    height: 190px;
  }

  .command-dock {
    grid-template-columns: 1fr;
  }

  .dock-command {
    min-height: 112px;
  }

  .terminal-header h2 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }
}

/* Tool-page readability reset: compact, high-contrast operating screens */
.topbar .nav-links a {
  border-color: rgba(5, 5, 6, 0.12);
  background: rgba(5, 5, 6, 0.04);
  color: rgba(5, 5, 6, 0.78);
}

.topbar .nav-links a:hover,
.topbar .nav-links a:focus-visible,
.topbar .nav-links a[href="./gta-6-founder-dashboard.html"],
.topbar .nav-links a[href="#waitlist"] {
  border-color: var(--desk-ink);
  background: var(--desk-ink);
  color: var(--desk-paper);
}

.article-main {
  width: min(100%, 1320px);
  gap: clamp(18px, 2.4vw, 30px);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 36px);
  color: var(--desk-paper);
}

.article-main::before {
  display: none;
}

.article-main > .article-hero {
  min-height: auto;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid rgba(5, 5, 6, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.44), transparent 35%),
    var(--desk-paper);
  color: var(--desk-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.article-main > .article-hero::before,
.article-main > .article-hero::after {
  display: none;
}

.article-main > .article-hero .eyebrow,
.article-main .panel-heading .eyebrow {
  color: rgba(5, 5, 6, 0.58);
  text-shadow: none;
}

.article-main > .article-hero h1 {
  max-width: 13ch;
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
  line-height: 0.96;
  text-shadow: none;
}

.article-main > .article-hero .lede {
  max-width: 66ch;
  color: rgba(5, 5, 6, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.45;
}

.article-main > .split-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(14px, 2vw, 22px);
}

.article-main .tool-panel,
.article-main .opportunity-panel,
.article-main .content-panel {
  overflow: hidden;
  padding: clamp(18px, 2.3vw, 26px);
  border: 1px solid rgba(5, 5, 6, 0.12);
  border-radius: 8px;
  background: var(--desk-paper);
  color: var(--desk-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.article-main .tool-panel::after,
.article-main .opportunity-panel::after,
.article-main .content-panel::after {
  display: none;
}

.article-main .panel-heading {
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom-color: rgba(5, 5, 6, 0.1);
}

.article-main .panel-heading::after {
  background: linear-gradient(90deg, var(--desk-ink), transparent);
}

.article-main .panel-heading h2,
.tool-panel .panel-heading h2,
.opportunity-panel .panel-heading h2 {
  max-width: 22ch;
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.article-main p,
.article-main .form-note,
.article-main .calculator-summary,
.article-main .business-row p,
.article-main .plan-step p,
.article-main .content-panel p {
  color: rgba(5, 5, 6, 0.72);
}

.article-main a:not(.button) {
  color: var(--desk-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(5, 5, 6, 0.24);
  text-underline-offset: 3px;
}

.article-main .result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-main .result-grid article {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 6, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--desk-ink);
  box-shadow: none;
}

.article-main .result-grid article::after {
  display: none;
}

.article-main .result-grid span,
.article-main .business-row span,
.article-main .plan-step span,
.article-main .method-table span {
  color: rgba(5, 5, 6, 0.56);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
}

.article-main .result-grid strong {
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  text-shadow: none;
}

.article-main .calculator-summary,
.article-main .form-note {
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(5, 5, 6, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 750;
  line-height: 1.45;
}

.article-main .planner-actions,
.article-main .calculator-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top-color: rgba(5, 5, 6, 0.1);
}

.article-main .button {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: normal;
}

.article-main .button.primary {
  border-color: var(--desk-ink);
  background: var(--desk-ink);
  color: var(--desk-paper);
  box-shadow: 4px 4px 0 var(--desk-yellow);
}

.article-main .button.ghost {
  border-color: rgba(5, 5, 6, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--desk-ink);
}

.article-main .button.ghost span {
  background: rgba(5, 5, 6, 0.08);
  color: var(--desk-ink);
}

.article-main .business-board,
.article-main .founder-board,
.article-main .plan-stack,
.article-main .founder-plan {
  gap: 9px;
}

.article-main .business-row,
.article-main .plan-step,
.article-main .method-table article,
.article-main .policy-grid article,
.article-main .faq-item {
  min-height: 0;
  padding: 12px;
  border: 1px solid rgba(5, 5, 6, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--desk-ink);
  box-shadow: none;
}

.article-main .business-row::before,
.article-main .plan-step::before,
.article-main .method-table article::after,
.article-main .policy-grid article::after,
.article-main .faq-item::after {
  display: none;
}

.article-main .business-row h3,
.article-main .plan-step h3,
.article-main .method-table h3,
.article-main .content-panel h2 {
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.1;
}

.article-main .business-row strong,
.article-main .plan-step strong {
  color: var(--desk-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-shadow: none;
}

.article-main .tracker-rank,
.article-main .plan-index {
  border: 1px solid rgba(5, 5, 6, 0.14);
  background: var(--desk-yellow);
  color: var(--desk-ink);
  box-shadow: none;
}

.article-main .method-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.article-main .content-panel {
  color: var(--desk-ink);
}

@media (max-width: 980px) {
  .article-main > .split-section {
    grid-template-columns: 1fr;
  }

  .article-main .method-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 86px;
  }

  .article-main {
    gap: 14px;
    padding: 14px;
  }

  .article-main > .article-hero {
    padding: 20px;
  }

  .article-main > .article-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1;
  }

  .article-main > .article-hero .lede {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .article-main .tool-panel,
  .article-main .opportunity-panel,
  .article-main .content-panel {
    padding: 16px;
  }

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

  .article-main .planner-actions,
  .article-main .calculator-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-main .method-table {
    grid-template-columns: 1fr;
  }

  .article-main .business-row,
  .article-main .plan-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .article-main .business-row > div:nth-child(n + 3) {
    grid-column: 2;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
    border: 1px solid rgba(5, 5, 6, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.46);
  }

  .article-main .business-row h3,
  .article-main .plan-step h3,
  .article-main .method-table h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    line-height: 1.12;
  }

  .article-main .business-row p,
  .article-main .plan-step p,
  .article-main .method-table p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .article-main .tracker-rank,
  .article-main .plan-index {
    width: 32px;
    height: 32px;
    font-size: 0.86rem;
  }

  .article-main .method-table {
    gap: 8px;
  }

  .article-main .method-table article {
    min-height: 0 !important;
    padding: 10px;
  }
}
