:root {
  --ink: #070a12;
  --graphite: #2b3038;
  --blue: #00aeef;
  --yellow: #d7f238;
  --paper: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 270px) 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 5px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.94);
  backdrop-filter: blur(16px);
}
.brand img { display: block; width: min(245px, 100%); height: auto; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: stretch;
  gap: 26px;
  min-height: min(680px, calc(100vh - 58px));
  padding: 34px 28px 22px;
  background:
    linear-gradient(120deg, rgba(0,174,239,.18), transparent 36%),
    linear-gradient(100deg, transparent 58%, rgba(215,242,56,.16)),
    var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}
.lede {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.38;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 14px; }
.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}
.primary-action { color: var(--ink); background: var(--yellow); }
.secondary-action { color: var(--paper); border: 1px solid rgba(255,255,255,.24); }

.hero-board {
  align-self: center;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.board-top { display: flex; align-items: center; gap: 14px; }
.board-top img { width: 58px; height: 58px; }
.board-top span, .metric-grid span, .payout-table span, .trust-band span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.board-top strong { display: block; margin-top: 4px; font-size: 22px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.metric-grid div, .payout-table div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(7,10,18,.74);
}
.metric-grid strong { display: block; margin-top: 8px; color: var(--yellow); font-size: 24px; }
.listing-card {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.listing-card p { margin: 4px 0 0; color: rgba(255,255,255,.64); font-size: 13.5px; line-height: 1.32; }
.listing-card b { color: var(--yellow); }
.status-dot { width: 10px; height: 10px; margin-top: 5px; border-radius: 999px; background: var(--blue); }
.status-dot.yellow { background: var(--yellow); }

.ticker {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 28px;
  background: var(--paper);
}
.ticker span {
  flex: 0 0 auto;
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid #d7dde6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.trust-band div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  text-align: center;
}
.trust-band strong { display: block; margin-bottom: 8px; color: var(--blue); font-size: 30px; line-height: 1; }

.section { padding: 64px 28px; }
.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: start;
  background: #f4f7fb;
  color: var(--ink);
}
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.6vw, 68px); line-height: .98; letter-spacing: 0; }
.split .eyebrow, .payout .eyebrow, .intake .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #007fb0;
  border: 1px solid rgba(0,174,239,.24);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(0,174,239,.08);
}
.step-list { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  background: #fff;
}
.step svg, .cards svg, .mock-form button svg, .mini-icon, .card-icon { color: var(--blue); }
.mini-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,174,239,.36);
  border-radius: 8px;
  background: rgba(0,174,239,.1);
}
.card-icon svg,
.cards article > svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid rgba(0,174,239,.36);
  border-radius: 8px;
  background: rgba(0,174,239,.1);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.card-icon svg {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  background: transparent;
}
.step h3, .cards h3 { margin-bottom: 6px; font-size: 20px; }
.step p, .cards p, .payout-copy p, .intake p { margin-bottom: 0; color: #596271; line-height: 1.5; }

.payout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .88fr);
  gap: 46px;
  align-items: center;
  background: linear-gradient(180deg, var(--paper), #f8fbff);
  color: var(--ink);
}
.payout-copy { max-width: 740px; }
.payout h2 { max-width: 760px; }
.payout-copy p:not(.eyebrow) { max-width: 760px; font-size: 17px; }
.fee-panel {
  display: grid;
  width: min(100%, 620px);
  gap: 12px;
  margin-left: auto;
}
.listing-fees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.listing-fees div {
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}
.listing-fees .marketplace-fee {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  min-height: 0;
}
.listing-fees span,
.rate-head span,
.fee-note {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.listing-fees strong { display: block; margin-top: 7px; color: var(--yellow); font-size: 30px; line-height: 1; }
.listing-fees .marketplace-fee strong {
  margin-top: 0;
  color: #fff;
  font-size: 20px;
}
.marketplace-fee p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.rate-table {
  overflow: hidden;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7,10,18,.08);
}
.rate-row {
  display: grid;
  grid-template-columns: 1.35fr .82fr .72fr;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 13px 16px;
  border-bottom: 1px solid #e5eaf1;
}
.rate-row:last-child { border-bottom: 0; }
.rate-row strong { font-size: 16px; }
.rate-row span { font-weight: 900; }
.rate-row:not(.rate-head) span { color: #007fb0; font-size: 18px; }
.rate-head { background: var(--ink); }
.rate-head span { color: rgba(255,255,255,.78); }
.rate-row.highlight { background: var(--yellow); }
.rate-row.highlight span, .rate-row.highlight strong { color: var(--ink); }
.fee-note {
  margin: 0;
  color: #596271;
  text-align: center;
  text-transform: none;
}

.fine-print {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
  background: #0a0d15;
}
.fine-print .eyebrow {
  color: var(--yellow);
  border-color: rgba(215,242,56,.24);
  border-left-color: var(--yellow);
  background: rgba(215,242,56,.08);
}
.fine-print h2 { max-width: 560px; font-size: clamp(34px, 4vw, 58px); }
.fine-print-copy p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.64); line-height: 1.5; }
.notes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: notes;
}
.notes-list li {
  position: relative;
  min-height: 72px;
  padding: 16px 16px 16px 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.76);
  line-height: 1.42;
}
.notes-list li::before {
  counter-increment: notes;
  content: counter(notes);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: var(--ink); }
.cards article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.cards p { color: rgba(255,255,255,.64); }

.intake {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px 32px;
  align-items: start;
  background: #eef3f8;
  color: var(--ink);
}
.intake-copy {
  display: grid;
  gap: 14px;
}
.intake-copy h2,
.intake-copy p {
  margin-bottom: 0;
}
.intake-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.intake-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.intake-points svg {
  flex: 0 0 auto;
  color: var(--blue);
}
.contact-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-panel > div,
.contact-panel a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(7,10,18,.04);
  text-decoration: none;
}
.contact-panel svg { flex: 0 0 auto; color: var(--blue); }
.contact-panel address {
  display: grid;
  gap: 2px;
  color: #596271;
  font-style: normal;
  line-height: 1.35;
}
.contact-panel strong { color: var(--ink); }
.contact-panel a {
  justify-content: space-between;
  font-weight: 900;
}
.mock-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-form input, .mock-form select, .mock-form textarea, .login-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.mock-form textarea { grid-column: 1 / -1; min-height: 132px; padding-top: 13px; resize: vertical; }
.mock-form button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(0,174,239,.18), transparent 34%),
    linear-gradient(100deg, transparent 50%, rgba(215,242,56,.14)),
    var(--ink);
}
.login-panel {
  width: min(560px, 100%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.login-logo { display: block; width: min(420px, 100%); margin-bottom: 34px; }
.login-copy h1 { margin-bottom: 10px; font-size: 44px; line-height: .98; }
.login-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.login-form { display: grid; gap: 8px; margin-top: 24px; }
.login-form label { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.login-row { display: grid; grid-template-columns: 1fr 124px; gap: 8px; }
.login-row button { color: var(--ink); background: var(--yellow); border: 0; border-radius: 8px; font-weight: 900; cursor: pointer; }
.login-error { margin: 6px 0 0; color: #ff8787; font-size: 14px; }

@media (max-width: 920px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero, .split, .payout, .fine-print, .intake { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .ticker { justify-content: flex-start; }
  .notes-list { grid-template-columns: 1fr; }
  .trust-band, .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .nav, .hero, .section { padding-left: 16px; padding-right: 16px; }
  .nav { min-height: 58px; padding-top: 5px; padding-bottom: 5px; }
  .brand img { width: min(210px, 100%); }
  h1 { font-size: 48px; }
  .lede { font-size: 18px; }
  .hero-board { padding: 12px; }
  .metric-grid, .trust-band, .cards, .mock-form, .intake-points, .contact-panel, .login-row { grid-template-columns: 1fr; }
  .listing-fees { grid-template-columns: 1fr; }
  .rate-row { grid-template-columns: 1.15fr .8fr .68fr; gap: 8px; min-height: 48px; padding: 11px 10px; }
  .rate-row strong { font-size: 14px; }
  .rate-row:not(.rate-head) span { font-size: 15px; }
  .rate-head span { font-size: 10px; }
  .trust-band div { min-height: 96px; }
}
