/* ============================================================
   1031signal.com — public site components
   Built on the brand tokens in ../styles.css (single source of
   truth). No hardcoded hex except score/status constants that
   are defined as fixed in the brand.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: var(--t-body);
}
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.4px; line-height: 1.08; }
p { margin: 0; }
a { color: var(--link); text-decoration: none; }
img { max-width: 100%; display: block; }
.num { font-variant-numeric: tabular-nums lining-nums; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-size: var(--t-cap); font-weight: var(--fw-bold);
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--brand-dk);
}
.kicker {
  font-size: 11.5px; font-weight: var(--fw-bold); letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--slate);
}
.lead { font-size: 19px; color: var(--ink-2); line-height: 1.5; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-sans); font-size: 15px; font-weight: var(--fw-semibold);
  padding: 12px 20px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-dk); color: #fff; }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dk); }
.btn-lg { font-size: 16px; padding: 15px 26px; }
.btn-block { width: 100%; }

/* ---------- brand lockup ---------- */
.lockup { display: inline-flex; align-items: center; gap: 11px; }
.lockup .wm { font-size: 21px; letter-spacing: -0.6px; line-height: 1; white-space: nowrap; }
.lockup .wm .s1 { font-weight: var(--fw-regular); color: var(--ink); }
.lockup .wm .s2 { font-weight: var(--fw-bold); color: var(--ink); }
.lockup.on-ink .wm .s1, .lockup.on-ink .wm .s2 { color: #fff; }
.badge-1031 {
  font-family: var(--font-sans); font-size: 11px; font-weight: var(--fw-heavy);
  font-variant-numeric: tabular-nums; letter-spacing: .3px; color: #fff;
  background: var(--brand-dk); border-radius: 5px; padding: 2px 7px; line-height: 1.3;
}

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-2); font-size: 14.5px; font-weight: var(--fw-medium); }
.nav-links a:hover { color: var(--brand-dk); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; }

/* ---------- hero shared ---------- */
.hero { padding: 76px 0 64px; border-bottom: 1px solid var(--line); }
.h-display { font-size: var(--t-display); font-weight: var(--fw-heavy); letter-spacing: -1.6px; line-height: 1.0; }
.hero-sub { font-size: 19px; color: var(--ink-2); margin-top: 20px; max-width: 30em; line-height: 1.5; }

/* hero A/B visibility (driven by [data-hero] on <html>) */
.hero-b { display: none; }
html[data-hero="B"] .hero-a { display: none; }
html[data-hero="B"] .hero-b { display: block; }

/* hero A — terminal / data-forward */
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.proof-row { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.proof-row .pf { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 7px; }
.proof-row .pf b { color: var(--ink); font-weight: var(--fw-bold); }

/* capture form */
.capture { margin-top: 30px; max-width: 460px; }
.capture-row { display: flex; gap: 9px; }
.capture input[type=email] {
  flex: 1; min-width: 0; font-family: var(--font-sans); font-size: 15px;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); background: #fff;
}
.capture input[type=email]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--paper-dk); }
.capture .micro { font-size: 12.5px; color: var(--slate); margin-top: 9px; }

/* ---------- terminal panel (sample market data) ---------- */
.terminal { background: var(--ink); border-radius: var(--r-lg); padding: 8px; box-shadow: var(--shadow-md); }
.term-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px 12px; }
.term-head .tt { color: #fff; font-size: 13px; font-weight: var(--fw-semibold); display: flex; align-items: center; gap: 9px; }
.term-head .live { display: inline-flex; align-items: center; gap: 6px; color: var(--mint); font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .6px; }
.dot-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--pulse); box-shadow: 0 0 0 0 rgba(97,189,107,.6); animation: dotpulse 2.4s ease-out infinite; }
@keyframes dotpulse { 0%{box-shadow:0 0 0 0 rgba(97,189,107,.55)} 70%{box-shadow:0 0 0 8px rgba(97,189,107,0)} 100%{box-shadow:0 0 0 0 rgba(97,189,107,0)} }
@media (prefers-reduced-motion: reduce){ .dot-pulse{animation:none} }
.term-body { background: #fff; border-radius: 12px; overflow: hidden; }
.term-kpis { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.term-kpis .k { padding: 14px 16px; border-right: 1px solid var(--line); }
.term-kpis .k:last-child { border-right: 0; }
.term-kpis .k .lab { font-size: 10.5px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; color: var(--slate); }
.term-kpis .k .val { font-size: 23px; font-weight: var(--fw-bold); color: var(--ink); margin-top: 3px; }
.term-rows { padding: 4px 0; }
.term-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--paper); }
.term-row:last-child { border-bottom: 0; }
.term-row .who { min-width: 0; }
.term-row .who .nm { font-size: 13.5px; font-weight: var(--fw-semibold); color: var(--ink); }
.term-row .who .meta { font-size: 11.5px; color: var(--slate); }
.term-row .gain { font-size: 13.5px; font-weight: var(--fw-bold); color: var(--brand-dk); }
.locked-name { filter: blur(4.5px); user-select: none; }
.score-chip { font-size: 12px; font-weight: var(--fw-heavy); color: #fff; border-radius: 5px; padding: 3px 8px; min-width: 34px; text-align: center; }
.term-foot { padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; background: var(--paper); }
.term-foot .lk { font-size: 11.5px; color: var(--slate); display: inline-flex; align-items: center; gap: 6px; }
.sample-tag { font-size: 10px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; color: var(--score-warm); background: #F7EFDA; border-radius: 4px; padding: 2px 7px; }

/* hero B — editorial */
.hero-b .wrap { text-align: center; }
.hero-editorial { max-width: 18em; margin: 0 auto; }
.hero-b .h-display { font-size: 60px; }
.hero-b .hero-sub { margin: 22px auto 0; }
.hero-b .capture { margin: 32px auto 0; }
.ed-proof { display: flex; gap: 40px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.ed-proof .ep { text-align: center; }
.ed-proof .ep .n { font-size: 30px; font-weight: var(--fw-heavy); color: var(--ink); }
.ed-proof .ep .l { font-size: 12.5px; color: var(--slate); margin-top: 2px; }

/* ---------- generic section ---------- */
.section { padding: 76px 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 40em; margin-bottom: 40px; }
.section-head h2 { font-size: var(--t-h1); font-weight: var(--fw-bold); margin-top: 10px; letter-spacing: -1px; }
.section-head p { font-size: 17px; color: var(--ink-2); margin-top: 14px; }
.section.tint { background: var(--paper); }

/* value tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; }
.tile .ic { width: 40px; height: 40px; border-radius: 9px; background: var(--paper-dk); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tile h3 { font-size: 18px; font-weight: var(--fw-bold); }
.tile p { font-size: 14.5px; color: var(--slate); margin-top: 8px; line-height: 1.5; }
.tile .free-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .5px; color: var(--brand-dk); background: var(--paper-dk); border-radius: 4px; padding: 3px 8px; }
.tile .paid-tag { color: var(--score-warm); background: #F7EFDA; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 18px; border-top: 2px solid var(--line); }
.step .n { font-size: 12px; font-weight: var(--fw-heavy); color: var(--brand-dk); letter-spacing: .5px; }
.step h3 { font-size: 18px; font-weight: var(--fw-bold); margin-top: 8px; }
.step p { font-size: 14.5px; color: var(--slate); margin-top: 8px; line-height: 1.5; }

/* markets grid */
.markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.market-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: border-color .15s, box-shadow .15s, transform .1s; }
.market-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.market-card .city { font-size: 18px; font-weight: var(--fw-bold); color: var(--ink); display: flex; align-items: center; justify-content: space-between; }
.market-card .st { font-size: 12.5px; color: var(--slate); font-weight: var(--fw-medium); }
.market-card .mstats { display: flex; gap: 18px; margin-top: 16px; }
.market-card .ms .v { font-size: 17px; font-weight: var(--fw-bold); color: var(--ink); }
.market-card .ms .l { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: .4px; }
.market-card .go { font-size: 13px; color: var(--brand-dk); font-weight: var(--fw-semibold); margin-top: 16px; display: inline-flex; gap: 5px; align-items: center; }
.soon { color: var(--slate); font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .5px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 2px 9px; }

/* pricing teaser */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; display: flex; flex-direction: column; }
.price-card.feat { border-color: var(--brand); box-shadow: var(--shadow-md); }
.price-card .tier { font-size: 12px; font-weight: var(--fw-heavy); letter-spacing: .8px; text-transform: uppercase; color: var(--brand-dk); }
.price-card .pr { font-size: 30px; font-weight: var(--fw-heavy); color: var(--ink); margin-top: 10px; }
.price-card .pr span { font-size: 14px; font-weight: var(--fw-medium); color: var(--slate); }
.price-card ul { list-style: none; margin: 18px 0 22px; padding: 0; }
.price-card li { font-size: 14px; color: var(--ink-2); padding: 7px 0 7px 24px; position: relative; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 12px; height: 7px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }

/* cta band */
.cta-band { background: var(--ink); border-radius: var(--r-lg); padding: 56px 48px; text-align: center; color: var(--mint); }
.cta-band h2 { color: #fff; font-size: 38px; font-weight: var(--fw-bold); letter-spacing: -1px; }
.cta-band p { color: var(--mint); font-size: 17px; margin-top: 12px; }
.cta-band .capture { margin: 30px auto 0; }
.cta-band input[type=email] { background: rgba(255,255,255,.96); border-color: transparent; }

/* footer */
.footer { background: var(--ink); color: var(--mint); padding: 56px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; font-weight: var(--fw-bold); }
.footer a { color: var(--mint); font-size: 14px; display: block; margin: 9px 0; }
.footer a:hover { color: #fff; }
.footer .blurb { font-size: 13.5px; color: var(--mint-dk); margin-top: 14px; max-width: 30em; line-height: 1.55; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(176,218,175,.2); font-size: 12.5px; color: var(--mint-dk); flex-wrap: wrap; gap: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .tiles, .steps, .markets, .pricing { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .h-display, .hero-b .h-display { font-size: 40px; letter-spacing: -1px; }
  .section { padding: 56px 0; }
  .hero { padding: 52px 0 48px; }
  .section-head h2 { font-size: 30px; }
  .cta-band { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .capture-row { flex-direction: column; }
}

/* ============================================================
   MARKET PAGE
   ============================================================ */
.breadcrumb { font-size: 12.5px; color: var(--slate); padding: 16px 0; display: flex; gap: 7px; flex-wrap: wrap; }
.breadcrumb a { color: var(--slate); } .breadcrumb a:hover { color: var(--brand-dk); }
.breadcrumb .sep { color: var(--line); }

.mkt-hero { padding: 14px 0 40px; }
.mkt-hero h1 { font-size: 44px; font-weight: var(--fw-heavy); letter-spacing: -1.2px; line-height: 1.04; }
.mkt-hero .sub { font-size: 18px; color: var(--ink-2); margin-top: 16px; max-width: 44em; }

.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-top: 28px; }
.statband .s { background: #fff; padding: 20px 22px; }
.statband .s .l { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; color: var(--slate); }
.statband .s .v { font-size: 28px; font-weight: var(--fw-heavy); color: var(--ink); margin-top: 5px; }
.statband .s .d { font-size: 12px; color: var(--brand-dk); margin-top: 3px; font-weight: var(--fw-medium); }

/* radar table */
.radar { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.radar-head, .radar-row { display: grid; grid-template-columns: 2.4fr 1.2fr 1fr 1fr 0.7fr; gap: 14px; align-items: center; padding: 13px 20px; }
.radar-head { background: var(--paper); border-bottom: 1px solid var(--line); font-size: 10.5px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; color: var(--slate); }
.radar-row { border-bottom: 1px solid var(--paper); }
.radar-row:last-child { border-bottom: 0; }
.radar-row .own { font-size: 14.5px; font-weight: var(--fw-semibold); color: var(--ink); }
.radar-row .own .sub { font-size: 12px; color: var(--slate); font-weight: var(--fw-regular); }
.radar-row .selling { font-size: 11.5px; color: var(--brand-dk); font-weight: var(--fw-semibold); display: inline-flex; align-items: center; gap: 6px; }
.radar-locked { position: relative; }
.radar-lockbar { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px; background: linear-gradient(180deg, rgba(244,247,246,0) 0%, var(--paper) 40%); border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }

/* breakdown bars */
.breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.bk h3 { font-size: 15px; font-weight: var(--fw-bold); margin-bottom: 16px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 64px; gap: 12px; align-items: center; margin: 11px 0; font-size: 13.5px; }
.bar-row .bl { color: var(--ink-2); }
.bar-track { height: 8px; background: var(--paper-dk); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--brand); border-radius: 999px; }
.bar-row .bv { text-align: right; color: var(--ink); font-weight: var(--fw-semibold); }

/* AEO content prose */
.prose { max-width: 46em; }
.prose p { font-size: 16px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.62; }
.prose h3 { font-size: 19px; font-weight: var(--fw-bold); margin: 28px 0 10px; }
.qa { border-top: 1px solid var(--line); padding: 18px 0; }
.qa .q { font-size: 16px; font-weight: var(--fw-bold); color: var(--ink); }
.qa .a { font-size: 15px; color: var(--ink-2); margin-top: 8px; line-height: 1.6; }

.methodology { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; }
.methodology h3 { font-size: 14px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .6px; color: var(--slate); margin-bottom: 12px; }
.methodology p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }

/* ============================================================
   SELLER PROFILE (sample dossier)
   ============================================================ */
.sample-ribbon { background: #F7EFDA; border-bottom: 1px solid #EAD9AE; }
.sample-ribbon .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 28px; flex-wrap: wrap; }
.sample-ribbon .msg { font-size: 13.5px; color: var(--warn-fg); font-weight: var(--fw-medium); }
.sample-ribbon .msg b { font-weight: var(--fw-bold); }

.dossier { display: grid; grid-template-columns: 312px 1fr; gap: 32px; padding: 36px 0 64px; align-items: start; }
.rail { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 18px; }
.media-ph { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.media-stripe { height: 150px; background-image: repeating-linear-gradient(45deg, var(--paper) 0 11px, var(--paper-dk) 11px 22px); display: flex; align-items: flex-end; }
.media-stripe .tag { font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; color: var(--slate); background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 3px 7px; margin: 10px; }
.media-stripe.short { height: 88px; }

.gauge-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; text-align: center; }
.gauge { position: relative; width: 132px; height: 132px; margin: 0 auto; }
.gauge .lab { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge .lab .n { font-size: 38px; font-weight: var(--fw-heavy); color: var(--ink); line-height: 1; }
.gauge .lab .t { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; margin-top: 2px; }
.facts { border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; }
.facts .fr { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13.5px; border-bottom: 1px solid var(--paper); }
.facts .fr:last-child { border-bottom: 0; }
.facts .fr .k { color: var(--slate); } .facts .fr .v { color: var(--ink); font-weight: var(--fw-semibold); }

.dmain { min-width: 0; }
.dhead .name { font-size: 30px; font-weight: var(--fw-heavy); letter-spacing: -.8px; }
.dhead .addr { font-size: 14.5px; color: var(--slate); margin-top: 4px; }
.life-pill { display: inline-block; font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .5px; color: var(--life-fg); background: var(--life-bg); border-radius: 999px; padding: 3px 11px; vertical-align: middle; margin-left: 10px; }

.vtiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.vtile { border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; }
.vtile .l { font-size: 10.5px; font-weight: var(--fw-bold); letter-spacing: .5px; text-transform: uppercase; color: var(--slate); }
.vtile .v { font-size: 24px; font-weight: var(--fw-heavy); color: var(--ink); margin-top: 5px; }
.vtile.gain .v { color: var(--brand-dk); }

.selling-banner { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 14px 18px; background: var(--paper-dk); border: 1px solid var(--mint); border-radius: var(--r-md); }
.selling-banner .txt { font-size: 14px; color: var(--ink); } .selling-banner .txt b { color: var(--brand-dk); }

.card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; margin-top: 20px; }
.card .ct { font-size: 12px; font-weight: var(--fw-bold); letter-spacing: .6px; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.caution { font-size: 12.5px; color: var(--warn-fg); background: var(--warn-bg); border-radius: 6px; padding: 8px 11px; margin-top: 12px; display: inline-block; }

/* seller intelligence panel */
.intel { border: 1px solid var(--line); border-radius: var(--r-md); margin-top: 20px; overflow: hidden; }
.intel-head { background: var(--ink); color: #fff; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.intel-head .t { font-size: 15px; font-weight: var(--fw-bold); }
.intel-head .meter { font-size: 12px; color: var(--mint); }
.intel-body { padding: 18px 20px; }
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.contact-cell { border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; }
.contact-cell .l { font-size: 10.5px; font-weight: var(--fw-bold); letter-spacing: .4px; text-transform: uppercase; color: var(--slate); }
.contact-cell .v { font-size: 14px; color: var(--ink); margin-top: 4px; font-weight: var(--fw-medium); }
.holding { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--paper); font-size: 13.5px; }
.holding:last-child { border-bottom: 0; }
.selling-badge { font-size: 10px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .4px; color: var(--brand-dk); background: var(--paper-dk); border-radius: 4px; padding: 2px 7px; }
.deep-enrich { margin-top: 16px; padding: 16px; background: #F7EFDA; border: 1px solid #EAD9AE; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.deep-enrich .dt { font-size: 13.5px; color: var(--warn-fg); } .deep-enrich .dt b { color: #7a5510; }
.btn-gold { background: var(--score-warm); color: #fff; }
.reach-chip { font-size: 12.5px; font-weight: var(--fw-semibold); color: var(--brand-dk); background: var(--paper-dk); border: 1px solid var(--mint); border-radius: var(--r-pill); padding: 6px 13px; }

/* factor bars */
.factors .fr2 { display: grid; grid-template-columns: 150px 1fr 56px; gap: 12px; align-items: center; margin: 10px 0; font-size: 13px; }
.factors .fr2 .fl { color: var(--ink-2); }
.factors .fr2 .fv { text-align: right; font-weight: var(--fw-semibold); color: var(--ink); }

/* pipeline bar (disabled public) */
.pipeline { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pipeline .field { flex: 1; min-width: 150px; }
.pipeline .field .l { font-size: 10.5px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .4px; color: var(--slate); margin-bottom: 5px; }
.pipeline select, .pipeline input { width: 100%; font-family: var(--font-sans); font-size: 14px; padding: 9px 11px; border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--ink); background: #fff; }
.disabled-overlay { opacity: .6; pointer-events: none; }

@media (max-width: 860px) {
  .statband { grid-template-columns: 1fr 1fr; }
  .breakdown { grid-template-columns: 1fr; gap: 24px; }
  .dossier { grid-template-columns: 1fr; }
  .rail { position: static; }
  .radar-head { display: none; }
  .radar-row { grid-template-columns: 1fr auto; grid-auto-rows: auto; gap: 6px; }
  .vtiles, .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ / COMPARISON
   ============================================================ */
.cmp { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.cmp th, .cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.cmp thead th { background: var(--paper); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--slate); font-weight: var(--fw-bold); }
.cmp thead th.us { color: var(--brand-dk); }
.cmp tbody td:first-child { color: var(--ink-2); font-weight: var(--fw-medium); }
.cmp td.c { text-align: center; }
.cmp col.uscol { background: var(--paper-dk); }
.yes { color: var(--brand-dk); font-weight: var(--fw-bold); }
.no { color: var(--slate); }
.partial { color: var(--score-warm); font-weight: var(--fw-semibold); font-size: 12.5px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: var(--fw-semibold); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: var(--fw-regular); color: var(--brand-dk); flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .ans { font-size: 15px; color: var(--ink-2); line-height: 1.62; padding: 0 0 22px; max-width: 52em; }
.faq-item .ans p { margin: 0 0 12px; }

/* ===== motion / impact pass ===== */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s cubic-bezier(.2,.7,.2,1),transform .6s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1;transform:none;}
.terminal{transition:opacity .7s ease, transform .7s ease;}
.term-row{will-change:opacity,transform;}
@keyframes sweep{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1!important;transform:none!important;transition:none;} .term-row{opacity:1!important;transform:none!important;} }
