/* === GlassTransit consolidated styles === */

/* === Block 1: Main page styles (extracted from index.html lines 207-3476) === */
    /* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --bg-primary: #f7f5f2;
      --bg-alt: #f0eeeb;
      --bg-elevated: #e8e4df;

      --text-primary: #3a3a3a;
      --text-heading: #1a1a18;
      --text-muted: #78716c;
      --text-subtle: #9a958e;

      --accent: #a08968;
      --accent-muted: #8a7558;

      --cta-bg: #3D7A5A;
      --cta-text: #ffffff;
      --cta-hover-bg: #2d5c42;

      --border: #e0dbd4;
      --border-accent: #d0c9c0;

      --placeholder-bg: #E5E5E5;
      --placeholder-border: #999;

      --font: 'Instrument Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

      --container: 960px;
      --container-wide: 1140px;
      --section-pad: 6rem;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font);
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--text-primary);
      background-color: var(--bg-primary);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    main {
      position: relative;
      z-index: 1;
    }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2 {
      font-family: var(--font);
      color: var(--text-heading);
      letter-spacing: -0.02em;
      line-height: 1.15;
      font-weight: 700;
    }

    h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      margin-bottom: 1.2rem;
    }

    h2 {
      font-size: clamp(1.5rem, 3.2vw, 2.1rem);
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1.2rem;
    }

    p:last-child {
      margin-bottom: 0;
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 2rem;
    }

    .container--wide {
      max-width: var(--container-wide);
    }

    section {
      padding: var(--section-pad) 0;
      border-bottom: 1px solid var(--border);
    }

    section:last-of-type {
      border-bottom: none;
    }

    section:nth-of-type(even) {
      background-color: var(--bg-alt);
    }

    /* ============================================================
       CTA BUTTONS
    ============================================================ */
    .cta {
      display: inline-block;
      padding: 1.15rem 2.4rem;
      background: var(--cta-bg);
      color: var(--cta-text);
      font-family: var(--font);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.15s ease;
      margin-top: 2.5rem;
    }

    .cta:hover {
      background-color: var(--cta-hover-bg);
      transform: translateY(-1px);
    }

    .cta:active {
      transform: translateY(0);
    }

    .cta--large {
      padding: 1.3rem 2.8rem;
      font-size: 1.05rem;
    }

    /* ============================================================
       IMAGE PLACEHOLDERS
    ============================================================ */
    .img-placeholder {
      background-color: var(--placeholder-bg);
      border: 1px dashed var(--placeholder-border);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 1.5rem;
      margin-top: 2.5rem;
      position: relative;
    }

    .img-placeholder__label {
      font-size: 0.875rem;
      color: #777;
      line-height: 1.5;
      max-width: 480px;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .img-placeholder--hero {
      aspect-ratio: 16 / 9;
      margin-top: 3rem;
    }

    /* ============================================================
       HERO COLLAGE
    ============================================================ */
    /* Uneven square collage: left = 1 tall image, right = 3 cells */
    .hero-collage {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      grid-template-rows: 1.2fr 0.9fr 0.9fr;
      gap: 6px;
      margin-top: 0;
      border-radius: 6px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
    }

    .hero-collage__item {
      overflow: hidden;
      position: relative;
    }

    .hero-collage__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .hero-collage__item:hover img {
      transform: scale(1.04);
    }

    /* Left column — tall main image spans all 3 rows */
    .hero-collage__item--main {
      grid-row: 1 / 4;
      grid-column: 1 / 2;
    }

    /* Right column — 3 stacked cells */
    .hero-collage__item--tr1 {
      grid-row: 1;
      grid-column: 2;
    }

    .hero-collage__item--tr2 {
      grid-row: 2;
      grid-column: 2;
    }

    .hero-collage__item--br1 {
      grid-row: 3;
      grid-column: 2;
    }

    /* 5th image hidden on desktop — only 4 shown in new layout */
    .hero-collage__item--br2 {
      display: none;
    }

    @media (max-width: 480px) {
      .hero-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.4fr 1fr;
        aspect-ratio: 4 / 5;
        gap: 4px;
      }

      .hero-collage__item--main {
        grid-row: 1;
        grid-column: 1 / 3;
      }

      .hero-collage__item--tr1 {
        grid-row: 2;
        grid-column: 1;
      }

      .hero-collage__item--tr2 {
        grid-row: 2;
        grid-column: 2;
      }

      .hero-collage__item--br1,
      .hero-collage__item--br2 {
        display: none;
      }
    }

    /* ============================================================
       SECTION IMAGES (real images replacing placeholders)
    ============================================================ */
    .section-image {
      margin-top: 2.5rem;
      border-radius: 4px;
      overflow: hidden;
    }

    .section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .section-image--landscape {
      aspect-ratio: 16 / 10;
    }

    .section-image--technical {
      aspect-ratio: 4 / 3;
    }

    .section-image--batch {
      aspect-ratio: 1 / 1;
      margin-top: 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-image--comparison {
      aspect-ratio: 16 / 9;
      flex: 1;
      margin-top: 0;
    }

    .section-image--portrait {
      width: 61px;
      min-width: 61px;
      height: 61px;
      min-height: 61px;
      margin-top: 0;
      margin-bottom: 1.5rem;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      aspect-ratio: 1 / 1;
    }

    .section-image--portrait img {
      width: 260%;
      height: 260%;
      max-width: none;
      object-fit: cover;
      margin-top: -55%;
      margin-left: -80%;
    }

    @media (max-width: 480px) {
      .section-image--portrait {
        width: 54px;
        min-width: 54px;
        height: 54px;
        min-height: 54px;
      }
    }

    /* ============================================================
       STEP VIEWER (hover/click image carousel)
    ============================================================ */
    .step-viewer {
      position: relative;
      aspect-ratio: 4 / 3;
      margin-top: 2.5rem;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
    }

    .step-viewer__slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .step-viewer__slide.is-active {
      opacity: 1;
    }

    .step-viewer__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .step-viewer__nav {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      gap: 0;
      z-index: 2;
    }

    .step-viewer__tab {
      flex: 1;
      padding: 0.7rem 0.5rem;
      background: rgba(26, 26, 24, 0.75);
      color: rgba(247, 245, 242, 0.5);
      font-family: var(--font);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-align: center;
      border: none;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease;
      border-right: 1px solid rgba(247, 245, 242, 0.1);
    }

    .step-viewer__tab:last-child {
      border-right: none;
    }

    .step-viewer__tab:hover {
      background: rgba(26, 26, 24, 0.85);
      color: rgba(247, 245, 242, 0.8);
    }

    .step-viewer__tab.is-active {
      background: rgba(26, 26, 24, 0.9);
      color: #f7f5f2;
    }

    .step-viewer__tab .step-num {
      display: block;
      font-size: 0.625rem;
      opacity: 0.6;
      margin-bottom: 2px;
    }

    @media (max-width: 480px) {
      .step-viewer__tab {
        font-size: 0.6875rem;
        padding: 0.6rem 0.3rem;
      }
    }

    .img-placeholder--landscape {
      aspect-ratio: 16 / 10;
    }

    .img-placeholder--technical {
      aspect-ratio: 4 / 3;
    }

    .img-placeholder--batch {
      aspect-ratio: 21 / 9;
      margin-top: 0;
    }

    .img-placeholder--portrait {
      width: 160px;
      height: 200px;
      margin-top: 0;
      margin-bottom: 1.5rem;
    }

    .img-placeholder--comparison {
      aspect-ratio: 3 / 4;
      flex: 1;
      margin-top: 0;
    }

    .comparison-row {
      display: flex;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .comparison-col {
      flex: 1;
      min-width: 0;
    }

    .comparison-col__label {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.75rem;
      text-align: center;
    }

    /* ============================================================
       BLOCKQUOTE / CALLOUT
    ============================================================ */
    blockquote {
      border-left: 3px solid var(--accent);
      padding: 1.2rem 1.6rem;
      margin: 1.8rem 0;
      background-color: var(--bg-alt);
      color: var(--text-primary);
      font-style: normal;
    }

    section:nth-of-type(even) blockquote {
      background-color: var(--bg-primary);
    }

    /* ============================================================
       LISTS
    ============================================================ */
    .content-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .content-list li {
      position: relative;
      padding-left: 1.6rem;
      margin-bottom: 0.8rem;
      line-height: 1.6;
    }

    .content-list li::before {
      content: '\2014';
      position: absolute;
      left: 0;
      color: var(--accent-muted);
      font-weight: 600;
    }

    .numbered-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
      counter-reset: item;
    }

    .numbered-list li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 0.8rem;
      line-height: 1.6;
      counter-increment: item;
    }

    .numbered-list li::before {
      content: counter(item) '.';
      position: absolute;
      left: 0;
      color: var(--accent-muted);
      font-weight: 600;
      font-size: 0.9375rem;
    }

    /* ============================================================
       EMPHASIS / DISCLAIMER
    ============================================================ */
    .emphasis {
      font-weight: 600;
      color: var(--text-heading);
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .disclaimer {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-style: italic;
    }

    .exclusion {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-top: 2rem;
      font-style: italic;
    }

    /* ============================================================
       TERM (fee / timeline)
    ============================================================ */
    .term {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-heading);
      letter-spacing: -0.01em;
      margin-bottom: 0.5rem;
    }

    /* ============================================================
       LINKS
    ============================================================ */
    .link-underline {
      color: var(--text-heading);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 2px;
      transition: border-color 0.2s ease;
    }

    .link-underline:hover {
      border-color: var(--text-heading);
    }

    /* ============================================================
       FAQ ACCORDION
    ============================================================ */
    .faq-list {
      margin-top: 2rem;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 1.4rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--text-heading);
      text-align: left;
      line-height: 1.4;
    }

    .faq-trigger:hover {
      color: var(--accent-muted);
    }

    .faq-icon {
      position: relative;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-left: 1.5rem;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background-color: var(--text-muted);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .faq-icon::before {
      top: 50%;
      left: 2px;
      right: 2px;
      height: 1.5px;
      transform: translateY(-50%);
    }

    .faq-icon::after {
      left: 50%;
      top: 2px;
      bottom: 2px;
      width: 1.5px;
      transform: translateX(-50%);
    }

    .faq-item--open .faq-icon::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding-bottom: 1.4rem;
      color: var(--text-primary);
      line-height: 1.7;
    }

    .faq-item--open .faq-answer {
      /* Generous cap so multi-paragraph answers (incl. lists) aren't truncated */
      max-height: 1200px;
    }

    /* ============================================================
       SITE HEADER / LOGO
    ============================================================ */
    .site-header {
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .site-header__mark svg {
      display: block;
    }

    .site-header__wordmark {
      display: flex;
      flex-direction: column;
    }

    .site-header__brand {
      font-family: 'Archivo', var(--font);
      font-weight: 900;
      font-size: 1.15rem;
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--text-heading);
    }

    .site-header__brand span {
      color: #3D7A5A;
    }

    .site-header__tagline {
      font-size: 0.5rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 3px;
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #hero {
      padding-top: 2.5rem;
      padding-bottom: var(--section-pad);
      min-height: calc(100vh - 80px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #hero .container {
      max-width: 1280px;
      width: 100%;
    }

    .hero-split {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .hero-split__text {
      flex: 1;
      min-width: 0;
    }

    .hero-split__image {
      flex: 1.05;
      min-width: 0;
    }

    /* ── Full-hero background dot-field canvas ── */
    #hero {
      position: relative;
      overflow: hidden;
    }

    #hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      display: block;
    }

    /* Keep hero content above the canvas — canvas excluded via :not */
    #hero > .container {
      position: relative;
      z-index: 1;
    }

    .hero__subhead {
      font-size: 1.125rem;
      color: var(--text-primary);
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .hero-split {
        flex-direction: column;
        gap: 2rem;
      }

      .hero-split__text {
        order: 1;
      }

      .hero-split__image {
        order: 2;
      }
    }

    /* ============================================================
       DEVELOPMENT PHASE SPLIT LAYOUT
    ============================================================ */
    .dev-split {
      display: flex;
      gap: 4rem;
      align-items: flex-start;
    }

    .dev-split__text {
      flex: 1;
      min-width: 0;
    }

    .dev-split__visual {
      flex: 1;
      min-width: 0;
    }

    .dev-split__visual-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .dev-split__visual .step-viewer {
      margin-top: 0;
    }

    @media (max-width: 768px) {
      .dev-split {
        flex-direction: column;
        gap: 2.5rem;
      }
    }

    /* ============================================================
       COMMERCIAL TERMS SPLIT LAYOUT
    ============================================================ */
    .commercial-split {
      display: flex;
      gap: 4rem;
      align-items: stretch;
    }

    .commercial-split__image {
      flex: 1;
      min-width: 0;
      border-radius: 6px;
      overflow: hidden;
    }

    .commercial-split__image img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      aspect-ratio: unset;
      object-fit: cover;
      display: block;
    }

    .commercial-split__text {
      flex: 1;
      min-width: 0;
    }

    @media (max-width: 768px) {
      .commercial-split {
        flex-direction: column;
        gap: 2.5rem;
      }
    }

    /* ============================================================
       COMMERCIAL TERMS (blueprint background)
    ============================================================ */
    #commercial-terms {
      position: relative;
    }

    #commercial-terms::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    #commercial-terms .container {
      position: relative;
    }

    .terms-covers {
      margin-top: 2rem;
    }

    /* ============================================================
       MID CTA SECTION
    ============================================================ */
    #cta-mid {
      background-color: var(--text-heading);
      color: var(--bg-primary);
    }

    #cta-mid .container {
      text-align: center;
    }

    #cta-mid h2 {
      color: var(--bg-primary);
    }

    #cta-mid p {
      color: var(--bg-elevated);
      font-size: 1.0625rem;
      line-height: 1.75;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    #cta-mid .cta {
      background-color: #ffffff;
      color: #3D7A5A;
      font-weight: 700;
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    #cta-mid .cta:hover {
      background-color: var(--bg-elevated);
      color: #2d5c42;
    }

    /* ============================================================
       WHO THIS IS FOR — VERTICAL CARD ROW
    ============================================================ */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .who-card {
      background-color: var(--bg-primary);
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
      border-radius: 8px;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .who-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .who-card__icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--bg-alt);
      border-radius: 12px;
      flex-shrink: 0;
    }

    .who-card__icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
      stroke-width: 1.75;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .who-card__title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      margin: 0;
    }

    .who-card__text {
      font-size: 0.975rem;
      line-height: 1.55;
      color: var(--text-primary);
      font-weight: 400;
      flex: 1;
      margin: 0;
    }

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

    /* ============================================================
       WHO THIS IS DESIGNED FOR — dark editorial redesign
       Completely distinct from the pilot-categories card grid below
    ============================================================ */
    #who-for {
      background: #0d1a10;
    }
    #who-for h2 {
      color: #ffffff;
      text-shadow: 0 0 40px rgba(61,122,90,0.35);
    }
    #who-for > .container > p {
      color: rgba(255,255,255,0.50);
    }
    #who-for .who-grid {
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 2.5rem;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 16px;
      overflow: hidden;
    }
    #who-for .who-card {
      background: transparent;
      border: none;
      border-radius: 0;
      border-right: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 2.5rem 2rem;
      flex-direction: row;
      align-items: flex-start;
      gap: 1.5rem;
      box-shadow: none;
    }
    #who-for .who-card:nth-child(2n) { border-right: none; }
    #who-for .who-card:nth-child(3),
    #who-for .who-card:nth-child(4) { border-bottom: none; }
    #who-for .who-card:hover {
      transform: none;
      background: rgba(61,122,90,0.07);
      box-shadow: none;
    }
    #who-for .who-card__icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      background: rgba(61,122,90,0.18);
      border: 1px solid rgba(61,122,90,0.42);
      border-radius: 50%;
    }
    #who-for .who-card__icon svg {
      stroke: #6fcf97;
    }
    #who-for .who-card__title {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0.01em;
    }
    #who-for .who-card__text {
      color: rgba(255,255,255,0.52);
      font-size: 0.92rem;
    }
    @media (max-width: 768px) {
      #who-for .who-grid {
        grid-template-columns: 1fr;
      }
      #who-for .who-card { border-right: none; }
      #who-for .who-card:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    }

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

    /* ============================================================
       FOUNDER SECTION
    ============================================================ */
    .founder-header {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .founder-header h2 {
      margin-bottom: 0;
    }

    .founder-role {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--cta-bg);
      margin-bottom: 1rem;
      letter-spacing: 0.01em;
    }

    /* ============================================================
       FINAL CTA SECTION
    ============================================================ */
    #final-cta {
      text-align: center;
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    #final-cta p {
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================================
       SCROLL FADE-IN
    ============================================================ */
    section {
      opacity: 0;
      transform: translateY(64px);
      transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    section.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* h2 headings slide in from left with a delay after section reveal */
    section h2 {
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
    }
    section.is-visible h2 {
      opacity: 1;
      transform: translateX(0);
    }
    section > .container > p, section > .container > h2 + p,
    section > .container > :first-child + p {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }
    section.is-visible > .container > p,
    section.is-visible > .container > h2 + p,
    section.is-visible > .container > :first-child + p {
      opacity: 1;
      transform: translateY(0);
    }

    /* Image zoom-in reveal inside key sections */
    .hero-compare__half picture,
    .solution-split__visual picture,
    .problem-visual picture,
    .compare-visual picture {
      display: block;
      overflow: hidden;
    }
    section .hero-compare__half img,
    section .solution-split__visual:not(:hover) img,
    section .problem-visual:not(:hover) img,
    section .compare-visual:not(:hover) img {
      transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease, opacity 0.5s ease;
    }
    section:not(.is-visible) .hero-compare__half img,
    section:not(.is-visible) .solution-split__visual img,
    section:not(.is-visible) .problem-visual img,
    section:not(.is-visible) .compare-visual img {
      transform: scale(1.08);
    }

    /* Stagger reveal for card grids */
    .problem-visuals .problem-visual,
    .problem-grid .problem-card,
    .use-case-grid .use-case,
    .means-grid .means-card,
    .sus-card-grid .sus-card {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    section.is-visible .problem-visuals .problem-visual,
    section.is-visible .problem-grid .problem-card,
    section.is-visible .use-case-grid .use-case,
    section.is-visible .means-grid .means-card,
    section.is-visible .sus-card-grid .sus-card {
      opacity: 1;
      transform: translateY(0);
    }
    section.is-visible .problem-visuals .problem-visual:nth-child(1),
    section.is-visible .problem-grid .problem-card:nth-child(1),
    section.is-visible .use-case-grid .use-case:nth-child(1),
    section.is-visible .means-grid .means-card:nth-child(1),
    section.is-visible .sus-card-grid .sus-card:nth-child(1) { transition-delay: 0.15s; }
    section.is-visible .problem-visuals .problem-visual:nth-child(2),
    section.is-visible .problem-grid .problem-card:nth-child(2),
    section.is-visible .use-case-grid .use-case:nth-child(2),
    section.is-visible .means-grid .means-card:nth-child(2),
    section.is-visible .sus-card-grid .sus-card:nth-child(2) { transition-delay: 0.25s; }
    section.is-visible .problem-visuals .problem-visual:nth-child(3),
    section.is-visible .problem-grid .problem-card:nth-child(3),
    section.is-visible .use-case-grid .use-case:nth-child(3),
    section.is-visible .means-grid .means-card:nth-child(3),
    section.is-visible .sus-card-grid .sus-card:nth-child(3) { transition-delay: 0.35s; }
    section.is-visible .problem-visuals .problem-visual:nth-child(4),
    section.is-visible .problem-grid .problem-card:nth-child(4),
    section.is-visible .use-case-grid .use-case:nth-child(4),
    section.is-visible .means-grid .means-card:nth-child(4),
    section.is-visible .sus-card-grid .sus-card:nth-child(4) { transition-delay: 0.45s; }
    section.is-visible .use-case-grid .use-case:nth-child(5) { transition-delay: 0.55s; }

    /* Hero parallax halves (scroll-linked, controlled by JS) */
    .hero-compare__half {
      will-change: transform;
      transition: transform 0.05s linear;
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
      section,
      section h2,
      section > .container > p,
      section .hero-compare__half img,
      section .solution-split__visual img,
      section .problem-visual img,
      section .compare-visual img,
      .problem-visuals .problem-visual,
      .problem-grid .problem-card,
      .use-case-grid .use-case,
      .means-grid .means-card,
      .sus-card-grid .sus-card {
        transition: none !important;
        transform: none !important;
      }
    }

    /* ============================================================
       RESPONSIVE: TABLET
    ============================================================ */
    @media (max-width: 768px) {
      :root {
        --section-pad: 4.5rem;
      }

      .container {
        padding: 0 1.5rem;
      }

      #hero {
        padding-top: 3rem;
        min-height: auto;
      }

      .cta {
        padding: 1.1rem 2rem;
      }

      .comparison-row {
        gap: 1rem;
      }

      .founder-header {
        flex-direction: column;
        gap: 1.2rem;
      }
    }

    /* ============================================================
       RESPONSIVE: MOBILE
    ============================================================ */
    @media (max-width: 480px) {
      :root {
        --section-pad: 3.5rem;
      }

      body {
        font-size: 1rem;
      }

      .container {
        padding: 0 1.25rem;
      }

      #hero {
        padding-top: 4rem;
      }

      .cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1.2rem 1.5rem;
      }

      .cta--large {
        padding: 1.3rem 1.5rem;
      }

      .faq-trigger {
        font-size: 1rem;
        padding: 1.2rem 0;
      }

      .term {
        font-size: 1.1rem;
      }

      .comparison-row {
        flex-direction: column;
        gap: 1.5rem;
      }

      .img-placeholder--portrait {
        width: 120px;
        height: 150px;
      }
    }

    /* ============================================================
       REDUCED MOTION
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      section {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .faq-answer {
        transition: none;
      }

      .cta {
        transition: none;
      }
    }

    /* ============================================================
       INITIATIVE SPLIT LAYOUT
    ============================================================ */
    .initiative-split {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .initiative-split__text {
      flex: 1;
      min-width: 0;
    }

    .initiative-split__text h2 {
      margin-bottom: 1rem;
    }

    .initiative-split__image {
      flex: 1;
      min-width: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .initiative-split__image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .initiative-split {
        flex-direction: column;
        gap: 2rem;
      }
    }

    /* ============================================================
       PILOT CATEGORIES (Who This Pilot Is Designed For)
    ============================================================ */
    #pilot-categories {
      background: #f4f6f4;
    }

    .pilot-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
      margin-bottom: 2rem;
    }

    .pilot-grid .who-card {
      padding: 2rem 1.25rem 1.75rem;
      gap: 1rem;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      background: #fff;
      border: 1.5px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      cursor: default;
    }
    .pilot-grid .who-card::before,
    .pilot-grid .who-card::after { display: none; }
    .pilot-grid .who-card .who-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 88px;
      height: 88px;
      background: rgba(61,122,90,0.07);
      border: 1.5px solid rgba(61,122,90,0.18);
      border-radius: 18px;
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
    }
    /* Sonar ping ring */
    .pilot-grid .who-card .who-card__icon::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 21px;
      border: 2px solid rgba(61,122,90,0.5);
      opacity: 0;
      pointer-events: none;
    }
    .pilot-grid .who-card:hover .who-card__icon::after {
      animation: icon-ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
    }
    @keyframes icon-ping {
      0%   { transform: scale(1);    opacity: 0.7; }
      100% { transform: scale(1.85); opacity: 0;   }
    }
    .pilot-grid .who-card .who-card__icon svg {
      width: 42px;
      height: 42px;
      stroke: #3d7a5a;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: filter 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .pilot-grid .who-card .who-card__title {
      position: static;
      color: var(--text-primary);
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      text-shadow: none;
      line-height: 1.3;
      margin: 0;
    }
    .pilot-grid .who-card .who-card__desc {
      color: var(--text-muted);
      font-size: 0.78rem;
      line-height: 1.5;
      margin: 0;
    }
    .pilot-grid .who-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(61,122,90,0.12), 0 0 0 1.5px rgba(61,122,90,0.28);
      border-color: rgba(61,122,90,0.38);
    }
    .pilot-grid .who-card:hover .who-card__icon {
      transform: translateY(-6px) scale(1.12);
      background: rgba(61,122,90,0.13);
      border-color: rgba(61,122,90,0.5);
      box-shadow: 0 12px 28px rgba(61,122,90,0.22);
    }
    .pilot-grid .who-card:hover .who-card__icon svg {
      filter: drop-shadow(0 2px 6px rgba(61,122,90,0.5));
      transform: scale(1.08);
    }
    .pilot-grid .who-card .who-card__title {
      transition: color 0.25s ease;
    }
    .pilot-grid .who-card:hover .who-card__title {
      color: #2c6345;
    }

    .pilot-tagline {
      font-size: 0.9375rem;
      color: var(--text-muted);
      padding-top: 1.75rem;
      border-top: 1px solid var(--border);
      text-align: center;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .pilot-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============================================================
       COMPARISON SECTION BACKGROUND CANVASES
    ============================================================ */
    #comparison {
      position: relative;
      overflow: hidden;
    }

    /* Two half-canvases sit behind the entire section */
    #replaces-petro-canvas,
    #replaces-myco-canvas {
      position: absolute;
      top: 0;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    #replaces-petro-canvas { left: 0;   width: 50%; }
    #replaces-myco-canvas  { right: 0;  width: 50%; }

    /* Soft gradient seam between the two halves */
    #comparison::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: calc(50% - 60px);
      width: 120px;
      background: linear-gradient(to right, transparent, var(--bg-primary) 50%, transparent);
      z-index: 0;
      pointer-events: none;
    }

    #comparison .container {
      position: relative;
      z-index: 1;
    }

    .replaces-split {
      display: flex;
      gap: 4rem;
      align-items: flex-start;
      margin-top: 2.5rem;
    }

    .replaces-split__col {
      flex: 1;
      min-width: 0;
    }

    .replaces-col-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .replaces-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0 0;
    }

    .replaces-list li {
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.9375rem;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .replaces-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      opacity: 0.7;
    }

    .replaces-callout {
      background: var(--bg-alt);
      border-left: 3px solid var(--accent);
      border-radius: 4px;
      padding: 1.25rem 1.5rem;
      margin-top: 2.5rem;
      font-size: 0.9375rem;
      color: var(--text-primary);
      line-height: 1.65;
    }

    @media (max-width: 768px) {
      .replaces-split { flex-direction: column; gap: 2rem; }
    }

    /* ============================================================
       HOW THE PILOT WORKS
    ============================================================ */
    #pilot-how-it-works {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    /* Animated background canvas */
    #pilot-how-it-works::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 28%, rgba(61,122,90,0.12), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(61,122,90,0.10), transparent 32%),
        radial-gradient(circle at 50% 88%, rgba(61,122,90,0.10), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(61,122,90,0.08), transparent 26%);
      animation: pilotGradientDrift 14s ease-in-out infinite alternate;
      z-index: -2;
      pointer-events: none;
    }
    /* SVG mycelium network (encoded) — drifts slowly */
    #pilot-how-it-works::after {
      content: "";
      position: absolute;
      inset: -10%;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'><g fill='none' stroke='%233D7A5A' stroke-width='0.7' opacity='0.35'><path d='M60 90 Q200 40 340 120 T620 80 Q720 100 760 200'/><path d='M40 250 Q180 200 300 280 T580 240 Q700 260 770 340'/><path d='M80 420 Q220 380 360 450 T640 410 Q740 430 780 510'/><path d='M120 540 Q260 500 400 560 Q540 600 700 540'/><path d='M180 60 L240 180 L320 220 L420 160 L520 240'/><path d='M520 100 L580 220 L660 260 L740 200'/><path d='M100 180 L160 300 L240 340 L340 280'/><path d='M380 320 L460 420 L560 380 L640 480'/></g><g fill='%233D7A5A'><circle cx='180' cy='60' r='2.5' opacity='0.5'/><circle cx='240' cy='180' r='3' opacity='0.6'/><circle cx='320' cy='220' r='2.5' opacity='0.5'/><circle cx='420' cy='160' r='3' opacity='0.6'/><circle cx='520' cy='240' r='2.5' opacity='0.5'/><circle cx='580' cy='220' r='2.5' opacity='0.5'/><circle cx='660' cy='260' r='3' opacity='0.6'/><circle cx='740' cy='200' r='2.5' opacity='0.5'/><circle cx='160' cy='300' r='2.5' opacity='0.5'/><circle cx='240' cy='340' r='3' opacity='0.6'/><circle cx='340' cy='280' r='2.5' opacity='0.5'/><circle cx='460' cy='420' r='3' opacity='0.6'/><circle cx='560' cy='380' r='2.5' opacity='0.5'/><circle cx='640' cy='480' r='3' opacity='0.6'/></g></svg>");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      animation: pilotMycelium 22s ease-in-out infinite alternate;
      z-index: -1;
      pointer-events: none;
    }
    @keyframes pilotGradientDrift {
      0%   { transform: translate3d(0, 0, 0) scale(1); }
      50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
      100% { transform: translate3d(2%, -1.5%, 0) scale(1); }
    }
    @keyframes pilotMycelium {
      0%   { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 1; }
      50%  { transform: translate3d(-1.2%, 1%, 0) rotate(-0.4deg); opacity: 0.85; }
      100% { transform: translate3d(1.5%, -0.8%, 0) rotate(0.5deg); opacity: 1; }
    }
    /* Floating dot particles */
    #pilot-how-it-works .pilot-particles {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
    }
    #pilot-how-it-works .pilot-particle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(61,122,90,0.55) 0%, rgba(61,122,90,0) 70%);
      animation: pilotFloat 18s ease-in-out infinite;
    }
    #pilot-how-it-works .pilot-particle:nth-child(1) { top: 12%; left: 8%;  width: 8px; height: 8px; animation-duration: 22s; animation-delay: 0s;  }
    #pilot-how-it-works .pilot-particle:nth-child(2) { top: 28%; left: 92%; width: 5px; height: 5px; animation-duration: 17s; animation-delay: -3s; }
    #pilot-how-it-works .pilot-particle:nth-child(3) { top: 65%; left: 22%; width: 7px; height: 7px; animation-duration: 24s; animation-delay: -6s; }
    #pilot-how-it-works .pilot-particle:nth-child(4) { top: 80%; left: 70%; width: 6px; height: 6px; animation-duration: 19s; animation-delay: -9s; }
    #pilot-how-it-works .pilot-particle:nth-child(5) { top: 45%; left: 50%; width: 9px; height: 9px; animation-duration: 26s; animation-delay: -12s;}
    #pilot-how-it-works .pilot-particle:nth-child(6) { top: 18%; left: 60%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: -2s; }
    #pilot-how-it-works .pilot-particle:nth-child(7) { top: 72%; left: 88%; width: 7px; height: 7px; animation-duration: 23s; animation-delay: -7s; }
    @keyframes pilotFloat {
      0%, 100% { transform: translate(0, 0); opacity: 0.4; }
      25%      { transform: translate(20px, -25px); opacity: 0.9; }
      50%      { transform: translate(-15px, 18px); opacity: 0.6; }
      75%      { transform: translate(12px, 22px); opacity: 0.85; }
    }
    @media (prefers-reduced-motion: reduce) {
      #pilot-how-it-works::before,
      #pilot-how-it-works::after,
      #pilot-how-it-works .pilot-particle { animation: none; }
    }
    .pilot-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .pilot-step {
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
      border-radius: 8px;
      padding: 2rem 1.5rem;
    }

    .pilot-step__num {
      font-family: 'Archivo', var(--font);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--accent);
      opacity: 0.18;
      line-height: 1;
      margin-bottom: 0.75rem;
      letter-spacing: -0.03em;
    }

    .pilot-step__title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .pilot-step__time {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }

    .pilot-step__body {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
    }

    .pilot-step__outcome {
      background: var(--bg-alt);
      border-radius: 6px;
      padding: 0.875rem 1rem;
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .pilot-step__outcome-label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--text-heading);
      margin-bottom: 0.35rem;
    }

    @media (max-width: 768px) {
      .pilot-steps { grid-template-columns: 1fr; }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .site-footer {
      background-color: var(--text-heading);
      color: var(--bg-elevated);
      padding: 3rem 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-brand {
      font-family: 'Archivo', var(--font);
      font-size: 1rem;
      font-weight: 900;
      color: var(--bg-primary);
      margin-bottom: 0.4rem;
      letter-spacing: -0.01em;
    }

    .footer-tagline {
      color: var(--text-subtle);
      margin-bottom: 0;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links a {
      color: var(--bg-elevated);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      padding-bottom: 1px;
      transition: border-color 0.2s ease;
    }

    .footer-links a:hover {
      border-color: var(--accent);
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(247, 245, 242, 0.1);
      color: var(--text-subtle);
      font-size: 0.8125rem;
    }

    @media (max-width: 480px) {
      .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

    /* ============================================================
       FOCUS / ACCESSIBILITY
    ============================================================ */
    .cta:focus-visible,
    .faq-trigger:focus-visible,
    .link-underline:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    /* ============================================================
       SCROLL PROGRESS BAR
    ============================================================ */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: var(--cta-bg);
      z-index: 9999;
      transition: width 0.08s linear;
      pointer-events: none;
    }

    /* ============================================================
       FLOATING STICKY CTA
    ============================================================ */
    .sticky-cta {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--cta-bg);
      color: var(--cta-text);
      padding: 0.85rem 1.75rem;
      border-radius: 100px;
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(61,122,90,0.30);
      z-index: 900;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.2s;
    }
    .sticky-cta.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .sticky-cta:hover { background-color: var(--cta-hover-bg); }
    .sticky-cta:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }
    @media (max-width: 480px) {
      .sticky-cta {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
      }
    }


    /* ============================================================
       HERO HEADLINE STAGGERED REVEAL
    ============================================================ */
    @keyframes slideWordUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal-word {
      display: inline;
      opacity: 0;
      animation: slideWordUp 0.65s ease forwards;
    }
    .hero-sub-reveal {
      opacity: 0;
      animation: slideWordUp 0.65s ease 0.55s forwards;
    }
    .hero-cta-reveal {
      opacity: 0;
      animation: slideWordUp 0.5s ease 0.80s forwards;
    }

    /* ============================================================
       CARD HOVER ENHANCEMENT
    ============================================================ */
    .who-card {
      transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }
    .who-card:hover {
      border-top-color: var(--cta-bg);
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(61,122,90,0.12);
    }
    .who-card__icon svg {
      transition: filter 0.25s ease;
    }
    .who-card:hover .who-card__icon svg {
      filter: drop-shadow(0 0 5px rgba(61,122,90,0.30));
    }

    /* ============================================================
       CTA BUTTON ARROW MICROINTERACTION
    ============================================================ */
    .cta::after {
      content: ' \2192';
      display: inline-block;
      transition: transform 0.22s ease;
    }
    .cta:hover::after {
      transform: translateX(5px);
    }

    /* ============================================================
       HOW-IT-WORKS CONNECTING ACCENT LINE
    ============================================================ */
    .steps-track {
      position: relative;
    }
    .steps-connector {
      position: absolute;
      top: calc(2.5rem + 2rem + 1.6rem);
      left: 14%;
      right: 14%;
      height: 2px;
      background: var(--border);
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
    .steps-connector__fill {
      height: 100%;
      width: 0%;
      background: var(--cta-bg);
      transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }
    .steps-track.is-visible .steps-connector__fill {
      width: 100%;
    }
    @media (max-width: 768px) {
      .steps-connector { display: none; }
    }

    /* ============================================================
       HOW THE PILOT WORKS — DARK EDITORIAL REDESIGN
    ============================================================ */

    /* Section shell — deep forest green */
    #how-it-works {
      background-color: #0b1d12;
      position: relative;
      overflow: hidden;
    }

    /* Atmospheric radial glow from center-top */
    #how-it-works::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(
        ellipse at 50% 0%,
        rgba(61, 122, 90, 0.22) 0%,
        rgba(61, 122, 90, 0.08) 40%,
        transparent 70%
      );
      pointer-events: none;
      z-index: 0;
    }

    /* Container floats above glow layer */
    #how-it-works .container {
      position: relative;
      z-index: 1;
    }

    /* Section heading — white with atmospheric glow */
    #how-it-works h2 {
      color: #ffffff;
      text-shadow:
        0 0 40px rgba(61, 122, 90, 0.45),
        0 0 80px rgba(61, 122, 90, 0.20);
    }

    /* Heading accent underline — lighter green on dark bg */
    #how-it-works h2::after,
    #how-it-works .reveal-heading::after {
      background: rgba(100, 210, 150, 0.55);
    }

    /* Glass cards — overrides .pilot-step border styles */
    #how-it-works .pilot-step {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-top: none;      /* replaced by ::before gradient bar */
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 8px 32px rgba(0, 0, 0, 0.35);
    }

    /* Animated gradient accent bar (draws left-to-right on scroll) */
    #how-it-works .pilot-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(
        90deg,
        #3D7A5A 0%,
        #6fcf97 55%,
        #a08968 100%
      );
      border-radius: 12px 12px 0 0;
      transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
    }

    /* Trigger top bar per card — staggered */
    #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(1)::before {
      width: 100%;
      transition-delay: 0ms;
    }
    #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(2)::before {
      width: 100%;
      transition-delay: 220ms;
    }
    #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(3)::before {
      width: 100%;
      transition-delay: 440ms;
    }

    /* Radial spotlight glow behind the step number */
    #how-it-works .pilot-step::after {
      content: '';
      position: absolute;
      top: -30px;
      left: -30px;
      width: 200px;
      height: 200px;
      background: radial-gradient(
        circle at 35% 35%,
        rgba(61, 122, 90, 0.22) 0%,
        transparent 65%
      );
      pointer-events: none;
      z-index: 0;
    }

    /* All direct children sit above pseudo layers */
    #how-it-works .pilot-step > * {
      position: relative;
      z-index: 1;
    }

    /* Ghost outlined number (overrides color + opacity from base rule) */
    #how-it-works .pilot-step__num {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(100, 210, 150, 0.45);
      text-stroke: 1.5px rgba(100, 210, 150, 0.45);
      opacity: 1;
      font-size: 5.5rem;
      letter-spacing: -0.05em;
      filter: drop-shadow(0 0 10px rgba(61, 122, 90, 0.40));
    }

    /* Step title — white */
    #how-it-works .pilot-step__title {
      color: #ffffff;
    }

    /* Time label — mint green */
    #how-it-works .pilot-step__time {
      color: #6fcf97;
    }

    /* Body text — softened white */
    #how-it-works .pilot-step__body {
      color: rgba(255, 255, 255, 0.62);
    }

    /* Outcome box — amber glassmorphism with pulse */
    #how-it-works .pilot-step__outcome {
      background: rgba(160, 137, 104, 0.10);
      border: 1px solid rgba(160, 137, 104, 0.35);
      color: rgba(255, 255, 255, 0.70);
      animation: amberpulse 3.5s ease-in-out infinite;
    }

    /* Outcome label — warm amber */
    #how-it-works .pilot-step__outcome-label {
      color: #c4a06a;
    }

    /* Amber glow pulse animation */
    @keyframes amberpulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(160, 137, 104, 0); }
      50%       { box-shadow: 0 0 14px 2px rgba(160, 137, 104, 0.18); }
    }

    /* Card hover lift — specificity (1,1,1) beats stagger (0,3,0) */
    #how-it-works .pilot-step:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 20px 50px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(61, 122, 90, 0.25);
    }

    /* Connector line — hidden on dark bg (gradient top bars handle visual progression) */
    #how-it-works .steps-connector {
      display: none;
    }
    #how-it-works .steps-connector__fill {
      background: linear-gradient(90deg, #3D7A5A, #6fcf97 50%, #a08968);
      box-shadow:
        0 0 8px 2px rgba(61, 122, 90, 0.55),
        0 0 20px 4px rgba(61, 122, 90, 0.22);
    }

    /* Mobile: tighten the spotlight */
    @media (max-width: 768px) {
      #how-it-works .pilot-step::after {
        width: 120px;
        height: 120px;
      }
    }

    /* Reduced-motion: instant cuts, no pulse */
    @media (prefers-reduced-motion: reduce) {
      #how-it-works .pilot-step::before { transition: none; width: 100%; }
      #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(1)::before,
      #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(2)::before,
      #how-it-works .pilot-steps.is-visible .pilot-step:nth-child(3)::before {
        transition: none;
        transition-delay: 0ms;
      }
      #how-it-works .pilot-step__outcome { animation: none; }
      #how-it-works .pilot-step:hover { transform: translateY(0); }
    }

    /* ============================================================
       STAGGERED GRID CHILD ANIMATIONS
    ============================================================ */
    .who-card,
    .pilot-steps .pilot-step {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .who-grid.is-visible .who-card,
    .pilot-grid.is-visible .who-card,
    .pilot-steps.is-visible .pilot-step {
      opacity: 1;
      transform: translateY(0);
    }
    /* Stagger delays */
    .who-grid.is-visible .who-card:nth-child(1),
    .pilot-grid.is-visible .who-card:nth-child(1),
    .pilot-steps.is-visible .pilot-step:nth-child(1) { transition-delay: 0ms; }

    .who-grid.is-visible .who-card:nth-child(2),
    .pilot-grid.is-visible .who-card:nth-child(2),
    .pilot-steps.is-visible .pilot-step:nth-child(2) { transition-delay: 90ms; }

    .who-grid.is-visible .who-card:nth-child(3),
    .pilot-grid.is-visible .who-card:nth-child(3),
    .pilot-steps.is-visible .pilot-step:nth-child(3) { transition-delay: 180ms; }

    .who-grid.is-visible .who-card:nth-child(4),
    .pilot-grid.is-visible .who-card:nth-child(4) { transition-delay: 270ms; }

    .pilot-grid.is-visible .who-card:nth-child(5) { transition-delay: 360ms; }
    .pilot-grid.is-visible .who-card:nth-child(6) { transition-delay: 450ms; }
    .pilot-grid.is-visible .who-card:nth-child(7) { transition-delay: 540ms; }
    .pilot-grid.is-visible .who-card:nth-child(8) { transition-delay: 630ms; }

    /* ============================================================
       TRANSPORT REALITY — FULL-BLEED IMAGE
    ============================================================ */
    #transport-reality { padding-bottom: 0; }
    #transport-reality .section-image--landscape {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(-50vw + 50%);
      border-radius: 0;
      margin-top: 2.5rem;
    }

    /* ============================================================
       SECTION H2 ACCENT UNDERLINE
    ============================================================ */
    section h2::after {
      content: '';
      display: block;
      height: 2px;
      background: var(--cta-bg);
      width: 0;
      margin-top: 0.5rem;
      transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    }
    section.is-visible h2::after {
      width: 3rem;
    }
    /* Hide left-aligned underline stubs on centered / profile headings */
    #cta-mid h2::after,
    #about-founder h2::after,
    #final-cta h2::after {
      display: none;
    }

    /* ============================================================
       REDUCED MOTION — NEW ADDITIONS
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      .reveal-word,
      .hero-sub-reveal,
      .hero-cta-reveal {
        animation: none;
        opacity: 1;
      }
      .who-card,
      .pilot-steps .pilot-step {
        opacity: 1;
        transform: none;
        transition-delay: 0ms;
      }
      .steps-connector__fill {
        transition: none;
        width: 100%;
      }
      section h2::after {
        width: 3rem;
        transition: none;
      }
      #scroll-progress {
        transition: none;
      }
      .sticky-cta {
        transition: none;
      }
      .cta::after {
        transition: none;
      }
      /* Pilot cards — disable zoom animation */
      .pilot-grid .who-card,
      .pilot-grid .who-card::before { transition: none; }
    }

    /* ============================================================
       RESTRUCTURED SECTIONS (v2)
       New components for: hero dual-CTA, problem, 3-pillar overview,
       solution split, use-cases, comparison table, performance,
       cost-ops, sustainability, pilot-cta.
    ============================================================ */

    /* Hero — support line & dual CTAs */
    .hero__support {
      font-size: 1rem;
      color: var(--text-muted);
      margin-top: -0.4rem;
      margin-bottom: 0.5rem;
      max-width: 540px;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 2rem;
    }
    .hero-ctas .cta { margin-top: 0; }

    /* Ghost CTA variant */
    .cta--ghost {
      background: transparent;
      color: var(--cta-bg);
      box-shadow: inset 0 0 0 1.5px var(--cta-bg);
    }
    .cta--ghost:hover {
      background: var(--cta-bg);
      color: var(--cta-text);
    }

    /* ── PROBLEM GRID ───────────────────────────────────────────── */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-top: 1.5rem;
    }
    @media (min-width: 800px) {
      .problem-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .problem-card {
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.6rem 1.4rem;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .problem-card:hover {
      transform: translateY(-2px);
      border-color: var(--border-accent);
    }
    .problem-card__icon {
      width: 36px;
      height: 36px;
      color: var(--cta-bg);
      margin-bottom: 0.9rem;
    }
    .problem-card__icon svg { width: 100%; height: 100%; }
    .problem-card__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.35rem;
      font-size: 1rem;
      letter-spacing: -0.01em;
    }
    .problem-card__desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ── 3-PILLAR OVERVIEW ─────────────────────────────────────── */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }
    .pillar-card {
      display: block;
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem 1.5rem 1.6rem;
      text-decoration: none;
      color: inherit;
      position: relative;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .pillar-card:hover {
      transform: translateY(-3px);
      border-color: var(--cta-bg);
      box-shadow: 0 10px 30px rgba(61,122,90,0.10);
    }
    .pillar-card__num {
      position: absolute;
      top: 1rem;
      right: 1.1rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent);
    }
    .pillar-card__icon {
      width: 60px;
      height: 60px;
      color: var(--cta-bg);
      margin-bottom: 1rem;
    }
    .pillar-card__icon svg { width: 100%; height: 100%; }
    .pillar-card__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.35rem;
      font-size: 1.1rem;
      letter-spacing: -0.01em;
    }
    .pillar-card__desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0;
    }
    @media (max-width: 768px) {
      .pillars-grid { grid-template-columns: 1fr; }
    }

    /* ── SOLUTION SPLIT (bulk / strip / molded) ─────────────────── */
    .solution-split {
      display: grid;
      /* Visual column gets more room so the gallery frames render larger
         without disturbing the text column. */
      grid-template-columns: 1fr 1.55fr;
      gap: 3rem;
      align-items: center;
    }
    @media (max-width: 900px) {
      .solution-split { grid-template-columns: 1fr; gap: 1.75rem; }
    }
    .solution-split--reverse {
      /* When the visual is on the left (via order), invert the column sizes
         so the visual still gets the bigger column (1.55fr) and the text
         gets the smaller one (1fr) — same proportions as the default layout,
         just mirrored. */
      grid-template-columns: 1.55fr 1fr;
    }
    .solution-split--reverse .solution-split__text {
      order: 2;
    }
    .solution-split--reverse .solution-split__visual {
      order: 1;
    }
    @media (max-width: 900px) {
      .solution-split--reverse { grid-template-columns: 1fr; }
    }
    .solution-split__visual {
      border-radius: 12px;
      overflow: hidden;
      background: transparent;
      position: relative;
      /* No fixed aspect ratio — container grows to fit the image's
         natural aspect, so the photo is shown in full with no crop. */
    }
    .solution-split__visual img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      box-shadow:
        0 10px 28px rgba(26, 30, 34, 0.10),
        0 2px 6px rgba(26, 30, 34, 0.06);
    }
    .lqip { position: relative; }
    .lqip::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--lqip);
      background-size: cover;
      background-position: center;
      filter: blur(18px);
      transform: scale(1.15);
      z-index: 0;
    }
    .lqip img {
      position: relative;
      z-index: 1;
      opacity: 0;
      transition: opacity 350ms ease;
    }
    .lqip.is-loaded::before {
      opacity: 0;
      transition: opacity 350ms ease 100ms;
    }
    .lqip.is-loaded img { opacity: 1; }
    .solution-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.75rem;
    }
    .solution-sub {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }
    .solution-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-heading);
      margin: 1.25rem 0 0.5rem;
    }
    .solution-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0.25rem;
    }
    .solution-list li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.45rem;
      line-height: 1.6;
      color: var(--text-primary);
    }
    .solution-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cta-bg);
    }
    @media (max-width: 820px) {
      .solution-split {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .solution-split--reverse .solution-split__text,
      .solution-split--reverse .solution-split__visual {
        order: initial;
      }
    }

    /* ── USE CASES GRID ─────────────────────────────────────────── */
    .use-case-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.25rem;
      margin-top: 3rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .use-case {
      flex: 0 1 calc(50% - 0.625rem);
      max-width: 320px;
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem 1.5rem;
      text-align: left;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    @media (min-width: 780px) {
      .use-case { flex: 0 1 calc(33.333% - 0.84rem); max-width: none; }
    }
    .use-case:hover {
      transform: translateY(-4px);
      border-color: var(--border-accent);
      box-shadow: 0 8px 24px -12px rgba(26,30,34,0.12);
    }
    .use-case__icon {
      width: 34px;
      height: 34px;
      color: var(--cta-bg);
      margin-bottom: 0.8rem;
    }
    .use-case__icon svg { width: 100%; height: 100%; }
    .use-case__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.3rem;
      font-size: 0.98rem;
      letter-spacing: -0.01em;
    }
    .use-case__desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ── COMPARISON TABLE ──────────────────────────────────────── */
    #comparison { position: relative; }
    #comparison > .container { position: relative; z-index: 1; }
    .compare-table {
      margin-top: 3rem;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-primary);
    }
    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }
    .compare-row:last-child { border-bottom: none; }
    .compare-cell {
      padding: 1.05rem 1.5rem;
      font-size: 0.98rem;
      line-height: 1.5;
      display: flex;
      align-items: center;
    }
    .compare-row--head .compare-cell {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--bg-alt);
      color: var(--text-heading);
    }
    .compare-cell--from {
      color: var(--text-muted);
      border-right: 1px solid var(--border);
      text-decoration: line-through;
      text-decoration-color: rgba(154,149,142,0.55);
      text-decoration-thickness: 1px;
    }
    .compare-cell--to {
      color: var(--text-heading);
      font-weight: 600;
      background: rgba(61,122,90,0.04);
    }
    .compare-row--head .compare-cell--from,
    .compare-row--head .compare-cell--to {
      color: var(--text-heading);
      background: var(--bg-alt);
      text-decoration: none;
      font-weight: 700;
    }
    .compare-row--head .compare-cell:first-child {
      border-right: 1px solid var(--border);
    }

    /* ── PERFORMANCE ──────────────────────────────────────────── */
    .perf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem 2rem;
      margin-top: 2.5rem;
    }
    .perf-item {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
      padding: 0.4rem 0;
    }
    .perf-item__marker {
      flex-shrink: 0;
      width: 10px;
      height: 10px;
      margin-top: 0.55rem;
      border-radius: 50%;
      background: var(--cta-bg);
      box-shadow: 0 0 0 4px rgba(61,122,90,0.12);
    }
    .perf-item__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.2rem;
      font-size: 1rem;
    }
    .perf-item__desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.55;
    }
    @media (max-width: 640px) {
      .perf-grid { grid-template-columns: 1fr; }
    }

    /* ── COST & OPS SIMPLE LIST ──────────────────────────────── */
    .simple-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0 0;
    }
    .simple-list li {
      position: relative;
      padding: 0.7rem 0 0.7rem 1.75rem;
      border-bottom: 1px solid var(--border);
      line-height: 1.6;
    }
    .simple-list li:last-child { border-bottom: none; }
    .simple-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0.75rem;
      color: var(--cta-bg);
      font-weight: 700;
      font-size: 1rem;
    }
    .simple-list strong {
      color: var(--text-heading);
      font-weight: 700;
    }

    /* ── SUSTAINABILITY ──────────────────────────────────────── */
    .sus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-top: 3rem;
    }
    .sus-card {
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem 1.3rem;
    }
    .sus-card__icon {
      width: 34px;
      height: 34px;
      color: var(--cta-bg);
      margin-bottom: 0.8rem;
    }
    .sus-card__icon svg { width: 100%; height: 100%; }
    .sus-card__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.3rem;
      font-size: 0.98rem;
    }
    .sus-card__desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ── PILOT CTA SECTION ──────────────────────────────────── */
    #pilot-cta {
      background: var(--bg-elevated);
      text-align: center;
    }
    #pilot-cta .container { text-align: center; }
    #pilot-cta h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .pilot-cta__lead {
      font-size: 1.1rem;
      color: var(--text-primary);
      max-width: 620px;
      margin: 0 auto 1.5rem;
    }
    .pilot-cta__points {
      list-style: none;
      padding: 0;
      margin: 1rem auto 2rem;
      max-width: 460px;
      text-align: left;
      display: inline-block;
    }
    .pilot-cta__points li {
      position: relative;
      padding: 0.35rem 0 0.35rem 1.75rem;
      line-height: 1.55;
    }
    .pilot-cta__points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.75rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cta-bg);
    }
    .pilot-cta__buttons {
      display: flex;
      gap: 0.85rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1rem;
    }
    .pilot-cta__buttons .cta { margin-top: 0; }

    /* ── COMPARISON SIDE-BY-SIDE VISUALS ───────────────────────── */
    .compare-visuals {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
      margin: 2.5rem auto 2rem;
      max-width: 960px;
    }
    @media (max-width: 720px) {
      .compare-visuals {
        grid-template-columns: 1fr;
        gap: 0.6rem;
      }
    }
    .compare-visual {
      position: relative;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      border-radius: 12px;
      margin: 0;
      background: var(--bg-elevated);
      box-shadow: 0 6px 18px rgba(26,30,34,0.08);
    }
    .compare-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: filter 0.4s ease, transform 0.6s ease;
    }
    .compare-visual--from img { filter: grayscale(0.45) brightness(0.93); }
    .compare-visual--from:hover img { filter: grayscale(0.1) brightness(1); transform: scale(1.03); }
    .compare-visual--to:hover img { transform: scale(1.03); }
    .compare-visual__label {
      position: absolute;
      top: 0.65rem;
      left: 0.65rem;
      background: rgba(26,30,34,0.82);
      color: #fff;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.65rem;
      border-radius: 4px;
      margin: 0;
      z-index: 2;
    }
    .compare-visual--to .compare-visual__label { background: var(--cta-bg); }

    /* Center transformation arrow */
    .compare-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0 0.2rem;
      color: var(--accent);
    }
    .compare-arrow__icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cta-bg);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      box-shadow: 0 6px 16px rgba(61,122,90,0.3);
      animation: arrowPulse 2.4s ease-in-out infinite;
    }
    .compare-arrow__label {
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--accent);
      white-space: nowrap;
    }
    @keyframes arrowPulse {
      0%, 100% { transform: translateX(0); box-shadow: 0 6px 16px rgba(61,122,90,0.3); }
      50% { transform: translateX(4px); box-shadow: 0 8px 22px rgba(61,122,90,0.45); }
    }
    @media (prefers-reduced-motion: reduce) {
      .compare-arrow__icon { animation: none; }
    }

    /* ── PROBLEM VISUALS GRID ──────────────────────────────────── */
    .problem-visuals {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin: 3rem 0 0;
    }
    @media (min-width: 800px) {
      .problem-visuals {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
      }
    }
    .problem-visual {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 10px;
      background: var(--bg-elevated);
      margin: 0;
    }
    .problem-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(0.55) brightness(0.92) contrast(1.05);
      transition: filter 0.4s ease;
    }
    .problem-visual:hover img {
      filter: grayscale(0.1) brightness(1) contrast(1);
    }
    .problem-visual__caption {
      position: absolute;
      bottom: 0.55rem;
      left: 0.55rem;
      background: rgba(26,30,34,0.82);
      color: #fff;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      margin: 0;
    }

    /* ── PILOT FLOW: HOW IT WORKS STEPS ────────────────────────── */
    #pilot-how-it-works { background: var(--bg-elevated); position: relative; }
    .pilot-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3.5rem;
      position: relative;
    }
    @media (min-width: 900px) {
      .pilot-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
      .pilot-steps::before {
        content: '';
        position: absolute;
        top: 3rem;
        left: 14%;
        right: 14%;
        height: 2px;
        background: linear-gradient(to right, var(--cta-bg) 0%, var(--cta-bg) 100%);
        opacity: 0.18;
        z-index: 0;
        border-radius: 2px;
      }
    }
    .pilot-step {
      position: relative;
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2.5rem 1.75rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      overflow: hidden;
      transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .pilot-step::after {
      content: attr(data-step);
      position: absolute;
      top: -1.25rem;
      right: -0.5rem;
      font-family: 'Archivo', sans-serif;
      font-size: 9rem;
      font-weight: 900;
      color: var(--cta-bg);
      opacity: 0.08;
      line-height: 1;
      letter-spacing: -0.04em;
      pointer-events: none;
      z-index: 0;
      transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .pilot-step:hover {
      border-color: var(--cta-bg);
      transform: translateY(-4px);
      box-shadow: 0 20px 48px -24px rgba(61,122,90,0.3);
    }
    .pilot-step:hover::after { opacity: 0.14; transform: translate(-4px, 4px); }
    .pilot-step > * { position: relative; z-index: 1; }
    .pilot-step__num {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--cta-bg);
      margin: 0 0 0.5rem;
    }
    .pilot-step__num::before {
      content: '';
      display: inline-block;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--cta-bg);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.75rem;
      text-align: center;
      letter-spacing: 0;
    }
    .pilot-step:nth-child(1) .pilot-step__num::before { content: '1'; }
    .pilot-step:nth-child(2) .pilot-step__num::before { content: '2'; }
    .pilot-step:nth-child(3) .pilot-step__num::before { content: '3'; }
    .pilot-step h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-heading);
      margin: 0 0 0.35rem;
      letter-spacing: -0.015em;
      line-height: 1.25;
    }
    .pilot-step__copy {
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }
    .pilot-step__list {
      margin: 0.5rem 0;
      padding-left: 1.1rem;
      color: var(--text-muted);
      line-height: 1.75;
      font-size: 0.95rem;
    }
    .pilot-step__outcome {
      margin-top: auto;
      padding: 0.9rem 1rem;
      background: rgba(61,122,90,0.06);
      border-left: 3px solid var(--cta-bg);
      border-radius: 0 6px 6px 0;
      font-size: 0.9rem;
      color: var(--text-heading);
      line-height: 1.5;
    }
    .pilot-step__outcome strong {
      color: var(--cta-bg);
      text-transform: uppercase;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      display: block;
      margin-bottom: 0.2rem;
    }

    /* ── WHAT THIS MEANS GRID ──────────────────────────────────── */
    .means-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    @media (min-width: 700px) {
      .means-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1100px) {
      .means-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .means-card {
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem 1.3rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }
    .means-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-2px);
    }
    .means-card__icon {
      width: 34px;
      height: 34px;
      color: var(--cta-bg);
      margin-bottom: 0.4rem;
    }
    .means-card__icon svg { width: 100%; height: 100%; }
    .means-card__title {
      font-weight: 700;
      color: var(--text-heading);
      margin: 0;
      font-size: 0.98rem;
      letter-spacing: -0.01em;
    }
    .means-card__desc {
      margin: 0;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ── FIT CHECK ─────────────────────────────────────────────── */
    #fit-check { background: var(--bg-elevated); }
    .fit-check-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .fit-check-inner p { color: var(--text-muted); }
    .fit-check-inner ul {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }
    .fit-check-inner li {
      background: var(--bg-primary);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 0.45rem 1rem;
      font-size: 0.92rem;
      color: var(--text-heading);
    }

    /* ── WHAT WE DO ────────────────────────────────────────────── */
    #what-we-do .container { max-width: 780px; }
    #what-we-do p {
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }
    #what-we-do p:last-child { margin-bottom: 0; }

    /* ── MOLDED OVERLAY LABELS ─────────────────────────────────── */
    .solution-split__visual.molded-labels .molded-label {
      position: absolute;
      background: rgba(26,30,34,0.82);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.3rem 0.65rem;
      border-radius: 4px;
      z-index: 2;
      white-space: nowrap;
      pointer-events: none;
    }
    .molded-label--tl { top: 8%; left: 6%; }
    .molded-label--mid { top: 50%; right: 6%; transform: translateY(-50%); }
    .molded-label--br { bottom: 8%; left: 36%; }
    @media (max-width: 600px) {
      .solution-split__visual.molded-labels .molded-label {
        font-size: 0.62rem;
        padding: 0.22rem 0.5rem;
      }
    }

    /* ── HERO COMPARE — 2x2 squares (BEFORE column | AFTER column) + divider ── */
    .hero-compare {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1.4rem 1.7rem;            /* extra column gap for the divider */
    }
    /* Left column = BEFORE: void fill (top), manual layering (bottom)
       Right column = AFTER:  engineered cavity (top), precision fit (bottom) */
    .hero-compare__half:nth-of-type(1) { grid-column: 1; grid-row: 1; } /* void fill */
    .hero-compare__half:nth-of-type(2) { grid-column: 1; grid-row: 2; } /* manual layering */
    .hero-compare__half:nth-of-type(3) { grid-column: 2; grid-row: 1; } /* engineered cavity */
    .hero-compare__half:nth-of-type(4) { grid-column: 2; grid-row: 2; } /* precision fit */
    .hero-compare__half {
      aspect-ratio: 1 / 1;
    }

    /* Vertical divider in the column gap (BEFORE | AFTER) */
    .hero-compare__divider {
      position: absolute;
      top: 6%;
      bottom: 6%;
      left: 50%;
      width: 0;
      transform: translateX(-50%);
      z-index: 7;
      pointer-events: none;
    }
    .hero-compare__divider::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      transform: translateX(-50%);
      background: linear-gradient(to bottom,
        rgba(61, 122, 90, 0)   0%,
        rgba(61, 122, 90, 0.5) 14%,
        rgba(61, 122, 90, 0.5) 86%,
        rgba(61, 122, 90, 0)   100%);
      border-radius: 2px;
      box-shadow: 0 0 14px rgba(61, 122, 90, 0.25);
    }
    /* Centered green dot on the divider */
    .hero-compare__divider::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--cta-bg, #3D7A5A);
      box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.92),
        0 0 0 5px rgba(61, 122, 90, 0.25);
    }

    .hero-compare__half {
      position: relative;
      overflow: visible;             /* allow sketch labels to overflow */
      border-radius: 18px;
      /* Soft kraft / paper mat behind the photo so contain-fit photos sit
         framed instead of floating on white */
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.6), rgba(232, 224, 208, 0.0) 60%),
        linear-gradient(135deg, #efe9dc 0%, #e2d8c3 100%);
      margin: 0;
      box-shadow:
        0 10px 28px rgba(26, 30, 34, 0.12),
        0 2px 6px rgba(26, 30, 34, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
      transition:
        transform 0.55s cubic-bezier(.2,.7,.3,1),
        box-shadow 0.55s ease,
        filter 0.45s ease;
      animation: heroCardEnter 0.9s cubic-bezier(.2,.7,.3,1) backwards;
    }
    /* Image must clip to the rounded corners even though card is overflow:visible */
    .hero-compare__half img {
      border-radius: inherit;
    }
    .hero-compare__half:nth-of-type(1) { animation-delay: 0.05s; }
    .hero-compare__half:nth-of-type(2) { animation-delay: 0.20s; }
    .hero-compare__half:nth-of-type(3) { animation-delay: 0.35s; }
    .hero-compare__half:nth-of-type(4) { animation-delay: 0.50s; }
    @keyframes heroCardEnter {
      from { opacity: 0; transform: translateY(16px) scale(0.96); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .hero-compare__half picture { display: block; width: 100%; height: 100%; }
    .hero-compare__half img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;          /* show the full photo, no crop */
      object-position: center;
      padding: 0.6rem;              /* mat margin around the photo */
      box-sizing: border-box;
      transition: transform 0.7s cubic-bezier(.2,.7,.3,1), filter 0.45s ease;
      will-change: transform;
    }

    .hero-compare__half--before img {
      filter: grayscale(0.4) brightness(0.92) contrast(1.02) saturate(0.85);
    }
    .hero-compare__half--after {
      box-shadow:
        0 16px 36px rgba(61, 122, 90, 0.2),
        0 4px 12px rgba(26, 30, 34, 0.08);
    }
    @keyframes heroAfterPulse {
      0%, 100% { box-shadow:
        0 16px 36px rgba(61, 122, 90, 0.2),
        0 4px 12px rgba(26, 30, 34, 0.08); }
      50%      { box-shadow:
        0 22px 48px rgba(61, 122, 90, 0.32),
        0 6px 16px rgba(26, 30, 34, 0.10); }
    }

    /* Hover: lift + sharpen */
    .hero-compare__half:hover {
      transform: translateY(-5px);
      box-shadow:
        0 22px 44px rgba(26, 30, 34, 0.18),
        0 8px 18px rgba(61, 122, 90, 0.14);
      z-index: 10;
    }
    .hero-compare__half:hover img {
      transform: scale(1.05);
    }
    .hero-compare__half--before:hover img {
      filter: grayscale(0) brightness(1) contrast(1) saturate(1);
    }

    /* === Hand-drawn sketch labels (handwritten + pencil arrow) === */
    .hero-sketch {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 0.15rem;
      z-index: 8;
      pointer-events: none;
      font-family: 'Caveat', 'Comic Sans MS', cursive;
      font-weight: 600;
      font-size: 1.55rem;
      line-height: 1;
      color: #2a2a2a;
      white-space: nowrap;
    }
    .hero-sketch__text {
      transform: rotate(-3deg);
      transform-origin: center;
    }
    .hero-sketch__arrow {
      width: 70px;
      height: 50px;
      stroke: #2a2a2a;
      stroke-width: 1.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 220;
      stroke-dashoffset: 220;
      animation: sketchDraw 1.2s cubic-bezier(.5,.1,.3,1) forwards;
    }
    .hero-sketch--accent {
      color: #2f6a4d;
    }
    .hero-sketch--accent .hero-sketch__arrow {
      stroke: #2f6a4d;
    }
    @keyframes sketchDraw {
      to { stroke-dashoffset: 0; }
    }

    /* Per-corner placement: the sketch label sits OUTSIDE the card,
       arrow tip pointing inward toward the image */
    /* Top-left card (Void fill) — label hangs above-left */
    .hero-sketch--tl {
      top: -2.3rem;
      left: -1.1rem;
      flex-direction: row;
    }
    .hero-sketch--tl .hero-sketch__arrow { animation-delay: 0.4s; }
    .hero-sketch--tl .hero-sketch__text { transform: rotate(-5deg); }

    /* Top-right card placement (Manual layering) — label hangs above-right */
    .hero-sketch--tr {
      top: -2.3rem;
      right: -1.1rem;
      flex-direction: row-reverse;
    }
    .hero-sketch--tr .hero-sketch__arrow { animation-delay: 0.6s; }
    .hero-sketch--tr .hero-sketch__text { transform: rotate(4deg); }

    /* Bottom-left of hero card (Engineered cavity) — label hangs below-left */
    .hero-sketch--bl {
      bottom: -2.6rem;
      left: -0.6rem;
      flex-direction: row;
    }
    .hero-sketch--bl .hero-sketch__arrow { animation-delay: 0.8s; }
    .hero-sketch--bl .hero-sketch__text { transform: rotate(-3deg); }

    /* Bottom-right card (Precision fit) — label hangs below-right */
    .hero-sketch--br {
      bottom: -2.6rem;
      right: -0.6rem;
      flex-direction: row-reverse;
    }
    .hero-sketch--br .hero-sketch__arrow { animation-delay: 1.0s; }
    .hero-sketch--br .hero-sketch__text { transform: rotate(3deg); }

    /* Mobile: keep 2x2 perfect-square grid + tighten sketch labels */
    @media (max-width: 700px) {
      .hero-compare {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.7rem;
        aspect-ratio: 1 / 1;
      }
      .hero-compare__half:nth-of-type(1),
      .hero-compare__half:nth-of-type(2),
      .hero-compare__half:nth-of-type(3),
      .hero-compare__half:nth-of-type(4) {
        grid-column: auto;
        grid-row: auto;
      }
      .hero-compare__half {
        border-radius: 12px;
        animation: none;
      }
      .hero-sketch {
        font-size: 1.05rem;
      }
      .hero-sketch__arrow {
        width: 44px;
        height: 32px;
        stroke-width: 1.4;
      }
      .hero-sketch--tl, .hero-sketch--tr { top: -1.5rem; }
      .hero-sketch--bl, .hero-sketch--br { bottom: -1.7rem; }
      .hero-sketch--tl, .hero-sketch--bl { left: -0.4rem; }
      .hero-sketch--tr, .hero-sketch--br { right: -0.4rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-compare__half { animation: none !important; }
      .hero-compare__half:hover { transform: none; }
      .hero-sketch__arrow {
        animation: none;
        stroke-dashoffset: 0;
      }
    }

    /* ── FINAL CTA BUTTONS ─────────────────────────────────────── */
    .final-cta__buttons {
      display: flex;
      gap: 0.85rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .final-cta__buttons .cta { margin-top: 0; }

    /* Reduced motion overrides for new sections */
    @media (prefers-reduced-motion: reduce) {
      .problem-card, .pillar-card, .use-case, .sus-card,
      .pilot-step, .means-card {
        transition: none;
      }
    }

/* === Block 2: Secondary styles (extracted from index.html lines 4997-5078) === */
    /* ── Pilot Sign-Up Modal ── */
    .pilot-modal-overlay {
      position: fixed; inset: 0;
      background: rgba(10,15,12,0.60);
      z-index: 1100;
      display: flex; align-items: center; justify-content: center;
      padding: 1rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.22s ease;
    }
    .pilot-modal-overlay.is-open {
      opacity: 1; pointer-events: auto;
    }
    .pilot-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%; max-width: 480px;
      max-height: 90vh; overflow-y: auto;
      padding: 2.5rem 2.25rem 2rem;
      position: relative;
      transform: translateY(12px) scale(0.98);
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    }
    .pilot-modal-overlay.is-open .pilot-modal {
      transform: translateY(0) scale(1);
    }
    .pilot-modal__close {
      position: absolute; top: 1rem; right: 1.1rem;
      background: none; border: none; cursor: pointer;
      font-size: 1.5rem; line-height: 1; color: var(--text-muted);
      padding: 0.25rem 0.4rem; border-radius: 6px;
      transition: color 0.15s, background 0.15s;
    }
    .pilot-modal__close:hover { color: var(--text-primary); background: var(--bg-alt); }
    .pilot-modal__eyebrow {
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--accent); margin: 0 0 0.5rem;
    }
    .pilot-modal__title {
      font-size: 1.4rem; font-weight: 800; margin: 0 0 0.5rem;
      color: var(--text-primary); line-height: 1.25;
    }
    .pilot-modal__sub {
      font-size: 0.875rem; color: var(--text-muted);
      margin: 0 0 1.5rem; line-height: 1.55;
    }
    .pf-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
    .pf-field label { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
    .pf-field label span { color: var(--accent); }
    .pf-field input,
    .pf-field select,
    .pf-field textarea {
      border: 1.5px solid var(--border);
      border-radius: 8px; padding: 0.65rem 0.85rem;
      font-size: 0.9rem; color: var(--text-primary);
      background: var(--bg-primary);
      transition: border-color 0.15s, box-shadow 0.15s;
      font-family: inherit; width: 100%; box-sizing: border-box;
    }
    .pf-field input:focus,
    .pf-field select:focus,
    .pf-field textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(61,122,90,0.12);
    }
    .pf-field textarea { resize: vertical; min-height: 80px; }
    .pf-error { font-size: 0.8rem; color: #c0392b; margin: 0 0 0.75rem; min-height: 1em; }
    .pf-submit { width: 100%; justify-content: center; cursor: pointer; border: none; }
    .pf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
    /* Success */
    .pilot-modal__success { text-align: center; padding: 1rem 0; }
    .pilot-modal__success-icon {
      width: 56px; height: 56px; margin: 0 auto 1.25rem;
      background: rgba(61,122,90,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .pilot-modal__success-icon svg { width: 28px; height: 28px; stroke: var(--accent); }
    @media (max-width: 520px) {
      .pilot-modal { padding: 2rem 1.4rem 1.75rem; border-radius: 16px; }
    }

/* === Pilot CTA — founder quote card (added 2026-04-25) === */
.pilot-cta__founder {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem auto 1.75rem;
  max-width: 640px;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(61, 122, 90, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(26, 30, 34, 0.06);
  backdrop-filter: blur(6px);
}
.pilot-cta__founder picture,
.pilot-cta__founder img {
  display: block;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 4px 12px rgba(26, 30, 34, 0.12);
}
.pilot-cta__quote {
  margin: 0;
  font-style: normal;
}
.pilot-cta__quote p {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #1a1e22;
}
.pilot-cta__quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: #5a6168;
}
.pilot-cta__quote figcaption strong {
  color: #1a1e22;
  font-weight: 700;
}
.pilot-cta__quote figcaption a {
  color: #3d7a5a;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 122, 90, 0.4);
}
.pilot-cta__quote figcaption a:hover {
  border-bottom-color: #3d7a5a;
}
@media (max-width: 600px) {
  .pilot-cta__founder {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
  }
  .pilot-cta__founder picture,
  .pilot-cta__founder img {
    width: 76px;
    height: 76px;
  }
  .pilot-cta__quote figcaption {
    align-items: center;
  }
}

/* === FAQ intro line (added 2026-04-25) === */
.faq-intro {
  max-width: 720px;
  margin: 0.75rem auto 2.25rem;
  text-align: center;
  color: #5a6168;
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .faq-intro { font-size: 0.92rem; margin-bottom: 1.5rem; }
}

/* (Earlier vertical-divider rules removed; the active horizontal-divider rules
   live above in the main HERO COMPARE block.) */
@media (max-width: 700px) {
  .hero-compare__divider { display: none; }
}

/* === Solution-section visual: ONE image, second swaps in on hover ===
   Single 4:3 frame. The first <img> is shown by default; the second is
   stacked behind it and fades in when the visual is hovered. A small
   "hover" badge tells the visitor there's a second view to discover. */
.solution-split__visual--gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
  isolation: isolate;
  display: block;
  padding: 0;
  border: none;
  box-shadow:
    0 14px 36px rgba(26, 30, 34, 0.10),
    0 4px 10px rgba(26, 30, 34, 0.06);
  transition: box-shadow 0.4s ease;
}
.solution-split__visual--gallery:hover {
  box-shadow:
    0 20px 44px rgba(26, 30, 34, 0.14),
    0 6px 14px rgba(26, 30, 34, 0.08);
}
.solution-split__visual--gallery > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: opacity 0.55s cubic-bezier(.2,.7,.3,1), transform 1.4s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
/* === Auto-cycling cross-fade between the 2 gallery images ===
   Both images sit stacked. A pure-CSS keyframe alternates their opacity
   every 7s (~3s on each image + 1s cross-fade). On hover the animation
   pauses so the visitor can examine whichever image is currently shown. */
.solution-split__visual--gallery > img {
  opacity: 1;
}
.solution-split__visual--gallery > img:nth-of-type(1) {
  z-index: 2;
  animation: solnImgCycleA 8s ease-in-out infinite;
}
.solution-split__visual--gallery > img:nth-of-type(2) {
  z-index: 1;
  animation: solnImgCycleB 8s ease-in-out infinite;
}
.solution-split__visual--gallery:hover > img {
  animation-play-state: paused;
}
@keyframes solnImgCycleA {
  0%, 42%   { opacity: 1; }
  50%, 92%  { opacity: 0; }
  100%      { opacity: 1; }
}
@keyframes solnImgCycleB {
  0%, 42%   { opacity: 0; }
  50%, 92%  { opacity: 1; }
  100%      { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .solution-split__visual--gallery > img { animation: none !important; }
  .solution-split__visual--gallery > img:nth-of-type(2) { opacity: 0; }
}
/* === Pilot/Buy modal: radio group for bag size (added 2026-04-25) === */
.pf-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.pf-fieldset legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1e22;
  margin-bottom: 0.5rem;
}
.pf-radio-group {
  display: flex;
  gap: 0.6rem;
}
.pf-radio {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 1.5px solid #d8d3c8;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1e22;
  background: #fafaf8;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.pf-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pf-radio:hover {
  border-color: #3D7A5A;
  background: #f4f7f2;
}
.pf-radio:has(input[type="radio"]:checked) {
  border-color: #3D7A5A;
  background: #ecf2e8;
  box-shadow: 0 0 0 2px rgba(61, 122, 90, 0.18) inset;
}
.pf-radio:has(input[type="radio"]:focus-visible) {
  outline: 2px solid #3D7A5A;
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .pf-radio-group { flex-direction: column; gap: 0.4rem; }
}

/* === WhatsApp floating button (added 2026-04-25) === */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(26, 30, 34, 0.18);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-3px) scale(1.06);
  background: #1ebe57;
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.55),
    0 6px 14px rgba(26, 30, 34, 0.22);
  outline: none;
}
.wa-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.4);
  outline-offset: 3px;
}
@keyframes waPulse {
  0%, 100% { box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(26, 30, 34, 0.18),
    0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%      { box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(26, 30, 34, 0.18),
    0 0 0 16px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* === Problem section: paired photo+card layout (added 2026-04-26) ===
   Each problem pair (photo + matching card) stays grouped together
   across all viewports, so on mobile column 1 (Inconsistent photo +
   Inconsistent Protection card) appears together before column 2, etc. */
.problem-pairs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.problem-pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* The figure inside a pair keeps its aspect ratio + rounded corners */
.problem-pair .problem-visual {
  margin: 0;
}
/* Tablet: 2 columns of pairs */
@media (max-width: 900px) {
  .problem-pairs { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
/* Phone: single column, each pair stacked */
@media (max-width: 520px) {
  .problem-pairs { grid-template-columns: 1fr; }
}

/* === a11y utility: visually hide an element but keep it readable to screen readers === */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === What We Do — text + cursor-zoom infographic === */
#what-we-do .what-we-do__split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
#what-we-do .what-we-do__text h2 {
  margin-top: 0;
}
#what-we-do .what-we-do__text p {
  margin-bottom: 1rem;
}
#what-we-do .what-we-do__text p:last-child {
  margin-bottom: 0;
}
#what-we-do .what-we-do__figure {
  position: relative;
  margin: 0;
  /* overflow visible so the image can grow OUTSIDE the original frame */
  overflow: visible;
  cursor: zoom-in;
  background: transparent;
  z-index: 1;
}
#what-we-do .what-we-do__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 14px 36px rgba(26, 30, 34, 0.10),
    0 4px 10px rgba(26, 30, 34, 0.06);
  outline: 1px solid rgba(26, 30, 34, 0.06);
  outline-offset: -1px;
  /* JS sets transform-origin from cursor position so the zoom expands
     OUTWARD from the cursor — the image overflows the original frame */
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1),
              box-shadow 0.45s ease;
  will-change: transform;
}
/* Float above siblings on hover so the expanded image isn't hidden */
#what-we-do .what-we-do__figure:hover {
  z-index: 30;
}
#what-we-do .what-we-do__figure:hover img {
  transform: scale(1.6);
  box-shadow:
    0 30px 60px rgba(26, 30, 34, 0.22),
    0 10px 24px rgba(26, 30, 34, 0.12);
}
/* Make sure no parent container clips the expanding image */
#what-we-do, #what-we-do > .container {
  overflow: visible;
}
/* Tiny "zoom" hint chip in the corner */
#what-we-do .what-we-do__figure::after {
  content: "Move cursor to zoom";
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 30, 34, 0.78);
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#what-we-do .what-we-do__figure:hover::after {
  opacity: 0;
  transform: translateY(4px);
}
@media (max-width: 900px) {
  #what-we-do .what-we-do__split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  #what-we-do .what-we-do__figure img { transition: none; }
  #what-we-do .what-we-do__figure:hover img { transform: none; }
}

/* Touch fallback for the What We Do zoom (toggled by tap via main.js) */
#what-we-do .what-we-do__figure.is-touch-zoom img {
  transform: scale(2.2);
}
