/* =====================================================================
   ENGAGE, STYLES (components & layout)
   Extracted verbatim from the approved Chunk 1/2 build.
   Depends on tokens.css. Do not hard-code hex values here.
   ===================================================================== */

/* Engage wordmark logo (nav + footer), added when the approved logo
   file replaced the interim text wordmark. Selector specificity means
   this applies regardless of the duplicated .nav-logo text rules below. */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; display: block; }
footer img[alt^="Engage"] { height: 40px; width: auto; }

/* Page hero content was left-aligned within the full-bleed coloured band,
   leaving a lot of empty space on wide screens (per client screenshot
   review). Centering the inner block while keeping its own text
   left-aligned matches the requested fix, and, like the logo rule above,
   this single definition wins over the duplicated .page-hero-inner blocks
   further down the file purely because max-width there never set margins. */
.page-hero { display: flex; justify-content: center; }
.page-hero-inner { margin: 0 auto; width: 100%; }

:root { --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--sans); line-height:1.6; background:white; }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0;
    --green-dark: #005a7a;
    --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  html, body {
    height: 100%;
    font-family: var(--sans);
  }

  body {
    background: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 24px;
  }

  .splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 560px;
    width: 100%;
  }

  /* APAG LOGO */
  .apag-logo {
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }

  .apag-wordmark {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 48px;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
  }

  .apag-descriptor {
    text-align: left;
    border-left: 2px solid rgba(255,255,255,0.4);
    padding-left: 12px;
  }

  .apag-descriptor span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  /* HEADLINE */
  .splash-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-align: center;
  }

  /* CTA BUTTON */
  .splash-cta {
    display: inline-block;
    background: var(--green-dark);
    color: var(--white); margin: 0 auto;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    letter-spacing: 0.01em;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
  }

  .splash-cta:hover {
    background: #004a66;
    border-color: rgba(255,255,255,0.35);
  }

  /* FOOTER NOTE */
  .splash-footer {
    position: fixed;
    bottom: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: center;
  }

  /* FADE IN ANIMATION */
  .fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease forwards;
  }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.35s; }
  .delay-3 { animation-delay: 0.55s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0; --green-dark: #005a7a; --green-light: #e6f1f6;
    --ink: #59595C; --slate: #59595C; --silver: #dfe3e6; --mist: #f4f6f2; --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; }
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--silver);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 22px; color: var(--green-dark); text-decoration: none; }
  .nav-logo span { color: var(--green); font-style: italic; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta { background: var(--green); color: var(--white); padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; }
  .nav-parent { font-size: 12px; color: var(--slate); }
  .nav-parent a { color: var(--green); text-decoration: none; font-weight: 500; }
  .hero {
    margin-top: 64px; background: var(--green-dark); padding: 96px 48px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: 540px;
  }
  .hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1FA049; margin-bottom: 20px; }
  .hero h1 { font-family: var(--serif); font-size: 52px; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
  .hero h1 em { font-style: italic; color: #1FA049; }
  .hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
  .hero-actions { display: flex; gap: 12px; }
  .btn-primary { background: var(--green); color: var(--white); padding: 13px 28px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; border: 2px solid var(--green); }
  .btn-ghost { background: transparent; color: var(--white); padding: 13px 28px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); }
  .hero-video { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
  .play-btn { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.4); }
  .play-btn::after { content: ''; border-left: 20px solid white; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
  .video-label { font-size: 13px; color: rgba(255,255,255,0.5); }
  .trust-strip { background: var(--mist); padding: 24px 48px; border-bottom: 1px solid var(--silver); display: flex; align-items: center; gap: 32px; }
  .trust-label { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate); word-break: break-word; overflow-wrap: break-word; line-height: 1.4; }
  .logo-strip { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .logo-ph { height: 30px; border-radius: 3px; background: var(--silver); opacity: 0.65; display: flex; align-items: center; padding: 0 14px; font-size: 11px; font-weight: 600; color: var(--slate); white-space: nowrap; }
  section { padding: 80px 48px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
  h2 { font-family: var(--serif); font-size: 38px; line-height: 1.15; color: var(--color-heading); margin-bottom: 14px; }
  .lead { font-size: 17px; color: var(--slate); line-height: 1.7; max-width: 600px; }
  .tension { background: var(--white); }
  .tension-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 40px; }
  .tension-left p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
  .pain-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 10px; }
  .pain-list { list-style: none; }
  .pain-list li { padding: 12px 14px; border-left: 3px solid var(--silver); font-size: 15px; color: var(--slate); margin-bottom: 6px; background: var(--mist); border-radius: 0 4px 4px 0; }
  .differentiators { background: var(--mist); }
  .diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
  .diff-card { background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 26px 22px; border-top: 3px solid var(--green); }
  .diff-card h3 { font-family: var(--serif); font-size: 20px; color: var(--color-heading); margin-bottom: 8px; }
  .diff-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }
  .framework { background: var(--green-dark); padding: 80px 48px; }
  .framework .section-eyebrow { color: #1FA049; }
  .framework h2 { color: var(--white); }
  .framework .lead { color: rgba(255,255,255,0.7); }
  .grid-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
  .grid-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 22px 18px; }
  .grid-num { font-family: var(--serif); font-size: 34px; color: #1FA049; line-height: 1; margin-bottom: 10px; }
  .grid-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
  .grid-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
  .process { background: var(--white); }
  .process-steps { margin-top: 40px; }
  .step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--silver); align-items: start; }
  .step:last-child { border-bottom: none; }
  .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: var(--green); flex-shrink: 0; }
  .step-content h3 { font-family: var(--serif); font-size: 20px; color: var(--color-heading); margin-bottom: 5px; }
  .step-content p { font-size: 15px; color: var(--slate); line-height: 1.65; }
  .cases { background: var(--mist); }
  .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .case-card { background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 26px 22px; }
  .case-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--green-light); color: var(--green); padding: 3px 10px; border-radius: 3px; margin-bottom: 12px; }
  .case-card h3 { font-family: var(--serif); font-size: 18px; color: var(--color-heading); margin-bottom: 5px; }
  .case-meta { font-size: 12px; color: var(--slate); margin-bottom: 12px; }
  .case-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }
  .case-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; }
  .testimonials { background: var(--white); }
  .vid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
  .vid-ph { aspect-ratio: 16/9; background: var(--mist); border: 1px solid var(--silver); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .vid-play { width: 38px; height: 38px; border-radius: 50%; background: var(--silver); display: flex; align-items: center; justify-content: center; }
  .vid-play::after { content: ''; border-left: 11px solid var(--slate); border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
  .vid-name { font-size: 12px; font-weight: 600; color: var(--ink); }
  .vid-org { font-size: 11px; color: var(--slate); }
  .demo-cta { background: var(--green); padding: 80px 48px; text-align: center; }
  .demo-cta .section-eyebrow { color: rgba(255,255,255,0.6); }
  .demo-cta h2 { color: var(--white); margin: 0 auto 14px; max-width: 580px; }
  .demo-cta p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 500px; margin: 0 auto 28px; }
  .demo-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
  .demo-form input { flex: 1; padding: 13px 16px; border-radius: 4px; border: none; font-size: 15px; font-family: var(--sans); background: rgba(255,255,255,0.15); color: var(--white); }
  .demo-form input::placeholder { color: rgba(255,255,255,0.5); }
  .demo-form button { background: var(--white); color: var(--green); padding: 13px 22px; border-radius: 4px; border: none; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--sans); white-space: nowrap; }
  .demo-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px; }
  .insights { background: var(--mist); }
  .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
  .insight-card { background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 22px; }
  .insight-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 8px; }
  .insight-card h4 { font-family: var(--serif); font-size: 17px; color: var(--color-heading); margin-bottom: 7px; line-height: 1.3; }
  .insight-card p { font-size: 13px; color: var(--slate); line-height: 1.6; }
  .insight-meta { font-size: 12px; color: var(--green); margin-top: 10px; font-weight: 600; }
  footer { background: var(--ink); padding: 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-logo span { color: #1FA049; font-style: italic; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .footer-parent { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-parent a { color: #1FA049; text-decoration: none; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 48px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0; --green-dark: #005a7a; --green-mid: #006690;
    --green-light: #e6f1f6; --green-subtle: #f5f9fb;
    --ink: #59595C; --slate: #59595C; --silver: #dfe3e6;
    --mist: #f4f6f2; --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--silver);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 22px; color: var(--green-dark); text-decoration: none; }
  .nav-logo span { color: var(--green); font-style: italic; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--green); }
  .nav-cta { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 600; }
  .nav-parent { font-size: 12px; color: var(--slate); }
  .nav-parent a { color: var(--green); text-decoration: none; font-weight: 500; }

  /* PAGE HERO */
  .page-hero {
    margin-top: 64px;
    background: var(--green-dark);
    padding: 72px 48px 64px;
  }
  .page-hero-inner { max-width: 780px; }
  .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
  .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .breadcrumb span { margin: 0 8px; }
  .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1FA049; margin-bottom: 16px; }
  .page-hero h1 { font-family: var(--serif); font-size: 48px; line-height: 1.1; color: var(--white); margin-bottom: 20px; letter-spacing: -0.3px; }
  .page-hero h1 em { font-style: italic; color: #1FA049; }
  .page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 600px; margin-bottom: 32px; }
  .hero-meta { display: flex; gap: 32px; }
  .hero-meta-item { }
  .hero-meta-num { font-family: var(--serif); font-size: 28px; color: #1FA049; line-height: 1; }
  .hero-meta-item:nth-child(2) .hero-meta-num { color: var(--apag-yellow); }
  .hero-meta-item:nth-child(3) .hero-meta-num { color: var(--apag-orange); }
  .hero-meta-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

  /* ANCHOR NAV */
  .anchor-nav {
    background: var(--white); border-bottom: 1px solid var(--silver);
    padding: 0 48px; display: flex; gap: 0; overflow-x: auto;
    position: fixed; top: 64px; left: 0; right: 0; z-index: 190;
  }
  .anchor-nav a {
    font-size: 13px; font-weight: 500; color: var(--slate);
    text-decoration: none; padding: 16px 20px;
    border-bottom: 2px solid transparent; white-space: nowrap;
    transition: all 0.2s;
  }
  .anchor-nav a:hover { color: var(--green); border-bottom-color: var(--green-light); }
  .anchor-nav a.active { color: var(--green); border-bottom-color: var(--green); }

  /* INTRO */
  .intro-section { padding: 72px 48px; background: var(--white); }
  .intro-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .intro-left h2 { font-family: var(--serif); font-size: 36px; line-height: 1.2; color: var(--color-heading); margin-bottom: 20px; }
  .intro-left p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
  .intro-right { }
  .principle-list { list-style: none; }
  .principle-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--silver);
  }
  .principle-item:last-child { border-bottom: none; }
  .principle-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 7px;
  }
  .principle-item strong { font-size: 15px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 3px; }
  .principle-item span { font-size: 14px; color: var(--slate); line-height: 1.6; }

  /* TWO PILLARS */
  .pillars-section { padding: 72px 48px; background: var(--mist); }
  .pillars-inner { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
  .pillars-inner h2 { font-family: var(--serif); font-size: 36px; line-height: 1.2; color: var(--color-heading); margin-bottom: 10px; }
  .pillars-inner > p { font-size: 16px; color: var(--slate); margin-bottom: 40px; max-width: 600px; }
  .pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .pillar {
    background: var(--white); border: 1px solid var(--silver);
    border-radius: 6px; overflow: hidden;
  }
  .pillar-head {
    background: var(--green-dark); padding: 24px 28px;
    display: flex; align-items: center; gap: 16px;
  }
  .pillar-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 22px; color: #1FA049; flex-shrink: 0;
  }
  .pillar:nth-of-type(1) .pillar-icon { color: var(--apag-teal); }
  .pillar:nth-of-type(2) .pillar-icon { color: var(--apag-orange); }
  .pillar-head h3 { font-family: var(--serif); font-size: 22px; color: var(--white); }
  .pillar-head p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }
  .pillar-body { padding: 28px; }
  .pillar-dim { padding: 14px 0; border-bottom: 1px solid var(--silver); display: flex; gap: 14px; }
  .pillar-dim:last-child { border-bottom: none; }
  .pillar-dim-label { font-size: 13px; font-weight: 600; color: var(--ink); min-width: 140px; flex-shrink: 0; }
  .pillar-dim-text { font-size: 13px; color: var(--slate); line-height: 1.6; }

  /* THE FIVE GRIDS */
  .grids-section { padding: 72px 48px; background: var(--white); }
  .grids-inner { max-width: 1100px; margin: 0 auto; }
  .grids-inner h2 { font-family: var(--serif); font-size: 36px; color: var(--color-heading); margin-bottom: 10px; }
  .grids-inner > p { font-size: 16px; color: var(--slate); max-width: 600px; margin-bottom: 48px; }

  .grid-block { margin-bottom: 48px; display: grid; grid-template-columns: 280px 1fr; gap: 0; border: 1px solid var(--silver); border-radius: 8px; overflow: hidden; }
  .grid-block:last-child { margin-bottom: 0; }
  .grid-block-left {
    background: var(--green-dark); padding: 36px 28px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .grid-block-num { font-family: var(--serif); font-size: 64px; color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 12px; }
  .grid-block-title { font-family: var(--serif); font-size: 28px; color: var(--white); margin-bottom: 8px; }
  .grid-block-sub { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .grid-block-badge {
    display: inline-block; margin-top: 20px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #1FA049; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 3px; width: fit-content;
  }
  .grid-block-right { padding: 36px 32px; background: var(--white); }
  .grid-block-right h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 20px; }
  .dim-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
  .dim-box { background: var(--mist); border-radius: 6px; padding: 18px 20px; border-left: 3px solid var(--green-light); }
  .dim-box h5 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
  .dim-box p { font-size: 13px; color: var(--slate); line-height: 1.6; }
  .grid-block-note {
    background: var(--green-subtle); border: 1px solid var(--green-light);
    border-radius: 5px; padding: 14px 16px;
    font-size: 13px; color: var(--green-dark); line-height: 1.6;
  }

  /* MUS */
  .mus-section { padding: 56px 48px; background: var(--mist); }
  .mus-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .mus-left h2 { font-family: var(--serif); font-size: 30px; color: var(--color-heading); margin-bottom: 14px; }
  .mus-left p { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 12px; }
  .mus-right { background: var(--white); border: 1px solid var(--silver); border-radius: 8px; padding: 28px; }
  .mus-visual { display: flex; flex-direction: column; gap: 10px; }
  .mus-bar-row { display: flex; align-items: center; gap: 12px; }
  .mus-bar-label { font-size: 12px; color: var(--slate); width: 90px; text-align: right; flex-shrink: 0; }
  .mus-bar-track { flex: 1; height: 8px; background: var(--silver); border-radius: 4px; overflow: hidden; }
  .mus-bar-fill { height: 100%; background: var(--green); border-radius: 4px; }
  .mus-bar-val { font-size: 12px; font-weight: 600; color: var(--green); width: 40px; }

  /* WHAT MATTERS */
  .matters-section { padding: 72px 48px; background: var(--white); }
  .matters-inner { max-width: 1100px; margin: 0 auto; }
  .matters-inner h2 { font-family: var(--serif); font-size: 36px; color: var(--color-heading); margin-bottom: 10px; }
  .matters-inner > p { font-size: 16px; color: var(--slate); max-width: 600px; margin-bottom: 40px; }
  .matters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .matters-card { border: 1px solid var(--silver); border-radius: 6px; padding: 26px 22px; }
  .matters-card h3 { font-family: var(--serif); font-size: 20px; color: var(--color-heading); margin-bottom: 8px; }
  .matters-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }
  .matters-section .matters-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
  .matters-section .matters-photo { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 5; }
  .matters-section .matters-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .matters-section .matters-content { display: flex; flex-direction: column; gap: 24px; }
  .matters-section .matters-intro .section-eyebrow { margin-bottom: 12px; }
  .matters-section .matters-intro p { font-size: 18px; line-height: 1.7; color: var(--ink); margin: 0; }
  .matters-section .matters-content .matters-grid { grid-template-columns: 1fr; gap: 14px; }
  @media (max-width: 760px) { .matters-section .matters-layout { grid-template-columns: 1fr; gap: 24px; } }

  /* YES / NO */
  .yesno-section { padding: 72px 48px; background: var(--mist); }
  .yesno-inner { max-width: 1100px; margin: 0 auto; }
  .yesno-inner h2 { font-family: var(--serif); font-size: 36px; color: var(--color-heading); margin-bottom: 10px; }
  .yesno-inner > p { font-size: 16px; color: var(--slate); max-width: 600px; margin-bottom: 40px; }
  .yesno-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .yesno-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 16px; border-radius: 4px; margin-bottom: 12px; }
  .yes-head { background: var(--green-light); color: var(--green-dark); }
  .no-head { background: #fef2f2; color: #991b1b; }
  .yesno-list { list-style: none; }
  .yesno-list li { font-size: 14px; color: var(--slate); padding: 11px 0; border-bottom: 1px solid var(--silver); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
  .yesno-list li:last-child { border-bottom: none; }
  .tick { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .tick-yes { color: var(--green); }
  .tick-no { color: #dc2626; }

  /* CTA */
  .cta-section { background: var(--green-dark); padding: 80px 48px; text-align: center; }
  .cta-section .eyebrow { color: rgba(255,255,255,0.5); text-align: center; }
  .cta-section h2 { font-family: var(--serif); font-size: 38px; color: var(--white); margin: 0 auto 16px; max-width: 560px; }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 32px; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { background: var(--green); color: var(--white); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; border: 2px solid var(--green); }
  .btn-ghost { background: transparent; color: var(--white); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); }

  /* FOOTER */
  footer { background: var(--ink); padding: 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-logo span { color: #1FA049; font-style: italic; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .footer-parent { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-parent a { color: #1FA049; text-decoration: none; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 48px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0; --green-dark: #005a7a; --green-light: #e6f1f6; --green-subtle: #f5f9fb;
    --ink: #59595C; --slate: #59595C; --silver: #dfe3e6; --mist: #f4f6f2; --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--silver);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 22px; color: var(--green-dark); text-decoration: none; }
  .nav-logo span { color: var(--green); font-style: italic; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 4px; }
  .nav-parent { font-size: 12px; color: var(--slate); }
  .nav-parent a { color: var(--green); text-decoration: none; font-weight: 500; }

  /* PAGE HERO */
  .page-hero { margin-top: 64px; background: var(--green-dark); padding: 72px 48px 64px; }
  .page-hero-inner { max-width: 780px; }
  .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .breadcrumb span { margin: 0 8px; }
  .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1FA049; margin-bottom: 16px; }
  .page-hero h1 { font-family: var(--serif); font-size: 48px; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
  .page-hero h1 em { font-style: italic; color: #1FA049; }
  .page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 600px; margin-bottom: 32px; }
  .hero-stats { display: flex; gap: 40px; }
  .hero-stat-num { font-family: var(--serif); font-size: 28px; color: #1FA049; line-height: 1; }
  .hero-stats > div:nth-child(2) .hero-stat-num { color: var(--apag-yellow); }
  .hero-stats > div:nth-child(3) .hero-stat-num { color: var(--apag-orange); }
  .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

  /* ANCHOR NAV */
  .anchor-nav {
    background: var(--white); border-bottom: 1px solid var(--silver);
    padding: 0 48px; display: flex; gap: 0; overflow-x: auto;
    position: fixed; top: 64px; left: 0; right: 0; z-index: 190;
  }
  .anchor-nav a {
    font-size: 13px; font-weight: 500; color: var(--slate); text-decoration: none;
    padding: 16px 20px; border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.2s;
  }
  .anchor-nav a:hover { color: var(--green); border-bottom-color: var(--green-light); }
  .anchor-nav a.active { color: var(--green); border-bottom-color: var(--green); }

  /* SHARED */
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
  h2 { font-family: var(--serif); font-size: 36px; line-height: 1.2; color: var(--color-heading); margin-bottom: 12px; }
  .lead-text { font-size: 16px; color: var(--slate); line-height: 1.75; max-width: 640px; }

  /* OVERVIEW */
  .overview-section { padding: 72px 48px; background: var(--white); }
  .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 40px; align-items: start; }
  .overview-left p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
  .principle-list { list-style: none; margin-top: 4px; }
  .principle-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--silver); }
  .principle-item:last-child { border-bottom: none; }
  .p-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 7px; }
  .principle-item strong { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
  .principle-item span { font-size: 13px; color: var(--slate); line-height: 1.6; }

  /* STAGE OVERVIEW STRIP */
  .stages-strip { background: var(--mist); padding: 48px; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
  .stages-strip-inner { max-width: 1100px; margin: 0 auto; }
  .stages-strip h3 { font-family: var(--serif); font-size: 22px; color: var(--color-heading); margin-bottom: 28px; }
  .stages-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
  .stages-flow::before {
    content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(to right, var(--green-light), var(--green), var(--green-light));
    z-index: 0;
  }
  .stage-pip { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; z-index: 1; padding: 0 8px; }
  .pip-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green); border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 18px; color: var(--white);
  }
  /* Cycle through the APAG secondary palette so the five stages read as
     distinct steps rather than five identical dots (per brand review). */
  .stage-pip:nth-child(1) .pip-circle { background: var(--apag-blue); box-shadow: 0 0 0 2px var(--apag-blue); }
  .stage-pip:nth-child(2) .pip-circle { background: var(--apag-green); box-shadow: 0 0 0 2px var(--apag-green); }
  .stage-pip:nth-child(3) .pip-circle { background: var(--apag-teal); box-shadow: 0 0 0 2px var(--apag-teal); }
  .stage-pip:nth-child(4) .pip-circle { background: var(--apag-orange); box-shadow: 0 0 0 2px var(--apag-orange); }
  .stage-pip:nth-child(5) .pip-circle { background: var(--apag-blue-dark); box-shadow: 0 0 0 2px var(--apag-blue-dark); }
  .pip-label { font-size: 12px; font-weight: 600; color: var(--ink); text-align: center; line-height: 1.4; }
  .pip-sub { font-size: 11px; color: var(--slate); text-align: center; line-height: 1.4; }

  /* STAGE DETAIL BLOCKS */
  .stages-section { padding: 72px 48px; background: var(--white); }

  .stage-block {
    display: grid; grid-template-columns: 280px 1fr; gap: 0;
    border: 1px solid var(--silver); border-radius: 8px;
    overflow: hidden; margin-bottom: 32px;
  }
  .stage-block:last-child { margin-bottom: 0; }

  .stage-left {
    background: var(--green-dark); padding: 36px 28px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .stage-num { font-family: var(--serif); font-size: 64px; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 8px; }
  .stage-title { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
  .stage-subtitle { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .stage-badge {
    display: inline-block; margin-top: 20px; width: fit-content;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #1FA049; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
  }

  .stage-right { padding: 36px 36px; background: var(--white); }
  .stage-right h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--slate); margin-bottom: 18px; }
  .stage-body { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 20px; }

  .point-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .point-box { background: var(--mist); border-radius: 5px; padding: 14px 16px; border-left: 3px solid var(--green-light); }
  .point-box h5 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
  .point-box p { font-size: 13px; color: var(--slate); line-height: 1.6; }

  .why-box {
    background: var(--green-subtle); border: 1px solid var(--green-light);
    border-radius: 5px; padding: 14px 16px;
    font-size: 13px; color: var(--green-dark); line-height: 1.65;
  }
  .why-box strong { font-weight: 600; }

  .bullet-list { list-style: none; }
  .bullet-list li { font-size: 14px; color: var(--slate); padding: 7px 0; border-bottom: 1px solid var(--silver); display: flex; gap: 10px; line-height: 1.5; }
  .bullet-list li:last-child { border-bottom: none; }
  .bullet-list li::before { content: '→'; color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 2px; }

  /* DELIVERY MODELS */
  .models-section { padding: 72px 48px; background: var(--mist); }
  .models-layout { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 32px; margin-top: 40px; align-items: stretch; }
  .models-photo { border-radius: 8px; overflow: hidden; }
  .models-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; min-height: 320px; }
  .models-col { display: flex; flex-direction: column; gap: 16px; }
  .models-col .model-card { flex: 1; }
  .models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  @media (max-width: 760px) { .models-layout { grid-template-columns: 1fr; } .models-photo img { min-height: 220px; max-height: 320px; } }
  .model-card { background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 28px 24px; border-top: 3px solid var(--green); }
  .model-card h3 { font-family: var(--serif); font-size: 20px; color: var(--color-heading); margin-bottom: 8px; }
  .model-card .model-sub { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 12px; }
  .model-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }

  /* WHAT YOU RECEIVE */
  .receive-section { padding: 72px 48px; background: var(--white); }
  .receive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
  .receive-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--silver); border-radius: 6px; background: var(--mist); }
  .receive-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); border: 1.5px solid var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); font-size: 14px; font-weight: 700; }
  .receive-item strong { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
  .receive-item span { font-size: 11px; color: var(--slate); line-height: 1.5; overflow-wrap: break-word; word-break: break-word; padding: 0 4px; }

  /* DIFFERENTIATORS */
  .diff-section { padding: 72px 48px; background: var(--mist); }
  .diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
  .diff-item { background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
  .diff-check { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; font-size: 12px; margin-top: 2px; }
  .diff-item strong { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 3px; }
  .diff-item span { font-size: 13px; color: var(--slate); line-height: 1.6; }

  /* CTA */
  .cta-section { background: var(--green-dark); padding: 80px 48px; text-align: center; }
  .cta-section .eyebrow { color: rgba(255,255,255,0.5); }
  .cta-section h2 { font-family: var(--serif); font-size: 38px; color: var(--white); margin: 0 auto 14px; max-width: 540px; }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 32px; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { background: var(--green); color: var(--white); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; border: 2px solid var(--green); }
  .btn-ghost { background: transparent; color: var(--white); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); }

  /* FOOTER */
  footer { background: #59595C; padding: 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-logo span { color: #1FA049; font-style: italic; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .footer-parent { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-parent a { color: #1FA049; text-decoration: none; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 48px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0; --green-dark: #005a7a; --green-light: #e6f1f6; --green-subtle: #f5f9fb;
    --ink: #59595C; --slate: #59595C; --silver: #dfe3e6; --mist: #f4f6f2; --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--silver);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 22px; color: var(--green-dark); text-decoration: none; }
  .nav-logo span { color: var(--green); font-style: italic; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 4px; }
  .nav-parent { font-size: 12px; color: var(--slate); }
  .nav-parent a { color: var(--green); text-decoration: none; font-weight: 500; }

  /* PAGE HERO */
  .page-hero { margin-top: 64px; background: var(--green-dark); padding: 72px 48px 64px; }
  .page-hero-inner { max-width: 780px; }
  .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .breadcrumb span { margin: 0 8px; }
  .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1FA049; margin-bottom: 16px; }
  .page-hero h1 { font-family: var(--serif); font-size: 48px; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
  .page-hero h1 em { font-style: italic; color: #1FA049; }
  .page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 620px; margin-bottom: 32px; }
  .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
  .hero-stat-num { font-family: var(--serif); font-size: 28px; color: #1FA049; line-height: 1; }
  .hero-stats > div:nth-child(2) .hero-stat-num { color: var(--apag-yellow); }
  .hero-stats > div:nth-child(3) .hero-stat-num { color: var(--apag-orange); }
  .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

  /* FILTER BAR */
  .filter-bar {
    background: var(--white); border-bottom: 1px solid var(--silver);
    padding: 0 48px; display: flex; gap: 0; overflow-x: auto;
    position: sticky; top: 64px; z-index: 90;
  }
  .filter-btn {
    font-size: 13px; font-weight: 500; color: var(--slate);
    padding: 16px 20px; border: none; background: none; cursor: pointer;
    border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.2s; font-family: var(--sans);
  }
  .filter-btn:hover { color: var(--green); }
  .filter-btn.active { color: var(--green); border-bottom-color: var(--green); }

  /* CASE GRID */
  .cases-section { padding: 64px 48px; background: var(--mist); }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .case-card {
    background: var(--white); border: 1px solid var(--silver); border-radius: 8px;
    overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
  }
  .case-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .case-card-top { background: var(--green-dark); padding: 28px 24px 24px; }
  .case-card-top:has(.cs-card-logo) { padding: 16px; }
  .cs-card-logo { background:#ffffff; border-radius:8px; padding:24px 20px; display:flex; align-items:center; justify-content:center; }
  .cs-card-logo img { max-height:58px; max-width:80%; width:auto; height:auto; display:block; }
  .case-region {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #1FA049; margin-bottom: 10px;
  }
  .case-client { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
  .case-meta { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .case-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .case-tag {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; background: var(--green-light); color: var(--green);
    padding: 3px 10px; border-radius: 3px; margin-bottom: 14px; width: fit-content;
  }
  .case-summary { font-size: 14px; color: var(--slate); line-height: 1.7; flex: 1; }
  .case-outcome {
    margin-top: 16px; padding: 12px 14px;
    background: var(--green-subtle); border-left: 3px solid var(--green);
    border-radius: 0 4px 4px 0;
    font-size: 13px; color: var(--green-dark); line-height: 1.6;
  }
  .case-outcome strong { font-weight: 600; display: block; margin-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
  .case-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; border-top: 1px solid var(--silver);
    font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
    transition: background 0.15s;
  }
  .case-cta:hover { background: var(--green-subtle); }
  .case-cta span { font-size: 16px; }

  /* FULL CASE STUDY MODAL */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.6); overflow-y: auto; padding: 40px 24px;
  }
  .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
  .modal {
    background: var(--white); border-radius: 8px; max-width: 780px; width: 100%;
    overflow: hidden; margin: auto;
  }
  .modal-hero { background: var(--green-dark); padding: 36px 40px; }
  .modal-close {
    display: flex; justify-content: flex-end; margin-bottom: 16px;
  }
  .modal-close button {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 14px; font-weight: 600; padding: 6px 14px;
    border-radius: 4px; cursor: pointer; font-family: var(--sans);
  }
  .modal-region { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1FA049; margin-bottom: 8px; }
  .modal-client { font-family: var(--serif); font-size: 30px; color: var(--white); margin-bottom: 6px; }
  .modal-meta { font-size: 13px; color: rgba(255,255,255,0.55); }
  .modal-body { padding: 40px; }
  .modal-section { margin-bottom: 28px; }
  .modal-section:last-child { margin-bottom: 0; }
  .modal-section h3 {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green); margin-bottom: 12px;
  }
  .modal-section p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 10px; }
  .modal-section p:last-child { margin-bottom: 0; }
  .modal-outcome {
    background: var(--green-subtle); border: 1px solid var(--green-light);
    border-radius: 6px; padding: 20px 22px; margin-top: 8px;
    font-size: 15px; color: var(--green-dark); line-height: 1.75;
  }
  .modal-quote {
    background: var(--mist); border-left: 4px solid var(--silver);
    border-radius: 0 6px 6px 0; padding: 20px 22px; margin-top: 12px;
    font-size: 14px; color: var(--slate); line-height: 1.75; font-style: italic;
  }
  .modal-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 12px; font-weight: 600; color: var(--ink); }
  .modal-cta { padding: 24px 40px; border-top: 1px solid var(--silver); background: var(--mist); display: flex; gap: 12px; }
  .btn-primary { background: var(--green); color: var(--white); padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; }
  .btn-ghost-sm { background: transparent; color: var(--slate); padding: 12px 20px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid var(--silver); }

  /* VIDEO SECTION */
  .video-section { padding: 72px 48px; background: var(--white); }
  .video-section h2 { font-family: var(--serif); font-size: 34px; color: var(--color-heading); margin-bottom: 8px; }
  .video-section .lead { font-size: 16px; color: var(--slate); margin-bottom: 40px; }
  .vid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .vid-ph {
    aspect-ratio: 16/9; background: var(--mist); border: 1px solid var(--silver);
    border-radius: 8px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: border-color 0.2s;
  }
  .vid-ph:hover { border-color: var(--green); }
  .vid-play { width: 40px; height: 40px; border-radius: 50%; background: var(--silver); display: flex; align-items: center; justify-content: center; }
  .vid-play::after { content: ''; border-left: 12px solid var(--slate); border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
  .vid-label { font-size: 12px; font-weight: 600; color: var(--ink); }
  .vid-sub { font-size: 11px; color: var(--slate); }

  /* STATS STRIP */
  .stats-strip { background: var(--green-dark); padding: 56px 48px; }
  .stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
  .stat-num { font-family: var(--serif); font-size: 44px; color: #1FA049; line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; word-break: break-word; overflow-wrap: break-word; }

  /* CTA */
  .cta-section { background: var(--green); padding: 80px 48px; text-align: center; }
  .cta-section .eyebrow { color: rgba(255,255,255,0.6); }
  .cta-section h2 { font-family: var(--serif); font-size: 36px; color: var(--white); margin: 0 auto 14px; max-width: 520px; }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 460px; margin: 0 auto 28px; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; }
  .btn-cta-primary { background: var(--white); color: var(--green); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 700; text-decoration: none; }
  .btn-cta-ghost { background: transparent; color: var(--white); padding: 14px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); }

  /* FOOTER */
  footer { background: #59595C; padding: 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-logo span { color: #1FA049; font-style: italic; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .footer-parent { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-parent a { color: #1FA049; text-decoration: none; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 48px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #0075A0; --green-dark: #005a7a; --green-light: #e6f1f6; --green-subtle: #f5f9fb;
    --ink: #59595C; --slate: #59595C; --silver: #dfe3e6; --mist: #f4f6f2; --white: #ffffff;
    --serif: 'Helvetica Neue', Helvetica, Arial, sans-serif; --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--silver);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { font-family: var(--serif); font-size: 22px; color: var(--green-dark); text-decoration: none; }
  .nav-logo span { color: var(--green); font-style: italic; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 4px; }
  .nav-parent { font-size: 12px; color: var(--slate); }
  .nav-parent a { color: var(--green); text-decoration: none; font-weight: 500; }

  /* HERO */
  .page-hero { margin-top: 64px; background: var(--green-dark); padding: 72px 48px 64px; }
  .page-hero-inner { max-width: 680px; }
  .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .breadcrumb span { margin: 0 8px; }
  .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1FA049; margin-bottom: 16px; }
  .page-hero h1 { font-family: var(--serif); font-size: 48px; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
  .page-hero h1 em { font-style: italic; color: #1FA049; }
  .page-hero .lead { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 580px; }

  /* MAIN LAYOUT */
  .main-section { padding: 72px 48px; background: var(--mist); }
  .main-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }

  /* LEFT, WHAT TO EXPECT */
  .expect-block { margin-bottom: 40px; }
  .expect-block h2 { font-family: var(--serif); font-size: 30px; color: var(--color-heading); margin-bottom: 14px; }
  .expect-block p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }

  .session-steps { margin: 24px 0; }
  .session-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--silver); align-items: flex-start; }
  .session-step:last-child { border-bottom: none; }
  .step-num {
    width: 32px; height: 32px; border-radius: 50%; background: var(--green); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 15px; color: var(--white);
  }
  .session-step strong { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
  .session-step span { font-size: 13px; color: var(--slate); line-height: 1.6; }

  .prepare-box {
    background: var(--white); border: 1px solid var(--silver); border-radius: 6px; padding: 24px;
    margin-bottom: 32px;
  }
  .prepare-box h3 { font-family: var(--serif); font-size: 18px; color: var(--color-heading); margin-bottom: 14px; }
  .prepare-list { list-style: none; }
  .prepare-list li { font-size: 14px; color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--silver); display: flex; gap: 10px; line-height: 1.5; }
  .prepare-list li:last-child { border-bottom: none; }
  .prepare-list li::before { content: '→'; color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

  .leave-with { background: var(--green-subtle); border: 1px solid var(--green-light); border-radius: 6px; padding: 24px; }
  .leave-with h3 { font-family: var(--serif); font-size: 18px; color: var(--color-heading); margin-bottom: 14px; }
  .leave-list { list-style: none; }
  .leave-list li { font-size: 14px; color: var(--green-dark); padding: 7px 0; border-bottom: 1px solid rgba(13,128,40,0.15); display: flex; gap: 10px; }
  .leave-list li:last-child { border-bottom: none; }
  .leave-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

  /* WHO THIS IS FOR */
  .for-section { margin-top: 40px; }
  .for-section h2 { font-family: var(--serif); font-size: 24px; color: var(--color-heading); margin-bottom: 16px; }
  .for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .for-item { background: var(--white); border: 1px solid var(--silver); border-radius: 5px; padding: 12px 16px; font-size: 11px; color: var(--slate); line-height: 1.5; overflow-wrap: break-word; word-break: break-word; padding: 0 4px; display: flex; gap: 8px; }
  .for-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 1px; }

  /* FORM CARD */
  .form-card {
    background: var(--white); border: 1px solid var(--silver); border-radius: 8px;
    overflow: hidden; position: sticky; top: 88px;
  }
  .form-card-head { background: var(--green); padding: 24px 28px; }
  .form-card-head h3 { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 4px; }
  .form-card-head p { font-size: 13px; color: rgba(255,255,255,0.7); }
  .form-body { padding: 28px; }

  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); margin-bottom: 6px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--silver); border-radius: 4px;
    font-size: 14px; font-family: var(--sans); color: var(--ink); background: var(--white);
    transition: border-color 0.2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,128,40,0.08);
  }
  .field textarea { resize: vertical; min-height: 80px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .submit-btn {
    width: 100%; background: var(--green); color: var(--white);
    padding: 14px; border-radius: 4px; border: none; font-size: 15px;
    font-weight: 700; cursor: pointer; font-family: var(--sans);
    transition: background 0.2s; margin-top: 4px;
  }
  .submit-btn:hover { background: var(--green-dark); }

  .form-note { font-size: 11px; color: var(--slate); text-align: center; margin-top: 12px; line-height: 1.5; }

  /* SUCCESS STATE */
  .form-success {
    display: none; padding: 40px 28px; text-align: center;
  }
  .success-icon {
    width: 56px; height: 56px; border-radius: 50%; background: var(--green-light);
    border: 2px solid var(--green); display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 16px;
  }
  .form-success h3 { font-family: var(--serif); font-size: 22px; color: var(--color-heading); margin-bottom: 8px; }
  .form-success p { font-size: 14px; color: var(--slate); line-height: 1.7; }

  /* TRUST STRIP */
  .trust-section { padding: 56px 48px; background: var(--white); border-top: 1px solid var(--silver); }
  .trust-inner { max-width: 1100px; margin: 0 auto; }
  .trust-inner h3 { font-family: var(--serif); font-size: 24px; color: var(--color-heading); margin-bottom: 28px; text-align: center; }
  .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
  .trust-item { text-align: center; padding: 24px 20px; border: 1px solid var(--silver); border-radius: 6px; }
  .trust-num { font-family: var(--serif); font-size: 32px; color: var(--green); margin-bottom: 6px; }
  .trust-label { font-size: 11px; color: var(--slate); line-height: 1.5; letter-spacing: 0.04em; word-break: break-word; overflow-wrap: break-word; padding: 0 4px; }

  /* FAQ */
  .faq-section { padding: 72px 48px; background: var(--mist); }
  .faq-inner { max-width: 700px; margin: 0 auto; }
  .faq-inner h2 { font-family: var(--serif); font-size: 30px; color: var(--color-heading); margin-bottom: 32px; }
  .faq-item { border-bottom: 1px solid var(--silver); }
  .faq-q {
    font-size: 15px; font-weight: 600; color: var(--ink); padding: 18px 0;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    user-select: none;
  }
  .faq-q:hover { color: var(--green); }
  .faq-icon { font-size: 18px; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
  .faq-a { font-size: 14px; color: var(--slate); line-height: 1.75; padding-bottom: 18px; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* FOOTER */
  footer { background: #59595C; padding: 48px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
  .footer-logo span { color: #1FA049; font-style: italic; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .footer-parent { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-parent a { color: #1FA049; text-decoration: none; }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 48px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

.page-section { display:none; max-width:100vw; overflow-x:hidden; }
section,footer,.trust-strip,.stages-strip,.stats-strip,.cta-section,.demo-cta,.framework,.pillars-section,.models-section,.receive-section,.diff-section,.matters-section,.yesno-section,.testimonials,.insights,.cases-section,.video-section,.faq-section,.trust-section,.main-section,.overview-section,.grids-section,.mus-section,.footer-bottom { padding-left:32px !important; padding-right:32px !important; }
footer { padding-left:32px !important; padding-right:32px !important; }
h1,h2,h3,h4,.nav-logo,.footer-logo,.grid-num,.step-num,.stage-num,.grid-block-num,.hero-stat-num,.stat-num,.trust-num,.pip-circle,.modal-client,.case-client { font-family:'Helvetica Neue', Helvetica, Arial, sans-serif !important; }
#page-splash { min-height:100vh; width:100%; background:#005a7a !important; display:flex; flex-direction:column; align-items:center; justify-content:center; }
#page-splash .splash-inner { background:transparent !important; width:100%; max-width:640px; padding:60px 32px; display:flex; flex-direction:column; align-items:center; text-align:center; }
#page-splash .splash-footer { position:fixed; bottom:24px; }
/* scroll margin for fixed anchor nav targets */
#overview, #two-pillars, #five-grids, #measured-unit, #what-matters, #engage-evaluates,
#stage-1, #stage-2, #stage-3, #stage-4, #stage-5, #models, #receive {
  scroll-margin-top: 120px;
}
.case-card,.insight-card { cursor:pointer !important; transition:transform 0.18s,box-shadow 0.18s !important; }
.case-card:hover,.insight-card:hover { transform:translateY(-4px) !important; box-shadow:0 10px 28px rgba(0,0,0,0.10) !important; }
.model-card { cursor:pointer; transition:transform 0.18s,box-shadow 0.18s; }
.model-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.09); }
.model-card-cta { display:block; margin-top:14px; font-size:13px; font-weight:600; color:#0075A0; text-decoration:none; }
.nav-link.active { color:#0075A0 !important; font-weight:600 !important; }

/* Click-to-expand: How It Works pillars and five-grids cards */
.pillars-section .pillar-head { cursor: pointer; user-select: none; }
.pillars-section .pillar-head-text { display: flex; flex-direction: column; }
.pillars-section .pillar-chevron { margin-left: auto; color: #fff; font-size: 18px; line-height: 1; transition: transform .25s ease; opacity: .8; }
.pillars-section .pillar.open .pillar-chevron { transform: rotate(180deg); }
.pillars-section .pillar-body { max-height: 0; overflow: hidden; padding: 0 28px; transition: max-height .32s ease, padding .32s ease; }
.pillars-section .pillar.open .pillar-body { max-height: 640px; padding: 28px; }
.grids-section .grid-card { cursor: pointer; user-select: none; }
.grids-section .grid-card p { display: none; }
.grids-section .grid-card.open p { display: block; }
.grids-section .grid-card::after { content: "\002B  Tap to expand"; margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--color-primary); }
.grids-section .grid-card.open::after { content: "\2212  Hide"; }

