:root {
      --ink: #111216;
      --paper: #f5f1ea;
      --muted: #77716a;
      --line: rgba(17, 18, 22, .14);
      --red: #e23d35;
      --cyan: #1eb8c6;
      --lime: #b9d95b;
      --steel: #c9ced2;
      --dark: #08090b;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--paper);
      color: var(--ink);
      font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
    }

    .scroll-progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 30;
      width: var(--scroll-progress, 0%);
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--cyan), var(--lime));
      pointer-events: none;
    }

    .cursor-light {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 1;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(30,184,198,.14), transparent 62%);
      transform: translate3d(calc(var(--mx, -500px) - 50%), calc(var(--my, -500px) - 50%), 0);
      pointer-events: none;
      mix-blend-mode: multiply;
      transition: opacity .25s ease;
    }

    a { color: inherit; text-decoration: none; }

    button, input, textarea {
      font: inherit;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px clamp(18px, 4vw, 56px);
      color: white;
      mix-blend-mode: difference;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      white-space: nowrap;
    }

    .site-logo {
      display: block;
      width: auto !important;
      max-width: 70px !important;
      height: clamp(18px, 1.75vw, 24px) !important;
      object-fit: contain;
      filter: none !important;
      mix-blend-mode: normal !important;
    }

    .brand .site-logo {
      opacity: 0;
    }

    .floating-site-logo {
      position: fixed;
      top: calc(18px + (40px - clamp(18px, 1.75vw, 24px)) / 2);
      left: clamp(18px, 4vw, 56px);
      z-index: 22;
      width: auto !important;
      max-width: 70px !important;
      height: clamp(18px, 1.75vw, 24px) !important;
      object-fit: contain;
      filter: none !important;
      mix-blend-mode: normal !important;
      pointer-events: none;
    }

    .brand-name {
      display: inline-flex;
      position: relative;
      z-index: 2;
      color: white;
      mix-blend-mode: normal;
      font-size: clamp(15px, 1.6vw, 19px);
      font-weight: 900;
      letter-spacing: .08em;
      transform: translateZ(0);
      will-change: transform;
      text-shadow: none;
    }

    .brand-name.is-on-light {
      color: white;
    }

    .mark {
      width: 34px;
      height: 34px;
      border: 2px solid currentColor;
      display: grid;
      place-items: center;
      position: relative;
    }

    .mark::before,
    .mark::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    .mark::before { width: 18px; height: 2px; }
    .mark::after { width: 2px; height: 18px; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2.5vw, 34px);
      font-size: 13px;
      letter-spacing: .04em;
    }

    .nav-links a {
      color: white;
      mix-blend-mode: normal;
    }

    .nav-cta {
      border: 1px solid currentColor;
      padding: 10px 14px;
      min-width: 88px;
      text-align: center;
    }

    .hero {
      min-height: 92vh;
      position: relative;
      isolation: isolate;
      display: grid;
      align-items: center;
      color: white;
      background: var(--dark);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.58) 36%, rgba(0,0,0,.12) 72%),
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.64));
      z-index: -1;
    }

    .hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      transform: scale(1.04);
      animation: slowDrift 18s ease-in-out infinite alternate;
    }

    .grid-lines {
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .28;
      background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
      background-size: 78px 78px;
      mask-image: linear-gradient(90deg, black, transparent 78%);
    }

    .hero-inner {
      width: min(1580px, calc(100% - 112px));
      margin: 0 auto;
      padding: 96px 0 148px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.72);
    }

    .kicker::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--red);
    }

    h1 {
      margin: 0;
      max-width: 1200px;
      font-size: clamp(44px, 8.6vw, 118px);
      line-height: 1.08;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .hero-title > span {
      display: block;
      white-space: nowrap;
    }

    .hero-copy {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 28px;
      margin-top: 30px;
    }

    .hero-copy p {
      max-width: 620px;
      margin: 0;
      color: rgba(255,255,255,.78);
      font-size: clamp(16px, 2vw, 21px);
      line-height: 1.65;
    }

    .hero-actions {
      position: absolute;
      right: clamp(72px, 6.8vw, 128px);
      bottom: clamp(58px, 7.8vh, 94px);
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .btn {
      border: 1px solid rgba(255,255,255,.42);
      color: white;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      padding: 14px 18px;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: white;
      background: rgba(255,255,255,.16);
    }

    .btn.primary {
      border-color: var(--red);
      background: var(--red);
    }

    .ticker {
      overflow: hidden;
      background: var(--ink);
      color: white;
      border-top: 1px solid rgba(255,255,255,.14);
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: slide 24s linear infinite;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      height: 52px;
      padding: 0 28px;
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.78);
      white-space: nowrap;
    }

    .ticker span::after {
      content: "";
      width: 8px;
      height: 8px;
      margin-left: 28px;
      background: var(--cyan);
    }

    section {
      padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px);
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(260px, .5fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 38px;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--red);
      font-weight: 800;
      letter-spacing: .12em;
      font-size: 12px;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      font-size: clamp(34px, 5vw, 66px);
      line-height: 1;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .stat {
      min-height: 150px;
      padding: 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background .25s ease, transform .25s ease;
    }

    .stat:hover {
      background: rgba(255,255,255,.32);
      transform: translateY(-3px);
    }

    .stat strong {
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1;
    }

    .stat span {
      color: var(--muted);
      line-height: 1.45;
    }

    .works {
      background: #e9e4dc;
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0;
    }

    .works .section-inner {
      width: min(1680px, 100%);
    }

    .works .section-head {
      width: min(1180px, calc(100% - 10px));
      margin-left: auto;
      margin-right: auto;
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
      width: min(1180px, calc(100% - 10px));
      margin-left: auto;
      margin-right: auto;
    }

    .filter {
      border: 1px solid var(--line);
      background: transparent;
      color: var(--ink);
      min-height: 42px;
      padding: 0 14px;
      cursor: pointer;
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .filter:hover {
      transform: translateY(-2px);
      border-color: rgba(17,18,22,.34);
    }

    .filter.active {
      background: var(--ink);
      color: white;
      border-color: var(--ink);
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(24, 1fr);
      gap: 0;
      background: var(--ink);
    }

    .project {
      grid-column: span 8;
      aspect-ratio: 16 / 10;
      min-height: 0;
      padding: clamp(18px, 1.8vw, 30px);
      color: white;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: var(--ink);
      isolation: isolate;
      transform-style: preserve-3d;
      transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
      will-change: transform;
      cursor: pointer;
    }

    .project:focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: -2px;
    }

    .project-hit {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .project-hit:focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: -2px;
    }

    .project.visible:hover {
      --reveal-y: -8px;
      z-index: 3;
      box-shadow: 0 24px 70px rgba(17, 18, 22, .26);
      filter: saturate(1.08);
    }

    .project.wide {
      grid-column: span 8;
      aspect-ratio: 16 / 10;
    }
    .project.tall {
      grid-column: span 8;
      aspect-ratio: 16 / 10;
    }
    .project.compact {
      grid-column: span 8;
      aspect-ratio: 16 / 10;
    }

    .project::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--bg);
    }

    .project-image {
      position: absolute;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
    }

    .project-image:not([src]),
    .project-image[src=""] {
      display: none;
    }

    .project::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72));
      opacity: 0;
      transition: opacity .35s ease;
    }

    .project:hover::after,
    .project:focus-within::after,
    .project.is-active::after {
      opacity: 1;
    }

    .project-top,
    .project-bottom {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .28s ease, transform .28s ease;
      pointer-events: none;
    }

    .project:hover .project-top,
    .project:hover .project-bottom,
    .project:focus-within .project-top,
    .project:focus-within .project-bottom,
    .project.is-active .project-top,
    .project.is-active .project-bottom {
      opacity: 1;
      transform: translateY(0);
    }

    .tag {
      border: 1px solid rgba(255,255,255,.48);
      padding: 7px 9px;
      font-size: 12px;
      color: rgba(255,255,255,.8);
      white-space: nowrap;
    }

    .project h3 {
      margin: 0;
      max-width: 440px;
      font-size: clamp(22px, 2.1vw, 38px);
      line-height: 1.05;
    }

    .project p {
      margin: 10px 0 0;
      max-width: 360px;
      color: rgba(255,255,255,.72);
      line-height: 1.55;
    }

    .project-index {
      font-size: 13px;
      color: rgba(255,255,255,.66);
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .service {
      min-height: 230px;
      padding: clamp(20px, 3vw, 34px);
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 22px;
      transition: background .28s ease, transform .28s ease;
    }

    .service:hover {
      background: rgba(17,18,22,.04);
      transform: translateX(6px);
    }

    .service svg {
      width: 42px;
      height: 42px;
      stroke: var(--red);
      stroke-width: 1.8;
      fill: none;
    }

    .service h3 {
      margin: 0 0 12px;
      font-size: clamp(22px, 2.6vw, 34px);
      line-height: 1.1;
    }

    .service p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .international .section-head {
      grid-template-columns: minmax(0, 1.62fr) minmax(220px, .38fr);
      gap: 28px;
    }

    .international .section-head h2 {
      max-width: 1040px;
      font-size: clamp(34px, 3.9vw, 56px);
      line-height: 1.02;
    }

    .global-flags {
      position: relative;
      margin-top: clamp(10px, 1.4vw, 22px);
      padding: 82px 0 18px;
      border-bottom: 0;
      overflow-x: clip;
      overflow-y: visible;
      max-width: 100%;
      isolation: isolate;
    }

    .global-flags::before,
    .global-flags::after {
      content: "";
      position: absolute;
      top: 82px;
      bottom: 18px;
      z-index: 2;
      width: min(120px, 18vw);
      pointer-events: none;
    }

    .global-flags::before {
      left: 0;
      background: linear-gradient(90deg, var(--paper), rgba(239,235,227,0));
    }

    .global-flags::after {
      right: 0;
      background: linear-gradient(270deg, var(--paper), rgba(239,235,227,0));
    }

    .global-flags-track {
      display: flex;
      width: max-content;
      gap: 14px;
      animation: globalFlags 30s linear infinite;
      will-change: transform;
    }

    .global-flags:hover .global-flags-track,
    .global-flags:focus-within .global-flags-track {
      animation-play-state: paused;
    }

    @keyframes globalFlags {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 7px)); }
    }

    .global-flag {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 132px;
      height: 52px;
      padding: 0 18px;
      border: 1px solid rgba(17,18,22,.12);
      background: rgba(255,255,255,.48);
      color: var(--ink);
      font: inherit;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 12px 34px rgba(17,18,22,.05);
      transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
    }

    .global-flag:hover,
    .global-flag:focus,
    .global-flag:focus-visible {
      z-index: 5;
      transform: translateY(-6px);
      border-color: rgba(228,57,50,.42);
      background: white;
      box-shadow: 0 20px 46px rgba(17,18,22,.12);
      outline: none;
    }

    .flag-emoji {
      display: grid;
      place-items: center;
      width: 34px;
      height: 24px;
      font-size: 0;
      line-height: 1;
      border: 1px solid rgba(17,18,22,.16);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.26);
      background: linear-gradient(#fff, #fff);
      overflow: hidden;
    }

    .global-flag:nth-child(10n+1) .flag-emoji {
      background:
        linear-gradient(90deg, #2f4f9f 0 42%, transparent 42%),
        repeating-linear-gradient(180deg, #c83f42 0 3px, #fff 3px 6px);
    }

    .global-flag:nth-child(10n+2) .flag-emoji {
      background: linear-gradient(180deg, #151515 0 33%, #dd2f2f 33% 66%, #f1c84b 66%);
    }

    .global-flag:nth-child(10n+3) .flag-emoji {
      background: linear-gradient(90deg, #2446a4 0 33%, #fff 33% 66%, #e43a33 66%);
    }

    .global-flag:nth-child(10n+4) .flag-emoji {
      background:
        linear-gradient(90deg, #d92f2f 0 24%, transparent 24%),
        linear-gradient(180deg, #169b62 0 33%, #fff 33% 66%, #111 66%);
    }

    .global-flag:nth-child(10n+5) .flag-emoji {
      background: linear-gradient(180deg, #fff 0 33%, #2446a4 33% 66%, #d92f2f 66%);
    }

    .global-flag:nth-child(10n+6) .flag-emoji {
      background:
        radial-gradient(circle at 50% 50%, #fff 0 4px, transparent 4px),
        linear-gradient(180deg, #d92f2f 0 50%, #fff 50%);
    }

    .global-flag:nth-child(10n+7) .flag-emoji {
      background: linear-gradient(90deg, #169b62 0 33%, #fff 33% 66%, #e43a33 66%);
    }

    .global-flag:nth-child(10n+8) .flag-emoji {
      background: repeating-linear-gradient(180deg, #d92f2f 0 4px, #fff 4px 8px, #2546a4 8px 16px, #fff 16px 20px, #d92f2f 20px 24px);
    }

    .global-flag:nth-child(10n+9) .flag-emoji {
      background: radial-gradient(circle at 50% 50%, #d92f2f 0 7px, transparent 7px), #fff;
    }

    .global-flag:nth-child(10n) .flag-emoji {
      background:
        linear-gradient(90deg, #169b62 0 30%, transparent 30%),
        linear-gradient(180deg, #169b62 0 33%, #fff 33% 66%, #151515 66%);
    }

    .flag-preview {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 14px);
      z-index: 8;
      width: 178px;
      height: 110px;
      overflow: hidden;
      border: 1px solid rgba(17,18,22,.14);
      background:
        linear-gradient(145deg, rgba(228,57,50,.86), rgba(28,188,199,.78)),
        linear-gradient(135deg, #f5f2ec, #dfe7e5);
      box-shadow: 0 26px 60px rgba(17,18,22,.22);
      opacity: 0;
      transform: translate(-50%, 10px) scale(.96);
      transform-origin: bottom center;
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease;
    }

    .flag-preview::before,
    .flag-preview::after {
      content: "";
      position: absolute;
      z-index: 1;
    }

    .flag-preview::before {
      content: attr(data-title);
      left: 14px;
      top: 12px;
      color: white;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-shadow: 0 2px 14px rgba(0,0,0,.32);
    }

    /*.flag-preview::after {
      right: 16px;
      bottom: 14px;
      width: 82px;
      height: 34px;
      border: 1px solid rgba(255,255,255,.46);
      background: rgba(255,255,255,.22);
      backdrop-filter: blur(6px);
    }*/

    .flag-preview-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .flag-preview-image:not([src]),
    .flag-preview-image[src=""] {
      display: none;
    }

    .global-flag:hover .flag-preview,
    .global-flag:focus .flag-preview,
    .global-flag:focus-visible .flag-preview {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }

    .lab {
      background: var(--ink);
      color: white;
      padding-bottom: clamp(84px, 11vw, 150px);
    }

    .lab .section-head p,
    .lab .eyebrow {
      color: rgba(255,255,255,.68);
    }

    .lab .eyebrow { color: var(--lime); }

    .lab-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 24px;
      align-items: stretch;
    }

    .stage {
      min-height: 560px;
      position: relative;
      overflow: hidden;
      background: #eef3f8;
      border: 0;
      --accent: #e23d35;
      --accent-rgb: 226, 61, 53;
      --glow: 34px;
      --screen-a: #1eb8c6;
      --screen-b: #18212a;
      --traffic-opacity: .5;
      --booth-scale: 1;
    }

    .stage canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .stage-title {
      position: absolute;
      top: 18px;
      left: 20px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      height: 34px;
      padding: 0 12px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(102,170,226,.42);
      color: #1d4867;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 26px rgba(55,100,130,.12);
      pointer-events: none;
    }

    .stage-hud {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 18px;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      color: #44515b;
      font-size: 13px;
      letter-spacing: .04em;
      pointer-events: none;
    }

    .stage::before {
      content: none;
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .35;
      pointer-events: none;
    }

    .rig {
      position: absolute;
      left: 14%;
      right: 14%;
      top: 10%;
      height: 58px;
      border: 1px solid rgba(255,255,255,.24);
      background:
        linear-gradient(35deg, transparent 0 47%, rgba(255,255,255,.32) 48% 52%, transparent 53%),
        linear-gradient(-35deg, transparent 0 47%, rgba(255,255,255,.25) 48% 52%, transparent 53%),
        linear-gradient(90deg, transparent 0 15%, rgba(255,255,255,.3) 15% 16%, transparent 16% 32%, rgba(255,255,255,.3) 32% 33%, transparent 33% 50%, rgba(255,255,255,.3) 50% 51%, transparent 51% 67%, rgba(255,255,255,.3) 67% 68%, transparent 68% 84%, rgba(255,255,255,.3) 84% 85%, transparent 85%),
        rgba(255,255,255,.04);
      background-size: 56px 56px, 56px 56px, auto;
      box-shadow: 0 18px 80px rgba(0,0,0,.34);
    }

    .rig::before {
      content: "太空架吊顶";
      position: absolute;
      right: 10px;
      top: -24px;
      color: rgba(255,255,255,.58);
      font-size: 12px;
      letter-spacing: .08em;
    }

    .light-beam {
      position: absolute;
      top: 12%;
      width: 24%;
      height: 66%;
      background: linear-gradient(180deg, rgba(var(--accent-rgb), .32), rgba(var(--accent-rgb), 0));
      clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
      opacity: calc(var(--beam-opacity, .16));
      mix-blend-mode: screen;
      pointer-events: none;
      filter: blur(.4px);
    }

    .light-beam.left { left: 18%; transform: skewX(-9deg); }
    .light-beam.right { right: 14%; transform: skewX(12deg); }

    .floor {
      position: absolute;
      left: 50%;
      bottom: 12%;
      width: var(--booth-width, 58%);
      height: var(--booth-height, 44%);
      translate: -50% 0;
      transform: perspective(900px) rotateX(58deg);
      transform-origin: bottom center;
      background:
        linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
      background-size: 42px 42px;
      border: 1px solid rgba(255,255,255,.18);
      opacity: .72;
      box-shadow: inset 0 0 var(--glow, 34px) rgba(var(--accent-rgb), .2);
      transition: width .35s ease, height .35s ease;
    }

    .booth {
      position: absolute;
      left: 50%;
      bottom: 12%;
      width: var(--booth-width, 58%);
      height: var(--booth-height, 44%);
      transform: translateX(-50%);
      transform-origin: bottom center;
      transform-style: preserve-3d;
      transition: width .35s ease, height .35s ease, filter .35s ease;
    }

    .booth::after {
      content: attr(data-dims);
      position: absolute;
      left: 50%;
      bottom: -56px;
      transform: translateX(-50%);
      color: rgba(255,255,255,.74);
      font-size: 13px;
      white-space: nowrap;
      letter-spacing: .04em;
    }

    .booth.basic .side,
    .booth.basic .halo,
    .booth.basic .plinth {
      opacity: .18;
    }

    .booth.practical .side,
    .booth.practical .plinth {
      opacity: .72;
    }

    .booth.premium {
      filter: drop-shadow(0 0 var(--glow, 34px) rgba(var(--accent-rgb), .38));
    }

    .wall {
      position: absolute;
      background: linear-gradient(145deg, rgba(245,247,247,.96), rgba(166,180,184,.86));
      border: 1px solid rgba(255,255,255,.68);
      box-shadow: 0 22px 42px rgba(0,0,0,.34), 0 0 var(--glow, 34px) rgba(var(--accent-rgb), .12);
      min-width: 46px;
      min-height: 42px;
    }

    .wall.back {
      left: 8%;
      top: 4%;
      width: 28%;
      height: 46%;
      background:
        linear-gradient(90deg, rgba(var(--accent-rgb), .18), transparent 42%),
        rgba(236,238,239,.9);
    }

    .wall.back::after,
    .wall.side::after,
    .screen::after,
    .counter::after,
    .plinth::after {
      content: "";
      position: absolute;
      right: -18px;
      top: 9px;
      width: 18px;
      height: 100%;
      background: linear-gradient(180deg, rgba(112,130,136,.78), rgba(66,77,82,.72));
      transform: skewY(28deg);
      transform-origin: left top;
    }

    .wall.back::before,
    .wall.side::before,
    .screen::before,
    .counter::before,
    .plinth::before {
      content: "";
      position: absolute;
      left: 9px;
      right: -9px;
      top: -18px;
      height: 18px;
      background: linear-gradient(90deg, rgba(255,255,255,.88), rgba(155,170,176,.72));
      transform: skewX(62deg);
      transform-origin: left bottom;
      border: 1px solid rgba(255,255,255,.26);
      border-bottom: 0;
    }

    .wall.side {
      right: 8%;
      top: 8%;
      width: 18%;
      height: 54%;
      background: linear-gradient(145deg, rgba(230,238,240,.9), rgba(130,148,154,.78));
    }

    .screen {
      position: absolute;
      left: 44%;
      top: 10%;
      width: 20%;
      height: 38%;
      background:
        linear-gradient(135deg, var(--screen-a), var(--screen-b) 68%, var(--accent)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.24) 0 2px, transparent 2px 10px);
      box-shadow: 10px 12px 0 rgba(0,0,0,.22), 0 0 var(--glow, 34px) rgba(var(--accent-rgb), .45);
      overflow: hidden;
    }

    .screen .screen-line { display: none; }

    .counter {
      position: absolute;
      left: 34%;
      bottom: 4%;
      width: 18%;
      height: 24%;
      background: linear-gradient(145deg, #f2efe9, #aeb8bc);
      border: 1px solid rgba(255,255,255,.68);
      box-shadow: 0 16px 34px rgba(0,0,0,.3);
    }

    .sign {
      position: absolute;
      top: -3%;
      left: 16%;
      width: 22%;
      height: 7%;
      background: rgba(226,61,53,.94);
      box-shadow: 8px 9px 0 rgba(0,0,0,.2), 0 0 var(--glow, 34px) rgba(226,61,53,.45);
    }

    .plinth {
      position: absolute;
      right: 25%;
      bottom: 5%;
      width: 14%;
      height: 22%;
      background: linear-gradient(160deg, #f7f2e8, #aeb8bc);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: 0 14px 30px rgba(0,0,0,.28);
    }

    .halo {
      position: absolute;
      left: 60%;
      top: -12%;
      width: 24%;
      height: 10%;
      border: 2px solid rgba(var(--accent-rgb), .8);
      border-radius: 50%;
      transform: rotateX(64deg);
      box-shadow: 0 0 var(--glow, 34px) rgba(var(--accent-rgb), .6);
      animation: haloPulse 2.8s ease-in-out infinite;
    }

    .visitors {
      position: absolute;
      left: 14%;
      right: 12%;
      bottom: 16%;
      height: 90px;
      opacity: 0;
      pointer-events: none;
    }

    .visitor {
      position: absolute;
      bottom: 0;
      left: var(--x);
      width: var(--s, 12px);
      height: calc(var(--s, 12px) * 3.2);
      background: rgba(0,0,0,.76);
      border-radius: 8px 8px 2px 2px;
      animation: visitorDrift 4.8s ease-in-out infinite alternate;
      animation-delay: var(--d, 0s);
    }

    .visitor::before {
      content: "";
      position: absolute;
      left: 18%;
      top: calc(var(--s, 12px) * -1);
      width: 64%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: rgba(0,0,0,.76);
    }

    .controls {
      border: 1px solid rgba(255,255,255,.14);
      padding: 24px;
      background: rgba(255,255,255,.05);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .control label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }

    input[type="range"] {
      width: 100%;
      accent-color: var(--lime);
    }

    .dimension-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field span {
      color: rgba(255,255,255,.7);
      font-size: 13px;
    }

    .field input {
      min-height: 46px;
      padding: 10px 12px;
      color: white;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.18);
    }

    .area-options,
    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .area-option,
    .package-option {
      min-height: 44px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.05);
      color: white;
      cursor: pointer;
      transition: background .22s ease, border-color .22s ease, transform .22s ease;
    }

    .area-option:hover,
    .package-option:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.42);
    }

    .area-option.active,
    .package-option.active {
      border-color: var(--lime);
      background: rgba(185,217,91,.16);
    }

    .estimate-card {
      display: grid;
      gap: 10px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(135deg, rgba(185,217,91,.15), rgba(255,255,255,.05));
    }

    .estimate-card span {
      color: rgba(255,255,255,.66);
      font-size: 13px;
    }

    .estimate-card strong {
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1;
      color: white;
    }

    .estimate-card small {
      color: rgba(255,255,255,.58);
      line-height: 1.5;
    }

    .swatches {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .swatch {
      height: 48px;
      border: 1px solid rgba(255,255,255,.2);
      cursor: pointer;
      background: var(--c);
    }

    .swatch.active {
      outline: 2px solid white;
      outline-offset: 3px;
    }

    .mode-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .mode {
      min-height: 46px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.05);
      color: white;
      cursor: pointer;
    }

    .mode.active {
      border-color: var(--lime);
      background: rgba(185,217,91,.16);
    }

    .quote {
      background: #dfe7e6;
    }

    .quote-block {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(300px, .38fr);
      gap: clamp(30px, 6vw, 72px);
      align-items: start;
    }

    blockquote {
      margin: 0;
      font-size: clamp(30px, 5.4vw, 70px);
      line-height: 1.05;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .quote-side {
      border-left: 1px solid rgba(17,18,22,.2);
      padding-left: 26px;
      color: var(--muted);
      line-height: 1.8;
    }

    .contact {
      background: var(--dark);
      color: white;
    }

    .contact .section-inner {
      width: min(1340px, calc(100% - 84px));
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, .55fr);
      gap: clamp(48px, 7vw, 112px);
      align-items: start;
    }

    .contact h2 {
      max-width: 850px;
    }

    .contact-logo {
      display: block;
      width: clamp(130px, 15vw, 190px);
      height: auto;
      margin: 0 0 28px;
    }

    .country-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 760px;
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .country-note {
      max-width: 720px;
      margin: 18px 0 0;
      color: rgba(255,255,255,.7);
      font-size: clamp(15px, 1.6vw, 18px);
      line-height: 1.7;
    }

    .country {
      position: relative;
      appearance: none;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.055);
      color: rgba(255,255,255,.78);
      padding: 9px 13px;
      font: inherit;
      font-size: 13px;
      cursor: pointer;
      transition: color .24s ease, background .24s ease, border-color .24s ease, transform .24s ease;
    }

    .country:hover,
    .country.is-hover,
    .country:focus,
    .country:focus-visible {
      color: #0b0d10;
      background: var(--lime);
      border-color: var(--lime);
      transform: translateY(-2px);
      outline: none;
    }

    .country-preview {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 12px);
      z-index: 6;
      width: 168px;
      height: 104px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.24);
      background: var(--thumb);
      box-shadow: 0 22px 52px rgba(0,0,0,.45);
      opacity: 0;
      transform: translate(-50%, 8px) scale(.96);
      transform-origin: bottom center;
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease;
    }

    .country-preview::before,
    .country-preview::after {
      content: "";
      position: absolute;
    }

    .country-preview::before {
      content: attr(data-title);
      left: 12px;
      top: 10px;
      color: white;
      font-size: 12px;
      font-weight: 800;
      text-shadow: 0 1px 10px rgba(0,0,0,.35);
    }

    .country-preview::after {
      inset: auto 16px 12px 18px;
      width: 78px;
      height: 28px;
      border: 1px solid rgba(255,255,255,.42);
      background: rgba(8,11,14,.42);
    }

    .country-image {
      position: absolute;
      inset: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .country-image:not([src]),
    .country-image[src=""] {
      display: none;
    }

    .country:hover .country-preview,
    .country.is-hover .country-preview,
    .country:focus .country-preview,
    .country:focus-visible .country-preview {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }

    .contact-info {
      display: grid;
      gap: 14px;
      align-content: end;
      color: rgba(255,255,255,.72);
      line-height: 1.7;
    }

    .contact-info strong {
      display: block;
      color: white;
      margin-bottom: 2px;
    }

    .contact-direct {
      margin-top: 8px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .contact-phone {
      display: inline-block;
      margin-top: 4px;
      color: white;
      font-size: clamp(30px, 3.1vw, 46px);
      font-weight: 900;
      line-height: .95;
      letter-spacing: 0;
      text-decoration: none;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      transition: color .25s ease, transform .25s ease;
    }

    .contact-phone:hover,
    .contact-phone:focus-visible {
      color: var(--lime);
      transform: translateY(-2px);
      outline: none;
    }

    form {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    input, textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      color: white;
      padding: 15px 14px;
      outline: none;
      border-radius: 0;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255,255,255,.45);
    }

    .submit {
      min-height: 52px;
      border: 0;
      background: var(--lime);
      color: #111;
      font-weight: 800;
      cursor: pointer;
    }

    .submit:disabled {
      cursor: default;
      opacity: .72;
    }

    .form-status {
      min-height: 20px;
      margin: 0;
      color: rgba(255,255,255,.66);
      font-size: 13px;
      line-height: 1.5;
    }

    .aibo-ajax-form.is-success .form-status {
      color: var(--lime);
    }

    .aibo-ajax-form.is-error .form-status {
      color: #ff8b8b;
    }

    footer {
      padding: 28px clamp(18px, 4vw, 56px);
      background: var(--dark);
      color: rgba(255,255,255,.54);
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .copyright-badge {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      margin-right: 10px;
      padding: 3px 9px;
      background: var(--lime);
      color: white;
      font-weight: 800;
      line-height: 1;
      vertical-align: middle;
    }

    .reveal {
      --reveal-y: 24px;
      opacity: 1;
      transform: translate3d(0, 0, 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
      transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease, filter .35s ease;
    }

    .can-reveal .reveal {
      opacity: 0;
      transform: translate3d(0, var(--reveal-y), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    }

    .can-reveal .reveal.visible {
      --reveal-y: 0px;
      opacity: 1;
      transform: translate3d(0, 0, 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    }

    @keyframes slowDrift {
      from { transform: scale(1.04) translate3d(0,0,0); }
      to { transform: scale(1.1) translate3d(-1.2%, .8%, 0); }
    }

    @keyframes slide {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes visitorDrift {
      from { transform: translateX(-4px); }
      to { transform: translateX(6px); }
    }

    @keyframes haloPulse {
      0%, 100% { opacity: .72; transform: rotateX(64deg) scale(1); }
      50% { opacity: 1; transform: rotateX(64deg) scale(1.04); }
    }

    @keyframes screenScan {
      from { transform: translateX(-18%); opacity: .45; }
      to { transform: translateX(18%); opacity: .9; }
    }

    @media (max-width: 900px) {
      .nav-links a:not(.nav-cta) { display: none; }
      .hero-copy,
      .section-head,
      .lab-panel,
      .quote-block,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-actions {
        position: static;
        justify-content: flex-start;
        margin-top: 24px;
      }
      .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .project,
      .project.wide {
        grid-column: span 6;
        aspect-ratio: 16 / 10;
      }
      .project-grid { grid-template-columns: repeat(12, 1fr); }
      .project.tall,
      .project.compact {
        grid-column: span 6;
      }
      .services-grid { grid-template-columns: 1fr; }
      .stage { min-height: 460px; }
      .controls { min-height: auto; }
      .contact .section-inner {
        width: min(1180px, calc(100% - 40px));
      }
    }

    @media (max-width: 560px) {
      .nav {
        padding: 14px 16px;
      }
      .brand span { display: none; }
      .hero-inner {
        width: calc(100% - 32px);
        padding: 118px 0 44px;
      }
      h1 {
        font-size: clamp(30px, 9vw, 50px);
        line-height: 1.14;
      }
      .btn {
        width: 100%;
      }
      .stats { grid-template-columns: 1fr; }
      .stat { min-height: 120px; }
      .service {
        grid-template-columns: 1fr;
      }
      .project {
        grid-column: span 12;
        aspect-ratio: 16 / 10;
      }
      .project.wide,
      .project.tall,
      .project.compact {
        grid-column: span 12;
        aspect-ratio: 16 / 10;
      }
      .stage-title {
        top: 14px;
        left: 14px;
      }
      .country-strip {
        gap: 8px;
      }
      .country-preview {
        left: 0;
        transform: translate(0, 8px) scale(.96);
      }
      .country:hover .country-preview,
      .country.is-hover .country-preview,
      .country:focus .country-preview,
      .country:focus-visible .country-preview {
        transform: translate(0, 0) scale(1);
      }
      blockquote {
        font-size: clamp(32px, 12vw, 54px);
      }
    }
