:root {
  color-scheme: light;
  --ink: #0a3555;
  --ink-soft: #426982;
  --muted: #6f8ea3;
  --line: #c8ddea;
  --line-strong: #9fc2d7;
  --blue: #2f8ccd;
  --blue-dark: #146aa5;
  --green: #1e9a66;
  --green-soft: #e3f7ed;
  --amber: #b98920;
  --amber-soft: #fff4d8;
  --sky: #eaf7ff;
  --panel: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 60px rgba(34, 95, 133, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(213, 239, 255, 0.92) 0%, rgba(247, 252, 255, 0.98) 48%, #ffffff 100%),
    radial-gradient(circle at 75% 18%, rgba(117, 191, 229, 0.34), transparent 28%);
}

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

.ticker {
  display: flex;
  gap: 32px;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 253, 255, 0.72);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 251, 255, 0.86);
  backdrop-filter: blur(18px);
  padding: 14px clamp(18px, 4vw, 64px);
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--ink);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #d8efff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--blue-dark);
}

.topbar-status {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  background: rgba(5, 33, 52, 0.36);
  backdrop-filter: blur(4px);
}

.site-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 21;
  width: min(360px, 86vw);
  border-right: 1px solid var(--line-strong);
  background: rgba(246, 252, 255, 0.96);
  box-shadow: 28px 0 80px rgba(9, 46, 70, 0.2);
  transform: translateX(-104%);
  transition: transform 180ms ease;
  padding: 22px;
}

.menu-open .menu-backdrop {
  display: block;
}

.menu-open .site-drawer {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-head strong,
.drawer-head small {
  display: block;
}

.drawer-head small {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-nav {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 12px;
  text-transform: uppercase;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--blue-dark);
}

.contact-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-button,
.secondary-action {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  padding: 0 16px;
}

.primary-action {
  border: 1px solid var(--blue-dark);
  background: linear-gradient(180deg, #4aa5dc, #257eb8);
  box-shadow: 0 10px 22px rgba(31, 126, 184, 0.22);
  color: #ffffff;
  padding: 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 46px;
}

body .route-page {
  display: none;
}

body .route-page.active {
  display: block;
}

body .route-page.split.active,
body .route-page.status-section.active {
  display: grid;
}

.launch-eyebrow {
  border: 1px solid rgba(30, 154, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
}

.eyebrow,
.section-heading span,
.status-section > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(30, 154, 102, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  padding: 9px 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(47, 140, 205, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 140, 205, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(83, 166, 218, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.54);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vault-cube {
  position: relative;
  width: min(54vw, 360px);
  aspect-ratio: 1.22;
  border: 1px solid rgba(58, 128, 170, 0.44);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(187, 226, 249, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(39, 126, 184, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 32px 80px rgba(20, 106, 165, 0.2);
  transform: perspective(900px) rotateX(58deg) rotateZ(-38deg);
}

.vault-cube::before,
.vault-cube::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(47, 140, 205, 0.28);
  border-radius: 12px;
}

.vault-cube::after {
  inset: 28%;
}

.vault-top {
  position: absolute;
  left: 50%;
  top: 13%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 106, 165, 0.32);
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0 20%, #bddff3 21% 62%, #559fd0 63% 100%);
  transform: translateX(-50%);
}

.shield-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translate(-50%, -50%) rotate(38deg) rotateX(-58deg);
}

.shield-stack span {
  width: 120px;
  height: 78px;
  border: 1px solid rgba(20, 106, 165, 0.3);
  border-radius: 18px 18px 26px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(47, 140, 205, 0.2));
  clip-path: polygon(50% 0, 100% 16%, 88% 78%, 50% 100%, 12% 78%, 0 16%);
}

.vault-lock {
  position: absolute;
  left: 50%;
  bottom: 19%;
  width: 48px;
  height: 36px;
  border: 1px solid rgba(20, 106, 165, 0.42);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #a8d5ef);
  transform: translateX(-50%) rotate(38deg) rotateX(-58deg);
}

.vault-lock::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -22px;
  width: 26px;
  height: 28px;
  border: 5px solid rgba(20, 106, 165, 0.44);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.signal-card {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(34, 95, 133, 0.1);
  padding: 16px;
}

.signal-card.left {
  left: 34px;
  top: 70px;
}

.signal-card.right {
  right: 34px;
  bottom: 64px;
}

.signal-card span {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(47, 140, 205, 0.55) 41% 44%, transparent 45%),
    linear-gradient(90deg, rgba(47, 140, 205, 0.12), rgba(30, 154, 102, 0.18));
}

.signal-card strong,
.signal-card em {
  display: block;
}

.signal-card strong {
  color: var(--ink);
  font-size: 14px;
}

.signal-card em {
  margin-top: 4px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-style: normal;
  font-weight: 700;
}

.route-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.route-a {
  left: 178px;
  top: 155px;
  width: 190px;
  transform: rotate(18deg);
}

.route-b {
  right: 170px;
  bottom: 155px;
  width: 190px;
  transform: rotate(18deg);
}

.metrics-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.metrics-panel article,
.data-card,
.pricing-card,
.mechanic-cards article {
  padding: 26px;
}

.metrics-panel article + article {
  border-left: 1px solid var(--line);
}

small {
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.metrics-panel strong,
.data-card strong,
.pricing-card strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.metrics-panel span,
.data-card span {
  color: var(--muted);
  font-size: 13px;
}

.launch-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1320px;
  margin: 18px auto 0;
  padding: 0 clamp(20px, 5vw, 72px) 28px;
}

.launch-map a {
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 246, 255, 0.84)),
    radial-gradient(circle at 88% 12%, rgba(30, 154, 102, 0.14), transparent 28%);
  box-shadow: 0 18px 42px rgba(34, 95, 133, 0.1);
  padding: 20px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.launch-map a:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.launch-map strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.launch-map span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.founding-section {
  padding-top: clamp(58px, 8vw, 104px);
}

.founding-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: stretch;
}

.founding-hero-card,
.founding-rules,
.founding-benefits article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.founding-hero-card {
  display: grid;
  align-content: center;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
}

.founding-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(30, 154, 102, 0.18), transparent 26%),
    radial-gradient(circle at 22% 84%, rgba(47, 140, 205, 0.2), transparent 30%),
    linear-gradient(rgba(47, 140, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 140, 205, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 30px 30px, 30px 30px;
  pointer-events: none;
}

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

.founding-hero-card strong {
  display: block;
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.94;
}

.founding-hero-card p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.founding-meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.founding-meter span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(216, 239, 255, 0.74)),
    linear-gradient(90deg, rgba(47, 140, 205, calc(var(--slot) * 0.035)), rgba(30, 154, 102, 0.12));
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.founding-rules {
  overflow: hidden;
}

.founding-rules article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.founding-rules article:last-child {
  border-bottom: 0;
}

.founding-rules article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #f3fbff;
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.founding-rules strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.founding-rules p,
.founding-benefits p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.founding-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.founding-benefits article {
  padding: 24px;
}

.founding-benefits strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 126px) clamp(20px, 5vw, 72px) 0;
}

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

.section-heading h2,
.status-section h2 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.app-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.side-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: rgba(233, 246, 254, 0.72);
  padding: 18px;
}

.tab-button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.tab-button.active {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--blue-dark);
}

.tab-panel {
  display: none;
  padding: clamp(22px, 4vw, 42px);
}

.tab-panel.active {
  display: block;
}

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

.dashboard-header h3 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.status-pill {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.status-pill.good {
  border-color: #9dd9bb;
  background: var(--green-soft);
  color: var(--green);
}

.status-pill.watch {
  border-color: #efd181;
  background: var(--amber-soft);
  color: var(--amber);
}

.status-pill.danger {
  border-color: #efb0a3;
  background: #fff0ed;
  color: #b94e3f;
}

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

.score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.score-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3fbff);
  padding: 18px;
}

.score-strip strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--blue-dark);
  font-size: 28px;
}

.score-strip span {
  color: var(--muted);
  font-size: 13px;
}

.data-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.proof-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-link:hover {
  color: var(--blue);
}

.receipt-proof-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(47, 140, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 140, 205, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.receipt-proof-hero {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(233, 246, 254, 0.72);
  padding: clamp(24px, 4vw, 38px);
}

.receipt-proof-hero h3,
.receipt-table-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.receipt-proof-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.receipt-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.receipt-proof-metrics,
.receipt-proof-grid {
  display: grid;
  gap: 14px;
  padding: 14px;
}

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

.receipt-proof-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-top: 0;
}

.receipt-proof-metrics article,
.receipt-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
}

.receipt-proof-metrics strong,
.receipt-card strong {
  display: block;
  margin: 10px 0 5px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.receipt-proof-metrics span,
.receipt-card span,
.receipt-table-heading span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.receipt-table-wrap {
  margin: 0 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.receipt-table-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #f8fcff;
  padding: 22px;
}

.receipt-table {
  display: grid;
}

.receipt-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  padding: 15px 22px;
}

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

.receipt-head {
  background: rgba(233, 246, 254, 0.74);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-row span {
  overflow-wrap: anywhere;
}

.flow-map {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.flow-map div {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.flow-map span {
  height: 1px;
  background: var(--line-strong);
  position: relative;
}

.flow-map span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--line-strong);
  border-top: 4px solid transparent;
}

.scanner-console {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
}

.scanner-panel,
.scanner-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.scanner-output-stack {
  display: grid;
  gap: 16px;
}

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

.scanner-header h3,
.scanner-verdict h3,
.scanner-empty h3 {
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

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

.scanner-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scanner-form input,
.scanner-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 0 12px;
  text-transform: none;
}

.scanner-form input {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.scanner-form .primary-action {
  width: fit-content;
  margin-top: 6px;
  cursor: pointer;
}

.scanner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.scanner-actions button {
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 0 12px;
  text-transform: uppercase;
}

.scanner-actions button:hover {
  color: var(--blue-dark);
}

.scanner-result {
  min-height: 360px;
}

.fee-routing-result {
  min-height: 0;
}

.scanner-empty p,
.scanner-verdict p,
.scanner-detail-grid p,
.scanner-disclaimer {
  color: var(--ink-soft);
  line-height: 1.65;
}

.scanner-verdict {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.scanner-verdict.verified h3 {
  color: var(--green);
}

.scanner-verdict.rejected h3 {
  color: #b94e3f;
}

.scanner-verdict.pending h3 {
  color: var(--ink);
}

.scanner-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fee-routing-facts strong {
  font-size: 15px;
}

.scanner-facts article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3fbff);
  padding: 16px;
  min-width: 0;
}

.scanner-facts strong,
.scanner-facts span {
  display: block;
}

.scanner-facts strong {
  margin: 10px 0 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.scanner-facts span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.scanner-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.scanner-detail-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.scanner-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.scanner-disclaimer {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
  font-size: 13px;
  padding: 14px;
}

.rule-list {
  display: grid;
  gap: 14px;
}

.rule-list article,
.formula-card,
.leaderboard,
.steps li,
.exclusion-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.rule-list p,
.mechanic-cards p,
.pricing-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.formula-card {
  display: grid;
  gap: 12px;
  background: #f8fcff;
}

code {
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(13px, 2vw, 16px);
  white-space: normal;
}

.leaderboard {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

.leaderboard div:last-child {
  border-bottom: 0;
}

.leaderboard span,
.leaderboard em {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-style: normal;
}

.exclusion-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.exclusion-list strong {
  color: var(--ink);
}

.exclusion-list span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}

.steps span {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.compact {
  position: sticky;
  top: 104px;
}

.mechanic-cards {
  display: grid;
  gap: 14px;
}

.mechanic-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(34, 95, 133, 0.08);
}

.card-index {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.mechanic-cards h3 {
  font-size: 26px;
}

.walkthrough-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.walkthrough-stage,
.walkthrough-steps,
.walkthrough-details article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.walkthrough-stage {
  padding: clamp(18px, 3vw, 28px);
}

.video-frame {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(47, 140, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 140, 205, 0.06) 1px, transparent 1px),
    #f8fcff;
  background-size: 30px 30px, 30px 30px, auto;
  overflow: hidden;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 64px 0 74px;
  z-index: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(47, 140, 205, 0.12) 45%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-45%);
  animation: walkthrough-scan 16s ease-in-out infinite;
}

.video-bar,
.video-controls {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(233, 246, 254, 0.74);
  padding: 14px 16px;
}

.video-bar strong,
.video-bar em,
.video-controls small {
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.video-bar em {
  margin-left: auto;
}

.video-scene {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: clamp(18px, 4vw, 42px);
}

.scene-browser {
  width: min(74%, 500px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(34, 95, 133, 0.14);
  overflow: hidden;
  animation: walkthrough-source-window 16s ease-in-out infinite;
}

.pump-create-window {
  position: relative;
  z-index: 1;
}

.fee-share-window {
  position: absolute;
  top: clamp(118px, 14vw, 150px);
  right: clamp(30px, 6vw, 76px);
  z-index: 2;
  width: min(70%, 460px);
  animation: walkthrough-fee-window 16s ease-in-out infinite;
}

.trustlayer-window {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 3;
  animation: walkthrough-proof-window 16s ease-in-out infinite;
}

.browser-top {
  display: flex;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #f3fbff;
  padding: 11px 12px;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line-strong);
}

.browser-top strong {
  margin-left: 8px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.browser-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mock-field,
.fee-share-card,
.copy-row,
.route-proof {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(90deg, #eaf7ff, #ffffff);
  color: var(--ink);
  padding: 10px 12px;
}

.mock-field small,
.fee-share-card small,
.copy-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-field strong,
.fee-share-card strong,
.copy-row strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.mock-field.compact {
  width: 58%;
}

.mock-field.image-field {
  display: grid;
  width: 148px;
  min-height: 74px;
  align-content: center;
  background:
    radial-gradient(circle at 18px 50%, rgba(30, 154, 102, 0.2), transparent 18px),
    linear-gradient(135deg, #ffffff, #d8efff);
}

.fee-share-card {
  border-color: #9dd9bb;
  background: var(--green-soft);
}

.copy-row {
  background: #ffffff;
}

.route-proof {
  border-color: #efd181;
  background: var(--amber-soft);
  color: var(--amber);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-input,
.mock-image,
.mock-button {
  border-radius: 6px;
}

.mock-input {
  height: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #eaf7ff, #ffffff);
}

.mock-input.wide {
  width: 100%;
}

.mock-input:not(.wide) {
  width: 64%;
}

.mock-image {
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 42%, rgba(30, 154, 102, 0.32), transparent 30%),
    linear-gradient(135deg, #ffffff, #d8efff);
}

.mock-button {
  display: inline-grid;
  width: fit-content;
  min-height: 34px;
  place-items: center;
  background: linear-gradient(180deg, #4aa5dc, #257eb8);
  color: #ffffff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 12px;
  text-transform: uppercase;
  animation: walkthrough-button 16s ease-in-out infinite;
}

.split-bars {
  display: grid;
  gap: 8px;
}

.split-bars span {
  position: relative;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  overflow: hidden;
  padding: 7px 10px;
  text-transform: uppercase;
}

.split-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: rgba(47, 140, 205, 0.14);
  transform-origin: left center;
  animation: walkthrough-fill 16s ease-in-out infinite;
  z-index: 0;
}

.split-bars span {
  z-index: 1;
}

.video-controls {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.play-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue-dark);
  clip-path: polygon(24% 0, 100% 50%, 24% 100%);
  animation: walkthrough-play 1.8s ease-in-out infinite;
}

.timeline {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.timeline span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
  animation: walkthrough-progress 16s linear infinite;
}

.walkthrough-steps {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.walkthrough-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px;
  animation: walkthrough-step-focus 16s ease-in-out infinite;
}

.walkthrough-steps article:nth-child(2) {
  animation-delay: 2s;
}

.walkthrough-steps article:nth-child(3) {
  animation-delay: 4s;
}

.walkthrough-steps article:nth-child(4) {
  animation-delay: 6s;
}

.walkthrough-steps article:nth-child(5) {
  animation-delay: 8s;
}

.walkthrough-steps article:nth-child(6) {
  animation-delay: 10s;
}

.walkthrough-steps article:nth-child(7) {
  animation-delay: 12s;
}

.walkthrough-steps article:nth-child(8) {
  animation-delay: 14s;
}

.walkthrough-steps article:last-child {
  border-bottom: 0;
}

.walkthrough-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #f3fbff;
  color: var(--blue-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.walkthrough-steps strong {
  display: block;
  grid-column: 2;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.walkthrough-steps p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

@keyframes walkthrough-progress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes walkthrough-scan {
  8%,
  72% {
    opacity: 0;
  }

  18%,
  48% {
    opacity: 1;
  }

  58% {
    opacity: 0.48;
    transform: translateX(55%);
  }

  100% {
    opacity: 0;
    transform: translateX(92%);
  }
}

@keyframes walkthrough-source-window {
  0%,
  12% {
    opacity: 1;
    transform: translateY(0);
  }

  26%,
  100% {
    opacity: 0.58;
    transform: translateY(8px);
  }
}

@keyframes walkthrough-fee-window {
  0%,
  18% {
    opacity: 0;
    transform: translate(18px, 18px);
  }

  30%,
  56% {
    opacity: 1;
    transform: translate(0, 0);
  }

  70%,
  100% {
    opacity: 0.68;
    transform: translateY(8px);
  }
}

@keyframes walkthrough-proof-window {
  0%,
  46% {
    opacity: 0;
    transform: translate(16px, 18px);
  }

  60%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes walkthrough-button {
  0%,
  20%,
  58%,
  100% {
    box-shadow: none;
    transform: translateY(0);
  }

  10%,
  48% {
    box-shadow: 0 10px 24px rgba(37, 126, 184, 0.24);
    transform: translateY(-1px);
  }
}

@keyframes walkthrough-fill {
  0%,
  30% {
    transform: scaleX(0);
  }

  52%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes walkthrough-play {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes walkthrough-step-focus {
  0%,
  10%,
  100% {
    background: transparent;
    box-shadow: inset 0 0 0 0 rgba(47, 140, 205, 0);
  }

  4%,
  7% {
    background: rgba(233, 246, 254, 0.62);
    box-shadow: inset 3px 0 0 var(--blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-frame::after,
  .scene-browser,
  .trustlayer-window,
  .mock-button,
  .split-bars span::before,
  .play-dot,
  .timeline span,
  .walkthrough-steps article {
    animation: none;
  }

  .timeline span,
  .split-bars span::before {
    transform: none;
  }

  .scene-browser,
  .trustlayer-window {
    opacity: 1;
    transform: none;
  }
}

.walkthrough-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.walkthrough-details article {
  box-shadow: 0 12px 34px rgba(34, 95, 133, 0.08);
  padding: 22px;
}

.walkthrough-details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

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

.ai-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-bottom: 18px;
}

.ai-copy,
.ai-form,
.ai-answer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(34, 95, 133, 0.08);
}

.ai-copy,
.ai-form {
  padding: clamp(22px, 3vw, 30px);
}

.ai-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
}

.ai-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.ai-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ai-prompts button {
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 13px;
  text-transform: uppercase;
}

.ai-prompts button:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

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

.ai-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-form textarea {
  width: 100%;
  min-height: 142px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  padding: 14px;
  text-transform: none;
}

.ai-form .primary-action {
  width: fit-content;
}

.ai-answer {
  min-height: 122px;
  padding: 18px;
}

.ai-answer p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  white-space: pre-wrap;
}

.qa-card {
  min-height: 232px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(34, 95, 133, 0.08);
  padding: clamp(22px, 3vw, 28px);
}

.qa-card-wide {
  grid-column: span 2;
}

.qa-card.caution {
  border-color: #efd181;
  background: linear-gradient(180deg, #ffffff, #fff8e6);
}

.qa-card.good {
  border-color: #9dd9bb;
  background: linear-gradient(180deg, #ffffff, #effbf5);
}

.qa-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1.08;
}

.qa-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eaf7ff);
}

.fleet-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-head,
.fleet-table article {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
}

.fleet-head {
  border-bottom: 1px solid var(--line);
  background: rgba(233, 246, 254, 0.74);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-table article {
  border-bottom: 1px solid var(--line);
}

.fleet-table article:last-child {
  border-bottom: 0;
}

.fleet-table article > span:not(.status-pill) {
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.tier-stack {
  display: grid;
  gap: 14px;
}

.tier-stack article,
.onboard-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(34, 95, 133, 0.08);
  padding: 26px;
}

.tier-stack h3,
.onboard-form h3 {
  margin: 18px 0 10px;
  font-size: 25px;
}

.tier-stack p,
.onboard-form p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.onboard-form {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  margin-top: 18px;
}

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

.onboard-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onboard-form input,
.onboard-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 0 12px;
  text-transform: none;
}

.onboard-form .primary-action {
  width: fit-content;
  margin-top: 4px;
}

.status-section {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 90px;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.status-board div {
  padding: 18px;
}

.status-board div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.status-board div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.status-board strong,
.status-board span {
  display: block;
}

.status-board span {
  margin-top: 6px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #f8fcff;
  color: var(--ink-soft);
  padding: 28px clamp(20px, 5vw, 72px);
}

footer span {
  max-width: 800px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar-status {
    display: none;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .walkthrough-shell,
  .scanner-console,
  .status-section,
  .founding-panel,
  .ai-panel,
  .onboard-form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .metrics-panel,
    .scanner-facts,
    .pricing-row,
    .qa-grid,
    .launch-map,
    .founding-benefits,
    .walkthrough-details,
    .receipt-proof-metrics,
  .receipt-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-card-wide {
    grid-column: span 2;
  }

  .metrics-panel article + article {
    border-left: 0;
  }

  .metrics-panel article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .metrics-panel article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .compact {
    position: static;
  }
}

@media (max-width: 720px) {
  .ticker {
    justify-content: flex-start;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 12px 16px;
  }

  .brand small,
  .topbar-status {
    display: none;
  }

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

  .contact-button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 10px;
  }

  .signal-card {
    min-width: 128px;
    padding: 12px;
  }

  .signal-card.left {
    left: 14px;
    top: 24px;
  }

  .signal-card.right {
    right: 14px;
    bottom: 24px;
  }

  .route-line {
    display: none;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 46px;
  }

  .metrics-panel,
  .pricing-row,
  .qa-grid,
    .founding-benefits,
    .walkthrough-details,
    .launch-map,
    .dashboard-grid,
    .score-strip,
  .scanner-facts,
  .scanner-detail-grid,
  .status-board,
  .fleet-head,
  .fleet-table article {
    grid-template-columns: 1fr;
  }

  .qa-card-wide {
    grid-column: auto;
  }

  .video-scene {
    min-height: 520px;
  }

  .scene-browser,
  .fee-share-window,
  .trustlayer-window {
    position: static;
    width: 100%;
  }

  .video-scene {
    display: grid;
    gap: 14px;
  }

  .walkthrough-steps article {
    grid-template-columns: 1fr;
  }

  .walkthrough-steps strong,
  .walkthrough-steps p {
    grid-column: auto;
  }

  .fleet-head {
    display: none;
  }

  .fleet-table article {
    gap: 8px;
  }

  .metrics-panel article,
  .metrics-panel article:nth-child(odd),
  .metrics-panel article:nth-child(-n + 2),
  .status-board div,
  .status-board div:nth-child(odd),
  .status-board div:nth-child(-n + 2) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .side-rail {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

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

  .dashboard-header {
    display: block;
  }

  .receipt-proof-hero,
  .receipt-table-heading {
    display: block;
  }

  .status-pill {
    display: inline-flex;
    margin-top: 14px;
  }

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

  .flow-map span {
    width: 1px;
    height: 24px;
    justify-self: center;
  }

  .flow-map span::after {
    bottom: 0;
    left: -4px;
    right: auto;
    top: auto;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid var(--line-strong);
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .founding-rules article {
    grid-template-columns: 1fr;
  }

  .receipt-proof-metrics,
  .receipt-proof-grid,
  .receipt-row {
    grid-template-columns: 1fr;
  }

  .receipt-row {
    gap: 7px;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-top: 10px;
  }
}
