    :root {
      color-scheme: dark;
      --night: #020811;
      --night-soft: #071725;
      --paper: #edf4f6;
      --paper-bright: #f8fbfc;
      --ink: #102e3f;
      --muted: #58707e;
      --cyan: #68dcff;
      --blue: #157bc0;
      --orange: #ed6b32;
      --violet: #6676d8;
      --mint: #55c9c4;
      --shell: min(100% - 64px, 1480px);
    }

    * { box-sizing: border-box; }
    html { min-width: 320px; scroll-behavior: smooth; background: var(--night); }
    body { min-width: 320px; margin: 0; overflow-x: hidden; color: #eaf6fb; background: var(--night); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    button, input, a { font: inherit; }
    img, svg { max-width: 100%; }
    a { color: inherit; }
    main { overflow: clip; }
    [hidden] { display: none !important; }

    .skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; color: #06111d; border-radius: 8px; background: #dff9ff; transform: translateY(-150%); transition: transform .2s ease; }
    .skip-link:focus { transform: translateY(0); }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 90px;
      padding: 28px clamp(28px, 3vw, 48px) 0;
      display: flex;
      align-items: flex-start;
      isolation: isolate;
      opacity: 0;
      transform: translateY(-10px);
      animation: headerIn .9s ease .15s forwards;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0;
      background: linear-gradient(180deg, rgba(248, 252, 255, .97) 0%, rgba(243, 249, 253, .88) 72%, rgba(243, 249, 253, 0) 100%);
      box-shadow: 0 12px 36px rgba(43, 83, 117, .08);
      -webkit-backdrop-filter: blur(18px) saturate(130%);
      backdrop-filter: blur(18px) saturate(130%);
      transition: opacity .55s ease;
    }

    .site-header.is-light::before { opacity: 1; }

    .mini-logo {
      margin: 9px 58px 0 0;
      flex: 0 0 auto;
      color: #bfeeff;
      background: linear-gradient(105deg, #68cfff 0%, #bfefff 17%, #fff 29%, #68cfff 46%, #e9fbff 64%, #70d6ff 82%, #d6f7ff 100%);
      background-size: 240% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 15px;
      font-weight: 500;
      line-height: 18px;
      letter-spacing: .08em;
      text-decoration: none;
      white-space: nowrap;
      opacity: .9;
      filter: drop-shadow(0 0 8px rgba(73, 190, 255, .34));
      animation: miniLogoShimmer 9s ease-in-out infinite alternate;
    }

    .mini-logo:hover,
    .mini-logo:focus-visible { opacity: 1; filter: drop-shadow(0 0 11px rgba(82, 203, 255, .62)); }
    .site-header.is-light .mini-logo { filter: brightness(.56) saturate(1.5) drop-shadow(0 2px 7px rgba(18, 99, 160, .16)); }

    .main-nav { min-height: 38px; display: flex; align-items: center; gap: clamp(28px, 3.25vw, 54px); }
    .main-nav a,
    .header-actions a { color: rgba(220, 233, 247, .72); text-decoration: none; font-size: 12px; transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
    .main-nav a:hover,
    .main-nav a:focus-visible,
    .main-nav a[aria-current="page"] { color: #eef8ff; }
    .site-header.is-light .main-nav a { color: rgba(24, 47, 70, .7); }
    .site-header.is-light .main-nav a:hover,
    .site-header.is-light .main-nav a:focus-visible,
    .site-header.is-light .main-nav a[aria-current="page"] { color: #0869b5; }

    .header-actions { margin-left: auto; display: flex; align-items: center; gap: 27px; }
    .header-actions a { min-width: 142px; height: 36px; padding-inline: 16px; border: 1px solid rgba(44, 147, 255, .38); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #e9f8ff; background: linear-gradient(180deg, rgba(26, 113, 201, .82), rgba(9, 62, 119, .92)); box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 0 22px rgba(17, 119, 233, .14); white-space: nowrap; }
    .header-actions a:hover,
    .header-actions a:focus-visible { color: #fff; border-color: rgba(76, 177, 255, .66); box-shadow: 0 0 24px rgba(20, 127, 255, .2); }
    .site-header.is-light .header-actions a { color: #f8fcff; border-color: rgba(18, 110, 181, .28); background: linear-gradient(180deg, #1782d1, #0d65aa); box-shadow: 0 8px 24px rgba(18, 105, 171, .2), inset 0 1px rgba(255, 255, 255, .2); }

    .menu-toggle {
      position: relative;
      width: 40px;
      height: 40px;
      margin: -2px 0 0 10px;
      padding: 0;
      flex: 0 0 40px;
      display: none;
      border: 1px solid rgba(91, 193, 238, .34);
      border-radius: 11px;
      color: #8edfff;
      background: rgba(4, 15, 29, .68);
      box-shadow: inset 0 0 18px rgba(39, 151, 217, .08), 0 8px 24px rgba(0, 0, 0, .14);
      -webkit-backdrop-filter: blur(12px) saturate(130%);
      backdrop-filter: blur(12px) saturate(130%);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .menu-toggle span { position: absolute; left: 10px; width: 18px; height: 1px; border-radius: 2px; background: currentColor; box-shadow: 0 0 7px currentColor; transform-origin: center; transition: top .32s ease, opacity .24s ease, transform .32s cubic-bezier(.2, .72, .2, 1); }
    .menu-toggle span:nth-child(1) { top: 12px; }
    .menu-toggle span:nth-child(2) { top: 19px; }
    .menu-toggle span:nth-child(3) { top: 26px; }
    .site-header.is-menu-open .menu-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
    .site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
    .site-header.is-menu-open .menu-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
    .site-header.is-light .menu-toggle { color: #166d95; border-color: rgba(32, 115, 153, .28); background: rgba(248, 252, 253, .84); }

    [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .82s ease, transform .9s cubic-bezier(.2, .72, .2, 1); }
    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

    .products-hero {
      position: relative;
      min-height: 920px;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 76% 40%, rgba(18, 130, 206, .2), transparent 31%),
        radial-gradient(circle at 28% 86%, rgba(98, 95, 215, .1), transparent 27%),
        linear-gradient(143deg, #020811 0%, #071725 55%, #020910 100%);
    }

    .products-hero::before { content: "03"; position: absolute; right: -3vw; bottom: -7vw; z-index: -3; color: transparent; -webkit-text-stroke: 1px rgba(113, 215, 249, .055); font-family: Georgia, serif; font-size: clamp(290px, 42vw, 680px); line-height: .72; letter-spacing: -.1em; }
    .hero-grid { position: absolute; inset: 0; z-index: -4; opacity: .32; background-image: linear-gradient(rgba(98, 202, 247, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(98, 202, 247, .05) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(ellipse at 68% 46%, #000, transparent 76%); mask-image: radial-gradient(ellipse at 68% 46%, #000, transparent 76%); }
    .hero-circuit { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; opacity: .76; pointer-events: none; }
    .hero-circuit path { fill: none; stroke: rgba(104, 211, 250, .11); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .hero-circuit .current { stroke: rgba(134, 232, 255, .72); stroke-width: 1.1; stroke-dasharray: 2 78; filter: drop-shadow(0 0 6px rgba(92, 218, 255, .75)); animation: currentRun 8s linear infinite; }

    .hero-shell { width: var(--shell); min-height: 920px; margin: 0 auto; padding: 138px 0 92px; display: grid; grid-template-columns: minmax(430px, .78fr) minmax(580px, 1.22fr); align-items: center; gap: clamp(58px, 7vw, 112px); }
    .hero-copy { position: relative; z-index: 4; }
    .breadcrumbs { margin: 0 0 clamp(54px, 6vh, 74px); display: flex; align-items: center; gap: 10px; color: rgba(184, 213, 232, .45); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
    .breadcrumbs a { text-decoration: none; }
    .breadcrumbs span::before { content: "/"; margin-right: 10px; color: rgba(111, 199, 237, .32); }
    .eyebrow { margin: 0 0 19px; display: flex; align-items: center; gap: 13px; color: #79dfff; font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 29px; height: 1px; background: linear-gradient(90deg, #66dcff, transparent); box-shadow: 0 0 8px rgba(89, 211, 255, .55); }
    .hero-title { margin: 0; color: #f1faff; font-size: clamp(68px, 8.2vw, 132px); font-weight: 390; line-height: .78; letter-spacing: -.078em; }
    .hero-title span { display: block; }
    .hero-title em { display: block; color: #9fe6fb; font-style: normal; font-weight: 300; }
    .hero-lead { max-width: 620px; margin: 35px 0 0; color: rgba(213, 233, 245, .68); font-size: clamp(14px, 1.16vw, 18px); line-height: 1.72; }
    .hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

    .button-primary,
    .button-ghost,
    .product-action { min-height: 50px; padding: 0 22px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; text-decoration: none; font-size: 11px; letter-spacing: .045em; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
    .button-primary { color: #f8fdff; border: 1px solid rgba(84, 190, 250, .48); background: linear-gradient(180deg, #1885d0, #0c5e9d); box-shadow: 0 17px 38px rgba(5, 78, 145, .25), inset 0 1px rgba(255, 255, 255, .18); }
    .button-ghost { color: rgba(218, 239, 249, .73); border: 1px solid rgba(116, 208, 244, .18); background: rgba(10, 31, 49, .36); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
    .button-primary::after,
    .product-action::after { content: "↗"; font-size: 14px; }
    .button-primary:hover,
    .button-primary:focus-visible,
    .button-ghost:hover,
    .button-ghost:focus-visible,
    .product-action:hover,
    .product-action:focus-visible { transform: translateY(-3px); }

    .hero-tags { margin: 29px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
    .hero-tags li { padding: 8px 11px; color: rgba(181, 216, 231, .5); border: 1px solid rgba(105, 204, 242, .12); border-radius: 999px; background: rgba(8, 28, 44, .35); font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }

    .ecosystem-panel {
      --rx: 0deg;
      --ry: 0deg;
      position: relative;
      min-height: 650px;
      overflow: hidden;
      border: 1px solid rgba(108, 211, 247, .2);
      border-radius: 30px;
      background:
        radial-gradient(circle at 50% 48%, rgba(54, 160, 215, .15), transparent 32%),
        linear-gradient(145deg, rgba(8, 30, 49, .94), rgba(2, 13, 24, .91));
      box-shadow: 0 45px 120px rgba(0, 0, 0, .31), inset 0 1px rgba(255, 255, 255, .04);
      transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform .22s ease-out;
    }

    .ecosystem-panel::before { content: ""; position: absolute; inset: 0; opacity: .48; background-image: linear-gradient(rgba(87, 190, 229, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(87, 190, 229, .045) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(circle at 50% 52%, #000, transparent 76%); mask-image: radial-gradient(circle at 50% 52%, #000, transparent 76%); }
    .ecosystem-topbar { position: relative; z-index: 5; height: 58px; padding: 0 22px; border-bottom: 1px solid rgba(103, 203, 241, .11); display: flex; align-items: center; gap: 13px; color: rgba(170, 213, 229, .45); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; background: rgba(3, 17, 30, .5); }
    .ecosystem-topbar i { width: 6px; height: 6px; border: 1px solid rgba(127, 220, 250, .34); border-radius: 50%; }
    .ecosystem-topbar span { margin-left: auto; display: flex; align-items: center; gap: 8px; }
    .ecosystem-topbar span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #6ee1ff; box-shadow: 0 0 9px rgba(95, 219, 255, .72); animation: nodePulse 2.7s ease-in-out infinite; }
    .ecosystem-orbits { position: absolute; left: 50%; top: 54%; width: 92%; height: 82%; overflow: visible; transform: translate(-50%, -50%); }
    .ecosystem-orbits circle,
    .ecosystem-orbits ellipse,
    .ecosystem-orbits path { fill: none; stroke: rgba(105, 207, 245, .14); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .ecosystem-orbits .orbit-dash { stroke-dasharray: 2 11; }
    .ecosystem-orbits .orbit-current { stroke: rgba(119, 224, 252, .72); stroke-dasharray: 1 30; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(90, 211, 245, .65)); animation: orbitRun 13s linear infinite; }

    .ecosystem-core {
      position: absolute;
      left: 50%;
      top: 54%;
      z-index: 3;
      width: 188px;
      aspect-ratio: 1;
      border: 1px solid rgba(126, 222, 252, .32);
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      background:
        radial-gradient(circle at 35% 27%, rgba(160, 247, 255, .18), transparent 17%),
        radial-gradient(circle at 72% 72%, rgba(98, 83, 231, .24), transparent 34%),
        radial-gradient(circle, rgba(20, 109, 166, .72), rgba(4, 27, 47, .98) 69%);
      box-shadow: inset -25px -30px 55px rgba(0, 4, 12, .58), 0 0 0 15px rgba(65, 175, 222, .025), 0 0 70px rgba(42, 162, 211, .16);
      transform: translate(-50%, -50%);
    }

    .ecosystem-core::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(123, 220, 250, .18); border-radius: inherit; background: repeating-conic-gradient(from 12deg, rgba(117, 226, 255, .28) 0 .4deg, transparent .4deg 7deg); -webkit-mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%); mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%); animation: coreOrbit 34s linear infinite; }
    .ecosystem-core strong { display: block; color: #e9faff; font-size: 25px; font-weight: 480; letter-spacing: -.05em; }
    .ecosystem-core span { margin-top: 7px; display: block; color: rgba(167, 216, 232, .42); font-size: 6px; letter-spacing: .18em; text-transform: uppercase; }

    .eco-node {
      --node-accent: #6edfff;
      position: absolute;
      z-index: 4;
      width: min(35%, 210px);
      min-height: 112px;
      padding: 18px;
      border: 1px solid color-mix(in srgb, var(--node-accent) 30%, rgba(143, 215, 238, .12));
      border-radius: 17px;
      color: #eefaff;
      background: rgba(4, 19, 32, .76);
      box-shadow: 0 22px 48px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .035);
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px);
      animation: nodeFloat 6s ease-in-out infinite alternate;
    }

    .eco-node small { display: flex; align-items: center; gap: 8px; color: color-mix(in srgb, var(--node-accent) 75%, #dff8ff); font-size: 6px; letter-spacing: .16em; text-transform: uppercase; }
    .eco-node small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--node-accent); box-shadow: 0 0 9px var(--node-accent); }
    .eco-node strong { margin-top: 16px; display: block; font-size: 19px; font-weight: 500; letter-spacing: -.035em; }
    .eco-node span { margin-top: 5px; display: block; color: rgba(180, 216, 229, .46); font-size: 8px; line-height: 1.45; }
    .eco-node--cms { --node-accent: #65d8ff; top: 17%; left: 7%; }
    .eco-node--post { --node-accent: #f07942; top: 28%; right: 5%; animation-delay: -2s; }
    .eco-node--trans { --node-accent: #7f8ce5; left: 31%; bottom: 6%; animation-delay: -4s; }

    .hero-bridge { position: relative; height: clamp(115px, 12vw, 180px); margin-top: -1px; overflow: hidden; background: linear-gradient(180deg, #020910 0%, #edf4f6 100%); }
    .hero-bridge::before { content: ""; position: absolute; left: 6%; right: 6%; top: 48%; height: 1px; background: linear-gradient(90deg, transparent, rgba(104, 224, 255, .64), rgba(46, 127, 164, .35), transparent); box-shadow: 0 0 11px rgba(78, 190, 224, .3); }

    .overview-section { color-scheme: light; color: var(--ink); background: var(--paper); }
    .overview-shell { width: var(--shell); margin: 0 auto; padding: clamp(90px, 10vw, 145px) 0 clamp(115px, 12vw, 175px); }
    .section-head { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, .45fr); gap: clamp(50px, 8vw, 130px); align-items: end; }
    .section-kicker,
    .product-kicker { margin: 0 0 18px; display: flex; align-items: center; gap: 12px; color: #1979aa; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
    .section-kicker::before,
    .product-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 8px color-mix(in srgb, currentColor 48%, transparent); }
    .section-title { margin: 0; color: var(--ink); font-size: clamp(54px, 6.8vw, 105px); font-weight: 400; line-height: .88; letter-spacing: -.07em; }
    .section-intro { max-width: 570px; margin: 0 0 5px; color: #617987; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.72; }
    .overview-grid { margin-top: clamp(60px, 7vw, 95px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }

    .overview-card {
      --card-accent: #2086bc;
      position: relative;
      min-height: 430px;
      padding: 27px;
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--card-accent) 22%, rgba(35, 101, 129, .12));
      border-radius: 23px;
      display: flex;
      flex-direction: column;
      color: var(--ink);
      background: rgba(250, 253, 254, .72);
      box-shadow: 0 26px 65px rgba(43, 88, 112, .08), inset 0 1px rgba(255, 255, 255, .76);
      text-decoration: none;
      transition: transform .45s cubic-bezier(.2, .72, .2, 1), box-shadow .45s ease;
    }

    .overview-card:hover,
    .overview-card:focus-visible { transform: translateY(-8px); box-shadow: 0 35px 82px rgba(43, 88, 112, .14); }
    .overview-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 220px; aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--card-accent) 18%, transparent); border-radius: 50%; box-shadow: 0 0 0 29px color-mix(in srgb, var(--card-accent) 3%, transparent), 0 0 0 63px color-mix(in srgb, var(--card-accent) 2%, transparent); }
    .overview-card--post { --card-accent: #e56a32; }
    .overview-card--cms { --card-accent: #167fbd; }
    .overview-card--trans { --card-accent: #6677d4; }
    .overview-top { display: flex; align-items: center; justify-content: space-between; color: color-mix(in srgb, var(--card-accent) 78%, #23485a); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
    .overview-top strong { font-family: Georgia, serif; font-size: 25px; font-weight: 400; letter-spacing: 0; }
    .overview-symbol { position: relative; width: 100%; height: 118px; margin-top: 45px; }
    .overview-symbol i { position: absolute; border: 1px solid color-mix(in srgb, var(--card-accent) 28%, transparent); background: color-mix(in srgb, var(--card-accent) 5%, rgba(255, 255, 255, .52)); }
    .overview-card--post .overview-symbol i { left: 7%; right: 7%; height: 48px; border-radius: 14px; }
    .overview-card--post .overview-symbol i:nth-child(1) { top: 0; transform: translateX(-8px); }
    .overview-card--post .overview-symbol i:nth-child(2) { top: 34px; transform: translateX(8px); }
    .overview-card--post .overview-symbol i:nth-child(3) { top: 68px; transform: translateX(-2px); }
    .overview-card--cms .overview-symbol i { width: 82px; height: 55px; border-radius: 11px; }
    .overview-card--cms .overview-symbol i:nth-child(1) { left: 8%; top: 8px; }
    .overview-card--cms .overview-symbol i:nth-child(2) { left: 39%; top: 35px; }
    .overview-card--cms .overview-symbol i:nth-child(3) { right: 6%; top: 2px; }
    .overview-card--trans .overview-symbol i { width: 11px; height: 11px; border-radius: 50%; background: var(--card-accent); box-shadow: 0 0 13px color-mix(in srgb, var(--card-accent) 35%, transparent); }
    .overview-card--trans .overview-symbol i:nth-child(1) { left: 10%; bottom: 14px; }
    .overview-card--trans .overview-symbol i:nth-child(2) { left: 47%; top: 12px; }
    .overview-card--trans .overview-symbol i:nth-child(3) { right: 8%; bottom: 32px; }
    .overview-card--trans .overview-symbol::before,
    .overview-card--trans .overview-symbol::after { content: ""; position: absolute; height: 1px; background: color-mix(in srgb, var(--card-accent) 32%, transparent); transform-origin: left; }
    .overview-card--trans .overview-symbol::before { left: 12%; top: 75px; width: 42%; transform: rotate(-30deg); }
    .overview-card--trans .overview-symbol::after { left: 49%; top: 24px; width: 45%; transform: rotate(35deg); }
    .overview-card h2 { position: relative; z-index: 2; margin: auto 0 0; font-size: clamp(30px, 2.7vw, 43px); font-weight: 480; letter-spacing: -.05em; }
    .overview-card p { position: relative; z-index: 2; max-width: 380px; margin: 15px 0 0; color: #617987; font-size: 12px; line-height: 1.62; }
    .overview-arrow { position: absolute; right: 26px; bottom: 26px; z-index: 3; width: 37px; height: 37px; border: 1px solid color-mix(in srgb, var(--card-accent) 28%, transparent); border-radius: 50%; display: grid; place-items: center; color: var(--card-accent); background: rgba(255, 255, 255, .62); }

    .product-dock-wrap { position: sticky; top: 88px; height: 0; z-index: 60; pointer-events: none; }
    .product-dock {
      position: relative;
      width: min(100% - 64px, 760px);
      height: 58px;
      margin: 0 auto;
      padding: 6px;
      border: 1px solid rgba(39, 111, 144, .16);
      border-radius: 17px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 5px;
      color: #41606f;
      background: rgba(245, 250, 251, .86);
      box-shadow: 0 18px 48px rgba(30, 73, 95, .13), inset 0 1px rgba(255, 255, 255, .75);
      -webkit-backdrop-filter: blur(18px) saturate(135%);
      backdrop-filter: blur(18px) saturate(135%);
      pointer-events: auto;
      transition: opacity .32s ease, transform .4s cubic-bezier(.2, .72, .2, 1);
    }

    .product-dock.is-hidden { opacity: 0; transform: translateY(-12px); pointer-events: none; }

    .product-dock a { min-width: 0; border-radius: 11px; display: flex; align-items: center; justify-content: center; gap: 10px; color: inherit; font-size: 9px; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: color .3s ease, background .3s ease, box-shadow .3s ease; }
    .product-dock a span { font-family: Georgia, serif; font-size: 13px; letter-spacing: 0; }
    .product-dock a.is-active { color: #f8fdff; background: linear-gradient(180deg, #1884c7, #0e639d); box-shadow: 0 7px 18px rgba(21, 105, 158, .2), inset 0 1px rgba(255, 255, 255, .2); }

    .product-section { position: relative; scroll-margin-top: 145px; overflow: hidden; isolation: isolate; }
    .product-section::after { content: ""; position: absolute; inset: 0; z-index: -3; opacity: .25; background-image: linear-gradient(rgba(52, 122, 151, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(52, 122, 151, .045) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(ellipse at 70% 48%, #000, transparent 77%); mask-image: radial-gradient(ellipse at 70% 48%, #000, transparent 77%); }
    .product-shell { width: var(--shell); margin: 0 auto; padding: clamp(150px, 14vw, 210px) 0 clamp(130px, 13vw, 190px); }
    .product-heading { display: grid; grid-template-columns: minmax(0, .92fr) minmax(330px, .46fr); gap: clamp(48px, 8vw, 130px); align-items: end; }
    .product-number { margin: 0 0 16px; color: var(--product-accent); font-family: Georgia, serif; font-size: 22px; }
    .product-title { max-width: 900px; margin: 0; font-size: clamp(57px, 7.2vw, 112px); font-weight: 410; line-height: .84; letter-spacing: -.075em; }
    .product-summary { margin: 0 0 6px; font-size: clamp(14px, 1.12vw, 17px); line-height: 1.75; }
    .product-audience { margin-top: 25px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
    .product-audience li { padding: 8px 11px; border: 1px solid color-mix(in srgb, var(--product-accent) 24%, transparent); border-radius: 999px; color: color-mix(in srgb, var(--product-accent) 72%, currentColor); background: color-mix(in srgb, var(--product-accent) 5%, transparent); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
    .product-stage { margin-top: clamp(67px, 8vw, 105px); display: grid; grid-template-columns: minmax(520px, 1.16fr) minmax(370px, .84fr); gap: clamp(38px, 5vw, 78px); align-items: center; }

    .product-post { --product-accent: #e96d34; color-scheme: light; color: #402b22; background: radial-gradient(circle at 81% 22%, rgba(232, 115, 53, .1), transparent 29%), #f4f0ea; }
    .product-post .product-kicker { color: #c85a29; }
    .product-post .product-summary { color: #77665c; }
    .product-post::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 135px; z-index: -1; background: linear-gradient(180deg, #edf4f6, rgba(237, 244, 246, 0)); }

    .post-console {
      --rx: 0deg;
      --ry: 0deg;
      min-height: 570px;
      overflow: hidden;
      border: 1px solid rgba(170, 91, 48, .2);
      border-radius: 26px;
      color: #f9fbfc;
      background: linear-gradient(145deg, #2b2522, #151719);
      box-shadow: 0 42px 95px rgba(72, 45, 30, .22), 12px 14px 0 rgba(220, 102, 48, .07);
      transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform .22s ease-out;
    }

    .console-bar { height: 55px; padding: 0 20px; border-bottom: 1px solid rgba(255, 255, 255, .08); display: flex; align-items: center; gap: 10px; color: rgba(235, 226, 219, .48); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; background: rgba(13, 15, 17, .45); }
    .console-bar i { width: 6px; height: 6px; border: 1px solid rgba(243, 160, 115, .4); border-radius: 50%; }
    .console-bar strong { margin-left: 9px; color: #f5a270; font-size: 8px; font-weight: 600; }
    .console-bar span { margin-left: auto; }
    .post-workspace { min-height: 515px; display: grid; grid-template-columns: 66px 1fr; }
    .post-sidebar { padding: 21px 13px; border-right: 1px solid rgba(255, 255, 255, .065); display: grid; align-content: start; justify-items: center; gap: 13px; background: rgba(11, 13, 15, .38); }
    .post-sidebar i { width: 34px; height: 34px; border: 1px solid rgba(236, 146, 98, .14); border-radius: 10px; display: grid; place-items: center; color: rgba(244, 164, 119, .44); font-style: normal; font-size: 7px; }
    .post-sidebar i:first-child { color: #fff1e9; border-color: rgba(240, 130, 72, .36); background: rgba(217, 93, 33, .2); box-shadow: inset 0 0 16px rgba(238, 105, 42, .08); }
    .post-main { min-width: 0; padding: 26px; }
    .post-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .post-metric { padding: 14px; border: 1px solid rgba(240, 158, 110, .11); border-radius: 12px; background: rgba(255, 255, 255, .035); }
    .post-metric small { display: block; color: rgba(230, 213, 202, .38); font-size: 6px; letter-spacing: .13em; text-transform: uppercase; }
    .post-metric strong { margin-top: 11px; display: block; color: rgba(255, 245, 238, .82); font-size: 13px; font-weight: 480; }
    .post-map { position: relative; min-height: 300px; margin-top: 12px; overflow: hidden; border: 1px solid rgba(240, 158, 110, .1); border-radius: 15px; background-image: linear-gradient(rgba(232, 142, 94, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 142, 94, .045) 1px, transparent 1px), radial-gradient(circle at 55% 45%, rgba(189, 78, 31, .1), transparent 45%); background-size: 25px 25px, 25px 25px, auto; }
    .post-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .post-map .route-halo { fill: none; stroke: rgba(238, 111, 52, .14); stroke-width: 10; filter: blur(4px); }
    .post-map .route { fill: none; stroke: #f27a41; stroke-width: 2; stroke-dasharray: 5 8; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 5px rgba(238, 104, 44, .52)); animation: postRoute 14s linear infinite; }
    .courier-pin { position: absolute; width: 10px; height: 10px; margin: -5px; border: 2px solid #1b1c1d; border-radius: 50%; background: #ff9a64; box-shadow: 0 0 0 6px rgba(235, 107, 49, .08), 0 0 14px rgba(237, 107, 49, .38); }
    .courier-pin--one { left: 17%; top: 68%; }
    .courier-pin--two { left: 47%; top: 35%; }
    .courier-pin--three { right: 12%; top: 58%; }
    .post-order-card { position: absolute; left: 20px; top: 18px; width: 180px; padding: 13px; border: 1px solid rgba(244, 161, 113, .16); border-radius: 11px; background: rgba(22, 22, 22, .82); box-shadow: 0 15px 35px rgba(0, 0, 0, .24); }
    .post-order-card small { color: rgba(229, 207, 194, .4); font-size: 6px; letter-spacing: .12em; text-transform: uppercase; }
    .post-order-card strong { margin-top: 8px; display: block; color: #fff2ea; font-size: 10px; font-weight: 480; }
    .post-order-card span { margin-top: 5px; display: block; color: #f38a51; font-size: 7px; }
    .courier-phone { position: absolute; right: 22px; bottom: 18px; width: 114px; height: 205px; padding: 9px; border: 1px solid rgba(244, 170, 129, .2); border-radius: 19px; background: #111416; box-shadow: 0 20px 43px rgba(0, 0, 0, .32); transform: rotate(3deg); }
    .courier-phone::before { content: ""; width: 33px; height: 3px; margin: 0 auto 12px; display: block; border-radius: 3px; background: rgba(237, 168, 129, .18); }
    .phone-stop { min-height: 42px; margin-bottom: 7px; padding: 9px; border-radius: 8px; color: rgba(255, 238, 228, .68); background: rgba(232, 105, 45, .1); font-size: 6px; line-height: 1.4; }
    .phone-stop b { display: block; color: #f29662; font-size: 7px; }

    .capability-list { display: grid; gap: 11px; }
    .capability-item { position: relative; min-height: 91px; padding: 19px 19px 18px 62px; border: 1px solid color-mix(in srgb, var(--product-accent) 15%, rgba(91, 76, 68, .12)); border-radius: 15px; background: rgba(255, 255, 255, .43); }
    .capability-item > span { position: absolute; left: 18px; top: 18px; width: 27px; height: 27px; border: 1px solid color-mix(in srgb, var(--product-accent) 34%, transparent); border-radius: 9px; display: grid; place-items: center; color: var(--product-accent); font-family: Georgia, serif; font-size: 10px; }
    .capability-item h3 { margin: 0; font-size: 15px; font-weight: 550; letter-spacing: -.025em; }
    .capability-item p { margin: 7px 0 0; color: inherit; opacity: .62; font-size: 10px; line-height: 1.55; }
    .product-actions { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 11px; }
    .product-action { border: 1px solid color-mix(in srgb, var(--product-accent) 40%, transparent); color: color-mix(in srgb, var(--product-accent) 82%, #203d49); background: color-mix(in srgb, var(--product-accent) 7%, rgba(255, 255, 255, .58)); }
    .product-action--quiet { color: inherit; border-color: rgba(84, 105, 114, .18); background: rgba(255, 255, 255, .36); }
    .product-action--quiet::after { content: "→"; }

    .process-line { margin-top: clamp(65px, 7vw, 92px); padding-top: 28px; border-top: 1px solid color-mix(in srgb, var(--product-accent) 20%, transparent); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; }
    .process-step { position: relative; min-height: 98px; padding: 15px 17px; border-right: 1px solid color-mix(in srgb, var(--product-accent) 14%, transparent); }
    .process-step:last-child { border-right: 0; }
    .process-step small { color: var(--product-accent); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; }
    .process-step strong { margin-top: 12px; display: block; font-size: 12px; font-weight: 510; line-height: 1.45; }

    .product-cms {
      --product-accent: #67d9ff;
      color: #eaf8ff;
      background:
        radial-gradient(circle at 18% 26%, rgba(21, 130, 197, .18), transparent 30%),
        radial-gradient(circle at 84% 70%, rgba(85, 90, 205, .11), transparent 29%),
        linear-gradient(145deg, #020811, #071827 57%, #020910);
    }

    .product-cms::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 170px; z-index: -1; background: linear-gradient(180deg, #f4f0ea 0%, rgba(244, 240, 234, 0) 100%); opacity: .13; }
    .product-cms .product-summary { color: rgba(207, 229, 241, .65); }
    .product-cms .capability-item { border-color: rgba(105, 210, 249, .12); background: rgba(7, 28, 45, .64); }
    .product-cms .capability-item p { color: rgba(183, 216, 229, .62); opacity: 1; }
    .product-cms .product-action { color: #dff8ff; background: rgba(24, 104, 151, .2); }
    .product-cms .product-action--quiet { color: rgba(216, 238, 247, .74); border-color: rgba(105, 202, 239, .16); background: rgba(8, 29, 45, .48); }

    .cms-console {
      --rx: 0deg;
      --ry: 0deg;
      min-height: 585px;
      overflow: hidden;
      border: 1px solid rgba(103, 207, 247, .2);
      border-radius: 26px;
      background: linear-gradient(145deg, rgba(8, 31, 52, .96), rgba(2, 13, 25, .94));
      box-shadow: 0 45px 110px rgba(0, 0, 0, .32), -12px 15px 0 rgba(35, 132, 183, .06);
      transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform .22s ease-out;
    }

    .cms-console .console-bar strong { color: #8ee7ff; }
    .cms-layout { min-height: 530px; display: grid; grid-template-columns: 176px 1fr; }
    .cms-sidebar { padding: 23px 14px; border-right: 1px solid rgba(103, 202, 240, .09); background: rgba(3, 17, 29, .44); }
    .cms-brand { margin: 0 5px 26px; color: #dff8ff; font-size: 12px; font-weight: 560; letter-spacing: -.02em; }
    .cms-brand small { margin-top: 5px; display: block; color: rgba(134, 194, 218, .34); font-size: 6px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
    .cms-menu { display: grid; gap: 6px; }
    .cms-menu span { min-height: 36px; padding: 0 10px; border: 1px solid transparent; border-radius: 9px; display: flex; align-items: center; color: rgba(166, 207, 223, .44); font-size: 7px; }
    .cms-menu span:first-child { color: #bcefff; border-color: rgba(101, 207, 247, .18); background: rgba(26, 105, 151, .18); }
    .cms-main { min-width: 0; padding: 27px; }
    .cms-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
    .cms-heading small { color: rgba(143, 194, 213, .35); font-size: 6px; letter-spacing: .14em; text-transform: uppercase; }
    .cms-heading strong { margin-top: 6px; display: block; color: #ebfaff; font-size: 22px; font-weight: 440; letter-spacing: -.04em; }
    .cms-search { width: 150px; height: 34px; border: 1px solid rgba(105, 204, 242, .1); border-radius: 10px; display: flex; align-items: center; padding: 0 12px; color: rgba(151, 202, 220, .28); font-size: 7px; background: rgba(6, 25, 40, .48); }
    .cms-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .cms-widget { min-height: 150px; padding: 18px; border: 1px solid rgba(103, 202, 240, .1); border-radius: 14px; background: rgba(7, 28, 45, .63); }
    .cms-widget--wide { grid-column: span 2; min-height: 185px; }
    .cms-widget-head { display: flex; justify-content: space-between; gap: 12px; color: rgba(210, 237, 247, .63); font-size: 8px; }
    .cms-widget-head span { color: rgba(137, 190, 210, .3); font-size: 6px; letter-spacing: .12em; text-transform: uppercase; }
    .cms-bars { height: 105px; margin-top: 20px; display: flex; align-items: end; gap: 7px; }
    .cms-bars i { flex: 1; height: var(--bar); border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, rgba(102, 219, 255, .86), rgba(25, 103, 151, .3)); box-shadow: 0 0 12px rgba(77, 198, 237, .09); }
    .cms-list { margin-top: 20px; display: grid; gap: 10px; }
    .cms-list i { height: 8px; border-radius: 5px; background: linear-gradient(90deg, rgba(106, 209, 247, .22) var(--line), rgba(106, 209, 247, .055) var(--line)); }
    .cms-ring { width: 75px; height: 75px; margin: 20px auto 0; border: 8px solid rgba(96, 198, 237, .08); border-top-color: #6bdcff; border-right-color: rgba(91, 184, 224, .35); border-radius: 50%; display: grid; place-items: center; color: #c7f3ff; font-size: 9px; transform: rotate(25deg); }
    .cms-ring span { transform: rotate(-25deg); }

    .product-trans { --product-accent: #6878d6; color-scheme: light; color: #24314c; background: radial-gradient(circle at 78% 28%, rgba(94, 110, 213, .13), transparent 30%), radial-gradient(circle at 15% 75%, rgba(56, 194, 188, .09), transparent 27%), #eef2fa; }
    .product-trans::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 150px; z-index: -1; background: linear-gradient(180deg, #020910, rgba(2, 9, 16, 0)); opacity: .2; }
    .product-trans .product-kicker { color: #5669c3; }
    .product-trans .product-summary { color: #657087; }
    .product-trans .capability-item { border-color: rgba(91, 106, 195, .15); background: rgba(255, 255, 255, .48); }

    .trans-console {
      --rx: 0deg;
      --ry: 0deg;
      position: relative;
      min-height: 565px;
      overflow: hidden;
      border: 1px solid rgba(84, 104, 199, .2);
      border-radius: 26px;
      background:
        radial-gradient(circle at 49% 48%, rgba(63, 202, 195, .12), transparent 30%),
        linear-gradient(145deg, #182344, #10182f 68%, #0e152a);
      box-shadow: 0 43px 100px rgba(44, 54, 111, .24), 12px 14px 0 rgba(90, 105, 200, .055);
      transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform .22s ease-out;
    }

    .trans-console::before { content: ""; position: absolute; inset: 55px 0 0; opacity: .45; background-image: linear-gradient(rgba(122, 144, 226, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(122, 144, 226, .055) 1px, transparent 1px); background-size: 27px 27px; -webkit-mask-image: radial-gradient(circle at 52% 52%, #000, transparent 78%); mask-image: radial-gradient(circle at 52% 52%, #000, transparent 78%); }
    .trans-console .console-bar strong { color: #a9b4ff; }
    .trans-workspace { position: relative; min-height: 510px; }
    .trans-route { position: absolute; inset: 60px 28px 60px; width: calc(100% - 56px); height: calc(100% - 120px); overflow: visible; }
    .trans-route path { fill: none; stroke: rgba(120, 142, 229, .19); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .trans-route .main-route { stroke: url(#trans-route-gradient); stroke-width: 2; filter: drop-shadow(0 0 5px rgba(75, 207, 199, .3)); }
    .trans-request,
    .trans-result { position: absolute; z-index: 3; width: 205px; padding: 17px; border: 1px solid rgba(135, 150, 226, .18); border-radius: 15px; color: #edf2ff; background: rgba(15, 23, 44, .82); box-shadow: 0 20px 50px rgba(4, 8, 24, .24); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
    .trans-request { left: 30px; top: 74px; }
    .trans-result { right: 28px; bottom: 60px; }
    .trans-request small,
    .trans-result small { color: rgba(178, 190, 238, .45); font-size: 6px; letter-spacing: .14em; text-transform: uppercase; }
    .trans-request strong,
    .trans-result strong { margin-top: 11px; display: block; font-size: 13px; font-weight: 500; }
    .trans-fields { margin-top: 14px; display: grid; gap: 7px; }
    .trans-fields span { min-height: 30px; padding: 0 9px; border: 1px solid rgba(131, 146, 222, .1); border-radius: 8px; display: flex; align-items: center; justify-content: space-between; color: rgba(220, 228, 255, .62); font-size: 7px; background: rgba(255, 255, 255, .025); }
    .trans-fields b { color: #7edbd6; font-weight: 500; }
    .trans-ai { position: absolute; left: 50%; top: 50%; z-index: 4; width: 132px; aspect-ratio: 1; border: 1px solid rgba(110, 222, 214, .36); border-radius: 50%; display: grid; place-items: center; color: #c8fffb; background: radial-gradient(circle, rgba(70, 194, 190, .25), rgba(24, 44, 78, .93) 68%); box-shadow: 0 0 0 17px rgba(91, 117, 210, .04), 0 0 62px rgba(62, 202, 195, .14); transform: translate(-50%, -50%); animation: transBreath 5.5s ease-in-out infinite; }
    .trans-ai::before { content: ""; position: absolute; inset: -22%; border: 1px dashed rgba(128, 147, 230, .2); border-radius: 50%; animation: coreOrbit 28s linear infinite; }
    .trans-ai strong { font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
    .trans-ai span { margin-top: 4px; display: block; color: rgba(183, 202, 240, .44); font-size: 6px; letter-spacing: .15em; text-transform: uppercase; }
    .trans-result i { width: 30px; height: 30px; margin-bottom: 12px; border-radius: 50%; display: grid; place-items: center; color: #102d3d; background: #78ddd6; box-shadow: 0 0 16px rgba(80, 207, 198, .24); font-style: normal; }
    .trans-result em { margin-top: 10px; display: inline-flex; color: #82e2dc; font-size: 7px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

    .choice-section { color-scheme: light; color: var(--ink); background: var(--paper-bright); }
    .choice-shell { width: var(--shell); margin: 0 auto; padding: clamp(120px, 12vw, 180px) 0; }
    .choice-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
    .choice-card { --choice-accent: #167fb9; min-height: 360px; padding: 29px; border: 1px solid color-mix(in srgb, var(--choice-accent) 18%, rgba(35, 101, 129, .11)); border-radius: 22px; display: flex; flex-direction: column; background: #f4f8fa; box-shadow: 0 25px 60px rgba(43, 88, 112, .07); }
    .choice-card:nth-child(1) { --choice-accent: #e26a32; }
    .choice-card:nth-child(2) { --choice-accent: #157fbd; }
    .choice-card:nth-child(3) { --choice-accent: #6577d3; }
    .choice-card small { color: var(--choice-accent); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
    .choice-card h3 { margin: 34px 0 0; font-size: clamp(29px, 2.5vw, 40px); font-weight: 470; line-height: 1.03; letter-spacing: -.05em; }
    .choice-card p { margin: 19px 0 0; color: #637b88; font-size: 12px; line-height: 1.68; }
    .choice-card a { width: fit-content; margin-top: auto; padding-top: 32px; color: var(--choice-accent); font-size: 10px; font-weight: 600; text-decoration: none; }
    .choice-card a::after { content: " →"; }

    .platforms-cta { position: relative; min-height: 650px; overflow: hidden; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 52%, rgba(30, 139, 203, .18), transparent 33%), linear-gradient(145deg, #020811, #071725 59%, #020910); }
    .platforms-cta::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(97, 205, 246, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(97, 205, 246, .05) 1px, transparent 1px); background-size: 45px 45px; -webkit-mask-image: radial-gradient(circle, #000, transparent 72%); mask-image: radial-gradient(circle, #000, transparent 72%); }
    .cta-circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .62; }
    .cta-circuit path { fill: none; stroke: rgba(107, 217, 252, .13); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .cta-circuit .current { stroke: rgba(130, 231, 255, .68); stroke-dasharray: 2 80; filter: drop-shadow(0 0 6px rgba(92, 218, 255, .72)); animation: currentRun 9s linear infinite; }
    .cta-inner { position: relative; z-index: 3; width: min(100% - 48px, 1040px); padding: 110px 0; }
    .cta-kicker { margin: 0 0 20px; color: #77ddff; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
    .cta-title { margin: 0; color: #effaff; font-size: clamp(57px, 7.5vw, 110px); font-weight: 390; line-height: .86; letter-spacing: -.072em; }
    .cta-text { max-width: 650px; margin: 30px auto 0; color: rgba(207, 230, 242, .63); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.72; }
    .cta-actions { margin-top: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

    .site-footer { --footer-ink: #173b4d; --footer-steel: #2c7794; --footer-ice: #ecf5f7; position: relative; min-height: 720px; overflow: hidden; color: var(--footer-ink); background: radial-gradient(circle at 13% 8%, rgba(79, 151, 178, .09), transparent 27%), linear-gradient(180deg, #edf5f7 0%, #e7f0f3 52%, #eaf2f4 100%); isolation: isolate; }
    .site-footer::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .38; background-image: linear-gradient(rgba(31, 111, 142, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 111, 142, .05) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 50% 38%, #000, transparent 80%); mask-image: radial-gradient(circle at 50% 38%, #000, transparent 80%); }
    .site-footer::after { content: "FLEXCORE"; position: absolute; right: -1.5vw; bottom: -2vw; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(40, 111, 137, .055); font-size: clamp(90px, 14vw, 240px); font-weight: 650; line-height: .8; letter-spacing: -.08em; white-space: nowrap; }
    .footer-signal { position: absolute; top: 0; left: 5.2vw; right: 5.2vw; z-index: 3; height: 92px; overflow: hidden; pointer-events: none; }
    .footer-signal::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 53px; background: linear-gradient(180deg, rgba(196, 239, 249, .92), rgba(30, 131, 169, .32)); box-shadow: 0 0 13px rgba(72, 187, 219, .34); }
    .footer-signal-rail { position: absolute; top: 53px; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(28, 121, 158, .2) 11%, rgba(51, 145, 178, .54) 50%, rgba(28, 121, 158, .2) 89%, transparent); }
    .footer-signal-rail::before,
    .footer-signal-rail::after { content: ""; position: absolute; top: 0; width: clamp(70px, 10vw, 150px); height: 1px; opacity: .92; background: linear-gradient(90deg, transparent, #effcff 50%, transparent); filter: drop-shadow(0 0 6px rgba(59, 169, 202, .7)); animation: footerSignalRun 7.5s linear infinite; }
    .footer-signal-rail::after { animation-delay: -3.75s; }
    .footer-signal-node { position: absolute; top: 47px; left: 50%; width: 13px; height: 13px; border: 1px solid rgba(42, 133, 166, .72); border-radius: 50%; background: #eff8fa; box-shadow: 0 0 0 6px rgba(42, 130, 163, .055), 0 0 18px rgba(47, 149, 181, .3); transform: translateX(-50%); }
    .footer-signal-node::after { content: ""; position: absolute; inset: 3px; border-radius: inherit; background: #247c9c; box-shadow: 0 0 8px rgba(42, 145, 179, .55); animation: footerNodePulse 2.8s ease-in-out infinite; }
    .footer-inner { position: relative; z-index: 2; width: min(100%, 1600px); min-height: 720px; margin: 0 auto; padding: clamp(116px, 14vh, 158px) clamp(30px, 5.2vw, 82px) clamp(34px, 4.5vh, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: clamp(46px, 6vh, 74px); }
    .footer-main { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(560px, 1.18fr); gap: clamp(64px, 8vw, 132px); align-items: start; }
    .footer-brand { min-width: 0; overflow: visible; }
    .footer-kicker { margin: 0 0 16px; display: flex; align-items: center; gap: 11px; color: rgba(48, 91, 109, .58); font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
    .footer-kicker::before { content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, var(--footer-steel), transparent); box-shadow: 0 0 7px rgba(48, 141, 174, .2); }
    .footer-wordmark { width: fit-content; padding: .08em .035em .14em 0; display: inline-block; overflow: visible; color: var(--footer-ice); background: linear-gradient(108deg, #173f54 0%, #6f9bab 34%, #245f78 58%, #89afbc 78%, #173f54 100%); background-size: 230% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 12px 30px rgba(49, 108, 130, .1)); font-size: clamp(48px, 5.1vw, 84px); font-weight: 500; line-height: 1; letter-spacing: -.075em; white-space: nowrap; text-decoration: none; animation: footerWordmarkFlow 10s ease-in-out infinite alternate; }
    .footer-tagline { max-width: 470px; margin: 30px 0 0; color: rgba(48, 78, 92, .75); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.7; }
    .footer-accreditation { width: fit-content; max-width: 100%; margin-top: 24px; padding: 10px 13px 10px 11px; display: inline-flex; align-items: center; gap: 9px; color: rgba(42, 84, 102, .75); border: 1px solid rgba(34, 111, 141, .18); border-radius: 999px; background: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .09em; line-height: 1.35; text-decoration: none; text-transform: uppercase; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
    .footer-accreditation::before { content: ""; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: #277f9f; box-shadow: 0 0 10px rgba(43, 141, 174, .42); animation: footerNodePulse 2.8s ease-in-out infinite; }
    .footer-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3.3vw, 54px); }
    .footer-column { position: relative; min-width: 0; padding-top: 19px; border-top: 1px solid rgba(29, 104, 134, .18); }
    .footer-column::before { content: ""; position: absolute; top: -1px; left: 0; width: 34px; height: 1px; background: #277c9c; box-shadow: 0 0 8px rgba(41, 137, 170, .3); transition: width .45s ease; }
    .footer-column:hover::before { width: min(100%, 88px); }
    .footer-column-title { margin: 0 0 21px; color: rgba(47, 86, 102, .58); font-size: 9px; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; }
    .footer-links { margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; }
    .footer-links a,
    .footer-links span { width: fit-content; max-width: 100%; display: inline-flex; align-items: center; gap: 8px; color: rgba(38, 70, 84, .78); font-size: 12px; line-height: 1.45; text-decoration: none; }
    .footer-links a { transition: color .28s ease, transform .28s ease; }
    .footer-links a::after { content: ""; width: 13px; height: 1px; opacity: 0; background: currentColor; transform: translateX(-8px); transition: opacity .28s ease, transform .28s ease; }
    .footer-links a:hover,
    .footer-links a:focus-visible { color: #0a4865; transform: translateX(3px); }
    .footer-links a:hover::after,
    .footer-links a:focus-visible::after { opacity: .58; transform: translateX(0); }
    .footer-links .footer-contact-primary { color: #153f54; font-size: 14px; letter-spacing: -.015em; }
    .footer-links .footer-hours { color: rgba(61, 91, 103, .58); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
    .footer-meta { margin-top: auto; display: grid; gap: 25px; }
    .footer-location { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(29, 104, 134, .15); border-bottom: 1px solid rgba(29, 104, 134, .15); }
    .footer-address { display: flex; align-items: center; gap: 13px; color: rgba(35, 73, 90, .78); font-size: clamp(13px, 1.05vw, 16px); line-height: 1.45; text-decoration: none; }
    .footer-address::before { content: ""; width: 9px; height: 9px; flex: 0 0 9px; border: 1px solid #337e99; border-radius: 50%; box-shadow: 0 0 0 5px rgba(48, 132, 162, .05), 0 0 10px rgba(51, 139, 169, .18); }
    .footer-location-meta { display: flex; align-items: center; gap: 15px; color: rgba(55, 83, 95, .54); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
    .footer-location-meta::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(35, 112, 141, .4)); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(59, 85, 96, .52); font-size: 9px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
    .footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; }
    .footer-to-top { display: inline-flex; align-items: center; gap: 12px; color: rgba(39, 77, 94, .7); text-decoration: none; }
    .footer-to-top::after { content: ""; width: 8px; height: 8px; border-top: 1px solid currentColor; border-left: 1px solid currentColor; transform: translateY(2px) rotate(45deg); transition: transform .3s ease; }
    .footer-to-top:hover::after { transform: translateY(-3px) rotate(45deg); }

    @keyframes headerIn { to { opacity: 1; transform: translateY(0); } }
    @keyframes miniLogoShimmer { to { background-position: 100% 50%; } }
    @keyframes currentRun { to { stroke-dashoffset: -100; } }
    @keyframes orbitRun { to { stroke-dashoffset: -155; } }
    @keyframes coreOrbit { to { transform: rotate(360deg); } }
    @keyframes nodePulse { 50% { opacity: .35; transform: scale(.7); } }
    @keyframes nodeFloat { to { transform: translateY(-8px); } }
    @keyframes postRoute { to { stroke-dashoffset: -100; } }
    @keyframes transBreath { 50% { box-shadow: 0 0 0 23px rgba(91, 117, 210, .03), 0 0 78px rgba(62, 202, 195, .2); } }
    @keyframes footerSignalRun { from { left: -14%; } to { left: 100%; } }
    @keyframes footerNodePulse { 50% { opacity: .36; transform: scale(.65); } }
    @keyframes footerWordmarkFlow { to { background-position: 100% 50%; } }

    @media (max-width: 1220px) {
      :root { --shell: min(100% - 48px, 1480px); }
      .mini-logo { margin-right: 34px; }
      .main-nav { gap: 24px; }
      .hero-shell { grid-template-columns: minmax(380px, .7fr) minmax(510px, 1.3fr); gap: 48px; }
      .product-stage { grid-template-columns: minmax(480px, 1.1fr) minmax(340px, .9fr); gap: 38px; }
      .footer-main { grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr); gap: 58px; }
    }

    @media (max-width: 980px) {
      .hero-shell { min-height: auto; padding: 136px 0 105px; grid-template-columns: 1fr; gap: 70px; }
      .hero-copy { max-width: 790px; }
      .ecosystem-panel { width: min(100%, 780px); min-height: 620px; margin-inline: auto; }
      .overview-grid,
      .choice-grid { grid-template-columns: 1fr; }
      .overview-card { min-height: 330px; }
      .overview-symbol { position: absolute; top: 52px; right: 25px; width: 40%; }
      .overview-card h2 { margin-top: auto; }
      .product-heading,
      .section-head { grid-template-columns: 1fr; gap: 30px; }
      .product-summary,
      .section-intro { max-width: 720px; }
      .product-stage { grid-template-columns: 1fr; }
      .post-console,
      .cms-console,
      .trans-console { width: min(100%, 790px); margin-inline: auto; }
      .capability-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .process-line { grid-template-columns: repeat(5, minmax(120px, 1fr)); overflow-x: auto; }
      .footer-main { grid-template-columns: 1fr; }
      .footer-brand { max-width: 650px; }
    }

    @media (max-width: 860px) {
      .main-nav { position: absolute; top: 76px; left: 18px; right: 18px; z-index: 2; min-height: 0; padding: 9px; display: grid; gap: 0; overflow: hidden; border: 1px solid rgba(83, 184, 232, .25); border-radius: 18px; background: linear-gradient(rgba(62, 166, 222, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(62, 166, 222, .045) 1px, transparent 1px), rgba(3, 12, 24, .95); background-size: 24px 24px, 24px 24px, auto; box-shadow: 0 22px 60px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .04); -webkit-backdrop-filter: blur(22px) saturate(135%); backdrop-filter: blur(22px) saturate(135%); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px) scale(.985); transform-origin: 80% 0; transition: opacity .28s ease, transform .38s cubic-bezier(.2, .78, .2, 1), visibility 0s linear .38s; }
      .main-nav::before { content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 1px; background: linear-gradient(90deg, transparent, rgba(119, 226, 255, .8), transparent); box-shadow: 0 0 12px rgba(85, 211, 255, .42); }
      .site-header.is-menu-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); transition-delay: 0s; }
      .main-nav a { min-height: 48px; padding: 0 14px; display: flex; align-items: center; border-bottom: 1px solid rgba(102, 178, 218, .12); font-size: 12px; letter-spacing: .045em; }
      .main-nav a:last-child { border-bottom: 0; }
      .site-header.is-light .main-nav { border-color: rgba(25, 111, 158, .2); background: linear-gradient(rgba(21, 112, 160, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 112, 160, .045) 1px, transparent 1px), rgba(245, 250, 252, .96); background-size: 24px 24px, 24px 24px, auto; box-shadow: 0 22px 60px rgba(25, 71, 99, .16), inset 0 1px rgba(255, 255, 255, .7); }
      .menu-toggle { display: block; }
      .mini-logo { margin-right: 0; }
      .header-actions { gap: 10px; }
      .product-dock-wrap { top: 78px; }
    }

    @media (max-width: 700px) {
      :root { --shell: min(100% - 32px, 1480px); }
      .site-header { height: 74px; padding: 19px 18px 0; }
      .header-actions a { min-width: 124px; height: 34px; padding-inline: 12px; font-size: 11px; }
      .main-nav { top: 66px; left: 10px; right: 10px; }
      .products-hero { min-height: auto; }
      .hero-shell { padding: 114px 0 77px; gap: 54px; }
      .breadcrumbs { margin-bottom: 42px; }
      .hero-title { font-size: clamp(60px, 19vw, 86px); }
      .hero-lead { margin-top: 27px; font-size: 14px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .button-primary,
      .button-ghost { width: 100%; }
      .ecosystem-panel { min-height: 510px; border-radius: 19px; }
      .ecosystem-topbar { padding-inline: 15px; }
      .ecosystem-core { width: 132px; }
      .ecosystem-core strong { font-size: 19px; }
      .eco-node { width: 42%; min-height: 94px; padding: 13px; border-radius: 13px; }
      .eco-node strong { margin-top: 12px; font-size: 14px; }
      .eco-node span { font-size: 7px; }
      .eco-node--cms { top: 18%; left: 4%; }
      .eco-node--post { top: 28%; right: 4%; }
      .eco-node--trans { left: 26%; bottom: 5%; }
      .overview-shell { padding-block: 95px 120px; }
      .section-title { font-size: clamp(49px, 14vw, 68px); }
      .overview-grid { margin-top: 48px; }
      .overview-card { min-height: 390px; padding: 23px; }
      .overview-symbol { position: relative; top: auto; right: auto; width: 100%; margin-top: 38px; }
      .product-dock-wrap { top: 72px; }
      .product-dock { width: calc(100% - 24px); height: 52px; border-radius: 14px; }
      .product-dock a { gap: 5px; font-size: 7px; letter-spacing: .04em; }
      .product-dock a span { font-size: 10px; }
      .product-shell { padding: 135px 0 115px; }
      .product-title { font-size: clamp(50px, 14.5vw, 72px); }
      .product-stage { margin-top: 54px; }
      .post-console,
      .cms-console,
      .trans-console { min-height: 540px; border-radius: 18px; }
      .post-workspace { grid-template-columns: 48px 1fr; }
      .post-sidebar { padding-inline: 7px; }
      .post-sidebar i { width: 31px; height: 31px; }
      .post-main { padding: 16px 13px; }
      .post-metrics { grid-template-columns: 1fr; gap: 7px; }
      .post-metric { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; }
      .post-metric strong { margin-top: 0; }
      .post-map { min-height: 285px; }
      .post-order-card { left: 12px; width: 145px; }
      .courier-phone { right: 12px; width: 96px; height: 180px; }
      .capability-list { grid-template-columns: 1fr; }
      .capability-item { min-height: 88px; }
      .product-actions { align-items: stretch; flex-direction: column; }
      .product-action { width: 100%; }
      .cms-layout { grid-template-columns: 54px 1fr; }
      .cms-sidebar { padding-inline: 8px; }
      .cms-brand { overflow: hidden; font-size: 0; }
      .cms-brand::before { content: "Флекскор"; display: block; color: #bfefff; font-size: 8px; letter-spacing: .08em; writing-mode: vertical-rl; transform: rotate(180deg); }
      .cms-menu span { width: 34px; height: 34px; min-height: 34px; padding: 0; overflow: hidden; color: transparent; }
      .cms-menu span::before { content: ""; width: 7px; height: 7px; margin: auto; border: 1px solid rgba(106, 213, 250, .36); border-radius: 2px; }
      .cms-main { padding: 18px 13px; }
      .cms-search { display: none; }
      .cms-grid { grid-template-columns: 1fr; }
      .cms-widget--wide { grid-column: auto; }
      .cms-widget:nth-child(3) { display: none; }
      .trans-request,
      .trans-result { width: 150px; padding: 13px; }
      .trans-request { left: 13px; top: 55px; }
      .trans-result { right: 13px; bottom: 45px; }
      .trans-ai { width: 102px; }
      .choice-shell { padding-block: 105px 120px; }
      .choice-grid { margin-top: 50px; }
      .choice-card { min-height: 320px; padding: 24px; }
      .platforms-cta { min-height: 580px; }
      .cta-inner { width: min(100% - 32px, 1040px); padding: 95px 0; }
      .cta-title { font-size: clamp(49px, 14vw, 70px); }
      .cta-actions { align-items: stretch; flex-direction: column; }
      .footer-inner { min-height: auto; padding-inline: 20px; }
      .footer-main { grid-template-columns: 1fr; }
      .footer-columns { grid-template-columns: 1fr; gap: 32px; }
      .footer-location { align-items: flex-start; flex-direction: column; gap: 15px; }
      .footer-location-meta { white-space: normal; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .site-footer::after { right: 16px; bottom: 18px; font-size: 17vw; }
    }

    @media (max-width: 450px) {
      .header-actions a { min-width: 112px; padding-inline: 9px; font-size: 10px; }
      .hero-tags li:last-child { display: none; }
      .ecosystem-topbar span { display: none; }
      .eco-node span { display: none; }
      .eco-node { min-height: 70px; }
      .product-dock a { font-size: 0; }
      .product-dock a span { font-size: 11px; }
      .post-order-card { width: 132px; }
      .courier-phone { opacity: .82; }
      .trans-request,
      .trans-result { width: 138px; }
      .trans-ai { width: 88px; }
      .footer-wordmark { font-size: clamp(46px, 15vw, 60px); }
      .footer-accreditation { align-items: flex-start; border-radius: 16px; }
    }

    /* Product visuals: real interfaces, not decorative UI mockups */
    .product-map {
      --rx: 0deg;
      --ry: 0deg;
      position: relative;
      min-height: 650px;
      overflow: hidden;
      border: 1px solid rgba(108, 211, 247, .22);
      border-radius: 28px;
      background: linear-gradient(145deg, rgba(8, 29, 47, .97), rgba(2, 12, 22, .98));
      box-shadow: 0 45px 120px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .045);
      transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry));
      transition: transform .22s ease-out;
    }

    .product-map::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(99, 203, 240, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 203, 240, .045) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000); mask-image: linear-gradient(90deg, transparent, #000 25%, #000); }
    .product-map::after { content: ""; position: absolute; inset: 58px 0 40px; pointer-events: none; background: linear-gradient(105deg, transparent 44%, rgba(106, 224, 255, .045) 55%, transparent 67%); transform: translateX(-100%); animation: mapScan 10s ease-in-out infinite; }
    .product-map-bar { position: relative; z-index: 8; height: 58px; padding: 0 21px; border-bottom: 1px solid rgba(101, 205, 243, .12); display: flex; align-items: center; gap: 14px; color: rgba(177, 218, 233, .5); background: rgba(3, 17, 29, .68); font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }
    .map-lights { display: flex; gap: 10px; }
    .map-lights i { width: 6px; height: 6px; border: 1px solid rgba(123, 222, 252, .42); border-radius: 50%; }
    .map-status { margin-left: auto; display: flex; align-items: center; gap: 8px; }
    .map-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #6fddff; box-shadow: 0 0 10px rgba(93, 217, 255, .8); animation: nodePulse 2.8s ease-in-out infinite; }
    .product-map-canvas { position: relative; z-index: 2; height: 552px; }
    .product-map-traces { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
    .product-map-traces path { fill: none; stroke: rgba(108, 211, 247, .18); stroke-width: 1; vector-effect: non-scaling-stroke; }
    .product-map-traces .trace-current { stroke-width: 1.4; stroke-dasharray: 2 80; filter: drop-shadow(0 0 7px currentColor); animation: currentRun 8s linear infinite; }
    .trace-current--post { color: #f07b43; stroke: currentColor !important; }
    .trace-current--cms { color: #68dcff; stroke: currentColor !important; animation-delay: -2.7s !important; }
    .trace-current--trans { color: #8b98ff; stroke: currentColor !important; animation-delay: -5.4s !important; }
    .product-map-core {
      position: absolute;
      left: 2%;
      top: 50%;
      z-index: 4;
      width: 210px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(134, 226, 255, .34);
      border-radius: 50%;
      background:
        radial-gradient(circle at 34% 27%, rgba(160, 247, 255, .24), transparent 18%),
        radial-gradient(circle at 75% 72%, rgba(118, 86, 255, .3), transparent 31%),
        radial-gradient(circle at 64% 37%, rgba(33, 169, 226, .18), transparent 28%),
        radial-gradient(circle at 48% 53%, rgba(26, 126, 222, .48), rgba(5, 32, 59, .94) 58%, rgba(2, 12, 26, .99) 76%);
      box-shadow:
        inset -32px -38px 70px rgba(0, 5, 14, .68),
        inset 24px 20px 55px rgba(79, 214, 247, .1),
        inset -12px -9px 48px rgba(98, 70, 255, .09),
        0 0 0 17px rgba(65, 175, 222, .025),
        -18px -9px 76px rgba(31, 178, 224, .17),
        24px 18px 84px rgba(81, 61, 223, .19);
      transform: translateY(-50%);
    }
    .product-map-core::before {
      content: "";
      position: absolute;
      inset: 8.5%;
      border: 1px solid rgba(120, 218, 255, .19);
      border-radius: inherit;
      background: repeating-conic-gradient(from 16deg, rgba(121, 232, 255, .34) 0 .35deg, transparent .35deg 5.6deg, rgba(149, 119, 255, .24) 5.8deg 6.15deg, transparent 6.3deg 9deg);
      -webkit-mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%);
      mask: radial-gradient(transparent 0 84%, #000 84.5% 85%, transparent 85.5%);
      animation: coreOrbit 36s linear infinite;
    }
    .product-map-core::after {
      content: "";
      position: absolute;
      left: 11%;
      right: 11%;
      top: -18%;
      height: 28%;
      opacity: .45;
      border-radius: 50%;
      background: linear-gradient(180deg, transparent, rgba(126, 233, 255, .54), rgba(143, 111, 255, .16), transparent);
      filter: blur(8px);
      animation: productSphereScan 6.5s ease-in-out infinite;
    }
    .product-map-core-inner { position: relative; z-index: 2; width: 78%; text-align: center; }
    .product-map-core-inner strong {
      margin: 0 0 9px;
      padding: .04em 0 .12em;
      display: block;
      color: #e4f8ff;
      background: linear-gradient(105deg, #69e7f3, #f1fdff 38%, #8cbcff 66%, #b7a2ff 82%, #dffaff);
      background-size: 220% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: clamp(29px, 2.35vw, 36px);
      font-weight: 480;
      line-height: 1;
      letter-spacing: -.065em;
      text-shadow: 0 0 34px rgba(87, 207, 255, .12);
      animation: miniLogoShimmer 9s ease-in-out infinite alternate;
    }
    .product-map-core-inner span { display: block; color: rgba(153, 205, 227, .43); font-size: 6px; letter-spacing: .18em; text-transform: uppercase; }
    .map-system { --map-accent: #68dcff; position: absolute; left: 38%; right: 4%; z-index: 5; height: 138px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--map-accent) 31%, rgba(119, 210, 243, .08)); border-radius: 17px; display: grid; grid-template-columns: 45% 55%; color: #effaff; background: rgba(3, 17, 30, .85); box-shadow: 0 22px 50px rgba(0, 0, 0, .29), inset 0 1px rgba(255, 255, 255, .04); text-decoration: none; transition: transform .42s cubic-bezier(.2, .72, .2, 1), border-color .35s ease, box-shadow .35s ease; }
    .map-system:hover, .map-system:focus-visible { transform: translateX(7px); border-color: color-mix(in srgb, var(--map-accent) 62%, transparent); box-shadow: 0 26px 60px rgba(0, 0, 0, .38), 0 0 26px color-mix(in srgb, var(--map-accent) 11%, transparent); }
    .map-system--post { --map-accent: #f07840; top: 5.5%; }
    .map-system--cms { --map-accent: #68dcff; top: 36.5%; }
    .map-system--trans { --map-accent: #8492f0; top: 67.5%; }
    .map-system figure { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; border-right: 1px solid color-mix(in srgb, var(--map-accent) 21%, transparent); background: #07121e; }
    .map-system figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, color-mix(in srgb, var(--map-accent) 18%, transparent), rgba(3, 13, 23, .12) 54%, rgba(3, 13, 23, .72)); mix-blend-mode: color; pointer-events: none; }
    .map-system img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.1) brightness(.72); transform: scale(1.035); transition: filter .45s ease, transform .6s cubic-bezier(.2, .72, .2, 1); }
    .map-system--post img { object-position: center; }
    .map-system--cms img { object-position: left top; }
    .map-system--trans img { object-position: center 21%; }
    .map-system:hover img, .map-system:focus-visible img { filter: saturate(.82) contrast(1.08) brightness(.86); transform: scale(1.075); }
    .map-system > div { min-width: 0; padding: 22px 20px; display: flex; flex-direction: column; justify-content: center; }
    .map-system small { color: color-mix(in srgb, var(--map-accent) 78%, #eafaff); font-size: 6px; letter-spacing: .17em; text-transform: uppercase; }
    .map-system strong { margin-top: 12px; font-size: clamp(17px, 1.55vw, 23px); font-weight: 520; letter-spacing: -.035em; }
    .map-system span { margin-top: 6px; color: rgba(183, 217, 230, .48); font-size: 8px; line-height: 1.5; }
    .product-map-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 7; height: 40px; padding: 0 21px; border-top: 1px solid rgba(100, 204, 242, .1); display: flex; align-items: center; gap: 14px; color: rgba(164, 208, 225, .36); background: rgba(3, 15, 26, .72); font-size: 6px; letter-spacing: .14em; text-transform: uppercase; }
    .product-map-foot i { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(101, 218, 255, .42), transparent); }

    .dossier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
    .platform-dossier { --dossier-accent: #2383b7; min-width: 0; min-height: 570px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--dossier-accent) 25%, rgba(32, 91, 120, .11)); border-radius: 24px; display: flex; flex-direction: column; color: var(--ink); background: rgba(249, 252, 253, .84); box-shadow: 0 30px 75px rgba(37, 79, 101, .1), inset 0 1px rgba(255, 255, 255, .88); text-decoration: none; transition: transform .46s cubic-bezier(.2, .72, .2, 1), box-shadow .4s ease, border-color .35s ease; }
    .platform-dossier:hover, .platform-dossier:focus-visible { transform: translateY(-9px); border-color: color-mix(in srgb, var(--dossier-accent) 48%, transparent); box-shadow: 0 38px 92px rgba(37, 79, 101, .17); }
    .platform-dossier--post { --dossier-accent: #d9612e; }
    .platform-dossier--cms { --dossier-accent: #147caf; }
    .platform-dossier--trans { --dossier-accent: #596fd0; }
    .dossier-media { position: relative; height: 238px; margin: 0; overflow: hidden; border-bottom: 1px solid color-mix(in srgb, var(--dossier-accent) 22%, transparent); background: #102433; }
    .dossier-media::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(145deg, color-mix(in srgb, var(--dossier-accent) 28%, transparent), rgba(5, 19, 29, .07) 45%, rgba(5, 19, 29, .48)); mix-blend-mode: color; }
    .dossier-media::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: linear-gradient(180deg, transparent, #000); mask-image: linear-gradient(180deg, transparent, #000); }
    .dossier-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08) brightness(.84); transform: scale(1.025); transition: transform .7s cubic-bezier(.2, .72, .2, 1), filter .5s ease; }
    .platform-dossier--post .dossier-media img { object-position: center; }
    .platform-dossier--cms .dossier-media img { object-position: left top; }
    .platform-dossier--trans .dossier-media img { object-position: center 18%; }
    .platform-dossier:hover .dossier-media img, .platform-dossier:focus-visible .dossier-media img { transform: scale(1.075); filter: saturate(.82) contrast(1.08) brightness(.94); }
    .dossier-media > span { position: absolute; left: 17px; bottom: 15px; z-index: 4; padding: 7px 9px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 999px; color: rgba(245, 252, 255, .82); background: rgba(5, 20, 31, .58); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: 6px; letter-spacing: .15em; text-transform: uppercase; }
    .dossier-body { min-height: 332px; padding: 23px 25px 25px; display: flex; flex-direction: column; }
    .dossier-index { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: color-mix(in srgb, var(--dossier-accent) 82%, #284a5a); }
    .dossier-index strong { font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
    .dossier-index span { font-size: 6px; letter-spacing: .15em; text-align: right; text-transform: uppercase; }
    .dossier-body h2 { margin: 20px 0 0; font-size: clamp(29px, 2.5vw, 40px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
    .dossier-body p { margin: 14px 0 0; color: #617987; font-size: 11px; line-height: 1.62; }
    .dossier-body ul { margin: 18px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; }
    .dossier-body li { display: flex; align-items: flex-start; gap: 9px; color: #526e7b; font-size: 9px; line-height: 1.45; }
    .dossier-body li::before { content: ""; width: 5px; height: 5px; margin-top: 4px; flex: 0 0 5px; border-radius: 50%; background: var(--dossier-accent); box-shadow: 0 0 8px color-mix(in srgb, var(--dossier-accent) 35%, transparent); }
    .dossier-link { margin-top: auto; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--dossier-accent) 15%, transparent); display: flex; align-items: center; justify-content: space-between; color: color-mix(in srgb, var(--dossier-accent) 82%, #254b5c); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
    .dossier-link b { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }

    .interface-composition { --rx: 0deg; --ry: 0deg; --interface-accent: #6ddfff; position: relative; min-height: 610px; margin: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--interface-accent) 30%, rgba(86, 165, 195, .12)); border-radius: 25px; background: linear-gradient(145deg, rgba(8, 28, 44, .98), rgba(2, 12, 21, .98)); box-shadow: 0 42px 95px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .05); transform: perspective(1500px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .22s ease-out; }
    .interface-composition::before { content: ""; position: absolute; inset: 54px 0 56px; z-index: 5; opacity: .19; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px); background-size: 29px 29px; -webkit-mask-image: linear-gradient(125deg, transparent 3%, #000 34%, #000 72%, transparent); mask-image: linear-gradient(125deg, transparent 3%, #000 34%, #000 72%, transparent); }
    .interface-composition::after { content: ""; position: absolute; inset: 54px 0 56px; z-index: 6; pointer-events: none; background: linear-gradient(108deg, transparent 25%, rgba(255, 255, 255, .08) 43%, transparent 62%); transform: translateX(-110%); animation: interfacePolish 9s ease-in-out infinite; }
    .interface-composition--post { --interface-accent: #eb7440; background: linear-gradient(145deg, #1b1715, #0c0e11); }
    .interface-composition--cms { --interface-accent: #67dfff; }
    .interface-composition--trans { --interface-accent: #8795f4; background: linear-gradient(145deg, #0b1325, #07111e); }
    .interface-toolbar { position: relative; z-index: 10; height: 55px; padding: 0 19px; border-bottom: 1px solid color-mix(in srgb, var(--interface-accent) 18%, transparent); display: flex; align-items: center; gap: 13px; color: rgba(181, 220, 234, .48); background: rgba(3, 14, 24, .82); font-size: 6px; letter-spacing: .15em; text-transform: uppercase; }
    .interface-toolbar > span { display: flex; gap: 9px; }
    .interface-toolbar i { width: 6px; height: 6px; border: 1px solid color-mix(in srgb, var(--interface-accent) 52%, transparent); border-radius: 50%; }
    .interface-toolbar strong { color: color-mix(in srgb, var(--interface-accent) 79%, #effaff); font-weight: 550; }
    .interface-toolbar em { margin-left: auto; color: rgba(177, 215, 228, .34); font-style: normal; }
    .interface-canvas { position: absolute; inset: 55px 0 56px; overflow: hidden; }
    .interface-shot { position: absolute; z-index: 2; overflow: hidden; border: 1px solid color-mix(in srgb, var(--interface-accent) 26%, rgba(255, 255, 255, .08)); border-radius: 13px; background: #07131e; box-shadow: 0 27px 55px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .06); transition: transform .65s cubic-bezier(.2, .72, .2, 1), box-shadow .45s ease; }
    .interface-shot::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(130deg, color-mix(in srgb, var(--interface-accent) 17%, transparent), transparent 44%, rgba(1, 9, 16, .28)); mix-blend-mode: color; }
    .interface-shot img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08) brightness(.82); }
    .interface-composition:hover .interface-shot { box-shadow: 0 31px 66px rgba(0, 0, 0, .46), 0 0 22px color-mix(in srgb, var(--interface-accent) 9%, transparent); }
    .interface-shot--post-main { left: 4%; top: 5%; width: 91%; height: 49%; transform: rotate(-1.1deg); }
    .interface-shot--post-main img { object-position: left top; }
    .interface-shot--post-routing { left: 3%; bottom: 3%; width: 66%; height: 43%; transform: rotate(.7deg); }
    .interface-shot--post-routing img { object-fit: contain; object-position: center; background: #050b10; }
    .interface-shot--post-mobile { right: 3%; bottom: 3%; z-index: 4; width: 39%; height: 52%; transform: rotate(2deg); background: #006380; }
    .interface-shot--post-mobile img { object-fit: contain; object-position: center; }
    .interface-composition--post:hover .interface-shot--post-main { transform: translate(-4px, -5px) rotate(-1.8deg); }
    .interface-composition--post:hover .interface-shot--post-routing { transform: translate(-3px, 5px) rotate(.3deg); }
    .interface-composition--post:hover .interface-shot--post-mobile { transform: translate(6px, -3px) rotate(2.5deg); }
    .interface-shot--cms-main { left: 3%; top: 5%; width: 91%; height: 73%; transform: rotate(-1.1deg); }
    .interface-shot--cms-main img { object-position: left top; }
    .interface-shot--cms-detail { right: 2%; bottom: 3%; z-index: 4; width: 63%; height: 47%; transform: rotate(1.8deg); }
    .interface-shot--cms-detail img { object-position: left top; }
    .interface-composition--cms:hover .interface-shot--cms-main { transform: translate(-5px, -4px) rotate(-1.45deg); }
    .interface-composition--cms:hover .interface-shot--cms-detail { transform: translate(6px, 5px) rotate(2.2deg); }
    .interface-shot--trans-main { left: 3%; top: 4%; width: 91%; height: 84%; transform: rotate(-.9deg); }
    .interface-shot--trans-main img { object-position: center top; }
    .interface-shot--trans-detail { right: 3%; bottom: 3%; z-index: 4; width: 49%; height: 45%; transform: rotate(1.7deg); }
    .interface-shot--trans-detail img { object-position: 82% 76%; transform: scale(1.78); transform-origin: 82% 76%; }
    .interface-composition--trans:hover .interface-shot--trans-main { transform: translate(-5px, -4px) rotate(-1.2deg); }
    .interface-composition--trans:hover .interface-shot--trans-detail { transform: translate(6px, 4px) rotate(2.2deg); }
    .interface-composition figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 10; min-height: 56px; padding: 0 19px; border-top: 1px solid color-mix(in srgb, var(--interface-accent) 18%, transparent); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(176, 215, 229, .45); background: rgba(3, 14, 24, .84); font-size: 6px; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
    .interface-composition figcaption strong { color: color-mix(in srgb, var(--interface-accent) 73%, #effaff); font-weight: 500; text-align: right; }

    @keyframes mapScan { 0%, 18% { transform: translateX(-110%); } 60%, 100% { transform: translateX(110%); } }
    @keyframes productSphereScan { 0%, 12% { top: -18%; opacity: 0; } 22% { opacity: .45; } 78% { opacity: .32; } 88%, 100% { top: 92%; opacity: 0; } }
    @keyframes interfacePolish { 0%, 16% { transform: translateX(-110%); } 58%, 100% { transform: translateX(110%); } }

    @media (max-width: 980px) {
      .product-map { width: min(100%, 790px); margin-inline: auto; }
      .dossier-grid { grid-template-columns: 1fr; }
      .platform-dossier { min-height: 330px; display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); }
      .dossier-media { height: 100%; border-right: 1px solid color-mix(in srgb, var(--dossier-accent) 22%, transparent); border-bottom: 0; }
      .dossier-body { min-height: 330px; }
      .interface-composition { width: min(100%, 790px); min-height: 620px; margin-inline: auto; }
    }

    @media (max-width: 700px) {
      .product-map { min-height: 650px; border-radius: 20px; }
      .product-map-bar { height: 52px; padding-inline: 14px; }
      .product-map-bar b { font-size: 6px; }
      .map-status { font-size: 0; }
      .product-map-canvas { height: 558px; }
      .product-map-traces { display: none; }
      .product-map-core { left: 50%; top: 13px; width: 106px; transform: translateX(-50%); }
      .product-map-core-inner { width: 80%; }
      .product-map-core-inner strong { margin-bottom: 5px; font-size: 18px; }
      .product-map-core-inner span { font-size: 4px; letter-spacing: .13em; }
      .map-system { left: 14px; right: 14px; height: 119px; grid-template-columns: 43% 57%; }
      .map-system--post { top: 125px; }
      .map-system--cms { top: 256px; }
      .map-system--trans { top: 387px; }
      .map-system > div { padding: 15px 13px; }
      .map-system strong { margin-top: 9px; font-size: 16px; }
      .map-system span { font-size: 7px; }
      .product-map-foot { height: 40px; padding-inline: 14px; gap: 8px; }
      .product-map-foot span { font-size: 5px; }
      .platform-dossier { min-height: 555px; display: flex; }
      .dossier-media { height: 238px; border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--dossier-accent) 22%, transparent); }
      .dossier-body { min-height: 317px; padding: 21px 20px 23px; }
      .dossier-body h2 { font-size: clamp(30px, 10vw, 40px); }
      .dossier-body p { font-size: 11px; }
      .interface-composition { min-height: 570px; border-radius: 19px; }
      .interface-toolbar { padding-inline: 13px; }
      .interface-toolbar em { display: none; }
      .interface-canvas { inset: 55px 0 68px; }
      .interface-shot--post-main { left: 3%; top: 4%; width: 94%; height: 39%; }
      .interface-shot--post-routing { left: 3%; bottom: 3%; width: 78%; height: 43%; }
      .interface-shot--post-mobile { right: 3%; bottom: 3%; width: 46%; height: 49%; }
      .interface-shot--cms-main { left: 3%; top: 4%; width: 94%; height: 69%; }
      .interface-shot--cms-detail { right: 3%; bottom: 3%; width: 71%; height: 41%; }
      .interface-shot--trans-main { left: 3%; top: 4%; width: 94%; height: 83%; }
      .interface-shot--trans-detail { right: 3%; bottom: 3%; width: 63%; height: 40%; }
      .interface-composition figcaption { min-height: 68px; padding: 10px 13px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
      .interface-composition figcaption strong { text-align: left; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; }
      [data-reveal] { opacity: 1; transform: none; transition: none; }
      [data-tilt] { transform: none !important; transition: none !important; }
    }

/* Runtime fallback for devices that cannot sustain the decorative motion. */
html.motion-lite [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

html.motion-lite .hero-circuit .current,
html.motion-lite .cta-circuit .current,
html.motion-lite .product-map-traces .trace-current,
html.motion-lite .ecosystem-orbits .orbit-current,
html.motion-lite .post-map .route,
html.motion-lite .product-map::after,
html.motion-lite .product-map-core::after,
html.motion-lite .interface-composition::after {
  display: none !important;
  animation: none !important;
  filter: none !important;
}

html.motion-lite .ecosystem-topbar span::before,
html.motion-lite .ecosystem-core::before,
html.motion-lite .eco-node,
html.motion-lite .map-status::before,
html.motion-lite .product-map-core::before,
html.motion-lite .product-map-core-inner strong,
html.motion-lite .trans-ai,
html.motion-lite .trans-ai::before {
  animation: none !important;
  will-change: auto !important;
}

html.motion-lite [data-tilt] {
  --rx: 0deg !important;
  --ry: 0deg !important;
  transform: none !important;
  transition: none !important;
}

