:root {
      --navy: #17243c;
      --orange: #ff7a20;
      --cream: #fff7e8;
      --yellow: #f3e83b;
      --coral: #ff4d5d;
      --aqua: #53dfca;
      --purple: #7657ff;
      --white: #fffdfa;
      --ink: #111522;
      --line: rgba(17, 21, 34, .16);
      --soft-shadow: 0 18px 45px rgba(23, 36, 60, .13);
      --hard-shadow: 7px 7px 0 var(--navy);
      --section-pad: clamp(5.5rem, 10vw, 9rem);
      --scroll-progress: 0%;
      --scroll-velocity: 0;
      --cursor-x: 50vw;
      --cursor-y: 50vh;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
      background: var(--navy);
    }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: "Plus Jakarta Sans", sans-serif;
      letter-spacing: .014em;
      overflow-x: clip;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
      opacity: .16;
      background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.25) 0 1px, transparent 1.5px),
        radial-gradient(circle at 80% 40%, rgba(23,36,60,.22) 0 1px, transparent 1.5px);
      background-size: 9px 9px, 13px 13px;
      mix-blend-mode: multiply;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button:focus-visible, a:focus-visible, summary:focus-visible {
      outline: 3px solid var(--purple);
      outline-offset: 4px;
    }
    ::selection { color: var(--navy); background: var(--yellow); }

    .font-display {
      font-family: "Bricolage Grotesque", sans-serif;
      letter-spacing: -.012em;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      margin-bottom: 1rem;
      padding: .52rem .8rem;
      border: 1.5px solid currentColor;
      border-radius: 999px;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .08em;
      line-height: 1;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: .52rem;
      height: .52rem;
      border-radius: 50%;
      background: currentColor;
      animation: blinkDot 1.2s steps(2, end) infinite;
    }
    .section-title {
      max-width: 930px;
      margin: 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(2.7rem, 7vw, 6.2rem);
      font-weight: 800;
      letter-spacing: -.018em;
      line-height: .98;
    }
    .section-copy {
      max-width: 690px;
      margin-top: 1.45rem;
      color: rgba(17, 21, 34, .72);
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      line-height: 1.75;
    }
    .scribble {
      position: relative;
      display: inline-block;
      z-index: 0;
    }
    .scribble::after {
      content: "";
      position: absolute;
      right: -.04em;
      bottom: -.08em;
      left: -.04em;
      height: .18em;
      z-index: -1;
      border-radius: 999px;
      background: var(--orange);
      transform: rotate(-1.5deg) scaleX(0);
      transform-origin: left;
      transition: transform .65s cubic-bezier(.16,1,.3,1) .25s;
    }
    .is-visible .scribble::after { transform: rotate(-1.5deg) scaleX(1); }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--navy);
      transition: transform .85s cubic-bezier(.76,0,.24,1);
    }
    .preloader.done { transform: translateY(-105%); }
    .preloader-mark {
      display: grid;
      place-items: center;
      width: 130px;
      height: 130px;
      border: 2px solid rgba(255,255,255,.25);
      border-radius: 50%;
      animation: preloaderBounce 1s cubic-bezier(.2,.8,.2,1) infinite alternate;
    }
    .preloader-mark img {
      width: 78px;
      filter: drop-shadow(0 7px 12px rgba(0,0,0,.2));
    }
    .preloader p {
      margin: 1.1rem 0 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 800;
      letter-spacing: .13em;
      text-align: center;
      text-transform: uppercase;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: var(--scroll-progress);
      height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--yellow), var(--aqua));
      box-shadow: 0 0 16px var(--yellow);
    }
    .site-nav {
      position: fixed;
      top: 18px;
      right: 0;
      left: 0;
      z-index: 1000;
      transition: transform .35s ease;
    }
    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1180px, calc(100% - 28px));
      min-height: 66px;
      margin: auto;
      padding: .55rem .62rem .55rem 1rem;
      border: 1.5px solid rgba(23,36,60,.14);
      border-radius: 20px;
      background: rgba(255, 253, 250, .84);
      box-shadow: 0 12px 40px rgba(23,36,60,.08);
      backdrop-filter: blur(18px);
      transition: min-height .3s ease, box-shadow .3s ease;
    }
    .site-nav.scrolled .nav-shell {
      min-height: 58px;
      box-shadow: 0 14px 38px rgba(23,36,60,.16);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      min-width: max-content;
    }
    .brand img {
      width: 47px;
      height: 47px;
      object-fit: contain;
    }
    .brand strong {
      display: block;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .005em;
    }
    .brand small {
      display: block;
      margin-top: .28rem;
      color: rgba(23,36,60,.62);
      font-size: .58rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: .25rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .nav-links a {
      position: relative;
      display: block;
      padding: .7rem .8rem;
      border-radius: 12px;
      font-size: .78rem;
      font-weight: 800;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      right: .75rem;
      bottom: .44rem;
      left: .75rem;
      height: 2px;
      border-radius: 99px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    .btn-main,
    .btn-ghost {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      min-height: 48px;
      padding: .8rem 1.1rem;
      overflow: hidden;
      border: 2px solid var(--navy);
      border-radius: 14px;
      font-size: .82rem;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
    }
    .btn-main {
      color: var(--white);
      background: var(--navy);
      box-shadow: 4px 4px 0 var(--orange);
    }
    .btn-main::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: var(--orange);
      transform: translateY(104%);
      transition: transform .3s cubic-bezier(.16,1,.3,1);
    }
    .btn-main:hover {
      color: var(--navy);
      box-shadow: 6px 6px 0 var(--yellow);
      transform: translate(-2px, -2px);
    }
    .btn-main:hover::before { transform: translateY(0); }
    .btn-ghost { background: rgba(255,255,255,.55); }
    .btn-ghost:hover { background: var(--yellow); transform: rotate(-1.5deg); }
    .btn-main .arrow,
    .btn-ghost .arrow {
      font-size: 1.2rem;
      transition: transform .22s ease;
    }
    .btn-main:hover .arrow,
    .btn-ghost:hover .arrow { transform: translateX(4px) rotate(-8deg); }
    .menu-button {
      display: none;
      width: 45px;
      height: 45px;
      border: 2px solid var(--navy);
      border-radius: 12px;
      color: var(--navy);
      background: var(--yellow);
    }
    .menu-button span {
      display: block;
      width: 19px;
      height: 2px;
      margin: 4px auto;
      border-radius: 3px;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }
    .menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-button.open span:nth-child(2) { opacity: 0; }
    .menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .hero {
      position: relative;
      display: flex;
      min-height: 100svh;
      align-items: center;
      padding: 130px 0 72px;
      overflow: hidden;
      background:
        radial-gradient(circle at 86% 18%, rgba(83,223,202,.55), transparent 24%),
        radial-gradient(circle at 14% 70%, rgba(255,77,93,.18), transparent 25%),
        var(--cream);
    }
    .hero-grid {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: 1.2rem;
      padding: .52rem .8rem;
      border: 1.5px solid var(--navy);
      border-radius: 999px;
      color: var(--navy);
      background: var(--yellow);
      box-shadow: 3px 3px 0 var(--navy);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      animation: heroKicker 3.2s ease-in-out infinite;
    }
    .hero-title {
      max-width: 760px;
      margin: 0;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(4rem, 8vw, 8.6rem);
      font-weight: 800;
      letter-spacing: -.026em;
      line-height: .88;
    }
    .hero-title .line {
      display: block;
      opacity: 0;
      transform: translateY(70px) rotate(2deg);
      animation: heroLine .85s cubic-bezier(.16,1,.3,1) forwards;
    }
    .hero-title .line:nth-child(2) { animation-delay: .12s; }
    .hero-title .line:nth-child(3) { animation-delay: .24s; }
    .hero-title .orange { color: var(--orange); }
    .hero-copy {
      max-width: 660px;
      margin: 1.65rem 0 0;
      color: rgba(17,21,34,.72);
      font-size: clamp(1rem, 1.45vw, 1.16rem);
      line-height: 1.72;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      margin-top: 1.7rem;
    }
    .hero-note {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-top: 1.3rem;
      color: rgba(17,21,34,.62);
      font-size: .75rem;
      font-weight: 700;
    }
    .avatar-stack { display: flex; }
    .mini-avatar {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      margin-left: -7px;
      border: 2px solid var(--cream);
      border-radius: 50%;
      color: var(--navy);
      font-size: .58rem;
      font-weight: 900;
      background: var(--yellow);
    }
    .mini-avatar:first-child { margin-left: 0; background: var(--aqua); }
    .mini-avatar:nth-child(2) { background: var(--coral); }
    .mini-avatar:nth-child(3) { color: white; background: var(--purple); }

    .hero-art {
      position: relative;
      display: grid;
      min-height: 600px;
      place-items: center;
      perspective: 1200px;
    }
    .book-scene {
      position: relative;
      width: min(380px, 72vw);
      aspect-ratio: .78;
      transform: rotate(-6deg);
      transform-style: preserve-3d;
      transition: transform .2s ease-out;
    }
    .book-shadow {
      position: absolute;
      right: 8%;
      bottom: -7%;
      left: 4%;
      height: 21%;
      border-radius: 50%;
      background: rgba(23,36,60,.26);
      filter: blur(24px);
      transform: translateZ(-40px);
    }
    .book-pages {
      position: absolute;
      inset: 3% -3% -3% 4%;
      border: 3px solid var(--navy);
      border-radius: 12px 22px 22px 12px;
      background: repeating-linear-gradient(90deg, #fff 0 4px, #e9ddcc 5px 6px);
      transform: translateZ(-16px);
    }
    .book-cover {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 2rem;
      overflow: hidden;
      border: 3px solid var(--navy);
      border-radius: 14px 24px 24px 14px;
      color: var(--white);
      background:
        radial-gradient(circle at 85% 17%, var(--yellow) 0 55px, transparent 56px),
        linear-gradient(135deg, transparent 58%, rgba(255,255,255,.08) 58% 62%, transparent 62%),
        var(--orange);
      box-shadow: 15px 18px 0 var(--navy), 28px 33px 60px rgba(23,36,60,.25);
      transform: translateZ(18px);
    }
    .book-cover::before {
      content: "MATA  •  MATA  •  MATA  •  MATA  •  MATA";
      position: absolute;
      top: 45%;
      left: -8%;
      width: 120%;
      padding: .35rem 0;
      color: var(--navy);
      background: var(--yellow);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .08em;
      white-space: nowrap;
      transform: rotate(-11deg);
    }
    .cover-top {
      display: flex;
      justify-content: space-between;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .cover-main {
      position: relative;
      z-index: 2;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(3.8rem, 7vw, 5.8rem);
      font-weight: 900;
      letter-spacing: -.035em;
      line-height: .82;
      text-transform: uppercase;
    }
    .cover-main span { display: block; color: var(--white); }
    .cover-bottom {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }
    .cover-bottom strong {
      max-width: 120px;
      font-size: .65rem;
      line-height: 1.45;
      text-transform: uppercase;
    }
    .cover-smile {
      position: relative;
      width: 67px;
      height: 67px;
      border: 3px solid var(--navy);
      border-radius: 50%;
      background: var(--aqua);
      animation: spinSlow 9s linear infinite;
    }
    .cover-smile::before,
    .cover-smile::after {
      content: "";
      position: absolute;
      top: 20px;
      width: 7px;
      height: 10px;
      border-radius: 50%;
      background: var(--navy);
    }
    .cover-smile::before { left: 17px; }
    .cover-smile::after { right: 17px; }
    .cover-smile span {
      position: absolute;
      right: 14px;
      bottom: 12px;
      left: 14px;
      height: 13px;
      border-bottom: 4px solid var(--navy);
      border-radius: 50%;
    }
    .floating-sticker {
      position: absolute;
      z-index: 6;
      display: grid;
      place-items: center;
      border: 2px solid var(--navy);
      color: var(--navy);
      background: var(--yellow);
      box-shadow: 5px 5px 0 var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: .75rem;
      font-weight: 900;
      line-height: 1;
      text-align: center;
      text-transform: uppercase;
      transform: translateY(var(--parallax, 0px));
      will-change: transform;
    }
    .sticker-bali {
      top: 10%;
      right: -8%;
      width: 100px;
      height: 100px;
      border-radius: 46% 54% 66% 34% / 43% 37% 63% 57%;
      background: var(--aqua);
      animation: morph 6s ease-in-out infinite;
    }
    .sticker-real {
      bottom: 5%;
      left: -11%;
      width: 112px;
      min-height: 72px;
      padding: .9rem;
      border-radius: 14px;
      color: white;
      background: var(--purple);
      transform: rotate(-7deg) translateY(var(--parallax, 0px));
    }
    .sticker-star {
      top: 43%;
      left: -14%;
      width: 82px;
      height: 82px;
      background: var(--coral);
      clip-path: polygon(50% 0,61% 28%,85% 15%,72% 40%,100% 50%,72% 61%,85% 86%,61% 73%,50% 100%,39% 73%,15% 86%,28% 61%,0 50%,28% 40%,15% 15%,39% 28%);
      border: 0;
      box-shadow: none;
      animation: spinSlow 12s linear infinite reverse;
    }
    .orbit-text {
      position: absolute;
      top: 16%;
      left: -2%;
      width: 90px;
      height: 90px;
      animation: spinSlow 14s linear infinite;
    }
    .orbit-text span {
      position: absolute;
      top: 0;
      left: 50%;
      height: 45px;
      color: var(--navy);
      font-size: .56rem;
      font-weight: 900;
      transform-origin: 0 45px;
    }
    .hero-doodle {
      position: absolute;
      border: 3px solid var(--navy);
      opacity: .38;
      pointer-events: none;
    }
    .doodle-one {
      top: 18%;
      left: 4%;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      animation: doodlePop 3s ease-in-out infinite;
    }
    .doodle-two {
      right: 3%;
      bottom: 14%;
      width: 85px;
      height: 35px;
      border-radius: 50%;
      transform: rotate(-18deg);
      animation: doodlePop 3.6s ease-in-out infinite reverse;
    }

    .marquee-band {
      position: relative;
      z-index: 20;
      width: 100%;
      margin: -3px 0;
      overflow: hidden;
      border-top: 3px solid var(--navy);
      border-bottom: 3px solid var(--navy);
      color: var(--navy);
      background: var(--yellow);
      box-shadow:
        0 -2px 0 var(--yellow),
        0 2px 0 var(--yellow);
      transform: none;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 24s linear infinite;
    }
    .scrolling-up .marquee-track { animation-direction: reverse; }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.35rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(1.15rem, 2.2vw, 1.9rem);
      font-weight: 900;
      letter-spacing: -.03em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .marquee-dot {
      display: inline-block;
      width: 13px;
      height: 13px;
      border: 2px solid var(--navy);
      border-radius: 50%;
      background: var(--orange);
    }

    .intro {
      position: relative;
      padding: var(--section-pad) 0;
      overflow: hidden;
      color: var(--white);
      background: var(--navy);
    }
    .intro::before {
      content: "";
      position: absolute;
      top: -15%;
      right: -9%;
      width: min(470px, 54vw);
      aspect-ratio: 1;
      border: 2px solid rgba(255,255,255,.18);
      border-radius: 48% 52% 65% 35% / 35% 45% 55% 65%;
      animation: morph 9s ease-in-out infinite;
    }
    .intro .section-copy { color: rgba(255,255,255,.7); }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: clamp(2rem, 7vw, 7rem);
      align-items: end;
    }
    .manifesto-note {
      position: relative;
      padding: clamp(1.5rem, 3vw, 2.3rem);
      border: 2px solid var(--white);
      border-radius: 22px 22px 22px 5px;
      color: var(--navy);
      background: var(--yellow);
      box-shadow: 9px 9px 0 var(--orange);
      transform: rotate(2deg);
    }
    .manifesto-note::before {
      content: "CATATAN PENTING";
      position: absolute;
      top: -14px;
      left: 24px;
      padding: .4rem .7rem;
      border: 2px solid var(--navy);
      border-radius: 999px;
      color: white;
      background: var(--coral);
      font-size: .63rem;
      font-weight: 900;
      letter-spacing: .09em;
    }
    .manifesto-note p {
      margin: 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(1.4rem, 3vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -.008em;
      line-height: 1.16;
    }
    .manifesto-note small {
      display: block;
      margin-top: 1rem;
      font-weight: 700;
      line-height: 1.65;
    }

    .service {
      position: relative;
      padding: var(--section-pad) 0;
      overflow: hidden;
      background: var(--white);
    }
    .service-switch {
      display: inline-flex;
      gap: .35rem;
      margin: 2rem 0 2.5rem;
      padding: .38rem;
      border: 2px solid var(--navy);
      border-radius: 16px;
      background: var(--cream);
      box-shadow: 4px 4px 0 var(--navy);
    }
    .service-switch button {
      padding: .72rem 1rem;
      border: 0;
      border-radius: 10px;
      color: var(--navy);
      background: transparent;
      font-size: .78rem;
      font-weight: 900;
      transition: color .25s ease, background .25s ease, transform .25s ease;
    }
    .service-switch button.active {
      color: white;
      background: var(--navy);
      transform: rotate(-1deg);
    }
    .service-panels {
      position: relative;
      min-height: 560px;
    }
    .service-panel {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: clamp(2rem, 6vw, 6rem);
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(30px) scale(.98);
      transition: opacity .45s ease, transform .55s cubic-bezier(.16,1,.3,1);
    }
    .service-panel.active {
      position: relative;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }
    .service-visual {
      position: relative;
      min-height: 500px;
    }
    .open-book {
      position: absolute;
      inset: 12% 0 8%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      filter: drop-shadow(0 28px 25px rgba(23,36,60,.18));
      perspective: 900px;
    }
    .book-page {
      position: relative;
      overflow: hidden;
      border: 3px solid var(--navy);
      background: var(--cream);
    }
    .book-page.left {
      border-radius: 24px 3px 3px 24px;
      background:
        linear-gradient(155deg, transparent 55%, var(--aqua) 55%),
        var(--cream);
      transform: rotateY(7deg);
      transform-origin: right;
    }
    .book-page.right {
      border-radius: 3px 24px 24px 3px;
      background:
        radial-gradient(circle at 80% 20%, var(--yellow) 0 55px, transparent 56px),
        var(--orange);
      transform: rotateY(-7deg);
      transform-origin: left;
    }
    .portrait-block {
      position: absolute;
      border: 3px solid var(--navy);
      background: var(--purple);
      box-shadow: 5px 5px 0 var(--navy);
    }
    .portrait-block::before {
      content: "";
      position: absolute;
      top: 18%;
      left: 50%;
      width: 42%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--cream);
      transform: translateX(-50%);
    }
    .portrait-block::after {
      content: "";
      position: absolute;
      right: 16%;
      bottom: 0;
      left: 16%;
      height: 48%;
      border-radius: 50% 50% 0 0;
      background: var(--cream);
    }
    .pb-one { top: 12%; right: 9%; bottom: 39%; left: 10%; transform: rotate(-3deg); }
    .pb-two { top: 45%; right: 7%; bottom: 9%; left: 38%; background: var(--coral); transform: rotate(4deg); }
    .page-caption {
      position: absolute;
      right: 9%;
      bottom: 10%;
      left: 9%;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 900;
      letter-spacing: -.015em;
      line-height: 1;
    }
    .right .page-caption { color: white; }
    .paper-clip {
      position: absolute;
      top: 4%;
      left: 13%;
      width: 45px;
      height: 85px;
      z-index: 5;
      border: 5px solid var(--navy);
      border-radius: 24px;
      transform: rotate(-13deg);
    }
    .phone-scene {
      position: absolute;
      inset: 1% 13% 1% 13%;
      display: grid;
      place-items: center;
    }
    .phone {
      position: relative;
      width: min(270px, 70vw);
      aspect-ratio: .53;
      padding: 13px;
      border: 4px solid var(--navy);
      border-radius: 38px;
      background: var(--navy);
      box-shadow: 15px 18px 0 var(--orange), 30px 35px 60px rgba(23,36,60,.25);
      transform: rotate(4deg);
    }
    .phone::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 50%;
      z-index: 4;
      width: 33%;
      height: 19px;
      border-radius: 999px;
      background: var(--navy);
      transform: translateX(-50%);
    }
    .phone-screen {
      position: relative;
      height: 100%;
      overflow: hidden;
      border-radius: 25px;
      background:
        radial-gradient(circle at 85% 15%, var(--yellow) 0 45px, transparent 46px),
        linear-gradient(160deg, var(--aqua), var(--cream) 48%, var(--coral) 49%, var(--orange));
    }
    .phone-screen::after {
      content: "swipe →";
      position: absolute;
      right: 12px;
      bottom: 12px;
      padding: .4rem .55rem;
      border: 2px solid var(--navy);
      border-radius: 999px;
      color: var(--navy);
      background: var(--yellow);
      font-size: .58rem;
      font-weight: 900;
      text-transform: uppercase;
      animation: swipeHint 1.5s ease-in-out infinite;
    }
    .digital-page {
      position: absolute;
      top: 19%;
      right: 12%;
      bottom: 15%;
      left: 12%;
      padding: 1rem;
      border: 2px solid var(--navy);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 5px 5px 0 var(--navy);
    }
    .digital-page b {
      display: block;
      margin-top: 1rem;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.45rem;
      line-height: .88;
      text-transform: uppercase;
    }
    .digital-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .4rem;
      margin-top: .9rem;
    }
    .digital-grid i {
      display: block;
      aspect-ratio: 1;
      border: 1.5px solid var(--navy);
      background: var(--aqua);
    }
    .digital-grid i:nth-child(2) { background: var(--coral); }
    .digital-grid i:nth-child(3) { background: var(--purple); }
    .digital-grid i:nth-child(4) { background: var(--yellow); }
    .feature-list {
      display: grid;
      gap: .8rem;
      margin: 2rem 0 0;
      padding: 0;
      list-style: none;
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
      padding: 1rem;
      border: 1.5px solid var(--line);
      border-radius: 15px;
      background: var(--cream);
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .feature-list li:hover {
      border-color: var(--navy);
      box-shadow: 4px 4px 0 var(--navy);
      transform: translate(-2px, -2px) rotate(-.4deg);
    }
    .feature-icon {
      display: grid;
      flex: 0 0 34px;
      height: 34px;
      place-items: center;
      border: 2px solid var(--navy);
      border-radius: 10px;
      background: var(--yellow);
      font-size: 1rem;
      font-weight: 900;
    }
    .feature-list b {
      display: block;
      margin-bottom: .25rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.03rem;
      letter-spacing: -.02em;
    }
    .feature-list span {
      color: rgba(17,21,34,.66);
      font-size: .83rem;
      line-height: 1.6;
    }
    .service-label {
      display: inline-block;
      margin-bottom: .8rem;
      color: var(--orange);
      font-size: .76rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .service-heading {
      margin: 0;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.8rem);
      font-weight: 800;
      letter-spacing: -.015em;
      line-height: 1;
    }
    .service-copy {
      margin: 1.2rem 0 0;
      color: rgba(17,21,34,.68);
      line-height: 1.75;
    }

    .why {
      position: relative;
      padding: var(--section-pad) 0;
      overflow: hidden;
      background: var(--aqua);
      border-top: 3px solid var(--navy);
      border-bottom: 3px solid var(--navy);
    }
    .why .scene-ornament { --orn-opacity: .82; }
    .why .scene-ornament:nth-child(1) { top: 105px !important; left: 73% !important; }
    .why .scene-ornament:nth-child(2) { top: 150px !important; left: 90% !important; }
    .why .scene-ornament:nth-child(3) { top: 250px !important; left: 79% !important; }
    .why .scene-ornament:nth-child(4) { top: 315px !important; left: 93% !important; }
    .why .scene-ornament:nth-child(5) { top: 395px !important; left: 71% !important; }
    .why .scene-ornament:nth-child(6) { top: 475px !important; left: 86% !important; }
    .why .scene-ornament:nth-child(7) { top: 560px !important; left: 95% !important; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    .reason-card {
      position: relative;
      min-height: 285px;
      padding: 1.35rem;
      overflow: hidden;
      border: 2px solid var(--navy);
      border-radius: 20px;
      background: var(--white);
      box-shadow: 6px 6px 0 var(--navy);
      transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s ease;
    }
    .reason-card:hover {
      z-index: 2;
      background: var(--yellow);
      transform: translateY(-12px) rotate(-2deg);
    }
    .reason-card:nth-child(even):hover { transform: translateY(-12px) rotate(2deg); }
    .reason-number {
      color: var(--orange);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: .75rem;
      font-weight: 900;
      letter-spacing: .1em;
    }
    .reason-card h3 {
      margin: 3rem 0 .8rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      letter-spacing: -.005em;
      line-height: 1.08;
    }
    .reason-card p {
      margin: 0;
      color: rgba(17,21,34,.67);
      font-size: .84rem;
      line-height: 1.7;
    }
    .reason-emoji {
      position: absolute;
      top: 14px;
      right: 15px;
      display: grid;
      width: 53px;
      height: 53px;
      place-items: center;
      border: 2px solid var(--navy);
      border-radius: 50%;
      background: var(--cream);
      font-size: 1.35rem;
      transition: transform .35s ease;
    }
    .reason-card:hover .reason-emoji { transform: rotate(15deg) scale(1.12); }

    .process {
      padding: var(--section-pad) 0;
      color: white;
      background:
        radial-gradient(circle at 10% 20%, rgba(118,87,255,.45), transparent 28%),
        var(--navy);
      overflow: hidden;
    }
    .process .section-copy { color: rgba(255,255,255,.7); }
    .process .scene-ornament { --orn-opacity: .72; }
    .process .scene-ornament:nth-child(1) { top: 120px !important; left: 74% !important; }
    .process .scene-ornament:nth-child(2) { top: 165px !important; left: 91% !important; }
    .process .scene-ornament:nth-child(3) { top: 270px !important; left: 80% !important; }
    .process .scene-ornament:nth-child(4) { top: 345px !important; left: 94% !important; }
    .process .scene-ornament:nth-child(5) { top: 430px !important; left: 72% !important; }
    .process .scene-ornament:nth-child(6) { top: 510px !important; left: 87% !important; }
    .process .scene-ornament:nth-child(7) { top: 590px !important; left: 96% !important; }
    .process-track {
      display: flex;
      gap: 1.1rem;
      margin-top: 3rem;
      padding: 0 0 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: var(--yellow) rgba(255,255,255,.15);
    }
    .process-card {
      position: relative;
      flex: 0 0 min(330px, 82vw);
      min-height: 360px;
      padding: 1.5rem;
      border: 2px solid white;
      border-radius: 22px;
      color: var(--navy);
      background: var(--cream);
      box-shadow: 8px 8px 0 var(--orange);
      scroll-snap-align: start;
      transition: transform .3s ease, background .3s ease;
    }
    .process-card:hover {
      background: var(--yellow);
      transform: translateY(-8px);
    }
    .process-card:nth-child(2) { box-shadow: 8px 8px 0 var(--aqua); }
    .process-card:nth-child(3) { box-shadow: 8px 8px 0 var(--coral); }
    .process-card:nth-child(4) { box-shadow: 8px 8px 0 var(--purple); }
    .process-card:nth-child(5) { box-shadow: 8px 8px 0 var(--yellow); }
    .process-step {
      display: grid;
      width: 52px;
      height: 52px;
      place-items: center;
      border: 2px solid var(--navy);
      border-radius: 15px;
      color: white;
      background: var(--orange);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      transform: rotate(-5deg);
    }
    .process-card h3 {
      margin: 4.7rem 0 .8rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -.008em;
      line-height: 1.04;
    }
    .process-card p {
      color: rgba(17,21,34,.66);
      font-size: .88rem;
      line-height: 1.7;
    }
    .process-tag {
      position: absolute;
      right: 1.2rem;
      bottom: 1.2rem;
      padding: .4rem .65rem;
      border: 1.5px solid var(--navy);
      border-radius: 999px;
      font-size: .63rem;
      font-weight: 900;
      text-transform: uppercase;
    }
    .drag-hint {
      display: flex;
      align-items: center;
      gap: .65rem;
      margin-top: 1rem;
      color: rgba(255,255,255,.65);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    .drag-hint::before {
      content: "↔";
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border: 1px solid rgba(255,255,255,.4);
      border-radius: 50%;
      animation: swipeHint 1.4s ease-in-out infinite;
    }

    .portfolio {
      position: relative;
      padding: var(--section-pad) 0;
      overflow: hidden;
      background: var(--cream);
    }
    .portfolio::after {
      content: "MATA";
      position: absolute;
      right: -2vw;
      bottom: -5vw;
      z-index: 0;
      color: rgba(23,36,60,.035);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 28vw;
      font-weight: 900;
      line-height: .7;
      pointer-events: none;
    }
    .portfolio .section-title,
    .portfolio .section-copy,
    .portfolio .filter-bar {
      max-width: 66%;
    }
    .portfolio .scene-ornaments {
      z-index: 2;
      overflow: hidden;
    }
    .portfolio .scene-ornament {
      --orn-opacity: .84;
    }
    .portfolio .scene-ornament:nth-child(1) { top: 105px !important; left: 75% !important; }
    .portfolio .scene-ornament:nth-child(2) { top: 170px !important; left: 90% !important; }
    .portfolio .scene-ornament:nth-child(3) { top: 275px !important; left: 72% !important; }
    .portfolio .scene-ornament:nth-child(4) { top: 345px !important; left: 86% !important; }
    .portfolio .scene-ornament:nth-child(5) { top: 465px !important; left: 77% !important; }
    .portfolio .scene-ornament:nth-child(6) { top: 535px !important; left: 92% !important; }
    .portfolio .scene-ornament:nth-child(7) { top: 620px !important; left: 82% !important; }
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      margin-top: 2rem;
    }
    .filter-btn {
      padding: .65rem .9rem;
      border: 1.5px solid var(--navy);
      border-radius: 999px;
      color: var(--navy);
      background: transparent;
      font-size: .7rem;
      font-weight: 900;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }
    .filter-btn.active,
    .filter-btn:hover {
      color: white;
      background: var(--navy);
      transform: translateY(-2px);
    }
    .cover-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(1rem, 3vw, 2.2rem);
      margin-top: 3rem;
      align-items: start;
    }
    .cover-card {
      transition: opacity .35s ease, transform .5s cubic-bezier(.16,1,.3,1);
    }
    .cover-card:nth-child(2),
    .cover-card:nth-child(4) { margin-top: 4rem; }
    .cover-card.hidden {
      display: none;
      opacity: 0;
      transform: scale(.8) rotate(8deg);
    }
    .cover-art {
      position: relative;
      aspect-ratio: .72;
      padding: 1.2rem;
      overflow: hidden;
      border: 2px solid var(--navy);
      border-radius: 8px 19px 19px 8px;
      box-shadow: 9px 10px 0 var(--navy);
      transform-style: preserve-3d;
      transition: transform .18s ease-out, box-shadow .3s ease;
    }
    .cover-card:hover .cover-art { box-shadow: 14px 16px 0 var(--navy); }
    .art-one { color: white; background: var(--purple); }
    .art-two { background: var(--yellow); }
    .art-three { color: white; background: var(--coral); }
    .art-four { color: white; background: var(--navy); }
    .cover-art::before {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      border: 24px solid currentColor;
      border-radius: 50%;
      opacity: .18;
    }
    .art-one::before { top: -40px; right: -40px; }
    .art-two::before { right: -40px; bottom: -40px; color: var(--orange); }
    .art-three::before { top: 30%; left: -60px; }
    .art-four::before { right: -50px; bottom: 20%; color: var(--aqua); }
    .cover-year {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      font-size: .6rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .cover-word {
      position: absolute;
      right: 1.1rem;
      bottom: 1.2rem;
      left: 1.1rem;
      z-index: 2;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(2.25rem, 4vw, 4.2rem);
      font-weight: 900;
      letter-spacing: -.025em;
      line-height: .82;
      text-transform: uppercase;
    }
    .cover-shape {
      position: absolute;
      top: 25%;
      left: 15%;
      width: 70%;
      aspect-ratio: 1;
      border: 3px solid currentColor;
      transform: rotate(18deg);
    }
    .cover-shape::after {
      content: "";
      position: absolute;
      inset: 17%;
      border: 3px solid currentColor;
      border-radius: 50%;
    }
    .cover-meta {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 1.4rem;
      font-size: .72rem;
      font-weight: 800;
      text-transform: uppercase;
    }
    .cover-meta span:last-child { color: rgba(17,21,34,.52); }
    .portfolio-note {
      max-width: 680px;
      margin: 4rem auto 0;
      padding: 1.15rem 1.4rem;
      border: 1.5px dashed var(--navy);
      border-radius: 16px;
      color: rgba(17,21,34,.62);
      background: rgba(255,255,255,.5);
      font-size: .78rem;
      line-height: 1.65;
      text-align: center;
    }

    .quiz {
      padding: var(--section-pad) 0;
      overflow: hidden;
      background: var(--yellow);
      border-top: 3px solid var(--navy);
      border-bottom: 3px solid var(--navy);
    }
    .quiz-card {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: clamp(2rem, 7vw, 7rem);
      align-items: center;
      padding: clamp(1.5rem, 4vw, 3rem);
      border: 3px solid var(--navy);
      border-radius: 28px;
      background: var(--white);
      box-shadow: 12px 12px 0 var(--navy);
    }
    .quiz-blob {
      position: relative;
      display: grid;
      width: min(320px, 75vw);
      aspect-ratio: 1;
      margin: auto;
      place-items: center;
      border: 3px solid var(--navy);
      border-radius: 42% 58% 65% 35% / 48% 34% 66% 52%;
      background: var(--aqua);
      animation: morph 7s ease-in-out infinite;
    }
    .quiz-face {
      position: relative;
      width: 62%;
      height: 50%;
    }
    .quiz-eye {
      position: absolute;
      top: 0;
      width: 34%;
      aspect-ratio: .8;
      border: 3px solid var(--navy);
      border-radius: 50%;
      background: white;
    }
    .quiz-eye:first-child { left: 7%; }
    .quiz-eye:nth-child(2) { right: 7%; }
    .quiz-pupil {
      position: absolute;
      top: 40%;
      left: 40%;
      width: 32%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--navy);
      transform: translate(-50%, -50%);
      transition: transform .08s linear;
    }
    .quiz-mouth {
      position: absolute;
      right: 24%;
      bottom: 0;
      left: 24%;
      height: 35%;
      border-bottom: 7px solid var(--navy);
      border-radius: 50%;
    }
    .quiz-content h2 {
      margin: 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -.015em;
      line-height: 1;
    }
    .quiz-content > p {
      margin: 1rem 0 0;
      color: rgba(17,21,34,.66);
      line-height: 1.7;
    }
    .quiz-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .7rem;
      margin-top: 1.6rem;
    }
    .quiz-option {
      padding: .95rem 1rem;
      border: 2px solid var(--navy);
      border-radius: 14px;
      color: var(--navy);
      background: var(--cream);
      font-size: .78rem;
      font-weight: 800;
      text-align: left;
      transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .quiz-option:hover,
    .quiz-option.selected {
      color: white;
      background: var(--purple);
      box-shadow: 4px 4px 0 var(--navy);
      transform: translate(-2px, -2px);
    }
    .quiz-result {
      display: none;
      margin-top: 1.4rem;
      padding: 1rem;
      border: 2px solid var(--navy);
      border-radius: 14px;
      background: var(--aqua);
      font-size: .82rem;
      font-weight: 700;
      line-height: 1.65;
    }
    .quiz-result.show { display: block; animation: resultPop .5s cubic-bezier(.16,1,.3,1); }

    .faq {
      padding: var(--section-pad) 0;
      background: var(--white);
    }
    .faq .scene-ornament { --orn-opacity: .52; }
    .faq .scene-ornament:nth-child(1) { top: 120px !important; left: 94% !important; }
    .faq .scene-ornament:nth-child(2) { top: 215px !important; left: 97% !important; }
    .faq .scene-ornament:nth-child(3) { top: 325px !important; left: 93% !important; }
    .faq .scene-ornament:nth-child(4) { top: 420px !important; left: 97% !important; }
    .faq .scene-ornament:nth-child(5) { top: 525px !important; left: 94% !important; }
    .faq .scene-ornament:nth-child(6) { top: 635px !important; left: 97% !important; }
    .faq .scene-ornament:nth-child(7) { top: 735px !important; left: 93% !important; }
    .faq-grid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: clamp(2rem, 7vw, 7rem);
      align-items: start;
    }
    .faq-sticky { position: sticky; top: 120px; }
    .faq-list { border-top: 2px solid var(--navy); }
    .faq-item { border-bottom: 2px solid var(--navy); }
    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.4rem .2rem;
      cursor: pointer;
      list-style: none;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(1.15rem, 2.3vw, 1.65rem);
      font-weight: 800;
      letter-spacing: -.006em;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-plus {
      display: grid;
      flex: 0 0 36px;
      height: 36px;
      place-items: center;
      border: 2px solid var(--navy);
      border-radius: 50%;
      background: var(--yellow);
      transition: transform .3s ease, background .3s ease;
    }
    .faq-item[open] .faq-plus {
      color: white;
      background: var(--orange);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-width: 700px;
      padding: 0 3.2rem 1.5rem .2rem;
      color: rgba(17,21,34,.65);
      font-size: .91rem;
      line-height: 1.8;
      animation: faqOpen .35s ease;
    }

    .closing {
      position: relative;
      padding: var(--section-pad) 0 5rem;
      overflow: hidden;
      color: var(--white);
      background: var(--orange);
      border-top: 3px solid var(--navy);
    }
    .closing::before,
    .closing::after {
      content: "";
      position: absolute;
      border: 3px solid var(--navy);
      border-radius: 50%;
      opacity: .18;
    }
    .closing::before { top: -150px; right: -100px; width: 420px; height: 420px; }
    .closing::after { bottom: -190px; left: -120px; width: 370px; height: 370px; }
    .closing-inner {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }
    .closing-title {
      margin: 0;
      color: var(--navy);
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: clamp(3.5rem, 9vw, 8rem);
      font-weight: 900;
      letter-spacing: -.025em;
      line-height: .88;
    }
    .closing-title span {
      display: inline-block;
      color: var(--white);
      transform: rotate(-3deg);
    }
    .closing-copy {
      max-width: 650px;
      margin: 1.7rem auto;
      color: rgba(23,36,60,.8);
      font-weight: 600;
      line-height: 1.75;
    }
    .closing-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .8rem;
    }
    .closing .btn-ghost { background: var(--yellow); }
    .social-proof {
      display: flex;
      justify-content: center;
      gap: .8rem;
      margin-top: 2rem;
      color: var(--navy);
      font-size: .75rem;
      font-weight: 800;
    }
    .social-proof span {
      padding: .55rem .8rem;
      border: 1.5px solid var(--navy);
      border-radius: 999px;
      background: rgba(255,255,255,.2);
    }
    .footer {
      position: relative;
      z-index: 3;
      padding-top: 4rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1.5px solid rgba(23,36,60,.4);
      color: var(--navy);
      text-align: left;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .footer-brand img { width: 72px; }
    .footer-brand strong {
      display: block;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      line-height: 1;
    }
    .footer-brand small {
      display: block;
      margin-top: .5rem;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .footer h3 {
      margin: 0 0 .8rem;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: .92rem;
      font-weight: 900;
      text-transform: uppercase;
    }
    .footer a,
    .footer p {
      display: block;
      margin: 0 0 .5rem;
      color: rgba(23,36,60,.73);
      font-size: .77rem;
      font-weight: 700;
      line-height: 1.6;
    }
    .footer a:hover { color: var(--white); }
    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(23,36,60,.25);
      color: rgba(23,36,60,.68);
      font-size: .65rem;
      font-weight: 700;
      text-align: left;
    }

    .back-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 950;
      display: grid;
      width: 50px;
      height: 50px;
      place-items: center;
      border: 2px solid var(--navy);
      border-radius: 50%;
      color: var(--navy);
      background: var(--yellow);
      box-shadow: 4px 4px 0 var(--navy);
      font-size: 1.2rem;
      font-weight: 900;
      opacity: 0;
      pointer-events: none;
      transform: translateY(15px);
      transition: opacity .25s ease, transform .25s ease;
    }
    .back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .back-top:hover { transform: translateY(-4px) rotate(-8deg); }

    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9997;
      display: grid;
      width: 32px;
      height: 32px;
      place-items: center;
      border: 1.5px solid var(--navy);
      border-radius: 50%;
      background: rgba(243,232,59,.65);
      pointer-events: none;
      transform: translate(var(--cursor-x), var(--cursor-y)) translate(-50%, -50%);
      transition: width .2s ease, height .2s ease, background .2s ease;
      backdrop-filter: blur(3px);
    }
    .cursor.active { width: 56px; height: 56px; background: rgba(83,223,202,.7); }
    .cursor::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--navy);
    }

    main > section {
      isolation: isolate;
      perspective: 1200px;
    }
    main > section > .container {
      position: relative;
      z-index: 3;
    }
    .experience-frame {
      position: fixed;
      inset: 88px 18px 18px;
      z-index: 90;
      pointer-events: none;
    }
    .frame-corner {
      position: absolute;
      width: 34px;
      height: 34px;
      border-color: var(--orange);
      border-style: solid;
      filter: drop-shadow(2px 2px 0 var(--navy));
      transition: width .3s ease, height .3s ease, transform .3s ease;
    }
    .scrolling-up .frame-corner {
      width: 44px;
      height: 44px;
      transform: scale(.88);
    }
    .frame-tl { top: 0; left: 0; border-width: 3px 0 0 3px; border-radius: 11px 0 0; }
    .frame-tr { top: 0; right: 0; border-width: 3px 3px 0 0; border-radius: 0 11px 0 0; }
    .frame-bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; border-radius: 0 0 0 11px; }
    .frame-br { right: 0; bottom: 0; border-width: 0 3px 3px 0; border-radius: 0 0 11px; }
    .frame-label {
      position: absolute;
      right: 48px;
      bottom: -1px;
      padding: .38rem .62rem;
      border: 2px solid var(--navy);
      border-radius: 9px;
      color: var(--navy);
      background: var(--yellow);
      box-shadow: 3px 3px 0 var(--navy);
      font-size: .56rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .scene-ornaments {
      --orn-ink: var(--navy);
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }
    .scene-ornaments.on-dark { --orn-ink: var(--white); }
    .scene-ornament {
      --scroll-lift: 0px;
      --scroll-turn: 0deg;
      position: absolute;
      top: var(--y);
      left: var(--x);
      opacity: 0;
      filter: blur(8px);
      transform:
        perspective(900px)
        translate3d(0, calc(70px + var(--scroll-lift)), -280px)
        scale(.35)
        rotate(calc(var(--r) + var(--scroll-turn)));
      transition:
        opacity .52s ease var(--delay),
        filter .6s ease var(--delay),
        transform .82s cubic-bezier(.16,1,.3,1) var(--delay);
      will-change: transform, opacity, filter;
    }
    .scene-ornaments.scene-active .scene-ornament {
      opacity: var(--orn-opacity, .74);
      filter: blur(0);
      transform:
        perspective(900px)
        translate3d(0, var(--scroll-lift), 0)
        scale(1)
        rotate(calc(var(--r) + var(--scroll-turn)));
    }
    .scene-ornaments.retreat-up .scene-ornament {
      opacity: 0;
      filter: blur(9px);
      transform:
        perspective(900px)
        translate3d(0, calc(55px + var(--scroll-lift)), -360px)
        scale(.18)
        rotate(calc(var(--r) + 22deg));
      transition-duration: .58s;
    }
    .scene-ornaments.retreat-down .scene-ornament {
      opacity: 0;
      filter: blur(7px);
      transform:
        perspective(900px)
        translate3d(0, calc(-45px + var(--scroll-lift)), -300px)
        scale(.25)
        rotate(calc(var(--r) - 18deg));
      transition-duration: .5s;
    }
    .scene-shape {
      position: relative;
      display: block;
      color: var(--orn-ink);
      filter: drop-shadow(4px 4px 0 rgba(23,36,60,.18));
      animation: ornamentFloat var(--float-time, 4.8s) ease-in-out infinite alternate;
      animation-delay: var(--float-delay, 0s);
    }
    .scene-camera {
      width: clamp(52px, 5.4vw, 84px);
      aspect-ratio: 1.34;
      border: 3px solid var(--orn-ink);
      border-radius: 13px;
      background: var(--orn-bg, var(--yellow));
    }
    .scene-camera::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 44%;
      aspect-ratio: 1;
      border: 3px solid var(--orn-ink);
      border-radius: 50%;
      background: var(--white);
      box-shadow: inset 0 0 0 6px var(--purple);
      transform: translate(-50%, -50%);
    }
    .scene-camera::after {
      content: "";
      position: absolute;
      top: -12px;
      left: 11px;
      width: 26px;
      height: 14px;
      border: 3px solid var(--orn-ink);
      border-bottom: 0;
      border-radius: 7px 7px 0 0;
      background: var(--orn-bg, var(--yellow));
    }
    .scene-polaroid {
      width: clamp(48px, 4.6vw, 72px);
      aspect-ratio: .82;
      border: 3px solid var(--orn-ink);
      border-radius: 5px;
      background: var(--white);
    }
    .scene-polaroid::before {
      content: "";
      position: absolute;
      top: 8%;
      right: 9%;
      bottom: 27%;
      left: 9%;
      border: 2px solid var(--orn-ink);
      background:
        radial-gradient(circle at 70% 30%, var(--yellow) 0 18%, transparent 19%),
        linear-gradient(145deg, var(--aqua), var(--purple));
    }
    .scene-polaroid::after {
      content: "MATA!";
      position: absolute;
      right: 0;
      bottom: 6%;
      left: 0;
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: .52rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-align: center;
    }
    .scene-film {
      width: clamp(70px, 7.4vw, 118px);
      height: clamp(34px, 3.5vw, 52px);
      border: 3px solid var(--orn-ink);
      border-radius: 7px;
      background:
        repeating-linear-gradient(90deg, var(--orn-ink) 0 6px, transparent 6px 13px) top / auto 7px no-repeat,
        repeating-linear-gradient(90deg, var(--orn-ink) 0 6px, transparent 6px 13px) bottom / auto 7px no-repeat,
        var(--orn-bg, var(--coral));
    }
    .scene-film::after {
      content: "";
      position: absolute;
      inset: 10px 12px;
      border: 2px solid var(--orn-ink);
      background: rgba(255,255,255,.28);
    }
    .scene-star {
      width: clamp(43px, 4vw, 66px);
      aspect-ratio: 1;
      background: var(--orn-bg, var(--orange));
      clip-path: polygon(50% 0,61% 27%,85% 15%,73% 39%,100% 50%,73% 61%,85% 86%,61% 73%,50% 100%,39% 73%,15% 86%,27% 61%,0 50%,27% 39%,15% 15%,39% 27%);
    }
    .scene-star::after {
      content: "✦";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 1.1rem;
    }
    .scene-ornament:nth-child(3n) .scene-shape { --float-time: 5.8s; }
    .scene-ornament:nth-child(even) .scene-shape { animation-direction: alternate-reverse; }

    .reveal {
      opacity: 0;
      filter: blur(7px);
      transform-style: preserve-3d;
      will-change: transform, opacity;
    }
    .reveal.from-below {
      transform: perspective(1100px) translate3d(0, 78px, -240px) scale(.72) rotateX(-9deg);
      transform-origin: 50% 100%;
    }
    .reveal.from-above {
      transform: perspective(1100px) translate3d(0, -56px, -220px) scale(.76) rotateX(8deg);
      transform-origin: 50% 0;
    }
    .reveal.exit-up {
      opacity: 0;
      filter: blur(9px);
      transform: perspective(1100px) translate3d(0, 46px, -340px) scale(.55) rotateX(-10deg);
      transition:
        opacity .46s ease,
        filter .55s ease,
        transform .6s cubic-bezier(.7,0,.84,0);
    }
    .reveal.exit-down {
      opacity: 0;
      filter: blur(8px);
      transform: perspective(1100px) translate3d(0, -45px, -300px) scale(.6) rotateX(9deg);
      transition:
        opacity .42s ease,
        filter .5s ease,
        transform .56s cubic-bezier(.7,0,.84,0);
    }
    .reveal.is-visible {
      opacity: 1;
      filter: blur(0);
      transform: perspective(1100px) translate3d(0, 0, 0) scale(1) rotateX(0);
      transition:
        opacity .72s ease var(--delay, 0s),
        filter .68s ease var(--delay, 0s),
        transform .85s cubic-bezier(.16,1,.3,1) var(--delay, 0s);
    }
    .stagger > * { --delay: calc(var(--i, 0) * .09s); }
    [data-parallax] { will-change: transform; }

    @keyframes heroLine {
      to { opacity: 1; transform: translateY(0) rotate(0); }
    }
    @keyframes heroKicker {
      0%, 100% { transform: rotate(-1deg) translateY(0); }
      50% { transform: rotate(1deg) translateY(-5px); }
    }
    @keyframes preloaderBounce {
      to { transform: scale(.9) rotate(-5deg); }
    }
    @keyframes blinkDot {
      50% { opacity: .25; }
    }
    @keyframes spinSlow {
      to { transform: rotate(360deg); }
    }
    @keyframes morph {
      0%,100% { border-radius: 42% 58% 65% 35% / 48% 34% 66% 52%; }
      50% { border-radius: 61% 39% 43% 57% / 35% 60% 40% 65%; }
    }
    @keyframes doodlePop {
      0%,100% { transform: scale(1) rotate(0); }
      50% { transform: scale(1.17) rotate(10deg); }
    }
    @keyframes marquee {
      to { transform: translateX(-50%); }
    }
    @keyframes swipeHint {
      0%,100% { transform: translateX(0); }
      50% { transform: translateX(7px); }
    }
    @keyframes resultPop {
      from { opacity: 0; transform: scale(.9) rotate(-2deg); }
      to { opacity: 1; transform: scale(1) rotate(0); }
    }
    @keyframes faqOpen {
      from { opacity: 0; transform: translateY(-8px); }
    }
    @keyframes ornamentFloat {
      0% { transform: translate3d(-4px, -7px, 0) rotate(-3deg); }
      100% { transform: translate3d(5px, 8px, 0) rotate(4deg); }
    }

    @media (max-width: 1090px) {
      .nav-links { display: none; }
      .menu-button { display: block; }
      .nav-cta { display: none; }
      .nav-links.open {
        position: fixed;
        top: 94px;
        right: 14px;
        left: 14px;
        display: grid;
        gap: .35rem;
        padding: 1rem;
        border: 2px solid var(--navy);
        border-radius: 20px;
        background: var(--white);
        box-shadow: 8px 8px 0 var(--navy);
        animation: resultPop .35s ease;
      }
      .nav-links.open a { padding: 1rem; font-size: 1rem; }
      .hero-grid { grid-template-columns: 1fr .8fr; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .cover-grid { grid-template-columns: repeat(2, 1fr); }
      .cover-card:nth-child(4) { margin-top: 0; }
      .portfolio .section-title,
      .portfolio .section-copy,
      .portfolio .filter-bar {
        max-width: 100%;
      }
      .portfolio .scene-ornaments { display: none; }
      .why .scene-ornaments,
      .process .scene-ornaments,
      .faq .scene-ornaments {
        display: none;
      }
    }

    @media (max-width: 820px) {
      :root { --section-pad: 5.5rem; }
      .cursor { display: none; }
      .experience-frame { inset: 76px 10px 10px; }
      .frame-label { display: none; }
      .scene-ornament { --orn-opacity: .62; }
      .scene-ornament:nth-child(7) { display: none; }
      .hero { min-height: auto; padding-top: 125px; }
      .hero-grid,
      .intro-grid,
      .service-panel,
      .quiz-card,
      .faq-grid { grid-template-columns: 1fr; }
      .hero-art { min-height: 550px; margin-top: 1.5rem; }
      .hero-title { font-size: clamp(4rem, 15vw, 7rem); }
      .intro-grid { align-items: start; }
      .manifesto-note { margin-top: 1rem; }
      .service-panels { min-height: 1040px; }
      .service-panel { align-content: start; }
      .service-visual { order: 2; min-height: 500px; }
      .service-content { order: 1; }
      .quiz-card { text-align: center; }
      .quiz-options { text-align: left; }
      .faq-sticky { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > :first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 560px) {
      .container { --bs-gutter-x: 2rem; }
      .frame-corner { width: 23px; height: 23px; }
      .scrolling-up .frame-corner { width: 30px; height: 30px; }
      .scene-ornament { --orn-opacity: .52; }
      .scene-ornament:nth-child(6) { display: none; }
      .scene-camera { width: 47px; }
      .scene-film { width: 65px; height: 32px; }
      .scene-polaroid { width: 43px; }
      .site-nav { top: 9px; }
      .nav-shell { width: calc(100% - 18px); min-height: 59px; padding-left: .7rem; border-radius: 16px; }
      .brand img { width: 41px; height: 41px; }
      .brand strong { font-size: .88rem; }
      .brand small { font-size: .49rem; }
      .hero { padding: 108px 0 58px; }
      .hero-copy { font-size: .93rem; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .btn-main, .btn-ghost { width: 100%; }
      .hero-note { align-items: flex-start; }
      .hero-art { min-height: 455px; }
      .book-scene { width: min(290px, 68vw); }
      .book-cover { padding: 1.45rem; }
      .cover-main { font-size: 3.7rem; }
      .sticker-bali { right: -13%; width: 78px; height: 78px; font-size: .62rem; }
      .sticker-real { left: -16%; width: 92px; min-height: 62px; font-size: .62rem; }
      .sticker-star { left: -18%; width: 60px; height: 60px; }
      .orbit-text { display: none; }
      .section-title { font-size: clamp(2.65rem, 14vw, 4.2rem); }
      .section-copy { font-size: .93rem; }
      .service-switch { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
      .service-switch button { padding-inline: .5rem; }
      .service-panels { min-height: 1030px; }
      .service-visual { min-height: 390px; }
      .phone { width: 220px; }
      .why-grid { grid-template-columns: 1fr; }
      .reason-card { min-height: 235px; }
      .reason-card h3 { margin-top: 2.5rem; }
      .cover-grid { gap: 1.2rem; }
      .cover-card:nth-child(2) { margin-top: 2rem; }
      .cover-art { padding: .85rem; box-shadow: 6px 7px 0 var(--navy); }
      .cover-word { right: .7rem; bottom: .8rem; left: .7rem; font-size: clamp(1.6rem, 9vw, 2.5rem); }
      .cover-year { font-size: .48rem; }
      .cover-meta { display: grid; gap: .25rem; font-size: .57rem; }
      .quiz-card { padding: 1.25rem; box-shadow: 7px 7px 0 var(--navy); }
      .quiz-options { grid-template-columns: 1fr; }
      .faq-answer { padding-right: .25rem; }
      .social-proof { flex-wrap: wrap; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: auto; }
      .copyright { display: grid; }
      .back-top { right: 12px; bottom: 12px; width: 44px; height: 44px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
      .scene-ornament {
        opacity: .5 !important;
        filter: none !important;
        transform: none !important;
      }
      .experience-frame { display: none; }
    }
