/* ============================================================
   Obludzyner & Co. — Site layout
   ------------------------------------------------------------
   Page-specific rules on top of tokens.css / components.css.
   ============================================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--navy-800);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-500); }
a:hover { color: var(--gold-400); }
::selection { background: var(--gold-500); color: var(--navy-900); }

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }

img { max-width: 100%; display: block; }

details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.container-text { max-width: var(--container-text); margin: 0 auto; }

.section { padding: 112px 40px; }
.section--raised { background: var(--navy-700); }
.section--well { background: var(--navy-900); }
#problem { padding-top: 64px; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p.ob-eyebrow { margin: 0 0 16px; }
.section-head h2 { margin: 0; }
.section-head p.section-instruction { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); margin: 20px 0 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

h2 { font-size: 44px; }

/* ---- Nav ----------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  background: rgba(0, 16, 64, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__brand img { width: 30px; height: 30px; border-radius: 22%; }
.nav__brand span { font-family: var(--font-serif); font-size: 17px; color: var(--text-primary); letter-spacing: -0.01em; text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { text-decoration: none; color: var(--text-secondary); font-size: 14px; }
.nav__links a:hover { color: var(--text-primary); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__lang { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); text-decoration: none; }
.nav__lang:hover { color: var(--text-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 1px; background: var(--text-primary); margin: 5px auto; }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 49;
  background: var(--navy-800);
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
}
.mobile-nav a { text-decoration: none; color: var(--text-primary); font-size: 20px; font-family: var(--font-serif); }
.mobile-nav.is-open { display: flex; }

/* ---- Mobile floating CTA -------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 48;
}
.mobile-cta a { display: flex; box-shadow: var(--shadow-lg); }

/* ---- Hero ----------------------------------------------------- */
.hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 140px 24px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .ob-eyebrow { margin: 0 0 20px; }
.hero h1 { font-size: 64px; line-height: 1.05; margin: 0 0 28px; }
.hero p.lede { font-family: var(--font-sans); font-size: 19px; line-height: 1.66; color: var(--text-secondary); max-width: 560px; margin: 0 0 8px; }
.hero p.lede--lead { font-weight: 600; color: var(--cream-200); }
.hero p.lede:last-of-type { margin: 0 0 28px; }
.hero p.result { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--text-primary); max-width: 580px; margin: 0 0 36px; }
.hero p.result strong { color: var(--gold-500); font-style: normal; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---- Logos strip ------------------------------------------------ */
.logos {
  padding: 40px 24px 16px;
  text-align: center;
  background: var(--navy-900);
}
.logos .ob-eyebrow { margin: 0 0 28px; }
.logos-row { max-width: var(--container-max); margin: 0 auto 8px; }
.logos-row__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 14px; }
.logos-track {
  display: flex;
  min-width: 0;
  overflow: hidden;
  overflow-x: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 4px 20px;
  flex-shrink: 0;
  animation: logos-scroll 62s linear infinite;
  white-space: nowrap;
}
.logos-row--reverse .logos-track__inner { animation-direction: reverse; animation-duration: 55s; }
.logos-track:hover .logos-track__inner { animation-play-state: paused; }
.logo-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
  flex: none;
}
.logo-badge {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--border-subtle);
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track__inner { animation: none; }
}
.logos-row + .logos-row { margin-top: 32px; }

/* ---- Pain confirmation ----------------------------------------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--cream-100);
  border: 1px solid var(--border-on-light);
  transition: border-color var(--duration) var(--ease-standard), background var(--duration) var(--ease-standard);
}
.pain-card:hover { border-color: var(--gold-600); }
.pain-card.is-checked { border-color: var(--gold-600); background: var(--cream-50); }
.pain-card__row { display: flex; align-items: flex-start; gap: 12px; }
.pain-card__box {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1px solid var(--border-on-light);
  position: relative;
}
.pain-card.is-checked .pain-card__box { border-color: var(--gold-600); background: var(--gold-500); }
.pain-card.is-checked .pain-card__box::after {
  content: "";
  position: absolute; left: 5px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--navy-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pain-card p.main { font-family: var(--font-sans); font-weight: 600; font-size: 17px; line-height: 1.4; color: var(--text-on-light); margin: 0 0 10px; }
.pain-card p.echo { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.5; color: var(--text-on-light-muted); margin: 0; }
.pain-close { max-width: 620px; margin: 56px auto 0; text-align: center; }
.pain-close p { font-family: var(--font-serif); font-size: 21px; line-height: 1.5; color: var(--text-primary); margin: 0 0 12px; transition: color var(--duration) var(--ease-standard); }
.pain-close p.bridge { font-size: 17px; color: var(--text-secondary); margin: 0 0 28px; }
.pain-close p#pain-verdict.is-armed { color: var(--gold-500); animation: pain-verdict-pulse 0.5s var(--ease-standard); }
@keyframes pain-verdict-pulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

/* ---- Contrast block (Reactive CS vs Commercial Operating System) --- */
.contrast-intro { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.contrast-intro h2 { margin: 0; }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contrast-col { padding: 40px 36px; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); background: var(--navy-800); }
.contrast-col--system { background: var(--navy-700); border-color: var(--border-gold); }
.contrast-col h3 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 28px; }
.contrast-col--system h3 { color: var(--gold-500); }
.contrast-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contrast-col li { font-size: 16px; line-height: 1.55; color: var(--text-secondary); padding-left: 22px; position: relative; }
.contrast-col li::before { content: ""; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; border: 1px solid var(--text-faint); }
.contrast-col--system li::before { border: none; background: var(--gold-500); }
.contrast-col--system li { color: var(--text-primary); }

/* ---- Alternatives table --------------------------------------- */
.alt-intro { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.alt-intro h2 { margin: 8px 0 16px; }
.alt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.alt-row { display: flex; flex-direction: column; }
.alt-row__name { font-family: var(--font-sans); font-weight: 700; font-size: 18px; line-height: 1.3; color: var(--text-primary); margin: 0 0 20px; min-height: 47px; }
.alt-row__rows { display: flex; flex-direction: column; gap: 16px; }
.alt-row__item { border-top: 1px solid var(--border-subtle); padding-top: 14px; }
.alt-row__label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin: 0 0 8px; }
.alt-row__text { font-size: 14px; line-height: 1.55; color: var(--cream-200); margin: 0; }
.alt-row--highlight .alt-row__name { color: var(--gold-400); }
@media (max-width: 999px) { .alt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 779px) { .alt-grid { grid-template-columns: 1fr; } }
.operator-block { max-width: 680px; margin: 32px auto 0; text-align: center; }
.operator-block p { font-size: 16px; line-height: 1.66; color: var(--text-secondary); margin: 0; }
.geo-note { max-width: 640px; margin: 24px auto 0; text-align: center; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ---- Bio ----------------------------------------------------- */
.bio { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.bio__figure { margin: 0; position: relative; }
.bio__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-default); }
.bio__frame img { width: 100%; height: auto; object-fit: cover; object-position: center 28%; aspect-ratio: 4 / 5; }
.bio__frame .corner { position: absolute; width: 22px; height: 22px; }
.bio__frame .corner--tl { top: 14px; left: 14px; border-top: 2px solid var(--gold-500); border-left: 2px solid var(--gold-500); }
.bio__frame .corner--br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--gold-500); border-right: 2px solid var(--gold-500); }
.bio p.ob-eyebrow { margin: 0 0 16px; }
.bio h2 { margin: 0 0 24px; }
.bio p.body { font-size: 17px; line-height: 1.66; color: var(--text-secondary); margin: 0 0 18px; }
.bio p.body:last-of-type { margin: 0 0 32px; }
.bio p.quote { font-family: var(--font-serif); font-size: 19px; line-height: 1.45; color: var(--text-primary); letter-spacing: -0.01em; max-width: 560px; margin: 0 0 24px; padding-left: 20px; border-left: 2px solid var(--gold-500); }

/* ---- Hero photo + stat band (additional portrait placement, reuses
   .bio__frame's corner-accent treatment) ---- */
.hero-band { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: center; }
.hero-band__figure { margin: 0; }
.hero-band__figure .bio__frame { max-width: 260px; margin: 0 auto; }
.hero-band__caption { margin: 14px 0 0; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); text-align: center; }
.bio__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 28px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin: 0; }
.hero-band .bio__stats .ob-stat:first-child .ob-stat__value { color: var(--gold-400); }

/* ---- Proof ----------------------------------------------------- */
.proof-intro { max-width: 680px; margin: 0 auto 20px; text-align: center; }
.proof-intro h2 { margin: 0 0 20px; }
.proof-intro p:not(.ob-eyebrow) { font-size: 17px; line-height: 1.66; color: var(--text-secondary); margin: 0 0 16px; }
.proof-intro p:last-child { margin-bottom: 0; }

.stat-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 680px; margin: 32px 0 0; }

.proof-intro p.transition-line { max-width: 680px; margin: 80px auto 0; font-size: 16px; line-height: 1.66; color: var(--text-muted); }

.chart-wrap {
  max-width: 760px;
  margin: 56px auto 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--navy-800);
  padding: 40px 36px 28px;
}
.chart-wrap > p.ob-eyebrow { text-align: center; margin: 0 0 28px; }

.chart-frame { position: relative; width: 100%; }
.line-chart { width: 100%; height: auto; display: block; }
.line-chart__grid { stroke: var(--border-subtle); stroke-width: 1; }
.line-chart__segment { fill: none; stroke: var(--gold-500); stroke-width: 2; }
.line-chart__segment--dashed { stroke-dasharray: 6 5; opacity: 0.7; }
.line-chart__point { fill: var(--gold-500); stroke: var(--navy-700); stroke-width: 2; }
.line-chart__point--floor { fill: var(--navy-700); stroke: var(--gold-500); stroke-width: 2; }

/* Labels rendered as HTML, absolutely positioned over the SVG at the
   same relative (percentage) coordinates as the data they annotate.
   Decouples text legibility from the chart's geometric scale — the
   SVG (lines/dots/grid) can shrink freely on narrow screens without
   ever taking the text down with it. */
.chart-labels { position: absolute; inset: 0; pointer-events: none; }
.chart-label { position: absolute; transform: translate(-50%, -50%); white-space: nowrap; }
.chart-label--axis {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  transform: translate(-100%, -50%);
}
.chart-label--value { font-family: var(--font-serif); font-size: 20px; color: var(--text-primary); }
.chart-label--cat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: normal;
  width: 32%;
  text-align: center;
}
.chart-label--cat-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--text-faint);
  white-space: normal;
  width: 32%;
  text-align: center;
}
.chart-label--gold { color: var(--gold-500); }

@media (max-width: 480px) {
  .chart-label--value { font-size: 15px; }
  .chart-label--axis { font-size: 9px; }
  .chart-label--cat { font-size: 10px; }
  .chart-label--cat-em { font-size: 9px; }
}

.chart-sources { max-width: 920px; margin: 24px auto 0; font-size: 14px; line-height: 1.7; color: var(--text-muted); }

.market-claim { max-width: 920px; margin: 56px auto 0; font-size: 17px; line-height: 1.7; color: var(--text-secondary); }
.market-claim__source { color: var(--text-muted); }

.proof-bridge { max-width: 680px; margin: 0 auto 40px; text-align: center; font-size: 16px; line-height: 1.66; color: var(--text-secondary); }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-card { background: var(--cream-100); border-color: var(--border-on-light); }
.proof-card p.metric { font-family: var(--font-serif); font-size: 32px; line-height: 1; letter-spacing: -0.02em; color: var(--gold-700); margin: 0 0 14px; }
.proof-card p.headline { font-family: var(--font-serif); font-size: 19px; color: var(--text-on-light); margin: 0 0 10px; }
.proof-card p.company { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--gold-700); margin: 0 0 4px; }
.proof-card p.role { font-size: 13px; color: var(--text-on-light-muted); margin: 0; }

.proof-close { max-width: 680px; margin: 40px auto 0; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--text-primary); }
.proof-cta { text-align: center; margin-top: 32px; }

/* ---- Company / origin (cream inversion — one editorial light panel
   among otherwise-dark sections, breaking the all-navy rhythm). The
   cream background lives on the full-width #company section; .company
   is an inner wrapper that just centers the text column, so the
   panel bleeds edge to edge instead of floating as a narrow card. ---- */
#company { background: var(--cream-100); }
.company { max-width: 820px; margin: 0 auto; text-align: center; }
.company p.ob-eyebrow { margin: 0 0 28px; color: var(--gold-700); }
.company p.lead { font-size: 34px; line-height: 1.25; font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; color: var(--text-on-light); margin: 0 0 32px; }
.company p.support { font-size: 17px; line-height: 1.75; color: var(--text-on-light-muted); margin: 0 0 20px; }
.company p.support:last-child { margin-bottom: 0; }
.company p.support strong { color: var(--text-on-light); font-weight: 500; }
.company hr.ob-rule { margin: 32px auto; max-width: 120px; border-color: var(--border-on-light); }
.company .ob-btn { margin-top: 32px; }
.company .ob-btn--primary { background: var(--navy-800); color: var(--cream-100); }
.company .ob-btn--primary:hover { background: var(--navy-700); color: var(--cream-100); }
.company .ob-btn--primary:active { background: var(--navy-650); color: var(--cream-100); }

/* ---- Recommendations carousel ----------------------------------------------------- */
.recs-intro { max-width: 680px; margin: 0 auto 20px; text-align: center; }
.recs-intro h2 { margin: 0 0 20px; }
.recs-intro p:not(.ob-eyebrow) { font-size: 16px; line-height: 1.66; color: var(--text-muted); margin: 0; }

.recs-marquee {
  display: flex;
  min-width: 0;
  margin-top: 48px;
  overflow: hidden;
  overflow-x: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.recs-marquee__inner {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  width: max-content;
  animation: recs-scroll 36s linear infinite;
}
.recs-marquee:hover .recs-marquee__inner { animation-play-state: paused; }
@keyframes recs-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .recs-marquee__inner { animation: none; }
}
.rec-item { flex: 0 0 340px; }
.rec-card__head { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.rec-card__head .name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0; }
.rec-card__head .role { font-size: 12px; color: var(--text-muted); margin: 0; }
.rec-card__head .ob-tag { margin-inline-start: auto; }
.rec-card p.quote { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 12px; }
.rec-card--highlight { border-color: var(--gold-600); }
.rec-card--highlight .rec-card__head .role { color: var(--gold-500); }
.rec-card p.meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--text-faint); margin: 0; }
.quote-more { margin: 0 0 12px; }
.quote-more summary { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); }
.quote-more summary:hover { color: var(--gold-400); }
.quote-more[open] summary { margin-bottom: 10px; }
.quote-more p { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 10px; }
.quote-more p:last-child { margin-bottom: 0; }


[hidden] { display: none !important; }

/* ---- How we work ----------------------------------------------------- */
.how-intro { max-width: 680px; margin: 0 auto 16px; text-align: center; }
.how-intro h2 { margin: 0; }
.how-buyer { max-width: 680px; margin: 0 auto 12px; text-align: center; font-size: 16px; line-height: 1.6; color: var(--text-muted); }
.how-price-note { max-width: 680px; margin: 0 auto 56px; text-align: center; font-size: 15px; line-height: 1.6; color: var(--text-faint); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.how-card { display: flex; flex-direction: column; }
.ob-card__eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--gold-500); margin: 0 0 20px; }
.how-card .ob-card__title { font-weight: 600; }
.how-card p.lead { font-size: 15px; line-height: 1.66; color: var(--text-secondary); margin: 0 0 14px; }
.how-card p.support { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0 0 12px; }
.how-card p.support:last-child { margin-bottom: 0; }
.shift-summary { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); margin: 10px 0 0; }

/* ---- SHIFT breakdown — standalone panel, its own "cube" below the
   three-phase grid, instead of nested inside the Install card ---- */
.shift-panel { margin-top: 64px; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--navy-800); overflow: hidden; }
.shift-panel__header { padding: 28px 36px; border-bottom: 1px solid var(--border-subtle); }
.shift-panel__header p { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); margin: 0; }
.shift-row { display: grid; grid-template-columns: 64px 200px 1fr; align-items: start; gap: 24px; padding: 26px 36px; border-bottom: 1px solid var(--border-subtle); }
.shift-row:last-of-type { border-bottom: none; }
.shift-row .letter { font-family: var(--font-serif); font-size: 34px; color: var(--gold-400); line-height: 1; }
.shift-row .name { font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--text-primary); padding-top: 4px; }
.shift-row .desc p { font-family: var(--font-sans); font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.shift-row .desc p.shift-proof { font-size: 13px; line-height: 1.6; color: var(--text-muted); font-style: italic; margin: 10px 0 0; }
.shift-panel__footer { padding: 24px 36px 28px; border-top: 1px solid var(--border-subtle); }
.shift-panel__footer p.culture { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 0; font-style: italic; }
@media (max-width: 779px) {
  .shift-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
  .shift-row .letter { font-size: 26px; }
  .shift-panel__header, .shift-panel__footer { padding-left: 24px; padding-right: 24px; }
}

.ficha-list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; }
.ficha {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--navy-700);
}
.ficha__name { font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 6px; }
.ficha__row { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.ficha__row strong { color: var(--text-secondary); font-weight: 500; }
.ficha__bullets { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.ficha__bullets li { font-size: 12px; line-height: 1.5; color: var(--text-muted); padding-left: 14px; position: relative; }
.ficha__bullets li::before { content: "\2013"; position: absolute; left: 0; color: var(--text-faint); }
.how-card p.culture { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 0; font-style: italic; }

.risk-box { border: 1px solid var(--gold-600); border-radius: var(--radius-sm); padding: 14px 16px; background: var(--navy-700); margin-top: 16px; }
.risk-box p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.risk-box p strong { color: var(--gold-500); }

.tier-intro { max-width: 680px; margin: 64px auto 32px; text-align: center; }
.tier-intro h3 { margin: 8px 0 0; font-size: 22px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier-card__name { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--text-primary); margin: 0 0 10px; }
.tier-card__line { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 16px; }
.tier-card__for { font-size: 13px; line-height: 1.5; color: var(--text-muted); font-style: italic; margin: 0 0 16px; }
.tier-card__lead { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); margin: 0 0 12px; }
.tier-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.tier-card__list li { font-size: 13px; line-height: 1.55; color: var(--text-muted); padding-left: 14px; position: relative; }
.tier-card__list li::before { content: "\2013"; position: absolute; left: 0; color: var(--text-faint); }
.tier-card__ficha { margin-top: 20px; }
.tier-card__availability { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-500); margin: 14px 0 0; }
.tier-card__list li strong { color: var(--text-secondary); font-weight: 500; }
.tier-fine { text-align: center; font-size: 12px; color: var(--text-faint); margin: 16px 0 0; }

.how-close { text-align: center; font-family: var(--font-serif); font-size: 18px; color: var(--text-primary); margin: 48px 0 24px; }
.how-cta { text-align: center; }

@media (max-width: 999px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ----------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-intro { text-align: center; margin-bottom: 48px; }
.faq-intro h2 { margin: 0; }
.faq-item { border-top: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: 1px solid var(--border-subtle); }
.faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
}
.faq-item summary .q { font-family: var(--font-serif); font-size: 17px; color: var(--text-primary); }
.faq-item summary .symbol { font-size: 20px; color: var(--gold-500); flex-shrink: 0; }
.faq-item summary .symbol::before { content: "+"; }
.faq-item[open] summary .symbol::before { content: "\2212"; }
.faq-item p.answer { font-size: 15px; line-height: 1.66; color: var(--text-secondary); margin: 0 0 24px; padding: 0 4px; }

/* ---- Contact ----------------------------------------------------- */
.contact { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact__intro p.ob-eyebrow { margin: 0 0 20px; }
.contact__intro h2 { font-size: 30px; line-height: 1.25; margin: 0 0 24px; }
.contact__intro p.lede { font-size: 17px; line-height: 1.66; color: var(--text-secondary); margin: 0 0 16px; }
.contact__intro p.scarcity { font-size: 15px; color: var(--text-muted); margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-success p.title { font-family: var(--font-serif); font-size: 19px; color: var(--text-primary); margin: 12px 0 10px; }
.contact-success p.note { font-size: 14px; color: var(--text-muted); margin: 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Mailing list ----------------------------------------------------- */
.mailing {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}
.mailing .ob-eyebrow { margin: 0 0 16px; }
.mailing h2 { font-size: 26px; margin: 0 0 12px; }
.mailing p.support { font-size: 15px; color: var(--text-muted); margin: 0 0 28px; }
.mailing-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.mailing-form .ob-field--email,
.mailing-form .ob-field--submit { grid-column: 1 / -1; }
.mailing-success { font-size: 15px; color: var(--gold-500); }

/* ---- Scarcity bar (relocated from the top of the page to the very
   bottom, per Mariano's request — same bar, new position) ---- */
.scarcity-bar { text-align: center; padding: 14px 24px; background: var(--navy-700); border-top: 1px solid var(--border-subtle); }
.scarcity-bar p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ---- Footer ----------------------------------------------------- */
.footer {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { width: 24px; height: 24px; border-radius: 22%; }
.footer__brand span { font-family: var(--font-serif); font-size: 15px; color: var(--text-muted); }
.footer p.tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--text-faint); margin: 0; }
.footer__socials { display: flex; align-items: center; gap: 16px; }
.footer__socials a { color: var(--text-muted); display: inline-flex; }
.footer__socials a:hover { color: var(--gold-500); }
.footer__socials svg { width: 18px; height: 18px; }

/* ============================================================
   Responsive — two breakpoints: tablet (<1000px), mobile (<780px)
   ============================================================ */

@media (max-width: 999px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }

  .pain-grid,
  .proof-grid,
  .how-grid { grid-template-columns: 1fr; }

  .bio { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 48px; }
  .hero-band { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-band__figure .bio__frame { max-width: 220px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; }
  .contrast-grid { grid-template-columns: 1fr; }
  .stat-pair { grid-template-columns: 1fr; }
}

@media (max-width: 779px) {
  .nav { padding: 14px 20px; }
  .hero { padding: 96px 24px 48px; }
  .hero h1 { font-size: 36px; line-height: 1.12; }
  .section { padding: 64px 20px; }
  h2 { font-size: 30px; }
  .contact__intro h2 { font-size: 22px; }
  .chart-wrap { padding: 24px 18px 16px; }
  .bio__stats { grid-template-columns: 1fr; }
  .mailing-form { grid-template-columns: 1fr; }
  .rec-item { flex-basis: 280px; }
  .mobile-cta { display: block; }
  .footer { padding-bottom: 92px; }
}
