    /* ── Circle z-index fix ── */
    .circled-wrapper { isolation: auto; }
    .product-hero__headline,
    .story__headline,
    .closing-cta__headline { position: relative; z-index: 0; }

    /* ── Product hero — split layout ── */
    .product-hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: clamp(120px, 14vw, 180px) 0 clamp(64px, 8vw, 100px);
      position: relative;
      overflow: hidden;
    }
    .product-hero__inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(48px, 6vw, 80px);
      align-items: center;
    }
    .product-hero__eyebrow {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 500;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--seg-fairshare);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .product-hero__headline {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 900;
      font-size: clamp(34px, 4.2vw, 58px);
      letter-spacing: -0.02em;
      line-height: 1.05;
      color: var(--text-primary);
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .product-hero__lede {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 400;
      font-size: clamp(18px, 1.5vw, 24px);
      color: var(--text-primary);
      line-height: 1.55;
      margin-bottom: 12px;
    }
    .product-hero__body {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 300;
      font-size: clamp(16px, 1.25vw, 19px);
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .product-hero__ctas {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    /* ── Story section — narrative with journey line ── */
    .story {
      position: relative;
      overflow: hidden;
    }

    .story__header {
      text-align: center;
      margin-bottom: clamp(48px, 6vw, 72px);
    }
    .story__eyebrow {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 500;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--seg-fairshare);
      margin-bottom: 20px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .story__headline {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 900;
      font-size: clamp(28px, 3.5vw, 48px);
      letter-spacing: -0.02em;
      line-height: 1.08;
      color: var(--text-primary);
      text-transform: uppercase;
      max-width: 780px;
      margin: 0 auto;
    }
    .story__intro {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 300;
      font-size: clamp(16px, 1.2vw, 19px);
      color: var(--text-body);
      line-height: 1.7;
      text-align: center;
      max-width: 680px;
      margin: 20px auto 0;
    }

    /* Journey timeline */
    .journey {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      padding-left: 48px;
    }
    .journey::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(242,210,112,0.3) 10%,
        rgba(242,210,112,0.3) 90%,
        transparent 100%
      );
    }

    .journey__step {
      position: relative;
      padding: 0 0 clamp(40px, 5vw, 56px);
    }
    .journey__step:last-child {
      padding-bottom: 0;
    }
    .journey__step::before {
      content: '';
      position: absolute;
      left: -38px;
      top: 6px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--bg-section);
      border: 2px solid rgba(242,210,112,0.4);
      z-index: 1;
    }
    .journey__step--glow::before {
      background: var(--seg-fairshare);
      border-color: var(--seg-fairshare);
      box-shadow: 0 0 16px rgba(242,210,112,0.5);
    }
    .journey__label {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 700;
      font-size: clamp(17px, 1.3vw, 21px);
      color: var(--text-primary);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .journey__text {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 300;
      font-size: clamp(15px, 1.1vw, 17px);
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* Resolution text below the journey */
    .story__resolution {
      max-width: 800px;
      margin: clamp(48px, 6vw, 72px) auto 0;
      text-align: center;
    }
    .story__resolution-text {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 400;
      font-size: clamp(20px, 2.2vw, 30px);
      color: var(--text-primary);
      line-height: 1.5;
      text-wrap: balance;
    }
    .story__resolution-sub {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 300;
      font-size: clamp(15px, 1.1vw, 17px);
      color: var(--text-body);
      line-height: 1.7;
      max-width: 640px;
      margin: 20px auto 0;
    }

    /* ── Closing CTA ── */
    .closing-cta {
      height: auto;
      min-height: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .closing-cta__eyebrow {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 500;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--seg-fairshare);
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .closing-cta__headline {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 900;
      font-size: clamp(32px, 4.5vw, 60px);
      letter-spacing: -0.02em;
      line-height: 1.05;
      color: var(--text-primary);
      text-transform: uppercase;
      max-width: 780px;
      margin: 0 auto 28px;
    }
    .closing-cta__body {
      font-family: 'NeueHaasDisplay', sans-serif;
      font-weight: 300;
      font-size: clamp(16px, 1.25vw, 19px);
      color: var(--text-body);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto 16px;
    }
    .closing-cta__actions {
      margin-top: 44px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .product-hero__inner {
        grid-template-columns: 1fr;
      }
      .journey {
        padding-left: 40px;
      }
      .journey__step::before {
        left: -32px;
      }
    }
    @media (max-width: 480px) {
      .product-hero__headline {
        font-size: clamp(28px, 8vw, 40px);
      }
      .story__headline {
        font-size: clamp(24px, 7vw, 36px);
      }
      .closing-cta__headline {
        font-size: clamp(26px, 7vw, 36px);
      }
      .story__resolution-text {
        font-size: clamp(18px, 5vw, 26px);
      }
    }
