/* ============================================================
   CABALLORIA GRAPHICS 2.0 — Section styles
   ============================================================ */

/* anchors land below the fixed nav (84px) with a little air */
html { scroll-behavior: smooth; }
section[id], [id][data-screen-label] { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: 84px;
  background: transparent;
  transition: background .4s ease, border-color .4s ease, height .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 15, 26, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-border);
  height: 68px;
}
.nav-logo { display: flex; align-items: baseline; gap: 8px; }
.nav-logo .logo-word {
  font-family: var(--f-display); font-size: 26px; font-weight: 500;
  letter-spacing: .04em; color: var(--c-white);
}
.nav-logo .logo-sub {
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--c-gold);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: var(--f-display);
  font-size: 17.5px; font-weight: 500; letter-spacing: .03em;
  color: var(--c-text-muted); transition: color .25s ease;
  padding: 8px 0; position: relative; background: none; border: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-link:hover { color: var(--c-gold-light); }
.nav-link .chev { font-size: 9px; color: var(--c-gold-dim); transition: transform .25s ease; }
.nav-drop:hover .chev { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 28px; }
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-btn {
  background: none; border: none; padding: 6px 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em;
  color: var(--c-text-faint); transition: color .2s ease;
}
.lang-btn:hover { color: var(--c-text-muted); }
.lang-btn.active { color: var(--c-gold); }
.lang-sep { color: var(--c-text-faint); font-size: 11px; }
.nav-cta {
  padding: 12px 26px; font-size: 12px;
  background: transparent; color: var(--c-gold); border: 1px solid var(--c-gold-dim);
}
.nav-cta:hover { background: var(--c-gold); color: #0B0B12; border-color: var(--c-gold); }

/* Dropdown panels */
.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  padding: 28px; width: 560px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 32px 60px rgba(0, 0, 0, .55);
}
.nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.drop-item { display: flex; align-items: center; gap: 14px; padding: 9px 12px; transition: background .2s ease; }
.drop-item:hover { background: var(--c-surface-3); }
.drop-thumb {
  width: 62px; height: 44px; flex: none; overflow: hidden;
  background: var(--c-surface-3); border: 1px solid rgba(var(--c-gold-rgb), .3);
  display: flex; align-items: center; justify-content: center;
}
.drop-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: saturate(.85); }
.drop-thumb.ph { font-family: var(--f-display); font-style: italic; font-size: 21px; color: var(--c-gold-dim); }
.drop-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.drop-item b { font-size: 14px; font-weight: 500; color: var(--c-champagne); }
.drop-item span:not(.drop-thumb) { font-size: 12.5px; color: var(--c-text-muted); }
.drop-foot {
  grid-column: 1 / -1; margin-top: 14px; padding: 14px 12px 2px;
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--c-text-muted);
}

.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--c-champagne); transition: transform .3s, opacity .3s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(7, 7, 14, .97);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 0 10vw; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--f-display); font-size: 34px; color: var(--c-champagne); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  padding: 140px var(--pad-x) 80px;
}
#horse-stage { position: absolute; z-index: 1; pointer-events: none; transition: opacity .5s ease; }
#horse-stage canvas { width: 100% !important; height: 100% !important; }
.hero-inner { position: relative; z-index: 2; max-width: var(--content-max); margin: 0 auto; width: 100%; }

.hero-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-gold-dim); margin-bottom: 34px;
}

.hero h1 {
  font-size: calc(clamp(52px, 6.6vw, 100px) * var(--hero-scale));
  line-height: 1.02; letter-spacing: -0.015em; font-weight: 300;
}
.hero h1 .h1-name { display: block; font-weight: 400; letter-spacing: .14em; color: var(--c-text-muted); margin-bottom: .9em; font-family: var(--f-body); font-size: calc(13px * var(--hero-scale)); text-transform: uppercase; }
.hero h1 .h1-strong { display: block; font-weight: 600; color: var(--c-white); }
.hero h1 .h1-light { display: block; font-weight: 300; font-style: italic; color: var(--c-gold); margin-top: .04em; }

.hero-sub {
  margin-top: 32px; max-width: 540px;
  font-size: 17px; line-height: 1.85; color: var(--c-text-muted);
}
.hero-ctas { display: flex; gap: 18px; margin-top: 40px; flex-wrap: wrap; }

/* rotating reviews in hero */
.trust-bar {
  position: relative; min-height: 118px; max-width: 560px;
  margin-top: 58px; padding-top: 28px; border-top: 1px solid rgba(var(--c-gold-rgb), .35);
}
.hr-slide {
  position: absolute; inset: 28px 0 0 0;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.hr-slide.active { opacity: 1; pointer-events: auto; }
.hr-stars { color: var(--c-gold); letter-spacing: .25em; font-size: 12px; }
.hr-quote {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 19px; line-height: 1.5; color: var(--c-champagne);
}
.hr-who { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--c-text-faint); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .3em; color: var(--c-text-faint);
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--c-gold-dim), transparent);
  animation: hintdrop 2.4s ease-in-out infinite;
}
@keyframes hintdrop { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* --- Hero variant A: split (spec) --- */
body[data-hero="split"] #horse-stage { right: -4%; top: 0; width: 60%; height: 100%; }
body[data-hero="split"] .hero-content { max-width: 620px; }

/* --- Hero variant B: monument (centered, horse behind) --- */
body[data-hero="monument"] #horse-stage { inset: 0; width: 100%; height: 100%; opacity: .42; }
body[data-hero="monument"] .hero-content { max-width: 880px; margin: 0 auto; text-align: center; }
body[data-hero="monument"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-hero="monument"] .hero-ctas { justify-content: center; }
body[data-hero="monument"] .trust-bar { margin-left: auto; margin-right: auto; border-top: none; }
body[data-hero="monument"] .hr-slide { align-items: center; text-align: center; }

/* --- Hero variant C: editorial (bottom-anchored, oversized) --- */
body[data-hero="editorial"] { }
body[data-hero="editorial"] .hero { align-items: flex-end; padding-bottom: 110px; }
body[data-hero="editorial"] #horse-stage { right: 0; top: 4%; width: 52%; height: 72%; }
body[data-hero="editorial"] .hero h1 { font-size: calc(clamp(60px, 8.6vw, 132px) * var(--hero-scale)); }
body[data-hero="editorial"] .hero-content { max-width: none; }
body[data-hero="editorial"] .hero-sub-row { display: flex; gap: 60px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
body[data-hero="editorial"] .hero-kicker { position: absolute; top: -42vh; left: 0; }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  overflow: hidden; padding: 18px 0; background: var(--c-surface-1);
}
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 36s linear infinite; }
body[data-motion="off"] .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-gold-dim); white-space: nowrap; }
.marquee-track span i { color: var(--c-gold); font-style: normal; margin-left: 48px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ BACKGROUND HORSES (parallax watermarks) ============ */
.has-horse { overflow: hidden; }
.has-horse .section-inner { z-index: 1; }
.bg-horse {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(48vw, 700px); aspect-ratio: 88 / 92;
  color: var(--c-gold); opacity: .09;
}
.bg-horse.flip { transform: scaleX(-1); }
.bg-horse use, .bg-horse polygon { fill: currentColor; }

/* seamlessly blended photo (no visible edges — mask fades out before every border) */
.bg-photo-blend {
  position: absolute; z-index: 0; pointer-events: none;
  right: -8%; top: -4%;
  width: min(52vw, 760px); height: auto;
  opacity: .34;
  filter: saturate(.72) brightness(.5) contrast(1.1);
  -webkit-mask-image: radial-gradient(closest-side, #000 18%, rgba(0,0,0,.55) 50%, transparent 88%);
  mask-image: radial-gradient(closest-side, #000 18%, rgba(0,0,0,.55) 50%, transparent 88%);
}
@media (max-width: 900px) {
  .bg-photo-blend { opacity: .18; width: 80vw; }
}
/* quiz: horse sits in the left negative space — same scale & presence as markets horse */
.bg-photo-blend.quiz-horse {
  right: auto; left: -4%; top: auto; bottom: -8%;
  width: min(98vw, 1480px);
  opacity: .85;
  filter: saturate(.92) brightness(.9) contrast(1.06);
  -webkit-mask-image: radial-gradient(ellipse 54% 60% at 30% 52%, #000 58%, rgba(0,0,0,.6) 78%, transparent 99%);
  mask-image: radial-gradient(ellipse 54% 60% at 30% 52%, #000 58%, rgba(0,0,0,.6) 78%, transparent 99%);
}
@media (max-width: 900px) {
  .bg-photo-blend.quiz-horse { opacity: .35; width: 130vw; }
}

/* markets: galloping horse centered behind the glass cards — big & clearly visible */
.bg-photo-blend.markets-horse {
  right: auto; left: 50%; margin-left: 0; transform: translateX(-50%);
  top: auto; bottom: -6%;
  width: min(98vw, 1480px);
  opacity: .85;
  filter: saturate(.92) brightness(.9) contrast(1.06);
  -webkit-mask-image: radial-gradient(ellipse 54% 60% at 50% 48%, #000 58%, rgba(0,0,0,.6) 78%, transparent 99%);
  mask-image: radial-gradient(ellipse 54% 60% at 50% 48%, #000 58%, rgba(0,0,0,.6) 78%, transparent 99%);
}
@media (max-width: 900px) {
  .bg-photo-blend.markets-horse { opacity: .35; width: 130vw; }
}

/* ============ SECTION HEADERS ============ */
.sec-head { display: flex; flex-direction: column; gap: 22px; margin-bottom: clamp(48px, 7vh, 80px); max-width: 760px; }
.sec-head .sec-sub { color: var(--c-text-muted); font-size: 16.5px; max-width: 600px; }
.sec-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* ============ PROFESSIONS ============ */
.prof-section { overflow: hidden; }
.prof-viewport { overflow: hidden; margin: 0 calc(-1 * var(--pad-x)); padding: 0 var(--pad-x); }
.prof-track { display: flex; gap: 40px; width: max-content; will-change: transform; }
.prof-card {
  width: 400px; flex: none;
  background: var(--c-surface-2); border: 1px solid rgba(var(--c-gold-rgb), .25);
  position: relative; overflow: hidden;
  min-height: 560px; display: flex; flex-direction: column;
  transition: border-color .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
}
.prof-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.prof-scrim {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(7, 7, 14, .97) 26%, rgba(7, 7, 14, .66) 55%, rgba(7, 7, 14, .12) 88%);
}
.prof-content {
  position: relative; z-index: 2; margin-top: auto;
  padding: 36px 32px; pointer-events: none;
}
.prof-content .link-gold { pointer-events: auto; }
.prof-card::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg, transparent 40%, rgba(var(--c-gold-rgb), .12) 50%, transparent 60%);
  transform: translateX(-110%); pointer-events: none;
}
.prof-card:hover::after { transition: transform .8s ease; transform: translateX(110%); }
.prof-card:hover { border-color: var(--c-gold-dim); box-shadow: inset 0 0 60px rgba(var(--c-gold-rgb), .07), 0 24px 48px rgba(0,0,0,.4); }
.prof-card h3 { font-size: 30px; font-weight: 500; margin-bottom: 12px; }
.prof-pain { font-family: var(--f-display); font-style: italic; font-size: 18px; color: var(--c-text-muted); line-height: 1.5; margin-bottom: 24px; min-height: 2.9em; display: flex; align-items: flex-end; }
.prof-feats { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.prof-feats li { font-size: 14.5px; color: var(--c-text-muted); display: flex; gap: 12px; align-items: baseline; }
.prof-feats li::before { content: "—"; color: var(--c-gold); flex: none; }
.prof-feats { margin-bottom: 26px; min-height: 9.4em; }
.prof-progress { display: flex; align-items: center; gap: 20px; margin-top: 44px; }
.prof-progress .bar { flex: 1; height: 1px; background: var(--c-border); position: relative; }
.prof-progress .bar i { position: absolute; left: 0; top: -0.5px; height: 2px; width: 0%; background: var(--c-gold); transition: width .1s linear; }
.prof-progress .count { font-family: var(--f-mono); font-size: 12px; color: var(--c-text-faint); }

body[data-prof="grid"] .prof-track {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: auto; transform: none !important; gap: 28px;
}
body[data-prof="grid"] .prof-card { width: auto; min-height: 480px; }
body[data-prof="grid"] .prof-progress { display: none; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.step { position: relative; padding-top: 90px; }
.step-num {
  position: absolute; top: 0; left: -8px;
  font-family: var(--f-display); font-size: 130px; font-weight: 300; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--c-gold); opacity: .6;
}
.step h3 { font-size: 27px; font-weight: 500; margin-bottom: 14px; position: relative; }
.step p { font-size: 15.5px; color: var(--c-text-muted); }

/* ============ PRICING ============ */
.bill-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--c-border);
  padding: 4px; gap: 4px; margin: 0 auto;
}
.bill-toggle button {
  background: none; border: none; padding: 10px 24px;
  font-family: var(--f-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-text-muted); transition: all .25s ease;
}
.bill-toggle button.active { background: var(--c-gold); color: #0B0B12; }
.bill-toggle .save { font-family: var(--f-mono); font-size: 11px; color: var(--c-gold); margin-left: 6px; text-transform: none; letter-spacing: .03em; }
.bill-toggle button.active .save { color: #0B0B12; }

.included-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 30px 0 54px; }
.included-row .chip {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--c-champagne); border: 1px solid rgba(var(--c-gold-rgb), .35); padding: 7px 14px;
  background: rgba(var(--c-gold-rgb), .05);
}

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--c-surface-2); border: 1px solid rgba(var(--c-gold-rgb), .25);
  padding: 38px 32px; display: flex; flex-direction: column; position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.price-card:hover {
  border-color: var(--c-gold-dim);
  transform: translateY(-4px) scale(1.04);
  z-index: 2;
  box-shadow: 0 28px 56px rgba(0, 0, 0, .5), 0 0 0 1px rgba(var(--c-gold-rgb), .15);
}
.price-card.popular { border-color: var(--c-gold); background: linear-gradient(180deg, rgba(var(--c-gold-rgb), .07), var(--c-surface-2) 38%); }
.pop-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--c-gold); color: #0B0B12; font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em; padding: 4px 14px; white-space: nowrap;
}
.price-card h3 { font-size: 25px; font-weight: 500; }
.price-line { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 6px; }
.price-line .amount { font-family: var(--f-display); font-size: 54px; font-weight: 400; color: var(--c-white); line-height: 1; }
.price-line .per { font-family: var(--f-mono); font-size: 12.5px; color: var(--c-text-faint); }
.price-note { font-family: var(--f-mono); font-size: 11.5px; color: var(--c-gold-dim); min-height: 18px; }
.price-feats { list-style: none; padding: 0; margin: 26px 0 34px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-feats li { font-size: 14px; color: var(--c-text-muted); display: flex; gap: 11px; align-items: baseline; }
.price-feats li::before { content: "✓"; color: var(--c-gold); font-size: 12px; flex: none; }
.price-feats li.no::before { content: "—"; color: var(--c-text-faint); }
.price-feats li.no { color: var(--c-text-faint); }
.price-card .btn { width: 100%; padding: 15px 8px; font-size: 11.5px; letter-spacing: .05em; white-space: nowrap; }

.addon-strip {
  margin-top: 26px; border: 1px dashed var(--c-gold-dim); padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.addon-strip .addon-name { font-family: var(--f-display); font-size: 23px; color: var(--c-champagne); }
.addon-strip p { font-size: 14px; color: var(--c-text-muted); max-width: 640px; }
.addon-strip .addon-price { font-family: var(--f-mono); font-size: 16px; color: var(--c-gold); white-space: nowrap; }
.pricing-foot { text-align: center; margin-top: 40px; font-size: 14px; color: var(--c-text-muted); }
.pricing-foot b { color: var(--c-champagne); font-weight: 500; }

/* ============ WORK (showcase: staggered photos + synced list) ============ */
.tw-wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.tw-photos { display: flex; gap: 14px; }
.tw-col { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tw-col2 { margin-top: 52px; }
.tw-col3 { margin-top: 24px; }
.tw-photo {
  position: relative; overflow: hidden; cursor: pointer; display: block; width: 100%;
  border: 1px solid rgba(var(--c-gold-rgb), .22);
  aspect-ratio: 16 / 11; background: var(--c-surface-2);
  filter: saturate(.14) brightness(.74) contrast(1.04);
  transition: opacity .4s ease, border-color .3s ease, filter .5s ease;
}
.tw-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tw-wrap[data-active] .tw-photo:not(.active) { opacity: .45; }
.tw-photo.active { border-color: var(--c-gold); filter: none; }

.tw-list { display: flex; flex-direction: column; gap: 6px; }
.tw-item { border-bottom: 1px solid rgba(var(--c-gold-rgb), .18); padding-bottom: 14px; transition: opacity .3s ease; }
.tw-wrap[data-active] .tw-item:not(.active):not(.open) { opacity: .55; }
.tw-head {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: none; border: none; padding: 14px 0 0; text-align: left; cursor: pointer;
}
.tw-marker { width: 18px; height: 3px; background: rgba(var(--c-gold-rgb), .3); flex: none; transition: all .3s ease; }
.tw-item.active .tw-marker, .tw-item.open .tw-marker { width: 28px; background: var(--c-gold); }
.tw-name { font-family: var(--f-display); font-size: 26px; font-weight: 500; color: var(--c-champagne); transition: color .25s ease; }
.tw-item.active .tw-name, .tw-item.open .tw-name { color: var(--c-white); }
.tw-plus { margin-left: auto; position: relative; width: 14px; height: 14px; flex: none; }
.tw-plus::before, .tw-plus::after { content: ""; position: absolute; background: var(--c-gold); transition: transform .3s ease; }
.tw-plus::before { left: 0; right: 0; top: 6.5px; height: 1px; }
.tw-plus::after { top: 0; bottom: 0; left: 6.5px; width: 1px; }
.tw-item.open .tw-plus::after { transform: scaleY(0); }
.tw-role {
  margin: 6px 0 0 32px; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-gold-dim);
}
.tw-body { max-height: 0; overflow: hidden; opacity: 0; margin-left: 32px; transition: max-height .45s ease, opacity .35s ease; }
.tw-item.open .tw-body { max-height: 260px; opacity: 1; }
.tw-body p { font-size: 14.5px; color: var(--c-text-muted); margin: 12px 0 14px; max-width: 420px; }
.tw-body .link-gold { font-size: 12px; margin-bottom: 6px; }

@media (max-width: 980px) {
  .tw-wrap { grid-template-columns: 1fr; }
  .tw-col2 { margin-top: 32px; }
  .tw-col3 { margin-top: 14px; }
}
@media (max-width: 720px) {
  .tw-photos { gap: 10px; }
  .tw-col { gap: 10px; }
  .tw-name { font-size: 21px; }
  .tw-body p { font-size: 13.5px; }
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(48px, 7vw, 100px); align-items: center; }
.about-photo { position: relative; padding: 0 22px; }
.about-photo::before {
  content: ""; position: absolute; inset: -20px 0 36px 0; z-index: 0;
  border: 1px solid var(--c-gold-dim); border-radius: 999px 999px 0 0;
  opacity: .55;
}
.about-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5.1;
  object-fit: cover; border-radius: 999px 999px 0 0;
  filter: saturate(.9) contrast(1.02);
}
.about-photo .ph {
  display: none; position: relative; z-index: 1; aspect-ratio: 4 / 5.1;
  border-radius: 999px 999px 0 0;
  background: var(--c-surface-2); align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: var(--c-text-faint);
  border: 1px dashed var(--c-border);
}
.about-photo.failed img { display: none; }
.about-photo.failed .ph { display: flex; }
.about-caption {
  position: relative; z-index: 1; text-align: center; margin-top: 18px;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--c-text-faint);
}
.about-seal {
  position: absolute; z-index: 2; width: 128px; height: 128px;
  right: -14px; bottom: 64px;
}
.seal-disc { fill: var(--c-void); stroke: var(--c-gold-dim); stroke-width: 1; }
.seal-text {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.6px;
  fill: var(--c-gold);
}
.seal-mono {
  font-family: var(--f-display); font-style: italic; font-size: 26px;
  fill: var(--c-champagne);
}
.seal-rot { animation: sealspin 28s linear infinite; transform-origin: 60px 60px; }
body[data-motion="off"] .seal-rot { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .seal-rot { animation: none; } }
@keyframes sealspin { to { transform: rotate(360deg); } }
.about-copy p { color: var(--c-text-muted); font-size: 16.5px; margin-bottom: 20px; }
.about-copy p strong { color: var(--c-champagne); font-weight: 500; }
.about-quote {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 26px; line-height: 1.45; color: var(--c-champagne);
  border-left: 1px solid var(--c-gold); padding-left: 28px; margin: 30px 0;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--c-border); }
.stat b { display: block; font-family: var(--f-display); font-size: 46px; font-weight: 400; color: var(--c-gold-light); line-height: 1.1; }
.stat b sup { font-size: .45em; color: var(--c-gold); }
.stat span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-faint); }

/* ============ COMPLIANCE ============ */
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.market-card {
  border: 1px solid rgba(var(--c-gold-rgb), .28);
  padding: 36px 34px;
  background: rgba(15, 15, 26, .42);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.market-card .flag {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .14em;
  color: var(--c-gold); border: 1px solid var(--c-gold-dim);
  padding: 8px 14px; margin-bottom: 16px;
}
.market-card h3 { font-size: 24px; font-weight: 500; margin-bottom: 18px; }
.market-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.market-card li { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--c-text-muted); display: flex; gap: 12px; align-items: baseline; }
.market-card li::before { content: "✓"; color: var(--c-gold); font-size: 11px; }
.compliance-note { margin-top: 36px; text-align: center; font-family: var(--f-display); font-style: italic; font-size: 21px; color: var(--c-text-muted); }
.compliance-note em { color: var(--c-gold); font-style: inherit; }

/* ============ TESTIMONIALS (marquee rows) ============ */
.testi-marquee-wrap { display: flex; flex-direction: column; gap: 26px; margin: 0 calc(-1 * var(--pad-x)); }
.testi-marquee { position: relative; overflow: hidden; }
.testi-marquee::before, .testi-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px, 10vw, 160px); z-index: 2; pointer-events: none;
}
.testi-marquee::before { left: 0; background: linear-gradient(to right, var(--c-void), transparent); }
.testi-marquee::after { right: 0; background: linear-gradient(to left, var(--c-void), transparent); }
.tm-track { display: flex; gap: 24px; width: max-content; padding: 4px 0; animation: marquee 48s linear infinite; }
.testi-marquee.reverse .tm-track { animation-direction: reverse; }
.testi-marquee:hover .tm-track { animation-play-state: paused; }
body[data-motion="off"] .tm-track { animation-play-state: paused; }
.tm-card {
  width: 380px; flex: none;
  background: var(--c-surface-2); border: 1px solid rgba(var(--c-gold-rgb), .22);
  padding: 24px 26px; transition: border-color .3s ease;
}
.tm-card:hover { border-color: var(--c-gold-dim); }
.tm-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tm-ava {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--c-gold-dim); color: var(--c-gold);
  font-family: var(--f-display); font-style: italic; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.tm-id { display: flex; flex-direction: column; min-width: 0; }
.tm-id b { font-size: 14px; font-weight: 500; color: var(--c-white); }
.tm-id small { font-size: 11.5px; color: var(--c-text-muted); font-family: var(--f-mono); }
.tm-stars { margin-left: auto; color: var(--c-gold); font-size: 10px; letter-spacing: .15em; }
.tm-card p { font-family: var(--f-display); font-style: italic; font-size: 16.5px; line-height: 1.55; color: var(--c-champagne); }

/* ============ QUIZ ============ */
.quiz-wrap { max-width: 800px; margin: 0 auto; }
.quiz-card { background: var(--c-surface-2); border: 1px solid rgba(var(--c-gold-rgb), .25); padding: clamp(34px, 5vw, 60px); position: relative; }
.quiz-progress { display: flex; align-items: center; gap: 18px; margin-bottom: 38px; }
.quiz-progress .qbar { flex: 1; height: 7px; background: var(--c-surface-3); position: relative; overflow: hidden; }
.quiz-progress .qbar i {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: linear-gradient(90deg, var(--c-gold-dim), var(--c-gold) 60%, var(--c-gold-light));
  box-shadow: 0 0 14px rgba(var(--c-gold-rgb), .5);
  transition: width .6s cubic-bezier(.22, 1, .36, 1);
}
.quiz-progress .qpct { font-family: var(--f-mono); font-size: 13px; color: var(--c-gold); white-space: nowrap; min-width: 44px; text-align: right; }
.quiz-q { font-family: var(--f-display); font-size: clamp(26px, 3vw, 36px); font-weight: 400; margin-bottom: 30px; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quiz-opt {
  text-align: left; background: var(--c-surface-1); border: 1px solid var(--c-border);
  padding: 18px 22px; color: var(--c-champagne); font-size: 15px; font-weight: 400;
  display: flex; flex-direction: column; gap: 3px; transition: all .22s ease;
}
.quiz-opt small { color: var(--c-text-faint); font-size: 12.5px; }
.quiz-opt:hover { border-color: var(--c-gold); background: rgba(var(--c-gold-rgb), .06); transform: translateY(-1px); }
.quiz-back { background: none; border: none; color: var(--c-text-faint); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-top: 26px; padding: 4px 0; }
.quiz-back:hover { color: var(--c-text-muted); }

.quiz-result { text-align: center; }
.quiz-result .qr-kicker { font-family: var(--f-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.quiz-result h3 { font-size: clamp(32px, 3.6vw, 46px); font-weight: 400; }
.quiz-result .qr-price { font-family: var(--f-display); font-size: 24px; color: var(--c-gold); margin: 10px 0 22px; }
.quiz-result .qr-why { color: var(--c-text-muted); font-size: 15.5px; max-width: 540px; margin: 0 auto 34px; }
.quiz-result .qr-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.quiz-alt { margin-top: 44px; text-align: center; font-size: 14.5px; color: var(--c-text-muted); }
.quiz-alt a { color: var(--c-gold); border-bottom: 1px solid rgba(var(--c-gold-rgb), .35); }

/* ============ FOOTER ============ */
.footer { background: var(--c-surface-1); border-top: 1px solid var(--c-border); padding: 80px var(--pad-x) 36px; }
.footer-inner { max-width: var(--content-max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 56px; border-bottom: 1px solid var(--c-border); }
.footer-brand .logo-word { font-family: var(--f-display); font-size: 24px; color: var(--c-white); }
.footer-brand p { margin: 18px 0 24px; font-size: 14px; color: var(--c-text-muted); max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-family: var(--f-mono); font-size: 13px; color: var(--c-text-muted); }
.footer-contact a:hover { color: var(--c-gold); }
.footer h4 { font-family: var(--f-body); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-dim); margin: 0 0 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--c-text-muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--c-champagne); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 32px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; color: var(--c-text-faint); }
.footer-bottom .stripe-badge { display: flex; align-items: center; gap: 8px; }
.footer-bottom .stripe-badge i { font-style: normal; color: var(--c-text-muted); }

/* ============ CURSOR ============ */
.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 30px; height: 30px; border: 1px solid rgba(var(--c-gold-rgb), .65); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width .25s ease, height .25s ease, background .25s ease;
  left: -100px; top: -100px; mix-blend-mode: screen;
}
.cursor.hovering { width: 56px; height: 56px; background: rgba(var(--c-gold-rgb), .1); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ============ HERO VIDEO ============ */
#hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
#hero-video video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(.85) contrast(1.04) brightness(.85);
}
#hero-video .veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,7,14,.92) 0%, rgba(7,7,14,.55) 45%, rgba(7,7,14,.35) 100%),
    linear-gradient(to top, var(--c-void) 0%, rgba(7,7,14,.25) 30%, rgba(7,7,14,.45) 100%);
}
body[data-hero-visual="video"] #horse-stage { display: none; }
body[data-hero-visual="horse"] #hero-video { display: none; }
body[data-hero-visual="both"] #hero-video .veil {
  background:
    linear-gradient(to right, rgba(7,7,14,.95) 0%, rgba(7,7,14,.72) 45%, rgba(7,7,14,.55) 100%),
    linear-gradient(to top, var(--c-void) 0%, rgba(7,7,14,.4) 30%, rgba(7,7,14,.55) 100%);
}
body[data-hero-visual="monument"] {}
body[data-hero="monument"] #hero-video .veil {
  background:
    rgba(7,7,14,.55),
    linear-gradient(to top, var(--c-void) 0%, rgba(7,7,14,.3) 35%, rgba(7,7,14,.5) 100%);
}
body[data-motion="off"] #hero-video video { display: none; }
body[data-motion="off"] #hero-video { background: var(--c-surface-1); }

/* ============ INLINE TEXT TREATMENTS ============ */
.inline-link {
  color: var(--c-gold);
  border-bottom: 1px solid rgba(var(--c-gold-rgb), .35);
  transition: color .2s ease, border-color .2s ease;
}
.inline-link:hover { color: var(--c-gold-light); border-color: var(--c-gold-light); }
strong.hl { color: var(--c-champagne); font-weight: 500; }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(var(--c-gold-rgb), .2); }
.faq-item:first-child { border-top: 1px solid rgba(var(--c-gold-rgb), .2); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 25px); font-weight: 500;
  color: var(--c-champagne); padding: 26px 56px 26px 0;
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-gold-light); }
.faq-x {
  position: absolute; right: 4px; top: 50%; width: 16px; height: 16px;
  transform: translateY(-50%);
}
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--c-gold); transition: transform .3s ease;
}
.faq-x::before { left: 0; right: 0; top: 7.5px; height: 1px; }
.faq-x::after { top: 0; bottom: 0; left: 7.5px; width: 1px; }
.faq-item[open] .faq-x::after { transform: scaleY(0); }
.faq-a { padding: 0 56px 30px 0; }
.faq-a p { color: var(--c-text-muted); font-size: 16px; max-width: 720px; }
.faq-more { margin-top: 44px; font-size: 14.5px; color: var(--c-text-muted); max-width: 860px; line-height: 2.1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; }
  .compliance-grid { grid-template-columns: 1fr; }
  body[data-hero="split"] #horse-stage { opacity: .3; width: 100%; right: 0; }
}
@media (max-width: 720px) {
  .nav-right .nav-cta, .nav-right .lang-switch { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .quiz-opts { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar { gap: 14px; }
  .prof-track { display: grid !important; grid-template-columns: 1fr 1fr; gap: 14px; width: auto; transform: none !important; }
  .prof-card { width: auto; min-height: 0; }
  .prof-content { padding: 18px 16px; }
  .prof-content h3 { font-size: 19px; margin-bottom: 8px; }
  .prof-pain { display: none; }
  .prof-feats { display: none; }
  .prof-card .link-gold { font-size: 11px; }
  .prof-bg { position: relative; inset: auto; height: 110px; width: 100%; }
  .prof-scrim { display: none; }
  .prof-content { margin-top: 0; }
  .prof-progress { display: none; }
}
