/* ─────────────────────────────────────────────────────────────────────────────
   Trade73 public site.

   One stylesheet, no JavaScript, no web fonts. The page is the product's first
   impression and the thing crawlers read, so it renders from HTML and CSS
   alone — nothing here waits on a script, and there is no layout shift to
   measure because nothing arrives late.

   The palette is lifted from the application's landing page so the two do not
   read as different products.
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #06080b;
  --bg-lift: #0c1015;
  --bg-card: #0e1319;
  --line: #1b2530;
  --line-soft: #141c25;

  --silver: #e6ecf2;
  --silver-dim: #a6b4c2;
  --mint: #2ee6a6;
  --mint-bright: #4ff0bc;

  --text: #f1f5f8;
  --text-soft: #b3bfcb;
  --muted: #7d8b99;
  --faint: #56636f;

  --wrap: 1080px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--mint); text-decoration: none; }
a:hover { color: var(--mint-bright); }

:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }

/* Keyboard users get to skip the nav; it is off-screen until focused. */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--bg-card); color: var(--text);
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 8, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.navInner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.brand { display: flex; align-items: center; }
/* The wordmark PNG carries a black matte rather than a clean alpha edge, so on
   a dark background it shows as a visible rectangle. `screen` drops the black
   and keeps the glyphs — the same treatment the application's own Brand
   component uses, which is what stops the two surfaces looking like different
   logos. */
.brand img { display: block; width: 132px; height: auto; mix-blend-mode: screen; }

.navLinks { display: flex; align-items: center; gap: 28px; }
.navLinks a { color: var(--muted); font-size: 14px; }
.navLinks a:hover { color: var(--text); }
.navCta {
  color: var(--mint) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 14px;
}
.navCta:hover { border-color: var(--mint); background: rgba(46, 230, 166, 0.08); color: var(--mint-bright) !important; }

/* Below 720px the in-page anchors are noise next to the one action that
   matters, so only the CTA survives. */
@media (max-width: 720px) {
  .navLinks a:not(.navCta) { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 104px 0 88px;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(46, 230, 166, 0.10), transparent 70%),
    var(--bg);
  text-align: center;
}
.pill {
  display: inline-block; margin: 0 0 22px;
  font-size: 12px; letter-spacing: .10em; text-transform: uppercase;
  color: var(--muted); background: var(--bg-lift);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.hero h1 {
  margin: 0 auto 22px;
  max-width: 16ch;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.accent {
  display: block;
  background: linear-gradient(100deg, var(--silver) 0%, var(--silver-dim) 30%, var(--mint) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { margin: 0 auto; max-width: 62ch; color: var(--text-soft); font-size: 1.06rem; }

.ctaRow { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 30px 0 0; }
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 600; border: 1px solid transparent;
}
.btnPrimary { background: var(--mint); color: #04150f !important; }
.btnPrimary:hover { background: var(--mint-bright); }
.btnGhost { border-color: var(--line); color: var(--text-soft) !important; }
.btnGhost:hover { border-color: var(--mint); color: var(--text) !important; }

/* Not fine print. It is the first claim the page makes about risk and it sits
   with the call to action deliberately. */
.risk { margin: 26px auto 0; max-width: 60ch; color: var(--faint); font-size: 13px; }

/* ── Sections ────────────────────────────────────────────────────────────── */
section { padding: 76px 0; }
.sectionTitle {
  margin: 0 0 38px; text-align: center;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -0.01em;
}
h2, h3 { letter-spacing: -0.01em; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.grid2 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid4 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.pillars { padding: 44px 0; border-block: 1px solid var(--line-soft); background: var(--bg-lift); }
.pillar h2 { margin: 0 0 6px; font-size: 1rem; color: var(--mint); }
.pillar p { color: var(--muted); font-size: 14px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.card p { color: var(--text-soft); font-size: 15px; }

.custody { background: var(--bg-lift); border-block: 1px solid var(--line-soft); }
.custody h2, .honest h2, .close h2 {
  margin: 0 0 20px; font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}
.custody p, .honest p, .close p { color: var(--text-soft); }
.note { color: var(--muted); font-size: 14px; }
.lede2 { color: var(--text) !important; font-size: 1.05rem; }

.stepList { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.stepList li {
  counter-increment: step;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.stepList li::before {
  content: counter(step);
  display: block; margin-bottom: 12px;
  font-size: 13px; font-weight: 700; color: var(--mint);
}
.stepList h3 { margin: 0 0 8px; font-size: 1rem; }
.stepList p { color: var(--muted); font-size: 14px; }

.close { text-align: center; background: var(--bg-lift); border-top: 1px solid var(--line-soft); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { padding: 44px 0 56px; border-top: 1px solid var(--line-soft); }
.disclaimer { color: var(--faint); font-size: 13px; max-width: 80ch; }
.footLinks { display: flex; flex-wrap: wrap; gap: 22px; margin: 22px 0 14px; }
.footLinks a { color: var(--muted); font-size: 14px; }
.footLinks a:hover { color: var(--text); }
.copyright { color: var(--faint); font-size: 13px; }

@media (max-width: 600px) {
  .hero { padding: 72px 0 64px; }
  section { padding: 56px 0; }
}

/* ── Contact form ────────────────────────────────────────────────────────── */
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.field input, .field textarea {
  width: 100%;
  background: #070a0e;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { border-color: var(--mint); outline: none; }
.hint { margin: 7px 0 0; color: var(--faint); font-size: 13px; }

/* Empty until something is said, so it never occupies space it has no use for. */
.formStatus { margin: 0 0 16px; font-size: 14px; color: var(--text-soft); }
.formStatus:empty { display: none; }
.formStatus.good { color: var(--mint); }
.formStatus.bad  { color: #f6465d; }

button.btn { cursor: pointer; font-family: inherit; }
button.btn[disabled] { opacity: .55; cursor: progress; }
