/* ══════════════════════════════════════════════════════════════════
   STOBOX — Compass v3 (page-specific)
   Loads AFTER v3-system.css. Page-only patterns:
   feature grid (8 modules), output steps, audience grid,
   tier comparison, how-it-works steps, screenshot frame.
   ══════════════════════════════════════════════════════════════════ */

.hero h1{ max-width: 22ch }

/* ── HERO RIBBON — 5-up on compass (Sales Call Required item removed) ── */
.ribbon-inner{ grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px){
  .ribbon-inner{ grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 600px){
  .ribbon-inner{ grid-template-columns: repeat(2, 1fr) }
}

/* ── COMPASS FEATURES GRID (8 modules) ── */
.cp-feat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cp-feat{
  background: var(--bg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base) var(--ease),
              transform .45s cubic-bezier(.22,1,.36,1),
              box-shadow .45s cubic-bezier(.22,1,.36,1);
}
.sec.alt .cp-feat{ background: var(--bg-2) }
.cp-feat:hover{
  background: var(--bg);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10,14,44,0.10);
}
.cp-feat-icon{
  width: 38px; height: 38px;
  border: 1px solid var(--rule);
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.cp-feat-icon svg{
  width: 20px; height: 20px;
}
.cp-feat h3{
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 12px;
}
.cp-feat p{
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 0;
}
@media (max-width: 1100px){ .cp-feat-grid{ grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px){ .cp-feat-grid{ grid-template-columns: 1fr } }

/* ── OUTPUTS / STEPS / AUDIENCE GRID ── */
.cp-step-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cp-step-grid--3{
  grid-template-columns: repeat(3, 1fr);
}
.cp-step{
  position: relative;
  background: var(--bg);
  padding: 38px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: background .35s var(--ease),
              transform .5s cubic-bezier(.22,1,.36,1),
              box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.sec.alt .cp-step{ background: var(--bg-2) }
.cp-step > *{ position: relative; z-index: 2 }

/* top accent stripe — quiet at rest, fills on hover */
.cp-step::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  z-index: 3;
}

/* large typographic watermark in the corner — drives the visual identity */
.cp-step[data-mark]::after{
  content: attr(data-mark);
  position: absolute;
  right: -10px;
  bottom: -38px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 200px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s var(--ease), transform .55s cubic-bezier(.22,1,.36,1);
}
.sec.alt .cp-step[data-mark]::after{ opacity: 0.07 }

.cp-step:hover{
  background: var(--bg);
  transform: translateY(-6px);
  box-shadow:
    0 26px 50px -22px rgba(99,91,255,0.22),
    0 6px 14px -4px rgba(10,10,10,0.05);
  z-index: 4;
}
.cp-step:hover::before{ transform: scaleX(1) }
.cp-step:hover[data-mark]::after{
  opacity: 0.13;
  transform: translate(-6px, -6px);
}

.cp-step-num{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cp-step-num::before{
  content: '';
  width: 22px; height: 2px;
  background: var(--accent);
  transition: width .45s cubic-bezier(.22,1,.36,1);
}
.cp-step:hover .cp-step-num::before{ width: 38px }
.cp-step-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 2px;
}
.cp-step-desc{
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 600px){
  .cp-step[data-mark]::after{ font-size: 150px; bottom: -28px }
}
@media (max-width: 1100px){
  .cp-step-grid{ grid-template-columns: repeat(2, 1fr) }
  .cp-step-grid--3{ grid-template-columns: 1fr }
}
@media (max-width: 600px){ .cp-step-grid{ grid-template-columns: 1fr } }

/* ── HOW IT WORKS — numbered step rows ── */
.cp-flow{
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.cp-flow-step{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.cp-flow-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.cp-flow-body h3{
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.cp-flow-body p{
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 70ch;
}
.cp-flow-body p strong{ color: var(--ink); font-weight: 600 }
@media (max-width: 768px){
  .cp-flow-step{ grid-template-columns: 1fr; gap: 12px }
  .cp-flow-num{ font-size: 42px }
}

/* ── SCREENSHOT (BrowserWindow) ── */
.cp-shot-wrap{
  margin-top: 50px;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-shot-wrap img{
  width: 100%;
  height: auto;
  max-width: 1100px;
  border-radius: 1px;
}

/* ── PRICING TIER GRID (light variant — 4 tiers) ── */
.cp-tiers{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cp-tier{
  background: var(--bg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t-base) var(--ease),
              transform .45s cubic-bezier(.22,1,.36,1),
              box-shadow .45s cubic-bezier(.22,1,.36,1);
}
.cp-tier:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10,14,44,0.10);
}
.cp-tier.popular{
  background: var(--blue-ice);
  outline: 1px solid var(--accent);
  outline-offset: -1px;
  z-index: 1;
}
.cp-tier-badge{
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: -4px;
}
.cp-tier-name{
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  line-height: 1;
  color: var(--ink);
}
.cp-tier-price{
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.cp-tier-price span{
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cp-tier-meta{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.cp-tier-list{
  list-style: none;
  display: flex;
  flex-direction: column;
}
.cp-tier-list li{
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-2);
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.cp-tier-list li:last-child{ border-bottom: 0 }
.cp-tier-list li::before{
  content: '+';
  position: absolute;
  left: 0; top: 6px;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
}
.cp-tier-cta{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 1px;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.cp-tier-cta::after{ content: '→' }
.cp-tier-cta:hover{ background: var(--accent); border-color: var(--accent) }
.cp-tier.popular .cp-tier-cta{ background: var(--accent); border-color: var(--accent) }
.cp-tier.popular .cp-tier-cta:hover{ background: var(--accent-lo); border-color: var(--accent-lo) }
@media (max-width: 1100px){ .cp-tiers{ grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px){ .cp-tiers{ grid-template-columns: 1fr } }
