    /* Fonts are loaded via wp_enqueue_style('expert-ads-fonts') in functions.php
       with preconnect, instead of a render-blocking @import here. */

    /* ===================== RESET & ROOT ===================== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg-0: #f6f7fb;
      --bg-1: #ffffff;
      --bg-2: #ecedf2;
      --ink: #0a0c14;
      --ink-dim: #525a6e;
      --ink-mute: #8a91a3;
      --accent: #00966b;
      --accent-2: #0a73d4;
      --accent-3: #7c3aed;
      --hot: #e63946;
      --glass: rgba(10, 15, 30, 0.04);
      --glass-2: rgba(10, 15, 30, 0.06);
      --line: rgba(10, 15, 30, 0.09);
      --line-2: rgba(10, 15, 30, 0.16);
      --grad-1: linear-gradient(135deg, #00966b 0%, #0a73d4 50%, #7c3aed 100%);
      --grad-2: linear-gradient(135deg, #e63946, #7c3aed, #0a73d4);
      --font-display: 'Syne', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'Space Grotesk', sans-serif;
      --shadow-card: 0 24px 48px -20px rgba(15, 23, 42, 0.18), 0 4px 12px -4px rgba(15, 23, 42, 0.08);
      --shadow-soft: 0 14px 40px -16px rgba(15, 23, 42, 0.18);
    }

    html {
      scroll-behavior: auto;
    }

    body {
      background: var(--bg-0);
      color: var(--ink);
      font-family: var(--font-body);
      font-weight: 400;
      letter-spacing: 0.01em;
      overflow-x: hidden;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

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

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: none;
      cursor: pointer;
    }

    ::selection {
      background: var(--accent);
      color: #fff;
    }

    /* ===================== GLOBAL NOISE & GRID ===================== */
    .global-grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.04;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    }

    .global-grid {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background-image:
        linear-gradient(rgba(10, 15, 30, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 15, 30, 0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    }

    /* ===================== GLOBAL 3D BACKDROP ===================== */
    .bg3d {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ===================== CUSTOM CURSOR ===================== */
    .cursor,
    .cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
    }

    .cursor {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(10, 15, 30, 0.4);
      border-radius: 50%;
      transition: transform 0.25s ease, width 0.25s, height 0.25s, background 0.25s, border-color 0.25s;
      mix-blend-mode: difference;
    }

    .cursor-dot {
      width: 5px;
      height: 5px;
      background: var(--accent);
      border-radius: 50%;
    }

    .cursor.is-active {
      width: 70px;
      height: 70px;
      background: rgba(0, 150, 107, 0.18);
      border-color: var(--accent);
    }

    @media (max-width: 900px) {

      .cursor,
      .cursor-dot {
        display: none;
      }
    }

    /* ===================== LOADER ===================== */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 10001;
      background: var(--bg-0);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 24px;
    }

    .loader__bar {
      width: 280px;
      height: 1px;
      background: rgba(10, 15, 30, 0.12);
      overflow: hidden;
    }

    .loader__bar span {
      display: block;
      height: 100%;
      width: 0;
      background: var(--grad-1);
    }

    .loader__label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--ink-dim);
      text-transform: uppercase;
    }

    .loader__counter {
      font-family: var(--font-display);
      font-size: 88px;
      font-weight: 600;
      letter-spacing: -0.04em;
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .loader.hide {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease;
    }

    /* ===================== TOP MARQUEE STRIP ===================== */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 32px;
      background: #07080d;
      color: rgba(255, 255, 255, 0.82);
      z-index: 101;
      overflow: hidden;
      display: flex;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .topbar__track {
      display: flex;
      white-space: nowrap;
      gap: 56px;
      padding-left: 56px;
      animation: topbarScroll 42s linear infinite;
      will-change: transform;
    }

    .topbar__track span {
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }

    .topbar__star {
      color: var(--accent);
      font-size: 13px;
      transform: translateY(-0.5px);
    }

    @keyframes topbarScroll {
      to {
        transform: translateX(-50%);
      }
    }

    .topbar:hover .topbar__track {
      animation-play-state: paused;
    }

    /* ===================== NAV (Studio Status Pill) ===================== */
    .nav {
      position: fixed;
      top: 48px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1320px;
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 9px 12px 9px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
      box-shadow: none;
    }

    .nav.scrolled {
      background: rgba(255, 255, 255, 0.85);
      border-color: var(--line-2);
      box-shadow: 0 10px 32px -10px rgba(15, 23, 42, 0.16);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.02em;
      color: var(--ink);
      padding-right: 14px;
      border-right: 1px solid var(--line);
    }

    .nav__logo-mark {
      width: 26px;
      height: 26px;
      border-radius: 7px;
      background: conic-gradient(from 120deg, #00966b, #0a73d4, #7c3aed, #00966b);
      position: relative;
      overflow: hidden;
      animation: spin 12s linear infinite;
    }

    .nav__logo-mark::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 4px;
      background: var(--bg-1);
    }

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

    /* Studio status block */
    .nav__status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(0, 150, 107, 0.08);
      border: 1px solid rgba(0, 150, 107, 0.20);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-dim);
      white-space: nowrap;
    }

    .nav__status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(0, 150, 107, 0.6);
      animation: navPulse 1.8s ease-out infinite;
    }

    @keyframes navPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 150, 107, 0.55);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(0, 150, 107, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(0, 150, 107, 0);
      }
    }

    .nav__status strong {
      color: var(--accent);
      font-weight: 600;
    }

    .nav__status .sep {
      opacity: 0.4;
      margin: 0 1px;
    }

    .nav__status .city,
    .nav__status .clock {
      color: var(--ink);
      font-weight: 500;
    }

    /* Links */
    .nav__links {
      display: flex;
      gap: 4px;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.02em;
      margin-left: auto;
    }

    .nav__link {
      position: relative;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--ink-dim);
      transition: color 0.3s;
    }

    .nav__link::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 999px;
      background: rgba(10, 15, 30, 0.06);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .nav__link:hover {
      color: var(--ink);
    }

    .nav__link:hover::before {
      opacity: 1;
    }

    /* CTA */
    .nav__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--bg-1);
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.3s, color 0.3s, transform 0.3s;
    }

    .nav__cta:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
    }

    .nav__cta .arrow {
      display: inline-flex;
      transition: transform 0.3s;
    }

    .nav__cta:hover .arrow {
      transform: translateX(3px);
    }

    .nav__burger {
      display: none;
    }

    @media (max-width: 1180px) {
      .nav__status {
        display: none;
      }
    }

    @media (max-width: 1024px) {
      .nav {
        top: 44px;
        width: calc(100% - 32px);
        padding: 8px 10px 8px 16px;
      }

      .nav__links {
        display: none;
      }

      .nav__burger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px;
        cursor: pointer;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--glass);
        margin-left: auto;
      }

      .nav__burger span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: var(--ink);
        transition: 0.3s;
      }

      .nav__burger.open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
      }

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

      .nav__burger.open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
      }
    }

    @media (max-width: 480px) {
      .topbar {
        font-size: 10px;
        height: 28px;
        letter-spacing: 0.18em;
      }

      .nav {
        top: 36px;
        width: calc(100% - 20px);
        padding: 7px 8px 7px 14px;
        gap: 6px;
        border-radius: 999px;
      }

      .nav__logo {
        font-size: 15px;
        padding-right: 8px;
        gap: 7px;
      }

      .nav__logo-mark {
        width: 20px;
        height: 20px;
        border-radius: 6px;
      }

      .nav__cta {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.06em;
        gap: 6px;
      }

      .nav__burger {
        padding: 8px;
      }
    }

    @media (max-width: 380px) {
      .nav__cta-label {
        display: none;
      }

      .nav__cta {
        padding: 10px 12px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
      }

      .nav__cta .arrow {
        font-size: 14px;
      }
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(24px);
      display: block;
      padding: 140px 24px 48px;
      text-align: center;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    /* CTA shown first inside the mobile overlay (hidden on desktop, where the
       nav-bar CTA is used instead). Block stacking keeps it above the list.
       Higher specificity than `.mobile-menu a` so the CTA keeps its white text
       (the generic rule otherwise forces dark, oversized text on it). */
    .mobile-menu a.mobile-menu__cta {
      margin-bottom: 22px;
      font-family: var(--font-mono);
      font-size: 15px;
      font-weight: 600;
      color: var(--bg-1);
    }

    .mobile-menu a.mobile-menu__cta:hover {
      color: #fff;
    }

    @media (min-width: 1025px) {
      .mobile-menu__cta {
        display: none;
      }
    }

    /* On mobile the CTA lives inside the overlay, so hide the nav-bar one. */
    @media (max-width: 1024px) {
      .nav > .nav__cta {
        display: none;
      }
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 28px;
      text-align: center;
      padding: 0 24px;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: clamp(32px, 7vw, 48px);
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    @media (prefers-reduced-motion: reduce) {

      .topbar__track,
      .nav__logo-mark,
      .nav__status-dot {
        animation: none;
      }
    }

    /* ===================== HERO — FLOATING CONSTELLATION (Glass Shards · Brand Gradient) ===================== */
    .cnst {
      --c-ink: #0a1226;
      --c-ink-dim: #4a5168;
      --c-ink-mute: #828aa2;
      --c-line: rgba(10, 18, 38, 0.10);
      --c-line-2: rgba(10, 18, 38, 0.18);
      --c-teal: #00b389;
      --c-blue: #2b6cff;
      --c-violet: #7c3aed;
      --c-glass: rgba(255, 255, 255, 0.55);
      --c-glass-bd: rgba(255, 255, 255, 0.85);

      position: relative;
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
      isolation: isolate;
      color: var(--c-ink);
      background:
        radial-gradient(1200px 820px at 78% 8%, rgba(43, 108, 255, 0.12), transparent 60%),
        radial-gradient(1000px 760px at 12% 92%, rgba(0, 179, 137, 0.10), transparent 60%),
        radial-gradient(820px 700px at 55% 120%, rgba(124, 58, 237, 0.10), transparent 60%),
        linear-gradient(180deg, #fcfcfe 0%, #f3f4f9 100%);
      perspective: 1400px;
    }

    /* === ATMOSPHERE === */
    .cnst__atmos {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .cnst__grid {
      position: absolute;
      inset: -12%;
      background-image:
        linear-gradient(rgba(10, 18, 38, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 18, 38, 0.04) 1px, transparent 1px);
      background-size: 66px 66px;
      mask-image: radial-gradient(ellipse at 58% 46%, #000 0%, transparent 78%);
      animation: cnstGridDrift 100s linear infinite;
    }

    @keyframes cnstGridDrift {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(-66px, -66px, 0);
      }
    }

    .cnst__aurora {
      position: absolute;
      inset: 0;
    }

    .cnst__blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(130px);
      opacity: 0.5;
      will-change: transform;
    }

    .cnst__blob--a {
      top: -12%;
      left: -6%;
      width: 540px;
      height: 540px;
      background: radial-gradient(circle, rgba(0, 179, 137, 0.42), transparent 62%);
      animation: cnstBlobA 30s ease-in-out infinite alternate;
    }

    .cnst__blob--b {
      bottom: -16%;
      right: -8%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.34), transparent 62%);
      animation: cnstBlobB 38s ease-in-out infinite alternate;
    }

    .cnst__blob--c {
      top: 36%;
      left: 44%;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(43, 108, 255, 0.30), transparent 62%);
      animation: cnstBlobC 44s ease-in-out infinite alternate;
    }

    @keyframes cnstBlobA {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      100% {
        transform: translate3d(90px, 60px, 0) scale(1.16);
      }
    }

    @keyframes cnstBlobB {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      100% {
        transform: translate3d(-100px, -50px, 0) scale(1.2);
      }
    }

    @keyframes cnstBlobC {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      100% {
        transform: translate3d(50px, -90px, 0) scale(0.92);
      }
    }

    .cnst__grain {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.05;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      animation: cnstGrain 1.2s steps(4) infinite;
    }

    @keyframes cnstGrain {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-2px, 1px);
      }

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

      75% {
        transform: translate(-1px, 2px);
      }
    }

    /* === FLOATING 3D SHARDS CANVAS (full-section) === */
    .cnst__canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
      z-index: 2;
    }

    /* === MOUSE-FOLLOW LIGHT === */
    .cnst__glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 620px;
      height: 620px;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle at center, rgba(43, 108, 255, 0.20), rgba(0, 179, 137, 0.08) 42%, transparent 70%);
      transform: translate(-50%, -50%);
      filter: blur(24px);
      mix-blend-mode: multiply;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .cnst.is-loaded .cnst__glow {
      opacity: 1;
    }

    /* === CORNER UI === */
    .cnst__corner {
      position: absolute;
      z-index: 7;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--c-ink-dim);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .cnst__corner strong {
      color: var(--c-ink);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.16em;
    }

    .cnst__corner.tl {
      top: 96px;
      left: 48px;
    }

    .cnst__corner.tr {
      top: 96px;
      right: 48px;
      text-align: right;
    }

    .cnst__corner .live {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--c-teal);
      margin-right: 6px;
      box-shadow: 0 0 0 0 rgba(0, 179, 137, 0.6);
      animation: cnstLive 1.8s ease-out infinite;
    }

    @keyframes cnstLive {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 179, 137, 0.5);
      }

      70% {
        box-shadow: 0 0 0 12px rgba(0, 179, 137, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(0, 179, 137, 0);
      }
    }

    /* === MAIN STAGE === */
    .cnst__wrap {
      position: relative;
      z-index: 5;
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(132px, 14vh, 180px) clamp(24px, 5vw, 56px) clamp(96px, 12vh, 132px);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 0;
      transform-style: preserve-3d;
    }

    /* parallax depth layer wrapper (mouse-reactive) */
    .cnst__layer {
      will-change: transform;
      transform-style: preserve-3d;
    }

    .cnst__chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px 9px 13px;
      border-radius: 999px;
      background: var(--c-glass);
      border: 1px solid var(--c-line-2);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--c-ink-dim);
      box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.14);
      margin-bottom: clamp(24px, 3vh, 34px);
    }

    .cnst.js-anim .cnst__chip {
      opacity: 0;
    }

    .cnst__chip .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--c-teal);
      box-shadow: 0 0 0 0 rgba(0, 179, 137, 0.6);
      animation: cnstLive 1.8s ease-out infinite;
    }

    .cnst__title {
      font-family: 'Syne', var(--font-display), sans-serif;
      font-size: clamp(48px, 7.4vw, 116px);
      line-height: 0.94;
      letter-spacing: -0.04em;
      font-weight: 700;
      color: var(--c-ink);
      max-width: 15ch;
    }

    .cnst__title .line {
      display: block;
      overflow: hidden;
      padding: 0.02em 0.04em;
    }

    .cnst__title .line-inner {
      display: inline-block;
      will-change: transform;
    }

    .cnst__title .grad {
      background: linear-gradient(108deg, var(--c-teal) 0%, var(--c-blue) 52%, var(--c-violet) 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      animation: cnstGradShift 9s ease-in-out infinite;
    }

    @keyframes cnstGradShift {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    .cnst__lede {
      max-width: 600px;
      margin: clamp(22px, 3vh, 30px) auto clamp(34px, 4.5vh, 44px);
      font-family: var(--font-body);
      font-size: clamp(16px, 1.2vw, 19px);
      line-height: 1.6;
      color: var(--c-ink-dim);
    }

    .cnst.js-anim .cnst__lede {
      opacity: 0;
    }

    .cnst__cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-bottom: clamp(40px, 6vh, 60px);
    }

    .cnst__cta-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 30px;
      border-radius: 999px;
      background: var(--c-ink);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
      box-shadow: 0 18px 42px -14px rgba(10, 18, 38, 0.5);
    }

    .cnst__cta-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(108deg, var(--c-teal), var(--c-blue) 55%, var(--c-violet));
      transform: translateX(-101%);
      transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
      z-index: 0;
    }

    .cnst__cta-primary>* {
      position: relative;
      z-index: 1;
    }

    .cnst__cta-primary:hover {
      transform: translateY(-3px);
    }

    .cnst__cta-primary:hover::before {
      transform: translateX(0);
    }

    .cnst__cta-primary .arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .cnst__cta-primary:hover .arrow {
      transform: translateX(4px) rotate(-8deg);
    }

    .cnst__cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 26px;
      border-radius: 999px;
      border: 1px solid var(--c-line-2);
      background: var(--c-glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--c-ink);
      transition: background 0.35s ease, transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .cnst.js-anim .cnst__cta-primary,
    .cnst.js-anim .cnst__cta-secondary {
      opacity: 0;
    }

    .cnst__cta-secondary:hover {
      transform: translateY(-3px);
      background: #fff;
    }

    .cnst__cta-secondary .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--c-blue);
      box-shadow: 0 0 12px var(--c-blue);
    }

    .cnst__meta {
      display: flex;
      gap: 56px;
      justify-content: center;
      padding-top: 30px;
      border-top: 1px solid var(--c-line);
    }

    .cnst__meta>div {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cnst.js-anim .cnst__meta>div {
      opacity: 0;
    }

    .cnst__meta span {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--c-ink-mute);
    }

    .cnst__meta strong {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 600;
      color: var(--c-ink);
      letter-spacing: -0.02em;
    }

    /* === SCROLL CUE === */
    .cnst__scroll {
      position: absolute;
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--c-ink-dim);
      z-index: 7;
    }

    .cnst.js-anim .cnst__scroll {
      opacity: 0;
    }

    .cnst__scroll .bar {
      width: 1px;
      height: 56px;
      background: linear-gradient(180deg, var(--c-ink) 0%, transparent 100%);
      position: relative;
      overflow: hidden;
    }

    .cnst__scroll .bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: var(--c-blue);
      animation: cnstScroll 2s ease-in-out infinite;
    }

    @keyframes cnstScroll {
      0% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(300%);
      }
    }

    /* === RESPONSIVE === */
    @media (max-width: 1024px) {

      .cnst__corner.tl,
      .cnst__corner.tr {
        top: 84px;
      }

      .cnst__wrap {
        padding-top: 150px;
      }
    }

    @media (max-width: 720px) {
      .cnst__wrap {
        padding: 132px 24px 110px;
      }

      .cnst__corner {
        font-size: 9px;
      }

      .cnst__corner.tl {
        left: 24px;
      }

      .cnst__corner.tr {
        right: 24px;
      }

      .cnst__title {
        font-size: clamp(44px, 13vw, 80px);
      }

      .cnst__lede {
        font-size: 15px;
        margin-bottom: 36px;
      }

      .cnst__cta {
        gap: 12px;
        margin-bottom: 48px;
      }

      .cnst__cta-primary {
        padding: 15px 24px;
        font-size: 12px;
      }

      .cnst__cta-secondary {
        padding: 15px 22px;
        font-size: 11px;
      }

      .cnst__meta {
        gap: 30px;
      }

      .cnst__meta strong {
        font-size: 19px;
      }

      .cnst__scroll {
        display: none;
      }

      
    }

    @media (prefers-reduced-motion: reduce) {

      .cnst__blob,
      .cnst__grid,
      .cnst__grain,
      .cnst__title .grad,
      .cnst__chip .pulse,
      .cnst__scroll .bar::after {
        animation: none;
      }
    }


    /* ===================== CINEMA REEL (replaces zoom) ===================== */
    .cinema {
      position: relative;
      height: 400vh;
      background: #07080d;
      color: #f4f4f8;
    }

    .cinema-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      background: #07080d;
      isolation: isolate;
    }

    /* Letterbox bars */
    .cinema-letterbox {
      position: absolute;
      left: 0;
      right: 0;
      height: 9vh;
      background: #000;
      z-index: 20;
      transform: translateY(-101%);
      will-change: transform;
    }

    .cinema-letterbox--top {
      top: 0;
    }

    .cinema-letterbox--bottom {
      bottom: 0;
      transform: translateY(101%);
    }

    /* Scene stage */
    .cinema-stage {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .cinema-scene {
      position: absolute;
      inset: 0;
      overflow: hidden;
      will-change: clip-path;
    }

    .cinema-scene[data-scene="1"] {
      clip-path: inset(0 0 0 0);
      z-index: 1;
    }

    .cinema-scene[data-scene="2"] {
      clip-path: inset(100% 0 0 0);
      z-index: 2;
    }

    .cinema-scene[data-scene="3"] {
      clip-path: inset(100% 0 0 0);
      z-index: 3;
    }

    /* Single background image per scene — zooms in on scroll */
    .cinema-bg {
      position: absolute;
      inset: -10%;
      background-size: cover;
      background-position: center;
      will-change: transform;
      transform: scale(1.18);
    }

    .cinema-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(7, 8, 13, 0.5) 60%, rgba(7, 8, 13, 0.92) 100%),
        linear-gradient(180deg, rgba(7, 8, 13, 0.4) 0%, rgba(7, 8, 13, 0.1) 35%, rgba(7, 8, 13, 0.7) 100%);
    }

    /* Scene-specific color grades */
    .cinema-scene[data-scene="1"] .cinema-bg {
      filter: brightness(0.6) saturate(1.1) contrast(1.05);
    }

    .cinema-scene[data-scene="2"] .cinema-bg {
      filter: brightness(0.55) saturate(1.2) contrast(1.1) hue-rotate(200deg);
    }

    .cinema-scene[data-scene="3"] .cinema-bg {
      filter: brightness(0.6) saturate(1.15) contrast(1.05) hue-rotate(30deg);
    }

    .cinema-content {
      position: absolute;
      inset: 9vh 0 9vh 0;
      padding: 0 clamp(32px, 7vw, 96px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      z-index: 4;
    }

    .cinema-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .cinema-eyebrow::before,
    .cinema-eyebrow::after {
      content: '';
      flex: 0 0 24px;
      height: 1px;
      background: var(--accent);
    }

    .cinema-eyebrow strong {
      color: var(--accent);
      font-weight: 500;
    }

    .cinema-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(72px, 12vw, 220px);
      line-height: 0.9;
      letter-spacing: -0.05em;
      color: #fff;
      max-width: 14ch;
      margin: 0;
      text-transform: uppercase;
    }

    .cinema-char {
      display: inline-block;
      vertical-align: bottom;
    }

    .cinema-char-inner {
      display: inline-block;
      opacity: 0;
      will-change: transform, opacity;
    }

    .cinema-sub {
      margin-top: 28px;
      max-width: 520px;
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.72);
    }

    .cinema-metric {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 11vh;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 18px;
      z-index: 4;
    }

    .cinema-metric__num {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(40px, 5vw, 72px);
      line-height: 1;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .cinema-metric__label {
      padding-bottom: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      max-width: 160px;
      line-height: 1.5;
    }

    /* HUD chrome */
    .cinema-hud {
      position: absolute;
      z-index: 15;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .cinema-hud--tl {
      top: calc(9vh + 28px);
      left: clamp(32px, 7vw, 96px);
    }

    .cinema-hud--tr {
      top: calc(9vh + 28px);
      right: clamp(32px, 7vw, 96px);
    }

    .cinema-hud--bl {
      bottom: calc(9vh + 28px);
      left: clamp(32px, 7vw, 96px);
    }

    .cinema-hud--br {
      bottom: calc(9vh + 28px);
      right: clamp(32px, 7vw, 96px);
    }

    .cinema-rec {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ff3b3b;
      box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
      animation: cinemaRec 1.6s ease-out infinite;
    }

    @keyframes cinemaRec {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55);
      }

      70% {
        box-shadow: 0 0 0 12px rgba(255, 59, 59, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
      }
    }

    .cinema-chapter-num {
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.18em;
    }

    /* Vertical chapter rail (right) */
    .cinema-rail {
      position: absolute;
      right: clamp(32px, 5vw, 64px);
      top: 50%;
      transform: translateY(-50%);
      z-index: 15;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .cinema-rail__line {
      width: 1px;
      height: 180px;
      background: rgba(255, 255, 255, 0.18);
      position: relative;
      overflow: hidden;
    }

    .cinema-rail__line span {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(180deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 12px rgba(0, 150, 107, 0.5);
    }

    .cinema-rail__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
    }

    .cinema-rail__dot.is-active {
      background: var(--accent);
      transform: scale(1.6);
      box-shadow: 0 0 16px rgba(0, 150, 107, 0.7);
    }

    /* Bottom scrubber timeline */
    .cinema-scrub {
      position: absolute;
      left: clamp(32px, 7vw, 96px);
      right: clamp(32px, 7vw, 96px);
      bottom: calc(9vh + 16px);
      height: 26px;
      z-index: 15;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 6px;
      pointer-events: none;
    }

    .cinema-scrub__ticks {
      position: relative;
      height: 10px;
    }

    .cinema-scrub__ticks span {
      position: absolute;
      bottom: 0;
      width: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .cinema-scrub__ticks span.major {
      height: 10px;
      background: rgba(255, 255, 255, 0.45);
    }

    .cinema-scrub__ticks span.minor {
      height: 5px;
    }

    .cinema-scrub__bar {
      position: relative;
      height: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .cinema-scrub__fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 1px;
      width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
      box-shadow: 0 0 12px rgba(10, 115, 212, 0.6);
    }

    .cinema-scrub__head {
      position: absolute;
      top: -3px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 12px #fff;
      transform: translateX(-50%);
    }

    /* Film grain overlay */
    .cinema-grain {
      position: absolute;
      inset: 0;
      z-index: 18;
      pointer-events: none;
      opacity: 0.08;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      animation: cinemaGrain 0.4s steps(4) infinite;
    }

    @keyframes cinemaGrain {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-3px, 2px);
      }

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

      75% {
        transform: translate(-2px, 3px);
      }
    }

    /* Scanline overlay */
    .cinema-scan {
      position: absolute;
      inset: 0;
      z-index: 17;
      pointer-events: none;
      opacity: 0.06;
      background-image: repeating-linear-gradient(to bottom,
          rgba(255, 255, 255, 0.0) 0px,
          rgba(255, 255, 255, 0.0) 2px,
          rgba(255, 255, 255, 0.5) 3px,
          rgba(255, 255, 255, 0.0) 4px);
    }

    /* Corner brackets (camera viewfinder feel) */
    .cinema-bracket {
      position: absolute;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      z-index: 16;
    }

    .cinema-bracket--tl {
      top: calc(9vh + 16px);
      left: clamp(24px, 5vw, 72px);
      border-right: none;
      border-bottom: none;
    }

    .cinema-bracket--tr {
      top: calc(9vh + 16px);
      right: clamp(24px, 5vw, 72px);
      border-left: none;
      border-bottom: none;
    }

    .cinema-bracket--bl {
      bottom: calc(9vh + 16px);
      left: clamp(24px, 5vw, 72px);
      border-right: none;
      border-top: none;
    }

    .cinema-bracket--br {
      bottom: calc(9vh + 16px);
      right: clamp(24px, 5vw, 72px);
      border-left: none;
      border-top: none;
    }

    @media (max-width: 900px) {
      .cinema {
        height: 320vh;
      }

      .cinema-title {
        font-size: clamp(54px, 13vw, 96px);
      }

      .cinema-sub {
        font-size: 14px;
      }

      .cinema-metric {
        bottom: calc(9vh + 72px);
        gap: 10px;
      }

      .cinema-metric__num {
        font-size: 38px;
      }

      .cinema-metric__label {
        font-size: 10px;
        max-width: 120px;
      }

      .cinema-rail {
        display: none;
      }

      .cinema-hud--tr,
      .cinema-hud--br {
        display: none;
      }

      .cinema-scrub {
        display: none;
      }

      .cinema-bracket {
        width: 18px;
        height: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .cinema-grain,
      .cinema-rec {
        animation: none;
      }
    }

    /* ===================== DYNAMIC MORPHING ===================== */
    .morph-section {
      position: relative;
      height: 300vh;
      background: var(--bg-1);
    }

    .morph-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .morph-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .morph-visual {
      position: relative;
      width: 100%;
      max-width: 480px;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }

    .morph-visual::before {
      content: '';
      position: absolute;
      width: 85%;
      height: 85%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.12), rgba(0, 150, 107, 0.08), transparent 70%);
      filter: blur(50px);
      z-index: 1;
      pointer-events: none;
    }

    .morph-blob-wrap {
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 2;
    }

    .morph-caption {
      position: absolute;
      bottom: -32px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ink-mute);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .morph-caption::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: cnstLive 2s infinite;
    }

    .morph-content {
      position: relative;
      height: 380px;
      width: 100%;
    }

    .morph-card {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      transform: translateY(30px);
      pointer-events: none;
      gap: 18px;
    }

    .phase-num {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--ink-dim);
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .phase-num::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--accent);
    }

    .morph-card h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(32px, 3.5vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .morph-card p {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink-dim);
      max-width: 480px;
    }

    @media (max-width: 1024px) {
      .morph-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .morph-visual {
        max-width: 320px;
      }

      .morph-content {
        height: 240px;
      }

      .morph-card h3 {
        font-size: 28px;
      }

      .morph-card p {
        font-size: 15px;
      }

      .morph-caption {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .morph-section {
        height: 240vh;
      }

      .morph-container {
        padding: 0 24px;
      }
    }

    /* ===================== METRICS ===================== */
    .metrics {
      position: relative;
      padding: 160px 48px;
      background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
      overflow: hidden;
    }

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

    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--ink-mute);
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(40px, 5vw, 80px);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-top: 16px;
      color: var(--ink);
    }

    .section-title .italic {
      font-style: italic;
      font-weight: 400;
      color: var(--ink-dim);
    }

    .metrics__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .metric {
      position: relative;
      padding: 48px 32px;
      background: var(--bg-1);
      overflow: hidden;
      transition: background 0.5s;
    }

    .metric::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(0, 150, 107, 0.10), transparent 60%);
      opacity: 0;
      transition: opacity 0.5s;
    }

    .metric:hover::before {
      opacity: 1;
    }

    .metric:hover {
      background: var(--bg-2);
    }

    .metric__num {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(56px, 6vw, 96px);
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--ink);
    }

    .metric__num .suffix {
      font-size: 0.5em;
      color: var(--accent);
      margin-left: 4px;
    }

    .metric__label {
      margin-top: 16px;
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--ink-dim);
    }

    .metric__desc {
      margin-top: 12px;
      font-size: 14px;
      color: var(--ink-mute);
      line-height: 1.55;
    }

    .metric__deco {
      position: absolute;
      top: 16px;
      right: 16px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--ink-mute);
      letter-spacing: 0.2em;
    }

    /* CLIENT MARQUEE */
    .marquee {
      margin-top: 120px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 32px 0;
    }

    .marquee__track {
      display: flex;
      gap: 80px;
      white-space: nowrap;
      animation: marquee 18s linear infinite;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 32px;
      letter-spacing: -0.02em;
      color: var(--ink-dim);
    }

    .marquee__track span {
      display: inline-flex;
      align-items: center;
      gap: 80px;
    }

    .marquee__track .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-block;
    }

    @keyframes marquee {
      to {
        transform: translateX(-50%);
      }
    }

    .marquee:hover .marquee__track {
      animation-play-state: paused;
    }

    @media (max-width: 900px) {
      .metrics {
        padding: 100px 24px;
      }

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

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

    /* ===================== WHY US (pinned) ===================== */
    .whyus {
      position: relative;
      background: var(--bg-1);
    }

    .whyus__pin {
      height: 400vh;
      position: relative;
    }

    .whyus__stage {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .whyus__scene {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.5s;
    }

    .whyus__scene.active {
      opacity: 1;
    }

    .whyus__scene-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .whyus__scene-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(1.05) saturate(1.1) contrast(1.02);
      opacity: 0.85;
      animation: kenBurns 12s ease-in-out infinite alternate;
      will-change: transform;
    }

    @keyframes kenBurns {
      0% {
        transform: scale(1.02) translate(0%, 0%);
      }

      50% {
        transform: scale(1.15) translate(-0.8%, -0.4%);
      }

      100% {
        transform: scale(1.02) translate(0%, 0%);
      }
    }

    .whyus__scene-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.55) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .whyus__scene-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .whyus__num {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(120px, 16vw, 280px);
      line-height: 0.8;
      letter-spacing: -0.05em;
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: 0;
      transform: translateX(-40px) scale(0.95);
      transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform, opacity;
    }

    .whyus__scene.active .whyus__num {
      opacity: 1;
      transform: translateX(0) scale(1);
      transition-delay: 0.1s;
    }

    .whyus__copy {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.18) 100%);
      backdrop-filter: blur(10px) saturate(1.35);
      -webkit-backdrop-filter: blur(28px) saturate(1.35);
      padding: 48px 56px;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow:
        0 40px 80px -20px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 2px rgba(15, 23, 42, 0.02);
      max-width: 580px;
    }

    .whyus__copy .tag,
    .whyus__copy h3,
    .whyus__copy p {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1), transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform, opacity;
    }

    .whyus__scene.active .whyus__copy .tag {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.18s;
    }

    .whyus__scene.active .whyus__copy h3 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.3s;
    }

    .whyus__scene.active .whyus__copy p {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.42s;
    }

    .whyus__copy h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(36px, 4vw, 64px);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      color: var(--ink);
    }

    .whyus__copy p {
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink-dim);
      max-width: 480px;
    }

    .whyus__copy .tag {
      display: inline-block;
      margin-bottom: 24px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .whyus__progress {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      gap: 12px;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--ink-mute);
      text-transform: uppercase;
    }

    .whyus__progress .bars {
      display: flex;
      gap: 4px;
    }

    .whyus__progress .bar {
      width: 32px;
      height: 2px;
      background: rgba(10, 15, 30, 0.18);
      transition: background 0.4s;
    }

    .whyus__progress .bar.active {
      background: var(--accent);
    }

    .whyus__header {
      position: absolute;
      top: 48px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      text-align: center;
    }

    @media (max-width: 900px) {
      .whyus__scene-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
      }

      .whyus__num {
        font-size: 100px;
      }

      .whyus__copy {
        padding: 32px 24px;
        border-radius: 20px;
        max-width: 100%;
      }
    }

    /* ===================== SERVICES ===================== */
    .services {
      position: relative;
      padding: 160px 48px;
      background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
    }

    .services__head {
      max-width: 800px;
      margin-bottom: 80px;
    }

    .services__head p {
      margin-top: 24px;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-dim);
      max-width: 560px;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    .service-card {
      position: relative;
      padding: 40px;
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
      backdrop-filter: blur(12px);
      transition: transform 0.6s cubic-bezier(.18, .89, .32, 1.28), border-color 0.4s, box-shadow 0.4s;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow-card);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: var(--line-2);
      box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.22);
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s;
      background:
        radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 150, 107, 0.16), transparent 40%);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card.large {
      grid-column: span 7;
      min-height: 480px;
    }

    .service-card.medium {
      grid-column: span 5;
    }

    .service-card.small {
      grid-column: span 4;
    }

    .service-card.wide {
      grid-column: span 8;
    }

    .service-card__top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--ink-mute);
      text-transform: uppercase;
    }

    .service-card__top .num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line-2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      font-size: 11px;
    }

    .service-card__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .service-card__desc {
      color: var(--ink-dim);
      font-size: 15px;
      line-height: 1.6;
      max-width: 380px;
      margin-top: 18px;
    }

    .service-card__visual {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.5;
    }

    .service-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .service-card__tags span {
      padding: 6px 12px;
      border: 1px solid var(--line-2);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-dim);
      background: rgba(255, 255, 255, 0.6);
    }

    .service-card__arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--bg-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s, background 0.4s, color 0.4s;
      font-size: 20px;
    }

    .service-card:hover .service-card__arrow {
      transform: rotate(-45deg);
      background: var(--accent);
      color: #fff;
    }

    .service-card__bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
    }

    .service-card__orb {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, var(--accent-2), transparent 60%);
      filter: blur(40px);
      opacity: 0.35;
    }

    .service-card.purple .service-card__orb {
      background: radial-gradient(circle at 30% 30%, var(--accent-3), transparent 60%);
    }

    .service-card.green .service-card__orb {
      background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
    }

    .service-card.red .service-card__orb {
      background: radial-gradient(circle at 30% 30%, var(--hot), transparent 60%);
    }

    /* Services mobile slider */
    .services__slider-hint {
      display: none;
    }

    .services__slider-dots {
      display: none;
    }

    /* Services desktop GSAP horizontal scroll */
    .services--hscroll {
      overflow: hidden;
      /* Lock to a single viewport so the pinned panel has no dead space after
         the cards finish sliding — it releases straight into the next section. */
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 48px;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .services--hscroll .services__head {
      margin-bottom: 0;
      flex: 0 0 auto;
    }

    .services--hscroll .services__grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 24px;
      overflow: visible;
      will-change: transform;
    }

    .services--hscroll .service-card {
      flex: 0 0 400px;
      grid-column: unset;
    }

    .services--hscroll .service-card.large {
      flex: 0 0 520px;
      min-height: 480px;
    }

    .services--hscroll .service-card.wide {
      flex: 0 0 520px;
    }

    /* Short laptop screens: the pinned services panel is locked to 100vh with
       overflow:hidden. On screens shorter than ~880px the head + card heights
       exceed the viewport and the cards get clipped (looks like it "scrolls").
       Scale the head, paddings, gap and card heights to viewport height so the
       whole grid fits inside one viewport. Only affects the desktop pinned
       layout (min-width 901px). */
    @media (min-width: 901px) and (max-height: 880px) {
      .services--hscroll {
        padding-top: clamp(24px, 5vh, 80px);
        padding-bottom: clamp(24px, 5vh, 80px);
        gap: clamp(20px, 3vh, 48px);
      }

      .services--hscroll .services__head {
        margin-bottom: 0;
      }

      .services--hscroll .services__head .section-title {
        font-size: clamp(32px, 4vh, 56px);
      }

      .services--hscroll .services__head p {
        margin-top: 12px;
        font-size: 15px;
      }

      .services--hscroll .service-card,
      .services--hscroll .service-card.large,
      .services--hscroll .service-card.wide {
        min-height: 0;
      }

      .services--hscroll .service-card {
        padding: 28px 32px;
      }

      .services--hscroll .service-card__title {
        font-size: clamp(24px, 2.4vw, 34px);
      }

      .services--hscroll .service-card__desc {
        margin-top: 12px;
      }

      .services--hscroll .service-card__tags {
        margin-top: 14px;
      }
    }

    @media (max-width: 900px) {
      .services {
        padding: 80px 0 100px;
      }

      .services__head {
        padding: 0 24px;
        margin-bottom: 48px;
      }

      .services__grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        gap: 16px;
        padding: 8px 24px 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab;
      }

      .services__grid:active {
        cursor: grabbing;
      }

      .services__grid::-webkit-scrollbar {
        display: none;
      }

      .service-card.large,
      .service-card.medium,
      .service-card.small,
      .service-card.wide {
        flex: 0 0 80vw;
        max-width: 320px;
        scroll-snap-align: start;
        grid-column: unset;
        min-height: 300px;
      }

      .services__slider-hint {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 24px;
        margin-top: 4px;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--ink-mute);
      }

      .services__slider-hint::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--accent);
      }

      .services__slider-dots {
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: center;
        padding: 16px 24px 0;
      }

      .services__slider-pip {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--line-2);
        transition: all 0.3s ease;
        flex-shrink: 0;
      }

      .services__slider-pip.active {
        background: var(--accent);
        width: 20px;
        border-radius: 3px;
      }
    }

    /* ===================== PROCESS ===================== */
    .process {
      position: relative;
      padding: 160px 48px;
      overflow: hidden;
      background: var(--bg-0);
    }

    .process__head {
      text-align: center;
      margin-bottom: 100px;
    }

    .process__head p {
      margin: 24px auto 0;
      max-width: 540px;
      color: var(--ink-dim);
      font-size: 16px;
      line-height: 1.6;
    }

    .process__timeline {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }

    .process__line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--line);
      transform: translateX(-50%);
    }

    .process__line span {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(180deg, var(--accent), var(--accent-2), var(--accent-3));
      box-shadow: 0 0 16px rgba(0, 150, 107, 0.5);
    }

    .process__step {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 40px;
      align-items: center;
      padding: 60px 0;
    }

    .process__step-content {
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(12px);
      transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
      box-shadow: var(--shadow-soft);
    }

    .process__step:hover .process__step-content {
      transform: translateY(-4px);
      border-color: var(--line-2);
      box-shadow: 0 22px 50px -18px rgba(15, 23, 42, 0.22);
    }

    .process__step.left .process__step-content {
      grid-column: 1;
      text-align: right;
    }

    .process__step.right .process__step-content {
      grid-column: 3;
    }

    .process__step-num {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .process__step-title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 28px;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .process__step-desc {
      color: var(--ink-dim);
      font-size: 15px;
      line-height: 1.6;
    }

    .process__step-node {
      grid-column: 2;
      position: relative;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 1px solid var(--line-2);
      background: var(--bg-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      z-index: 2;
      color: var(--ink);
      box-shadow: var(--shadow-soft);
    }

    .process__step-node::before,
    .process__step-node::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      opacity: 0;
      animation: ringPulse 3s ease infinite;
    }

    .process__step:hover .process__step-node::before {
      opacity: 1;
    }

    .process__step:hover .process__step-node::after {
      animation-delay: 1s;
      opacity: 1;
    }

    @keyframes ringPulse {
      0% {
        transform: scale(0.9);
        opacity: 0.8;
      }

      100% {
        transform: scale(1.5);
        opacity: 0;
      }
    }

    @media (max-width: 900px) {
      .process {
        padding: 100px 24px;
      }

      .process__line {
        left: 24px;
      }

      .process__step {
        grid-template-columns: auto 1fr;
        gap: 24px;
        padding: 32px 0;
      }

      .process__step-node {
        grid-column: 1;
        grid-row: 1;
        width: 48px;
        height: 48px;
        font-size: 16px;
      }

      .process__step.left .process__step-content,
      .process__step.right .process__step-content {
        grid-column: 2;
        text-align: left;
      }
    }

    /* ===================== PORTFOLIO ===================== */
    .portfolio {
      position: relative;
      padding: 160px 48px;
      background: var(--bg-1);
    }

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

    .portfolio__filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      font-family: var(--font-mono);
      font-size: 12px;
    }

    .portfolio__filters button {
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--ink-dim);
      transition: 0.3s;
      background: var(--bg-1);
    }

    .portfolio__filters button:hover,
    .portfolio__filters button.active {
      background: var(--ink);
      color: var(--bg-1);
      border-color: var(--ink);
    }

    .portfolio__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 220px;
      gap: 24px;
    }

    .work {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      cursor: pointer;
      isolation: isolate;
      box-shadow: var(--shadow-soft);
    }

    .work img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(.18, .89, .32, 1);
      filter: brightness(1.02) saturate(1.0);
    }

    .work:hover img {
      transform: scale(1.08);
      filter: brightness(0.95) saturate(1.1);
    }

    .work::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(10, 15, 30, 0.55) 80%, rgba(10, 15, 30, 0.85) 100%);
      z-index: 1;
    }

    .work__meta {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      color: #fff;
    }

    .work__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 24px;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 6px;
      color: #fff;
    }

    .work__tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
    }

    .work__arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #fff;
      transition: 0.4s;
      opacity: 0;
      transform: translateY(10px);
    }

    .work:hover .work__arrow {
      opacity: 1;
      transform: translateY(0);
      background: var(--accent);
      color: #fff;
    }

    .work.w1 {
      grid-column: span 7;
      grid-row: span 2;
    }

    .work.w2 {
      grid-column: span 5;
      grid-row: span 1;
    }

    .work.w3 {
      grid-column: span 5;
      grid-row: span 1;
    }

    .work.w4 {
      grid-column: span 4;
      grid-row: span 2;
    }

    .work.w5 {
      grid-column: span 4;
      grid-row: span 1;
    }

    .work.w6 {
      grid-column: span 4;
      grid-row: span 1;
    }

    .work.w7 {
      grid-column: span 8;
      grid-row: span 1;
    }

    .work.w8 {
      grid-column: span 4;
      grid-row: span 1;
    }

    @media (max-width: 900px) {
      .portfolio {
        padding: 100px 24px;
      }

      .portfolio__grid {
        grid-auto-rows: 240px;
      }

      .work.w1,
      .work.w2,
      .work.w3,
      .work.w4,
      .work.w5,
      .work.w6,
      .work.w7,
      .work.w8 {
        grid-column: span 12;
        grid-row: span 1;
      }

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

    /* ===================== KINETIC MOTION ===================== */
    .kinetic {
      position: relative;
      padding: 200px 48px;
      overflow: hidden;
      background: radial-gradient(ellipse at center, #eef1f7 0%, #f6f7fb 80%);
    }

    .kinetic__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(0, 150, 107, 0.10), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.10), transparent 50%);
    }

    .kinetic__rows {
      position: relative;
    }

    .kinetic__row {
      white-space: nowrap;
      display: flex;
      gap: 80px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(80px, 12vw, 200px);
      line-height: 1;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .kinetic__row.r1 {
      animation: kineticL 30s linear infinite;
    }

    .kinetic__row.r2 {
      animation: kineticR 35s linear infinite;
    }

    .kinetic__row.r3 {
      animation: kineticL 40s linear infinite;
    }

    @keyframes kineticL {
      to {
        transform: translateX(-50%);
      }
    }

    @keyframes kineticR {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .kinetic__row .outline {
      color: transparent;
      -webkit-text-stroke: 1.2px var(--ink-dim);
    }

    .kinetic__row .filled {
      color: var(--ink);
    }

    .kinetic__row .grad {
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .kinetic__row .star {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6em;
      color: var(--accent);
    }

    .kinetic__center {
      position: relative;
      z-index: 3;
      text-align: center;
      margin: 100px auto 0;
      max-width: 800px;
    }

    .kinetic__center h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .kinetic__center .accent {
      color: var(--accent);
      font-style: italic;
    }

    .kinetic__center .author {
      margin-top: 32px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--ink-mute);
      text-transform: uppercase;
    }

    /* ===================== KINETIC — ENHANCED ===================== */
    .kinetic__spotlight {
      position: absolute;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle,
          rgba(0, 150, 107, 0.22) 0%,
          rgba(10, 115, 212, 0.10) 40%,
          transparent 70%);
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 4;
      mix-blend-mode: multiply;
      will-change: transform;
      top: 0;
      left: 0;
    }

    .kinetic:hover .kinetic__spotlight {
      opacity: 1;
    }

    .kinetic__row span {
      display: inline-block;
      transition: letter-spacing 0.4s ease, opacity 0.3s ease;
      cursor: default;
    }

    .kinetic__row span:hover {
      letter-spacing: 0.04em;
      opacity: 0.7;
    }

    .kinetic__row span.scrambling {
      color: var(--accent) !important;
      -webkit-text-stroke: 0 !important;
      -webkit-background-clip: unset !important;
      background-clip: unset !important;
      background: none !important;
    }

    .kinetic__center {
      position: relative;
      z-index: 5;
      text-align: center;
      margin: 100px auto 0;
      max-width: 800px;
      padding: 60px 48px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.20));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 32px;
      box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.12);
    }

    .kinetic__center h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(22px, 2.6vw, 38px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .kinetic__center .accent {
      color: var(--accent);
      font-style: italic;
    }

    .kinetic__center .author {
      margin-top: 32px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--ink-mute);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .kinetic__center .author::before,
    .kinetic__center .author::after {
      content: '';
      flex: 0 0 24px;
      height: 1px;
      background: var(--accent);
      opacity: 0.5;
    }

    @media (max-width: 720px) {
      .kinetic__center {
        padding: 40px 28px;
        margin: 60px 24px 0;
        border-radius: 24px;
      }
    }

    /* ===================== PRICING ===================== */
    .pricing {
      position: relative;
      padding: 160px 48px;
      background: var(--bg-1);
      overflow: hidden;
    }

    /* Floating currency / value particles */
    .pricing-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .pricing-particle {
      position: absolute;
      font-family: var(--font-display);
      font-weight: 600;
      color: var(--accent);
      opacity: 0.14;
      user-select: none;
      will-change: transform, opacity;
      text-shadow: 0 4px 18px rgba(0, 150, 107, 0.18);
      animation: pricingFloat 22s ease-in-out infinite;
    }

    .pricing-particle.alt {
      color: var(--accent-2);
      text-shadow: 0 4px 18px rgba(10, 115, 212, 0.18);
    }

    .pricing-particle.alt2 {
      color: var(--accent-3);
      text-shadow: 0 4px 18px rgba(124, 58, 237, 0.18);
    }

    .pricing-particle.hot {
      color: var(--hot);
      text-shadow: 0 4px 18px rgba(230, 57, 70, 0.18);
    }

    .pricing-particle.xs {
      font-size: 14px;
      opacity: 0.10;
    }

    .pricing-particle.sm {
      font-size: 20px;
      opacity: 0.12;
    }

    .pricing-particle.md {
      font-size: 32px;
      opacity: 0.14;
    }

    .pricing-particle.lg {
      font-size: 48px;
      opacity: 0.16;
    }

    .pricing-particle.xl {
      font-size: 72px;
      opacity: 0.12;
    }

    .pricing-particle.float-b {
      animation-name: pricingFloatB;
    }

    .pricing-particle.float-c {
      animation-name: pricingFloatC;
    }

    .pricing-particle.float-d {
      animation-name: pricingFloatD;
    }

    @keyframes pricingFloat {

      0%,
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }

      50% {
        transform: translate3d(18px, -38px, 0) rotate(14deg);
      }
    }

    @keyframes pricingFloatB {

      0%,
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }

      50% {
        transform: translate3d(-22px, -48px, 0) rotate(-18deg);
      }
    }

    @keyframes pricingFloatC {

      0%,
      100% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
      }

      50% {
        transform: translate3d(28px, -28px, 0) rotate(20deg);
      }
    }

    @keyframes pricingFloatD {

      0%,
      100% {
        transform: translate3d(0, -10px, 0) rotate(10deg);
      }

      50% {
        transform: translate3d(-14px, -56px, 0) rotate(-12deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .pricing-particle {
        animation: none;
      }
    }

    .pricing__head {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
      z-index: 2;
    }

    .pricing__head p {
      margin: 24px auto 0;
      max-width: 540px;
      color: var(--ink-dim);
      font-size: 16px;
    }

    .pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .plan {
      position: relative;
      padding: 48px 40px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
      overflow: hidden;
      transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
      transform-style: preserve-3d;
      box-shadow: var(--shadow-card);
    }

    .plan::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 150, 107, 0.14), transparent 50%);
    }

    .plan:hover::before {
      opacity: 1;
    }

    .plan:hover {
      border-color: var(--line-2);
      box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.22);
    }

    .plan.featured {
      border-color: var(--accent);
      background: linear-gradient(180deg, rgba(0, 150, 107, 0.08), rgba(255, 255, 255, 0.7));
      box-shadow: 0 30px 60px -20px rgba(0, 150, 107, 0.28);
    }

    .plan.featured::after {
      content: 'POPULAR';
      position: absolute;
      top: 20px;
      right: 20px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      padding: 6px 12px;
      background: var(--accent);
      color: #fff;
      border-radius: 999px;
    }

    .plan__name {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ink-dim);
      margin-bottom: 16px;
    }

    .plan__price {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 72px;
      line-height: 1;
      letter-spacing: -0.04em;
      display: flex;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .plan__price .currency {
      font-size: 24px;
      color: var(--ink-dim);
      margin-top: 8px;
    }

    .plan__price .period {
      font-size: 16px;
      color: var(--ink-mute);
      align-self: flex-end;
      margin-bottom: 12px;
      font-family: var(--font-mono);
    }

    .plan__desc {
      color: var(--ink-dim);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .plan__divider {
      height: 1px;
      background: var(--line);
      margin: 24px 0;
    }

    .plan__features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }

    .plan__features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--ink);
    }

    .plan__features svg {
      flex-shrink: 0;
    }

    .plan__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 18px;
      border-radius: 999px;
      background: var(--glass-2);
      border: 1px solid var(--line-2);
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: 0.3s;
      color: var(--ink);
    }

    .plan__cta:hover {
      background: var(--ink);
      color: var(--bg-1);
      border-color: var(--ink);
    }

    .plan.featured .plan__cta {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    .plan.featured .plan__cta:hover {
      background: var(--ink);
      color: var(--bg-1);
      border-color: var(--ink);
    }

    @media (max-width: 900px) {
      .pricing {
        padding: 100px 24px;
      }

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

    /* ===================== TESTIMONIALS — FILM STRIP CAROUSEL ===================== */
    .testimonials {
      position: relative;
      padding: 160px 0 100px;
      background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
      overflow: hidden;
    }

    .testimonials__head {
      text-align: center;
      margin-bottom: 72px;
      padding: 0 48px;
    }

    .testimonials__stage {
      position: relative;
      overflow: hidden;
      padding: 20px 0 36px;
    }

    /* fade edges */
    .testimonials__stage::before,
    .testimonials__stage::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .testimonials__stage::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg-1), transparent);
    }

    .testimonials__stage::after {
      right: 0;
      background: linear-gradient(-90deg, var(--bg-0), transparent);
    }

    .testimonials__track {
      display: flex;
      align-items: center;
      gap: 28px;
      will-change: transform;
      transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
      padding: 0 0 4px;
      cursor: grab;
    }

    .testimonials__track.is-dragging {
      transition: none;
      cursor: grabbing;
    }

    .testi {
      flex: 0 0 min(820px, 82vw);
      padding: 52px 60px;
      border: 1px solid var(--line-2);
      border-radius: 32px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 100%);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: grid;
      grid-template-columns: 156px 1fr;
      gap: 48px;
      align-items: center;
      box-shadow: 0 28px 64px -24px rgba(15, 23, 42, 0.18);
      opacity: 0.35;
      transform: scale(0.90) translateY(10px);
      transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(.22, 1, .36, 1),
        filter 0.65s ease,
        box-shadow 0.65s ease;
      filter: blur(0.8px);
      flex-shrink: 0;
    }

    .testi.active {
      opacity: 1;
      transform: scale(1) translateY(0);
      filter: none;
      box-shadow: 0 48px 96px -30px rgba(15, 23, 42, 0.26);
    }

    .testi__avatar {
      width: 156px;
      height: 156px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      border: 2px solid var(--line-2);
      flex-shrink: 0;
    }

    .testi__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testi__avatar::after {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 1px dashed var(--accent);
      animation: spin 20s linear infinite;
    }

    .testi__stars {
      display: flex;
      gap: 3px;
      color: var(--accent);
      margin-bottom: 18px;
      font-size: 15px;
    }

    .testi__quote {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(17px, 1.5vw, 23px);
      line-height: 1.48;
      letter-spacing: -0.01em;
      margin-bottom: 28px;
      color: var(--ink);
      position: relative;
    }

    .testi__quote::before {
      content: '\201C';
      font-size: 4em;
      line-height: 0;
      vertical-align: -0.38em;
      margin-right: 2px;
      color: var(--accent);
      opacity: 0.22;
      font-family: Georgia, serif;
    }

    .testi__author {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .testi__author strong {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 18px;
      color: var(--ink);
    }

    .testi__author span {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      color: var(--ink-mute);
      text-transform: uppercase;
    }

    .testi__nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
      padding: 0 48px;
    }

    .testi__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--line-2);
      transition: 0.35s ease;
      cursor: pointer;
    }

    .testi__dot:hover {
      background: var(--ink-mute);
    }

    .testi__dot.active {
      background: var(--accent);
      width: 28px;
      border-radius: 4px;
    }

    .testi__btn {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line-2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      cursor: pointer;
      background: var(--bg-1);
      color: var(--ink);
      flex-shrink: 0;
    }

    .testi__btn:hover {
      background: var(--ink);
      color: var(--bg-1);
      border-color: var(--ink);
    }

    @media (max-width: 900px) {
      .testimonials {
        padding: 100px 0 80px;
      }

      .testimonials__head {
        padding: 0 24px;
        margin-bottom: 48px;
      }

      .testi {
        flex: 0 0 min(86vw, 400px);
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 36px 28px;
        text-align: center;
        border-radius: 24px;
      }

      .testi__avatar {
        width: 96px;
        height: 96px;
        margin: 0 auto;
      }

      .testi__stars {
        justify-content: center;
      }

      .testi__nav {
        padding: 0 24px;
        margin-top: 20px;
      }
    }

    /* ===================== BLOG ===================== */
    .blog {
      position: relative;
      padding: 160px 48px;
      background: var(--bg-0);
    }

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

    .blog__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
    }

    .blog__grid .post:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    .post {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.6s, box-shadow 0.6s;
      background: var(--bg-1);
      display: flex;
      flex-direction: column;
      min-height: 320px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .post:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 56px -20px rgba(15, 23, 42, 0.22);
    }

    .post__image {
      position: relative;
      overflow: hidden;
      flex: 1;
      min-height: 220px;
    }

    .post__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(.18, .89, .32, 1);
      filter: brightness(1.0) saturate(1.02);
    }

    .post:hover .post__image img {
      transform: scale(1.06);
      filter: brightness(1.06);
    }

    .post__category {
      position: absolute;
      top: 20px;
      left: 20px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ink);
      z-index: 2;
      border: 1px solid var(--line);
    }

    .post__content {
      padding: 28px 32px 32px;
    }

    .post__meta {
      display: flex;
      gap: 16px;
      margin-bottom: 14px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    .post__meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .post__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 22px;
      line-height: 1.15;
      letter-spacing: -0.01em;
      transition: color 0.3s;
      color: var(--ink);
    }

    .post:hover .post__title {
      color: var(--accent);
    }

    .post:first-child .post__title {
      font-size: 36px;
    }

    .post__excerpt {
      margin-top: 12px;
      color: var(--ink-dim);
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .blog {
        padding: 100px 24px;
      }

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

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

      .blog__grid .post:first-child {
        grid-column: span 1;
        grid-row: span 1;
      }

      .post:first-child .post__title {
        font-size: 28px;
      }
    }

    /* ===================== CONTACT ===================== */
    .contact {
      position: relative;
      padding: 160px 48px;
      overflow: hidden;
      background: var(--bg-1);
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .contact__canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .contact__inner {
      position: relative;
      z-index: 2;
      max-width: 1300px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .contact__left h2 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(48px, 6vw, 96px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: var(--ink);
    }

    .contact__left .grad {
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .contact__left p {
      margin-top: 24px;
      color: var(--ink-dim);
      font-size: 17px;
      line-height: 1.6;
      max-width: 480px;
    }

    .contact__info {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact__info-item {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .contact__info-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--line-2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
      background: var(--bg-1);
    }

    .contact__info-item .label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ink-mute);
      display: block;
    }

    .contact__info-item .value {
      font-family: var(--font-display);
      font-size: 20px;
      margin-top: 4px;
      color: var(--ink);
    }

    .contact__form {
      position: relative;
      padding: 48px;
      border: 1px solid var(--line-2);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
      backdrop-filter: blur(20px);
      box-shadow: 0 40px 80px -28px rgba(15, 23, 42, 0.22);
    }

    .form__row {
      margin-bottom: 28px;
      position: relative;
    }

    .form__label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ink-mute);
      display: block;
      margin-bottom: 10px;
    }

    .form__input,
    .form__textarea {
      width: 100%;
      padding: 16px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--line-2);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 16px;
      transition: border-color 0.3s;
      outline: none;
    }

    .form__input::placeholder,
    .form__textarea::placeholder {
      color: var(--ink-mute);
    }

    .form__input:focus,
    .form__textarea:focus {
      border-color: var(--accent);
    }

    .form__textarea {
      resize: none;
      min-height: 100px;
    }

    .form__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .form__chip {
      padding: 10px 18px;
      border: 1px solid var(--line-2);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-dim);
      transition: 0.3s;
      cursor: pointer;
      background: var(--bg-1);
    }

    .form__chip.active,
    .form__chip:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .form__submit {
      position: relative;
      width: 100%;
      padding: 22px;
      background: var(--ink);
      color: var(--bg-1);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      overflow: hidden;
      transition: 0.3s;
      margin-top: 8px;
    }

    .form__submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-1);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .form__submit:hover::before {
      transform: translateX(0);
    }

    .form__submit span {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .contact {
        padding: 100px 24px;
      }

      .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .contact__form {
        padding: 32px;
      }
    }

    /* ===================== FOOTER ===================== */
    .footer {
      position: relative;
      padding: 100px 48px 40px;
      background: var(--bg-0);
      border-top: 1px solid var(--line);
      overflow: hidden;
    }

    .footer__bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(10, 15, 30, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 15, 30, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center top, #000, transparent 70%);
    }

    .footer__cta {
      position: relative;
      text-align: center;
      padding-bottom: 80px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 60px;
    }

    .footer__cta h2 {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(60px, 8vw, 140px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      text-transform: uppercase;
      color: var(--ink);
    }

    .footer__cta .italic {
      font-style: italic;
      color: var(--ink-dim);
    }

    .footer__cta .grad {
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-top: 48px;
      padding: 22px 48px;
      background: var(--ink);
      color: var(--bg-1);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: 0.3s;
    }

    .footer__cta-btn:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-3px);
    }

    .footer__grid {
      position: relative;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer__brand h3 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 32px;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
    }

    .footer__brand p {
      color: var(--ink-dim);
      font-size: 15px;
      line-height: 1.6;
      max-width: 360px;
    }

    .footer__col h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 24px;
    }

    .footer__col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer__col a {
      font-size: 15px;
      color: var(--ink-dim);
      transition: color 0.3s;
    }

    .footer__col a:hover {
      color: var(--accent);
    }

    .footer__bottom {
      position: relative;
      padding-top: 32px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }

    .footer__socials {
      display: flex;
      gap: 12px;
    }

    .footer__socials a {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      transition: 0.3s;
      background: var(--bg-1);
    }

    .footer__socials a:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    .footer__giant {
      position: relative;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(120px, 22vw, 360px);
      line-height: 0.85;
      letter-spacing: -0.06em;
      background: linear-gradient(180deg, rgba(10, 15, 30, 0.14), rgba(10, 15, 30, 0.02));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-align: center;
      margin-top: 40px;
      user-select: none;
    }

    @media (max-width: 900px) {
      .footer {
        padding: 60px 24px 32px;
      }

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

      .footer__bottom {
        flex-direction: column;
      }

      .footer__giant{
        font-size: clamp(60px, 20vw, 360px);
      }
    }

    @media (max-width: 600px) {
      .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    /* ===================== REVEAL ANIMATIONS ===================== */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s, transform 1s cubic-bezier(.18, .89, .32, 1);
    }

    .reveal-up.in {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-fade {
      opacity: 0;
      transition: opacity 1.2s;
    }

    .reveal-fade.in {
      opacity: 1;
    }

    .line-mask {
      display: block;
      overflow: hidden;
    }

    .line-mask>* {
      display: inline-block;
      transform: translateY(110%);
      transition: transform 1s cubic-bezier(.18, .89, .32, 1);
    }

    .line-mask.in>* {
      transform: translateY(0);
    }

    /* ===================== UTILITIES ===================== */
    .row {
      display: flex;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      border: 1px solid var(--line-2);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink);
      transition: 0.3s;
      background: var(--bg-1);
    }

    .btn-ghost:hover {
      background: var(--ink);
      color: var(--bg-1);
    }

    /* ===================== CONTACT POPUP MODAL ===================== */
    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .contact-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .contact-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 20, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .contact-modal__dialog {
      position: relative;
      width: 100%;
      max-width: 560px;
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      padding: 44px 48px;
      border: 1px solid var(--line-2);
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86));
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
      box-shadow: 0 40px 90px -28px rgba(15, 23, 42, 0.4);
      transform: translateY(24px) scale(0.97);
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    }

    .contact-modal.is-open .contact-modal__dialog {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .contact-modal__close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line-2);
      border-radius: 50%;
      background: var(--bg-1);
      color: var(--ink-dim);
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-modal__close:hover {
      background: var(--ink);
      color: var(--bg-1);
      transform: rotate(90deg);
    }

    .contact-modal__head {
      margin-bottom: 28px;
      padding-right: 40px;
    }

    .contact-modal__head h3 {
      margin-top: 14px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(28px, 4vw, 36px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--ink);
    }

    .contact-modal__head h3 .grad {
      background: var(--grad-1);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .contact-modal__head p {
      margin-top: 14px;
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-dim);
    }

    /* Email + phone share a row on wider screens. */
    .contact-modal__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 28px;
    }

    .contact-modal__form .form__row {
      margin-bottom: 22px;
    }

    .contact-modal__form .form__textarea {
      min-height: 90px;
    }

    .form__error {
      display: none;
      margin-top: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.04em;
      color: var(--hot);
    }

    .form__row.has-error .form__input,
    .form__row.has-error .form__textarea {
      border-color: var(--hot);
    }

    .form__row.has-error .form__error {
      display: block;
    }

    /* Honeypot — kept in the layout flow but hidden from humans. */
    .contact-modal__hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .contact-modal__feedback {
      display: none;
      margin-bottom: 18px;
      padding: 14px 18px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-modal__feedback.is-success {
      display: block;
      background: rgba(0, 150, 107, 0.12);
      border: 1px solid rgba(0, 150, 107, 0.35);
      color: var(--accent);
    }

    .contact-modal__feedback.is-error {
      display: block;
      background: rgba(230, 57, 70, 0.1);
      border: 1px solid rgba(230, 57, 70, 0.32);
      color: var(--hot);
    }

    .contact-modal__spinner {
      position: relative;
      z-index: 2;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #fff;
      animation: contactSpin 0.7s linear infinite;
      display: none;
    }

    .contact-modal__form.is-submitting .contact-modal__spinner {
      display: inline-block;
    }

    .contact-modal__form.is-submitting .form__submit {
      pointer-events: none;
      opacity: 0.85;
    }

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

    /* Lock background scroll while the modal is open. */
    body.contact-modal-open {
      overflow: hidden;
    }

    @media (max-width: 600px) {
      .contact-modal {
        padding: 16px;
      }

      .contact-modal__dialog {
        padding: 36px 24px;
        border-radius: 24px;
      }

      .contact-modal__grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .contact-modal__head {
        padding-right: 32px;
      }
    }
