:root {
  --ink: #0d1117;
  --ink-2: #171b22;
  --text: #1f2933;
  --muted: #667085;
  --line: #e6e8ec;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --green: #0b6f55;
  --green-dark: #084d3e;
  --gold: #b8872e;
  --gold-soft: #f7ead0;
  --blue: #274b8f;
  --shadow: 0 24px 80px rgba(13, 17, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 58%, #ffffff 100%);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: 3.95rem;
  max-width: 1030px;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.12rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 232, 236, 0.84);
  backdrop-filter: blur(16px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.08rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(140deg, var(--ink), var(--green));
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #475467;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button,
.as-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover,
.nav-cta:hover,
.as-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(13, 17, 23, 0.16);
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.button.inverted {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 32px 0 24px;
}

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

.hero-visual {
  display: grid;
  gap: 0;
  align-items: start;
}

.network-card {
  position: relative;
  justify-self: end;
  width: 92%;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, #0d1117 0%, #10261f 52%, #15203a 100%);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.hero-visual .market-preview {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.hero-visual .preview-top {
  padding: 16px 18px 0;
}

.hero-visual .preview-metrics {
  padding: 14px 18px;
}

.hero-visual .preview-metrics div {
  padding: 11px 10px;
}

.hero-visual .publisher-table.compact {
  padding: 0 18px;
}

.hero-visual .table-head {
  min-height: 36px;
}

.hero-visual .table-row {
  min-height: 48px;
}

.hero-visual .preview-foot {
  padding: 12px 18px 16px;
}

.network-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}

.network-card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 58%;
  height: 120%;
  background: linear-gradient(180deg, rgba(184, 135, 46, 0.24), rgba(11, 111, 85, 0.02));
  transform: rotate(18deg);
}

.network-grid,
.network-copy,
.network-tags {
  position: relative;
  z-index: 1;
}

.network-grid {
  position: absolute;
  inset: 0;
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(11, 111, 85, 0.12);
}

.node.core {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.node.n1 { left: 18%; top: 27%; }
.node.n2 { right: 19%; top: 23%; background: var(--gold); }
.node.n3 { left: 24%; bottom: 20%; background: var(--blue); }
.node.n4 { right: 24%; bottom: 17%; }

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  transform-origin: left center;
}

.network-line.l1 { transform: rotate(205deg); }
.network-line.l2 { transform: rotate(326deg); }
.network-line.l3 { transform: rotate(145deg); }
.network-line.l4 { transform: rotate(34deg); }

.network-copy {
  max-width: 280px;
  padding: 22px;
}

.network-copy span {
  color: #b7c4d6;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.network-copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.network-tags {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 270px;
}

.network-tags span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6ecf4;
  font-size: 0.78rem;
  font-weight: 760;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 11px;
  border: 1px solid #d6eadf;
  border-radius: 999px;
  background: #f3fbf7;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #e7fff5;
}

.hero-lead,
.section-lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 12px;
}

.signal-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.signal-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.signal-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 44px));
  margin: 24px auto 0;
}

.proof-card {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(13, 17, 23, 0.06);
}

.proof-card h3 {
  margin-top: 20px;
}

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

.mini-map,
.funnel-bars,
.report-lines {
  position: relative;
  height: 104px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f6f8fb, #eef5f1);
}

.mini-map::before,
.mini-map::after {
  content: "";
  position: absolute;
  inset: 22px 18px;
  border-top: 1px solid rgba(11, 111, 85, 0.22);
  border-bottom: 1px solid rgba(39, 75, 143, 0.18);
  transform: skewY(-10deg);
}

.mini-map span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(11, 111, 85, 0.11);
}

.mini-map span:nth-child(1) { left: 18%; top: 30%; }
.mini-map span:nth-child(2) { left: 46%; top: 20%; background: var(--gold); }
.mini-map span:nth-child(3) { right: 18%; top: 38%; background: var(--blue); }
.mini-map span:nth-child(4) { left: 32%; bottom: 22%; }
.mini-map span:nth-child(5) { right: 30%; bottom: 18%; background: var(--gold); }

.funnel-bars {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.funnel-bars span {
  display: block;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.funnel-bars span:nth-child(1) { width: 96%; }
.funnel-bars span:nth-child(2) { width: 70%; }
.funnel-bars span:nth-child(3) { width: 44%; }

.report-lines {
  display: grid;
  align-content: end;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 18px;
}

.report-lines span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.report-lines span:nth-child(1) { height: 42px; }
.report-lines span:nth-child(2) { height: 66px; }
.report-lines span:nth-child(3) { height: 52px; background: linear-gradient(180deg, var(--gold), var(--green)); }
.report-lines span:nth-child(4) { height: 78px; }

.market-preview,
.wide-dashboard,
.inventory-panel,
.wallet-panel,
.filter-panel,
.order-panel {
  border: 1px solid rgba(13, 17, 23, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.market-preview {
  position: relative;
  overflow: hidden;
}

.market-preview::before {
  content: "";
  display: block;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
}

.preview-top,
.preview-foot,
.dashboard-toolbar,
.inventory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-top {
  padding: 20px 22px 0;
  color: var(--ink);
  font-weight: 820;
}

.live-dot,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #704b11;
  font-size: 0.76rem;
  font-weight: 850;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 22px;
}

.preview-metrics div {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.preview-metrics b,
.preview-metrics small {
  display: block;
}

.preview-metrics small {
  margin-top: 4px;
  color: var(--muted);
}

.publisher-table {
  width: 100%;
  overflow: hidden;
}

.publisher-table.compact {
  padding: 0 22px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr 0.8fr 0.7fr;
  align-items: center;
  gap: 14px;
}

.wide-dashboard .table-head,
.wide-dashboard .table-row {
  grid-template-columns: 1.45fr 0.95fr 1fr 0.75fr 0.5fr 0.65fr;
}

.table-head {
  min-height: 42px;
  color: #7b8494;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.table-row {
  min-height: 58px;
  border-bottom: 1px solid #edf0f4;
  color: #344054;
  font-size: 0.92rem;
}

.table-row span:first-child {
  color: var(--ink);
  font-weight: 760;
}

.locked span:first-child,
.locked-row span:nth-child(n+2) {
  filter: blur(3px);
  user-select: none;
}

.preview-foot {
  padding: 16px 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.preview-foot a {
  color: var(--green);
  font-weight: 820;
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--line);
}

.logo-band span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  background: #ffffff;
  color: #475467;
  font-weight: 780;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: start;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.card-graphic {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fbfcfd, #eef7f3);
}

.card-graphic span {
  display: block;
  position: absolute;
  border-radius: 999px;
}

.access-graphic span:nth-child(1) {
  width: 58px;
  height: 12px;
  background: var(--green);
  top: 20px;
  left: 18px;
}

.access-graphic span:nth-child(2) {
  width: 42px;
  height: 12px;
  background: var(--gold);
  top: 38px;
  left: 18px;
}

.access-graphic span:nth-child(3) {
  width: 24px;
  height: 24px;
  right: 14px;
  bottom: 14px;
  border: 5px solid var(--blue);
}

.wallet-graphic span:nth-child(1) {
  width: 54px;
  height: 38px;
  border: 2px solid var(--green);
  background: #ffffff;
  left: 18px;
  top: 20px;
}

.wallet-graphic span:nth-child(2) {
  width: 34px;
  height: 22px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  right: 14px;
  top: 32px;
}

.wallet-graphic span:nth-child(3) {
  width: 8px;
  height: 8px;
  background: var(--green);
  right: 24px;
  top: 39px;
}

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

.card-index {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.dark-panel {
  width: auto;
  max-width: none;
  margin: 36px 0 0;
  padding: 92px max(22px, calc((100vw - 1180px) / 2));
  background: var(--ink);
}

.dark-panel h2,
.dark-panel h3 {
  color: #ffffff;
}

.dark-panel p {
  color: #b8c1cf;
}

.section-intro {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.process-grid article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.process-grid p {
  margin-top: 14px;
}

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

.quality-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.quality-list b {
  color: var(--gold);
}

.quality-list span {
  color: #344054;
  font-weight: 680;
}

.marketplace-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: center;
}

.dashboard-toolbar {
  flex-wrap: wrap;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-toolbar span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475467;
  font-size: 0.88rem;
  font-weight: 720;
}

.dashboard-toolbar .search-pill {
  flex: 1 1 260px;
  justify-content: flex-start;
  color: #98a2b3;
  background: var(--soft);
}

.wide-dashboard .publisher-table {
  padding: 0 18px 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 74px max(22px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--green-dark), var(--ink));
}

.final-cta h2 {
  max-width: 780px;
  color: #ffffff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: #667085;
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.marketplace-page {
  background: #f7f9fc;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.market-hero h1 {
  font-size: 4.35rem;
}

.wallet-panel {
  padding: 24px;
}

.wallet-panel span,
.wallet-panel p {
  color: var(--muted);
}

.wallet-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1;
}

.fund-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.fund-buttons button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.market-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.filter-panel {
  align-self: start;
  padding: 22px;
  box-shadow: none;
}

.filter-panel h2 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.filter-panel label,
.order-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 780;
}

.filter-panel input,
.filter-panel select,
.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.order-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.range-value {
  color: var(--green);
  font-weight: 850;
}

.access-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.access-card p {
  margin-top: 8px;
  color: #c7ced8;
  font-size: 0.9rem;
}

.inventory-panel {
  padding: 0;
  overflow: hidden;
}

.inventory-head {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.inventory-head h2 {
  font-size: 1.5rem;
}

.market-table {
  display: grid;
  width: 100%;
}

.market-head,
.market-row {
  display: grid;
  grid-template-columns: 72px minmax(160px, 1.3fr) minmax(110px, 0.8fr) minmax(120px, 0.9fr) 90px 70px 80px;
  gap: 12px;
  align-items: center;
  padding: 0 22px;
}

.market-head {
  min-height: 46px;
  color: #7b8494;
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
}

.market-row {
  min-height: 66px;
  border-bottom: 1px solid #edf0f4;
  color: #344054;
  font-size: 0.93rem;
  cursor: pointer;
}

.market-row:hover {
  background: #fcfdfd;
}

.market-row span:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
}

.market-row input {
  width: 18px;
  height: 18px;
}

.market-row.is-hidden {
  display: none;
}

.market-row.is-unlocked span {
  filter: none;
}

.market-row.is-unlocked input {
  opacity: 1;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 86px;
  padding: 28px;
}

.order-summary strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
}

.order-summary p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.order-form {
  display: grid;
}

.order-form .button {
  justify-self: start;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.75rem;
  }

  h2,
  .market-hero h1 {
    font-size: 3rem;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .market-hero,
  .market-layout,
  .order-panel,
  .marketplace-slab,
  .split-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .market-preview {
    max-width: 760px;
  }

  .visual-proof {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 740px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .market-hero h1 {
    font-size: 2.45rem;
  }

  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero-section,
  .section,
  .market-hero,
  .market-layout,
  .order-panel {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding: 46px 0 34px;
  }

  .hero-actions {
    display: grid;
  }

  .signal-strip,
  .visual-proof,
  .logo-band,
  .feature-grid.two,
  .process-grid,
  .preview-metrics,
  .fund-buttons {
    grid-template-columns: 1fr;
  }

  .logo-band {
    gap: 0;
  }

  .section {
    padding: 64px 0;
  }

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

  .network-copy {
    max-width: none;
  }

  .network-tags {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .card-graphic {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 24px;
  }

  .card-index {
    margin-bottom: 18px;
  }

  .dark-panel,
  .final-cta {
    padding: 64px 16px;
  }

  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.2fr 0.8fr 0.6fr;
  }

  .table-head span:nth-child(3),
  .table-row span:nth-child(3),
  .wide-dashboard .table-head span:nth-child(3),
  .wide-dashboard .table-row span:nth-child(3),
  .wide-dashboard .table-head span:nth-child(5),
  .wide-dashboard .table-row span:nth-child(5) {
    display: none;
  }

  .wide-dashboard .table-head,
  .wide-dashboard .table-row {
    grid-template-columns: 1.2fr 0.85fr 0.65fr;
  }

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

  .market-head,
  .market-row {
    min-width: 820px;
  }

  .order-panel {
    padding: 20px;
  }
}
