/* Shared approved TANOYA case styles. Generated by build-solutions.mjs. */

    :root {
      --ink: #0b1020;
      --ink-soft: #171d30;
      --copy: #535a70;
      --muted: #6b7285;
      --blue: #1f66d1;
      --blue-strong: #1c56b5;
      --blue-pale: #edf4ff;
      --green: #60826f;
      --green-deep: #425e4e;
      --green-pale: #e4eee5;
      --sand: #f5f0e8;
      --surface: #f6f8fc;
      --line: #dfe4ee;
      --white: #fff;
      --success: #197447;
      --danger: #ad3f45;
      --radius: 22px;
      --shadow: 0 24px 70px rgba(15, 23, 42, .12);
      --motion-ease-out: cubic-bezier(.22, 1, .36, 1);
      --motion-reveal: 520ms;
      --heading: "Arial Rounded MT Bold", "Avenir Next", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--copy);
      background: var(--white);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; height: auto; }
    a { color: var(--blue-strong); text-decoration: none; }
    a:hover { color: var(--blue); }
    button, input, select, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    h1, h2, h3, h4 {
      margin: 0;
      color: var(--ink);
      font-family: var(--heading);
      font-weight: 800;
      letter-spacing: -.035em;
      line-height: 1.12;
    }
    h1 { font-size: clamp(2.55rem, 5.25vw, 4.85rem); }
    h2 { font-size: clamp(2rem, 3.8vw, 3.45rem); }
    h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: -.02em; }
    p { margin: 0; }
    ul, ol { margin: 0; }
    ::selection { color: var(--ink); background: #bad4ff; }
    :focus-visible { outline: 3px solid rgba(47, 124, 246, .55); outline-offset: 3px; }

    .container { width: min(calc(100% - 40px), 1260px); margin-inline: auto; }
    .icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
    .icon-lg { width: 24px; height: 24px; }
    .skip-link {
      position: fixed;
      top: 14px;
      left: 14px;
      z-index: 9999;
      padding: 10px 16px;
      border-radius: 10px;
      color: var(--ink);
      background: var(--white);
      transform: translateY(-150%);
      transition: transform .2s ease;
    }
    .skip-link:focus { transform: none; }

    .button {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 11px 18px;
      border: 1px solid transparent;
      border-radius: 11px;
      font-weight: 760;
      line-height: 1.25;
      text-align: center;
      transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(47, 124, 246, .24); }
    .button-primary:hover { color: var(--white); background: var(--blue-strong); }
    .button-secondary { color: var(--ink); border-color: #c9d1df; background: rgba(255, 255, 255, .75); }
    .button-secondary:hover { color: var(--ink); border-color: var(--ink); background: var(--white); }
    .button-light { color: var(--ink); background: var(--white); }
    .button-light:hover { color: var(--blue-strong); background: var(--blue-pale); }
    .button-sm { min-height: 40px; padding: 8px 14px; font-size: .9rem; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      background: rgba(11, 16, 32, .96);
      backdrop-filter: blur(14px);
    }
    .header-inner { display: flex; min-height: 72px; align-items: center; gap: 26px; }
    .site-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
    .site-brand img { width: 133px; }
    .main-nav { display: flex; flex: 1 1 auto; align-items: center; justify-content: space-between; gap: 22px; }
    .nav-links { display: flex; align-items: center; gap: 4px; padding: 0; list-style: none; }
    .nav-link { display: inline-flex; min-height: 42px; align-items: center; padding: 9px 11px; color: #c6ccda; font-size: .92rem; }
    .nav-link:hover, .nav-link:focus-visible { color: var(--white); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .language-select { position: relative; }
    .language-current {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      gap: 7px;
      padding: 7px 9px 7px 11px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 9px;
      color: #d3d9e8;
      background: rgba(255,255,255,.05);
      font-size: .76rem;
      font-weight: 850;
      letter-spacing: .05em;
      cursor: pointer;
      transition: color .25s ease, border-color .25s ease, background-color .25s ease;
    }
    .language-current:hover { color: var(--white); border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.1); }
    .language-current .icon { width: 15px; height: 15px; }
    .language-chevron { opacity: .7; transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
    .language-select.is-open .language-chevron { transform: rotate(180deg); }
    .language-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      z-index: 20;
      display: grid;
      min-width: 186px;
      gap: 2px;
      padding: 6px;
      margin: 0;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 13px;
      background: rgba(14,20,36,.97);
      box-shadow: 0 24px 50px rgba(3,7,18,.5);
      list-style: none;
      visibility: hidden;
      opacity: 0;
      transform: translate3d(0, -8px, 0) scale(.97);
      transform-origin: 100% 0;
      backdrop-filter: blur(14px);
      pointer-events: none;
      transition: opacity .22s ease, transform .3s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .3s;
    }
    .language-select.is-open .language-menu { visibility: visible; opacity: 1; transform: none; pointer-events: auto; transition-delay: 0s; }
    .language-menu li { opacity: 0; transform: translate3d(0, -6px, 0); transition: opacity .2s ease, transform .3s cubic-bezier(.16, 1, .3, 1); }
    .language-select.is-open .language-menu li { opacity: 1; transform: none; }
    .language-select.is-open .language-menu li:nth-child(2) { transition-delay: .05s; }
    .language-select.is-open .language-menu li:nth-child(3) { transition-delay: .1s; }
    .language-menu a {
      display: flex;
      min-height: 42px;
      align-items: center;
      gap: 10px;
      padding: 8px 11px;
      border-radius: 9px;
      color: #c1c9db;
      font-size: .87rem;
      font-weight: 640;
      transition: color .2s ease, background-color .2s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
    }
    .language-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); transform: translateX(2px); }
    .language-menu a[aria-current="page"] { color: var(--white); background: rgba(79,140,255,.18); }
    .language-menu b { display: inline-flex; min-width: 28px; justify-content: center; padding: 3px 5px; border-radius: 5px; background: rgba(255,255,255,.1); font-size: .68rem; font-weight: 850; letter-spacing: .05em; }
    .language-menu a[aria-current="page"] b { color: var(--ink); background: var(--white); }
    .login-link { color: #c6ccda; font-size: .9rem; font-weight: 700; }
    .login-link:hover { color: var(--white); }
    .menu-button, .menu-close {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      padding: 0;
      border: 0;
      border-radius: 10px;
      color: var(--white);
      background: rgba(255, 255, 255, .08);
      cursor: pointer;
    }
    .menu-head { display: none; }

    .case-hero { position: relative; overflow: hidden; background: var(--green-pale); }
    .case-hero::before {
      position: absolute;
      inset: 0 auto 0 50%;
      width: 50%;
      background: rgba(255,255,255,.2);
      content: "";
    }
    .breadcrumbs { position: relative; z-index: 2; padding-top: 22px; }
    .breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0; list-style: none; color: #556b5e; font-size: .86rem; }
    .breadcrumbs li + li::before { margin-right: 8px; content: "/"; opacity: .5; }
    .breadcrumbs a { color: #466253; }
    .hero-grid { position: relative; display: grid; min-height: 650px; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); align-items: center; }
    .hero-copy { position: relative; z-index: 3; max-width: 690px; padding: 45px 52px 58px 0; }
    .brand-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 23px; }
    .brand-logo-card { display: inline-flex; width: 155px; min-height: 70px; align-items: center; padding: 8px 13px; border: 1px solid rgba(66, 94, 78, .18); border-radius: 14px; background: rgba(255,255,255,.82); }
    .brand-logo-card img { width: 100%; }
    .case-label { color: var(--green-deep); font-size: .78rem; font-weight: 800; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
    .hero-copy h1 { max-width: 740px; font-size: clamp(2.55rem, 4.15vw, 4rem); }
    .hero-copy h1 span { color: var(--blue-strong); }
    .hero-lead { max-width: 660px; margin-top: 20px; color: #3e5547; font-size: clamp(1.03rem, 1.35vw, 1.15rem); line-height: 1.52; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
    .hero-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; color: #4a6254; font-size: .88rem; }
    .hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-media { position: absolute; inset: 0 calc((100vw - min(100vw - 40px, 1260px)) / -2) 0 50%; margin: 0; overflow: hidden; }
    .hero-media picture, .hero-media img { width: 100%; height: 100%; }
    .hero-media img { object-fit: cover; object-position: 64% center; }
    .hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--green-pale) 0, rgba(228,238,229,.78) 9%, rgba(228,238,229,0) 34%); content: ""; }
    .hero-stat {
      position: absolute;
      right: 28px;
      bottom: 30px;
      z-index: 2;
      display: grid;
      width: min(280px, calc(100% - 48px));
      gap: 3px;
      padding: 19px 21px;
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 16px;
      color: var(--white);
      background: rgba(11,16,32,.84);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .hero-stat strong { font-family: var(--heading); font-size: 2rem; line-height: 1; }
    .hero-stat > span { color: #e5e9f2; font-size: .86rem; line-height: 1.4; }

    .case-nav-wrap { border-bottom: 1px solid var(--line); background: var(--white); }
    .case-nav { display: flex; min-height: 66px; align-items: center; gap: 30px; overflow-x: auto; scrollbar-width: none; }
    .case-nav::-webkit-scrollbar { display: none; }
    .case-nav strong { flex: 0 0 auto; color: var(--ink); font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; }
    .case-nav ul { display: flex; flex: 0 0 auto; gap: 22px; padding: 0; list-style: none; }
    .case-nav a { color: var(--muted); font-size: .9rem; font-weight: 700; white-space: nowrap; }
    .case-nav a:hover { color: var(--blue-strong); }

    .section { padding: clamp(78px, 9vw, 128px) 0; }
    .section-alt { background: var(--surface); }
    .section-dark { color: #c9d0df; background: var(--ink); }
    .section-dark h2, .section-dark h3 { color: var(--white); }
    .eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--blue-strong); font-size: .8rem; font-weight: 830; letter-spacing: .105em; text-transform: uppercase; }
    .eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
    .section-dark .eyebrow { color: #88b4ff; }
    .section-heading { max-width: 850px; }
    .section-heading > p { max-width: 720px; margin-top: 22px; color: var(--copy); font-size: 1.08rem; }
    .section-dark .section-heading > p { color: #bdc5d6; }
    .section-index { display: block; margin-bottom: 12px; color: #5e6678; font-family: var(--heading); font-size: .85rem; letter-spacing: .08em; }
    .section-dark .section-index { color: #aeb7c9; }
    .caption { margin-top: 10px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
    .caption-light { color: #a9b2c4; }
    .caption-light a { color: #9fc2ff; text-decoration: underline; text-underline-offset: 2px; }

    .overview-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); gap: clamp(42px, 7vw, 94px); align-items: center; }
    .overview-copy p { max-width: 710px; margin-top: 20px; font-size: 1.06rem; }
    .fact-grid { display: grid; margin-top: 40px; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
    .fact { min-height: 132px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .fact strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1; }
    .fact span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.45; }
    .product-card { position: relative; min-height: 515px; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
    .product-card-top { position: absolute; top: 26px; left: 27px; z-index: 2; width: 135px; }
    .product-card-top img { width: 100%; }
    .product-card-product { position: absolute; right: 7%; bottom: 0; width: 46%; max-height: 84%; object-fit: contain; filter: drop-shadow(0 25px 28px rgba(32,25,13,.18)); }
    .product-card-copy { position: absolute; bottom: 32px; left: 28px; z-index: 2; max-width: 47%; color: #6d5941; }
    .product-card-copy strong { display: block; margin-bottom: 7px; color: var(--ink); font-family: var(--heading); font-size: 1.25rem; line-height: 1.2; }
    .product-card-copy a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--green-deep); font-weight: 800; }

    .challenge-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(40px, 7vw, 86px); align-items: center; }
    .editorial-figure { margin: 0; }
    .editorial-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: #d7dbe2; box-shadow: var(--shadow); }
    .editorial-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
    .challenge-photo .editorial-frame img { aspect-ratio: 4 / 5; object-position: 48% center; }
    .photo-label { position: absolute; bottom: 15px; left: 15px; padding: 7px 10px; border-radius: 8px; color: #edf1f6; background: rgba(11,16,32,.76); font-size: .72rem; line-height: 1.3; backdrop-filter: blur(8px); }
    .challenge-copy .section-heading { max-width: 570px; }
    .challenge-list { display: grid; gap: 0; margin-top: 34px; }
    .challenge-item { display: grid; grid-template-columns: 46px 1fr; gap: 17px; padding: 23px 0; border-top: 1px solid var(--line); }
    .challenge-item:last-child { border-bottom: 1px solid var(--line); }
    .icon-box { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 12px; color: var(--blue-strong); background: var(--blue-pale); }
    .challenge-item p { margin-top: 7px; color: var(--muted); font-size: .94rem; }
    .before-after { display: grid; margin-top: 64px; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
    .state-column { padding: clamp(26px, 4vw, 42px); }
    .state-column + .state-column { border-left: 1px solid var(--line); background: #f2f8f4; }
    .state-title { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 21px; }
    .state-title.bad { color: var(--danger); }
    .state-title.good { color: var(--success); }
    .state-column ul { display: grid; gap: 13px; padding: 0; list-style: none; }
    .state-column li { display: flex; gap: 11px; color: var(--copy); }
    .state-column li .icon { margin-top: .2em; color: currentColor; }

    .solution-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(42px, 7vw, 88px); align-items: center; }
    .solution-photo { order: 2; }
    .solution-photo .editorial-frame img { aspect-ratio: 4 / 5; object-position: 59% center; }
    .solution-features { display: grid; margin-top: 38px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
    .feature { min-height: 196px; padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
    .feature h3 { margin-top: 23px; }
    .feature p { margin-top: 9px; color: var(--muted); font-size: .9rem; }

    .integration-shell { position: relative; overflow: hidden; border: 1px solid #272f44; border-radius: 28px; background: var(--ink-soft); }
    .integration-copy { display: grid; padding: clamp(34px, 6vw, 72px); grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 56px; align-items: center; }
    .integration-copy p { margin-top: 21px; color: #b8c1d3; }
    .integration-points { display: grid; margin-top: 30px; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
    .integration-point { display: flex; min-height: 72px; align-items: center; gap: 12px; padding: 14px; border: 1px solid #303950; border-radius: 13px; color: #d7deeb; background: rgba(255,255,255,.03); font-size: .86rem; line-height: 1.4; }
    .integration-point .icon { color: #75a8ff; }
    .flow { display: grid; gap: 12px; }
    .flow-node { display: grid; min-height: 108px; grid-template-columns: 145px 1fr; gap: 18px; align-items: center; padding: 18px 22px; border: 1px solid #384157; border-radius: 16px; background: #101729; }
    .flow-logo { display: flex; min-height: 67px; align-items: center; justify-content: center; padding: 11px; border-radius: 10px; background: var(--white); }
    .flow-logo img { max-width: 122px; max-height: 54px; object-fit: contain; }
    .flow-logo-dark { background: #0b1020; }
    .flow-logo-dark img { width: 120px; }
    .flow-node strong { display: block; color: var(--white); font-family: var(--heading); font-size: 1.04rem; }
    .flow-node span { display: block; margin-top: 5px; color: #9fa9bd; font-size: .83rem; line-height: 1.4; }
    .flow-connector { display: flex; height: 24px; align-items: center; justify-content: center; color: #75a8ff; }

    .ai-map-section { overflow: hidden; background: #fff9fa; }
    .ai-map-intro { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(36px, 7vw, 90px); align-items: end; }
    .ai-map-summary { padding: 24px 26px; border-left: 3px solid #eb6f98; color: #695b64; background: rgba(255,255,255,.72); }
    .ai-map-summary strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--heading); }
    .ai-map-figure { margin: 46px 0 0; }
    .ai-map-frame { padding: 11px; border: 1px solid #eddde2; border-radius: 28px; background: var(--white); box-shadow: 0 26px 70px rgba(91, 54, 66, .12); }
    .ai-map-scroll { overflow-x: auto; border-radius: 19px; background: #fff9fa; overscroll-behavior-inline: contain; scrollbar-color: #e38baa #f8e7ec; scrollbar-width: thin; }
    .ai-map-scroll::-webkit-scrollbar { height: 8px; }
    .ai-map-scroll::-webkit-scrollbar-track { background: #f8e7ec; }
    .ai-map-scroll::-webkit-scrollbar-thumb { border-radius: 99px; background: #e38baa; }
    .ai-map-link { position: relative; display: block; min-width: 100%; color: inherit; cursor: zoom-in; }
    .ai-map-link img { width: 100%; border-radius: 18px; }
    .ai-map-open { position: absolute; top: 14px; right: 14px; display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 10px; color: var(--white); background: rgba(11,16,32,.82); font-size: .75rem; font-weight: 800; line-height: 1; backdrop-filter: blur(8px); }
    .ai-map-caption { display: flex; margin-top: 13px; align-items: center; justify-content: space-between; gap: 22px; color: #746873; font-size: .78rem; line-height: 1.5; }
    .ai-map-hint { display: none; flex: 0 0 auto; color: var(--blue-strong); font-weight: 800; }
    .ai-map-legend { display: grid; margin-top: 28px; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #eddde2; border-left: 1px solid #eddde2; }
    .ai-map-step { min-height: 184px; padding: 24px; border-right: 1px solid #eddde2; border-bottom: 1px solid #eddde2; background: rgba(255,255,255,.62); }
    .ai-map-step .icon-box { color: #b73767; background: #fdebf1; }
    .ai-map-step h3 { margin-top: 20px; }
    .ai-map-step p { margin-top: 8px; color: #746873; font-size: .87rem; }

    .examples-intro { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
    .privacy-note { max-width: 345px; padding-left: 18px; border-left: 2px solid var(--green); color: var(--muted); font-size: .82rem; }
    .scenario { margin-top: 64px; border-top: 1px solid var(--line); padding-top: 38px; }
    .scenario-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
    .scenario-copy { max-width: 520px; }
    .scenario-number { display: block; margin-bottom: 14px; color: var(--blue-strong); font-family: var(--heading); font-size: .82rem; letter-spacing: .08em; }
    .scenario-copy p { margin-top: 15px; }
    .status-pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; padding: 7px 10px; border-radius: 9px; color: var(--success); background: #e9f6ee; font-size: .8rem; font-weight: 800; }
    .status-pill.manager { color: #865d13; background: #fff3d7; }
    .scenario-photo .editorial-frame img { aspect-ratio: 3 / 2; }
    .chat-gallery { display: grid; margin-top: 28px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
    .chat-gallery.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .chat-thumb { position: relative; min-height: 210px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #eef1f6; cursor: zoom-in; }
    .chat-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .25s ease; }
    .chat-thumb:hover img { transform: scale(1.015); }
    .chat-thumb::after { position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px; border-radius: 9px; color: var(--white); background: rgba(11,16,32,.76) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4M11 8v6M8 11h6'/%3E%3C/svg%3E") center/18px no-repeat; content: ""; }
    .scenario-pair { display: grid; margin-top: 30px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .mini-scenario { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
    .mini-scenario h3 { margin-top: 20px; }
    .mini-scenario p { margin-top: 10px; color: var(--muted); font-size: .9rem; }
    .single-chat { margin-top: 18px; }
    .single-chat .chat-thumb { min-height: 164px; }
    .status-steps { display: grid; margin-top: 22px; gap: 10px; }
    .status-step { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); }
    .status-step > span:first-child { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); background: var(--blue-strong); font-size: .8rem; font-weight: 800; }
    .status-step strong { display: block; color: var(--ink); font-size: .92rem; }
    .status-step small { display: block; margin-top: 3px; color: var(--muted); font-size: .8rem; line-height: 1.4; }

    .results-head { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 55px; align-items: end; }
    .results-explainer { max-width: 560px; color: #bdc5d6; }
    .metric-grid { display: grid; margin-top: 54px; grid-template-columns: 1.05fr 1.05fr .9fr; gap: 15px; }
    .metric { min-height: 270px; padding: clamp(25px, 4vw, 38px); border: 1px solid #303950; border-radius: 19px; background: var(--ink-soft); }
    .metric strong { display: block; color: var(--white); font-family: var(--heading); font-size: clamp(2.35rem, 5vw, 4.25rem); letter-spacing: -.055em; line-height: 1; }
    .metric h3 { margin-top: 20px; color: #f1f4fa; font-size: 1.1rem; }
    .metric p { margin-top: 12px; color: #9fa9bd; font-size: .86rem; }
    .metric-bar { height: 6px; margin-top: 28px; overflow: hidden; border-radius: 99px; background: #293147; }
    .metric-bar span { display: block; height: 100%; border-radius: inherit; background: #75a8ff; }
    .methodology { margin-top: 24px; padding: 18px 20px; border-left: 3px solid #75a8ff; color: #5a6274; background: #eef2f8; font-size: .82rem; }
    .section-dark .methodology { color: #b8c1d3; background: rgba(255,255,255,.035); }

    .impact-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(42px, 7vw, 86px); align-items: center; }
    .impact-photo .editorial-frame img { aspect-ratio: 4 / 5; object-position: 53% center; }
    .impact-list { display: grid; gap: 0; margin-top: 33px; }
    .impact-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
    .impact-item:last-child { border-bottom: 1px solid var(--line); }
    .impact-item p { margin-top: 7px; color: var(--muted); font-size: .92rem; }

    .more-grid { display: grid; margin-top: 40px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .more-card { display: grid; min-height: 200px; align-content: space-between; padding: 26px; border: 1px solid var(--line); border-radius: 17px; color: var(--copy); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
    .more-card:hover { color: var(--copy); border-color: #aec7ef; box-shadow: 0 20px 45px rgba(25, 42, 78, .1); transform: translateY(-4px); }
    .more-card .icon-box { margin-bottom: 34px; }
    .more-card strong { display: block; color: var(--ink); font-family: var(--heading); font-size: 1.15rem; }
    .more-card span { display: block; margin-top: 8px; color: var(--muted); font-size: .87rem; }
    .more-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--blue-strong); font-size: .84rem; font-weight: 800; }

    .launch-section { padding: clamp(76px, 9vw, 124px) 0; background: var(--blue-pale); }
    .launch-card { position: relative; display: grid; overflow: hidden; padding: clamp(34px, 6vw, 72px); border: 1px solid #27314b; border-radius: 30px; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); gap: clamp(42px, 7vw, 88px); color: #c5cede; background: var(--ink); box-shadow: 0 28px 75px rgba(20,39,73,.18); }
    .launch-card::after { position: absolute; right: -150px; bottom: -230px; width: 520px; height: 520px; border: 1px solid rgba(117,168,255,.22); border-radius: 50%; box-shadow: 0 0 0 78px rgba(117,168,255,.035), 0 0 0 156px rgba(117,168,255,.025); content: ""; pointer-events: none; }
    .launch-copy, .launch-panel { position: relative; z-index: 1; }
    .launch-card .eyebrow { color: #8ab7ff; }
    .launch-card h2 { color: var(--white); }
    .launch-copy > p { max-width: 650px; margin-top: 22px; font-size: 1.05rem; }
    .launch-actions { display: flex; margin-top: 30px; align-items: center; gap: 16px; flex-wrap: wrap; }
    .launch-note { display: inline-flex; max-width: 300px; align-items: center; gap: 8px; color: #aeb9cc; font-size: .78rem; line-height: 1.4; }
    .launch-note .icon { color: #8ab7ff; }
    .launch-panel { align-self: center; padding: 28px; border: 1px solid #34405b; border-radius: 20px; background: rgba(255,255,255,.035); }
    .launch-panel-title { display: block; margin-bottom: 8px; color: #8ab7ff; font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
    .launch-panel > strong { display: block; color: var(--white); font-family: var(--heading); font-size: 1.3rem; line-height: 1.25; }
    .launch-steps { display: grid; margin-top: 22px; padding: 0; list-style: none; counter-reset: launch-step; }
    .launch-step { display: grid; min-height: 68px; padding: 15px 0; border-top: 1px solid #34405b; grid-template-columns: 36px 1fr; gap: 13px; align-items: start; counter-increment: launch-step; }
    .launch-step::before { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 9px; color: var(--white); background: var(--blue); content: counter(launch-step); font-weight: 850; }
    .launch-step strong { display: block; color: var(--white); font-size: .93rem; }
    .launch-step span { display: block; margin-top: 3px; color: #9faabd; font-size: .79rem; line-height: 1.4; }

    .site-footer { padding: 66px 0 24px; color: #aab2c4; background: var(--ink); }
    .footer-grid { display: grid; grid-template-columns: minmax(240px, 1.7fr) repeat(3, minmax(140px, .7fr)); gap: 46px; }
    .footer-brand img { width: 132px; }
    .footer-brand p { max-width: 330px; margin-top: 21px; font-size: .9rem; }
    .footer-contact { display: grid; gap: 4px; margin-top: 17px; }
    .footer-contact a { color: #dce2ed; }
    .site-footer h2 { margin-bottom: 19px; color: var(--white); font-size: .95rem; letter-spacing: 0; }
    .footer-links { display: grid; gap: 10px; padding: 0; list-style: none; }
    .footer-links a { color: #aab2c4; font-size: .88rem; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { display: flex; margin-top: 54px; padding-top: 22px; border-top: 1px solid #283047; align-items: center; justify-content: space-between; gap: 18px; font-size: .78rem; }

    .scroll-top { position: fixed; right: 20px; bottom: 20px; z-index: 50; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.9); box-shadow: 0 10px 25px rgba(15,23,42,.12); backdrop-filter: blur(10px); }
    .scroll-top:hover { color: var(--blue-strong); }

    .lightbox { width: min(1080px, calc(100vw - 28px)); max-width: none; max-height: calc(100vh - 28px); padding: 0; overflow: visible; border: 0; border-radius: 17px; background: transparent; }
    .lightbox::backdrop { background: rgba(5,8,16,.86); backdrop-filter: blur(8px); }
    .lightbox img { max-width: 100%; max-height: calc(100vh - 38px); margin: auto; border-radius: 14px; background: var(--white); object-fit: contain; }
    .lightbox-close { position: absolute; top: -13px; right: -13px; z-index: 2; display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0; border: 1px solid #4a5264; border-radius: 50%; color: var(--white); background: var(--ink); cursor: pointer; }



    /* ==================== WOW MOTION LAYER (screens 1-2) ==================== */
    :root {
      --ease-wow: cubic-bezier(.16, 1, .3, 1);
      --ease-soft: cubic-bezier(.4, 0, .2, 1);
    }

    @keyframes wowKen { from { transform: scale(1) translate3d(0, 0, 0); } to { transform: scale(1.06) translate3d(-1.6%, 0, 0); } }
    @keyframes wowDriftA { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(9%, 7%, 0); } }
    @keyframes wowDriftB { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-10%, -8%, 0); } }
    @keyframes wowDriftC { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(7%, -9%, 0); } }
    @keyframes wowSpin { to { transform: rotate(1turn); } }
    @keyframes wowFloat { from { transform: translate3d(0, 0, 0) rotate(-.5deg); } to { transform: translate3d(0, -16px, 0) rotate(.7deg); } }
    @keyframes wowSheen { from { transform: translate3d(-150%, 0, 0) rotate(12deg); } to { transform: translate3d(420%, 0, 0) rotate(12deg); } }
    @keyframes wowScan {
      0% { transform: translate3d(-80%, 0, 0) rotate(7deg); opacity: 0; }
      5% { opacity: .9; }
      20% { transform: translate3d(560%, 0, 0) rotate(7deg); opacity: 0; }
      100% { transform: translate3d(560%, 0, 0) rotate(7deg); opacity: 0; }
    }
    @keyframes wowCue { 0% { transform: translateY(0); opacity: 0; } 22% { opacity: 1; } 78% { transform: translateY(12px); opacity: 0; } 100% { transform: translateY(12px); opacity: 0; } }

    /* --- read progress in header --- */
    .read-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; pointer-events: none; }
    .read-progress span { display: block; height: 100%; background: linear-gradient(90deg, #4d8dff, #1f66d1 52%, #7fd0a8); transform: scaleX(var(--read, 0)); transform-origin: left center; }

    /* --- hero atmosphere: aurora + grain --- */
    .hero-atmo { position: absolute; inset: -14% -8%; z-index: 0; overflow: hidden; pointer-events: none; }
    .atmo-blob { position: absolute; display: block; border-radius: 50%; filter: blur(58px); }
    .atmo-blob.a1 { top: -14%; left: 2%; width: 46vw; height: 46vw; background: radial-gradient(circle at 38% 38%, rgba(126,193,157,.62), rgba(126,193,157,0) 68%); }
    .atmo-blob.a2 { right: 26%; bottom: -26%; width: 40vw; height: 40vw; background: radial-gradient(circle at 50% 50%, rgba(122,168,255,.42), rgba(122,168,255,0) 66%); }
    .atmo-blob.a3 { top: 12%; left: 34%; width: 28vw; height: 28vw; background: radial-gradient(circle at 50% 50%, rgba(255,206,206,.44), rgba(255,206,206,0) 66%); }
    html.wow .atmo-blob.a1 { animation: wowDriftA 28s ease-in-out infinite alternate; }
    html.wow .atmo-blob.a2 { animation: wowDriftB 34s ease-in-out infinite alternate; }
    html.wow .atmo-blob.a3 { animation: wowDriftC 24s ease-in-out infinite alternate; }
    .case-hero::after {
      position: absolute;
      inset: 0;
      z-index: 5;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='.5'/></svg>");
      opacity: .05;
      mix-blend-mode: overlay;
      pointer-events: none;
      content: "";
    }

    /* --- hero media: cinematic reveal, ken burns, scan, veil --- */
    .hero-media picture { position: absolute; inset: 0; display: block; }
    .hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,32,0) 35%, rgba(11,16,32,.6)); opacity: var(--veil, 0); pointer-events: none; }
    .hero-scan { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .hero-scan::before {
      position: absolute;
      top: -25%;
      bottom: -25%;
      left: 0;
      width: 16%;
      background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.62), rgba(255,255,255,0));
      opacity: 0;
      filter: blur(4px);
      content: "";
    }
    html.wow.hero-in .hero-scan::before { animation: wowScan 13s linear 1.1s infinite; }
    html.wow .hero-media { opacity: 0; clip-path: inset(0 0 0 16%); transition: opacity 900ms var(--ease-soft) 120ms, clip-path 1250ms var(--ease-wow) 120ms; }
    html.wow.hero-in .hero-media { opacity: 1; clip-path: inset(0 0 0 0); }
    html.wow .hero-media img { transform: scale(1.18); transition: transform 1700ms var(--ease-wow) 120ms; }
    html.wow.hero-in .hero-media img { transform: scale(1); animation: wowKen 26s ease-in-out 2.2s infinite alternate; }

    /* --- hero copy: staggered entrance --- */
    html.wow [data-hero-item] { opacity: 0; transform: translate3d(0, 26px, 0); }
    html.wow.hero-in [data-hero-item] {
      opacity: 1;
      transform: none;
      transition: opacity 720ms var(--ease-soft) var(--d, 0ms), transform 900ms var(--ease-wow) var(--d, 0ms);
    }
    [data-hero-item="1"] { --d: 80ms; }
    [data-hero-item="3"] { --d: 480ms; }
    [data-hero-item="4"] { --d: 600ms; }
    [data-hero-item="5"] { --d: 700ms; }
    [data-hero-item="6"] { --d: 820ms; }

    /* --- word-mask headline reveal --- */
    .sw { display: inline-block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; vertical-align: top; }
    .sw > i { display: inline-block; font-style: inherit; }
    html.wow .sw > i { transform: translate3d(0, 112%, 0); transition: transform 1000ms var(--ease-wow) calc(var(--wi, 0) * 34ms + var(--sd, 0ms)); }
    html.wow .is-split-in .sw > i { transform: none; }
    .case-hero h1 { --sd: 140ms; }

    /* --- hero stat card --- */
    .hero-stat { overflow: hidden; }
    html.wow .hero-stat { opacity: 0; transform: translate3d(0, 26px, 0) scale(.96); transition: opacity 760ms var(--ease-soft) 900ms, transform 900ms var(--ease-wow) 900ms; }
    html.wow.hero-in .hero-stat { opacity: 1; transform: none; }
    .hero-stat::after {
      position: absolute;
      top: -40%;
      bottom: -40%;
      left: 0;
      width: 34%;
      background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0));
      transform: translate3d(-150%, 0, 0) rotate(12deg);
      pointer-events: none;
      content: "";
    }
    html.wow.hero-in .hero-stat::after { animation: wowSheen 2200ms var(--ease-soft) 2s; }
    .hero-stat strong { font-variant-numeric: tabular-nums; }

    /* --- scroll cue --- */
    .hero-cue { display: inline-flex; align-items: center; gap: 11px; margin-top: 26px; color: #4a6254; font-size: .74rem; font-weight: 830; letter-spacing: .1em; text-transform: uppercase; opacity: var(--cue, 1); }
    .hero-cue-track { position: relative; width: 22px; height: 34px; flex: 0 0 auto; border: 2px solid rgba(74,98,84,.4); border-radius: 12px; }
    .hero-cue-track i { position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: #4a6254; }
    html.wow .hero-cue-track i { animation: wowCue 2s var(--ease-soft) infinite; }

    /* --- magnetic buttons + shine --- */
    .button[data-magnetic] { transform: translate3d(var(--mx, 0px), var(--my, 0px), 0); transition: transform 420ms var(--ease-wow), background-color .2s ease, border-color .2s ease, color .2s ease; }
    .button[data-magnetic]:hover { transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 2px), 0); }
    .button-primary { position: relative; overflow: hidden; }
    .button-primary::after {
      position: absolute;
      top: -60%;
      bottom: -60%;
      left: 0;
      width: 30%;
      background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.42), rgba(255,255,255,0));
      transform: translate3d(-150%, 0, 0) rotate(12deg);
      pointer-events: none;
      content: "";
    }
    .button-primary:hover::after { animation: wowSheen 950ms var(--ease-soft); }

    /* --- sticky case nav + scroll spy --- */
    .nav-sentinel { height: 1px; margin-bottom: -1px; }
    .case-nav-wrap { transition: box-shadow .35s var(--ease-soft), background-color .35s var(--ease-soft); }
    @media (min-width: 861px) { .case-nav-wrap { position: sticky; top: 71px; z-index: 40; } }
    .case-nav-wrap.is-stuck { background: rgba(255,255,255,.88); box-shadow: 0 14px 34px rgba(15,23,42,.09); backdrop-filter: blur(14px); }
    .case-nav a { position: relative; transition: color .25s var(--ease-soft); }
    .case-nav a::after {
      position: absolute;
      right: 0;
      bottom: -7px;
      left: 0;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--blue), #7fd0a8);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .38s var(--ease-wow);
      content: "";
    }
    .case-nav a:hover::after, .case-nav a.is-current::after { transform: scaleX(1); }
    .case-nav a.is-current { color: var(--ink); }

    /* --- scene choreography (screen 2) --- */
    html.wow [data-scene-item] { opacity: 0; transform: translate3d(0, 22px, 0); }
    html.wow [data-scene].is-in [data-scene-item] {
      opacity: 1;
      transform: none;
      transition: opacity 700ms var(--ease-soft) calc(var(--si, 0) * 90ms + 100ms), transform 860ms var(--ease-wow) calc(var(--si, 0) * 90ms + 100ms);
    }
    html.wow [data-scene] .eyebrow::before { transform-origin: left center; transition: transform 720ms var(--ease-wow) 280ms; }
    html.wow [data-scene]:not(.is-in) .eyebrow::before { transform: scaleX(0); }
    .overview-copy .section-index { display: inline-block; }
    .overview-copy .section-index::after { display: block; width: 96px; height: 2px; margin-top: 9px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), rgba(31,102,209,0)); transform: scaleX(0); transform-origin: left center; transition: transform 900ms var(--ease-wow) 340ms; content: ""; }
    .overview-copy.is-in .section-index::after { transform: scaleX(1); }

    html.wow [data-stagger-item] { opacity: 0; transform: translate3d(0, 20px, 0); }
    html.wow [data-stagger].is-in > [data-stagger-item] {
      opacity: 1;
      transform: none;
      transition: opacity 620ms var(--ease-soft) calc(var(--si, 0) * 95ms), transform 780ms var(--ease-wow) calc(var(--si, 0) * 95ms);
    }

    /* --- fact cells --- */
    .fact { position: relative; overflow: hidden; transition: background-color .4s var(--ease-soft); }
    .fact::after { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: linear-gradient(180deg, var(--blue), #7fd0a8); transform: scaleY(0); transform-origin: bottom center; transition: transform .45s var(--ease-wow); content: ""; }
    .fact:hover { background: rgba(237,244,255,.6); }
    .fact:hover::after { transform: scaleY(1); }
    .fact strong { font-variant-numeric: tabular-nums; transition: transform .45s var(--ease-wow), color .3s var(--ease-soft); }
    .fact:hover strong { color: var(--blue-strong); transform: translateY(-3px); }

    /* --- product card: 3D tilt, depth layers, glow, sheen --- */
    .product-card { transform-style: preserve-3d; }
    html.wow .product-card { opacity: 0; transform: translate3d(0, 48px, 0) scale(.96); }
    html.wow .product-card.is-in {
      opacity: 1;
      transform: perspective(1150px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
      transition: opacity 820ms var(--ease-soft), transform 900ms var(--ease-wow), box-shadow .5s var(--ease-soft);
    }
    html.wow .product-card.is-in.is-tilting { transition: transform 260ms var(--ease-soft), box-shadow .5s var(--ease-soft); box-shadow: 0 40px 90px rgba(88, 70, 44, .22); }
    .pc-glow { position: absolute; right: -6%; bottom: -14%; z-index: 0; width: 78%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255,255,255,.92), rgba(219,199,168,.42), rgba(255,255,255,.88), rgba(226,205,176,.36), rgba(255,255,255,.92)); opacity: .75; filter: blur(26px); pointer-events: none; }
    html.wow .pc-glow { animation: wowSpin 26s linear infinite; }
    .pc-product { position: absolute; inset: 0; z-index: 1; transform: translate3d(calc(var(--px, 0) * -20px), calc(var(--py, 0) * -16px), 0); transition: transform 700ms var(--ease-soft); }
    html.wow .pc-product .product-card-product { animation: wowFloat 6.5s ease-in-out 1s infinite alternate; }
    .product-card-top { transform: translate3d(calc(var(--px, 0) * -7px), calc(var(--py, 0) * -6px), 0); transition: transform 640ms var(--ease-soft); }
    .product-card-copy { transform: translate3d(calc(var(--px, 0) * -11px), calc(var(--py, 0) * -8px), 0); transition: transform 680ms var(--ease-soft); }
    .product-card-copy a .icon { transition: transform .3s var(--ease-wow); }
    .product-card-copy a:hover .icon { transform: translate3d(3px, -3px, 0); }
    .pc-sheen { position: absolute; inset: 0; z-index: 3; overflow: hidden; border-radius: inherit; pointer-events: none; }
    .pc-sheen::before {
      position: absolute;
      top: -30%;
      bottom: -30%;
      left: 0;
      width: 30%;
      background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.6), rgba(255,255,255,0));
      transform: translate3d(-150%, 0, 0) rotate(12deg);
      content: "";
    }
    html.wow .product-card.is-in .pc-sheen::before { animation: wowSheen 1700ms var(--ease-soft) 420ms; }
    html.wow .product-card.is-in:hover .pc-sheen::before { animation: wowSheen 1100ms var(--ease-soft); }


    /* --- JediDesk AI mascots --- */
    @keyframes wowFloatSm { from { transform: translate3d(0, 0, 0) rotate(-1deg); } to { transform: translate3d(0, -9px, 0) rotate(1.5deg); } }
    @keyframes wowDot { 0%, 60%, 100% { opacity: .4; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

    .hero-mascot { position: absolute; bottom: 20%; left: 47%; z-index: 4; width: clamp(118px, 11.5vw, 166px); pointer-events: none; }
    .hero-mascot img { width: 100%; filter: drop-shadow(0 20px 24px rgba(30, 45, 36, .3)); }
    html.wow .hero-mascot { opacity: 0; transform: translate3d(0, 42px, 0) scale(.9); transition: opacity 700ms var(--ease-soft) 1150ms, transform 950ms var(--ease-wow) 1150ms; }
    html.wow.hero-in .hero-mascot { opacity: 1; transform: none; }
    html.wow.hero-in .hero-mascot img { animation: wowFloat 5.5s ease-in-out 2.4s infinite alternate; }

    .mascot-bubble {
      position: absolute;
      bottom: 92%;
      left: 22%;
      display: grid;
      width: max-content;
      max-width: 240px;
      min-height: 40px;
      align-content: center;
      padding: 11px 16px;
      border: 1px solid rgba(255,255,255,.7);
      border-radius: 15px 15px 15px 3px;
      color: var(--ink);
      background: rgba(255,255,255,.92);
      box-shadow: 0 16px 36px rgba(15,23,42,.15);
      font-size: .83rem;
      font-weight: 760;
      line-height: 1.32;
      backdrop-filter: blur(10px);
    }
    .mascot-bubble > * { grid-area: 1 / 1; align-self: center; justify-self: start; }
    .bubble-dots { display: inline-flex; gap: 5px; }
    .bubble-dots i { width: 6px; height: 6px; border-radius: 50%; background: #97a1b6; }
    html.wow .bubble-dots i { animation: wowDot 1.25s ease-in-out infinite; }
    html.wow .bubble-dots i:nth-child(2) { animation-delay: .16s; }
    html.wow .bubble-dots i:nth-child(3) { animation-delay: .32s; }
    html.wow .mascot-bubble { opacity: 0; transform: translate3d(0, 12px, 0) scale(.92); transform-origin: 0 100%; transition: opacity 460ms var(--ease-soft) 1550ms, transform 580ms var(--ease-wow) 1550ms; }
    html.wow.hero-in .mascot-bubble { opacity: 1; transform: none; }
    html.wow .bubble-dots { opacity: 1; transition: opacity 220ms linear 2550ms; }
    html.wow.hero-in .bubble-dots { opacity: 0; }
    html.wow .bubble-text { opacity: 0; transform: translate3d(0, 7px, 0); transition: opacity 400ms var(--ease-soft) 2650ms, transform 480ms var(--ease-wow) 2650ms; }
    html.wow.hero-in .bubble-text { opacity: 1; transform: none; }

    .card-mascot { position: absolute; top: 22px; right: 18px; z-index: 2; width: clamp(84px, 21%, 112px); transform: translate3d(calc(var(--px, 0) * -16px), calc(var(--py, 0) * -13px), 0); transition: transform 660ms var(--ease-soft); pointer-events: none; }
    .card-mascot img { width: 100%; filter: drop-shadow(0 14px 18px rgba(60, 45, 25, .24)); }
    html.wow .card-mascot img { animation: wowFloatSm 5s ease-in-out 1.4s infinite alternate; }


    /* ==================== WOW: page-wide scenes ==================== */
    @keyframes wowScan2 { 0% { opacity: 0; transform: translate3d(-130%, 0, 0) rotate(6deg); } 12% { opacity: .85; } 100% { opacity: 0; transform: translate3d(620%, 0, 0) rotate(6deg); } }
    @keyframes wowFlowArrow { 0%, 100% { opacity: .5; transform: translate3d(0, 0, 0); } 50% { opacity: 1; transform: translate3d(5px, 0, 0); } }

    /* block-level entrance */
    html.wow [data-wow] { opacity: 0; }
    html.wow [data-wow="up"] { transform: translate3d(0, 44px, 0); }
    html.wow [data-wow="left"] { transform: translate3d(-36px, 0, 0); }
    html.wow [data-wow="right"] { transform: translate3d(36px, 0, 0); }
    html.wow [data-wow="scale"] { transform: translate3d(0, 34px, 0) scale(.975); }
    html.wow [data-wow].is-in { opacity: 1; transform: none; transition: opacity 780ms var(--ease-soft), transform 920ms var(--ease-wow); }

    /* cascades now cover every direct child, no per-item markup needed */
    html.wow [data-stagger] > * { opacity: 0; transform: translate3d(0, 20px, 0); }
    html.wow [data-stagger].is-in > * {
      opacity: 1;
      transform: none;
      transition: opacity 620ms var(--ease-soft) calc(var(--si, 0) * 95ms), transform 780ms var(--ease-wow) calc(var(--si, 0) * 95ms);
    }

    /* light sweep for diagrams and CTA cards */
    .scan-sweep { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; }
    .scan-sweep::before {
      position: absolute;
      top: -20%;
      bottom: -20%;
      left: 0;
      width: 16%;
      background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.7), rgba(255,255,255,0));
      opacity: 0;
      filter: blur(5px);
      content: "";
    }
    html.wow [data-wow].is-in .scan-sweep::before { animation: wowScan2 2200ms var(--ease-soft) 520ms 1; }

    /* status pills land after their block */
    html.wow [data-wow] .status-pill, html.wow [data-scene] .status-pill { opacity: 0; transform: translate3d(0, 10px, 0) scale(.96); }
    html.wow [data-wow].is-in .status-pill, html.wow [data-scene].is-in .status-pill {
      opacity: 1;
      transform: none;
      transition: opacity 520ms var(--ease-soft) 420ms, transform 620ms var(--ease-wow) 420ms;
    }

    /* icon boxes and cards react to the pointer */
    .icon-box { transition: transform .45s var(--ease-wow), background-color .3s var(--ease-soft), color .3s var(--ease-soft); }
    .challenge-item:hover .icon-box,
    .feature:hover .icon-box,
    .impact-item:hover .icon-box,
    .ai-map-step:hover .icon-box,
    .more-card:hover .icon-box,
    .mini-scenario:hover .icon-box { transform: translateY(-3px) scale(1.07) rotate(-5deg); }

    .feature, .more-card, .ai-map-step, .integration-point, .chat-thumb {
      transition: transform .45s var(--ease-wow), box-shadow .45s var(--ease-soft), border-color .3s var(--ease-soft), background-color .3s var(--ease-soft);
    }
    .feature:hover, .more-card:hover { border-color: #c4d3e9; box-shadow: 0 22px 48px rgba(15,23,42,.1); transform: translateY(-4px); }
    .ai-map-step:hover { background: rgba(255,255,255,.95); transform: translateY(-4px); }
    .integration-point:hover { border-color: #4c6396; background: rgba(255,255,255,.07); transform: translateY(-3px); }
    .chat-thumb:hover { box-shadow: 0 24px 46px rgba(15,23,42,.16); transform: translateY(-4px) scale(1.012); }
    .more-card .more-link .icon, .product-card-copy a .icon { transition: transform .35s var(--ease-wow); }
    .more-card:hover .more-link .icon { transform: translateX(5px); }
    .challenge-item, .impact-item { transition: background-color .35s var(--ease-soft); }
    .challenge-item:hover, .impact-item:hover { background: rgba(237,244,255,.5); }

    /* before / after: the "after" column gets a green wash on entry */
    .before-after .state-column + .state-column { position: relative; overflow: hidden; }
    html.wow .before-after.is-in .state-column + .state-column::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(96,130,111,0), rgba(96,130,111,.2), rgba(96,130,111,0));
      transform: translate3d(-150%, 0, 0);
      animation: wowSheen 1600ms var(--ease-soft) 450ms 1;
      pointer-events: none;
      content: "";
    }

    /* integration: pipeline assembles, arrows pulse, shell glows */
    .integration-copy { position: relative; z-index: 1; }
    .integration-shell::after {
      position: absolute;
      top: -32%;
      right: -12%;
      z-index: 0;
      width: 54%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79,140,255,.2), rgba(79,140,255,0) 68%);
      pointer-events: none;
      content: "";
    }
    html.wow .integration-shell::after { animation: wowDriftB 30s ease-in-out infinite alternate; }
    html.wow .flow-connector .icon { animation: wowFlowArrow 2.6s var(--ease-soft) infinite; }
    .flow-node { transition: border-color .35s var(--ease-soft), background-color .35s var(--ease-soft), transform .45s var(--ease-wow); }
    .flow-node:hover { border-color: #4c6396; background: #131b30; transform: translateX(4px); }

    /* results: bars fill after their number lands */
    html.wow .metric-bar span { transform: scaleX(0); transform-origin: left center; }
    html.wow .metric-grid.is-in .metric-bar span { transform: scaleX(1); transition: transform 900ms var(--ease-wow) calc(var(--si, 0) * 95ms + 280ms); }
    .metric strong { font-variant-numeric: tabular-nums; }

    /* back-to-top appears once the reader has moved */
    html.wow .scroll-top { opacity: 0; transform: translate3d(0, 14px, 0) scale(.9); pointer-events: none; transition: opacity .4s var(--ease-soft), transform .5s var(--ease-wow), color .25s var(--ease-soft); }
    html.wow .scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
    html.wow .scroll-top.is-visible:hover { transform: translateY(-3px); }

    @media (max-width: 1060px) {
      .nav-link { padding-inline: 8px; font-size: .87rem; }
      .header-inner { gap: 16px; }
      .hero-copy { padding-right: 30px; }
      .overview-grid, .challenge-layout, .solution-layout, .impact-layout { gap: 46px; }
      .product-card { min-height: 470px; }
      .integration-copy { grid-template-columns: 1fr; }
      .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
      .flow-node { min-height: 170px; grid-template-columns: 1fr; align-content: center; text-align: center; }
      .flow-connector { width: 22px; height: auto; margin-inline: -17px; transform: rotate(-90deg); }
      .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
    }

    @media (max-width: 860px) {
      .container { width: min(calc(100% - 32px), 720px); }
      .menu-button { display: inline-flex; margin-left: auto; }
      .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1200;
        display: flex;
        width: min(360px, 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 20px;
        padding: 18px 20px 26px;
        visibility: hidden;
        background: var(--ink);
        box-shadow: -20px 0 55px rgba(0,0,0,.35);
        opacity: 0;
        transform: translateX(100%);
        transition: opacity .2s ease, transform .25s ease, visibility .25s;
      }
      .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
      .menu-head { display: flex; min-height: 45px; align-items: center; justify-content: space-between; color: var(--white); font-family: var(--heading); }
      .menu-close { display: inline-flex; }
      .nav-links { display: grid; align-items: stretch; }
      .nav-link { width: 100%; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
      .nav-actions { display: grid; margin-top: auto; }
      .language-select { justify-self: center; }
      .language-menu { top: auto; right: auto; bottom: calc(100% + 8px); left: 50%; transform: translate3d(-50%, 8px, 0) scale(.97); transform-origin: 50% 100%; }
      .language-select.is-open .language-menu { transform: translate3d(-50%, 0, 0); }
      .login-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

      .case-hero::before { display: none; }
      .breadcrumbs { padding-top: 18px; }
      .hero-grid { display: flex; min-height: auto; flex-direction: column; }
      .hero-copy { width: 100%; max-width: none; padding: 48px 0 44px; }
      .hero-media { position: relative; inset: auto; width: calc(100% + 32px); height: min(72vw, 560px); margin: 0 -16px; }
      .hero-media::after { background: linear-gradient(180deg, var(--green-pale) 0, rgba(228,238,229,0) 24%); }
      .hero-media img { object-position: 60% center; }
      .hero-stat { right: 16px; bottom: 16px; }
      .case-nav-wrap { position: sticky; top: 72px; z-index: 40; }

      .overview-grid, .challenge-layout, .solution-layout, .impact-layout, .results-head, .ai-map-intro, .launch-card { grid-template-columns: 1fr; }
      .product-card { min-height: 520px; }
      .challenge-photo { order: 2; }
      .challenge-photo .editorial-frame img, .solution-photo .editorial-frame img, .impact-photo .editorial-frame img { aspect-ratio: 3 / 2; }
      .solution-photo { order: 0; }
      .solution-features { margin-top: 32px; }
      .integration-copy { padding: 44px 30px; }
      .flow { grid-template-columns: 1fr; }
      .flow-node { min-height: 110px; grid-template-columns: 135px 1fr; text-align: left; }
      .flow-connector { width: auto; height: 24px; margin: 0; transform: none; }
      .examples-intro { display: grid; }
      .privacy-note { max-width: none; }
      .scenario-grid { grid-template-columns: 1fr; }
      .scenario-photo { order: -1; }
      .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .metric:last-child { grid-column: 1 / -1; min-height: 210px; }
      .ai-map-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .more-grid { grid-template-columns: 1fr; }
      .more-card { min-height: 150px; }
      .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
      .footer-social { grid-column: 2 / -1; }
      .hero-atmo, .hero-mascot, .hero-cue { display: none; }
      .hero-media picture { position: absolute; }
      html.wow .hero-media { clip-path: inset(0 0 12% 0); }
      html.wow.hero-in .hero-media { clip-path: inset(0 0 0 0); }
      .case-nav-wrap.is-stuck { box-shadow: 0 10px 24px rgba(15,23,42,.1); }
      .card-mascot { top: 16px; right: 14px; }
    }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 28px), 560px); }
      h1 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
      h2 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
      .site-header { backdrop-filter: none; }
      .header-inner { min-height: 66px; }
      .site-brand img { width: 123px; }
      .header-inner > .button { display: none; }
      .hero-copy { padding: 38px 0; }
      .brand-lockup { align-items: flex-start; flex-direction: column; margin-bottom: 23px; }
      .brand-logo-card { width: 142px; }
      .hero-actions { display: grid; }
      .hero-meta { display: grid; gap: 8px; }
      .hero-media { width: calc(100% + 28px); height: 94vw; max-height: 520px; margin-inline: -14px; }
      .hero-media img { object-position: 65% center; }
      .hero-stat { left: 14px; right: 14px; width: auto; }
      .case-nav-wrap { top: 66px; }
      .case-nav { min-height: 58px; }
      .case-nav strong { display: none; }
      .section { padding: 72px 0; }
      .fact-grid { grid-template-columns: 1fr; }
      .fact { min-height: 112px; }
      .product-card { min-height: 430px; }
      .product-card-product { right: 2%; width: 49%; }
      .product-card-copy { bottom: 24px; left: 23px; }
      .before-after, .solution-features, .integration-points, .scenario-pair, .metric-grid { grid-template-columns: 1fr; }
      .state-column + .state-column { border-top: 1px solid var(--line); border-left: 0; }
      .solution-photo .editorial-frame img, .challenge-photo .editorial-frame img, .impact-photo .editorial-frame img { aspect-ratio: 4 / 5; }
      .feature { min-height: 175px; }
      .integration-copy { padding: 35px 20px; }
      .flow-node { grid-template-columns: 1fr; text-align: center; }
      .ai-map-frame { margin-inline: -14px; padding: 8px; border-radius: 20px; }
      .ai-map-scroll { border-radius: 14px; }
      .ai-map-link { min-width: 920px; }
      .ai-map-link img { border-radius: 12px; }
      .ai-map-open { right: auto; left: 12px; }
      .ai-map-caption { align-items: flex-start; }
      .ai-map-hint { display: inline-flex; }
      .ai-map-legend { grid-template-columns: 1fr; }
      .ai-map-step { min-height: 155px; }
      .chat-gallery, .chat-gallery.two { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
      .chat-thumb { min-width: 82vw; scroll-snap-align: start; }
      .metric:last-child { grid-column: auto; }
      .metric { min-height: 235px; }
      .launch-card { margin-inline: -4px; padding: 31px 22px; border-radius: 23px; }
      .launch-panel { padding: 22px 18px; }
      .launch-actions { align-items: stretch; flex-direction: column; }
      .launch-actions .button { width: 100%; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-brand { grid-column: 1 / -1; }
      .footer-social { grid-column: auto; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .scroll-top { right: 14px; bottom: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      body:not(.motion-explicit) *, body:not(.motion-explicit) *::before, body:not(.motion-explicit) *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
      [data-wow], [data-stagger] > *, .metric-bar span, .status-pill { opacity: 1 !important; transform: none !important; transition: none !important; }
      .scan-sweep { display: none !important; }
      .scroll-top { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
      .hero-atmo, .hero-scan, .pc-glow, .pc-sheen, .hero-cue { display: none !important; }
      .hero-media, .hero-media img, .hero-stat, [data-hero-item], [data-scene-item], [data-stagger-item], .product-card, .hero-mascot, .mascot-bubble, .bubble-text, .sw > i {
        opacity: 1 !important;
        clip-path: none !important;
        transform: none !important;
      }
      .bubble-dots { display: none !important; }
    }
  