:root {
  color-scheme: light;
  --ink: #171b22;
  --muted: #5d626c;
  --line: #d8dde3;
  --paper: #f4f6f8;
  --white: #ffffff;
  --red: #e1252f;
  --red-dark: #9f161d;
  --charcoal: #222832;
  --steel: #46525f;
  --teal: #435f6e;
  --gold: #bd8e27;
  --green: #2f7052;
  --blue: #3d5f90;
  --shadow: 0 16px 38px rgba(31, 35, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(34, 40, 50, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(225, 37, 47, 0.08), transparent 38%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-logo-wrap.image-fallback {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.brand-logo-wrap.image-fallback::before {
  content: attr(data-fallback);
  color: var(--white);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

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

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

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #edf2f5;
  color: var(--ink);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

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

.icon-btn svg,
.primary-action svg,
.secondary-action svg,
.strategy-item svg,
.claim-card svg,
.copy-btn svg {
  width: 18px;
  height: 18px;
}

main {
  padding-bottom: 56px;
}

.hero-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 64px) clamp(16px, 5vw, 72px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

.primary-action,
.secondary-action,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
}

.primary-action {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.secondary-action,
.copy-btn {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.secondary-action:hover,
.copy-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.product-stage {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 47, 47, 0.14), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(34, 40, 50, 0.14), transparent 34%),
    #f1f5f8;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-media img {
  width: min(620px, 96%);
  max-height: 320px;
  object-fit: contain;
}

.product-showcase {
  position: relative;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.showcase-kicker {
  justify-self: start;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pack-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-end;
  gap: clamp(10px, 1.6vw, 18px);
  width: 100%;
  max-width: 560px;
}

.pack {
  position: relative;
  display: grid;
  place-items: end center;
  justify-self: center;
  width: 100%;
  max-width: 102px;
  min-width: 0;
  border: 2px solid #9aa6b2;
  border-radius: 8px 8px 6px 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.36)),
    linear-gradient(160deg, var(--charcoal) 0 28%, var(--red) 28% 62%, #f5f7f9 62% 100%);
  box-shadow: 0 14px 24px rgba(31, 35, 40, 0.16);
  overflow: hidden;
}

.pack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 34% 72%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.pack strong,
.pack-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pack strong {
  margin: 0 0 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: clamp(0.74rem, 1.1vw, 0.9rem);
}

.pack-label {
  width: 88%;
  margin-bottom: 8px;
  padding: 6px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-size: clamp(0.65rem, 1vw, 0.82rem);
  font-weight: 950;
  line-height: 1.05;
}

.pack-cap {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 28px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 5px 5px 0 0;
  background: #20252d;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
}

.video-card,
.site-photo,
.dealer-form,
.application-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.video-card {
  overflow: hidden;
}

.video-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  overflow: hidden;
}

.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  transform: scale(1.02);
}

.play-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(225, 37, 47, 0.94);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(23, 27, 34, 0.24);
}

.play-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.video-copy {
  padding: 18px;
}

.video-copy h3,
.video-copy p,
.site-photo figcaption {
  margin: 0;
}

.video-copy p {
  margin-top: 6px;
  color: var(--muted);
}

.video-link {
  width: fit-content;
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
}

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

.site-photo {
  position: relative;
  min-height: 150px;
  margin: 0;
  padding: 12px;
  overflow: hidden;
}

.site-photo img {
  width: 100%;
  height: 132px;
  border-radius: 6px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.08), transparent),
    #f1f3f5;
}

.site-photo.image-fallback {
  display: grid;
  place-items: center;
  min-height: 168px;
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.12), transparent 54%),
    linear-gradient(315deg, rgba(34, 40, 50, 0.12), transparent 54%),
    var(--white);
}

.site-photo.image-fallback::before {
  content: attr(data-fallback);
  max-width: 220px;
  color: var(--charcoal);
  font-weight: 950;
  text-align: center;
}

.site-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.pack-handle {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 46%;
  height: 24px;
  transform: translateX(-50%);
  border: 5px solid rgba(255, 255, 255, 0.88);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.pack-sachet {
  height: 126px;
}

.pack-bottle {
  height: 174px;
  border-radius: 16px 16px 7px 7px;
}

.pack-gallon {
  height: 154px;
  max-width: 112px;
}

.pack-pail {
  height: 138px;
  max-width: 118px;
  border-radius: 8px;
}

.showcase-copy {
  width: min(560px, 100%);
  text-align: center;
}

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

.showcase-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.showcase-copy p {
  margin-top: 6px;
  color: var(--muted);
}

.use-case-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.use-case-ribbon span {
  padding: 7px 10px;
  border: 1px solid rgba(20, 124, 131, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.hero-stats div,
.strategy-item,
.focus-panel,
.roadmap-panel,
.trial-panel,
.callout-panel,
.planner-panel,
.result-card,
.budget-control,
.budget-output,
.script-card,
.guardrail-grid article,
.mlm-hero article,
.mlm-plan-card,
.mlm-calculator,
.fx-panel,
.mlm-guardrails article,
.mlm-product-card,
.compensation-graphic {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.hero-stats div {
  padding: 12px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 950;
  line-height: 1.1;
}

.section-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 760px);
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.strategy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -34px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.strategy-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 35, 40, 0.08);
}

.strategy-item svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.strategy-item h2,
.strategy-item p {
  margin: 0;
}

.strategy-item h2 {
  font-size: 1rem;
}

.strategy-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.segment-button {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.segment-button:hover,
.segment-button.is-active {
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(217, 47, 47, 0.14);
}

.segment-button span {
  color: var(--muted);
  font-size: 0.86rem;
}

.segment-button strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.2;
}

.focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
  padding: 20px;
}

.focus-panel h3,
.focus-panel h4,
.focus-panel p {
  margin: 0;
}

.focus-panel h3 {
  font-size: 1.45rem;
}

.focus-panel h4 {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.focus-panel p {
  color: var(--muted);
}

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

.claim-card {
  min-height: 245px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.claim-card svg {
  color: var(--red);
}

.claim-card h3,
.claim-card p {
  margin: 12px 0 0;
}

.claim-card p {
  color: var(--muted);
}

.claim-card span {
  display: block;
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 850;
}

.award-card {
  display: flex;
  flex-direction: column;
}

.award-badge {
  display: grid;
  place-items: center;
  width: 100%;
  height: 92px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.14), transparent 58%),
    linear-gradient(315deg, rgba(34, 40, 50, 0.14), transparent 58%),
    #f1f5f8;
  color: var(--charcoal);
  text-align: center;
}

.award-badge strong,
.award-badge span {
  display: block;
  line-height: 1.05;
}

.award-badge strong {
  color: var(--red);
  font-size: 1.6rem;
}

.award-badge span {
  font-weight: 950;
}

.phase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.phase-tab {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 850;
}

.phase-tab.is-active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.roadmap-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 0.75fr);
  gap: 20px;
  padding: 22px;
}

.roadmap-panel h3,
.roadmap-panel h4,
.roadmap-panel p,
.roadmap-panel ul {
  margin: 0;
}

.roadmap-panel h3 {
  font-size: 1.45rem;
}

.roadmap-panel h4 {
  margin-bottom: 8px;
  color: var(--red);
}

.roadmap-panel ul,
.guardrail-grid ul {
  padding-left: 18px;
  color: var(--muted);
}

.roadmap-panel li,
.guardrail-grid li {
  margin: 0 0 8px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 16px;
}

.trial-panel,
.callout-panel,
.planner-panel,
.budget-control,
.budget-output {
  padding: 20px;
}

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

.trial-header h3,
.trial-header p,
.callout-panel h3,
.callout-panel p {
  margin: 0;
}

.trial-header p,
.callout-panel p {
  margin-top: 6px;
  color: var(--muted);
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  flex: 0 0 auto;
  border: 8px solid #e7eef2;
  border-top-color: var(--green);
  border-radius: 999px;
  text-align: center;
}

.progress-ring strong,
.progress-ring span {
  display: block;
  line-height: 1;
}

.progress-ring span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.check-item {
  display: flex;
  gap: 10px;
  min-height: 62px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.check-item input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.check-item span {
  font-weight: 800;
}

.check-item small {
  display: block;
  color: var(--muted);
}

.callout-panel {
  background:
    linear-gradient(155deg, rgba(20, 124, 131, 0.12), transparent 58%),
    var(--white);
}

.callout-panel .copy-btn {
  width: 100%;
  margin-top: 18px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(20, 124, 131, 0.16);
}

select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(67, 95, 110, 0.16);
}

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

.result-card {
  padding: 18px;
}

.result-card.highlight {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(217, 47, 47, 0.1), transparent 55%),
    var(--white);
}

.result-card span,
.result-card small {
  display: block;
}

.result-card span {
  color: var(--muted);
  font-weight: 850;
}

.result-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.result-card small {
  color: var(--muted);
}

.budget-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
}

.budget-control {
  display: grid;
  gap: 14px;
}

.budget-slider {
  display: grid;
  gap: 6px;
}

.budget-slider input {
  min-height: auto;
  padding: 0;
  accent-color: var(--red);
}

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

.budget-slider strong {
  color: var(--ink);
}

.budget-output {
  display: grid;
  gap: 10px;
}

.budget-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

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

.budget-row span {
  color: var(--muted);
}

.budget-row strong {
  white-space: nowrap;
}

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

.mlm-hero article {
  padding: 18px;
}

.mlm-hero h3,
.mlm-hero p,
.mlm-plan-card h3,
.mlm-plan-card p,
.fx-panel h3,
.fx-panel p,
.mlm-guardrails h3 {
  margin: 0;
}

.mlm-hero p,
.mlm-plan-card p,
.fx-panel p,
.mlm-product-card p,
.compensation-head p {
  margin-top: 7px;
  color: var(--muted);
}

.mlm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.mlm-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
}

.starter-package-card {
  border-color: rgba(225, 37, 47, 0.34);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.08), transparent 54%),
    var(--white);
}

.compliance-note {
  padding: 12px;
  border-radius: 8px;
  background: #f6f8f9;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 780;
}

.mlm-product-card h3,
.mlm-product-card p,
.mlm-product-card dl,
.mlm-product-card dd {
  margin: 0;
}

.mlm-product-card dl {
  display: grid;
  gap: 8px;
}

.mlm-product-card dl div {
  padding: 10px;
  border-radius: 8px;
  background: #f1f3f5;
}

.mlm-product-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mlm-product-card dd {
  margin-top: 3px;
  color: var(--charcoal);
  font-weight: 950;
  line-height: 1.15;
}

.mlm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 16px;
}

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

.mlm-plan-card {
  min-height: 180px;
  padding: 18px;
}

.mlm-plan-card span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.mlm-plan-card h3 {
  margin-top: 14px;
}

.mlm-calculator {
  padding: 18px;
}

.mlm-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.fx-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
}

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

.fx-rate {
  display: grid;
  gap: 5px;
}

.fx-rate span {
  color: var(--charcoal);
  font-weight: 950;
}

.fx-rate small {
  color: var(--muted);
}

.fx-rate input {
  min-height: 38px;
}

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

.mlm-guardrails article {
  padding: 18px;
}

.mlm-guardrails ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.mlm-guardrails li {
  margin-bottom: 8px;
}

.compensation-graphic {
  margin-top: 16px;
  padding: 18px;
}

.compensation-head {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  gap: 18px;
  align-items: end;
}

.compensation-head h3,
.compensation-head p {
  margin: 0;
}

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

.split-card {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.split-card div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.split-card span,
.split-card small {
  color: var(--muted);
}

.split-card span {
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.split-card strong {
  color: var(--charcoal);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
  text-align: right;
}

.split-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebef;
}

.split-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
}

.split-card.upline .split-track i {
  background: var(--teal);
}

.split-card.company .split-track i {
  background: var(--charcoal);
}

.comp-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 18px;
  max-width: 820px;
  margin-inline: auto;
}

.comp-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.36fr) minmax(180px, 0.3fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.comp-node:not(:last-child)::after {
  content: "v";
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.comp-node span,
.comp-node small {
  display: block;
}

.comp-node span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comp-node strong {
  display: block;
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.05;
}

.comp-node small {
  color: var(--muted);
}

.comp-node.seller {
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.1), transparent 58%),
    var(--white);
}

.comp-node.company {
  background:
    linear-gradient(135deg, rgba(34, 40, 50, 0.1), transparent 58%),
    var(--white);
}

.product-payout-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.payout-product-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.payout-product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.payout-product-head h4,
.payout-product-head p,
.payout-treatment {
  margin: 0;
}

.payout-product-head h4 {
  color: var(--charcoal);
  font-size: 1rem;
}

.payout-product-head p,
.payout-treatment {
  color: var(--muted);
}

.payout-product-head strong {
  white-space: nowrap;
  color: var(--red);
  font-size: 1.15rem;
}

.payout-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.payout-ladder div {
  min-height: 66px;
  padding: 9px;
  border-radius: 8px;
  background: #eef2f5;
}

.payout-ladder span {
  display: block;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.payout-ladder strong {
  display: block;
  margin-top: 4px;
  color: var(--charcoal);
  line-height: 1.1;
}

.payout-treatment {
  margin-top: 12px;
  font-weight: 850;
}

.video-explainer-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.1), transparent 56%),
    var(--white);
}

.video-explainer-kit h3,
.video-explainer-kit p,
.storyboard {
  margin: 0;
}

.video-explainer-kit p {
  margin-top: 7px;
  color: var(--muted);
}

.video-explainer-kit .copy-btn {
  margin-top: 14px;
}

.storyboard {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
  counter-reset: scene;
}

.storyboard li {
  display: grid;
  grid-template-columns: 34px minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.storyboard li::before {
  counter-increment: scene;
  content: counter(scene);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.storyboard strong {
  color: var(--charcoal);
}

.storyboard span {
  color: var(--muted);
}

.drain-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 16px;
}

.drain-timeline {
  display: grid;
  gap: 10px;
}

.drain-timeline article,
.environment-panel,
.lab-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.drain-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.drain-timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -11px;
  width: 2px;
  height: 12px;
  background: var(--red);
}

.drain-timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.drain-timeline h3,
.drain-timeline p,
.environment-panel h3,
.environment-panel p,
.environment-panel dl,
.environment-panel dd,
.lab-grid h3,
.lab-grid p {
  margin: 0;
}

.drain-timeline p,
.environment-panel p,
.environment-panel dd,
.lab-grid p {
  color: var(--muted);
}

.environment-panel {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(47, 112, 82, 0.12), transparent 58%),
    var(--white);
}

.environment-panel p {
  margin-top: 8px;
}

.environment-panel dl {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.environment-panel dl div {
  padding: 12px;
  border-radius: 8px;
  background: #eef5f1;
}

.environment-panel dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.environment-panel dd {
  margin-top: 3px;
  color: var(--charcoal);
  font-weight: 950;
}

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

.lab-grid article {
  padding: 18px;
}

.lab-grid p {
  margin-top: 8px;
}

.lab-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-weight: 950;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.source-links span {
  font-weight: 900;
  color: var(--charcoal);
}

.source-links a {
  color: var(--red);
  font-weight: 900;
}

.opportunity-page {
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(189, 142, 39, 0.1), transparent 42%),
    #f5f7f8;
}

.opportunity-topbar {
  background: rgba(255, 255, 255, 0.94);
}

.public-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compact-action {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.muted-action {
  color: var(--muted);
}

.public-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
}

.public-menu-toggle svg {
  width: 20px;
  height: 20px;
}

.public-mobile-nav[hidden] {
  display: none !important;
}

.public-mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 16px;
  left: 16px;
  z-index: 30;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.public-mobile-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

.public-mobile-nav a:hover,
.public-mobile-nav a:focus-visible {
  background: #edf2f5;
}

.opportunity-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(44px, 7vw, 92px) clamp(16px, 5vw, 72px);
  color: var(--white);
  background: #101823;
}

.opportunity-hero::before,
.opportunity-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.opportunity-hero::before {
  background:
    linear-gradient(90deg, rgba(11, 16, 24, 0.94) 0%, rgba(11, 16, 24, 0.78) 48%, rgba(11, 16, 24, 0.38) 100%),
    linear-gradient(180deg, rgba(11, 16, 24, 0.14), rgba(11, 16, 24, 0.86)),
    url("./assets/networker-hero.png") center / cover no-repeat;
  filter: saturate(1.02) contrast(1.06);
}

.opportunity-hero::after {
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.34), transparent 36%),
    linear-gradient(315deg, rgba(189, 142, 39, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(225, 37, 47, 0.14), transparent 42%);
}

.opportunity-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: clamp(24px, 4vw, 52px);
  width: min(1260px, 100%);
  margin: 0 auto;
  align-items: center;
}

.opportunity-hero .eyebrow {
  color: #f3c56c;
}

.opportunity-hero .hero-copy h1 {
  max-width: 980px;
  color: var(--white);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

.opportunity-hero .hero-text {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.84);
}

.opportunity-hero .secondary-action,
.opportunity-price-card .primary-action {
  border-color: rgba(255, 255, 255, 0.26);
}

.opportunity-hero .secondary-action {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.opportunity-hero .secondary-action:hover,
.opportunity-hero .secondary-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.trust-badge {
  background: rgba(67, 95, 110, 0.24);
}

.opportunity-price-card {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 15, 22, 0.64);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.opportunity-price-card span,
.opportunity-price-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.opportunity-price-card span {
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.opportunity-price-card strong {
  color: #f3c56c;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.9;
}

.opportunity-section,
.payout-overview-section,
.starter-public-section,
.customer-value-section,
.product-opportunity-section,
.fleet-public-section,
.environment-purpose-section,
.onboarding-section,
.proof-section,
.faq-section,
.apply-section,
.public-disclosures {
  scroll-margin-top: 86px;
}

.earn-path-grid,
.public-payout-layout,
.customer-value-grid,
.public-product-grid,
.fleet-public-layout,
.impact-grid,
.begin-steps,
.proof-grid,
.disclosure-grid {
  display: grid;
  gap: 12px;
}

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

.earn-path-grid article,
.public-flow-card,
.earnings-scenario-card,
.starter-public-card,
.customer-value-grid article,
.public-product-card,
.fleet-result-preview,
.environment-purpose-card,
.begin-steps article,
.proof-grid article,
.faq-list details,
.apply-card,
.disclosure-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.earn-path-grid article {
  min-height: 230px;
  padding: 20px;
}

.earn-path-grid svg,
.customer-value-grid svg,
.impact-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.earn-path-grid h3,
.earn-path-grid p,
.public-flow-card h3,
.earnings-scenario-card h3,
.customer-value-grid h3,
.customer-value-grid p,
.public-product-card h3,
.public-product-card p,
.public-product-card dl,
.public-product-card dd,
.fleet-result-preview h3,
.fleet-result-preview p,
.environment-purpose-card h2,
.environment-purpose-card p,
.begin-steps h3,
.begin-steps p,
.proof-grid h3,
.proof-grid p,
.apply-card h2,
.apply-card p,
.disclosure-grid h2,
.disclosure-grid p {
  margin: 0;
}

.earn-path-grid h3,
.customer-value-grid h3 {
  margin-top: 14px;
  color: var(--charcoal);
  line-height: 1.14;
}

.earn-path-grid p,
.customer-value-grid p,
.fleet-result-preview p,
.begin-steps p,
.proof-grid p,
.apply-card p,
.disclosure-grid p {
  margin-top: 9px;
  color: var(--muted);
}

.opportunity-pathway {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.path-step {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f7f9;
  color: var(--muted);
  font-weight: 900;
}

.path-step:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: var(--gold);
}

.path-step.is-active,
.path-step:hover,
.path-step:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.pathway-detail {
  margin: 10px 0 0;
  color: var(--charcoal);
  font-weight: 850;
}

.public-payout-layout {
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
}

.public-flow-card,
.earnings-scenario-card {
  padding: 20px;
}

.public-flow {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.public-flow div {
  position: relative;
  padding: 13px;
  border-radius: var(--radius);
  background: #f4f7f8;
}

.public-flow div:not(:last-child)::after {
  content: "v";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 950;
}

.public-flow strong,
.public-flow span {
  display: block;
}

.public-flow span {
  margin-top: 4px;
  color: var(--muted);
}

.scenario-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.scenario-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
}

.scenario-button.is-active,
.scenario-button:hover,
.scenario-button:focus-visible {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

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

.scenario-form small {
  color: var(--muted);
  font-weight: 760;
}

.scenario-results {
  margin-top: 14px;
}

.scenario-results article {
  padding: 14px;
  border-radius: var(--radius);
  background: #f5f7f9;
}

.scenario-results article.highlight {
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.1), transparent 54%),
    var(--white);
  border: 1px solid rgba(225, 37, 47, 0.24);
}

.scenario-results span,
.scenario-results strong {
  display: block;
}

.scenario-results span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-results strong {
  margin-top: 5px;
  color: var(--charcoal);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.disclaimer-note {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #f3f6f8;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 780;
}

.starter-public-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(20px, 4vw, 38px);
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.1), transparent 48%),
    linear-gradient(315deg, rgba(189, 142, 39, 0.16), transparent 44%),
    var(--white);
  box-shadow: 0 18px 42px rgba(31, 35, 40, 0.1);
}

.starter-public-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.starter-public-copy > p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.starter-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 12px;
  margin-top: 20px;
}

.starter-product-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f7f9;
}

.starter-offer-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.discount-badge {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(189, 142, 39, 0.22);
  color: #f3c56c;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.old-price {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  text-decoration: line-through;
}

.starter-offer-panel > strong {
  color: #f3c56c;
  font-size: clamp(3.4rem, 8vw, 5.9rem);
  line-height: 0.88;
}

.starter-offer-panel dl,
.starter-offer-panel dd {
  margin: 0;
}

.starter-offer-panel dl {
  display: grid;
  gap: 8px;
}

.starter-offer-panel dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.starter-offer-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.starter-offer-panel dd {
  color: var(--white);
  font-weight: 950;
}

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

.customer-value-grid article {
  min-height: 190px;
  padding: 18px;
}

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

.public-product-card {
  overflow: hidden;
}

.public-product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #eef2f4;
}

.public-product-card > div {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.public-product-card dl {
  display: grid;
  gap: 8px;
}

.public-product-card dl div {
  padding: 10px;
  border-radius: var(--radius);
  background: #f4f7f8;
}

.public-product-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.public-product-card dd {
  margin-top: 4px;
  color: var(--charcoal);
  font-weight: 850;
}

.public-product-card details {
  padding: 12px;
  border-radius: var(--radius);
  background: #f6f8f9;
}

.public-product-card summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 950;
}

.fleet-equation {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.fleet-equation span,
.fleet-equation strong {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 10px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 950;
}

.fleet-equation span {
  background: #eef3f4;
  color: var(--teal);
}

.fleet-equation strong {
  background: var(--charcoal);
  color: var(--white);
}

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

.fleet-result-preview {
  padding: 20px;
}

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

.environment-purpose-card {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(20px, 4vw, 38px);
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(47, 112, 82, 0.12), transparent 48%),
    var(--white);
}

.environment-purpose-card p {
  margin-top: 12px;
  color: var(--muted);
}

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

.impact-grid article {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: #eef6f1;
}

.impact-grid strong,
.impact-grid span {
  display: block;
}

.impact-grid strong {
  color: var(--charcoal);
}

.impact-grid span {
  color: var(--muted);
}

.begin-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.begin-steps article {
  min-height: 210px;
  padding: 18px;
}

.begin-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

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

.proof-grid article {
  padding: 18px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 950;
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.apply-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.1), transparent 50%),
    linear-gradient(315deg, rgba(67, 95, 110, 0.12), transparent 50%),
    var(--white);
}

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

.disclosure-grid article {
  padding: 18px;
}

.disclosure-grid h2 {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.public-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  margin-top: 64px;
  padding: clamp(26px, 5vw, 44px);
  background: var(--charcoal);
  color: var(--white);
}

.public-footer strong,
.public-footer span {
  display: block;
}

.public-footer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.public-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.public-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.public-footer a:hover,
.public-footer a:focus-visible {
  color: var(--white);
}

.fleet-launch-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(44px, 7vw, 86px) clamp(16px, 5vw, 72px);
  background: #111821;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-launch-hero::before,
.fleet-launch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fleet-launch-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 15, 22, 0.94) 0%, rgba(10, 15, 22, 0.78) 44%, rgba(10, 15, 22, 0.36) 100%),
    linear-gradient(180deg, rgba(10, 15, 22, 0.1), rgba(10, 15, 22, 0.82)),
    url("assets/dmx-application.jpg") center / cover no-repeat;
  filter: saturate(1.02) contrast(1.05);
}

.fleet-launch-hero::after {
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.28), transparent 30%),
    linear-gradient(315deg, rgba(189, 142, 39, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(10, 15, 22, 0.36), transparent 48%);
}

.fleet-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: center;
}

.fleet-launch-hero .eyebrow {
  color: #f5c15d;
}

.fleet-launch-hero .hero-copy h1 {
  color: var(--white);
  max-width: 940px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
}

.fleet-launch-hero .hero-text {
  color: rgba(255, 255, 255, 0.82);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.launch-badge svg {
  width: 17px;
  height: 17px;
  color: #f5c15d;
}

.fleet-secondary-pill {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.fleet-launch-hero .primary-action {
  box-shadow: 0 14px 32px rgba(225, 37, 47, 0.3);
}

.fleet-launch-hero .secondary-action,
.fleet-hero-dashboard .secondary-action {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.fleet-launch-hero .secondary-action:hover,
.fleet-launch-hero .secondary-action:focus-visible,
.fleet-hero-dashboard .secondary-action:hover,
.fleet-hero-dashboard .secondary-action:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.fleet-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 960px;
}

.fleet-hero-metrics article,
.fleet-hero-dashboard {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 18, 26, 0.58);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.fleet-hero-metrics article {
  min-height: 132px;
  padding: 16px;
}

.fleet-hero-metrics span,
.fleet-hero-metrics small,
.fleet-hero-dashboard dt,
.fleet-hero-dashboard dd {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-hero-metrics span,
.fleet-hero-dashboard dt {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fleet-hero-metrics strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.fleet-hero-dashboard {
  padding: clamp(18px, 3vw, 28px);
}

.fleet-hero-dashboard h2,
.fleet-hero-dashboard dl,
.fleet-hero-dashboard dd {
  margin: 0;
}

.fleet-hero-dashboard h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.fleet-hero-dashboard dl {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.fleet-hero-dashboard dl div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.fleet-hero-dashboard dd {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.fleet-hero-dashboard .secondary-action {
  width: 100%;
  margin-top: 18px;
}

.networker-start-grid,
.quick-view-grid,
.earnings-visual-layout,
.earnings-calculator-layout,
.before-after-panel,
.example-month-card {
  display: grid;
  gap: 12px;
}

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

.networker-start-grid article,
.starter-feature-card,
.networker-tabs,
.payout-visual-card,
.example-month-card,
.before-after-panel article,
.fleet-input-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.networker-start-grid article {
  min-height: 230px;
  padding: 20px;
}

.networker-start-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.networker-start-grid span {
  display: block;
  margin-top: 16px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.networker-start-grid h3,
.networker-start-grid p {
  margin: 0;
}

.networker-start-grid h3 {
  margin-top: 8px;
  color: var(--charcoal);
  line-height: 1.14;
}

.networker-start-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.starter-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(189, 142, 39, 0.12), transparent 42%),
    var(--white);
  box-shadow: 0 16px 38px rgba(31, 35, 40, 0.09);
}

.starter-copy h2,
.starter-copy p,
.starter-price-panel dl,
.starter-price-panel dd {
  margin: 0;
}

.starter-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.starter-copy > p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.starter-contents {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.starter-contents li {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f5f7f9;
}

.starter-contents strong {
  color: var(--charcoal);
}

.starter-contents span {
  color: var(--muted);
  font-weight: 850;
}

.starter-price-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.starter-price-panel > span,
.starter-price-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.starter-price-panel > strong {
  color: #f5c15d;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
}

.starter-price-panel > small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 780;
}

.starter-price-panel dl {
  display: grid;
  gap: 8px;
}

.starter-price-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.starter-price-panel dd {
  color: var(--white);
  font-weight: 950;
  text-align: right;
}

.networker-tabs {
  padding: 18px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f7f9;
  color: var(--muted);
  font-weight: 900;
}

.tab-button.is-active,
.tab-button:hover,
.tab-button:focus-visible {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.tab-panel {
  padding-top: 16px;
}

.tab-panel p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
}

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

.quick-view-grid article {
  padding: 14px;
  border-radius: var(--radius);
  background: #f5f7f9;
}

.quick-view-grid strong,
.quick-view-grid span {
  display: block;
}

.quick-view-grid strong {
  color: var(--charcoal);
}

.quick-view-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.tab-panel details {
  max-width: 920px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.tab-panel summary {
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 950;
}

.earnings-visual-layout,
.earnings-calculator-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.payout-visual-card {
  padding: 18px;
}

.payout-visual-card h3,
.payout-step-detail h4,
.flow-explainer,
.example-month-card h3,
.example-month-card p,
.example-month-card dl,
.example-month-card dd {
  margin: 0;
}

.payout-step-list {
  display: grid;
  gap: 8px;
}

.payout-step-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f9fb;
  color: var(--charcoal);
  text-align: left;
}

.payout-step-card > span:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-weight: 950;
}

.payout-step-card > span:last-child {
  display: block;
  min-width: 0;
}

.payout-step-card strong,
.payout-step-card small {
  display: block;
}

.payout-step-card small {
  margin-top: 3px;
  color: var(--muted);
}

.payout-step-card.is-active,
.payout-step-card:hover,
.payout-step-card:focus-visible {
  border-color: rgba(225, 37, 47, 0.42);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.08), transparent 58%),
    var(--white);
}

.payout-step-detail {
  min-height: 118px;
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3f6f8;
}

.payout-step-detail h4 {
  color: var(--charcoal);
}

.payout-step-detail p {
  margin: 6px 0 0;
  color: var(--muted);
}

.flow-mode-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.flow-mode {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
}

.flow-mode.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.commission-flow {
  display: grid;
  gap: 10px;
}

.flow-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 0.64fr);
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f9fb;
  color: var(--charcoal);
  text-align: left;
}

.flow-node:not(:last-child)::after {
  content: "v";
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.flow-node strong,
.flow-node span {
  display: block;
}

.flow-node span {
  color: var(--muted);
}

.flow-node.is-active,
.flow-node:hover,
.flow-node:focus-visible {
  border-color: rgba(67, 95, 110, 0.4);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(31, 35, 40, 0.08);
}

.flow-explainer {
  min-height: 58px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f3f6f8;
  color: var(--muted);
  font-weight: 800;
}

.earnings-calculator,
.earnings-results {
  min-width: 0;
}

.example-month-card {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  margin-top: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(47, 112, 82, 0.11), transparent 46%),
    var(--white);
}

.example-month-card p {
  margin-top: 8px;
  color: var(--muted);
}

.example-month-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.example-month-card dl div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.example-month-card dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.example-month-card dd {
  margin-top: 5px;
  color: var(--charcoal);
  font-weight: 950;
}

.value-card-grid article h3 {
  color: var(--charcoal);
}

.fleet-input-groups {
  display: grid;
  gap: 14px;
}

.fleet-input-group {
  padding: 14px;
  background: #fbfcfd;
}

.fleet-input-group h4 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.before-after-panel article {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.08), transparent 58%),
    var(--white);
}

.before-after-panel span,
.before-after-panel small {
  display: block;
  color: var(--muted);
}

.before-after-panel span {
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.before-after-panel strong {
  display: block;
  margin: 6px 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.fleet-hero {
  background:
    linear-gradient(135deg, rgba(34, 40, 50, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(67, 95, 110, 0.12), transparent 42%),
    var(--paper);
}

.fleet-hero .hero-copy h1 {
  max-width: 900px;
}

.fleet-visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fleet-visual-card img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  background: #eef2f5;
}

.fleet-visual-card figcaption {
  padding: 16px;
  color: var(--muted);
  font-weight: 780;
}

.fleet-service-grid,
.fleet-card-grid,
.fleet-type-grid,
.fleet-value-list,
.fleet-kpi-grid,
.profitability-grid {
  display: grid;
  gap: 12px;
}

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

.fleet-service-grid article,
.fleet-card-grid article,
.fleet-value-list article,
.profitability-grid article,
.fleet-process article,
.fleet-input-panel,
.fleet-result-panel,
.fleet-formula-note,
.fleet-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
}

.fleet-service-grid article {
  min-height: 220px;
  padding: 18px;
}

.fleet-service-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.fleet-service-grid h3,
.fleet-service-grid p,
.fleet-card-grid h3,
.fleet-card-grid p,
.fleet-value-list strong,
.fleet-value-list span,
.profitability-grid strong,
.profitability-grid span,
.fleet-process h3,
.fleet-process p,
.fleet-formula-note h3,
.fleet-formula-note p,
.fleet-cta h2,
.fleet-cta p {
  margin: 0;
}

.fleet-service-grid p,
.fleet-card-grid p,
.fleet-value-list span,
.profitability-grid span,
.fleet-process p,
.fleet-formula-note p,
.fleet-cta p {
  color: var(--muted);
}

.fleet-service-grid p,
.fleet-card-grid p,
.fleet-process p,
.fleet-formula-note p,
.fleet-cta p {
  margin-top: 8px;
}

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

.fleet-card-grid article {
  min-height: 170px;
  padding: 18px;
}

.fleet-value-list,
.profitability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-value-list article,
.profitability-grid article {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 0.66fr);
  gap: 14px;
  padding: 16px;
}

.fleet-value-list strong,
.profitability-grid strong {
  color: var(--charcoal);
  line-height: 1.18;
}

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

.fleet-type-grid span,
.fleet-kpi-grid span {
  display: grid;
  min-height: 66px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
}

.fleet-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: fleet-step;
}

.fleet-process article {
  position: relative;
  min-height: 240px;
  padding: 18px;
}

.fleet-process article span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.fleet-financial-section {
  scroll-margin-top: 82px;
}

.fleet-model-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 16px;
  align-items: start;
}

.fleet-input-panel,
.fleet-result-panel,
.fleet-formula-note {
  padding: 20px;
}

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

.panel-head h3,
.panel-head p {
  margin: 0;
}

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

.fleet-form-note {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #f1f4f6;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 780;
}

.fleet-result-panel {
  display: grid;
  gap: 12px;
}

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

.fleet-bars {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fleet-bars h3,
.fleet-bars small {
  margin: 0;
}

.fleet-bars small {
  color: var(--muted);
}

.fleet-bar-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 0.65fr);
  gap: 12px;
  align-items: center;
}

.fleet-bar-row div {
  display: grid;
  gap: 2px;
}

.fleet-bar-row span {
  color: var(--muted);
  font-weight: 850;
}

.fleet-bar-row strong {
  color: var(--ink);
}

.fleet-bar-track {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #e8edf1;
  overflow: hidden;
}

.fleet-bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--teal));
}

.fleet-breakdown-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fleet-breakdown {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}

.fleet-breakdown caption {
  padding: 14px 16px;
  color: var(--charcoal);
  font-weight: 950;
  text-align: left;
}

.fleet-breakdown th,
.fleet-breakdown td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.fleet-breakdown th {
  color: var(--muted);
  font-weight: 850;
}

.fleet-breakdown td {
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.fleet-disclaimer {
  padding: 14px;
  border: 1px solid rgba(67, 95, 110, 0.22);
  border-radius: var(--radius);
  background: #f3f7f8;
}

.fleet-disclaimer strong,
.fleet-disclaimer p {
  margin: 0;
}

.fleet-disclaimer strong {
  color: var(--charcoal);
}

.fleet-disclaimer p {
  margin-top: 6px;
  color: var(--muted);
}

.fleet-formula-note {
  margin-top: 16px;
  background:
    linear-gradient(135deg, rgba(67, 95, 110, 0.1), transparent 58%),
    var(--white);
}

.profitability-section {
  scroll-margin-top: 82px;
}

.fleet-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.1), transparent 48%),
    linear-gradient(315deg, rgba(67, 95, 110, 0.13), transparent 54%),
    var(--white);
  box-shadow: 0 10px 28px rgba(31, 35, 40, 0.08);
}

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

.script-card {
  padding: 18px;
}

.script-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.script-head h3,
.script-card p,
.calendar-card h3,
.calendar-card p,
.guardrail-grid h3 {
  margin: 0;
}

.script-card p {
  margin-top: 12px;
  color: var(--muted);
}

.copy-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

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

.calendar-card {
  min-height: 170px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.calendar-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 950;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.calendar-card p {
  margin-top: 8px;
  color: var(--muted);
}

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

.guardrail-grid article {
  padding: 18px;
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 16px;
}

.dealer-form,
.application-panel {
  padding: 20px;
}

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

.dealer-form {
  display: grid;
  gap: 14px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 6px;
  color: var(--charcoal);
  font-weight: 950;
}

fieldset label,
.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

fieldset input,
.consent-line input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

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

.form-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.application-panel h3 {
  margin: 0 0 12px;
}

.application-panel pre {
  min-height: 380px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  border-radius: 8px;
  background: #f1f3f5;
  color: var(--charcoal);
  font: 0.85rem/1.45 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .public-nav-actions .compact-action {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .public-nav-actions .compact-action svg {
    margin: 0;
  }

  .begin-steps,
  .fleet-equation,
  .disclosure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .opportunity-hero-inner,
  .public-payout-layout,
  .starter-public-card,
  .fleet-public-layout,
  .environment-purpose-card,
  .apply-card,
  .public-footer {
    grid-template-columns: 1fr;
  }

  .earn-path-grid,
  .customer-value-grid,
  .public-product-grid,
  .proof-grid,
  .public-fleet-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-price-card {
    max-width: 520px;
  }

  .public-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .public-nav-links,
  .public-nav-actions {
    display: none;
  }

  .public-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .opportunity-topbar {
    align-items: center;
  }

  .opportunity-hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .opportunity-hero::before {
    background:
      linear-gradient(90deg, rgba(11, 16, 24, 0.96), rgba(11, 16, 24, 0.76)),
      linear-gradient(180deg, rgba(11, 16, 24, 0.28), rgba(11, 16, 24, 0.92)),
      url("./assets/networker-hero.png") center / cover no-repeat;
  }

  .earn-path-grid,
  .customer-value-grid,
  .public-product-grid,
  .proof-grid,
  .public-fleet-types,
  .scenario-form,
  .scenario-results,
  .starter-offer-panel dl div,
  .impact-grid,
  .begin-steps,
  .fleet-equation,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-pathway {
    padding-bottom: 12px;
  }

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

  .public-product-card img {
    height: 210px;
  }
}

@media (max-width: 1060px) {
  .fleet-hero-content,
  .starter-feature-card,
  .earnings-visual-layout,
  .earnings-calculator-layout,
  .example-month-card {
    grid-template-columns: 1fr;
  }

  .networker-start-grid,
  .quick-view-grid,
  .fleet-hero-metrics,
  .example-month-card dl,
  .before-after-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-hero-dashboard {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .fleet-launch-hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .fleet-launch-hero::before {
    background:
      linear-gradient(90deg, rgba(10, 15, 22, 0.96), rgba(10, 15, 22, 0.76)),
      linear-gradient(180deg, rgba(10, 15, 22, 0.3), rgba(10, 15, 22, 0.92)),
      url("assets/dmx-application.jpg") center / cover no-repeat;
  }

  .networker-start-grid,
  .quick-view-grid,
  .fleet-hero-metrics,
  .example-month-card dl,
  .before-after-panel,
  .starter-contents li,
  .flow-node {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .tab-button {
    flex: 0 0 auto;
  }
}

@media (max-width: 1060px) {
  .hero-band,
  .section-heading,
  .focus-panel,
  .roadmap-panel,
  .proof-layout,
  .calculator-grid,
  .budget-layout,
  .media-layout,
  .dealer-layout,
  .mlm-layout,
  .fx-panel,
  .mlm-product-card,
  .compensation-head,
  .video-explainer-kit,
  .drain-layout,
  .fleet-model-grid,
  .fleet-cta {
    grid-template-columns: 1fr;
  }

  .hero-band {
    min-height: auto;
  }

  .strategy-strip,
  .segment-grid,
  .claim-grid,
  .script-grid,
  .calendar-grid,
  .guardrail-grid,
  .photo-grid,
  .mlm-product-grid,
  .mlm-plan-grid,
  .payout-ladder,
  .lab-grid,
  .fx-grid,
  .fleet-service-grid,
  .fleet-card-grid,
  .fleet-process,
  .fleet-type-grid,
  .fleet-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-value-list,
  .profitability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .hero-stats,
  .strategy-strip,
  .segment-grid,
  .claim-grid,
  .checklist,
  .planner-panel,
  .result-panel,
  .script-grid,
  .calendar-grid,
  .guardrail-grid,
  .photo-grid,
  .form-grid,
  fieldset,
  .mlm-hero,
  .mlm-product-grid,
  .mlm-plan-grid,
  .mlm-results,
  .split-bars,
  .payout-ladder,
  .storyboard li,
  .drain-timeline article,
  .lab-grid,
  .fx-grid,
  .mlm-guardrails,
  .fleet-service-grid,
  .fleet-card-grid,
  .fleet-process,
  .fleet-type-grid,
  .fleet-kpi-grid,
  .fleet-form-grid,
  .fleet-result-cards,
  .fleet-value-list article,
  .profitability-grid article,
  .fleet-bar-row {
    grid-template-columns: 1fr;
  }

  .comp-node {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .comp-node:not(:last-child)::after {
    transform: translateX(-50%);
  }

  .drain-timeline article:not(:last-child)::after {
    left: 33px;
  }

  .product-media {
    min-height: 240px;
  }

  .trial-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-band {
    padding-inline: 14px;
  }

  .section-shell {
    width: min(100% - 24px, 1220px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .brand strong {
    font-size: 0.88rem;
  }
}

/* DM-X Customer Performance Partner Plan additions */
.compensation-principles { margin-bottom: 16px; }
.compensation-layout { align-items: stretch; }
.compensation-flow div:last-child { border-color: rgba(47,112,82,.35); background: rgba(47,112,82,.06); }
.compensation-detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:16px; }
.compensation-detail-grid details { border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.94); padding:16px; }
.compensation-detail-grid summary { cursor:pointer; font-weight:900; color:var(--ink); }
.compensation-detail-grid p { margin:10px 0 0; color:var(--muted); }
@media (max-width: 760px) { .compensation-detail-grid { grid-template-columns:1fr; } }

/* 2026-07-04 visual corrections: desktop navigation, hero price cards, and starter package panel */
@media (min-width: 861px) {
  .opportunity-topbar {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(600px, 1.9fr) auto;
    gap: clamp(12px, 1.5vw, 24px);
    padding-inline: clamp(18px, 3vw, 44px);
  }

  .opportunity-topbar .brand {
    min-width: 0;
  }

  .public-nav-links {
    flex-wrap: nowrap;
    gap: 0;
    min-width: 0;
  }

  .public-nav-links a {
    padding-inline: clamp(6px, 0.7vw, 10px);
    font-size: clamp(0.76rem, 0.82vw, 0.9rem);
    white-space: nowrap;
  }

  .public-nav-actions {
    justify-self: end;
  }
}

.opportunity-price-card,
.starter-offer-panel {
  min-width: 0;
  overflow: hidden;
}

.opportunity-price-card strong {
  max-width: 100%;
  font-size: clamp(2.8rem, 4.4vw, 4.55rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.opportunity-price-card .primary-action,
.starter-offer-panel .primary-action {
  width: 100%;
  min-width: 0;
  padding-inline: 12px;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

.starter-offer-panel > strong {
  max-width: 100%;
  font-size: clamp(2.9rem, 4.6vw, 4.65rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.starter-offer-panel dl div {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.starter-offer-panel dt {
  min-width: 0;
  overflow-wrap: anywhere;
}

.starter-offer-panel dd {
  min-width: 0;
  max-width: 190px;
  text-align: right;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

@media (max-width: 1320px) and (min-width: 861px) {
  .opportunity-topbar {
    grid-template-columns: minmax(205px, 0.72fr) minmax(540px, 1.75fr) auto;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .compact-action {
    padding-inline: 9px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1120px) and (min-width: 861px) {
  .public-nav-actions .compact-action {
    width: 42px;
    padding: 0;
    font-size: 0;
  }
}

@media (max-width: 760px) {
  .opportunity-price-card strong,
  .starter-offer-panel > strong {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .starter-offer-panel dd {
    max-width: none;
    text-align: left;
  }
}

/* =========================================================
   COMPENSATION SECTION — SCOPED CORRECTIONS
========================================================= */

.compensation-section .comp-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.compensation-section .comp-summary-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

/* Prevent inherited MLM numbered-circle styling */
.compensation-section .comp-summary-card span {
  display: block;
  width: auto;
  height: auto;
  place-items: initial;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.compensation-section .comp-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.compensation-section .comp-summary-card small {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Leadership-rate card needs slightly smaller type */
.compensation-section .comp-summary-card.is-levels strong {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.22;
}

@media (max-width: 1050px) {
  .compensation-section .comp-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .compensation-section .comp-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Compensation-plan expandable explanations */

.compensation-section .comp-details-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.compensation-section .comp-details {
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.compensation-section .comp-details summary {
  padding: 16px 18px;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
}

.compensation-section .comp-details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #f6f8fa;
}

.compensation-section .comp-details-body {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.compensation-section .comp-details-body p {
  margin: 0 0 12px;
}

.compensation-section .comp-details-body p:last-child {
  margin-bottom: 0;
}


/* Compensation section action buttons */

.compensation-section .compensation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.compensation-section .compensation-actions a {
  min-height: 52px;
  padding: 13px 20px;
  white-space: nowrap;
}

.compensation-section .compensation-actions a span {
  display: inline;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

@media (max-width: 760px) {
  .compensation-section .compensation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .compensation-section .compensation-actions a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* =========================================================
   HOW YOU EARN — 16:9 INFOGRAPHIC
========================================================= */

.how-you-earn-visual {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 35, 40, 0.1);
  overflow: hidden;
}

.how-you-earn-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.how-you-earn-visual figcaption {
  max-width: 980px;
  margin: 12px auto 2px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.how-you-earn-summary {
  min-height: 0;
  margin-top: 14px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.how-you-earn-summary summary {
  padding: 15px 18px;
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 900;
}

.how-you-earn-summary[open] summary {
  border-bottom: 1px solid var(--line);
  background: #f6f8fa;
}

.how-you-earn-summary-body {
  padding: 18px;
}

.how-you-earn-summary-body article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.how-you-earn-summary-body article:first-child {
  padding-top: 0;
}

.how-you-earn-summary-body article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.how-you-earn-summary-body h3,
.how-you-earn-summary-body p {
  margin: 0;
}

.how-you-earn-summary-body p {
  margin-top: 5px;
  color: var(--muted);
}

.how-you-earn-journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
}

.how-you-earn-journey span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f7f9;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 850;
}

.how-you-earn-journey i {
  color: var(--gold);
  font-style: normal;
  font-weight: 950;
}

.how-you-earn-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff8e8;
  color: var(--charcoal);
}

@media (max-width: 720px) {
  .how-you-earn-visual {
    padding: 6px;
  }

  .how-you-earn-visual figcaption {
    padding: 0 8px 6px;
    text-align: left;
  }

  .how-you-earn-summary-body article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .how-you-earn-journey {
    display: grid;
    grid-template-columns: 1fr;
  }

  .how-you-earn-journey i {
    display: none;
  }

  .how-you-earn-journey span {
    border-radius: 8px;
  }
}

/* =========================================================
   DM-X MLM DEPLOYMENT 2026-07-05-R1 — FINAL SCOPED RULES
========================================================= */
.compensation-plan-visual {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 35, 40, 0.1);
  overflow: hidden;
}
.compensation-plan-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}
.compensation-plan-visual figcaption {
  max-width: 980px;
  margin: 12px auto 2px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  text-align: center;
}
.compensation-disclaimer { margin-top: 18px; }

/* Keep the mobile navigation closed until explicitly opened. */
#publicMobileNav[hidden] { display: none !important; }
@media (min-width: 861px) {
  .public-menu-toggle,
  #publicMobileNav { display: none !important; }
}

@media (max-width: 860px) {
  .opportunity-topbar {
    display: flex;
    align-items: center;
  }
  .public-nav-links,
  .public-nav-actions { display: none !important; }
  .public-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .compensation-plan-visual,
  .how-you-earn-visual { padding: 6px; }
  .compensation-plan-visual figcaption,
  .how-you-earn-visual figcaption {
    padding-inline: 8px;
    text-align: left;
  }
}

/* =========================================================
   R2 HERO — NETWORKER-FIRST COMMERCIAL MESSAGE
========================================================= */
.opportunity-hero .hero-support-text {
  max-width: 840px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  line-height: 1.62;
}

.opportunity-hero .hero-award-badge {
  border-color: rgba(242, 189, 82, 0.5);
  background: rgba(242, 189, 82, 0.11);
  color: #ffffff;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.opportunity-hero .hero-award-badge svg {
  color: #f2bd52;
}

.opportunity-hero .hero-award-badge:hover,
.opportunity-hero .hero-award-badge:focus-visible {
  border-color: #f2bd52;
  background: rgba(242, 189, 82, 0.19);
  transform: translateY(-1px);
}

/* The revised headline is deliberately shorter and should remain visually dominant. */
.opportunity-hero .hero-copy h1 {
  max-width: 930px;
  font-size: clamp(2.25rem, 4.7vw, 4.85rem);
  line-height: 1.01;
}

@media (max-width: 760px) {
  .opportunity-hero .hero-support-text {
    font-size: 0.92rem;
  }

  .opportunity-hero .hero-award-badge {
    border-radius: 12px;
  }
}

/* DM-X MLM DEPLOYMENT 2026-07-05-R2 */

/* =========================================================
   HERO — QUIET COMPLIANCE NOTE
   Keeps the commercial message dominant while preserving
   the product-sale-first safeguard.
========================================================= */

.opportunity-hero .hero-compliance-note {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .opportunity-hero .hero-compliance-note {
    font-size: 0.84rem;
  }
}


/* =========================================================
   2026-07-07 R6 — DM-X400 PRODUCT CARD
========================================================= */
.dmx400-product-card img {
  object-position: center;
}

.dmx400-product-card .eyebrow {
  color: var(--gold);
}

.dmx400-product-card details {
  border-left: 4px solid var(--gold);
}

@media (max-width: 1060px) {
  .public-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .public-product-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   R7 STARTER STRIP — DM-X400 BETWEEN ENGINEPROTECTOR & DM-X200
========================================================= */
.starter-product-strip .starter-product-dmx400 {
  object-fit: cover;
  object-position: center;
  background: #2d2223;
}

@media (max-width: 430px) {
  .starter-product-strip {
    gap: 8px;
  }
}

/* =========================================================
   R8 DM-XLIVETUNE — FOURTH PRODUCT CARD
========================================================= */
.product-opportunity-section .public-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.livetune-product-card img {
  object-position: center;
}

.livetune-product-card .eyebrow {
  color: var(--green);
}

.livetune-product-card details {
  border-left: 4px solid var(--green);
}

.livetune-product-card .secondary-action {
  border-color: rgba(47, 112, 82, 0.34);
}

.livetune-product-card .secondary-action:hover,
.livetune-product-card .secondary-action:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

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

@media (max-width: 760px) {
  .product-opportunity-section .public-product-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   R9 PRODUCT DETAILS — COMPACT CARDS + ACCESSIBLE MODALS
========================================================= */

body.modal-open {
  overflow: hidden;
}

.product-modal-grid .compact-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-modal-grid .compact-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 95, 110, 0.34);
  box-shadow: 0 20px 44px rgba(31, 35, 40, 0.13);
}

.product-modal-grid .compact-product-card > img {
  height: clamp(220px, 19vw, 286px);
}

.product-modal-grid .product-card-summary {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
  min-height: 188px;
  padding: 18px;
}

.product-modal-grid .product-card-summary .eyebrow,
.product-modal-grid .product-card-summary h3,
.product-modal-grid .product-card-role {
  margin: 0;
}

.product-modal-grid .product-card-summary h3 {
  color: var(--charcoal);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.product-modal-grid .product-card-role {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.product-modal-trigger {
  width: 100%;
  margin-top: 8px;
}

.product-modal-trigger svg {
  width: 18px;
  height: 18px;
}

.product-detail-modal {
  --product-accent: var(--red);
  width: min(1040px, calc(100% - 32px));
  max-width: 1040px;
  max-height: min(92vh, 880px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 34, 0.18);
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(14, 20, 28, 0.42);
}

.product-detail-modal::backdrop {
  background: rgba(7, 12, 18, 0.76);
  backdrop-filter: blur(8px);
}

.product-detail-modal.dmx400-modal {
  --product-accent: var(--gold);
}

.product-detail-modal.livetune-modal {
  --product-accent: var(--green);
}

.product-modal-shell {
  position: relative;
  max-height: min(92vh, 880px);
  overflow: auto;
  background:
    radial-gradient(circle at 92% 4%, color-mix(in srgb, var(--product-accent) 14%, transparent), transparent 31%),
    #ffffff;
}

.product-modal-close {
  position: sticky;
  top: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  border: 1px solid rgba(23, 27, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(31, 35, 40, 0.13);
  backdrop-filter: blur(10px);
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  border-color: var(--product-accent);
  color: var(--product-accent);
  outline: none;
}

.product-modal-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  min-height: 330px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--product-accent) 9%, #ffffff), #ffffff 58%);
}

.product-modal-media {
  min-width: 0;
  overflow: hidden;
  background: #eef2f4;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.product-modal-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(32px, 5vw, 58px);
}

.product-modal-heading .eyebrow {
  color: var(--product-accent);
}

.product-modal-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.product-modal-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.product-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-modal-chips span {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 28%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--product-accent) 7%, #ffffff);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(24px, 4vw, 42px);
}

.product-modal-main h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: 1.25rem;
}

.product-modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.product-modal-facts > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid #e4e8ec;
  border-radius: 11px;
  background: #f7f9fa;
}

.product-modal-facts dt {
  color: var(--product-accent);
  font-size: 0.71rem;
  font-weight: 950;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.product-modal-facts dd {
  margin: 6px 0 0;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.48;
}

.product-modal-aside {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-modal-opening,
.product-modal-technical {
  border: 1px solid color-mix(in srgb, var(--product-accent) 25%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--product-accent) 6%, #ffffff);
}

.product-modal-opening {
  padding: 16px;
}

.product-modal-opening span {
  display: block;
  color: var(--product-accent);
  font-size: 0.71rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-modal-opening p {
  margin: 8px 0 0;
  color: var(--charcoal);
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.52;
}

.product-modal-technical {
  padding: 0;
  overflow: hidden;
}

.product-modal-technical summary {
  padding: 14px 16px;
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 950;
}

.product-modal-technical[open] summary {
  border-bottom: 1px solid color-mix(in srgb, var(--product-accent) 20%, var(--line));
}

.product-modal-technical p {
  margin: 0;
  padding: 15px 16px 17px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.product-modal-action {
  width: 100%;
  min-height: 48px;
  padding-inline: 14px;
  border-color: color-mix(in srgb, var(--product-accent) 38%, var(--line));
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.product-modal-action:hover,
.product-modal-action:focus-visible {
  border-color: var(--product-accent);
  color: var(--product-accent);
}

.product-modal-disclaimer {
  margin: 0;
  padding: 14px clamp(24px, 4vw, 42px) 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .product-detail-modal {
    width: min(100% - 20px, 760px);
    max-height: 94vh;
    border-radius: 15px;
  }

  .product-modal-shell {
    max-height: 94vh;
  }

  .product-modal-header,
  .product-modal-content {
    grid-template-columns: 1fr;
  }

  .product-modal-header {
    min-height: 0;
  }

  .product-modal-media img {
    min-height: 0;
    height: clamp(220px, 52vw, 340px);
  }

  .product-modal-heading {
    padding: 28px 24px 30px;
  }

  .product-modal-content {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .product-modal-grid .compact-product-card > img {
    height: 230px;
  }

  .product-modal-grid .product-card-summary {
    min-height: 170px;
  }

  .product-detail-modal {
    width: 100%;
    max-height: 96vh;
    margin: auto 0 0;
    border-width: 1px 0 0;
    border-radius: 18px 18px 0 0;
  }

  .product-modal-shell {
    max-height: 96vh;
  }

  .product-modal-close {
    top: 10px;
    margin: 10px 10px -52px auto;
  }

  .product-modal-heading h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .product-modal-facts {
    grid-template-columns: 1fr;
  }

  .product-modal-chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-modal-chips span {
    border-radius: 8px;
  }
}

/* =========================================================
   R10 — CENTERED STARTER IMAGES + FOCUSED FAQ MODAL
========================================================= */
.starter-product-strip {
  width: min(100%, 534px);
  margin: 20px auto 0;
  justify-content: center;
  align-items: center;
}

.faq-launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(225, 37, 47, 0.08), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(67, 95, 110, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(31, 35, 40, 0.10);
}

.faq-launch-copy h2,
.faq-launch-copy > p {
  margin: 0;
}

.faq-launch-copy h2 {
  max-width: 820px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.04;
}

.faq-launch-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.faq-topic-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f8f9;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 850;
}

.faq-topic-row svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.faq-launch-action {
  display: grid;
  gap: 11px;
  align-content: center;
  padding: 22px;
  border-radius: 13px;
  background: var(--charcoal);
  color: var(--white);
}

.faq-launch-action > span {
  color: #f3c56c;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-launch-action .faq-modal-trigger {
  width: 100%;
  min-height: 50px;
}

.faq-launch-action small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.faq-modal {
  width: min(980px, calc(100% - 32px));
  max-height: min(92vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(67, 95, 110, 0.28);
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.faq-modal::backdrop {
  background: rgba(6, 12, 18, 0.74);
  backdrop-filter: blur(8px);
}

.faq-modal-shell {
  position: relative;
  max-height: min(92vh, 900px);
  overflow: auto;
  background:
    radial-gradient(circle at 92% 2%, rgba(67, 95, 110, 0.13), transparent 30%),
    #ffffff;
}

.faq-modal-close {
  position: sticky;
  top: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  border: 1px solid rgba(23, 27, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(31, 35, 40, 0.13);
  backdrop-filter: blur(10px);
}

.faq-modal-close:hover,
.faq-modal-close:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}

.faq-modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(225, 37, 47, 0.08), transparent 56%),
    #f7f9fa;
}

.faq-modal-header h2,
.faq-modal-header p {
  margin: 0;
}

.faq-modal-header h2 {
  max-width: 690px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.faq-modal-header p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-modal-count {
  display: grid;
  min-width: 132px;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(189, 142, 39, 0.30);
  border-radius: 13px;
  background: #fff8e8;
  text-align: center;
}

.faq-modal-count strong {
  color: var(--gold);
  font-size: 2.35rem;
  line-height: 1;
}

.faq-modal-count span {
  margin-top: 5px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-modal-content {
  padding: clamp(22px, 4vw, 38px);
}

.faq-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.faq-filter {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f7f9;
  color: var(--muted);
  font-weight: 900;
}

.faq-filter:hover,
.faq-filter:focus-visible,
.faq-filter.is-active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  outline: none;
}

.faq-modal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.faq-modal-list details {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #ffffff;
}

.faq-modal-list details[hidden] {
  display: none !important;
}

.faq-modal-list summary {
  padding: 14px 16px;
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 950;
  line-height: 1.38;
}

.faq-modal-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #f6f8fa;
}

.faq-modal-list p {
  margin: 0;
  padding: 14px 16px 17px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-modal-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 16px;
  border-radius: 11px;
  background: #f3f6f8;
}

.faq-modal-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-modal-footer .secondary-action {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .faq-launch-card,
  .faq-modal-header {
    grid-template-columns: 1fr;
  }

  .faq-launch-action {
    max-width: 460px;
  }

  .faq-modal-count {
    width: 132px;
  }

  .faq-modal-list {
    grid-template-columns: 1fr;
  }

  .faq-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .starter-product-strip {
    width: 100%;
  }

  .faq-topic-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-topic-row span {
    border-radius: 9px;
  }

  .faq-modal {
    width: 100%;
    max-height: 96vh;
    margin: auto 0 0;
    border-width: 1px 0 0;
    border-radius: 18px 18px 0 0;
  }

  .faq-modal-shell {
    max-height: 96vh;
  }

  .faq-modal-close {
    top: 10px;
    margin: 10px 10px -52px auto;
  }

  .faq-modal-header,
  .faq-modal-content {
    padding: 24px 18px;
  }

  .faq-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .faq-filter {
    flex: 0 0 auto;
  }
}

/* =========================================================
   R11 — B2B FLEET SALES PODCAST LAUNCHER & MODAL
========================================================= */
.podcast-launch-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(67, 95, 110, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 16%, rgba(28, 146, 144, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 246, 0.96));
  box-shadow: 0 14px 34px rgba(31, 35, 40, 0.09);
}

.podcast-launch-cover {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(67, 95, 110, 0.32);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(8, 28, 31, 0.18);
}

.podcast-launch-copy {
  min-width: 0;
}

.podcast-launch-copy h3,
.podcast-launch-copy p {
  margin: 0;
}

.podcast-launch-copy h3 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.podcast-launch-copy > p:last-child {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.58;
}

.podcast-launch-card .podcast-modal-trigger {
  min-width: 210px;
  background: linear-gradient(135deg, #17635f, #0b3e3c);
  box-shadow: 0 12px 26px rgba(11, 62, 60, 0.19);
}

.podcast-launch-card .podcast-modal-trigger:hover,
.podcast-launch-card .podcast-modal-trigger:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11, 62, 60, 0.26);
}

.podcast-modal {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: #ffffff;
}

.podcast-modal::backdrop {
  background: rgba(3, 9, 13, 0.82);
  backdrop-filter: blur(9px);
}

.podcast-modal-shell {
  position: relative;
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(242, 189, 82, 0.30);
  border-radius: 20px;
  background:
    radial-gradient(circle at 11% 12%, rgba(28, 146, 144, 0.18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(242, 189, 82, 0.10), transparent 28%),
    linear-gradient(145deg, #06151a 0%, #0a2024 55%, #071318 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
}

.podcast-modal-close {
  position: sticky;
  top: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 14px 14px -58px auto;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  background: rgba(3, 14, 18, 0.82);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.podcast-modal-close:hover,
.podcast-modal-close:focus-visible {
  border-color: #f2bd52;
  color: #f2bd52;
}

.podcast-modal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.40fr) minmax(0, 0.60fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
}

.podcast-modal-artwork img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.40);
}

.podcast-modal-copy {
  min-width: 0;
}

.podcast-modal-copy .eyebrow {
  color: #f2bd52;
}

.podcast-modal-copy h2,
.podcast-modal-copy p {
  margin: 0;
}

.podcast-modal-copy h2 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.podcast-modal-lead {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.podcast-theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.podcast-theme-row span {
  padding: 7px 10px;
  border: 1px solid rgba(143, 196, 191, 0.25);
  border-radius: 999px;
  background: rgba(143, 196, 191, 0.08);
  color: #cfe3e1;
  font-size: 0.78rem;
  font-weight: 850;
}

.podcast-player-panel {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.podcast-player-panel audio {
  display: block;
  width: 100%;
  min-height: 54px;
  accent-color: #f2bd52;
}

.podcast-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.podcast-player-actions .secondary-action {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.podcast-player-actions .secondary-action:hover,
.podcast-player-actions .secondary-action:focus-visible {
  border-color: #f2bd52;
  color: #f2bd52;
}

.podcast-player-actions > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 760;
}

.podcast-modal-note {
  margin-top: 16px !important;
  padding: 12px 14px;
  border-left: 3px solid #f2bd52;
  background: rgba(242, 189, 82, 0.07);
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .podcast-launch-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .podcast-launch-cover {
    width: 110px;
  }

  .podcast-launch-card .podcast-modal-trigger {
    grid-column: 1 / -1;
    width: 100%;
  }

  .podcast-modal-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .podcast-launch-card,
  .podcast-modal-layout {
    grid-template-columns: 1fr;
  }

  .podcast-launch-card {
    text-align: center;
  }

  .podcast-launch-cover {
    width: min(220px, 72vw);
    justify-self: center;
  }

  .podcast-launch-copy > p:last-child {
    margin-inline: auto;
  }

  .podcast-modal {
    width: 100%;
    max-height: 96vh;
    margin: auto 0 0;
    border-radius: 20px 20px 0 0;
  }

  .podcast-modal-shell {
    max-height: 96vh;
    border-radius: 20px 20px 0 0;
  }

  .podcast-modal-layout {
    padding: 26px 18px 30px;
  }

  .podcast-modal-artwork img {
    width: min(300px, 78vw);
    margin-inline: auto;
  }

  .podcast-modal-copy {
    text-align: left;
  }

  .podcast-theme-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .podcast-theme-row span {
    border-radius: 8px;
  }

  .podcast-player-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .podcast-player-actions .secondary-action {
    width: 100%;
  }
}

/* =========================================================
   R13 — COMPACT INFORMATION GATEWAYS + SECTION MODALS
   Reduces exposed page copy while preserving complete detail
   in accessible, professionally designed reading dialogs.
========================================================= */

.insight-launch-section {
  padding-top: 34px;
}

.insight-launch-card {
  --insight-accent: var(--red);
  --insight-accent-rgb: 225, 37, 47;
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  min-height: 172px;
  padding: clamp(22px, 3.2vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--insight-accent-rgb), 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,251,0.96));
  box-shadow: 0 18px 46px rgba(31, 35, 40, 0.09);
}

.insight-launch-card::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -94px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(var(--insight-accent-rgb), 0.055);
  border-radius: 999px;
  pointer-events: none;
}

.insight-launch-card--launch {
  --insight-accent: #9a6f15;
  --insight-accent-rgb: 154, 111, 21;
}

.insight-launch-card--training {
  --insight-accent: var(--teal);
  --insight-accent-rgb: 67, 95, 110;
}

.insight-launch-card--proof {
  --insight-accent: var(--gold);
  --insight-accent-rgb: 189, 142, 39;
}

.insight-launch-card--safeguards {
  --insight-accent: var(--green);
  --insight-accent-rgb: 47, 112, 82;
}

.insight-launch-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(var(--insight-accent-rgb), 0.24);
  border-radius: 18px;
  background: rgba(var(--insight-accent-rgb), 0.08);
  color: var(--insight-accent);
}

.insight-launch-icon svg {
  width: 31px;
  height: 31px;
}

.insight-launch-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.insight-launch-copy .eyebrow {
  color: var(--insight-accent);
}

.insight-launch-copy h2,
.insight-launch-copy > p {
  margin: 0;
}

.insight-launch-copy h2 {
  max-width: 840px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.8vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.insight-launch-copy > p:not(.eyebrow) {
  max-width: 900px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.insight-launch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.insight-launch-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(var(--insight-accent-rgb), 0.16);
  border-radius: 999px;
  background: rgba(var(--insight-accent-rgb), 0.055);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 850;
}

.insight-launch-card .insight-modal-trigger {
  position: relative;
  z-index: 1;
  min-width: 220px;
  background: linear-gradient(135deg, var(--insight-accent), color-mix(in srgb, var(--insight-accent) 72%, #111b22));
  box-shadow: 0 12px 25px rgba(var(--insight-accent-rgb), 0.18);
}

.insight-launch-card .insight-modal-trigger:hover,
.insight-launch-card .insight-modal-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(var(--insight-accent-rgb), 0.24);
}

.insight-modal {
  --insight-accent: var(--red);
  --insight-accent-rgb: 225, 37, 47;
  width: min(1100px, calc(100% - 28px));
  max-height: min(880px, calc(100vh - 28px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 38px 110px rgba(4, 10, 16, 0.48);
}

.insight-modal--launch {
  --insight-accent: #b28424;
  --insight-accent-rgb: 178, 132, 36;
}

.insight-modal--training {
  --insight-accent: #5d7f8d;
  --insight-accent-rgb: 93, 127, 141;
}

.insight-modal--proof {
  --insight-accent: #d1a033;
  --insight-accent-rgb: 209, 160, 51;
}

.insight-modal--safeguards {
  --insight-accent: #438267;
  --insight-accent-rgb: 67, 130, 103;
}

.insight-modal::backdrop {
  background: rgba(3, 9, 15, 0.78);
  backdrop-filter: blur(9px);
}

.insight-modal-shell {
  position: relative;
  max-height: min(880px, calc(100vh - 28px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #f7f9fa;
}

.insight-modal-close {
  position: sticky;
  top: 14px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 14px 14px -58px auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(6, 15, 22, 0.78);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.insight-modal-close:hover,
.insight-modal-close:focus-visible {
  border-color: rgba(var(--insight-accent-rgb), 0.9);
  color: color-mix(in srgb, var(--insight-accent) 82%, white);
}

.insight-modal-header {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: 270px;
  padding: clamp(36px, 5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(var(--insight-accent-rgb), 0.26), transparent 34%),
    radial-gradient(circle at 90% 4%, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(145deg, #07131c 0%, #122631 100%);
  color: #ffffff;
}

.insight-modal-header::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 62px solid rgba(var(--insight-accent-rgb), 0.10);
  border-radius: 999px;
}

.insight-modal-header > * {
  position: relative;
  z-index: 1;
}

.insight-modal-header-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(var(--insight-accent-rgb), 0.18);
  color: color-mix(in srgb, var(--insight-accent) 72%, white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.insight-modal-header-icon svg {
  width: 38px;
  height: 38px;
}

.insight-modal-header .eyebrow {
  color: color-mix(in srgb, var(--insight-accent) 72%, white);
}

.insight-modal-header h2,
.insight-modal-header p {
  margin: 0;
}

.insight-modal-header h2 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.insight-modal-header p:last-child {
  max-width: 880px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.insight-modal-body {
  padding: clamp(24px, 4vw, 44px);
}

.insight-card-grid {
  display: grid;
  gap: 13px;
}

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

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

.insight-card-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 35, 40, 0.055);
}

.insight-card-grid article > svg {
  width: 25px;
  height: 25px;
  color: var(--insight-accent);
}

.insight-card-grid h3,
.insight-card-grid p {
  margin: 0;
}

.insight-card-grid h3 {
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 1.03rem;
  line-height: 1.25;
}

.insight-card-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.insight-step-grid article {
  position: relative;
  padding-top: 58px;
}

.insight-step-number {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: var(--insight-accent);
  color: #ffffff;
  font-weight: 950;
}

.insight-modal-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--insight-accent);
  border-radius: 0 12px 12px 0;
  background: rgba(var(--insight-accent-rgb), 0.07);
}

.insight-modal-note svg {
  width: 23px;
  height: 23px;
  color: var(--insight-accent);
}

.insight-modal-note p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.58;
}

.insight-timeline {
  display: grid;
  gap: 10px;
}

.insight-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.insight-timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -11px;
  z-index: 2;
  width: 2px;
  height: 12px;
  background: var(--insight-accent);
}

.insight-timeline article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--insight-accent);
  color: #ffffff;
  font-weight: 950;
}

.insight-timeline h3,
.insight-timeline p {
  margin: 0;
}

.insight-timeline h3 {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.insight-timeline p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.insight-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.insight-proof-highlight {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 14px;
  padding: 22px;
  border: 1px solid rgba(var(--insight-accent-rgb), 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 5% 15%, rgba(var(--insight-accent-rgb), 0.12), transparent 36%),
    #ffffff;
}

.insight-proof-seal {
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  border: 8px double rgba(var(--insight-accent-rgb), 0.72);
  border-radius: 999px;
  background: var(--insight-accent);
  color: #111820;
  text-align: center;
}

.insight-proof-seal strong,
.insight-proof-seal span {
  display: block;
}

.insight-proof-seal strong {
  font-size: 1.75rem;
  line-height: 1;
}

.insight-proof-seal span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
}

.insight-proof-highlight h3,
.insight-proof-highlight p {
  margin: 0;
}

.insight-proof-highlight h3 {
  color: var(--charcoal);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.insight-proof-highlight p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .insight-launch-card {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .insight-launch-card .insight-modal-trigger {
    grid-column: 1 / -1;
    width: 100%;
  }

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

@media (max-width: 780px) {
  .insight-card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-modal-header {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 240px;
  }

  .insight-modal-header-icon {
    width: 66px;
    height: 66px;
  }

  .insight-modal-header-icon svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 620px) {
  .insight-launch-section {
    padding-top: 22px;
  }

  .insight-launch-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 20px;
  }

  .insight-launch-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .insight-launch-icon svg {
    width: 26px;
    height: 26px;
  }

  .insight-launch-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-launch-meta span {
    border-radius: 8px;
  }

  .insight-modal {
    width: 100%;
    max-height: 96vh;
    margin: auto 0 0;
    border-radius: 20px 20px 0 0;
  }

  .insight-modal-shell {
    max-height: 96vh;
    border-radius: 20px 20px 0 0;
  }

  .insight-modal-header {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 34px 20px 28px;
  }

  .insight-modal-header-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .insight-modal-header h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .insight-modal-body {
    padding: 18px;
  }

  .insight-card-grid--three,
  .insight-card-grid--four {
    grid-template-columns: 1fr;
  }

  .insight-proof-highlight {
    grid-template-columns: 1fr;
  }

  .insight-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-modal-actions .primary-action,
  .insight-modal-actions .secondary-action {
    width: 100%;
  }
}

