:root {
  --ink: #202124;
  --muted: #62676f;
  --line: #dcd9d1;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --gold: #c9972b;
  --teal: #0f766e;
  --rose: #b4535f;
  --deep: #263238;
  --soft: #f2efe7;
  --shadow: 0 20px 60px rgba(32, 33, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Kanit", system-ui, sans-serif;
}

a {
  color: inherit;
}

.site-header,
.watch-header,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.header-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 30px 22px 70px;
}

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

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin-top: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

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

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.optin-panel,
.next-panel,
.checkout-panel {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 28px;
}

.optin-panel h2,
.next-panel h1,
.checkout-panel h1 {
  margin: 0 0 8px;
  line-height: 1.25;
}

.panel-note,
.microcopy,
.consent,
.next-panel p,
.checkout-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 18px;
}

.lead-form label,
.checkout-actions {
  display: grid;
  gap: 7px;
}

.lead-form span {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(15, 118, 110, 0.14);
  border-color: var(--teal);
}

.primary-button,
.secondary-button,
.row-action button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-button {
  background: var(--teal);
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  padding: 12px 18px;
}

.primary-button:hover,
.secondary-button:hover,
.row-action button:hover {
  transform: translateY(-1px);
}

.consent {
  margin: 0;
  font-size: 0.78rem;
}

.alert {
  border-radius: 8px;
  background: #fff1f2;
  color: #9f1239;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.section-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-strip > div {
  background: #fff;
  padding: 30px max(22px, calc((100vw - 1180px) / 2));
}

.strip-label {
  display: block;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-strip p,
.content-section p {
  color: var(--muted);
  line-height: 1.75;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}

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

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.feature-grid span {
  color: var(--gold);
  font-weight: 700;
}

.feature-grid h3 {
  margin: 12px 0 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 22px 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.center-page {
  display: grid;
  place-items: center;
  padding: 22px;
}

.next-panel,
.checkout-panel {
  max-width: 620px;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--teal);
  font-weight: 800;
}

code {
  display: inline-block;
  border-radius: 6px;
  background: var(--soft);
  padding: 2px 7px;
}

.summary-box {
  display: grid;
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  padding: 13px 14px;
}

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

.watch-body,
.admin-body {
  background: #f7f6f2;
}

.sid-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px 70px;
}

.watch-title h1 {
  max-width: 780px;
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.15;
}

.watch-title p {
  color: var(--muted);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow);
}

.video-shell video,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  padding: 28px;
  color: #fff;
  text-align: center;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.76);
}

.video-start-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.video-start-overlay.is-hidden {
  display: none;
}

.progress-card,
.side-block,
.table-wrap,
.admin-toolbar,
.metric-grid > div,
.segment-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.progress-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 15px;
}

.progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
}

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

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
  transition: width 0.25s ease;
}

.watch-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.side-block {
  padding: 20px;
}

.side-block h2,
.side-block h3 {
  margin-top: 0;
}

.hidden-cta {
  display: none;
}

.event-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.event-list li {
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  padding: 8px 10px;
}

.event-list li.on {
  background: #ecfdf5;
  color: var(--teal);
  font-weight: 700;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 22px;
  line-height: 1.8;
}

.admin-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 22px 60px;
}

.metric-grid,
.segment-grid {
  display: grid;
  gap: 12px;
}

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

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

.metric-grid > div,
.segment-grid > div {
  padding: 16px;
}

.metric-grid span,
.segment-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-grid strong,
.segment-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.9rem;
}

.admin-toolbar {
  margin: 16px 0;
  padding: 14px;
}

.admin-toolbar form,
.row-action {
  display: flex;
  gap: 10px;
  align-items: center;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
}

td span,
td small {
  display: block;
  color: var(--muted);
}

.journey-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 7px;
}

.journey-dots span,
.status-badge {
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  padding: 4px 8px;
  font-size: 0.78rem;
}

.journey-dots span.on {
  background: #ecfdf5;
  color: var(--teal);
  font-weight: 700;
}

.row-action select {
  min-width: 130px;
}

.row-action button {
  min-height: 38px;
  background: var(--deep);
  color: #fff;
  padding: 8px 12px;
}

.empty-row {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-section,
  .watch-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-strip,
  .feature-grid,
  .metric-grid,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .watch-side {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .watch-header,
  .admin-header,
  .site-footer,
  .admin-toolbar form,
  .row-action {
    align-items: stretch;
    flex-direction: column;
  }

  .optin-panel,
  .next-panel,
  .checkout-panel {
    padding: 22px;
  }

  .hero-section,
  .content-section,
  .watch-layout,
  .admin-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-row {
    align-items: flex-start;
  }
}

/* The Money Roadmap cold landing page */
.roadmap-landing {
  --rm-bg: #111111;
  --rm-panel: #1a1a1a;
  --rm-panel-2: #222222;
  --rm-line: #343434;
  --rm-text: #f5f5f5;
  --rm-muted: #b7b7b7;
  --rm-soft: #8a8a8a;
  --rm-gold: #daa520;
  --rm-gold-2: #f1c75b;
  background: var(--rm-bg);
  color: var(--rm-text);
}

.roadmap-landing * {
  box-sizing: border-box;
}

.roadmap-landing .roadmap-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.roadmap-landing .roadmap-container.narrow {
  width: min(100%, 820px);
}

.roadmap-landing .roadmap-hero {
  border-bottom: 1px solid var(--rm-line);
  background: var(--rm-panel);
  padding: 34px 0 58px;
}

.roadmap-landing .roadmap-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.roadmap-landing .roadmap-copy {
  display: grid;
  gap: 24px;
}

.roadmap-landing .roadmap-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid #3c3c3c;
  border-radius: 999px;
  background: #252525;
  color: var(--rm-gold);
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.roadmap-landing .pill-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: rgba(218, 165, 32, 0.14);
  font-size: 0;
}

.roadmap-landing .pill-icon::before {
  content: "";
  display: block;
  border-left: 8px solid var(--rm-gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

.roadmap-landing h1,
.roadmap-landing h2,
.roadmap-landing h3,
.roadmap-landing p {
  letter-spacing: 0;
}

.roadmap-landing h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.roadmap-landing h1 span {
  display: block;
  color: var(--rm-gold);
}

.roadmap-landing .roadmap-lead,
.roadmap-landing .bridge-section p,
.roadmap-landing .problem-section p,
.roadmap-landing .section-heading p,
.roadmap-landing .speaker-section p,
.roadmap-landing .final-cta p {
  color: var(--rm-muted);
  line-height: 1.75;
}

.roadmap-landing .roadmap-lead {
  max-width: 680px;
  margin: 0;
  font-size: 1.08rem;
}

.roadmap-landing .hero-checklist,
.roadmap-landing .fit-list,
.roadmap-landing .not-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-landing .hero-checklist li,
.roadmap-landing .fit-list li {
  position: relative;
  color: #dfdfdf;
  line-height: 1.55;
  padding-left: 34px;
}

.roadmap-landing .hero-checklist li::before,
.roadmap-landing .fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--rm-gold);
  box-shadow: 0 0 0 5px rgba(218, 165, 32, 0.08);
}

.roadmap-landing .hero-checklist li::after,
.roadmap-landing .fit-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.49em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
}

.roadmap-landing .trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--rm-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #bdbdbd;
  padding: 14px;
  font-size: 0.9rem;
}

.roadmap-landing .trust-strip span {
  display: inline-flex;
  align-items: center;
}

.roadmap-landing .trust-strip span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin-right: 10px;
  background: #4a4a4a;
}

.roadmap-landing .roadmap-form-card {
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  background: var(--rm-panel-2);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  padding: 28px;
}

.roadmap-landing .roadmap-form-card h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
  text-align: center;
}

.roadmap-landing .video-thumbnail {
  position: relative;
  overflow: hidden;
  margin: 20px 0 0;
  border: 1px solid rgba(218, 165, 32, 0.34);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.roadmap-landing .video-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.roadmap-landing .roadmap-form-card p {
  margin: 0 0 20px;
  color: var(--rm-muted);
  line-height: 1.65;
  text-align: center;
}

.roadmap-landing .roadmap-lead-form {
  display: grid;
  gap: 13px;
}

.roadmap-landing .roadmap-lead-form label {
  color: #ececec;
  font-size: 0.92rem;
  font-weight: 600;
}

.roadmap-landing .roadmap-lead-form input[type="text"] {
  min-height: 52px;
  border: 1px solid #555;
  border-radius: 10px;
  background: #111;
  color: #fff;
  padding: 12px 14px;
}

.roadmap-landing .roadmap-lead-form input[type="text"]:focus {
  outline: 3px solid rgba(218, 165, 32, 0.18);
  border-color: var(--rm-gold);
}

.roadmap-landing .roadmap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: var(--rm-gold);
  color: #090909;
  padding: 14px 22px;
  font: inherit;
  font-size: 1.06rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 18px 42px rgba(218, 165, 32, 0.2);
}

.roadmap-landing .roadmap-button:hover {
  background: var(--rm-gold-2);
  transform: translateY(-1px);
}

.roadmap-landing .roadmap-button:focus-visible {
  outline: 3px solid rgba(245, 245, 245, 0.85);
  outline-offset: 3px;
}

.roadmap-landing .hero-jump {
  width: fit-content;
}

.roadmap-landing .roadmap-lead-form .roadmap-button {
  width: 100%;
}

.roadmap-landing .form-microcopy {
  margin: 0;
  color: #888;
  font-size: 0.77rem;
  line-height: 1.65;
}

.roadmap-landing .roadmap-alert {
  margin-bottom: 16px;
  border: 1px solid rgba(218, 165, 32, 0.35);
  border-radius: 10px;
  background: rgba(218, 165, 32, 0.08);
  color: #f4d47b;
  padding: 10px 12px;
}

.roadmap-landing .roadmap-section {
  padding: 74px 0;
}

.roadmap-landing .bridge-section {
  text-align: center;
}

.roadmap-landing .bridge-section h2,
.roadmap-landing .warning-card h2,
.roadmap-landing .section-heading h2,
.roadmap-landing .two-column h2,
.roadmap-landing .speaker-section h2,
.roadmap-landing .faq-section h2,
.roadmap-landing .final-cta h2,
.roadmap-landing .legal-disclaimer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.18;
}

.roadmap-landing .bridge-emphasis {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.roadmap-landing .warning-card {
  position: relative;
  border: 1px solid var(--rm-line);
  border-radius: 20px;
  background: var(--rm-panel);
  padding: 42px 34px 34px;
}

.roadmap-landing .warning-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 7px solid var(--rm-bg);
  border-radius: 999px;
  background: var(--rm-gold);
  color: #111;
  font-weight: 900;
  transform: translateX(-50%);
}

.roadmap-landing .warning-card h2,
.roadmap-landing .warning-card p {
  text-align: center;
}

.roadmap-landing .roadmap-dark {
  border-top: 1px solid var(--rm-line);
  border-bottom: 1px solid var(--rm-line);
  background: #090909;
}

.roadmap-landing .section-heading.center {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.roadmap-landing .roadmap-visual {
  overflow: hidden;
  width: min(100%, 760px);
  margin: 0 auto 28px;
  border: 1px solid rgba(218, 165, 32, 0.32);
  border-radius: 18px;
  background: #0b0b0b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.roadmap-landing .roadmap-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
}

.roadmap-landing .roadmap-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-landing .stage-card {
  border: 1px solid var(--rm-line);
  border-radius: 16px;
  background: var(--rm-panel);
  padding: 26px;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.roadmap-landing .stage-card:hover {
  border-color: var(--rm-gold);
  transform: translateY(-2px);
}

.roadmap-landing .stage-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #282828;
}

.roadmap-landing .stage-icon::before,
.roadmap-landing .stage-icon::after {
  content: "";
  position: absolute;
  background: var(--rm-gold);
}

.roadmap-landing .stage-icon.shield::before {
  inset: 11px 14px;
  clip-path: polygon(50% 0, 100% 18%, 88% 70%, 50% 100%, 12% 70%, 0 18%);
}

.roadmap-landing .stage-icon.trend::before {
  left: 12px;
  bottom: 13px;
  width: 24px;
  height: 3px;
  transform: rotate(-35deg);
}

.roadmap-landing .stage-icon.trend::after {
  right: 12px;
  top: 13px;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.roadmap-landing .stage-icon.play::before {
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 15px solid var(--rm-gold);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  background: transparent;
}

.roadmap-landing .stage-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.35rem;
}

.roadmap-landing .stage-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--rm-gold);
  font-size: 0.94rem;
}

.roadmap-landing .stage-card p {
  margin: 0;
  color: #b7b7b7;
  font-size: 0.95rem;
  line-height: 1.7;
}

.roadmap-landing .pattern-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-landing .pattern-grid div {
  border: 1px solid var(--rm-line);
  border-radius: 14px;
  background: var(--rm-panel);
  color: #e5e5e5;
  padding: 18px;
  line-height: 1.55;
}

.roadmap-landing .two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 52px;
  align-items: start;
}

.roadmap-landing .not-card {
  border: 1px solid var(--rm-line);
  border-radius: 16px;
  background: var(--rm-panel);
  padding: 28px;
}

.roadmap-landing .not-card li {
  position: relative;
  color: #aaa;
  padding-left: 30px;
  line-height: 1.55;
}

.roadmap-landing .not-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -1px;
  color: #707070;
  font-weight: 800;
}

.roadmap-landing .not-card p {
  margin: 22px 0 0;
  border-top: 1px solid var(--rm-line);
  color: #858585;
  font-size: 0.82rem;
  line-height: 1.65;
  padding-top: 16px;
}

.roadmap-landing .speaker-section {
  background: #090909;
}

.roadmap-landing .speaker-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.roadmap-landing .speaker-photo {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  border: 2px solid var(--rm-gold);
  border-radius: 999px;
  background: #2a2a2a;
  color: #777;
  font-size: 0.92rem;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

.roadmap-landing .speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.roadmap-landing .speaker-point {
  color: #e1e1e1 !important;
  font-weight: 700;
}

.roadmap-landing .faq-section h2 {
  text-align: center;
}

.roadmap-landing .faq-list {
  display: grid;
  gap: 14px;
}

.roadmap-landing details {
  border: 1px solid var(--rm-line);
  border-radius: 12px;
  background: var(--rm-panel);
  overflow: hidden;
}

.roadmap-landing summary {
  position: relative;
  cursor: pointer;
  color: #efefef;
  font-weight: 700;
  list-style: none;
  padding: 18px 52px 18px 22px;
}

.roadmap-landing summary::-webkit-details-marker {
  display: none;
}

.roadmap-landing summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--rm-gold);
  font-size: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
}

.roadmap-landing details[open] summary::after {
  content: "-";
}

.roadmap-landing details p {
  margin: 0;
  border-top: 1px solid var(--rm-line);
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 18px 22px;
}

.roadmap-landing .final-cta {
  border-top: 1px solid #181818;
  background: linear-gradient(180deg, #111, #050505);
  text-align: center;
}

.roadmap-landing .final-cta .roadmap-button {
  margin-top: 14px;
}

.roadmap-landing .legal-disclaimer {
  border-top: 1px solid var(--rm-line);
  background: #070707;
  padding: 48px 0 90px;
}

.roadmap-landing .legal-disclaimer h2 {
  margin-bottom: 20px;
  color: #dcdcdc;
  font-size: 1.3rem;
}

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

.roadmap-landing .legal-grid p {
  margin: 0;
  color: #8d8d8d;
  font-size: 0.78rem;
  line-height: 1.7;
}

.roadmap-landing .legal-grid a {
  color: var(--rm-gold);
}

.roadmap-landing .sticky-cta {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--rm-line);
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.34);
}

.roadmap-landing .sticky-cta .roadmap-button {
  width: 100%;
  min-height: 48px;
  font-size: 0.95rem;
}

.roadmap-landing.bridge-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(218, 165, 32, 0.12), transparent 34vw),
    linear-gradient(180deg, #1a1a1a 0%, #090909 100%);
  padding: 24px;
}

.roadmap-landing .bridge-shell {
  width: min(100%, 720px);
}

.roadmap-landing .bridge-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 165, 32, 0.25);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.98), rgba(17, 17, 17, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.roadmap-landing .bridge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.08), transparent),
    radial-gradient(circle at 50% 0%, rgba(218, 165, 32, 0.12), transparent 42%);
}

.roadmap-landing .bridge-card > * {
  position: relative;
}

.roadmap-landing .bridge-status {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
}

.roadmap-landing .bridge-pulse {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(218, 165, 32, 0.12);
  animation: bridgePulse 1s ease-out infinite;
}

.roadmap-landing .bridge-check {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(218, 165, 32, 0.36);
  border-radius: 999px;
  background: var(--rm-gold);
  color: #0a0a0a;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(218, 165, 32, 0.22);
}

.roadmap-landing .bridge-pill {
  margin: 0 auto 16px;
}

.roadmap-landing .bridge-card h1 {
  margin: 0 auto 14px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
}

.roadmap-landing .bridge-lead {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--rm-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.roadmap-landing .bridge-lead strong {
  color: #fff;
  font-weight: 700;
}

.roadmap-landing .bridge-progress {
  overflow: hidden;
  width: min(100%, 460px);
  height: 8px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #0b0b0b;
}

.roadmap-landing .bridge-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rm-gold), var(--rm-gold-2));
  transform-origin: left center;
  animation: bridgeLoad 1s linear forwards;
}

.roadmap-landing .bridge-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.roadmap-landing .bridge-steps div {
  border: 1px solid var(--rm-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 13px 10px;
}

.roadmap-landing .bridge-steps strong,
.roadmap-landing .bridge-steps span {
  display: block;
}

.roadmap-landing .bridge-steps strong {
  color: var(--rm-gold);
  font-size: 1.05rem;
  line-height: 1;
}

.roadmap-landing .bridge-steps span {
  margin-top: 7px;
  color: #bdbdbd;
  font-size: 0.82rem;
  line-height: 1.35;
}

.roadmap-landing .bridge-button {
  width: min(100%, 420px);
}

.roadmap-landing .bridge-microcopy {
  max-width: 520px;
  margin: 16px auto 0;
  color: #8d8d8d;
  font-size: 0.84rem;
  line-height: 1.6;
}

@keyframes bridgeLoad {
  from {
    transform: scaleX(0.08);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes bridgePulse {
  from {
    opacity: 0.75;
    transform: scale(0.76);
  }
  to {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-landing .bridge-pulse,
  .roadmap-landing .bridge-progress span {
    animation: none;
  }
}

@media (min-width: 901px) {
  .roadmap-landing .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .roadmap-landing .roadmap-hero-grid,
  .roadmap-landing .roadmap-cards,
  .roadmap-landing .two-column,
  .roadmap-landing .speaker-grid,
  .roadmap-landing .legal-grid,
  .roadmap-landing .pattern-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-landing .roadmap-hero {
    padding-top: 24px;
  }

  .roadmap-landing .roadmap-copy {
    text-align: left;
  }

  .roadmap-landing .roadmap-pill {
    max-width: 100%;
  }

  .roadmap-landing .speaker-photo {
    width: 150px;
  }
}

@media (max-width: 560px) {
  .roadmap-landing .roadmap-container {
    padding: 0 16px;
  }

  .roadmap-landing h1 {
    font-size: 2.03rem;
  }

  .roadmap-landing .roadmap-copy {
    gap: 18px;
  }

  .roadmap-landing .roadmap-lead {
    font-size: 1rem;
  }

  .roadmap-landing .hero-checklist {
    gap: 10px;
  }

  .roadmap-landing .roadmap-hero {
    padding-bottom: 44px;
  }

  .roadmap-landing .roadmap-section {
    padding: 58px 0;
  }

  .roadmap-landing .roadmap-form-card,
  .roadmap-landing .warning-card,
  .roadmap-landing .not-card,
  .roadmap-landing .stage-card {
    padding: 22px;
  }

  .roadmap-landing .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-landing .trust-strip span + span::before {
    display: none;
  }

  .roadmap-landing.bridge-page {
    padding: 16px;
  }

  .roadmap-landing .bridge-card {
    border-radius: 18px;
  }

  .roadmap-landing .bridge-steps {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .roadmap-landing .bridge-steps div {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .roadmap-landing .bridge-steps span {
    margin-top: 0;
  }
}
