/* ============================================================
   VendorSprout — Core Stylesheet
   Brand: charcoal #1A1A1A · gold #E8B547 · cream #F5E8D0
   Type: Anton (display) + Inter (body) + JetBrains Mono (code)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  background: #F5E8D0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } .custom-cursor { display: none; } }

/* ============= CUSTOM CURSOR ============= */
.custom-cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: #E8B547; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease,
              border 0.25s ease,
              margin 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform; box-sizing: border-box;
}
.custom-cursor.large {
  width: 40px; height: 40px;
  background: transparent;
  border: 2px solid #E8B547;
  margin-top: -14px; margin-left: -14px;
}

/* ============= SCROLL PROGRESS BAR ============= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: #E8B547; z-index: 200;
  transition: width 0.05s linear;
}

/* ============= SIDE SECTION INDICATOR ============= */
.side-nav {
  position: fixed; right: 28px; top: 50%;
  transform: translateY(-50%); z-index: 90;
  display: flex; flex-direction: column; gap: 16px;
}
.side-nav .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(26, 26, 26, 0.25);
  cursor: pointer; transition: all 0.3s ease;
}
.side-nav .dot:hover { background: rgba(26, 26, 26, 0.6); }
.side-nav .dot.active {
  background: #1A1A1A; width: 8px; height: 32px; border-radius: 4px;
}
.side-nav.dark .dot { background: rgba(245, 232, 208, 0.3); }
.side-nav.dark .dot.active { background: #E8B547; }
@media (max-width: 900px) { .side-nav { display: none; } }

/* ============= TYPOGRAPHY ============= */
.display {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400; line-height: 0.92;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.eyebrow {
  display: inline-block;
  background: #1A1A1A; color: #E8B547;
  padding: 9px 16px;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 11px; font-weight: 600;
  font-family: 'Inter', sans-serif; line-height: 1;
}
.section-charcoal .eyebrow,
.footer .eyebrow,
.eyebrow.light { background: #F5E8D0; color: #1A1A1A; }
.hero .eyebrow { align-self: flex-start; margin-bottom: 0; animation: none; opacity: 1; }

/* ============= LETTER-STAGGER REVEAL ============= */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word-inner {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-words.visible .word-inner { transform: translateY(0); }
.reveal-words .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
.reveal-words .word:nth-child(2) .word-inner { transition-delay: 0.15s; }
.reveal-words .word:nth-child(3) .word-inner { transition-delay: 0.25s; }
.reveal-words .word:nth-child(4) .word-inner { transition-delay: 0.35s; }
.reveal-words .word:nth-child(5) .word-inner { transition-delay: 0.45s; }
.reveal-words .word:nth-child(6) .word-inner { transition-delay: 0.55s; }
.reveal-words .word:nth-child(7) .word-inner { transition-delay: 0.65s; }
.reveal-words .word:nth-child(8) .word-inner { transition-delay: 0.75s; }

/* ============= FADE-IN REVEAL ============= */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

.eyebrow-breathe { animation: none; }

/* ============= HIGHLIGHT (gold marker) ============= */
.highlight {
  background: linear-gradient(180deg, transparent 58%, rgba(232, 181, 71, 0.55) 58%, rgba(232, 181, 71, 0.55) 92%, transparent 92%);
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.subhead-bold { font-weight: 600; color: #1A1A1A; }

/* ============= STANDOUT (H3-scale callout) ============= */
.standout {
  font-family: 'Anton', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #1A1A1A;
  margin: 56px auto 0;
  max-width: 780px;
  text-align: center;
}
.standout .gold-mark,
.gold-mark {
  background: linear-gradient(180deg, transparent 56%, rgba(232, 181, 71, 0.65) 56%, rgba(232, 181, 71, 0.65) 94%, transparent 94%);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #1A1A1A;
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden; isolation: isolate;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.btn-gold { background: #E8B547; color: #1A1A1A; }
.btn-charcoal { background: #1A1A1A; color: #F5E8D0; }
.btn-outline { background: transparent; color: #1A1A1A; border: 2px solid #1A1A1A; }
.btn .arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(6px); }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before { transform: translateY(0); }
.btn-outline::before { background: #1A1A1A; }
.btn-outline:hover { color: #F5E8D0; }

/* ============= NAV ============= */
.nav-bar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #F5E8D0;
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(245, 232, 208, 0.08);
  transition: padding 0.3s ease;
}
.nav-bar.shrunk { padding: 12px 60px; }
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.logo img { height: 64px; width: auto; display: block; transition: height 0.3s ease; }
.nav-bar.shrunk .logo img { height: 52px; }
.nav-items {
  display: flex; gap: 36px;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; font-weight: 600;
}
.nav-items a {
  color: #C4B58A; text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-items a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0; height: 1px;
  background: #E8B547; transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-items a:hover { color: #E8B547; }
.nav-items a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============= SECTIONS ============= */
.section { padding: 100px 60px; position: relative; }
.section-cream { background: #F5E8D0; }
.section-warm-cream { background: #FAF3E1; }
.section-charcoal { background: #1A1A1A; color: #F5E8D0; }
.section-gold { background: #E8B547; }

/* ============= HERO ============= */
.hero { position: relative; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }
.hero h1 {
  font-size: clamp(34px, 8.5vw, 132px);
  margin: 28px 0 40px;
  color: #1A1A1A;
  will-change: transform;
  line-height: 0.95;
}
.hero h1 .gold-accent { color: #C4933F; }
.hero h1 em {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 em.gold-accent { color: #C4933F; }
.tagline-banner-headline em {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}
.hero .subhead {
  max-width: 640px;
  font-size: 19px; line-height: 1.55;
  color: #4D3F22; margin-bottom: 40px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side {
  position: absolute;
  top: 40px; right: 60px;
  font-family: 'Anton', sans-serif;
  font-size: 14px; letter-spacing: 0.3em;
  color: #C4933F; opacity: 0.6;
  writing-mode: vertical-rl;
}

/* ============= IMAGE SECTION ============= */
/* ---------------------------------------------------------------------------
 * Tagline banner — universal end-of-page reframe (sits above big-cta on every page)
 * ------------------------------------------------------------------------- */
.tagline-banner {
  background: #1A1A1A;
  color: #F5E8D0;
  padding: 88px 24px;
  margin: 0;
  text-align: center;
  position: relative;
}
.tagline-banner-inner {
  max-width: 960px;
  margin: 0 auto;
}
.tagline-banner-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-transform: none;
  color: #F5E8D0;
  font-weight: 400;
}
.tagline-banner-headline em {
  color: #E8B547;
  font-style: italic;
  font-weight: 400;
}
.tagline-banner-proof {
  font-size: clamp(16px, 1.7vw, 22px);
  color: rgba(245, 232, 208, 0.7);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.5;
}
.tagline-banner-proof .tagline-quote {
  color: #E8B547;
  font-weight: 600;
}
@media (max-width: 600px) {
  .tagline-banner { padding: 56px 20px; }
  .tagline-banner-headline { margin-bottom: 20px; }
}

.img-section {
  background: #1A1A1A; position: relative; overflow: hidden;
  width: 100%; max-width: 1600px;
  margin: 0 auto;
}
.img-inner {
  position: relative;
  width: 100%;
  will-change: transform;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.img-section.visible .img-inner { clip-path: inset(0 0 0 0); }
.img-inner img {
  width: 100%; height: auto;
  display: block;
}
.img-caption {
  position: absolute; bottom: 24px; left: 24px; z-index: 5;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 12px 16px;
  color: #E8B547;
  border-left: 3px solid #E8B547;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
  max-width: 320px;
}
.img-section.visible .img-caption { opacity: 1; transform: translateY(0); }
.img-caption .scenenum {
  font-size: 9px; letter-spacing: 0.3em;
  color: #C4933F; font-weight: 600;
  text-transform: uppercase; margin-bottom: 4px;
}
.img-caption .label {
  font-family: 'Anton', sans-serif;
  font-size: 18px; letter-spacing: 0.04em;
  line-height: 1.1; color: #E8B547;
  text-transform: uppercase;
}

/* ============= WAIT SECTION ============= */
.wait-section {
  padding: 130px 60px;
  text-align: center;
  background: #F5E8D0;
}
.wait-section h2 {
  font-size: clamp(34px, 7vw, 96px);
  margin: 24px 0 28px;
  color: #1A1A1A;
}
.wait-section .body {
  max-width: 760px; margin: 0 auto;
  font-size: 17px; line-height: 1.65;
  color: #4D3F22;
}

/* ============= ENGAGEMENT MODELS ============= */
.em-section h2 {
  font-size: clamp(38px, 8vw, 104px);
  margin: 22px 0 44px;
  color: #1A1A1A;
}
.em-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.em-card {
  background: #F5E8D0; padding: 40px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.em-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: #C4933F;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.em-card:hover { transform: translateY(-8px); }
.em-card:hover::after { transform: scaleX(1); }
.em-card:hover .em-num { color: #1A1A1A; transform: scale(1.05); }
.em-card .em-num {
  font-family: 'Anton', sans-serif;
  font-size: 64px; color: #C4933F;
  line-height: 1; margin-bottom: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
  transform-origin: left; display: inline-block;
}
.em-card .em-name {
  font-family: 'Anton', sans-serif;
  font-size: 26px; letter-spacing: 0.02em;
  text-transform: uppercase; color: #1A1A1A;
  margin-bottom: 16px;
}
.em-card .em-body { font-size: 14px; line-height: 1.6; color: #4D3F22; }
.em-card.reveal:nth-child(1) { transition-delay: 0s; }
.em-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.em-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.em-card.reveal:nth-child(4) { transition-delay: 0.36s; }

/* ============= PROOF ============= */
.proof-section h2 {
  font-size: clamp(40px, 9vw, 120px);
  margin: 24px 0 44px;
  color: #F5E8D0;
}
.proof-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.proof-tile {
  background: #F5E8D0; padding: 44px 36px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.proof-tile:hover { transform: translateY(-8px); }
.proof-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px; background: #C4933F;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.proof-tile:hover::after { transform: scaleX(1); }
.proof-tile .stat {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 88px);
  color: #C4933F; line-height: 1;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.proof-tile .brand {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: #1A1A1A; margin-bottom: 12px;
}
.proof-tile .desc { font-size: 14px; line-height: 1.6; color: #4D3F22; }
.proof-tile.reveal:nth-child(1) { transition-delay: 0s; }
.proof-tile.reveal:nth-child(2) { transition-delay: 0.15s; }
.proof-tile.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============= MARQUEE ============= */
.marquee-section {
  background: #F5E8D0; padding: 50px 0;
  overflow: hidden; position: relative;
  border-top: 2px solid #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
}
.marquee-track {
  display: flex; gap: 80px;
  animation: marquee 35s linear infinite;
  white-space: nowrap; will-change: transform;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: 56px; text-transform: uppercase;
  color: #1A1A1A; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 80px;
}
.marquee-item::after {
  content: '✺'; color: #C4933F; font-size: 28px;
}

/* ============= BIG CTA ============= */
.bigcta {
  padding: 130px 60px;
  background: #E8B547; text-align: center;
  position: relative; overflow: hidden;
}
.bigcta .eyebrow { margin-bottom: 32px; }
.bigcta h2 {
  font-size: clamp(42px, 9vw, 120px);
  margin: 0 0 32px;
  color: #1A1A1A; line-height: 0.92;
}
.deco-circle {
  position: absolute;
  width: 240px; height: 240px;
  border: 2px dashed #1A1A1A;
  border-radius: 50%; opacity: 0.3;
  animation: spin 30s linear infinite;
}
.deco-circle.left { top: -80px; left: -80px; }
.deco-circle.right { bottom: -80px; right: -80px; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============= FOOTER ============= */
.footer {
  background: #1A1A1A; color: #F5E8D0;
  padding: 80px 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.footer-logo { display: inline-block; margin-bottom: 22px; }
.footer-logo img { height: 80px; width: auto; display: block; }
.footer p.tagline {
  font-size: 13px; line-height: 1.65;
  color: #C4B58A; margin-bottom: 18px;
}
.footer .phone {
  font-size: 14px; color: #E8B547;
  font-weight: 600; text-decoration: none;
}
.footer-col .eyebrow { margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 12px; line-height: 1.95; color: #C4B58A; }
.footer-col li a {
  color: inherit; text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col li a:hover { color: #E8B547; }
.footer-bottom {
  border-top: 1px solid rgba(245, 232, 208, 0.08);
  padding-top: 22px;
  font-size: 11px; color: #C4B58A;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a {
  color: #C4B58A;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 181, 138, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom a:hover {
  color: #E8B547;
  border-color: #E8B547;
}

/* ============================================================
   CONTENT-BLOCK COMPONENTS
   ============================================================ */

/* Two-column */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.twocol-text h3 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 4vw, 44px); text-transform: uppercase; margin: 16px 0 18px; line-height: 1.05; }
.twocol-text p { font-size: 16px; color: #4D3F22; line-height: 1.65; margin-bottom: 14px; }
.twocol-img img { width: 100%; height: auto; display: block; }

/* Pull quote */
.pullquote {
  border-left: 4px solid #E8B547;
  padding: 24px 0 24px 32px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.15; color: #1A1A1A;
  max-width: 820px; margin: 32px 0;
}
.pullquote-attr {
  display: block; margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: #C4933F;
}

/* Numbered timeline */
.timeline { display: flex; flex-direction: column; }
.timeline-step {
  display: flex; gap: 24px;
  padding: 26px 0;
  border-bottom: 1px dashed rgba(26, 26, 26, 0.15);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #E8B547; color: #1A1A1A;
  font-family: 'Anton', sans-serif;
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-content h3 { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: #4D3F22; line-height: 1.6; margin-bottom: 6px; }
.timeline-when { font-size: 11px; color: #5A4A2E; font-style: italic; letter-spacing: 0.05em; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  font-size: 14px;
}
.compare th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: #5A4A2E;
  font-weight: 600; padding-bottom: 12px;
}
.compare th:not(:first-child),
.compare td:not(:first-child) { text-align: center; }
.compare td:first-child { font-weight: 500; color: #1A1A1A; }
.compare .yes { color: #1A6B3E; font-weight: 600; }
.compare .no { color: #B33F3F; }
.compare .partial { color: #C4933F; font-weight: 500; }
.compare tr.highlight { background: rgba(232, 181, 71, 0.12); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(26, 26, 26, 0.15); }
.faq-item summary {
  list-style: none; padding: 22px 0;
  cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  font-family: 'Anton', sans-serif;
  font-size: 22px; text-transform: uppercase;
  color: #1A1A1A;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 28px;
  color: #C4933F;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 22px;
  font-size: 15px; line-height: 1.65;
  color: #4D3F22; max-width: 720px;
}

/* Single big stat */
.bigstat { text-align: center; padding: 32px 0; }
.bigstat-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  color: #C4933F; line-height: 0.95;
  letter-spacing: -0.02em;
}
.bigstat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  color: #4D3F22; max-width: 640px;
  margin: 12px auto 0;
}

/* Logo wall */
.logowall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px; align-items: center;
}
.logowall-item {
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  color: #5A4A2E;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: rgba(26, 26, 26, 0.04);
  border: 1px dashed rgba(26, 26, 26, 0.2);
}
.logowall img { max-height: 60px; max-width: 100%; opacity: 0.6; transition: opacity 0.2s; }
.logowall img:hover { opacity: 1; }

/* Article body */
.article-body { max-width: 720px; }
.article-body h2 { font-family: 'Anton', sans-serif; font-size: 36px; text-transform: uppercase; margin: 32px 0 16px; line-height: 1.05; }
.article-body h3 { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; margin: 24px 0 10px; }
.article-body p { font-size: 16px; line-height: 1.7; color: #2A2A2A; margin-bottom: 16px; }
.article-body a { color: #C4933F; text-decoration: underline; text-decoration-color: rgba(196, 147, 63, 0.4); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: #C4933F; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { font-size: 16px; line-height: 1.7; color: #2A2A2A; margin-bottom: 6px; }
.article-body strong { font-weight: 600; color: #1A1A1A; }
.article-body em { font-style: italic; }
.article-body sup { font-size: 0.7em; vertical-align: super; line-height: 0; }
.article-body sup a { color: #C4933F; font-weight: 600; text-decoration: none; }

/* Sidebar TOC */
.sidebar-toc { background: rgba(26, 26, 26, 0.04); padding: 22px 24px; max-width: 280px; }
.sidebar-toc-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #5A4A2E; margin-bottom: 14px; font-weight: 600; }
.sidebar-toc ul { list-style: none; }
.sidebar-toc li { padding: 6px 0; border-left: 2px solid transparent; padding-left: 12px; }
.sidebar-toc li.active { border-left-color: #C4933F; }
.sidebar-toc li a { color: #2A2A2A; text-decoration: none; font-size: 13px; line-height: 1.45; display: block; }
.sidebar-toc li.active a { color: #1A1A1A; font-weight: 500; }
.sidebar-toc li a:hover { color: #C4933F; }

/* Footnotes */
.footnotes-section {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  padding-top: 24px; margin-top: 32px;
  font-size: 13px; color: #4D3F22;
}
.footnotes-section ol { padding-left: 22px; }
.footnotes-section li { margin-bottom: 8px; line-height: 1.55; }
.footnotes-section a { color: #C4933F; text-decoration: underline; text-decoration-color: rgba(196, 147, 63, 0.4); }

/* Inline callout */
.callout {
  background: rgba(232, 181, 71, 0.12);
  border-left: 4px solid #E8B547;
  padding: 22px 26px;
  margin: 28px 0;
  max-width: 720px;
}
.callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  color: #C4933F; margin-bottom: 6px;
}
.callout p { font-size: 15px; line-height: 1.6; color: #1A1A1A; margin: 0; }

/* Forms */
.form-row { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: #1A1A1A; margin-bottom: 8px;
}
.form-label .required { color: #C4933F; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  background: #FAF3E1;
  border: 1.5px solid rgba(26, 26, 26, 0.18);
  color: #1A1A1A;
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: #1A1A1A; background: #FFF;
}
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; }

/* Form submit + status (used by the mailer-wired form component) */
.vs-hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.vs-form-submit { position: relative; }
.vs-form.is-submitting .vs-form-submit { opacity: 0.65; cursor: progress; pointer-events: none; }
.vs-form.is-submitting .vs-form-submit-label::after {
  content: ' ·  sending...';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em; letter-spacing: 0.12em;
}
.vs-form-status {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  color: #B0322A;
  min-height: 1.2em;
}
.vs-form-success {
  margin-top: 24px;
  padding: 28px 28px 30px;
  background: #1A1A1A;
  color: #F5E8D0;
  border-left: 3px solid #E8B547;
}
.vs-form-success-mark {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #E8B547;
  margin-bottom: 14px;
}
.vs-form-success p { font-size: 15px; line-height: 1.55; color: #F5E8D0; margin: 0; }
.vs-form-success p strong { color: #E8B547; font-weight: 600; }
.vs-recaptcha-row { margin: 6px 0 18px; }

/* Assessment widget */
.assess { background: #1A1A1A; color: #F5E8D0; padding: 36px 32px; max-width: 640px; }
.assess-step { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #C4933F; margin-bottom: 14px; font-weight: 600; }
.assess-q { font-family: 'Anton', sans-serif; font-size: 28px; text-transform: uppercase; line-height: 1.15; margin-bottom: 24px; }
.assess-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.assess-option {
  padding: 14px 18px; background: rgba(245, 232, 208, 0.06);
  border: 1.5px solid rgba(245, 232, 208, 0.15);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: flex; align-items: center; gap: 12px;
}
.assess-option:hover { background: rgba(245, 232, 208, 0.1); border-color: #E8B547; }
.assess-option.selected { background: rgba(232, 181, 71, 0.2); border-color: #E8B547; }
.assess-option .check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #C4B58A; flex-shrink: 0;
}
.assess-option.selected .check { background: #E8B547; border-color: #E8B547; }
.assess-option span:not(.check) { font-size: 14px; }
.assess-progress { display: flex; gap: 4px; margin-bottom: 24px; }
.assess-progress div { flex: 1; height: 3px; background: rgba(245, 232, 208, 0.2); transition: background 0.3s ease; }
.assess-progress div.done { background: #E8B547; }
.assess-step-panel { animation: assess-fade 0.3s ease; }
.assess-result-panel {
  animation: assess-fade 0.5s ease;
  padding-top: 8px;
}
.assess-result-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: #E8B547;
  margin-bottom: 14px;
  text-transform: none;
}
.assess-result-detail {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 232, 208, 0.85);
  margin-bottom: 8px;
}
.assess-result-detail p { margin: 0 0 12px; }
.assess-result-detail strong { color: #E8B547; }
@keyframes assess-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Calculator */
.calc {
  background: #FAF3E1; padding: 32px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}
.calc-inputs h3 { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; margin-bottom: 18px; }
.calc-result { background: #1A1A1A; color: #F5E8D0; padding: 28px; }
.calc-result-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #C4933F; margin-bottom: 10px; font-weight: 600; }
.calc-result-value { font-family: 'Anton', sans-serif; font-size: 64px; line-height: 1; color: #E8B547; letter-spacing: -0.02em; margin-bottom: 12px; }
.calc-result-detail { font-size: 13px; color: #C4B58A; line-height: 1.5; }

/* Breadcrumbs */
.crumbs { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; padding: 16px 0; }
.crumbs a { color: #5A4A2E; text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: #C4933F; }
.crumbs .sep { color: #C4933F; margin: 0 8px; }
.crumbs .current { color: #1A1A1A; font-weight: 500; }

/* Prev/Next nav */
.pnav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.pnav-link {
  padding: 22px 24px; background: #FAF3E1;
  border: 1px solid rgba(26, 26, 26, 0.1);
  text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.pnav-link:hover { background: rgba(232, 181, 71, 0.15); border-color: #C4933F; }
.pnav-direction { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #C4933F; font-weight: 600; margin-bottom: 8px; }
.pnav-title { font-family: 'Anton', sans-serif; font-size: 18px; text-transform: uppercase; line-height: 1.15; color: #1A1A1A; }
.pnav-link.next { text-align: right; }

/* Author byline */
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
}
.byline-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #1A1A1A; color: #E8B547;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  overflow: hidden;
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline-meta .name { font-size: 14px; font-weight: 500; color: #1A1A1A; }
.byline-meta .title { font-size: 12px; color: #5A4A2E; margin-top: 2px; }
.byline-date { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #5A4A2E; }

/* Related articles */
.related-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 32px; }
.related-card {
  background: #FAF3E1;
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.related-card:hover { border-color: #C4933F; transform: translateY(-3px); }
.related-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #C4933F; font-weight: 600; margin-bottom: 8px; }
.related-card h3 { font-family: 'Anton', sans-serif; font-size: 18px; text-transform: uppercase; line-height: 1.15; color: #1A1A1A; margin-bottom: 8px; }
.related-card p { font-size: 12px; line-height: 1.5; color: #5A4A2E; }

/* Sub-navigation */
.subnav {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  margin: 24px 0;
}
.subnav a {
  padding: 12px 18px;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  color: #5A4A2E; text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.subnav a:hover { color: #1A1A1A; }
.subnav a.active { color: #1A1A1A; border-bottom-color: #C4933F; }

/* Filter chips + grid */
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip {
  padding: 6px 14px;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  background: transparent;
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  color: #5A4A2E; cursor: pointer;
  transition: all 0.2s; border-radius: 999px;
}
.chip:hover { border-color: #1A1A1A; color: #1A1A1A; }
.chip.active { background: #1A1A1A; color: #E8B547; border-color: #1A1A1A; }
.filter-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.filter-card {
  background: #1A1A1A; color: #F5E8D0;
  padding: 24px; aspect-ratio: 4 / 3;
  display: flex; flex-direction: column;
  justify-content: space-between;
  text-decoration: none; color: inherit;
  transition: transform 0.2s;
}
.filter-card:hover { transform: translateY(-3px); }
.filter-card .stat { font-family: 'Anton', sans-serif; font-size: 56px; color: #E8B547; line-height: 1; }
.filter-card .name { font-family: 'Anton', sans-serif; font-size: 18px; text-transform: uppercase; color: #F5E8D0; margin-bottom: 4px; }
.filter-card .meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: #C4933F; }

/* ============= MODEL DETAIL ============= */
.model-detail-section { padding-top: 80px; padding-bottom: 80px; }
.model-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.model-detail-rail { position: sticky; top: 120px; }
.model-detail-num {
  font-family: 'Anton', sans-serif;
  font-size: 132px;
  line-height: 0.9;
  color: #C4933F;
  margin-bottom: 8px;
}
.model-detail-name {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin: 0 0 16px;
  line-height: 1;
}
.model-detail-pitch {
  font-size: 17px;
  line-height: 1.5;
  color: #4D3F22;
  font-style: italic;
}
.model-detail-body { display: flex; flex-direction: column; gap: 32px; }
.model-detail-block {}
.model-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #5A4A2E;
  margin-bottom: 12px;
}
.model-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-detail-list li {
  padding-left: 22px;
  position: relative;
  font-size: 16px;
  line-height: 1.55;
  color: #4D3F22;
}
.model-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1.5px;
  background: #C4933F;
}
.model-detail-list.compact li { font-size: 14px; line-height: 1.5; }
.model-detail-prose { font-size: 16px; line-height: 1.65; color: #4D3F22; }
.model-detail-prose p { margin: 0 0 12px; }
.model-detail-prose p:last-child { margin-bottom: 0; }
.model-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px;
  background: rgba(232, 181, 71, 0.08);
  border-left: 2px solid #C4933F;
}
.model-detail-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.model-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1A1A1A;
  background: transparent;
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  border-radius: 999px;
  transition: all 0.2s;
}
.model-detail-chip:hover {
  border-color: #1A1A1A;
  background: #1A1A1A;
  color: #E8B547;
}
.model-detail-chip .arrow { font-size: 14px; }
.model-detail-cta { padding-top: 8px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 900px) {
  .nav-bar { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  .nav-items { display: none; }
  .section, .wait-section, .bigcta, .footer { padding-left: 20px; padding-right: 20px; padding-top: 60px; padding-bottom: 60px; }
  .em-grid, .proof-grid, .footer-grid, .twocol, .calc, .related-grid, .filter-grid, .pnav, .model-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .model-detail-rail { position: static; }
  .model-detail-num { font-size: 96px; }
  .model-detail-name { font-size: 36px; }
  .model-detail-split { grid-template-columns: 1fr; gap: 20px; }
  .hero-side { display: none; }
  .marquee-item { font-size: 32px; gap: 40px; }
  .marquee-track { gap: 40px; }
  body { cursor: auto; }
  .custom-cursor { display: none; }
  .logo img { height: 48px; }
  .nav-bar.shrunk .logo img { height: 42px; }
  .footer-logo img { height: 60px; }
  .hero .cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }
  .em-card { padding: 28px; }
  .em-card .em-num { font-size: 48px; }
  .em-card .em-name { font-size: 22px; }
  .proof-tile { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .section, .wait-section, .bigcta, .footer { padding-left: 18px; padding-right: 18px; padding-top: 48px; padding-bottom: 48px; }
  .nav-bar { padding: 12px 18px; }
  .marquee-item { font-size: 26px; }
  .logo img { height: 42px; }
  .nav-bar.shrunk .logo img { height: 38px; }
}
