  :root {
    --bg:        #0b0a09;
    --bg-deep:   #070605;
    --surface:   #141210;
    --surface-2: #1a1714;
    --surface-3: #0f0d0b;
    --border:    rgba(232, 210, 165, 0.08);
    --border-hi: rgba(232, 210, 165, 0.16);
    --gold:      #C9A84C;
    --gold-2:    #D4B868;
    --gold-bg:   rgba(201, 168, 76, 0.10);
    --gold-bg-2: rgba(201, 168, 76, 0.05);
    --gold-line: rgba(201, 168, 76, 0.28);
    --text:      #F1EBDF;
    --text-2:    #A09A8E;
    --text-3:    #605A52;
    --text-4:    #3F3A34;
    --green:     #6BAE6B;
    --red:       #D25A5A;
    --orange:    #D97740;
    --blue:      #7AA8C9;

    --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --sans:  "Inter", system-ui, -apple-system, sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

    --maxw: 1200px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
  img, svg { display: block; max-width: 100%; }

  /* ───────── shared primitives ───────── */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap;
  }
  .eyebrow::before,
  .eyebrow::after {
    content: ""; display: inline-block;
    width: 22px; height: 1px; background: var(--gold); opacity: 0.7;
  }
  .label {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    font-weight: 500;
  }
  .mono { font-family: var(--mono); }
  .serif { font-family: var(--serif); }
  .gold { color: var(--gold); }
  .italic { font-style: italic; }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .section-title em { font-style: italic; color: var(--gold); font-weight: 500; }
  .section-lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-2);
    max-width: 56ch;
    text-wrap: pretty;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 44px; padding: 0 20px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: #1a1208;
    border: 1px solid var(--gold);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.0), 0 14px 40px -16px rgba(201,168,76,0.55);
  }
  .btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hi);
  }
  .btn-ghost:hover { background: var(--surface); border-color: rgba(232,210,165,0.24); }
  .btn .arrow { transition: transform .2s ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ───────── nav ───────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(11, 10, 9, 0.72);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 32px;
    height: 68px;
  }
  .brand {
    display: inline-flex; align-items: baseline;
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: -0.01em;
  }
  .brand .brand-slab { font-style: italic; font-weight: 400; color: var(--text); }
  .brand .brand-flow { font-weight: 600; color: var(--gold); }
  .nav-links {
    display: flex; gap: 28px;
    margin-left: 12px;
  }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-2);
    transition: color .15s ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
  .nav-signin { font-size: 13.5px; color: var(--text-2); }
  .nav-signin:hover { color: var(--text); }
  .nav .btn { height: 38px; padding: 0 16px; font-size: 13px; }

  /* ───────── hero ───────── */
  .hero {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -40%; left: 50%; transform: translateX(-50%);
    width: 1100px; height: 700px;
    background: radial-gradient(closest-side, rgba(201,168,76,0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, var(--border) 1px, transparent 1px) 0 0/96px 100%,
      linear-gradient(to bottom, var(--border) 1px, transparent 1px) 0 0/100% 96px;
    mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.7), transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.7), transparent 65%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; text-align: center; }
  .hero h1 {
    margin-top: 22px;
    font-family: var(--serif);
    font-size: clamp(44px, 6.8vw, 88px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
  }
  .hero-sub {
    margin: 26px auto 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-2);
    max-width: 58ch;
    text-wrap: pretty;
  }
  .hero-cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 22px;
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-3);
    letter-spacing: 0.04em;
  }
  .hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }
  .hero-meta .live { color: var(--green); }
  .hero-meta .live::before {
    content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); margin-right: 6px; vertical-align: middle;
    box-shadow: 0 0 0 3px rgba(107,174,107,0.18);
  }

  /* ───────── hero dashboard mock ───────── */
  .hero-mock-wrap {
    margin-top: 64px;
    position: relative;
    z-index: 1;
  }
  .hero-mock-frame {
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: 18px;
    padding: 14px;
    box-shadow:
      0 60px 120px -40px rgba(0,0,0,0.8),
      0 0 0 1px rgba(201,168,76,0.04),
      0 0 80px -20px rgba(201,168,76,0.18);
    max-width: 1140px;
    margin: 0 auto;
  }
  .hero-mock-chrome {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 10px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
  }
  .hero-mock-chrome .dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .hero-mock-chrome .addr {
    margin-left: 16px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    padding: 4px 12px;
    background: var(--surface-3);
    border-radius: 6px;
    border: 1px solid var(--border);
  }
  .hero-mock-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
  }

  /* ───── inline dashboard mock ───── */
  .dash {
    display: grid;
    grid-template-columns: 196px 1fr;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    color: var(--text);
    min-height: 620px;
  }
  .dash-side {
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 18px 0 16px;
  }
  .dash-brand {
    font-family: var(--serif);
    font-size: 20px;
    padding: 0 20px 16px;
    letter-spacing: -0.01em;
  }
  .dash-brand .brand-slab { font-style: italic; color: var(--text); }
  .dash-brand .brand-flow { font-weight: 600; color: var(--gold); }
  .dash-nav-group {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 14px 20px 6px;
    font-weight: 500;
  }
  .dash-nav { list-style: none; }
  .dash-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 14px;
    margin: 1px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-2);
    border: 1px solid transparent;
    position: relative;
  }
  .dash-nav-item .ic {
    width: 12px; height: 12px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
  }
  .dash-nav-item.active {
    background: var(--gold-bg);
    border-color: var(--gold-line);
    color: var(--gold);
  }
  .dash-nav-item.active .ic { background: var(--gold); }
  .dash-badge {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--red);
    background: rgba(210,90,90,0.12);
    border: 1px solid rgba(210,90,90,0.32);
    padding: 1px 5px;
    border-radius: 3px;
  }

  .dash-main {
    padding: 18px 20px;
    background: var(--bg);
    min-width: 0;
  }
  .dash-head {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 14px;
  }
  .dash-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--text-3);
  }
  .dash-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 4px 0 2px;
  }
  .dash-title em { font-style: italic; color: var(--gold); font-weight: 500; }
  .dash-subtle {
    font-size: 11.5px;
    color: var(--text-3);
  }
  .dash-head-actions {
    margin-left: auto;
    display: flex; align-items: center; gap: 8px;
  }
  .dash-search {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11.5px;
    color: var(--text-3);
    min-width: 180px;
  }
  .dash-search .kbd {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 9.5px;
    padding: 1px 5px;
    background: var(--surface-2);
    border-radius: 3px;
    color: var(--text-2);
  }
  .dash-bell {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
  }
  .dash-bell::after {
    content: ""; position: absolute; top: 6px; right: 6px;
    width: 5px; height: 5px; border-radius: 50%; background: var(--red);
  }
  .dash-cta {
    display: inline-flex; align-items: center;
    padding: 6px 12px;
    background: var(--gold);
    color: #1a1208;
    font-weight: 600;
    font-size: 11.5px;
    border-radius: 6px;
  }

  .dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .dash-kpi {
    padding: 14px 16px;
    border-right: 1px solid var(--border);
  }
  .dash-kpi:last-child { border-right: 0; }
  .kpi-label {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--text-3);
    font-weight: 500;
  }
  .kpi-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-top: 6px;
    gap: 8px;
  }
  .kpi-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .kpi-spark { width: 60px; height: 18px; }
  .kpi-foot {
    display: flex; justify-content: space-between;
    margin-top: 6px;
    font-size: 10px;
    color: var(--text-2);
  }
  .kpi-foot .up { color: var(--green); }

  .dash-pipeline {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
  }
  .dp-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .dp-icon {
    width: 22px; height: 22px; border-radius: 5px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-line);
    flex-shrink: 0;
  }
  .dp-title {
    font-family: var(--sans);
    font-size: 12px; font-weight: 600; color: var(--text);
  }
  .dp-sub {
    font-size: 10.5px;
    color: var(--text-3);
    margin-top: 1px;
  }
  .dp-stages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
  .dp-stage {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    display: flex; flex-direction: column; gap: 2px;
    position: relative;
  }
  .dp-stage.gold {
    border-color: var(--gold-line);
    background: linear-gradient(180deg, var(--gold-bg-2), var(--surface-3));
  }
  .dp-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--text-3);
    margin-bottom: 2px;
  }
  .dp-stage.gold .dp-dot { background: var(--gold); }
  .dp-lbl {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    color: var(--text-3);
  }
  .dp-stage.gold .dp-lbl { color: var(--gold); }
  .dp-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 2px;
  }
  .dp-meta {
    font-size: 9.5px;
    color: var(--text-3);
    margin-top: 2px;
  }

  .dash-row {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 12px;
  }
  .dash-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
  }
  .dc-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
  }
  .dc-title { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--text); }
  .dc-sub { font-size: 10px; color: var(--text-3); margin-top: 1px; }
  .dc-link {
    margin-left: auto;
    font-family: var(--sans);
    font-size: 10.5px;
    color: var(--text-2);
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
  }
  .dc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .dc-action {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    border-left-width: 2px;
  }
  .dc-action.gold   { border-left-color: var(--gold); }
  .dc-action.orange { border-left-color: var(--orange); }
  .dc-action.green  { border-left-color: var(--green); }
  .dc-action.red    { border-left-color: var(--red); }
  .da-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
  }
  .da-lbl { font-size: 10.5px; color: var(--text-2); }
  .da-n {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text);
  }
  .dc-action.gold .da-n   { color: var(--gold); }
  .dc-action.orange .da-n { color: var(--orange); }
  .dc-action.green .da-n  { color: var(--green); }
  .dc-action.red .da-n    { color: var(--red); }
  .da-title { font-size: 11px; color: var(--text); font-weight: 500; }
  .da-meta { font-size: 10px; color: var(--text-3); margin-top: 2px; }
  .da-cta {
    margin-top: 8px;
    display: flex; gap: 6px;
    font-size: 10px;
  }
  .da-start { color: var(--gold); }
  .dc-action.orange .da-start { color: var(--orange); }
  .dc-action.green .da-start  { color: var(--green); }
  .dc-action.red .da-start    { color: var(--red); }
  .da-snooze { color: var(--text-3); margin-left: 4px; }

  .da-section {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    padding: 6px 0;
    display: flex; align-items: center; gap: 6px;
  }
  .da-section.red { color: var(--red); }
  .da-section.orange { color: var(--orange); }
  .da-marker { font-size: 8px; }
  .da-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0;
    border-top: 1px solid var(--border);
  }
  .da-name { font-size: 11px; color: var(--text); font-weight: 500; }
  .da-sub-meta { font-size: 9.5px; color: var(--text-3); margin-top: 1px; }
  .da-age {
    font-family: var(--mono);
    font-size: 10.5px;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .da-age.red { color: var(--red); background: rgba(210,90,90,0.10); }
  .da-age.orange { color: var(--orange); background: rgba(217,119,64,0.10); }

  @media (max-width: 900px) {
    .dash { grid-template-columns: 1fr; }
    .dash-side { display: none; }
    .dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .dash-kpis .dash-kpi:nth-child(2) { border-right: 0; }
    .dash-kpis .dash-kpi:nth-child(1),
    .dash-kpis .dash-kpi:nth-child(2) { border-bottom: 1px solid var(--border); }
    .dp-stages { grid-template-columns: repeat(3, 1fr); }
    .dash-row { grid-template-columns: 1fr; }
    .dc-grid { grid-template-columns: 1fr; }
  }
  /* fade out bottom of mock */
  .hero-mock-wrap::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px; height: 220px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
  }

  /* ───────── trust strip ───────── */
  .trust {
    padding: 24px 0 80px;
    border-bottom: 1px solid var(--border);
  }
  .trust-inner {
    display: flex; align-items: center; justify-content: center; gap: 28px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
  }
  .trust-items {
    display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
    justify-content: center;
  }
  .trust-sep {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
  }
  .trust-item {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--text-2);
    letter-spacing: 0.01em;
    opacity: 0.7;
    transition: opacity .2s ease;
  }
  .trust-item:hover { opacity: 1; }
  .trust-item.mono {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ───────── section header ───────── */
  .section { padding: 110px 0; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 60px;
  }
  .section-head.center {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
  }
  .section-head .lede-wrap { display: flex; flex-direction: column; }
  @media (max-width: 800px) {
    .section-head { grid-template-columns: 1fr; gap: 18px; }
    .section-head .section-lede { max-width: none; }
  }

  /* ───────── features (bento) ───────── */
  .features {
    border-top: 1px solid var(--border);
  }
  .bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
  }
  .tile {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .2s ease, transform .2s ease;
  }
  .tile:hover { border-color: var(--border-hi); }
  .tile .tile-kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .tile .tile-kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .tile h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 10px;
  }
  .tile p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.55;
    max-width: 38ch;
  }
  .tile-visual { margin-top: auto; padding-top: 22px; }

  .tile-inventory { grid-column: span 3; }
  .tile-portfolio { grid-column: span 3; }
  .tile-pipeline  { grid-column: span 6; }
  .tile-cost      { grid-column: span 2; }
  .tile-ebay      { grid-column: span 2; }
  .tile-grading   { grid-column: span 2; }

  @media (max-width: 1000px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .tile-inventory, .tile-portfolio, .tile-pipeline,
    .tile-cost, .tile-ebay, .tile-grading { grid-column: span 2; }
  }
  @media (max-width: 640px) {
    .bento { grid-template-columns: 1fr; }
    .tile-inventory, .tile-portfolio, .tile-pipeline,
    .tile-cost, .tile-ebay, .tile-grading { grid-column: span 1; }
  }

  /* ───── inventory tile mock ───── */
  .mock-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
  }
  .mock-row:first-child { border-top: 0; }
  .mock-row .card-name { color: var(--text); }
  .mock-row .card-meta { font-family: var(--mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.02em; }
  .mock-row .pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--gold-line);
    color: var(--gold);
    background: var(--gold-bg);
  }
  .mock-row .pill.green { color: var(--green); border-color: rgba(107,174,107,0.32); background: rgba(107,174,107,0.10); }
  .mock-row .pill.blue  { color: var(--blue);  border-color: rgba(122,168,201,0.32); background: rgba(122,168,201,0.10); }
  .mock-row .pill.orange{ color: var(--orange);border-color: rgba(217,119,64,0.32);  background: rgba(217,119,64,0.10); }
  .mock-row .pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .mock-row .value { font-family: var(--serif); font-size: 18px; color: var(--text); }

  /* ───── portfolio tile chart ───── */
  .chart-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
  }
  .chart-num {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  .chart-delta {
    margin-top: 6px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--green);
  }
  .chart-svg { width: 100%; height: 80px; }

  /* ───── pipeline tile ───── */
  .pipeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .stage {
    position: relative;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px 16px;
    display: flex; flex-direction: column; gap: 6px;
    min-height: 110px;
  }
  .stage::after {
    content: "";
    position: absolute;
    right: -8px; top: 50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--border-hi);
    z-index: 2;
  }
  .stage:last-child::after { display: none; }
  .stage-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
  }
  .stage-count {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .stage-meta {
    margin-top: 2px;
    font-size: 12px;
    color: var(--text-3);
  }
  .stage.active {
    border-color: var(--gold-line);
    background: linear-gradient(180deg, var(--gold-bg-2), var(--surface-3));
  }
  .stage.active .stage-label { color: var(--gold); }
  .stage.active::before {
    content: ""; position: absolute; top: 0; left: 16px; right: 16px; height: 2px;
    background: var(--gold);
    border-radius: 0 0 2px 2px;
  }
  @media (max-width: 720px) {
    .pipeline { grid-template-columns: repeat(2, 1fr); }
    .stage::after { display: none; }
  }

  /* ───── small tiles ───── */
  .small-stat {
    font-family: var(--serif);
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-top: 14px;
  }
  .small-stat em { font-style: italic; color: var(--gold); font-weight: 500; }
  .small-bar {
    margin-top: 16px;
    display: grid; grid-template-columns: 1fr; gap: 6px;
  }
  .bar-row {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; color: var(--text-3);
  }
  .bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.04); border-radius: 2px; overflow: hidden; }
  .bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }

  /* ───── ebay sync visual ───── */
  .sync-pair {
    margin-top: 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .sync-node {
    flex: 1;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
  }
  .sync-node .label { color: var(--text-3); margin-bottom: 4px; }
  .sync-node .sync-val { font-family: var(--serif); font-size: 22px; color: var(--text); letter-spacing: -0.01em; }
  .sync-link {
    color: var(--gold);
    font-family: var(--mono);
    font-size: 18px;
  }

  /* ───────── workflow / how it works ───────── */
  .workflow { background: var(--bg-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .step {
    padding: 50px 36px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
  }
  .step:last-child { border-right: 0; }
  .step-num {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    color: var(--gold);
  }
  .step-title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--text);
  }
  .step-title em { font-style: italic; color: var(--gold); font-weight: 500; }
  .step p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
  .step-art {
    margin-top: 12px;
    height: 120px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  @media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; }
    .step { border-right: 0; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: 0; }
  }

  /* step 1 art: phone snap */
  .snap-art {
    display: flex; align-items: center; gap: 14px; width: 100%;
  }
  .phone {
    width: 64px; height: 96px; border-radius: 10px;
    background: var(--surface-3);
    border: 1px solid var(--border-hi);
    position: relative; flex-shrink: 0;
  }
  .phone::before {
    content: ""; position: absolute; inset: 8px;
    background: linear-gradient(135deg, var(--gold-bg) 0%, transparent 60%);
    border-radius: 4px;
    border: 1px solid var(--gold-line);
  }
  .phone::after {
    content: ""; position: absolute; left: 50%; top: 3px;
    transform: translateX(-50%);
    width: 16px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.1);
  }
  .snap-meta {
    flex: 1;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-3);
    line-height: 1.7;
  }
  .snap-meta .ok { color: var(--green); }
  .snap-meta .gold { color: var(--gold); }

  /* step 2 art: rows */
  .rows-art {
    width: 100%;
    display: flex; flex-direction: column; gap: 6px;
  }
  .rows-art .row {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 10px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-2);
  }
  .rows-art .row .pill-mini {
    font-size: 9.5px; letter-spacing: 0.08em;
    padding: 2px 6px; border-radius: 3px;
    text-transform: uppercase;
  }
  .rows-art .row .pill-mini.g { color: var(--gold); background: var(--gold-bg); border: 1px solid var(--gold-line); }
  .rows-art .row .pill-mini.b { color: var(--blue); background: rgba(122,168,201,0.10); border: 1px solid rgba(122,168,201,0.32); }
  .rows-art .row .pill-mini.gn{ color: var(--green); background: rgba(107,174,107,0.10); border: 1px solid rgba(107,174,107,0.32); }
  .rows-art .row .spacer { flex: 1; }

  /* step 3 art: P&L */
  .pl-art {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
  }
  .pl-figure {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  .pl-figure em { font-style: italic; color: var(--green); font-weight: 500; }
  .pl-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    margin-top: 6px;
    line-height: 1.6;
  }
  .pl-bars {
    display: flex; align-items: flex-end; gap: 4px;
    height: 72px;
  }
  .pl-bars span {
    flex: 1;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    opacity: 0.45;
  }
  .pl-bars span:nth-child(7), .pl-bars span:nth-child(8) { opacity: 1; }

  /* ───────── pricing ───────── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .plan {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px 28px;
    display: flex; flex-direction: column;
  }
  .plan.featured {
    border-color: var(--gold-line);
    background:
      linear-gradient(180deg, var(--gold-bg-2) 0%, transparent 40%),
      var(--surface);
    box-shadow: 0 30px 80px -40px rgba(201,168,76,0.5);
  }
  .plan-badge {
    position: absolute;
    top: -11px; left: 28px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
  }
  .plan-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .plan-desc {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--text-2);
    min-height: 42px;
  }
  .plan-price {
    margin: 22px 0 6px;
    display: flex; align-items: baseline; gap: 6px;
  }
  .plan-price .num {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--text);
    line-height: 1;
  }
  .plan-price .per {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.04em;
  }
  .plan-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
  .plan-cta { width: 100%; justify-content: center; margin-bottom: 24px; }
  .plan-divider { border-top: 1px solid var(--border); padding-top: 22px; }
  .plan-feats { display: flex; flex-direction: column; gap: 12px; }
  .plan-feats li {
    list-style: none;
    display: flex; gap: 10px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.45;
  }
  .plan-feats li .chk {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .plan-feats li b { color: var(--text); font-weight: 600; }

  @media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
  }

  /* ───────── final CTA ───────── */
  .final-cta {
    position: relative;
    margin: 80px 0;
    padding: 80px 56px;
    border-radius: 18px;
    background:
      radial-gradient(ellipse at center, rgba(201,168,76,0.12), transparent 70%),
      linear-gradient(180deg, var(--surface) 0%, var(--surface-3) 100%);
    border: 1px solid var(--gold-line);
    text-align: center;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(201,168,76,0.06) 1px, transparent 1px) 0 0/56px 100%,
      linear-gradient(to bottom, rgba(201,168,76,0.06) 1px, transparent 1px) 0 0/100% 56px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 70%);
    pointer-events: none;
  }
  .final-cta .section-title { position: relative; z-index: 1; }
  .final-cta p {
    position: relative; z-index: 1;
    margin: 18px auto 30px;
    color: var(--text-2);
    font-size: 17px;
    max-width: 52ch;
    text-wrap: pretty;
  }
  .final-cta .hero-cta { position: relative; z-index: 1; margin-top: 0; }

  /* ───────── footer ───────── */
  .footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 36px;
    background: var(--bg-deep);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .footer-brand .brand { font-size: 28px; }
  .footer-brand p {
    margin-top: 14px;
    color: var(--text-3);
    font-size: 13.5px;
    max-width: 32ch;
    line-height: 1.6;
  }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: var(--text-2); font-size: 14px; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom .copy {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-3);
    text-transform: uppercase;
  }
  .footer-bottom .socials { display: flex; gap: 12px; }
  .footer-bottom .socials a { color: var(--text-3); }
  .footer-bottom .socials a:hover { color: var(--gold); }

  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
  }

  /* tiny utilities */
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  /* ───── carousel ───── */
  .carousel-wrap { position: relative; }
  .carousel-slides { position: relative; min-height: 620px; }
  .c-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.6s ease;
    pointer-events: none;
  }
  .c-slide.active { opacity: 1; pointer-events: auto; }
  .carousel-controls {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 18px 0 4px;
  }
  .carousel-dots { display: flex; gap: 8px; align-items: center; }
  .c-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--text-4); border: none; padding: 0; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .c-dot.active { background: var(--gold); transform: scale(1.4); }
  .carousel-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .carousel-arrows {
    position: absolute; inset: 0;
    display: flex; justify-content: space-between; align-items: center;
    pointer-events: none; opacity: 0; transition: opacity 0.2s;
    padding: 0 10px;
  }
  .carousel-wrap:hover .carousel-arrows { opacity: 1; }
  .c-arrow {
    pointer-events: auto; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(11,10,9,0.7); border: 1px solid var(--border-hi);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-2); font-size: 14px;
    transition: background 0.15s, color 0.15s;
  }
  .c-arrow:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }

  /* ───── who it's for ───── */
  .whofor-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
  .whofor-chip { display:flex; flex-direction:column; gap:6px; padding:18px 16px; background:var(--surface); border:1px solid var(--border); border-radius:12px; transition:border-color .2s ease; }
  .whofor-chip:hover { border-color:var(--gold-line); }
  .whofor-chip b { font-family:var(--serif); font-size:18px; font-weight:500; color:var(--text); }
  .whofor-chip span { font-size:12.5px; color:var(--text-2); line-height:1.45; }
  @media (max-width:900px){ .whofor-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .whofor-grid{ grid-template-columns:1fr; } }

  /* ───── pillars ───── */
  .pillar-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; padding:44px 0; border-top:1px solid var(--border); }
  .pillar-grid.first { border-top:0; }
  .pillar-grid.flip .pillar-copy { order:2; }
  .pillar-title { font-family:var(--serif); font-size:30px; font-weight:500; letter-spacing:-0.015em; line-height:1.15; color:var(--text); margin:10px 0 8px; }
  .pillar-title em { font-style:italic; color:var(--gold); font-weight:500; }
  .pillar-lede { font-size:15px; color:var(--text-2); line-height:1.55; max-width:46ch; margin-bottom:18px; }
  .pillar-bullets { list-style:none; display:flex; flex-direction:column; gap:12px; }
  .pillar-bullets li { display:flex; gap:12px; font-size:14.5px; color:var(--text-2); line-height:1.5; }
  .pillar-bullets li .chk { color:var(--gold); flex-shrink:0; }
  .pillar-visual { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:24px; }
  @media (max-width:800px){ .pillar-grid{ grid-template-columns:1fr; gap:24px; } .pillar-grid.flip .pillar-copy{ order:0; } }

  /* ───── shop edition tier note ───── */
  .tier-note { margin-top:32px; text-align:center; font-size:14px; color:var(--text-2); }
  .tier-note a { color:var(--gold); }

  /* ───── shop edition mini carousel ───── */
  .shop-carousel { margin-top:40px; }
  .sc-frame { position:relative; background:var(--bg); border:1px solid var(--border-hi); border-radius:14px; padding:16px; }
  .sc-track { position:relative; min-height:300px; }
  .sc-slide { position:absolute; inset:0; opacity:0; transition:opacity .5s ease; pointer-events:none; }
  .sc-slide.active { opacity:1; pointer-events:auto; }
  .sc-head { display:flex; align-items:center; justify-content:space-between; padding:2px 4px 12px; border-bottom:1px solid var(--border); margin-bottom:12px; }
  .sc-kicker { font-family:var(--mono); font-size:10.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:8px; }
  .sc-kicker .dot { width:5px; height:5px; border-radius:50%; background:var(--gold); }
  .sc-tag { font-family:var(--mono); font-size:9.5px; letter-spacing:0.08em; color:var(--text-3); }
  .sc-th { font-family:var(--mono); font-size:9.5px; letter-spacing:0.12em; color:var(--text-3); }
  .sc-controls { display:flex; align-items:center; justify-content:center; gap:12px; padding:16px 0 2px; }
  .sc-dots { display:flex; gap:7px; }
  .sc-dot { width:6px; height:6px; border-radius:50%; background:var(--text-4); border:none; padding:0; cursor:pointer; transition:background .2s, transform .2s; }
  .sc-dot.active { background:var(--gold); transform:scale(1.4); }
  .sc-label { font-family:var(--mono); font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
  .sc-arrows { position:absolute; left:0; right:0; top:16px; height:300px; display:flex; justify-content:space-between; align-items:center; pointer-events:none; padding:0 6px; opacity:0; transition:opacity .2s; }
  .shop-carousel:hover .sc-arrows { opacity:1; }
  .sc-arrow { pointer-events:auto; cursor:pointer; width:30px; height:30px; border-radius:50%; background:rgba(11,10,9,0.78); border:1px solid var(--border-hi); display:flex; align-items:center; justify-content:center; color:var(--text-2); font-size:13px; }
  .sc-arrow:hover { background:var(--gold); color:#1a1208; border-color:var(--gold); }
  @media (max-width:600px){ .sc-track,.sc-arrows{ min-height:360px; height:360px; } }
