/* ================================================================
   pricing.css
   PURPOSE: Extra page-level styles for the repurposed pricing.html
            (now the Engagement / Let's Talk page). Base layout tokens
            live in base.css; glass-card, buttons, nav, footer tokens
            live in components.css. This file only adds composition
            unique to the engagement page.
   NOTE: The old tier-card, cost-comparison, and SLA-trio rules have
         been removed. The page now carries the engage-intro thesis, the
         scope-pillars, and the engage-process steps, none of which show
         a price.
================================================================ */

/* Hero on interior pages - split column layout */
.hero--page {
  min-height: 65vh;
  padding-top: calc(var(--nav-h) + var(--space-6));
  padding-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero--page .hero__inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-6);
  align-items: center;
}

.hero--page .hero__copy {
  text-align: left;
  max-width: 560px;
}

.hero--page .hero__headline {
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  line-height: 1.02;
}

.hero--page .hero__headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero--page .hero__subhead {
  max-width: 560px;
  margin: var(--space-3) 0 0;
  font-size: var(--fs-lede);
  color: var(--muted);
  line-height: 1.6;
}

.hero--page .hero__actions {
  justify-content: flex-start;
  margin-top: var(--space-4);
}

/* Flow Field right column card styling */
.flow-card {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 440px;
  height: 480px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.flow-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.flow-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.flow-desc {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   #engage-intro - the thesis block. Wide, editorial prose column.
---------------------------------------------------------------- */
.engage__intro-wrap {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}

.engage__prose {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.engage__prose p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 68ch;
}

.engage__prose p:first-child {
  color: var(--ink);
}

/* ----------------------------------------------------------------
   #scope-pillars + #engage-process - non-price card grids.
   Reuses glass-card; the accent line + dim tint mark the mid card.
---------------------------------------------------------------- */
.scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: var(--maxw);
  margin: 0 auto;
}

.scope__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-3);
}

.scope__card--mid {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-dim) 0%, transparent 100%);
}

.scope__num {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.scope__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}

.scope__body {
  color: var(--ink-dim);
  line-height: 1.65;
}

/* Booking widget */
.book__widget {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3);
  min-height: 740px;
}

/* Responsive */
@media (max-width: 900px) {
  .scope__grid {
    grid-template-columns: 1fr;
  }
}