/* ============================================================
   Calmora Solutions: partner program page
   Loads after styles.css / work.css and reuses their tokens.
   ============================================================ */

/* ---------- Hero (matches home-page hero sizing) ---------- */

.page-hero .hero-inner { text-align: center; }
.page-hero .page-dek { margin-inline: auto; }
.page-hero .page-title {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
  letter-spacing: -0.032em;
  line-height: 1.1;
  margin-bottom: 22px;
}

/* ---------- Audience cards ---------- */

.feature-card h4 {
  font-size: 1.1875rem;
  letter-spacing: -0.02em;
}
.partner-scope {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.partner-scope::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
}

/* ---------- Margin story (theme-flip band) ---------- */

.margin-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.margin-node {
  padding: 30px 26px;
  border: 1px solid rgba(4, 34, 29, 0.18);
  border-radius: var(--radius);
  background: var(--flip-card);
}
.margin-node .step-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flip-dim);
  margin-bottom: 12px;
}
.margin-node .tile-num { color: var(--flip-ink); }
.margin-node p { color: var(--flip-dim); font-size: 0.875rem; }
.margin-node.hot { background: var(--flip-ink); }
.margin-node.hot .step-tag { color: var(--accent); }
.margin-node.hot .tile-num { color: var(--accent); }
.margin-node.hot p { color: rgba(244, 244, 242, 0.78); }
.margin-note {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--flip-dim);
}

@media (max-width: 860px) {
  .margin-flow { grid-template-columns: 1fr; }
}

/* ---------- White-label stack ---------- */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stack-item {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.stack-item:hover { transform: translateY(-3px); border-color: rgba(45, 212, 191, 0.3); }
.stack-item .service-icon { margin-bottom: 16px; }
.stack-item h4 { font-size: 0.9375rem; margin-bottom: 7px; }
.stack-item p { color: var(--text-dim); font-size: 0.8438rem; }

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

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(45, 212, 191, 0.3); }
.price-card .eyebrow { margin-bottom: 10px; }
.price-card h3 { font-size: 1.0625rem; margin-bottom: 12px; }
.price-card p { color: var(--text-dim); font-size: 0.875rem; margin-bottom: 22px; flex: 1; }
.price-card .price-cta { margin-top: auto; }
.price-card.featured {
  border-color: rgba(45, 212, 191, 0.45);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(45, 212, 191, 0.12), transparent 65%),
    var(--bg-card);
}

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

/* ---------- NDA strip ---------- */

.ndastrip {
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.ndastrip svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
