/* ==========================================================================
   Trooth, LLC — Marketplace Stylesheet
   Light theme · Verified green accent · Upwork-inspired professional design
   ========================================================================== */

:root {
  /* Brand */
  --green: #22c55e;            /* primary verified-green */
  --green-dark: #16a34a;
  --green-soft: #dcfce7;
  --navy: #0f1e3d;             /* heading + brand navy from logo */
  --navy-dark: #08122b;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f7f9fa;
  --bg-section: #fafbfc;
  --border: #e4e8eb;
  --border-strong: #d4dadf;

  --text: #0a0e1a;
  --text-soft: #2c3340;
  --text-muted: #5e6e7a;
  --text-dim: #8a96a3;

  /* Accents (used very sparingly) */
  --warning: #d97706;
  --error: #dc2626;
  --info: #2563eb;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(13, 18, 28, 0.04);
  --shadow: 0 2px 8px rgba(13, 18, 28, 0.06);
  --shadow-md: 0 4px 20px -4px rgba(13, 18, 28, 0.08);
  --shadow-lg: 0 16px 40px -12px rgba(13, 18, 28, 0.14);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-weight: 700; line-height: 1.2; letter-spacing: -0.018em; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-soft); line-height: 1.65; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green);
  margin-bottom: 1rem;
  text-transform: none;
}

.lead { font-size: 1.13rem; color: var(--text-muted); line-height: 1.6; max-width: 580px; }
.muted { color: var(--text-muted); }
.center { text-align: center; }

/* ============ Layout ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-narrow { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ Scroll-reveal (subtle) ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Navigation ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.3rem; color: var(--navy); letter-spacing: -0.018em; }
.brand-mark { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.brand-mark img { max-height: 28px; width: auto; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius);
  color: var(--text-soft); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-soft); }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  color: var(--text); width: 40px; height: 40px;
  border-radius: 10px; cursor: pointer; font-size: 1.2rem;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--bg-soft); }
@media (max-width: 850px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .nav-links.open a { width: 100%; }
  .nav-links.open .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: white; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green-soft); color: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--text); border-color: var(--text-muted); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============ Cards ============ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.card h4, .card h3 { margin-bottom: 8px; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.navy { background: #eff2f7; color: var(--navy); }
.card-icon.gold { background: #fef3c7; color: #b45309; }
.card-icon.dark { background: #f1f5f9; color: var(--text); }
.card-icon.green { background: var(--green); color: white; }

/* ============ Hero ============ */
.hero { padding: 80px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { color: var(--navy); margin-bottom: 18px; }
.hero h1 .accent { color: var(--green); }
.hero .lead { font-size: 1.18rem; margin-bottom: 28px; }
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3.2;
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat badge over hero img */
.hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
}
.hero-badge.top-left { top: 22px; left: 22px; }
.hero-badge.bot-right { bottom: 22px; right: 22px; }
.hero-badge-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; }
.hero-badge-icon svg { width: 18px; height: 18px; }
.hero-badge strong { display: block; font-weight: 600; color: var(--text); }
.hero-badge span { display: block; color: var(--text-muted); font-size: 0.78rem; }

/* ============ Trooth Score (now clean) ============ */
.score-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}
.score-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.score-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.score-tier {
  font-size: 0.7rem; padding: 4px 10px; border-radius: var(--radius-pill);
  background: #fef3c7; color: #b45309; font-weight: 700;
}
.gauge { position: relative; width: 100%; aspect-ratio: 2 / 1.1; margin: 8px auto; }
.gauge svg { width: 100%; height: 100%; }
.gauge-bg { fill: none; stroke: #e7eaef; stroke-width: 12; stroke-linecap: round; }
.gauge-fg { fill: none; stroke: var(--green); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 56; }
.gauge-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 4px; }
.gauge-value .num { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; color: var(--navy); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.gauge-value .of { font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.score-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.score-stat { text-align: center; padding: 10px 4px; border-radius: 8px; background: var(--bg-soft); }
.score-stat-num { font-size: 1rem; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; }
.score-stat-lbl { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

.verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-pill);
  color: var(--green-dark);
  font-size: 0.78rem; font-weight: 600;
}
.verified-badge svg { width: 12px; height: 12px; }

/* ============ Stats ============ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: left; padding: 28px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--border); }
.stat-num { font-size: clamp(1.9rem, 3.4vw, 2.4rem); font-weight: 700; color: var(--navy); display: block; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.stat-lbl { font-size: 0.92rem; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }

/* ============ Section header ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: inline-block; }
.section-head p { font-size: 1.08rem; }
.section-head h2 .accent { color: var(--green); }

/* ============ Comparison table ============ */
.compare-table { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1.6fr 1.4fr; gap: 1px; background: var(--border); }
.compare-row > div { background: white; padding: 18px 20px; font-size: 0.95rem; color: var(--text-soft); }
.compare-row.head > div { background: var(--bg-soft); font-weight: 600; color: var(--text); font-size: 0.82rem; }
.compare-row.head > div:last-child { background: var(--green); color: white; }
.compare-row > div:last-child { color: var(--green-dark); font-weight: 500; }
@media (max-width: 760px) { .compare-row { grid-template-columns: 1fr 1fr; } .compare-row > div:nth-child(3), .compare-row > div:nth-child(4) { display: none; } }

/* ============ Timeline ============ */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--border-strong); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ""; position: absolute; left: -29px; top: 6px; width: 14px; height: 14px; background: white; border: 3px solid var(--green); border-radius: 50%; }
.timeline-item h4 { color: var(--text); margin-bottom: 4px; }
.timeline-time { font-size: 0.78rem; color: var(--green); font-weight: 600; font-family: 'JetBrains Mono', monospace; }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 60px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-col h5 { color: var(--text); font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); font-size: 0.93rem; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-dim); }

/* ============ Marketplace profile cards ============ */
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .profile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.profile-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.profile-head { display: flex; gap: 14px; margin-bottom: 16px; }
.profile-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; position: relative; }
.profile-photo-wrap { position: relative; flex-shrink: 0; }
.profile-photo-wrap::after {
  content: ""; position: absolute; bottom: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--green) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 2px solid white;
  border-radius: 50%;
}
.profile-name { font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 0 0 2px; }
.profile-role { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.profile-score-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; background: var(--bg-soft); border-radius: var(--radius);
  margin-bottom: 14px;
}
.profile-score-row .label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.profile-score-num { font-size: 1.4rem; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.profile-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skill-chip { padding: 4px 10px; font-size: 0.74rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--text-soft); font-weight: 500; }
.profile-bio { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 14px; line-height: 1.55; }
.profile-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); padding-top: 14px; border-top: 1px solid var(--border); }
.profile-rate { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.elite-tag {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 6px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  border: 1px solid #1e3a8a;
  box-shadow: 0 4px 12px rgba(15,30,61,0.18);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.elite-tag img { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.elite-tag .badge-text { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.elite-tag .badge-text .top { font-size: 0.62rem; color: white; }
.elite-tag .badge-text .sub { font-size: 0.52rem; color: #4ade80; letter-spacing: 0.16em; font-weight: 700; }
.elite-tag::before {
  content: ""; position: absolute; left: -3px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 18px;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, var(--green) 30%, var(--green) 70%, transparent 70%);
  border-radius: 2px;
}

/* ============ Verify report ============ */
.report-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 0; overflow: hidden; box-shadow: var(--shadow-md); }
.report-head { padding: 22px 26px; background: var(--bg-soft); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.report-status { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--green); color: white; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.82rem; }
.report-body { padding: 22px 26px; }
.check-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.check-row:last-child { border-bottom: none; }
.check-icon { width: 32px; height: 32px; border-radius: 9px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.92rem; }
.check-label { font-weight: 500; color: var(--text); font-size: 0.95rem; }
.check-meta { font-size: 0.8rem; color: var(--text-muted); }
.probability { font-family: 'JetBrains Mono', monospace; font-size: 0.88rem; color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.bar { width: 84px; height: 5px; background: var(--bg-soft); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--green); border-radius: 3px; }

/* ============ Pricing ============ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.price-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 3px #dcfce7; }
.price-card .tier { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.price-card .price { font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -0.025em; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.price-card .price small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.price-card .desc { font-size: 0.92rem; color: var(--text-muted); margin: 12px 0 24px; line-height: 1.55; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card li { padding: 7px 0 7px 26px; position: relative; font-size: 0.92rem; color: var(--text-soft); }
.price-card li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 14px; height: 14px;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
  border-radius: 50%;
}
.popular-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--green); color: white;
  font-size: 0.7rem; font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* ============ Forms ============ */
.waitlist {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist .eyebrow { color: var(--green-soft); }
.waitlist h2 { color: white; }
.waitlist h2 .accent { color: var(--green); }
.waitlist p { color: rgba(255, 255, 255, 0.8); }
.waitlist-form { display: flex; gap: 10px; max-width: 520px; margin: 24px auto 0; }
.waitlist-form input { flex: 1; padding: 14px 20px; border-radius: var(--radius-pill); border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.08); color: white; font-size: 0.98rem; font-family: inherit; outline: none; transition: border-color 0.2s, background 0.2s; }
.waitlist-form input:focus { border-color: var(--green); background: rgba(255, 255, 255, 0.12); }
.waitlist-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
@media (max-width: 600px) { .waitlist-form { flex-direction: column; } .waitlist-form .btn { width: 100%; } }
.form-success { display: none; margin-top: 18px; padding: 12px 18px; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: var(--radius); color: #86efac; font-weight: 500; font-size: 0.92rem; }
.form-success.show { display: inline-block; }

/* ============ Trust Fusion formula ============ */
.formula-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; font-family: 'JetBrains Mono', monospace; text-align: center; font-size: clamp(1rem, 1.5vw, 1.25rem); color: var(--text); line-height: 1.8; }
.formula-box .var { display: inline-block; padding: 4px 10px; margin: 0 2px; border-radius: 6px; font-weight: 700; }
.formula-box .v-b { background: #f3f0ff; color: #6d28d9; }
.formula-box .v-i { background: #eff6ff; color: #1d4ed8; }
.formula-box .v-l { background: var(--green-soft); color: var(--green-dark); }
.formula-box .v-h { background: #fef3c7; color: #b45309; }

.fusion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 800px) { .fusion-grid { grid-template-columns: repeat(2, 1fr); } }
.fusion-card { padding: 22px 20px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--border); text-align: left; }
.fusion-weight { font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.025em; color: var(--navy); font-variant-numeric: tabular-nums; }
.fusion-name { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 600; }
.fusion-desc { font-size: 0.88rem; color: var(--text-soft); margin: 0; line-height: 1.55; }

/* ============ Job board ============ */
.job-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; transition: border-color 0.2s, box-shadow 0.2s; }
.job-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.job-card + .job-card { margin-top: 12px; }
.job-card h4 { color: var(--text); margin-bottom: 6px; }
.job-tag { display: inline-block; padding: 3px 10px; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 600; margin-bottom: 8px; }
.job-meta { display: flex; gap: 16px; font-size: 0.86rem; color: var(--text-muted); flex-wrap: wrap; }
.req-score { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--green-soft); border: 1px solid #bbf7d0; border-radius: var(--radius-pill); color: var(--green-dark); font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
@media (max-width: 600px) { .job-card { grid-template-columns: 1fr; } }

/* ============ Logo strip ============ */
.logo-strip { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; opacity: 0.55; padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-strip span { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }

/* ============ Misc ============ */
.divider { height: 1px; background: var(--border); margin: 60px 0; border: none; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* Code block (verify API page) */
pre.code-block { background: #0f172a; color: #e2e8f0; border-radius: var(--radius-lg); padding: 24px; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; line-height: 1.7; overflow-x: auto; margin: 0; }
pre.code-block .key { color: #7dd3fc; }
pre.code-block .str { color: #86efac; }
pre.code-block .num { color: #fbbf24; }
pre.code-block .com { color: #64748b; font-style: italic; }
