/* ──────────────────────────────────────────────────────────────────────────
 * Landing-page typography: prevent widows/orphans across every text block.
 * `pretty` (body text) keeps the last line from stranding a single word;
 * `balance` (headings) evens multi-line title wrap. Both are inherited, so
 * setting them on the section containers cascades to descendants.
 * ────────────────────────────────────────────────────────────────────────── */
.page_hero__huG5Q,
.page_section__ERoVC,
.page_problemSection__JhYLj {
  text-wrap: pretty;
}

.page_hero__huG5Q h1,
.page_section__ERoVC h2,
.page_section__ERoVC h3,
.page_problemSection__JhYLj h2,
.page_quoteCard__ItdLo p {
  text-wrap: balance;
}

/* ── Mobile section reorder (problem-first narrative) ──
 * The page wrapper becomes a flex column so the marketing sections can be
 * re-sequenced with CSS `order` (DOM/source order is preserved on desktop).
 * Note: `order` changes visual, not focus, order, which is fine here because the
 * reordered items are independent landmark sections with no cross-dependency.
 * `.flowFeature` wraps the opaque FeatureSection so it is an orderable child. */
@media (max-width: 640px) {
  .page_page__duJP_ {
    display: flex;
    flex-direction: column;
  }
  /* The section anchors are global ids (the subnav links to them). Turbopack's
     CSS Modules hash id selectors too, so :global() is required for these to
     match the real DOM ids. (.hero / .flowFeature are module classes and match
     as-is.) */
  .page_page__duJP_ > .page_hero__huG5Q {
    order: 1;
  }
  .page_page__duJP_ > #the-real-problem {
    order: 2;
  }
  .page_page__duJP_ > #pricing {
    order: 3;
  }
  .page_page__duJP_ > .page_flowFeature__Plc_5 {
    order: 4;
  }
  .page_page__duJP_ > #career-identity {
    order: 5;
  }
  .page_page__duJP_ > #who-its-for {
    order: 6;
  }
}

/* ── Hero ── */
.page_hero__huG5Q {
  background: var(--surface-hero);
  padding: calc(var(--nav-height) + 44px + 64px) var(--page-gutter) 96px;
}

.page_heroGrid__97LDE {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
  align-items: center;
}

.page_heroContent__vVBi0 {
  min-width: 0;
}

.page_heroHeading__73CY5 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 20px 0 14px;
}

/* Hero tagline — the hopeful turn, and the hero's one accent.
   Green is Nari's growth colour, so the single pop of colour lands here,
   on the answer, rather than on the heading's frustration. */
.page_heroTagline__76HKF {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-green-dark);
  margin: 0 0 22px;
  max-width: 560px;
  text-wrap: balance;
}

/* Progressive enhancement: a slow green shimmer gives the accent quiet life.
   Falls back to solid green-dark where background-clip:text is unsupported. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .page_heroTagline__76HKF {
    background: linear-gradient(
      120deg,
      var(--c-green) 0%,
      var(--c-green-dark) 35%,
      var(--c-green) 70%,
      var(--c-green-dark) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: page_heroTaglineShimmer__ljF6N 6s ease-in-out infinite;
  }
}

@keyframes page_heroTaglineShimmer__ljF6N {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .page_heroTagline__76HKF {
    animation: none;
  }
}

.page_heroBody__nhkEj {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 18px;
}

/* Lead sentence + the five benefits as a calm check list. */
.page_heroBenefits__rKS5q {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.page_heroBenefits__rKS5q li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.7vw, 16.5px);
  font-weight: 400;
  color: var(--c-light-body);
  line-height: 1.4;
}

.page_heroBenefitCheck__uynkh {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--c-green-dark);
}

.page_heroCta___l7nr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
}

/* Primary + secondary CTA row (Get Started + the ghost webinar button). */
.page_heroButtons__9IUrk {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Price anchor under the CTA row (mono, matches the for-parents hero). */
.page_heroPrice__fue2p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-green-dark);
}

/* Webinar text link: mobile only (desktop uses the ghost button in the row). */
.page_heroWebinarLink__6fDmz {
  display: none;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: var(--c-light-mute);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page_heroWebinarLink__6fDmz:hover {
  color: var(--c-light-head);
}

.page_heroArt__GzjEJ {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_heroArtImage__O3Ev_ {
  width: 100%;
  height: auto;
  max-width: 560px;
  object-fit: contain;
}

/* Idle float on the hero mascot: a slow, subtle drift that starts after the
   entrance fade so it never compounds with it. The `no-preference` guard plus
   the global `html[data-motion="static"]` kill-switch (iteration-count:1) stop
   it for reduced-motion / "Static" users. */
@media (prefers-reduced-motion: no-preference) {
  @keyframes page_heroFloat__XSN9m {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  .page_heroArtImage__O3Ev_ {
    animation: page_heroFloat__XSN9m 6s ease-in-out 1.4s infinite;
    will-change: transform;
  }
}

.page_statRow__28K7G {
  margin-top: 8px;
}

.page_statDivider__3O1CS {
  height: 1px;
  background: color-mix(in srgb, var(--c-light-mute) 25%, transparent);
  margin-bottom: 20px;
}

/* The stat numbers, labels, and the positioning note all live in the shared
   <ProofStats> component (components/marketing/proof-stats). */

/* Reclaim dead hero whitespace on mobile. The base top padding reserves space
   for the (now hidden) subnav + generous breathing room; on mobile the hero
   only needs to clear the fixed nav. Ordered before the 640px block so the
   smaller breakpoint can tighten the bottom further. */
@media (max-width: 768px) {
  .page_hero__huG5Q {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 48px;
  }

  /* Subnav is hidden on mobile, so anchored sections no longer clear it. */
  .page_section__ERoVC {
    scroll-margin-top: calc(var(--nav-height) + 8px);
  }

  /* 44px touch target for anchor-based CTAs (DS Btn asChild renders an <a>,
     which the layout's native-button rule can't reach). */
  .page_payoffCta__era6v,
  .page_problemBandBtn__VOgQl {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .page_heroGrid__97LDE {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page_heroArt__GzjEJ {
    display: none;
  }

  .page_hero__huG5Q {
    padding-bottom: 40px;
  }

  .page_heroCta___l7nr {
    align-items: stretch;
  }

  /* Full-width primary CTA; the ghost webinar button is hidden on mobile. */
  .page_heroButtons__9IUrk {
    width: 100%;
  }

  .page_heroButtons__9IUrk > * {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .page_heroWebinarBtn__aqktO {
    display: none;
  }

  /* Centered price + the webinar text link (shown in place of the button). */
  .page_heroPrice__fue2p {
    width: 100%;
    text-align: center;
  }

  .page_heroWebinarLink__6fDmz {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }
}

/* ── Sections ── */
.page_section__ERoVC {
  padding: 80px var(--page-gutter);
  background: var(--c-cream-light);
  scroll-margin-top: calc(var(--nav-height) + 44px + 8px);
}

.page_sectionAlt__t5xB9 {
  background: var(--surface-warm);
}

.page_sectionDark__BxMzy {
  background: var(--surface-forest);
}

.page_sectionInner__WHlsH {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.page_eyebrow__LCUmw {
  margin-bottom: 14px;
}

.page_sectionHeading__9D2uE {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 640px;
}

.page_sectionHeadingDark__903cF {
  color: var(--c-text);
}

.page_sectionBody__o_0NJ {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 16px;
}

.page_sectionBodyDark__aROFk {
  color: var(--c-text-mute);
}

/* ── Buttons ── */
.page_textLink__NFjPs {
  font-size: 15px;
  font-weight: 400;
  color: var(--c-light-mute);
  transition: color 0.15s;
}

.page_textLink__NFjPs:hover {
  color: var(--c-light-head);
}


/* ── Who Nari Is For ── */
.page_whoInner__fxryf {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.page_whoHeader__2gWoB {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.page_whoHeading__qZCVJ {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-light-head);
  margin: 12px 0 20px;
  text-wrap: balance;
}

.page_whoHeadingAccent__ItDxL {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-warm-amber);
}

.page_whoIntro__ORVdO {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-light-body);
  margin: 0 auto;
  max-width: 600px;
  text-wrap: pretty;
}

.page_whoIntroAccent__w0yYP {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

/* ── Featured Parents card ── */
.page_parentsFeature__7eo_U {
  position: relative;
  background: var(--surface-forest);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 64px);
  color: var(--c-text);
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 43, 30, 0.04),
    0 24px 60px -24px rgba(26, 43, 30, 0.28);
}

.page_parentsFeature__7eo_U::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 12%,
    color-mix(in srgb, var(--c-warm-amber) 14%, transparent) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.page_parentsFeatureKicker__JHvI9 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-warm-amber);
  margin-bottom: 18px;
}

.page_parentsFeatureIcon__3PlJQ {
  color: var(--c-warm-amber);
}

.page_parentsFeatureTitle__ZXHKc {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
  margin: 0 0 20px;
}

.page_parentsFeatureBody__1QuQP {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-mute);
  max-width: 620px;
  margin: 0 0 22px;
}

.page_parentsFeatureLetter__qm5m1 {
  position: relative;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--c-cream);
  margin: 0 0 20px;
}

.page_parentsFeatureCta__xcH0Z {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-warm-amber);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--c-warm-amber) 40%, transparent);
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.page_parentsFeatureCta__xcH0Z:hover,
.page_parentsFeatureCta__xcH0Z:focus-visible {
  gap: 14px;
  border-bottom-color: var(--c-warm-amber);
  outline: none;
}

.page_parentsFeatureArrow__E0_mM {
  transition: transform 0.2s ease;
}

.page_parentsFeatureCta__xcH0Z:hover .page_parentsFeatureArrow__E0_mM,
.page_parentsFeatureCta__xcH0Z:focus-visible .page_parentsFeatureArrow__E0_mM {
  transform: translateX(2px);
}

/* ── Philosophy + moments pairing (2-col) ── */
.page_whoPairing__lK1go {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  max-width: 1040px;
  margin: 64px auto;
  padding-top: 48px;
  border-top: 1px solid var(--c-border);
  align-items: start;
}

.page_pairingKicker__uEtS8 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-wood-oak);
  margin: 0 0 18px;
}

.page_onePhilosophy__AFx_g {
  margin: 0;
}

.page_onePhilosophyBody__ZUrYh {
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-light-head);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.page_onePhilosophyAccent__ZSIGE {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

/* ── Moments list (editorial, no chrome) ── */
.page_whoMoments___HhK0 {
  min-width: 0;
}

.page_momentsList__1AqZA {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page_momentRow__CGL9C {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--c-border);
}

.page_momentRow__CGL9C:first-child {
  border-top: none;
  padding-top: 4px;
}

.page_momentRow__CGL9C:last-child {
  padding-bottom: 4px;
}

.page_momentTitle__cowpz {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-light-head);
  margin: 0;
  letter-spacing: -0.005em;
}

.page_momentText__dVlXH {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-wood-oak);
  margin: 0;
}

.page_whoClose__fJzXe {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-light-head);
  text-wrap: balance;
}

.page_whoCloseAccent__Kgi1R {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

/* ── Who Nari Is For, hover only ──
   Scroll-reveal now runs through the global `.nari-reveal` system driven by
   <RevealObserver> (works in every browser), so the view() reveals were
   removed here and in the pricing / problem / identity / feature sections. */
@media (prefers-reduced-motion: no-preference) {
  .page_parentsFeature__7eo_U {
    transition: transform 0.35s ease, box-shadow 0.35s ease,
      opacity 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
  }

  .page_parentsFeature__7eo_U:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 2px rgba(26, 43, 30, 0.04),
      0 32px 80px -28px rgba(26, 43, 30, 0.36);
  }
}

@media (max-width: 900px) {
  .page_whoPairing__lK1go {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 48px auto;
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .page_whoHeader__2gWoB {
    margin-bottom: 36px;
  }
  .page_parentsFeature__7eo_U {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .page_momentRow__CGL9C {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}



/* ── The Real Problem ── */
.page_problemSection__JhYLj {
  padding-top: 80px;
  padding-bottom: 72px;
}

.page_problemInner__CogHT {
  max-width: 1040px;
  margin: 0 auto;
}

.page_problemHeader__QJL1c {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.page_problemHeader__QJL1c .page_eyebrow__LCUmw {
  display: inline-flex;
  margin-bottom: 14px;
}

.page_problemHeading__xxiq9 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 auto 18px;
  max-width: 720px;
}

.page_problemHeadingAccent__dab_C {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
  position: relative;
  white-space: nowrap;
}

.page_problemHeadingAccent__dab_C::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -0.08em;
  height: 0.1em;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(100, 130, 44, 0.55) 18%,
    rgba(100, 130, 44, 0.55) 82%,
    transparent 100%
  );
  border-radius: 2px;
  pointer-events: none;
}

.page_problemIntro__1Ij7e {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.page_problemEm__ffJae {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

.page_quoteGrid__w9MKb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 20px;
  margin: 0 0 36px;
  list-style: none;
  padding: 0;
}

.page_quoteCard__ItdLo {
  position: relative;
  background:
    linear-gradient(180deg, #fff 0%, var(--c-cream-light) 100%);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    0 1px 2px rgba(40, 30, 20, 0.04),
    0 8px 24px -16px rgba(40, 30, 20, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
  overflow: hidden;
}

.page_quoteCard__ItdLo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--c-green) 60%, transparent) 50%,
    transparent
  );
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.page_quoteCard__ItdLo:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(40, 30, 20, 0.04),
    0 22px 40px -18px rgba(40, 30, 20, 0.22);
  border-color: color-mix(in srgb, var(--c-green) 30%, var(--c-border));
}

.page_quoteCard__ItdLo:hover::before {
  opacity: 1;
}

.page_quoteCardTop__Jz8ZJ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -4px;
}

.page_quoteIndex__HXTIp {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-green);
  opacity: 0.65;
}

.page_quoteLeaf__AAXjI {
  color: var(--c-green);
  opacity: 0.35;
}

.page_quoteGlyph__muXgB {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.6;
  color: var(--c-green-dark);
  opacity: 0.85;
  margin: 4px 0 -6px;
  -webkit-user-select: none;
          user-select: none;
}

.page_quoteBody__wdzkr {
  position: relative;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--c-light-head);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1 1;
}

.page_quoteDivider__TmEiv {
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--c-wood-oak) 30%, transparent) 50%,
    transparent
  );
  margin: 2px 0;
}

.page_quoteTruth__gnTUz {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--c-wood-oak);
  line-height: 1.55;
  margin: 0;
}

.page_quoteTruthDot__iEPMZ {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-wood-oak);
  opacity: 0.75;
  transform: translateY(-2px);
}

.page_problemBand____v9p {
  position: relative;
  background:
    radial-gradient(
      ellipse at top left,
      color-mix(in srgb, var(--c-warm-amber) 8%, transparent),
      transparent 60%
    ),
    var(--surface-forest);
  border: 1px solid rgba(221, 184, 74, 0.14);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.page_problemBandContent__8bRlc {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1 1 460px;
  min-width: 0;
}

.page_problemBandMark__AsZU7 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.7;
  color: var(--c-warm-amber);
  opacity: 0.45;
  margin-top: 6px;
  flex-shrink: 0;
}

.page_problemBandText__Aijtn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.page_problemBandEm__iHmHu {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-warm-amber);
}

.page_problemBandBtn__VOgQl {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  padding: 11px 18px;
  color: var(--c-cream) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(221, 184, 74, 0.55) !important;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page_problemBandBtn__VOgQl:hover {
  background: rgba(221, 184, 74, 0.18) !important;
  border-color: rgba(221, 184, 74, 0.8) !important;
  color: #fff !important;
}

/* ── Mobile ── */
@media (max-width: 640px) {

  .page_problemSection__JhYLj {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page_problemHeader__QJL1c {
    margin-bottom: 32px;
  }

  .page_problemBand____v9p {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .page_problemBandContent__8bRlc {
    flex-basis: auto;
  }
}

/* ── Career Identity (editorial 3-beat) ── */
.page_identityInner__6jxoU {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

/* ── Editorial hero — portrait left, copy right ── */
.page_identityHero__AgqWj {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.page_identityFigure__yjQJ1 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.page_identityImageWrap__ib7Aj {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: color-mix(in srgb, var(--c-green-dark) 5%, var(--c-cream) 95%);
  /* Subtle 1px brand-tinted border gives the print a defined edge that
     doesn't compete with the watercolour. The three-layer shadow stacks
     a crisp hairline, a soft midground, and a long ambient drop so the
     piece feels "lifted off the page" rather than pasted on. */
  border: 1px solid color-mix(in srgb, var(--c-green-dark) 14%, transparent);
  box-shadow:
    0 1px 3px rgba(26, 43, 30, 0.05),
    0 14px 28px -14px rgba(26, 43, 30, 0.12),
    0 32px 60px -24px rgba(26, 43, 30, 0.22);
}

.page_identityImage__X7jke {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_identityCaption__scnt3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--c-light-body);
  line-height: 1.5;
  margin: 0;
  text-align: center;
  text-wrap: pretty;
}

.page_identityCopy___9bi0 {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page_identityHeading__qLlvK {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 28px;
  text-wrap: balance;
}

.page_identityHeadingAccent__gCGt3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

.page_identityLead__w_StD {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.7;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.page_identityFour__TXY7B {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
  margin-right: 0.2em;
}

.page_identityLeadSoft__Kwplj {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--c-wood-oak);
  line-height: 1.55;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.page_identityPunch__rNyiV {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}

.page_identityPunchAccent__fUP92 {
  color: var(--c-green-dark);
  font-weight: 500;
}

.page_identityCommit__6aYi5 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 400;
  color: var(--c-green-dark);
  line-height: 1.5;
  margin: 20px 0 0;
  text-wrap: balance;
}

.page_identityLink__QK_NB {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--c-green-dark);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--c-green-dark) 35%, transparent);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  align-self: flex-start;
}

.page_identityLink__QK_NB:hover {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}

.page_identityLinkArrow__oD8P_ {
  transition: transform 0.2s ease;
}

.page_identityLink__QK_NB:hover .page_identityLinkArrow__oD8P_ {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .page_identityHero__AgqWj {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .page_identityFigure__yjQJ1 {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   Why Nari + Pricing (merged) — comparison grid leads, price is the payoff.
   On .sectionDark (forest): body uses --c-text/--c-text-mute; small accents use
   --c-gold / --on-dark-accent-warm (AA on dark); --c-warm-amber only on LARGE
   text (≥18.66px → 3:1 AA). Spacing follows the DS --space-* scale.
   ══════════════════════════════════════════════════════════════════════════ */
.page_mergeInner__oR1ZU {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.page_mergeHeader__sai41 {
  max-width: 720px;
  margin: 0 0 var(--space-9);
}

.page_mergeHeading__v3_zb {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.025em;
  line-height: 1.14;
  margin: var(--space-3) 0 var(--space-4);
  text-wrap: balance;
}

.page_mergeHeadingAccent___HROc {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-warm-amber);
}

.page_mergeIntro__VXW2W {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}

/* ── Comparison grid (market over Nari) ── */
.page_compareGrid__NyTP1 {
  list-style: none;
  margin: 0 0 var(--space-9);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: var(--space-4);
}

/* Each card is a subgrid spanning the 4 shared rows (topic / market text /
   Nari label / Nari text), so those rows — and the divider — line up across
   every card no matter how many lines each blurb wraps to. Vertical insets
   come from the first/last child margins; padding-block would offset the
   subgrid tracks and break the cross-card alignment. */
.page_compareCard__g8Kzf {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: var(--space-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border-dark, rgba(245, 240, 234, 0.12));
  border-radius: var(--radius-md);
  padding-inline: var(--space-5);
  transition: transform var(--dur-base, 200ms) var(--ease-out, ease),
    border-color var(--dur-base, 200ms) var(--ease-out, ease),
    background var(--dur-base, 200ms) var(--ease-out, ease),
    opacity 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.page_compareTopic__XcC4m {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-dark-accent-warm);
  margin: var(--space-5) 0 0;
}

.page_compareMarketText__nPHW0 {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.5;
  margin: 0;
}

/* Divider sits on the Nari label's top edge → aligns across cards. */
.page_compareNariLabel__6Oni1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-gold);
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--c-border-dark, rgba(245, 240, 234, 0.12));
}

.page_compareNariText__902TI {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.5;
  margin: 0 0 var(--space-5);
}

.page_mergeDivider__ybyeO {
  border: none;
  border-top: 1px solid var(--c-border-dark, rgba(245, 240, 234, 0.12));
  margin: var(--space-9) 0;
}

/* ── Pricing payoff (with soft gold glow behind the price) ── */
.page_payoff__QicTR {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-7), 6vw, var(--space-10));
  align-items: start;
}

.page_payoff__QicTR::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--c-gold) 12%, transparent),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.page_payoffLeft__MGycD,
.page_payoffRight__Q2jvC {
  position: relative;
  z-index: 1;
}

.page_payoffEyebrow__g1D96 {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--on-dark-accent-warm);
}

.page_payoffHeading__wPoOw {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: var(--space-3) 0 var(--space-4);
}

.page_payoffPrice__L9bkz {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-warm-amber);
}

.page_payoffBody__IiXwh {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.6;
  margin: 0 0 var(--space-6);
  max-width: 420px;
  text-wrap: pretty;
}

.page_payoffCta__era6v {
  align-self: flex-start;
}

/* The "what it replaces" anchor list moved to
   components/marketing/value-anchor (shared with /pricing). */

/* ── Why footer ── */
.page_whyRow__eMvLC {
  list-style: none;
  margin: var(--space-10) 0 0;
  padding: var(--space-9) 0 0;
  border-top: 1px solid var(--c-border-dark, rgba(245, 240, 234, 0.12));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-9));
}

.page_whyItem__FAsmV {
  min-width: 0;
}

.page_whyKicker__997eh {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-gold);
  margin: 0 0 var(--space-3);
}

.page_whyBody__5FGAl {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.page_whySource__5IKuG {
  display: inline-block;
  margin-top: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--c-text-mute);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast, 120ms) ease;
}

.page_whySource__5IKuG:hover {
  color: var(--on-dark-accent-warm);
}

/* ── Pricing, hover only (scroll-reveal now via the global .nari-reveal system) ── */
@media (prefers-reduced-motion: no-preference) {
  .page_compareCard__g8Kzf:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--c-gold) 40%, var(--c-border-dark, rgba(245, 240, 234, 0.12)));
    background: rgba(255, 255, 255, 0.05);
  }
}

/* ── Merged section — responsive ── */
@media (max-width: 900px) {
  .page_compareGrid__NyTP1 {
    grid-template-columns: repeat(2, 1fr);
    /* Base grid only sets column-gap; once the cards wrap to 2 then 1 column
       they need vertical separation or their borders touch. The cards' own
       subgrid row-gap keeps their internal rows at --space-2. */
    row-gap: var(--space-4);
  }
  .page_payoff__QicTR {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .page_whyRow__eMvLC {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

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

