:root {
  --bg: #0a0f0d;
  --bg-alt: #111916;
  --fg: #e8ece9;
  --fg-muted: #8a9b8f;
  --accent: #4ade80;
  --accent-dim: rgba(74, 222, 128, 0.12);
  --border: rgba(138, 155, 143, 0.15);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1140px;
  --section-pad: clamp(80px, 10vw, 140px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 180px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 60px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 780px;
}
.hero-stat {
  background: var(--bg-alt);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Thesis */
.thesis {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}
.thesis-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 60px;
}
.thesis-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 8px;
}
.thesis-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 32px;
  grid-column: 2;
}
.thesis-body {
  grid-column: 2;
}
.thesis-body p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  max-width: 620px;
}

/* Approach */
.approach {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.approach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.approach-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.approach-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 56px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.approach-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.3s ease;
}
.approach-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
}
.approach-card-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.approach-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.approach-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Verticals */
.verticals {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}
.verticals-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.verticals-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.verticals-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 600px;
}
.verticals-list {
  display: flex;
  flex-direction: column;
}
.vertical-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.vertical-item:last-child {
  border-bottom: 1px solid var(--border);
}
.vertical-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.vertical-desc {
  font-size: 15px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  text-align: center;
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--accent);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── Shared button ── */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0f0d;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

/* ── Nav: split layout with CTA link ── */
.nav-inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 8px 18px;
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ── Hero CTA row ── */
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── Closing CTA ── */
.closing-cta {
  margin-top: 36px;
}

/* ── Sell page ── */
.sell-page {
  padding: 140px 0 var(--section-pad);
  min-height: 100vh;
}
.sell-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.sell-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sell-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.sell-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Error banner */
.sell-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 32px;
}

/* Form sections */
.sell-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.sell-section:last-of-type {
  border-bottom: none;
}
.sell-section-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.sell-row {
  display: flex;
  gap: 20px;
}
.sell-row--2 > .sell-field {
  flex: 1;
}
.sell-field {
  margin-bottom: 20px;
}
.sell-field:last-child {
  margin-bottom: 0;
}
.sell-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.sell-req {
  color: var(--accent);
}
.sell-opt {
  color: var(--fg-muted);
  font-weight: 400;
  font-size: 13px;
}
.sell-input,
.sell-select,
.sell-textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.sell-input:focus,
.sell-select:focus,
.sell-textarea:focus {
  border-color: rgba(74, 222, 128, 0.5);
}
.sell-input::placeholder,
.sell-textarea::placeholder {
  color: var(--fg-muted);
}
.sell-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a9b8f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.sell-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Submit row */
.sell-submit-row {
  margin-top: 8px;
  padding-top: 32px;
}
.sell-submit {
  display: inline-block;
  padding: 15px 32px;
  background: var(--accent);
  color: #0a0f0d;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  width: 100%;
}
.sell-submit:hover {
  background: #22c55e;
  transform: translateY(-1px);
}
.sell-privacy {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* Success state */
.sell-success {
  text-align: center;
  padding: 60px 0;
}
.sell-success-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1;
}
.sell-success-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 16px;
}
.sell-success-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}
.sell-back-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.sell-back-link:hover {
  text-decoration: underline;
}

/* ── Secondary button ── */
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-secondary:hover {
  border-color: rgba(74, 222, 128, 0.5);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ── Outlined button (broker CTA) ── */
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ── Hero: move note below the CTA row ── */
.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 16px;
  display: block;
}

/* ── Verticals: grid tiles ── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.vertical-tile {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  transition: border-color 0.25s ease;
}
.vertical-tile:hover {
  border-color: rgba(74, 222, 128, 0.3);
}
.vertical-tile-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.vertical-tile-threshold {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.verticals-footer {
  margin-top: 8px;
}
.verticals-criteria-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: opacity 0.15s ease;
}
.verticals-criteria-link:hover {
  opacity: 0.75;
}

/* ── Approach: bullet list layout ── */
.approach-bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.approach-bullet {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.approach-bullet:last-child {
  border-bottom: 1px solid var(--border);
}
.approach-bullet-mark {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1.65;
  width: 20px;
}
.approach-bullet-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 700px;
}
.approach-bullet-body strong {
  color: var(--fg);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ── Who this is for ── */
.who-for {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}
.who-for-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.who-for-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.who-for-card--broker {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.who-for-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.who-for-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--fg);
}
.who-for-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Footer: updated layout ── */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-link:hover {
  color: var(--fg);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .thesis-inner { grid-template-columns: 1fr; gap: 12px; }
  .thesis-label { padding-top: 0; }
  .thesis-title { grid-column: 1; }
  .thesis-body { grid-column: 1; }
  .approach-grid { grid-template-columns: 1fr; gap: 16px; }
  .vertical-item { grid-template-columns: 1fr; gap: 4px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr; gap: 32px; }
  .who-for-card--broker { padding: 28px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-links { gap: 16px; }
  .sell-row { flex-direction: column; gap: 0; }
  .sell-page { padding: 110px 0 60px; }
}