/* ══════════════════════════════════════════════════
   STOBOX — compass.css
   Stobox Compass section pages — uses site palette
   (ink/blue/border/mid/soft) and DM Sans / Playfair
   Display / DM Mono. Scoped to body.compass-page.
   ══════════════════════════════════════════════════ */

/* ── Sub-nav under main nav (Compass section breadcrumb) ── */
body.compass-page .cp-subnav{
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 280;
}
body.compass-page .cp-subnav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.compass-page .cp-subnav-inner::-webkit-scrollbar{ display: none; }
body.compass-page .cp-subnav-label{
  font-family:'DM Mono',monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  flex-shrink: 0;
}
body.compass-page .cp-subnav-link{
  font-family:'DM Sans',sans-serif;
  font-size: 13.5px;
  color: var(--mid);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
body.compass-page .cp-subnav-link:hover{ color: var(--ink); }
body.compass-page .cp-subnav-link.active{
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 600;
}

/* ── Hero (matches site pattern: dark bg, full-bleed) ── */
body.compass-page .cp-hero{
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 120px 40px 100px;
  min-height: 520px;
  display: flex;
  align-items: center;
}
body.compass-page .cp-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(37,99,235,.18) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(96,165,250,.12) 0%, transparent 60%);
  pointer-events: none;
}
body.compass-page .cp-hero-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
body.compass-page .cp-hero-inner{
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
body.compass-page .cp-hero-eye{
  font-family:'DM Mono',monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue3, #60A5FA);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.compass-page .cp-hero-eye .cp-dot{
  width: 8px;
  height: 8px;
  background: var(--blue3, #60A5FA);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(96,165,250,.6);
  animation: cp-hero-pulse 2s ease-in-out infinite;
}
@keyframes cp-hero-pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(96,165,250,.6); }
  70%{ box-shadow: 0 0 0 12px rgba(96,165,250,0); }
}
body.compass-page .cp-hero h1{
  font-family:'Playfair Display',serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  max-width: 920px;
}
body.compass-page .cp-hero h1 em{
  font-style: italic;
  color: var(--blue3, #60A5FA);
  font-weight: 400;
}
body.compass-page .cp-hero h1 strong{ font-weight: 600; }
body.compass-page .cp-hero-sub{
  font-family:'DM Sans',sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: 0 0 36px;
}
body.compass-page .cp-hero-sub strong{ color: #fff; font-weight: 600; }
body.compass-page .cp-hero-btns{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.compass-page .cp-hero-meta{
  display: flex;
  gap: 22px;
  margin-top: 28px;
  font-family:'DM Mono',monospace;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
}
body.compass-page .cp-hero-meta span::before{
  content: '\2713 ';
  color: var(--blue3, #60A5FA);
  font-weight: 700;
  margin-right: 4px;
}

/* ── Eyebrow utility ── */
body.compass-page .eye{
  font-family:'DM Mono',monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
body.compass-page .sec.dark .eye{ color: var(--blue3, #60A5FA); }

/* ── 3-step "How it works" cards ── */
body.compass-page .cp-step-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 720px){
  body.compass-page .cp-step-grid{ grid-template-columns: repeat(3, 1fr); }
}
body.compass-page .cp-step{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.compass-page .cp-step:hover{
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(7,16,31,.08);
}
body.compass-page .cp-step-num{
  font-family:'DM Mono',monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 14px;
  text-transform: uppercase;
}
body.compass-page .cp-step-title{
  font-family:'Playfair Display',serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
body.compass-page .cp-step-desc{
  font-family:'DM Sans',sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}
body.compass-page .sec.dark .cp-step{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
body.compass-page .sec.dark .cp-step:hover{
  background: rgba(255,255,255,.07);
  border-color: var(--blue3, #60A5FA);
}
body.compass-page .sec.dark .cp-step-title{ color: #fff; }
body.compass-page .sec.dark .cp-step-desc{ color: rgba(255,255,255,.68); }

/* ── 8 questions grid ── */
body.compass-page .cp-q-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 720px){
  body.compass-page .cp-q-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  body.compass-page .cp-q-grid{ grid-template-columns: repeat(4, 1fr); }
}
body.compass-page .cp-q-cell{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
}
body.compass-page .cp-q-cell:hover{
  background: rgba(255,255,255,.07);
  border-color: var(--blue3, #60A5FA);
  transform: translateY(-2px);
}
body.compass-page .cp-q-cell.focal{
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  border-color: var(--blue);
}
body.compass-page .cp-q-num{
  font-family:'DM Mono',monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue3, #60A5FA);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
body.compass-page .cp-q-cell.focal .cp-q-num{ color: rgba(255,255,255,.85); }
body.compass-page .cp-q-text{
  font-family:'Playfair Display',serif;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}
body.compass-page .cp-q-cat{
  font-family:'DM Mono',monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: auto;
}
body.compass-page .cp-q-cell.focal .cp-q-cat{ color: rgba(255,255,255,.78); }

/* ── Detailed question rows (methodology page) ── */
body.compass-page .cp-q-detail{
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
body.compass-page .cp-q-detail:first-child{ border-top: 2px solid var(--ink); padding-top: 36px; }
body.compass-page .cp-q-detail:last-child{ border-bottom: 2px solid var(--ink); }
@media (max-width: 720px){
  body.compass-page .cp-q-detail{ grid-template-columns: 1fr; gap: 16px; }
}
body.compass-page .cp-q-detail-num{
  font-family:'Playfair Display',serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
}
body.compass-page .cp-q-detail-title{
  font-family:'Playfair Display',serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.25;
  letter-spacing: -.005em;
}
body.compass-page .cp-q-detail-body{
  font-family:'DM Sans',sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
}
body.compass-page .cp-q-detail-body p{ margin: 0 0 14px; }
body.compass-page .cp-q-detail-body p:last-child{ margin-bottom: 0; }
body.compass-page .cp-q-detail-body strong{ color: var(--ink); font-weight: 600; }
body.compass-page .cp-q-detail-tag{
  display: inline-block;
  font-family:'DM Mono',monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale, #EFF6FF);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

/* ── Use-case (audience) cards ── */
body.compass-page .cp-aud-grid{
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 720px){
  body.compass-page .cp-aud-grid{ grid-template-columns: repeat(2, 1fr); }
}
body.compass-page .cp-aud-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
body.compass-page .cp-aud-card:hover{
  transform: translateY(-3px);
  border-color: var(--blue);
}
body.compass-page .cp-aud-icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale, #EFF6FF);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
body.compass-page .cp-aud-icon svg{ width: 22px; height: 22px; }
body.compass-page .cp-aud-card h3{
  font-family:'Playfair Display',serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
body.compass-page .cp-aud-card p{
  font-family:'DM Sans',sans-serif;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0 0 18px;
}
body.compass-page .cp-aud-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
body.compass-page .cp-aud-list li{
  font-family:'DM Sans',sans-serif;
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
body.compass-page .cp-aud-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--blue);
}

/* ── Pricing tiers ── */
body.compass-page .cp-tiers{
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
/* 3-tier (default): 1 → 2 → 3 */
@media (min-width: 720px){
  body.compass-page .cp-tiers{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  body.compass-page .cp-tiers{ grid-template-columns: repeat(3, 1fr); }
}
/* 4-tier override: 1 → 2x2 → 4 in a row */
body.compass-page .cp-tiers.cp-tiers-4{ grid-template-columns: 1fr; }
@media (min-width: 720px){
  body.compass-page .cp-tiers.cp-tiers-4{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1180px){
  body.compass-page .cp-tiers.cp-tiers-4{ grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
/* Tighter card padding when 4 in a row to keep proportions balanced */
@media (min-width: 1180px){
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier{ padding: 30px 24px; }
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier-price .pv{ font-size: 42px; }
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier-features{ margin: 20px 0 24px; }
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier-features li{ font-size: 13.5px; padding: 6px 0 6px 22px; }
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier-cta{ padding: 12px 18px; font-size: 13.5px; }
  body.compass-page .cp-tiers.cp-tiers-4 .cp-tier-badge{ left: 24px; }
}
body.compass-page .cp-tier{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.compass-page .cp-tier:hover{
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 36px rgba(7,16,31,.08);
}
body.compass-page .cp-tier.featured{
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 48px rgba(7,16,31,.18);
}
body.compass-page .cp-tier.featured:hover{ border-color: var(--blue); }
body.compass-page .cp-tier-badge{
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--blue);
  color: #fff;
  font-family:'DM Mono',monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
body.compass-page .cp-tier-name{
  font-family:'Playfair Display',serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}
body.compass-page .cp-tier.featured .cp-tier-name{ color: #fff; }
body.compass-page .cp-tier-tag{
  font-family:'DM Sans',sans-serif;
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 24px;
}
body.compass-page .cp-tier.featured .cp-tier-tag{ color: rgba(255,255,255,.55); }
body.compass-page .cp-tier-price{
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
body.compass-page .cp-tier-price .pv{
  font-family:'Playfair Display',serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
body.compass-page .cp-tier.featured .cp-tier-price .pv{ color: #fff; }
body.compass-page .cp-tier-price .pu{
  font-family:'DM Mono',monospace;
  font-size: 13px;
  color: var(--mid);
}
body.compass-page .cp-tier.featured .cp-tier-price .pu{ color: rgba(255,255,255,.65); }
body.compass-page .cp-tier-price .pc{
  font-family:'DM Sans',sans-serif;
  font-size: 15px;
  color: var(--soft);
  margin-bottom: 24px;
  min-height: 22px;
}
body.compass-page .cp-tier.featured .cp-tier-price .pc{ color: rgba(255,255,255,.55); }
body.compass-page .cp-tier-features{
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  flex: 1 1 auto;
}
body.compass-page .cp-tier-features li{
  font-family:'DM Sans',sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.55;
}
body.compass-page .cp-tier.featured .cp-tier-features li{ color: rgba(255,255,255,.78); }
body.compass-page .cp-tier-features li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 1px;
  background: var(--blue);
}
body.compass-page .cp-tier.featured .cp-tier-features li::before{ background: var(--blue3, #60A5FA); }
body.compass-page .cp-tier-features li strong{
  color: var(--ink);
  font-weight: 600;
}
body.compass-page .cp-tier.featured .cp-tier-features li strong{ color: #fff; }
body.compass-page .cp-tier-cta{
  display: inline-block;
  text-align: center;
  font-family:'DM Sans',sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  transition: all .15s ease;
  margin-top: auto;
}
body.compass-page .cp-tier-cta.primary{
  background: var(--ink);
  color: #fff;
}
body.compass-page .cp-tier-cta.primary:hover{
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
body.compass-page .cp-tier.featured .cp-tier-cta.primary{
  background: var(--blue);
}
body.compass-page .cp-tier.featured .cp-tier-cta.primary:hover{ background: #fff; color: var(--ink); }
body.compass-page .cp-tier-cta.outline{
  border: 1px solid var(--border);
  color: var(--ink);
  background: transparent;
}
body.compass-page .cp-tier-cta.outline:hover{
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ── Proof stats (3 cells, no EU VASP) ── */
body.compass-page .cp-proof-grid{
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 720px){
  body.compass-page .cp-proof-grid{ grid-template-columns: repeat(3, 1fr); }
}
body.compass-page .cp-proof-stat{
  font-family:'Playfair Display',serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
body.compass-page .sec.dark .cp-proof-stat{ color: var(--blue3, #60A5FA); }
body.compass-page .cp-proof-label{
  font-family:'DM Mono',monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ── FAQ ── */
body.compass-page .cp-faq{
  margin-top: 44px;
  max-width: 880px;
}
body.compass-page .cp-faq-item{
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
body.compass-page .cp-faq-item:first-child{ border-top: 2px solid var(--ink); }
body.compass-page .cp-faq-q{
  font-family:'Playfair Display',serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
body.compass-page .cp-faq-a{
  font-family:'DM Sans',sans-serif;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.65;
}
body.compass-page .cp-faq-a a{ color: var(--blue); text-decoration: underline; }
body.compass-page .cp-faq-a a:hover{ color: var(--ink); }

/* ── Long-form essay (why-free page) ── */
body.compass-page .cp-essay{
  max-width: 760px;
  margin-top: 32px;
}
body.compass-page .cp-essay p{
  font-family:'Playfair Display',serif;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
}
body.compass-page .cp-essay p strong{ font-weight: 600; }
body.compass-page .cp-essay p em{ font-style: italic; color: var(--blue); }

/* ── Cross-link strip (links between Compass pages) ── */
body.compass-page .cp-cross{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 720px){
  body.compass-page .cp-cross{ grid-template-columns: repeat(2, 1fr); }
}
body.compass-page .cp-cross-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all .2s ease;
  position: relative;
}
body.compass-page .cp-cross-card:hover{
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(7,16,31,.08);
}
body.compass-page .cp-cross-eye{
  font-family:'DM Mono',monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
body.compass-page .cp-cross-card h3{
  font-family:'Playfair Display',serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
body.compass-page .cp-cross-card p{
  font-family:'DM Sans',sans-serif;
  font-size: 14.5px;
  color: var(--mid);
  margin: 0;
  line-height: 1.55;
}
body.compass-page .cp-cross-card::after{
  content: '\2192';
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 18px;
  color: var(--soft);
  transition: transform .2s ease, color .2s ease;
}
body.compass-page .cp-cross-card:hover::after{
  color: var(--blue);
  transform: translateX(4px);
}

/* ── Final CTA band ── */
body.compass-page .cp-final-cta{
  background: var(--ink);
  color: #fff;
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.compass-page .cp-final-cta::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.18) 0%, transparent 60%);
  pointer-events: none;
}
body.compass-page .cp-final-cta-inner{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
body.compass-page .cp-final-cta h2{
  font-family:'Playfair Display',serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  color: #fff;
}
body.compass-page .cp-final-cta h2 em{ color: var(--blue3, #60A5FA); font-style: italic; font-weight: 400; }
body.compass-page .cp-final-cta p{
  font-family:'DM Sans',sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin: 0 0 36px;
}
body.compass-page .cp-final-cta-btns{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Features grid (overview "What's inside") ── */
body.compass-page .cp-feat-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  body.compass-page .cp-feat-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  body.compass-page .cp-feat-grid{ grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
body.compass-page .cp-feat{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.compass-page .cp-feat:hover{
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(7,16,31,.08);
}
body.compass-page .cp-feat-icon{
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--blue-pale, #EFF6FF);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
body.compass-page .cp-feat-icon svg{ width: 20px; height: 20px; }
body.compass-page .cp-feat h3{
  font-family:'Playfair Display',serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -.005em;
}
body.compass-page .cp-feat p{
  font-family:'DM Sans',sans-serif;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.55;
  margin: 0;
}

/* ── Inline arrow link ── */
body.compass-page .cp-link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family:'DM Sans',sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -.005em;
  transition: gap .15s ease;
}
body.compass-page .cp-link-arrow:hover{ gap: 10px; }

/* ── Hero bg image (matches site .hero-bg-img treatment) ── */
body.compass-page .cp-hero .hero-bg-img{ z-index: 0; }
body.compass-page .cp-hero-grid{ z-index: 1; }
body.compass-page .cp-hero-inner{ z-index: 2; }

/* ── Responsive ── */
@media (max-width: 720px){
  body.compass-page .cp-hero{ padding: 96px 24px 80px; min-height: 440px; }
  body.compass-page .cp-hero-sub{ font-size: 17px; }
  body.compass-page .cp-subnav{ top: 60px; }
  body.compass-page .cp-subnav-inner{ padding: 0 24px; gap: 18px; }
  body.compass-page .cp-q-detail-num{ font-size: 40px; }
  body.compass-page .cp-q-detail-title{ font-size: 22px; }
  body.compass-page .cp-tier{ padding: 28px 24px; }
  body.compass-page .cp-tier-price .pv{ font-size: 38px; }
  body.compass-page .cp-final-cta{ padding: 64px 24px; }
  body.compass-page .cp-feat{ padding: 24px 22px; }
}
