:root {
      --background: #050816;
      --surface: #101827;
      --surface-light: #172033;
      --cyan: #67e8f9;
      --purple: #7c3aed;
      --white: #ffffff;
      --text: #dbe6f3;
      --muted: #8e9bb0;
      --border: rgba(255, 255, 255, 0.1);
      --border-bright: rgba(103, 232, 249, 0.38);
      --shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
      --container: min(1240px, calc(100% - 40px));
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      color: var(--white);
      background:
        radial-gradient(
          circle at 80% 8%,
          rgba(124, 58, 237, 0.18),
          transparent 32rem
        ),
        radial-gradient(
          circle at 8% 35%,
          rgba(103, 232, 249, 0.1),
          transparent 30rem
        ),
        var(--background);
      font-family: "Geist", Arial, sans-serif;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: 0.22;
      background-image:
        linear-gradient(
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px
        );
      background-size: 52px 52px;
      mask-image: linear-gradient(#000, transparent 95%);
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      color: inherit;
    }

    img {
      display: block;
      width: 100%;
    }

    section {
      position: relative;
      padding: 110px 0;
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--cyan);
      box-shadow: 0 0 14px var(--cyan);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Geist", Arial, sans-serif;
    }

    h2 {
      max-width: 780px;
      font-size: clamp(44px, 6vw, 84px);
      line-height: 0.96;
      letter-spacing: -0.055em;
    }

    p {
      color: var(--text);
      line-height: 1.75;
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(
        90deg,
        var(--white),
        var(--cyan),
        #a78bfa
      );
      -webkit-background-clip: text;
      background-clip: text;
    }

    .section-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 52px;
    }

    .section-header p {
      max-width: 560px;
      color: var(--muted);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 23px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.035);
      cursor: pointer;
      transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      border-color: var(--border-bright);
      background: rgba(255, 255, 255, 0.07);
    }

    .button-primary {
      border: 0;
      color: #050816;
      font-weight: 800;
      background: linear-gradient(
        90deg,
        var(--cyan),
        #60a5fa,
        var(--purple)
      );
      box-shadow: 0 18px 50px rgba(124, 58, 237, 0.28);
    }

    .button-primary:hover {
      background: linear-gradient(
        90deg,
        #8af0ff,
        #7db9ff,
        #9863ff
      );
    }

    /* Navigation */

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
    }

    .site-header.scrolled {
      border-color: var(--border);
      background: rgba(5, 8, 22, 0.82);
      backdrop-filter: blur(18px);
    }

    .navigation {
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: "Geist", Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 0.18em;
    }

    .language-switcher { display: inline-flex; gap: 2px; padding: 4px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.03); }
    .language-switcher button { min-width: 30px; border: 0; border-radius: 999px; padding: 5px 7px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
    .language-switcher button.active { color: var(--cyan); background: rgba(103,232,249,.14); }

    .brand-logo {
      width: 190px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #d7e0ec;
      font-size: 14px;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--cyan);
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
    }

    /* Hero */

    .hero {
      min-height: 100vh;
      padding-top: 120px;
      display: grid;
      align-items: center;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
      gap: 30px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 50px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-copy h1 {
      max-width: 820px;
      margin: 20px 0 30px;
      font-size: clamp(58px, 7.4vw, 118px);
      line-height: 0.87;
      letter-spacing: -0.075em;
    }

    /* Indonesian hero wording is longer; keep every word inside its column. */
    html[lang="id"] .hero-copy h1 {
      max-width: 720px;
      font-size: clamp(48px, 6.4vw, 92px);
      letter-spacing: -0.065em;
    }

    .hero-copy p {
      max-width: 680px;
      margin-bottom: 34px;
      color: #b6c2d2;
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-visual {
      min-height: 680px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 32px;
      background:
        radial-gradient(
          circle at 68% 22%,
          rgba(103, 232, 249, 0.34),
          transparent 17rem
        ),
        radial-gradient(
          circle at 35% 78%,
          rgba(124, 58, 237, 0.45),
          transparent 24rem
        ),
        linear-gradient(150deg, #111a2c, #070a13 70%);
      box-shadow: var(--shadow);
    }

    .hero-visual::before {
      content: "AI";
      position: absolute;
      right: -55px;
      bottom: -85px;
      color: rgba(255, 255, 255, 0.035);
      font: 700 30rem/1 "Geist", Arial, sans-serif;
    }

    .cinema-frame {
      position: absolute;
      inset: 28px;
      border: 1px solid rgba(103, 232, 249, 0.16);
      border-radius: 24px;
    }

    .cinema-frame::before,
    .cinema-frame::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 90px;
    }

    .cinema-frame::before {
      left: -1px;
      top: -1px;
      border-left: 2px solid var(--cyan);
      border-top: 2px solid var(--cyan);
    }

    .cinema-frame::after {
      right: -1px;
      bottom: -1px;
      border-right: 2px solid var(--purple);
      border-bottom: 2px solid var(--purple);
    }

    .hero-orb {
      position: absolute;
      left: 50%;
      top: 45%;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background:
        radial-gradient(
          circle at 35% 26%,
          #ffffff,
          var(--cyan) 8%,
          #2563eb 31%,
          var(--purple) 62%,
          #090d18 74%
        );
      box-shadow:
        0 0 80px rgba(103, 232, 249, 0.5),
        0 0 160px rgba(124, 58, 237, 0.36);
      animation: float 5s ease-in-out infinite;
    }

    .hero-orb::before,
    .hero-orb::after {
      content: "";
      position: absolute;
      border-radius: 50%;
    }

    .hero-orb::before {
      inset: -48px;
      border: 1px solid rgba(103, 232, 249, 0.34);
      border-left-color: transparent;
      animation: spin 9s linear infinite;
    }

    .hero-orb::after {
      inset: -80px;
      border: 1px dashed rgba(124, 58, 237, 0.32);
      border-right-color: transparent;
      animation: spinReverse 14s linear infinite;
    }

    .visual-card {
      position: absolute;
      z-index: 4;
      width: 220px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(6, 9, 20, 0.74);
      backdrop-filter: blur(16px);
    }

    .visual-card strong {
      display: block;
      margin-bottom: 7px;
      font-family: "Geist", Arial, sans-serif;
    }

    .visual-card span {
      color: var(--muted);
      font-size: 13px;
    }

    .visual-card-one {
      left: 28px;
      top: 28px;
    }

    .visual-card-two {
      right: 28px;
      bottom: 28px;
    }

    /* Trusted */

    .trusted {
      padding: 30px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trusted-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .client-logo-slot {
      min-height: 72px;
      padding: 12px;
      display: grid;
      place-items: center;
      border: 1px dashed rgba(255, 255, 255, 0.16);
      border-radius: 12px;
      color: #7f8da2;
      background: rgba(255, 255, 255, 0.015);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-align: center;
      text-transform: uppercase;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .client-logo-slot:hover {
      border-color: rgba(103, 232, 249, 0.5);
      background: rgba(103, 232, 249, 0.04);
    }

    .client-logo-slot img {
      width: 100%;
      max-width: 140px;
      max-height: 42px;
      object-fit: contain;
    }

    /* Philosophy */

    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .philosophy-card {
      min-height: 420px;
      padding: 42px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 28px;
      background:
        radial-gradient(
          circle at 75% 25%,
          rgba(103, 232, 249, 0.12),
          transparent 15rem
        ),
        rgba(255, 255, 255, 0.025);
    }

    .philosophy-card::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background-image:
        linear-gradient(
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        );
      background-size: 38px 38px;
    }

    .philosophy-card > * {
      position: relative;
    }

    .philosophy-word {
      margin: 70px 0 24px;
      font-size: clamp(54px, 7vw, 100px);
      line-height: 0.9;
      letter-spacing: -0.06em;
    }

    .philosophy-card p {
      max-width: 500px;
      color: var(--muted);
    }

    /* Solutions */

    .solutions-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
      gap: clamp(18px, 2.4vw, 30px);
      align-items: stretch;
    }

    .solution-list {
      height: clamp(500px, 52vw, 660px);
      overflow-y: auto;
      overflow-x: hidden;
      display: grid;
      gap: 10px;
      padding: 1px 5px 1px 1px;
      scrollbar-width: none;
      overscroll-behavior: contain;
    }

    .solution-list::-webkit-scrollbar {
      display: none;
    }

    .solution-button {
      width: 100%;
      min-height: 60px;
      padding: clamp(15px, 1.5vw, 19px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 1px solid var(--border);
      border-radius: 16px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.02);
      text-align: left;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .solution-button span:last-child {
      color: var(--muted);
      font-size: 12px;
    }

    .solution-button:hover,
    .solution-button.active {
      border-color: var(--border-bright);
      background: linear-gradient(
        90deg,
        rgba(124, 58, 237, 0.25),
        rgba(103, 232, 249, 0.08)
      );
    }

    .solution-display {
      height: clamp(500px, 52vw, 660px);
      min-height: 0;
      padding: clamp(30px, 4vw, 50px);
      display: flex;
      align-items: end;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 30px;
      background:
        linear-gradient(
          180deg,
          transparent,
          rgba(5, 8, 22, 0.96)
        ),
        radial-gradient(
          circle at 72% 24%,
          rgba(103, 232, 249, 0.3),
          transparent 18rem
        ),
        radial-gradient(
          circle at 38% 78%,
          rgba(124, 58, 237, 0.42),
          transparent 24rem
        ),
        #0c1322;
    }

    .solution-display::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.26;
      background-image:
        linear-gradient(
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        );
      background-size: 44px 44px;
      mask-image: linear-gradient(#000, transparent);
    }

    .solution-display::after {
      content: attr(data-code);
      position: absolute;
      right: 25px;
      top: 5px;
      color: rgba(255, 255, 255, 0.055);
      font: 700 190px/1 "Geist", Arial, sans-serif;
    }

    .solution-content {
      max-width: 690px;
      position: relative;
      z-index: 2;
    }

    .solution-content h3 {
      margin: 14px 0 18px;
      font-size: clamp(48px, 6vw, 80px);
      line-height: 0.96;
      letter-spacing: -0.055em;
    }

    .solution-content p {
      margin-bottom: 28px;
      color: #bbc6d5;
      font-size: 17px;
    }

    /* Corporate Cinema */

    .corporate-cinema {
      overflow: hidden;
    }

    .cinema-layout {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 30px;
    }

    .cinema-main {
      min-height: 670px;
      padding: 52px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 30px;
      background:
        linear-gradient(
          180deg,
          rgba(5, 8, 22, 0.05),
          rgba(5, 8, 22, 0.96)
        ),
        radial-gradient(
          circle at 65% 20%,
          rgba(241, 180, 78, 0.26),
          transparent 17rem
        ),
        linear-gradient(135deg, #283145, #0a0e18);
    }

    .cinema-main::before {
      content: "LEGACY";
      position: absolute;
      left: 32px;
      top: 22px;
      color: rgba(255, 255, 255, 0.05);
      font: 700 120px/1 "Geist", Arial, sans-serif;
    }

    .cinema-main h3 {
      max-width: 720px;
      margin: 15px 0 22px;
      font-size: clamp(48px, 6vw, 82px);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .cinema-main p {
      max-width: 650px;
      margin-bottom: 28px;
      color: #c0cad8;
    }

    .cinema-products {
      display: grid;
      gap: 18px;
    }

    .cinema-product {
      min-height: 153px;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.025);
      transition: 0.25s ease;
    }

    .cinema-product:hover {
      transform: translateX(-7px);
      border-color: var(--border-bright);
    }

    .cinema-product small {
      color: var(--cyan);
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .cinema-product h4 {
      margin: 14px 0 8px;
      font-size: 25px;
    }

    .cinema-product p {
      color: var(--muted);
      font-size: 14px;
    }

    /* Projects */

    .project-carousel {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px 20px;
    }

    .project-card {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-5px);
    }

    .project-card--placeholder {
      cursor: default;
    }

    .project-card--placeholder:hover {
      transform: none;
    }

    .project-card.project-card--placeholder .project-poster {
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 32%, rgba(103, 232, 249, 0.2), transparent 11rem),
        linear-gradient(135deg, #142237, #090d18 72%);
    }

    .placeholder-mark {
      width: 70px;
      height: 70px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(103, 232, 249, 0.45);
      border-radius: 50%;
      color: var(--cyan);
      font: 500 38px/1 "Geist", Arial, sans-serif;
      box-shadow: 0 0 42px rgba(103, 232, 249, 0.16);
    }

    .project-poster {
      aspect-ratio: 16 / 9;
      padding: 16px;
      position: relative;
      display: flex;
      align-items: end;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 15px;
      background:
        radial-gradient(
          circle at 50% 30%,
          rgba(103, 232, 249, 0.35),
          transparent 12rem
        ),
        linear-gradient(135deg, #182b46, #080d18);
    }

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

    .project-card:nth-child(2) .project-poster,
    .project-card:nth-child(5) .project-poster {
      background:
        radial-gradient(
          circle at 50% 30%,
          rgba(124, 58, 237, 0.44),
          transparent 12rem
        ),
        linear-gradient(135deg, #2a1942, #080d18);
    }

    .project-card:nth-child(3) .project-poster,
    .project-card:nth-child(6) .project-poster {
      background:
        radial-gradient(
          circle at 50% 30%,
          rgba(241, 180, 78, 0.32),
          transparent 12rem
        ),
        linear-gradient(135deg, #392718, #080d18);
    }

    .project-poster::before {
      content: "";
      position: absolute;
      width: 42%;
      aspect-ratio: 1;
      left: 50%;
      top: 50%;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow:
        0 0 40px rgba(103, 232, 249, 0.18),
        inset 0 0 45px rgba(124, 58, 237, 0.15);
    }

    .project-number {
      position: absolute;
      right: 14px;
      top: 9px;
      color: rgba(255, 255, 255, 0.1);
      font: 700 clamp(48px, 6vw, 76px)/1 "Geist", Arial, sans-serif;
      z-index: 2;
    }

    .project-type {
      position: relative;
      z-index: 2;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .project-play {
      width: 50px;
      height: 36px;
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: #fff;
      background: #ff0033;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
      transform: translate(-50%, -50%);
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .project-play::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 3px;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 9px solid #fff;
    }

    .project-card:hover .project-play {
      background: #ff1748;
      transform: translate(-50%, -50%) scale(1.12);
    }

    .project-duration {
      position: absolute;
      right: 10px;
      bottom: 10px;
      z-index: 2;
      padding: 4px 6px;
      border-radius: 4px;
      color: #fff;
      background: rgba(0, 0, 0, 0.78);
      font-size: 11px;
      font-weight: 700;
    }

    .project-details {
      padding: 13px 2px 0;
    }

    .project-details h3 {
      margin: 0 0 8px;
      font-size: 20px;
      line-height: 1.18;
    }

    .project-details p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .project-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 700;
    }

    /* Why */

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .why-card {
      min-height: 260px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.02);
      transition: 0.25s ease;
    }

    .why-card:hover {
      transform: translateY(-7px);
      border-color: var(--border-bright);
      background:
        linear-gradient(
          180deg,
          rgba(103, 232, 249, 0.08),
          rgba(124, 58, 237, 0.05)
        );
    }

    .why-card small {
      color: var(--cyan);
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .why-card h3 {
      margin: 50px 0 13px;
      font-size: 25px;
    }

    .why-card p {
      color: var(--muted);
      font-size: 14px;
    }

    /* Pipeline */

    .pipeline {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: clamp(8px, 1.2vw, 15px);
      counter-reset: productionStep;
    }

    .pipeline-step {
      min-height: clamp(225px, 18vw, 260px);
      padding: clamp(13px, 1.8vw, 24px);
      position: relative;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.02);
    }

    .pipeline-step::before {
      counter-increment: productionStep;
      content: "0" counter(productionStep);
      color: var(--cyan);
      font-family: "Geist", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.13em;
    }

    .pipeline-step:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: -13px;
      top: 50%;
      z-index: 2;
      color: var(--cyan);
    }

    .pipeline-step h3 {
      margin: clamp(34px, 4vw, 50px) 0 10px;
      font-size: clamp(16px, 1.7vw, 21px);
      line-height: 1.13;
    }

    .pipeline-step p {
      color: var(--muted);
      font-size: clamp(11px, 1.1vw, 13px);
      line-height: 1.65;
    }

    .production-system {
      min-height: 650px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 30px;
      background:
        radial-gradient(circle at 50% 50%, rgba(103, 232, 249, 0.14), transparent 13rem),
        radial-gradient(circle at 24% 78%, rgba(124, 58, 237, 0.24), transparent 22rem),
        radial-gradient(circle at 78% 20%, rgba(103, 232, 249, 0.16), transparent 21rem),
        #080d19;
    }

    .production-system::before,
    .production-system::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      border: 1px solid rgba(103, 232, 249, 0.18);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .production-system::before {
      width: min(58vw, 560px);
      aspect-ratio: 1;
      box-shadow: 0 0 80px rgba(103, 232, 249, 0.08), inset 0 0 80px rgba(124, 58, 237, 0.08);
    }

    .production-system::after {
      width: min(78vw, 770px);
      aspect-ratio: 1;
      border-style: dashed;
      border-color: rgba(124, 58, 237, 0.2);
      animation: spin 32s linear infinite;
    }

    .system-core {
      width: 260px;
      aspect-ratio: 1;
      padding: 30px;
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      display: grid;
      place-content: center;
      border: 1px solid rgba(103, 232, 249, 0.45);
      border-radius: 50%;
      background:
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.32), transparent 4%),
        radial-gradient(circle, rgba(103, 232, 249, 0.24), rgba(124, 58, 237, 0.21) 52%, rgba(5, 8, 22, 0.92) 73%);
      box-shadow: 0 0 60px rgba(103, 232, 249, 0.2), inset 0 0 44px rgba(103, 232, 249, 0.2);
      text-align: center;
      transform: translate(-50%, -50%);
    }

    .system-core::before {
      content: "";
      width: 82px;
      height: 82px;
      margin: 0 auto 16px;
      display: block;
      border: 2px solid var(--cyan);
      border-radius: 50% 50% 45% 45%;
      box-shadow: 0 0 26px rgba(103, 232, 249, 0.45);
    }

    .system-core small {
      color: var(--cyan);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
    }

    .system-core strong {
      display: block;
      margin-top: 7px;
      font: 700 19px/1.05 "Geist", Arial, sans-serif;
      letter-spacing: -0.04em;
    }

    .system-node {
      width: clamp(135px, 14vw, 175px);
      min-height: 128px;
      padding: 18px;
      position: absolute;
      z-index: 3;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(8, 13, 25, 0.88);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .system-node small {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.13em;
    }

    .system-node h3 {
      margin: 16px 0 7px;
      font-size: clamp(15px, 1.5vw, 19px);
      line-height: 1.05;
    }

    .system-node p {
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
    }

    .system-node:nth-of-type(1) { left: 50%; top: 24px; transform: translateX(-50%); }
    .system-node:nth-of-type(2) { right: 12%; top: 68px; }
    .system-node:nth-of-type(3) { right: 3%; top: 258px; }
    .system-node:nth-of-type(4) { right: 12%; bottom: 46px; }
    .system-node:nth-of-type(5) { left: 50%; bottom: 24px; transform: translateX(-50%); }
    .system-node:nth-of-type(6) { left: 12%; bottom: 46px; }
    .system-node:nth-of-type(7) { left: 3%; top: 258px; }
    .system-node:nth-of-type(8) { left: 12%; top: 68px; }

    /* Vision */

    .vision-panel {
      min-height: 600px;
      padding: 60px;
      display: flex;
      align-items: end;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 32px;
      background:
        linear-gradient(
          180deg,
          rgba(5, 8, 22, 0.04),
          rgba(5, 8, 22, 0.97)
        ),
        radial-gradient(
          circle at 70% 25%,
          rgba(103, 232, 249, 0.27),
          transparent 16rem
        ),
        radial-gradient(
          circle at 30% 70%,
          rgba(124, 58, 237, 0.35),
          transparent 20rem
        ),
        #0a1020;
    }

    .vision-panel::before {
      content: "2030";
      position: absolute;
      right: 2%;
      top: -4%;
      color: rgba(255, 255, 255, 0.05);
      font: 700 230px/1 "Geist", Arial, sans-serif;
    }

    .vision-content {
      max-width: 760px;
      position: relative;
    }

    .vision-content h2 {
      margin: 12px 0 22px;
    }

    .vision-content p {
      color: #bdc8d7;
      font-size: 18px;
    }

    /* Pricing */

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

    .pricing-card {
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 23px;
      background: rgba(255, 255, 255, 0.025);
    }

    .pricing-card.featured {
      transform: translateY(-10px);
      border-color: var(--border-bright);
      background:
        linear-gradient(
          180deg,
          rgba(124, 58, 237, 0.2),
          rgba(255, 255, 255, 0.025)
        );
      box-shadow: 0 30px 70px rgba(124, 58, 237, 0.16);
    }

    .pricing-card h3 {
      font-size: 29px;
    }

    .price {
      margin: 18px 0 4px;
      font: 700 44px/1 "Geist", Arial, sans-serif;
    }

    .pricing-card > small {
      color: var(--muted);
    }

    .pricing-card ul {
      margin: 30px 0;
      padding: 0;
      display: grid;
      gap: 14px;
      list-style: none;
      color: #c5cfdd;
    }

    .pricing-card li::before {
      content: "✓";
      margin-right: 10px;
      color: var(--cyan);
    }

    /* CTA */

    .cta-panel {
      padding: 80px 40px;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--border);
      border-radius: 34px;
      background:
        radial-gradient(
          circle at 25% 30%,
          rgba(103, 232, 249, 0.17),
          transparent 19rem
        ),
        radial-gradient(
          circle at 75% 70%,
          rgba(124, 58, 237, 0.26),
          transparent 22rem
        ),
        #09101d;
      text-align: center;
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background-image:
        linear-gradient(
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.04) 1px,
          transparent 1px
        );
      background-size: 40px 40px;
    }

    .cta-panel > * {
      position: relative;
    }

    .cta-panel h2 {
      max-width: 940px;
      margin: 15px auto 24px;
      font-size: clamp(52px, 7vw, 100px);
      line-height: 0.9;
    }

    .cta-panel p {
      max-width: 620px;
      margin: 0 auto 32px;
      color: var(--muted);
    }

    .haidio-chat {
      position: fixed;
      right: max(20px, env(safe-area-inset-right));
      bottom: max(20px, env(safe-area-inset-bottom));
      z-index: 80;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border: 1px solid rgba(103,232,249,.45);
      border-radius: 999px;
      background: #0d1426;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,.35);
      transition: transform .2s, border-color .2s;
    }
    .haidio-chat svg { width: 28px; height: 28px; color: #67e8f9; flex-shrink: 0; }
    .haidio-chat strong { display: block; font-size: 15px; line-height: 1.3; }
    .haidio-chat small { display: block; font-size: 11px; line-height: 1.5; color: #b6c2d2; }
    .haidio-chat:hover { transform: translateY(-3px); border-color: #67e8f9; }
    .haidio-chat:focus-visible { outline: 2px solid #67e8f9; outline-offset: 4px; }
    .haidio-footer-slot {
      width: 100%;
      min-height: 66px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 8px;
    }
    .haidio-chat.is-docked { position: static; }
    body.menu-open .haidio-chat { visibility: hidden; }
    @media print { .haidio-chat { display: none; } }

    /* Footer */

    footer {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
    }

    .footer-layout {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      font-size: 14px;
    }

    .social-links {
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      padding-top: 6px;
    }

    .social-links a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.025);
      transition: 0.2s ease;
    }

    .social-links a:hover {
      transform: translateY(-3px);
      border-color: var(--cyan);
      color: var(--cyan);
      background: rgba(103, 232, 249, 0.09);
    }

    .social-links svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* Modal */

    .project-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.78);
      backdrop-filter: blur(15px);
    }

    .project-modal.open {
      display: grid;
    }

    .modal-panel {
      width: min(920px, 100%);
      max-height: 90vh;
      overflow-y: auto;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: #0a1120;
      box-shadow: var(--shadow);
    }

    .modal-visual {
      height: 360px;
      position: relative;
      background:
        radial-gradient(
          circle at 50% 35%,
          rgba(103, 232, 249, 0.28),
          transparent 15rem
        ),
        linear-gradient(135deg, #17243a, #090d18);
    }

    .modal-trailer {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      z-index: 1;
      display: none;
      object-fit: cover;
      background: #050816;
    }

    .modal-trailer.available {
      display: block;
    }

    .modal-visual::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 180px;
      height: 180px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 70px rgba(103, 232, 249, 0.25);
    }

    .modal-close {
      position: absolute;
      right: 18px;
      top: 18px;
      z-index: 2;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--white);
      background: rgba(5, 8, 22, 0.75);
      cursor: pointer;
    }

    .modal-body {
      padding: 36px;
    }

    .modal-category {
      color: var(--cyan);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .modal-body h3 {
      margin: 8px 0 16px;
      font-size: 44px;
    }

    .modal-body p {
      color: var(--muted);
    }

    .modal-grid {
      margin: 28px 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .modal-grid div {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.02);
    }

    .modal-grid small {
      display: block;
      margin-bottom: 7px;
      color: var(--cyan);
    }

    /* Scroll animation */

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @keyframes float {
      0%,
      100% {
        transform: translate(-50%, -50%) translateY(-10px);
      }

      50% {
        transform: translate(-50%, -50%) translateY(14px);
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes spinReverse {
      to {
        transform: rotate(-360deg);
      }
    }

    /* Responsive */

    @media (max-width: 1080px) {
      .nav-links {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .hero-layout {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 540px;
      }

      .solutions-layout,
      .cinema-layout {
        grid-template-columns: 1fr;
      }

      .pipeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
      }

      .pipeline-step {
        min-height: 210px;
      }

      .pipeline-step::after {
        display: none;
      }

      .production-system {
        min-height: 620px;
      }

      .solution-list {
        height: auto;
        max-height: 400px;
      }

      .solution-display {
        height: auto;
        min-height: 520px;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: none;
      }

      .project-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mobile-nav {
        position: fixed;
        inset: 80px 0 0;
        z-index: 90;
        padding: 32px 20px;
        display: none;
        flex-direction: column;
        gap: 20px;
        background: rgba(5, 8, 22, 0.98);
      }

      .mobile-nav.open {
        display: flex;
        min-height: calc(100dvh - 80px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #050816;
        isolation: isolate;
      }

      .mobile-nav a {
        padding: 16px;
        border-bottom: 1px solid var(--border);
        font-family: "Geist", Arial, sans-serif;
        font-size: 30px;
      }

      .site-header:has(.mobile-nav.open) {
        background: #050816;
        backdrop-filter: none;
      }
    }

    @media (max-width: 760px) {
      :root {
        --container: min(100% - 24px, 1240px);
      }

      section {
        padding: 78px 0;
      }

      .navigation {
        min-height: 72px;
      }

      .mobile-nav {
        inset: 72px 0 0;
      }

      .mobile-nav.open {
        min-height: calc(100dvh - 72px);
      }

      .hero {
        padding-top: 94px;
      }

      .brand-logo {
        width: 150px;
      }

      .hero-copy {
        padding-top: 20px;
      }

      .hero-copy h1 {
        font-size: 58px;
      }

      .hero-visual {
        min-height: 440px;
      }

      .hero-orb {
        width: 220px;
        height: 220px;
      }

      .visual-card {
        width: 175px;
        padding: 14px;
      }

      .visual-card-one {
        left: 14px;
        top: 14px;
      }

      .visual-card-two {
        right: 14px;
        bottom: 14px;
      }

      .trusted-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-header {
        align-items: start;
        flex-direction: column;
      }

      .philosophy-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .philosophy-card,
      .solution-display,
      .cinema-main,
      .vision-panel {
        padding: 30px;
      }

      .solution-display {
        min-height: 490px;
      }

      .solution-list {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        overflow: visible;
        padding: 0;
      }

      .solution-button {
        min-height: 68px;
        padding: 14px;
        font-size: 14px;
      }

      .solution-display::after {
        font-size: 110px;
      }

      .project-carousel {
        grid-template-columns: 1fr;
      }

      .pipeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .pipeline-step {
        min-height: 190px;
      }

      .production-system {
        min-height: 0;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .production-system::before,
      .production-system::after {
        display: none;
      }

      .system-core {
        width: min(235px, 70vw);
        padding: 25px;
        position: relative;
        left: auto;
        top: auto;
        grid-column: 1 / -1;
        justify-self: center;
        transform: none;
      }

      .production-system .system-node {
        width: auto;
        min-height: 155px;
        padding: 16px;
        position: relative;
        inset: auto;
        transform: none;
      }

      .modal-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 56px 22px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container: min(100% - 20px, 1240px);
      }

      section {
        padding: 62px 0;
      }

      .navigation {
        min-height: 66px;
        gap: 10px;
      }

      .mobile-nav {
        inset: 66px 0 0;
      }

      .mobile-nav.open {
        min-height: calc(100dvh - 66px);
      }

      .brand-logo {
        width: 126px;
      }

      .navigation .button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
      }

      .hero {
        padding-top: 82px;
      }

      .hero-copy h1 {
        margin: 16px 0 22px;
        font-size: clamp(42px, 14vw, 56px);
      }

      .hero-copy p {
        font-size: 16px;
        line-height: 1.65;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 355px;
        border-radius: 24px;
      }

      .cinema-frame {
        inset: 16px;
      }

      .hero-orb {
        width: 175px;
        height: 175px;
      }

      .visual-card {
        width: 122px;
        padding: 11px;
      }

      .visual-card strong,
      .visual-card span {
        font-size: 11px;
      }

      .visual-card-one {
        left: 10px;
        top: 10px;
      }

      .visual-card-two {
        right: 10px;
        bottom: 10px;
      }

      h2 {
        font-size: clamp(38px, 12vw, 50px);
      }

      .section-header {
        gap: 20px;
        margin-bottom: 34px;
      }

      .section-header p {
        font-size: 15px;
      }

      .trusted-list {
        gap: 12px;
        font-size: 10px;
      }

      .solution-list,
      .pipeline {
        grid-template-columns: 1fr;
      }

      .solution-button {
        min-height: 58px;
      }

      .solution-display,
      .cinema-main,
      .vision-panel {
        min-height: 410px;
        padding: 24px;
        border-radius: 24px;
      }

      .solution-content h3,
      .cinema-main h3 {
        font-size: clamp(40px, 13vw, 55px);
      }

      .project-carousel {
        gap: 26px;
      }

      .why-card,
      .pricing-card {
        padding: 25px;
      }

      .pipeline-step {
        min-height: 155px;
      }

      .pipeline-step h3 {
        margin-top: 28px;
      }

      .production-system {
        grid-template-columns: 1fr;
        padding: 14px;
      }

      .system-core {
        width: 205px;
      }

      .production-system .system-node {
        min-height: 130px;
      }

      .cta-panel {
        padding: 48px 18px;
        border-radius: 24px;
      }

      .footer-layout {
        align-items: flex-start;
        flex-direction: column;
      }

      .modal-panel {
        max-height: 94vh;
        border-radius: 22px;
      }

      .modal-visual {
        height: 230px;
      }

      .modal-body {
        padding: 25px;
      }

      .modal-body h3 {
        font-size: 36px;
      }
    }
