/* ─────────────────────────────────────────────────────────────────────────
   Martin — main.css
   Extracted from approved HTML prototypes. Do not modify the design system
   variables or component patterns without checking with Ben Webster.
   ───────────────────────────────────────────────────────────────────────── */

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

:root {
  --black:       #191917;
  --white:       #ffffff;
  --off-white:   #f4f4f2;
  --mid-grey:    #e8e8e5;
  --text-secondary: #5a5a55;
  --text-tertiary:  #9a9a94;
  --border:      #deded8;
  --radius:      6px;
  --font-display: 'Roboto', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}

.nav-inner {
  max-width: 1196px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 28px;
}

.nav-logo svg {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.nav-active { color: var(--black); }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  border-radius: var(--radius) !important;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: #333 !important; }

/* ── HAMBURGER ───────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px;
  margin-right: -4px;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--black);
  border-radius: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--off-white);
  z-index: 9999;
  overflow-y: auto;
  padding: 32px 24px 48px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul li a {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 20px 0;
  transition: color 0.15s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.nav-active { color: var(--black); }

.mobile-menu ul li:last-child {
  border-bottom: none;
  padding-top: 24px;
}

.mobile-menu ul li:last-child a.nav-cta {
  display: inline-block;
  color: var(--white) !important;
  background: var(--black);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
}

/* ── HERO (homepage) ─────────────────────────────────────────────── */
.hero {
  background: var(--black);
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px;
  max-width: 1196px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888884;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #c8c8c2;
  margin-bottom: 36px;
  max-width: 860px;
}

.hero-headline .punch {
  color: var(--white);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: #aaaaaa;
  max-width: 500px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: #888884;
  margin-top: 14px;
  letter-spacing: 0.03em;
}

.hero-bottom {
  border-top: 1px solid #2a2a28;
}

.hero-bottom-inner {
  max-width: 1196px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777772;
}

.hero-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #bbbbba;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: calc(60px + 60px) 0 80px;
  border-bottom: 1px solid #222;
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888884;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #888884;
  max-width: 580px;
}

.page-hero p.page-hero-label {
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  max-width: none;
}

/* ── TRUST BAR ────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.trust-bar-inner {
  max-width: 1196px;
  margin: 0 auto;
  padding: 13px 48px;
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }

/* ── SECTION SHARED ──────────────────────────────────────────────── */
section { padding: 96px 48px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 14px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: #aaaaaa;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 13px 26px;
  border: 1px solid #2e2e2c;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover { border-color: #555; color: var(--white); }

/* Dark button — for use on light section backgrounds */
.btn-dark {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-dark:hover { background: #333; }

/* ── TABLES (shared) ──────────────────────────────────────────────── */
.handles-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

.handles-table thead tr { background: var(--black); }

.handles-table thead th {
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #aaaaaa;
  text-align: left;
}

.handles-table tbody tr { border-bottom: 1px solid var(--border); background: #f9f9f7; }
.handles-table tbody tr:last-child { border-bottom: none; }
.handles-table tbody tr:hover { background: #f2f2ef; }

.handles-table td {
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  vertical-align: top;
}

.handles-table td:first-child {
  color: var(--black);
  font-weight: 400;
  border-right: 1px solid var(--border);
}

.handles-table td:last-child { color: var(--text-secondary); font-weight: 300; }

/* ── WHY MARTIN ──────────────────────────────────────────────────── */
#why { background: var(--white); border-bottom: 1px solid var(--border); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.why-left p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────── */
#how { background: var(--off-white); border-bottom: 1px solid var(--border); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: #f9f9f7;
  transition: background 0.2s;
}

.step:hover { background: #f2f2ef; }
.step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--border);
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────── */
#testimonials { background: var(--black); border-bottom: 1px solid #222; }
#testimonials .section-label { color: #666660; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: #222;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial { background: #111110; padding: 52px 44px; }

.testimonial-quote {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: #e0e0dd;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #333330;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #444;
}

.testimonial-author strong {
  display: block;
  color: #aaaaaa;
  margin-bottom: 3px;
  font-weight: 500;
}

/* ── FIT SCORE ────────────────────────────────────────────────────── */
#fit { background: var(--off-white); border-bottom: 1px solid var(--border); }

.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  margin-top: 56px;
  align-items: start;
}

.fit-intro .section-body { max-width: 100%; }

/* Wizard */
.wizard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.wizard-progress { height: 2px; background: var(--border); }

.wizard-progress-fill {
  height: 100%;
  background: var(--black);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  width: 20%;
}

.wizard-header {
  padding: 20px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-step-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.wizard-body { padding: 24px 28px 32px; }

.wizard-question {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.wizard-options { display: flex; flex-direction: column; gap: 8px; }

.wizard-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--white);
  user-select: none;
}

.wizard-option:hover { border-color: #aaa; background: var(--off-white); }

.wizard-option.selected { border-color: var(--black); background: var(--black); }
.wizard-option.selected .option-text { color: var(--white); }

.option-marker {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.wizard-option.selected .option-marker {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
}

.option-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--black);
}

.wizard-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  resize: vertical;
  min-height: 110px;
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
}

.wizard-textarea:focus { border-color: var(--black); }
.wizard-textarea::placeholder { color: var(--text-tertiary); }

.wizard-footer {
  padding: 0 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-next {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  margin-left: auto;
}

.wizard-next:hover { background: #333; }
.wizard-next:disabled { background: var(--border); color: #aaa; cursor: not-allowed; }

.wizard-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.wizard-back:hover { color: var(--black); }

/* Results */
.wizard-result { padding: 36px 28px; display: none; }
.wizard-result.active { display: block; }

.result-tier {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.result-headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 14px;
}

.result-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.result-cta {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}

.result-cta:hover { background: #333; }

/* ── COMPARISON ───────────────────────────────────────────────────── */
#comparison { background: var(--white); border-bottom: 1px solid var(--border); }

.comparison-table-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Remove top margin when comparison-table is inside a wrapper */
.comparison-table-wrap .comparison-table { margin-top: 0; }

.comparison-table thead tr { background: var(--black); }

.comparison-table thead th {
  padding: 15px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #aaaaaa;
}

.comparison-table thead th:first-child { color: #555; }

.comparison-table tbody tr { border-bottom: 1px solid var(--border); background: #f9f9f7; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: #f2f2ef; }

.comparison-table td {
  padding: 15px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  vertical-align: top;
}

.comparison-table td:first-child {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 20%;
}

.comparison-table td:nth-child(2) {
  color: var(--black);
  font-weight: 400;
  border-right: 1px solid var(--border);
}

.comparison-table td:last-child { color: var(--text-tertiary); }

/* ── MARKETS ──────────────────────────────────────────────────────── */
#markets { background: var(--off-white); border-bottom: 1px solid var(--border); }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.market-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  background: #f9f9f7;
  transition: background 0.2s;
}

.market-card:hover { background: #f2f2ef; }
.market-card:last-child { border-right: none; }

/* For 8-card grid: every 4th card loses right border, bottom row needs bottom-border reset */
.markets-grid .market-card:nth-child(4) { border-right: none; }
.markets-grid .market-card:nth-child(n+5) { border-top: 1px solid var(--border); }
.markets-grid .market-card:nth-child(8) { border-right: none; }

.market-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.market-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.market-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── ABOUT / SINGLE PERSON ────────────────────────────────────────── */
#team { background: var(--white); border-bottom: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.about-name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.about-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.about-bio {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.15s;
  margin-top: 12px;
}

.about-contact:hover { border-color: var(--black); }

.about-right {
  padding: 40px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-right h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-right ul li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.about-right ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-weight: 300;
}

/* ── FINAL CTA ────────────────────────────────────────────────────── */
#final-cta {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
}

#final-cta .section-label { color: #555551; display: flex; justify-content: center; }

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 20px;
}

.final-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: #888884;
  max-width: 440px;
  margin: 0 auto 44px;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.final-contact {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #666660;
}

.final-contact a { color: #888884; text-decoration: none; transition: color 0.15s; }
.final-contact a:hover { color: var(--white); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer {
  background: #111110;
  border-top: 1px solid #1e1e1c;
}

.footer-inner {
  max-width: 1196px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo svg { height: 20px; width: auto; margin-bottom: 18px; display: block; }

.footer-brand p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #888884;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777772;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #999993;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid #1e1e1c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #555551;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.6s ease 0.1s both; }
.hero-headline { animation: fadeUp 0.7s ease 0.2s both; }
.hero-sub      { animation: fadeUp 0.7s ease 0.35s both; }
.hero-actions  { animation: fadeUp 0.7s ease 0.45s both; }
.hero-note     { animation: fadeUp 0.6s ease 0.55s both; }

/* ─────────────────────────────────────────────────────────────────────────
   GET ON BOARD PAGE SPECIFIC
   ───────────────────────────────────────────────────────────────────────── */
.get-on-board {
  background: var(--off-white);
  padding: 80px 48px 100px;
}

.get-on-board-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.gob-sidebar {
  position: sticky;
  top: 80px;
}

.gob-sidebar h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

.gob-sidebar p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.gob-sidebar-steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gob-step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.gob-step:last-child { border-bottom: none; }

.gob-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
  flex-shrink: 0;
  width: 20px;
  padding-top: 1px;
}

.gob-step-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

.gob-step-body {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Multi-step form */
.gob-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gob-progress {
  height: 2px;
  background: var(--border);
}

.gob-progress-fill {
  height: 100%;
  background: var(--black);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.gob-form-header {
  padding: 24px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gob-step-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.gob-step-section {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.gob-form-body {
  padding: 28px 32px 36px;
}

.gob-question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gob-hint {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.gob-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gob-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--white);
  user-select: none;
}

.gob-option:hover { border-color: #aaa; background: var(--off-white); }
.gob-option.selected { border-color: var(--black); background: var(--black); }
.gob-option.selected .gob-option-text { color: var(--white); }
.gob-option.selected .gob-option-marker { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.15); }

.gob-option-marker {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s;
}

.gob-option-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--black);
}

.gob-input-group {
  margin-bottom: 16px;
}

.gob-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.gob-input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.gob-input:focus { border-color: var(--black); }
.gob-input::placeholder { color: var(--text-tertiary); }

.gob-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gob-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
  resize: vertical;
  min-height: 100px;
  -webkit-appearance: none;
}

.gob-textarea:focus { border-color: var(--black); }
.gob-textarea::placeholder { color: var(--text-tertiary); }

.gob-form-footer {
  padding: 0 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gob-next {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  margin-left: auto;
}

.gob-next:hover { background: #333; }
.gob-next:disabled { background: var(--border); color: #aaa; cursor: not-allowed; }

.gob-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.gob-back:hover { color: var(--black); }

.gob-result {
  padding: 40px 32px;
  display: none;
}

.gob-result.active { display: block; }

.gob-result-tier {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.gob-result-headline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 14px;
}

.gob-result-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.gob-result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gob-result-cta {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  text-align: center;
}

.gob-result-cta:hover { background: #333; }

.gob-result-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  text-align: center;
}

.gob-result-secondary:hover { border-color: var(--black); color: var(--black); }

.gob-fillout-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-top: 16px;
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Promise strip */
.promise-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}

.promise-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.promise-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.promise-item:first-child { padding-left: 0; }
.promise-item:last-child { border-right: none; }

.promise-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--border);
  margin-bottom: 12px;
}

.promise-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.promise-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────
   LEGAL PAGES
   ───────────────────────────────────────────────────────────────────────── */

.legal-content {
  padding: 80px 0 120px;
  background: var(--off-white);
}

.legal-content h2,
.legal-content p,
.legal-content ul {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-top: 56px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 60px 0 80px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   THANK YOU PAGE SPECIFIC
   ───────────────────────────────────────────────────────────────────────── */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  background: var(--black);
}

.thankyou-inner {
  max-width: 640px;
  text-align: center;
}

.thankyou-mark {
  width: 48px;
  height: 48px;
  border: 1.5px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-mark svg {
  width: 20px;
  height: 20px;
}

.thankyou-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555551;
  margin-bottom: 20px;
}

.thankyou-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.thankyou-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #888884;
  margin-bottom: 16px;
}

.thankyou-timeline {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  border: 1px solid #2a2a28;
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2a28;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-dot {
  font-size: 11px;
  font-weight: 500;
  color: #666660;
  flex-shrink: 0;
  padding-top: 2px;
  width: 28px;
}

.timeline-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #ccccca;
  margin-bottom: 4px;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #888884;
}

.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.thankyou-fillout-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #666660;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────────
   INNER PAGE SPECIFIC (why-martin, the-process, markets, about)
   ───────────────────────────────────────────────────────────────────────── */

/* Two-column prose layout (why-martin problem section) */
.prose-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 48px;
  align-items: start;
}

.prose-col p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* 2x2 card grid */
.card-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #f9f9f7;
}

.feature-card:nth-child(2n) { border-right: none; }
.feature-card:nth-child(3),
.feature-card:nth-child(4) { border-bottom: none; }
.feature-card:hover { background: #f2f2ef; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Timeline (the-process) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid var(--border);
  background: #f9f9f7;
}

.timeline-row:last-child { border-bottom: none; }
.timeline-row:hover { background: #f2f2ef; }

.timeline-week {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.timeline-week-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.timeline-week-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.timeline-col {
  padding: 28px 28px;
  border-right: 1px solid var(--border);
}

.timeline-col:last-child { border-right: none; }

.timeline-col-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.timeline-col p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

.timeline-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 10px;
}

/* FAQ accordion */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: #f9f9f7;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  gap: 16px;
  transition: background 0.15s;
  user-select: none;
}

.faq-question:hover { background: #f2f2ef; }

.faq-question.open { background: var(--white); }

.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
  transition: transform 0.2s;
}

.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--white);
}

.faq-answer.open { display: block; }

/* Steadfast stat block (markets page) */
.steadfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.steadfast-prose p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.stat-block {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f9f9f7;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.stat-item:last-child { border-bottom: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* About contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  margin-top: 36px;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--black); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-tertiary); }

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Beliefs card (about page) */
.beliefs-card {
  margin-top: 32px;
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.beliefs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.beliefs-list li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.beliefs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

/* Native <details> FAQ accordion */
.faq details.faq-item {
  border-bottom: 1px solid var(--border);
  background: #f9f9f7;
}

.faq details.faq-item:last-child { border-bottom: none; }

.faq details.faq-item summary.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  gap: 16px;
  transition: background 0.15s;
  user-select: none;
}

.faq details.faq-item summary.faq-question::-webkit-details-marker { display: none; }
.faq details.faq-item summary.faq-question::marker { display: none; }

.faq details.faq-item summary.faq-question:hover { background: #f2f2ef; }

.faq details.faq-item[open] summary.faq-question { background: var(--white); }

.faq details.faq-item summary.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-tertiary);
  line-height: 1;
  transition: transform 0.2s;
}

.faq details.faq-item[open] summary.faq-question::after {
  transform: rotate(45deg);
}

.faq details.faq-item .faq-answer {
  display: block;
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--white);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  section { padding: 72px 24px; }
  .hero-inner { padding: 60px 24px 48px; }
  .hero-bottom-inner { padding: 20px 24px; gap: 28px; }
  .trust-bar-inner { padding: 12px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .fit-layout { grid-template-columns: 1fr; gap: 40px; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Inner page responsive */
  .prose-table-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid-2x2 { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .feature-card:nth-child(n) { border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .timeline-row { grid-template-columns: 1fr; }
  .timeline-week { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-col { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-col:last-child { border-bottom: none; }
  .steadfast-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Get on board responsive */
  .page-hero { padding: calc(60px + 60px) 0 60px; }
  .page-hero .section-inner { padding: 0 24px; }
  .get-on-board { padding: 56px 24px 72px; }
  .get-on-board-inner { grid-template-columns: 1fr; gap: 40px; }
  .gob-sidebar { position: static; }
  .promise-inner { grid-template-columns: 1fr; }
  .promise-item { padding: 24px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .promise-item:last-child { border-bottom: none; }
  .gob-input-row { grid-template-columns: 1fr; }
  /* Markets 8-card responsive */
  .markets-grid .market-card:nth-child(4) { border-right: 1px solid var(--border); }
  .markets-grid .market-card:nth-child(2n) { border-right: none; }
  .markets-grid .market-card:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 580px) {
  .steps { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .final-headline { font-size: 38px; }
  .footer-inner { grid-template-columns: 1fr; }
  .thankyou-main { padding: 100px 24px 60px; }
  /* Markets 8-card single-col */
  .markets-grid .market-card { border-right: none; border-top: 1px solid var(--border); }
  .markets-grid .market-card:first-child { border-top: none; }
}
