:root {
      --bg: #080B16;
      --bg-2: #0F1324;
      --text: #F7F8FF;
      --muted: rgba(247,248,255,.64);
      --line: rgba(255,255,255,.12);
      --glass: rgba(255,255,255,.08);
      --glass-2: rgba(255,255,255,.12);
      --accent: #3195FF;
      --accent-2: #5B6CFF;
      --accent-3: #B64BFF;
      --radius-xl: 34px;
      --radius-lg: 26px;
      --shadow: 0 34px 110px rgba(0,0,0,.34);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 12%, rgba(49,149,255,.22), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(182,75,255,.20), transparent 30%),
        radial-gradient(circle at 50% 88%, rgba(91,108,255,.16), transparent 34%),
        linear-gradient(180deg, #080B16 0%, #0D1120 48%, #080B16 100%);
      overflow-x: hidden;
    }

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

    .page {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .06;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, black, transparent 80%);
      z-index: 0;
    }

    .orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(8px);
      opacity: .76;
      pointer-events: none;
    }

    .orb.one {
      width: 520px;
      height: 520px;
      left: -220px;
      top: 140px;
      background: radial-gradient(circle, rgba(49,149,255,.28), transparent 68%);
    }

    .orb.two {
      width: 620px;
      height: 620px;
      right: -260px;
      top: 300px;
      background: radial-gradient(circle, rgba(182,75,255,.25), transparent 66%);
    }

    .orb.three {
      width: 460px;
      height: 460px;
      left: 44%;
      bottom: 320px;
      background: radial-gradient(circle, rgba(91,108,255,.18), transparent 68%);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .nav {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(var(--container), calc(100% - 40px));
      z-index: 50;
      padding: 12px 14px;
      border-radius: 26px;
      background: rgba(13,17,32,.62);
      border: 1px solid rgba(255,255,255,.13);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 24px 80px rgba(0,0,0,.26);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 12px 34px rgba(91,108,255,.32);
    }

    .brand-name {
      display: grid;
      gap: 1px;
      line-height: 1;
    }

    .brand-name strong {
      font-size: 16px;
      letter-spacing: -.035em;
    }

    .brand-name span {
      color: rgba(255,255,255,.48);
      font-size: 10px;
      letter-spacing: .20em;
      text-transform: uppercase;
    }

    .menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      color: rgba(255,255,255,.72);
      font-weight: 650;
      font-size: 14px;
    }

    .menu a {
      position: relative;
      transition: color .24s ease;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent), var(--accent-3));
      transition: width .24s ease;
    }

    .menu a:hover {
      color: #fff;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 780;
      letter-spacing: -.02em;
      border: 1px solid rgba(255,255,255,.16);
      transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
      white-space: nowrap;
      cursor: pointer;
    }

    .btn-primary {
      color: #fff;
      background:
        linear-gradient(135deg, rgba(49,149,255,1), rgba(91,108,255,1) 48%, rgba(182,75,255,1));
      box-shadow: 0 18px 54px rgba(91,108,255,.34);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 70px rgba(91,108,255,.44);
    }

    .btn-secondary {
      color: rgba(255,255,255,.88);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.14);
      backdrop-filter: blur(16px);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,.12);
      transform: translateY(-2px);
    }

    .hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 150px 0 92px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.64);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 760;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent), var(--accent-3));
    }

    h1 {
      margin: 0;
      font-size: clamp(52px, 7vw, 96px);
      line-height: .93;
      letter-spacing: -.08em;
      max-width: 820px;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #78AFFF 45%, #B64BFF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-lead {
      max-width: 650px;
      margin: 26px 0 34px;
      color: var(--muted);
      font-size: 21px;
      line-height: 1.52;
      letter-spacing: -.025em;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 42px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 720px;
    }

    .stat {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(16px);
    }

    .stat strong {
      display: block;
      margin-bottom: 6px;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -.055em;
    }

    .stat span {
      display: block;
      color: rgba(255,255,255,.52);
      font-size: 13px;
      line-height: 1.35;
    }

    .hero-visual {
      position: relative;
      min-height: 610px;
    }

    .logo-card {
      position: absolute;
      right: 0;
      top: 20px;
      width: min(430px, 100%);
      padding: 28px;
      border-radius: 42px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      animation: floatCard 6s ease-in-out infinite;
    }

    .logo-icon-large {
      aspect-ratio: 1 / 1;
      border-radius: 36px;
      overflow: hidden;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.10),
        0 32px 90px rgba(0,0,0,.32),
        0 0 80px rgba(91,108,255,.18);
    }

    .mock-card {
      position: absolute;
      left: 0;
      bottom: 20px;
      width: 370px;
      min-height: 290px;
      padding: 22px;
      border-radius: 34px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow);
    }

    .mock-browser {
      height: 34px;
      display: flex;
      align-items: center;
      gap: 7px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      margin-bottom: 18px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.24);
    }

    .mock-lines {
      display: grid;
      gap: 12px;
    }

    .mock-line {
      height: 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
    }

    .mock-line.big {
      height: 54px;
      width: 84%;
      background: linear-gradient(135deg, rgba(49,149,255,.82), rgba(182,75,255,.84));
    }

    .mock-line:nth-child(3) { width: 72%; }
    .mock-line:nth-child(4) { width: 54%; }

    .floating-pill {
      position: absolute;
      right: 34px;
      bottom: 96px;
      padding: 18px 20px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(20px);
      color: rgba(255,255,255,.82);
      box-shadow: 0 24px 70px rgba(0,0,0,.26);
      animation: floatCard 7s ease-in-out infinite reverse;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    section {
      padding: 96px 0;
      position: relative;
      z-index: 1;
    }

    .section-head {
      display: grid;
      grid-template-columns: .7fr 1fr;
      gap: 42px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-label {
      color: #7EA7FF;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 840;
      font-size: 13px;
      margin-bottom: 14px;
    }

    h2 {
      margin: 0;
      font-size: clamp(38px, 5vw, 66px);
      line-height: .96;
      letter-spacing: -.075em;
    }

    .section-text {
      margin: 0;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.5;
      max-width: 680px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card {
      position: relative;
      min-height: 260px;
      padding: 28px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 80% 20%, rgba(91,108,255,.18), transparent 42%),
        rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(18px);
      overflow: hidden;
      transition: transform .28s ease, background .28s ease, border-color .28s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      background:
        radial-gradient(circle at 80% 20%, rgba(182,75,255,.22), transparent 42%),
        rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.22);
    }

    .service-num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 15px;
      margin-bottom: 26px;
      background: linear-gradient(135deg, rgba(49,149,255,.92), rgba(182,75,255,.92));
      font-weight: 850;
    }

    .service-card h3 {
      margin: 0 0 12px;
      font-size: 26px;
      line-height: 1.04;
      letter-spacing: -.055em;
    }

    .service-card p {
      margin: 0;
      color: rgba(255,255,255,.62);
      font-size: 15px;
      line-height: 1.48;
    }

    .portfolio-wrap {
      position: relative;
    }

    .portfolio-top-action {
      position: absolute;
      right: 0;
      top: 20px;
      z-index: 5;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: repeat(5, 150px);
      grid-template-areas:
        "a a a a a a b b b b b b"
        "a a a a a a b b b b b b"
        "c c c d d d b b b b b b"
        "e e e f f f f f f f f f"
        "e e e f f f f f f f f f";
      gap: 22px;
      margin-top: 46px;
    }

    .case {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      background: #111522;
      box-shadow: 0 24px 70px rgba(0,0,0,.28);
      isolation: isolate;
      transform: translateY(34px) scale(.985);
      opacity: 0;
      animation: caseIn .82s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .case:nth-child(1) { animation-delay: .05s; }
    .case:nth-child(2) { animation-delay: .13s; }
    .case:nth-child(3) { animation-delay: .21s; }
    .case:nth-child(4) { animation-delay: .29s; }
    .case:nth-child(5) { animation-delay: .37s; }
    .case:nth-child(6) { animation-delay: .45s; }

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

    .case:hover {
      transform: translateY(-8px) scale(1.01);
    }

    .case img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .case:hover img {
      transform: scale(1.05);
    }

    .case::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(8,11,22,0) 22%, rgba(8,11,22,.66) 100%);
      pointer-events: none;
    }

    .case-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(255,255,255,.72);
      color: #111318;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
    }

    .case-caption span {
      display: inline-flex;
      margin-bottom: 8px;
      color: var(--accent-2);
      font-weight: 850;
      font-size: 13px;
    }

    .case-caption h3 {
      margin: 0 0 6px;
      font-size: clamp(19px, 2vw, 28px);
      line-height: 1.02;
      letter-spacing: -.055em;
    }

    .case-caption p {
      margin: 0;
      color: #475467;
      font-size: 14px;
      line-height: 1.38;
    }

    .case-arrow {
      position: absolute;
      right: 14px;
      top: 14px;
      z-index: 3;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,.66);
      color: #111318;
      border: 1px solid rgba(255,255,255,.72);
      backdrop-filter: blur(14px);
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
      transition: .25s ease;
      font-weight: 800;
    }

    .case:hover .case-arrow {
      transform: translate(3px,-3px);
      background: rgba(255,255,255,.86);
    }

    .case.a { grid-area: a; }
    .case.b { grid-area: b; }
    .case.c { grid-area: c; }
    .case.d { grid-area: d; }
    .case.e { grid-area: e; }
    .case.f { grid-area: f; }

    .case.c .case-caption,
    .case.d .case-caption {
      padding: 14px 15px;
      border-radius: 18px;
    }

    .case.c h3,
    .case.d h3 {
      font-size: 20px;
    }

    .case.c p,
    .case.d p {
      font-size: 13px;
    }

    .why {
      padding: 0;
    }

    .why-shell {
      padding: 84px;
      border-radius: 44px;
      background:
        radial-gradient(circle at 82% 18%, rgba(182,75,255,.22), transparent 38%),
        rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 48px;
      align-items: center;
    }

    .why-list {
      display: grid;
      gap: 14px;
    }

    .why-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.10);
    }

    .why-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-weight: 850;
      background: linear-gradient(135deg, var(--accent), var(--accent-3));
    }

    .why-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 18px;
      letter-spacing: -.035em;
    }

    .why-item span {
      color: rgba(255,255,255,.58);
      font-size: 14px;
      line-height: 1.42;
    }

    .cta {
      padding-bottom: 58px;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr .82fr;
      gap: 42px;
      align-items: start;
      padding: 46px;
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
    }

    .form {
      display: grid;
      gap: 14px;
      padding: 26px;
      border-radius: 30px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.12);
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      color: #fff;
      border-radius: 18px;
      padding: 16px 18px;
      font: inherit;
      outline: none;
    }

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

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

    .form-note {
      color: rgba(255,255,255,.46);
      font-size: 12px;
      text-align: center;
      line-height: 1.4;
    }

    .footer {
      padding: 0 0 38px;
      color: rgba(255,255,255,.48);
      font-size: 14px;
    }

    .footer-inner {
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-brand {
      color: #fff;
      font-weight: 780;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      animation: revealIn .8s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .delay-1 { animation-delay: .12s; }
    .delay-2 { animation-delay: .22s; }
    .delay-3 { animation-delay: .32s; }

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

    @media (max-width: 1040px) {
      .hero-grid,
      .section-head,
      .why-shell,
      .cta-box {
        grid-template-columns: 1fr;
      }

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

      .logo-card {
        right: 0;
      }

      .menu {
        display: none;
      }

      .portfolio-top-action {
        position: relative;
        top: auto;
        right: auto;
        margin: -16px 0 28px;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 250px);
        grid-template-areas:
          "a b"
          "c d"
          "e f";
      }

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

    @media (max-width: 720px) {
      .container,
      .nav {
        width: min(100% - 28px, var(--container));
      }

      .nav {
        top: 14px;
      }

      .brand {
        min-width: auto;
      }

      .brand-name span {
        display: none;
      }

      .nav .btn {
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
      }

      .hero {
        padding-top: 128px;
      }

      .hero-stats,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: auto;
        display: grid;
        gap: 18px;
      }

      .logo-card,
      .mock-card,
      .floating-pill {
        position: relative;
        width: 100%;
        inset: auto;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 280px);
        grid-template-areas:
          "a"
          "b"
          "c"
          "d"
          "e"
          "f";
      }

      .why-shell,
      .cta-box {
        padding: 24px;
        border-radius: 30px;
      }

      .footer-inner {
        flex-direction: column;
      }
    }
  
    /* ===== EXACT ANIMATED SCENES FROM APPROVED LIGHT CONCEPT ===== */

    .hero-visual {
      position: relative !important;
      min-height: 640px !important;
    }

    .hero-scene-card {
      position: relative;
      width: min(520px, 100%);
      min-height: 580px;
      margin-left: auto;
      margin-right: 20px;
      padding: 72px 34px 34px;
      border-radius: 42px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.82);
      box-shadow:
        0 34px 110px rgba(0,0,0,.34),
        inset 0 0 0 1px rgba(255,255,255,.42);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      animation: sceneFloat 7s ease-in-out infinite;
      overflow: visible;
    }

    .hero-result-badge {
      position: absolute;
      left: -42px;
      top: -48px;
      z-index: 4;
      width: 190px;
      padding: 20px 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(255,255,255,.80);
      box-shadow: 0 24px 80px rgba(0,0,0,.18);
      color: #111318;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      animation: noteFloatOne 6.4s ease-in-out infinite;
    }

    .hero-result-badge span,
    .hero-result-badge small {
      display: block;
      color: #667085;
      font-size: 13px;
      font-weight: 760;
    }

    .hero-result-badge strong {
      display: block;
      margin: 12px 0 8px;
      color: #111318;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -.05em;
    }

    .hero-scene-line {
      position: absolute;
      left: 64px;
      right: 34px;
      top: 58px;
      height: 52px;
      border-radius: 999px;
      background: rgba(255,255,255,.58);
      border: 1px solid rgba(255,255,255,.76);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.36);
      animation: linePulse 4.8s ease-in-out infinite;
    }

    .hero-inner-panel {
      position: relative;
      z-index: 2;
      margin-top: 48px;
      padding: 34px 28px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 90% 90%, rgba(91,108,255,.35), transparent 38%),
        linear-gradient(145deg, rgba(18,22,38,.96), rgba(38,43,63,.96));
      color: #fff;
      box-shadow: 0 26px 90px rgba(0,0,0,.32);
      overflow: hidden;
    }

    .hero-inner-panel h3 {
      max-width: 380px;
      margin: 0 0 26px;
      color: #fff;
      font-size: 34px;
      line-height: .98;
      letter-spacing: -.06em;
    }

    .hero-point-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .hero-point {
      min-height: 120px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.13);
      color: #fff;
      opacity: 0;
      transform: translateY(18px) scale(.98);
      animation: pointIn .72s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .hero-point:nth-child(1) { animation-delay: .25s; }
    .hero-point:nth-child(2) { animation-delay: .35s; }
    .hero-point:nth-child(3) { animation-delay: .45s; }
    .hero-point:nth-child(4) { animation-delay: .55s; }

    .hero-point span {
      display: block;
      margin-bottom: 10px;
      color: rgba(255,255,255,.52);
      font-size: 13px;
      font-weight: 850;
    }

    .hero-point strong {
      display: block;
      margin-bottom: 8px;
      color: #fff;
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: -.035em;
    }

    .hero-point small {
      color: rgba(255,255,255,.58);
      font-size: 13px;
      line-height: 1.35;
      font-weight: 650;
    }

    .hero-orbit {
      position: absolute;
      right: -52px;
      top: 152px;
      width: 122px;
      height: 122px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.30);
      animation: orbitRotate 9s linear infinite;
    }

    .hero-orbit span {
      position: absolute;
      right: 4px;
      top: 50%;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #3195FF, #B64BFF);
      box-shadow: 0 0 24px rgba(91,108,255,.55);
    }

    .animated-why {
      overflow: hidden;
    }

    .why-motion-scene {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
      margin-top: 34px;
    }

    .why-process-card {
      position: relative;
      z-index: 2;
      width: min(520px, 86%);
      min-height: 380px;
      padding: 34px 30px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 80% 20%, rgba(91,108,255,.26), transparent 44%),
        rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 34px 110px rgba(0,0,0,.36);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transform: rotate(2.5deg);
      animation: processFloat 7s ease-in-out infinite;
    }

    .why-process-label {
      margin-bottom: 24px;
      color: rgba(255,255,255,.68);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 850;
      font-size: 13px;
    }

    .why-process-row {
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      opacity: 0;
      transform: translateY(16px);
      animation: processRowIn .7s cubic-bezier(.2,.8,.2,1) forwards;
    }

    .why-process-row:nth-of-type(2) { animation-delay: .18s; }
    .why-process-row:nth-of-type(3) { animation-delay: .28s; }
    .why-process-row:nth-of-type(4) { animation-delay: .38s; }
    .why-process-row:nth-of-type(5) { animation-delay: .48s; }

    .why-process-row span {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #3195FF, #B64BFF);
      color: #fff;
      font-weight: 850;
    }

    .why-process-row strong {
      color: rgba(255,255,255,.78);
      font-size: 15px;
      line-height: 1.25;
    }

    .why-orbit {
      position: absolute;
      right: 64px;
      bottom: 42px;
      width: 130px;
      height: 130px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      animation: orbitRotate 10s linear infinite reverse;
    }

    .why-orbit span {
      position: absolute;
      right: 8px;
      top: 50%;
      width: 17px;
      height: 17px;
      border-radius: 999px;
      background: linear-gradient(135deg, #3195FF, #B64BFF);
      box-shadow: 0 0 24px rgba(91,108,255,.55);
    }

    .why-floating-note {
      position: absolute;
      z-index: 3;
      max-width: 300px;
      padding: 22px 24px;
      border-radius: 24px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(255,255,255,.78);
      color: #111318;
      box-shadow: 0 24px 80px rgba(0,0,0,.22);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .why-floating-note h3 {
      margin: 0 0 10px;
      color: #111318;
      font-size: 22px;
      line-height: 1.04;
      letter-spacing: -.055em;
    }

    .why-floating-note p {
      margin: 0;
      color: #667085;
      font-size: 15px;
      line-height: 1.38;
      font-weight: 650;
    }

    .note-one {
      left: 6%;
      top: 42px;
      transform: rotate(-4deg);
      animation: noteFloatOne 6.6s ease-in-out infinite;
    }

    .note-two {
      right: 6%;
      top: 210px;
      transform: rotate(5deg);
      animation: noteFloatTwo 7.2s ease-in-out infinite;
    }

    .note-three {
      left: 12%;
      bottom: 32px;
      transform: rotate(4deg);
      animation: noteFloatThree 6.9s ease-in-out infinite;
    }

    @keyframes sceneFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-14px) rotate(-.6deg); }
    }

    @keyframes processFloat {
      0%, 100% { transform: translateY(0) rotate(2.5deg); }
      50% { transform: translateY(-16px) rotate(1.2deg); }
    }

    @keyframes noteFloatOne {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -14px; }
    }

    @keyframes noteFloatTwo {
      0%, 100% { translate: 0 0; }
      50% { translate: 10px -12px; }
    }

    @keyframes noteFloatThree {
      0%, 100% { translate: 0 0; }
      50% { translate: -8px -12px; }
    }

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

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

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

    @keyframes linePulse {
      0%, 100% { opacity: .48; transform: scaleX(.92); transform-origin: left; }
      50% { opacity: .9; transform: scaleX(1); transform-origin: left; }
    }

    @media (max-width: 1040px) {
      .hero-scene-card {
        margin: 0 auto;
      }

      .why-motion-scene {
        min-height: 820px;
      }

      .note-one { left: 4%; top: 20px; }
      .note-two { right: 4%; top: 540px; }
      .note-three { left: 8%; bottom: 20px; }
    }

    @media (max-width: 720px) {
      .hero-visual {
        min-height: auto !important;
      }

      .hero-scene-card {
        min-height: auto;
        padding: 70px 18px 18px;
      }

      .hero-result-badge {
        left: 12px;
        top: -36px;
      }

      .hero-inner-panel {
        padding: 26px 20px;
      }

      .hero-inner-panel h3 {
        font-size: 28px;
      }

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

      .why-motion-scene {
        min-height: auto;
        display: grid;
        gap: 18px;
      }

      .why-process-card,
      .why-floating-note {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        transform: none;
      }

      .why-process-card {
        order: 2;
      }

      .why-floating-note {
        order: 1;
      }
    }

  
    /* ===== WHY SUPPORT TEXT CARDS UNDER ANIMATION ===== */
    .why-support-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
      position: relative;
      z-index: 4;
    }

    .why-support-card {
      min-height: 220px;
      padding: 24px;
      border-radius: 26px;
      background:
        radial-gradient(circle at 85% 18%, rgba(91,108,255,.16), transparent 42%),
        rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.13);
      box-shadow: 0 24px 70px rgba(0,0,0,.24);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: transform .28s ease, border-color .28s ease, background .28s ease;
    }

    .why-support-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,.22);
      background:
        radial-gradient(circle at 85% 18%, rgba(182,75,255,.20), transparent 42%),
        rgba(255,255,255,.10);
    }

    .why-support-card span {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 22px;
      border-radius: 15px;
      color: #fff;
      font-weight: 850;
      background: linear-gradient(135deg, #3195FF, #5B6CFF 48%, #B64BFF);
      box-shadow: 0 16px 42px rgba(91,108,255,.26);
    }

    .why-support-card h3 {
      margin: 0 0 12px;
      color: #F7F8FF;
      font-size: 23px;
      line-height: 1.05;
      letter-spacing: -.055em;
    }

    .why-support-card p {
      margin: 0;
      color: rgba(247,248,255,.62);
      font-size: 15px;
      line-height: 1.48;
    }

    @media (max-width: 980px) {
      .why-support-grid {
        grid-template-columns: 1fr;
      }
    }

  
    /* ===== FINAL FIXES: WHY NOTE / PORTFOLIO BUTTON / FOOTER ===== */

    .why-motion-scene {
      min-height: 650px !important;
      margin-bottom: 22px !important;
    }

    .note-three {
      left: 7% !important;
      bottom: 108px !important;
      z-index: 5 !important;
    }

    .why-support-grid {
      margin-top: 10px !important;
    }

    #portfolio .section-head {
      grid-template-columns: .68fr minmax(0, .78fr) !important;
      padding-right: 190px !important;
    }

    .portfolio-top-action {
      top: 52px !important;
      right: 0 !important;
    }

    @media (max-width: 1040px) {
      #portfolio .section-head {
        grid-template-columns: 1fr !important;
        padding-right: 0 !important;
      }

      .portfolio-top-action {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: -12px 0 30px !important;
        display: flex !important;
        justify-content: flex-start !important;
      }

      .why-motion-scene {
        min-height: 820px !important;
      }

      .note-three {
        bottom: 92px !important;
      }
    }

    @media (max-width: 720px) {
      .why-motion-scene {
        min-height: auto !important;
        margin-bottom: 18px !important;
      }

      .note-three {
        bottom: auto !important;
      }
    }

  
    /* ===== FIX APPROACH FLOATING NOTE OVERLAP ===== */
    .why-motion-scene {
      min-height: 760px !important;
      margin-bottom: 18px !important;
      overflow: visible !important;
    }

    .note-three {
      left: 7% !important;
      bottom: 220px !important;
      z-index: 5 !important;
    }

    .why-support-grid {
      margin-top: 0 !important;
      position: relative !important;
      z-index: 6 !important;
    }

    @media (max-width: 1040px) {
      .why-motion-scene {
        min-height: 900px !important;
      }

      .note-three {
        bottom: 190px !important;
      }
    }

    @media (max-width: 720px) {
      .why-motion-scene {
        min-height: auto !important;
      }

      .note-three {
        bottom: auto !important;
      }
    }

  
    /* ===== MOBILE / TABLET PRODUCTION PASS ===== */

    html,
    body {
      max-width: 100%;
      overflow-x: hidden !important;
    }

    img,
    svg {
      max-width: 100%;
    }

    @media (max-width: 1180px) {
      .container,
      .nav {
        width: min(100% - 32px, var(--container)) !important;
      }

      .nav {
        gap: 18px !important;
      }

      .menu {
        gap: 20px !important;
        font-size: 13px !important;
      }

      .hero-scene-card {
        margin-right: 0 !important;
      }

      .why-motion-scene {
        transform: scale(.92);
        transform-origin: top center;
        margin-bottom: -34px !important;
      }
    }

    @media (max-width: 1040px) {
      .nav {
        top: 14px !important;
        border-radius: 22px !important;
      }

      .menu {
        display: none !important;
      }

      .brand {
        min-width: auto !important;
      }

      .hero,
      .tl-hero {
        min-height: auto !important;
        padding: 128px 0 70px !important;
      }

      .hero-grid,
      .tl-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 44px !important;
      }

      .hero h1,
      .tl-hero h1 {
        max-width: 780px !important;
        font-size: clamp(46px, 10vw, 78px) !important;
      }

      .hero-lead,
      .tl-hero-lead {
        max-width: 720px !important;
        font-size: 19px !important;
      }

      .hero-visual {
        min-height: auto !important;
        display: flex !important;
        justify-content: center !important;
      }

      .hero-scene-card {
        width: min(560px, 100%) !important;
        margin: 0 auto !important;
      }

      .hero-result-badge {
        left: 18px !important;
        top: -42px !important;
      }

      .hero-orbit {
        right: -24px !important;
      }

      .section-head {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      .portfolio-top-action {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: -10px 0 28px !important;
        display: flex !important;
        justify-content: flex-start !important;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(3, 260px) !important;
        grid-template-areas:
          "a b"
          "c d"
          "e f" !important;
      }

      .why-motion-scene {
        transform: none !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        place-items: initial !important;
        margin-top: 28px !important;
        margin-bottom: 24px !important;
      }

      .why-process-card {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        min-height: auto !important;
        transform: none !important;
        animation: none !important;
        order: 1 !important;
      }

      .why-floating-note {
        position: relative !important;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: none !important;
        transform: none !important;
        animation: none !important;
      }

      .note-one { order: 2 !important; }
      .note-two { order: 3 !important; }
      .note-three { order: 4 !important; }

      .why-orbit {
        display: none !important;
      }

      .why-support-grid {
        grid-template-columns: 1fr !important;
        margin-top: 20px !important;
      }

      .cta-box {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 760px) {
      .container,
      .nav {
        width: min(100% - 28px, var(--container)) !important;
      }

      .nav {
        padding: 10px !important;
        border-radius: 20px !important;
      }

      .brand-mark {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
      }

      .brand-name strong {
        font-size: 14px !important;
      }

      .brand-name span {
        display: none !important;
      }

      .nav .btn,
      .btn {
        min-height: 44px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
      }

      .hero,
      .tl-hero {
        padding-top: 112px !important;
      }

      .hero h1,
      .tl-hero h1 {
        font-size: clamp(39px, 13vw, 56px) !important;
        letter-spacing: -.07em !important;
      }

      .hero-lead,
      .tl-hero-lead {
        font-size: 17px !important;
        line-height: 1.46 !important;
      }

      .hero-actions,
      .tl-hero-actions {
        gap: 10px !important;
        margin-bottom: 30px !important;
      }

      .hero-actions .btn,
      .tl-hero-actions .btn {
        width: 100% !important;
      }

      .hero-scene-card {
        min-height: auto !important;
        padding: 62px 16px 16px !important;
        border-radius: 30px !important;
      }

      .hero-result-badge {
        width: 164px !important;
        padding: 16px 18px !important;
        border-radius: 20px !important;
        left: 14px !important;
        top: -34px !important;
      }

      .hero-result-badge strong {
        font-size: 20px !important;
      }

      .hero-scene-line {
        top: 44px !important;
        left: 46px !important;
        right: 16px !important;
        height: 42px !important;
      }

      .hero-inner-panel {
        margin-top: 42px !important;
        padding: 24px 18px !important;
        border-radius: 24px !important;
      }

      .hero-inner-panel h3 {
        font-size: 28px !important;
      }

      .hero-point-grid {
        grid-template-columns: 1fr !important;
      }

      .hero-orbit {
        display: none !important;
      }

      section {
        padding: 68px 0 !important;
      }

      h2 {
        font-size: clamp(34px, 11vw, 46px) !important;
        letter-spacing: -.065em !important;
      }

      .section-text {
        font-size: 16px !important;
      }

      .services-grid {
        grid-template-columns: 1fr !important;
      }

      .service-card {
        min-height: auto !important;
      }

      .portfolio-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, 290px) !important;
        grid-template-areas:
          "a"
          "b"
          "c"
          "d"
          "e"
          "f" !important;
      }

      .case-caption {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        padding: 14px 15px !important;
        border-radius: 18px !important;
      }

      .case-caption h3 {
        font-size: 22px !important;
      }

      .case-caption p {
        font-size: 13px !important;
      }

      .why-process-card {
        padding: 24px 18px !important;
        border-radius: 28px !important;
      }

      .why-process-row {
        grid-template-columns: 40px 1fr !important;
        padding: 13px !important;
      }

      .why-process-row span {
        width: 36px !important;
        height: 36px !important;
      }

      .why-process-row strong {
        font-size: 14px !important;
      }

      .why-floating-note {
        padding: 20px !important;
        border-radius: 22px !important;
      }

      .why-floating-note h3 {
        font-size: 21px !important;
      }

      .why-floating-note p {
        font-size: 14px !important;
      }

      .why-support-card {
        min-height: auto !important;
      }

      .cta-box {
        padding: 24px !important;
        border-radius: 30px !important;
      }

      .form {
        padding: 18px !important;
        border-radius: 24px !important;
      }

      .footer-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
      }

      .footer-links {
        justify-content: flex-start !important;
        text-align: left !important;
      }
    }

    @media (max-width: 420px) {
      .nav {
        gap: 10px !important;
      }

      .brand {
        gap: 9px !important;
      }

      .brand-name strong {
        max-width: 92px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
      }

      .nav .btn {
        padding: 0 12px !important;
        font-size: 12px !important;
      }

      .hero h1,
      .tl-hero h1 {
        font-size: 39px !important;
      }

      .hero-scene-card {
        padding-top: 72px !important;
      }

      .hero-result-badge {
        width: calc(100% - 28px) !important;
      }

      .hero-scene-line {
        display: none !important;
      }

      .hero-inner-panel {
        margin-top: 32px !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
    }

  
    /* ===== MOBILE HAMBURGER MENU ===== */
    .burger {
      display: none;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 15px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0;
      z-index: 80;
    }

    .burger span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: transform .25s ease, opacity .25s ease;
    }

    .burger.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 82px;
      left: 50%;
      transform: translateX(-50%) translateY(-12px);
      width: min(100% - 32px, var(--container));
      z-index: 45;
      display: none;
      opacity: 0;
      pointer-events: none;
      padding: 16px;
      border-radius: 24px;
      background: rgba(13,17,32,.88);
      border: 1px solid rgba(255,255,255,.15);
      box-shadow: 0 28px 90px rgba(0,0,0,.38);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      transition: opacity .25s ease, transform .25s ease;
    }

    .mobile-menu.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 16px;
      color: rgba(255,255,255,.82);
      font-weight: 750;
      border: 1px solid transparent;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .mobile-menu a:hover {
      color: #fff;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.10);
    }

    .mobile-menu-cta {
      margin-top: 10px;
      justify-content: center;
      color: #fff !important;
      background: linear-gradient(135deg, #3195FF, #5B6CFF 48%, #B64BFF) !important;
      box-shadow: 0 18px 54px rgba(91,108,255,.28);
    }

    @media (max-width: 1040px) {
      .burger {
        display: inline-flex !important;
      }

      .mobile-menu {
        display: grid !important;
        gap: 6px;
      }

      .nav-cta {
        margin-left: auto;
      }
    }

    @media (max-width: 760px) {
      .mobile-menu {
        top: 76px;
        width: min(100% - 28px, var(--container));
      }
    }

    @media (max-width: 520px) {
      .nav-cta {
        display: none !important;
      }

      .mobile-menu {
        top: 74px;
      }
    }

  
    /* ===== SOFTER PORTFOLIO GLASS ===== */
    .case-caption,
    .portfolio-sketch-caption,
    .portfolio-approved-caption {
      background: rgba(255,255,255,.38) !important;
      border: 1px solid rgba(255,255,255,.22) !important;
      backdrop-filter: blur(14px) !important;
      -webkit-backdrop-filter: blur(14px) !important;
      box-shadow:
        0 18px 50px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.06) !important;
    }

    .case-caption h3,
    .portfolio-sketch-caption h3,
    .portfolio-approved-caption h3 {
      color: #0F1220 !important;
    }

    .case-caption p,
    .portfolio-sketch-caption p,
    .portfolio-approved-caption p {
      color: rgba(15,18,32,.74) !important;
    }