/* ─────────────────────────────────────────────
   O'HARA SYSTEMS — shared stylesheet
   Dark default · light mode via [data-theme="light"]
   ───────────────────────────────────────────── */

:root,
:root[data-theme="dark"] {
  --ink:        #0B0B0C;
  --ink-2:      #1C1C1E;
  --ink-3:      #2A2A2D;
  --bone:       #E8E6E1;
  --bone-mute:  #8C8A85;
  --bone-soft:  rgba(232, 230, 225, 0.08);
  --red:        #C8171B;
  --red-deep:   #A31115;
  --bg:         var(--ink);
  --bg-2:       #131315;
  --fg:         var(--bone);
  --fg-mute:    var(--bone-mute);
  --line:       var(--ink-2);
  --line-2:     var(--ink-3);
  --hover-bg:   rgba(200, 23, 27, 0.03);
  --nav-bg:     rgba(11, 11, 12, 0.72);
}

:root[data-theme="light"] {
  --ink:        #0B0B0C;
  --bone:       #0B0B0C;
  --bone-mute:  #6B6963;
  --red:        #C8171B;
  --red-deep:   #A31115;
  --bg:         #F4F2EC;
  --bg-2:       #EAE7DF;
  --fg:         #0B0B0C;
  --fg-mute:    #6B6963;
  --line:       #D9D5CC;
  --line-2:     #C8C3B7;
  --hover-bg:   rgba(200, 23, 27, 0.04);
  --nav-bg:     rgba(244, 242, 236, 0.78);
  --bone-soft:  rgba(11, 11, 12, 0.06);
}

:root {
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 300ms ease, color 300ms ease;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* ─── reusable bits ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
}
.section-label .num { color: var(--red); }

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--fg);
}
.display em { color: var(--fg-mute); font-style: italic; }

/* buttons */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms cubic-bezier(.2,.8,.2,1);
  line-height: 1;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; }

/* ─── NAV ─── */
nav.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.wordmark {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
}
.wordmark .red-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-left: 3px;
  margin-bottom: 8px;
  align-self: center;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--red);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
}

/* theme toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg-mute);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 200ms;
  padding: 0;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); }
.theme-toggle svg { width: 14px; height: 14px; }

/* lang toggle */
.lang-toggle {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle a {
  padding: 6px 12px;
  color: var(--fg-mute);
  transition: all 200ms;
}
.lang-toggle a.active {
  background: var(--fg);
  color: var(--bg);
}
.lang-toggle a:not(.active):hover { color: var(--red); }

/* ─── HERO (homepage particle) ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 48px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.hero-overlay > * { pointer-events: auto; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero-meta .num { color: var(--red); }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--fg);
  max-width: 80%;
}
.hero h1 em { color: var(--fg-mute); font-style: italic; }
.hero-lede {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-mute);
  max-width: 560px;
  line-height: 1.5;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── INNER PAGE HEADER (no particle, just type) ─── */
.page-header {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--line);
}
.page-header .crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 24px;
}
.page-header .crumb .num { color: var(--red); }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--fg);
  max-width: 1100px;
}
.page-header h1 em { color: var(--fg-mute); font-style: italic; }
.page-header .lede {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-mute);
  max-width: 640px;
}

/* ─── SECTIONS ─── */
section.block {
  padding: 128px 48px;
  border-bottom: 1px solid var(--line);
}
.block-title {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 80px;
  max-width: 900px;
}
.block-title em { color: var(--fg-mute); font-style: italic; }

/* ─── SERVICE ROWS ─── */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 40px;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 300ms;
  text-decoration: none;
  color: inherit;
}
.service-row:hover { background: var(--hover-bg); }
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row .s-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  transition: color 200ms;
}
.service-row:hover .s-num { color: var(--red); }
.service-row .s-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.service-row .s-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-mute);
  opacity: 0.55;
  transition: opacity 300ms;
}
.service-row:hover .s-desc { opacity: 1; }
.service-row .s-arrow {
  text-align: right;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: transform 300ms;
}
.service-row:hover .s-arrow { transform: translateX(4px); }

/* ─── DETAIL BLOCKS (services page) ─── */
.detail-block {
  padding: 96px 48px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.detail-block .meta {
  position: sticky;
  top: 100px;
  align-self: start;
}
.detail-block .meta .num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}
.detail-block .meta h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 16px;
}
.detail-block .meta .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.detail-block .body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-mute);
}
.detail-block .body p { margin-bottom: 24px; }
.detail-block .body strong { color: var(--fg); font-weight: 500; }
.detail-block .body h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
  letter-spacing: -0.005em;
}
.detail-block .body ul {
  list-style: none;
  margin: 16px 0 24px;
}
.detail-block .body ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.detail-block .body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ─── CARDS GRID (testimonials, creds) ─── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.cred-card {
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cred-card blockquote {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--fg);
}
.cred-card blockquote .quote { color: var(--red); }
.cred-card figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}
.cred-card figcaption .org { color: var(--fg); }

/* ─── PARTNER GRID ─── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner-tile {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  transition: background 300ms;
}
.partner-tile:hover { background: var(--hover-bg); }

/* ─── CV TIMELINE ─── */
.cv-timeline {
  border-top: 1px solid var(--line);
}
.cv-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.cv-row .cv-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
}
.cv-row .cv-role {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.15;
}
.cv-row .cv-org {
  font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.5;
}
.cv-row .cv-org strong { color: var(--fg); font-weight: 500; }

/* ─── CTA / CONTACT ─── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}
.cta-headline em { color: var(--fg-mute); font-style: italic; }
.cta-lede {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-mute);
  max-width: 420px;
}
.cta-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cta-meta .label { color: var(--fg-mute); }
.cta-meta .val { color: var(--fg); font-size: 15px; margin-top: 6px; }
.cta-meta .val.lower { text-transform: none; letter-spacing: 0; }
.cta-meta .val.red { color: var(--red); }

.form { display: flex; flex-direction: column; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  transition: border-color 200ms;
  resize: none;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--red); }
.field input:not(:placeholder-shown):not(:focus),
.field textarea:not(:placeholder-shown):not(:focus) { border-bottom-color: var(--fg); }
.form-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 0;
}
.form-status.ok { color: #6CC189; }
.form-status.err { color: var(--red); }

/* ─── LEGAL PAGE PROSE ─── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 48px;
}
.legal-wrap h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg);
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}
.legal-wrap h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-mute);
  margin-bottom: 16px;
}
.legal-wrap strong { color: var(--fg); font-weight: 500; }
.legal-wrap ul { padding-left: 24px; margin-bottom: 16px; }
.legal-wrap a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap .updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 16px;
}

/* ─── FOOTER ─── */
footer.foot {
  padding: 64px 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.7;
}
.foot-brand .word {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
}
.foot-brand .word .red-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-left: 3px;
  margin-bottom: 8px;
  align-self: center;
}
.foot-col-title {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.foot-col a { display: block; padding: 2px 0; }
.foot-col a:hover { color: var(--red); }
.foot-bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.foot-bottom .legal-links a { padding: 0 6px; }
.foot-bottom .legal-links a:first-child { padding-left: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav.top, section.block, footer.foot, .hero-overlay,
  .page-header, .detail-block, .legal-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { height: auto; min-height: 560px; padding-bottom: 40px; }
  .hero h1 { max-width: 100%; }
  .block-title, .cta-headline { font-size: 40px; margin-bottom: 48px; }
  section.block { padding-top: 80px; padding-bottom: 80px; }
  .creds-grid, .cta-grid, .detail-block { grid-template-columns: 1fr; gap: 40px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 50px 1fr 30px; }
  .service-row .s-desc { grid-column: 2 / -1; }
  .cv-row { grid-template-columns: 1fr; gap: 8px; }
  footer.foot { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .cta-meta { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .detail-block .meta { position: static; }
}

/* ─── CAPACITY BADGE ─── */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bone-soft);
  transition: all 200ms;
}
.capacity-badge .cap-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6CC189;
  box-shadow: 0 0 0 0 rgba(108, 193, 137, 0.6);
  animation: cap-pulse 2.4s infinite;
  flex-shrink: 0;
}
.capacity-badge.full .cap-pulse {
  background: var(--red);
  animation: none;
}
.capacity-badge.full {
  color: var(--red);
  border-color: var(--red);
}
@keyframes cap-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108, 193, 137, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(108, 193, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 193, 137, 0); }
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 250ms;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--fg-mute);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bone-soft) 100%);
}
.pricing-card.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 4px 10px;
  border-radius: 2px;
}
[data-lang="de"] .pricing-card.featured::before { content: "Am häufigsten gewählt"; }

.pc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
}
.pc-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.1;
  margin: 0;
}
.pc-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 0;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.pc-currency {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--fg-mute);
}
.pc-amount {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.pc-period {
  font-size: 14px;
  color: var(--fg-mute);
  margin-left: 4px;
}
.pc-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  text-transform: none;
  margin-top: -4px;
}
.pc-includes {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  flex: 1;
}
.pc-includes li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pc-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--red);
  font-family: var(--font-mono);
}
.pc-includes li:last-child { border-bottom: 0; }
.pc-cta {
  margin-top: 12px;
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── INSTITUTIONAL POSITIONING BANNER ─── */
.positioning-banner {
  padding: 80px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.positioning-banner .pb-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.positioning-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--fg);
  max-width: 780px;
  margin: 0 auto 16px;
}
.positioning-banner h2 em { color: var(--fg-mute); font-style: italic; }
.positioning-banner p {
  font-size: 15px;
  color: var(--fg-mute);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
@media (max-width: 700px) {
  .positioning-banner { padding: 56px 24px; }
}
