/* ============================================================
       CSS VARIABLES & RESET
       ============================================================ */
    :root {
      --color-brand-blue: #7BB8FF;
      --color-brand-blue-light: #B7D9FF;
      --color-brand-blue-pale: #EAF4FF;
      --color-brand-pink: #F78AB8;
      --color-brand-pink-light: #FFD1E3;
      --color-brand-pink-pale: #FFF0F6;
      --color-ink: #1E293B;
      --color-body: #475569;
      --color-mute: #64748B;
      --color-line: #E8EDF4;
      --color-background: #FAFBFD;
      --font-display: 'Poppins', 'Inter', sans-serif;
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-mono: 'Space Mono', monospace;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--color-background);
      color: var(--color-body);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      min-height: 100vh;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      color: var(--color-ink);
      letter-spacing: 0;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    .skip-link {
      position: absolute;
      left: 1rem;
      top: -3.5rem;
      z-index: 1000;
      padding: 0.85rem 1.1rem;
      border-radius: 0.85rem;
      background: #ffffff;
      color: var(--color-ink);
      font-weight: 700;
      box-shadow: 0 14px 30px -18px rgba(15, 23, 42, 0.35);
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 1rem;
    }
    :focus-visible {
      outline: 3px solid var(--color-brand-blue);
      outline-offset: 3px;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    ul { list-style: none; }
    input, textarea, select { font-family: inherit; }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    @keyframes float-slow {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-18px) rotate(2deg); }
    }
    @keyframes blob {
      0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
      50% { border-radius: 58% 42% 37% 63% / 56% 59% 41% 44%; }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes layers-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    @keyframes spark-spin {
      0%, 100% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(15deg) scale(1.06); }
    }
    @keyframes target-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    @keyframes handshake-wave {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(6deg); }
      75% { transform: rotate(-6deg); }
    }
    @keyframes scaleX {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes progressBar {
      from { transform: scaleX(0); }
    }

    .animate-float-slow { animation: float-slow 7s ease-in-out infinite; }
    .animate-blob { animation: blob 14s ease-in-out infinite; }
    .animate-marquee { animation: marquee 40s linear infinite; }
    .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

    /* ============================================================
       LAYOUT UTILITIES
       ============================================================ */
    .container {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
    @media (min-width: 1024px) {
      .container { padding-left: 2.5rem; padding-right: 2.5rem; }
    }

    /* ============================================================
       NAV
       ============================================================ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.70);
      border-bottom: 1px solid var(--color-line);
    }
    .nav__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    @media (min-width: 1024px) { .nav__inner { padding: 0 2.5rem; } }
.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.nav__logo img {
  display: block;
  height: 36px; /* Adjust between 32px - 40px */
  width: auto;
  object-fit: contain;
}
    .nav__links {
      display: none;
      align-items: center;
      gap: 2rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--color-body);
    }
    @media (min-width: 768px) { .nav__links { display: flex; } }
    .nav__links a {
      position: relative;
      transition: color 0.2s;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 2px;
      width: 0;
      background: var(--color-brand-pink);
      transition: width 0.3s;
    }
    .nav__links a:hover { color: var(--color-ink); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta {
      display: none;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      border-radius: 9999px;
      background: var(--color-brand-blue);
      color: #10203f;
      font-size: 0.875rem;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.22);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      box-shadow: 0 14px 30px -14px rgba(91, 126, 213, 0.58);
    }
    @media (min-width: 640px) { .nav__cta { display: inline-flex; } }
    .nav__cta:hover {
      transform: translateY(-2px);
      background: var(--color-brand-blue);
      box-shadow: 0 20px 36px -16px rgba(104, 122, 204, 0.62);
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      background:
        radial-gradient(circle at 50% 48%, rgba(30,41,59,0.42) 0 30%, rgba(15,23,42,0.24) 52%, transparent 72%),
        radial-gradient(circle at 12% 24%, rgba(123,184,255,0.26), transparent 34%),
        radial-gradient(circle at 88% 74%, rgba(247,138,184,0.28), transparent 36%),
        linear-gradient(110deg, #08111f 0%, #111827 48%, #201122 100%);
    }
    .hero__blob1 {
      position: absolute;
      left: -8rem; top: 8rem;
      width: 28rem; height: 28rem;
      background: rgba(123, 184, 255, 0.16);
      filter: blur(72px);
      border-radius: 50%;
    }
    .hero__blob2 {
      position: absolute;
      right: -8rem; bottom: 0;
      width: 26rem; height: 26rem;
      background: rgba(247, 138, 184, 0.18);
      filter: blur(72px);
      border-radius: 50%;
    }
    .hero__blob1, .hero__blob2 { animation: blob 14s ease-in-out infinite; }
    .hero__blob2 { animation-delay: -4s; }
    .hero__dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.36;
      pointer-events: none;
    }
    .hero__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      min-height: inherit;
      padding: 7.5rem 1.5rem 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @media (min-width: 1024px) {
      .hero__inner {
        padding: 5.5rem 2.5rem 5.5rem;
      }
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: white;
      border: 1px solid var(--color-line);
      font-size: 0.75rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-mute);
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    .hero__badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--color-brand-pink);
      animation: pulse 2s infinite;
    }
    .hero__content {
      position: relative;
      z-index: 3;
      width: min(100%, 1180px);
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
    }
    .hero__pills {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    .hero__pills span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0.55rem 1.25rem;
      border-radius: 9999px;
      background: rgba(15,23,42,0.62);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 16px 40px -26px rgba(0,0,0,0.7);
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem;
      font-weight: 600;
      backdrop-filter: blur(12px);
    }
    .hero__pills span:first-child { background: rgba(123,184,255,0.18); color: #b7d9ff; }
    .hero__pills span:last-child { background: rgba(247,138,184,0.18); color: #ffd1e3; }
    .hero__h1 {
      max-width: 980px;
      margin: 2.75rem auto 0;
      font-family: var(--font-display);
      font-size: clamp(2.55rem, 4.35vw, 4.1rem);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: 0.004em;
      color: #f8fafc;
      text-wrap: balance;
      text-shadow: 0 12px 30px rgba(7, 10, 18, 0.3);
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.1s forwards;
    }
    .hero__phrase {
      position: relative;
      display: inline-block;
      z-index: 1;
      padding-inline: 0.02em;
    }
    .hero__phrase::after {
      content: '';
      position: absolute;
      left: -0.06em;
      right: -0.06em;
      bottom: 0.1em;
      height: 0.16em;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 160, 204, 0.18), rgba(247, 138, 184, 0.52), rgba(255, 160, 204, 0.18));
      box-shadow: 0 0 24px rgba(247, 138, 184, 0.18);
      z-index: -1;
    }
    .hero__accent {
      display: inline-block;
      color: #ff8dbd;
      text-shadow: 0 0 24px rgba(247, 138, 184, 0.18);
    }
    .hero__h1 .highlight {
      position: relative;
      display: inline-block;
    }
    .hero__h1 .highlight::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 4px;
      height: 12px;
      background: var(--color-brand-pink-light);
      z-index: -1;
      border-radius: 3px;
    }
    .hero__h1 .blue { color: var(--color-brand-blue); }
    .hero__desc {
      margin: 2.5rem auto 0;
      font-size: clamp(1rem, 1.8vw, 1.18rem);
      color: rgba(226,232,240,0.86);
      max-width: 43rem;
      line-height: 1.75;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.2s forwards;
    }
    .hero__actions {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.3s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.75rem;
      border-radius: 9999px;
      background: var(--color-brand-pink);
      color: #10203f;
      font-weight: 600;
      font-size: 1rem;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 22px 46px -18px rgba(71, 113, 201, 0.55);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--color-brand-pink);
      box-shadow: 0 28px 56px -20px rgba(90, 112, 196, 0.62);
    }
    .btn-primary .arrow { transition: transform 0.2s; display: inline-block; }
    .btn-primary:hover .arrow { transform: translateX(4px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      min-height: 54px;
      padding: 1rem 1.75rem;
      border-radius: 9999px;
      background: rgba(123,184,255,0.16);
      border: 1px solid rgba(123,184,255,0.34);
      box-shadow: 0 18px 38px -26px rgba(0,0,0,0.7);
      color: #f8fafc;
      font-weight: 600;
      backdrop-filter: blur(14px);
      transition: color 0.2s, transform 0.2s, border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover {
      color: #ffffff;
      transform: translateY(-2px);
      border-color: rgba(247,138,184,0.42);
      background: rgba(247,138,184,0.18);
    }
    .btn-secondary__icon {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: white;
      border: 1px solid var(--color-line);
    }
    .hero__showcase {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      animation: scaleIn 0.9s ease 0.15s forwards;
    }
    .hero__showcase::before,
    .hero__showcase::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero__showcase::before {
      background: transparent;
      z-index: 3;
    }
    .hero__showcase::after {
      background: transparent;
      z-index: 4;
    }
    .hero__scene {
      position: absolute;
      inset: 0;
      z-index: 2;
      will-change: transform;
    }
    .hero__glow {
      position: absolute;
      width: 38vw;
      height: 38vw;
      min-width: 360px;
      min-height: 360px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.22;
      z-index: 1;
      will-change: transform;
    }
    .hero__glow--left {
      left: -10vw;
      top: 18%;
      background: rgba(123,184,255,0.34);
    }
    .hero__glow--right {
      right: -9vw;
      bottom: 2%;
      background: rgba(247,138,184,0.36);
    }
    .hero-plane {
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      width: var(--w);
      aspect-ratio: var(--ratio, 1.55);
      object-fit: contain;
      object-position: center;
      border: 0;
      border-radius: 0;
      opacity: var(--alpha, 0.5);
      filter: saturate(0.78) contrast(0.92) brightness(0.72) blur(var(--blur, 0px));
      box-shadow: 0 30px 80px -44px rgba(0,0,0,0.88);
      transform:
        translate3d(
          calc(-50% + var(--x)),
          calc(-50% + var(--y)),
          0
        )
        rotateZ(var(--rz))
        scale(var(--s));
      transform-origin: center;
      backface-visibility: hidden;
      will-change: auto;
      animation: none;
    }
    .hero-plane--near-left {
      --w: clamp(250px, 22vw, 340px);
      --ratio: 1.35;
      --x: -42vw;
      --y: -24vh;
      --s: 1;
      --rz: -5deg;
      --alpha: 0.64;
      --blur: 0.2px;
      --float-speed: 9s;
    }
    .hero-plane--mid-left {
      --w: clamp(260px, 24vw, 360px);
      --ratio: 1.75;
      --x: -46vw;
      --y: 28vh;
      --s: 0.92;
      --rz: 4deg;
      --alpha: 0.56;
      --blur: 0.4px;
      --float-speed: 11s;
    }
    .hero-plane--far-left {
      --w: clamp(130px, 13vw, 200px);
      --ratio: 1.1;
      --x: -27vw;
      --y: -34vh;
      --s: 0.8;
      --rz: 8deg;
      --alpha: 0.28;
      --blur: 1.4px;
      --float-speed: 13s;
    }
    .hero-plane--near-right {
      --w: clamp(265px, 25vw, 390px);
      --ratio: 1.58;
      --x: 39vw;
      --y: 27vh;
      --s: 1;
      --rz: 6deg;
      --alpha: 0.62;
      --blur: 0.25px;
      --float-speed: 9.5s;
    }
    .hero-plane--mid-right {
      --w: clamp(260px, 25vw, 380px);
      --ratio: 1.95;
      --x: 41vw;
      --y: -24vh;
      --s: 0.9;
      --rz: -5deg;
      --alpha: 0.54;
      --blur: 0.45px;
      --float-speed: 10.8s;
    }
    .hero-plane--far-right {
      --w: clamp(130px, 13vw, 205px);
      --ratio: 1.3;
      --x: 30vw;
      --y: -36vh;
      --s: 0.82;
      --rz: -9deg;
      --alpha: 0.25;
      --blur: 1.5px;
      --float-speed: 14s;
    }
    .hero-plane--horizon-left {
      --w: clamp(110px, 12vw, 180px);
      --ratio: 1.35;
      --x: -15vw;
      --y: -33vh;
      --z: -620px;
      --s: 0.42;
      --rx: 9deg;
      --ry: 9deg;
      --rz: -12deg;
      --alpha: 0.16;
      --blur: 4.2px;
      --float-speed: 16s;
      display: none;
    }
    .hero-plane--horizon-right {
      --w: clamp(115px, 12vw, 190px);
      --ratio: 1.4;
      --x: 18vw;
      --y: 37vh;
      --z: -660px;
      --s: 0.44;
      --rx: -8deg;
      --ry: -10deg;
      --rz: 13deg;
      --alpha: 0.15;
      --blur: 4.6px;
      --float-speed: 17s;
      display: none;
    }
    .hero-plane--deep-left {
      --w: clamp(140px, 15vw, 220px);
      --ratio: 1.45;
      --x: -43vw;
      --y: 2vh;
      --z: -520px;
      --s: 0.52;
      --rx: 6deg;
      --ry: 22deg;
      --rz: -14deg;
      --alpha: 0.2;
      --blur: 3.6px;
      --float-speed: 15.5s;
      display: none;
    }
    .hero-plane--deep-right {
      --w: clamp(135px, 14vw, 215px);
      --ratio: 1.35;
      --x: 46vw;
      --y: 5vh;
      --z: -560px;
      --s: 0.5;
      --rx: -8deg;
      --ry: -24deg;
      --rz: 12deg;
      --alpha: 0.18;
      --blur: 3.8px;
      --float-speed: 16.5s;
      display: none;
    }
    .hero-plane--upper-left {
      --w: clamp(145px, 16vw, 240px);
      --ratio: 1.3;
      --x: -28vw;
      --y: -38vh;
      --z: -120px;
      --s: 0.7;
      --rx: -7deg;
      --ry: 20deg;
      --rz: 9deg;
      --alpha: 0.3;
      --blur: 1.9px;
      --float-speed: 12.5s;
      display: none;
    }
    .hero-plane--upper-right {
      --w: clamp(145px, 16vw, 245px);
      --ratio: 1.42;
      --x: 29vw;
      --y: -40vh;
      --z: -150px;
      --s: 0.68;
      --rx: 8deg;
      --ry: -21deg;
      --rz: -8deg;
      --alpha: 0.28;
      --blur: 2px;
      --float-speed: 13.2s;
      display: none;
    }
    .hero-plane--lower-left {
      --w: clamp(150px, 17vw, 260px);
      --ratio: 1.5;
      --x: -30vw;
      --y: 42vh;
      --z: -90px;
      --s: 0.74;
      --rx: 8deg;
      --ry: 26deg;
      --rz: -6deg;
      --alpha: 0.32;
      --blur: 1.6px;
      --float-speed: 12s;
    }
    .hero-plane--lower-right {
      --w: clamp(150px, 17vw, 255px);
      --ratio: 1.4;
      --x: 25vw;
      --y: 44vh;
      --z: -110px;
      --s: 0.72;
      --rx: -6deg;
      --ry: -25deg;
      --rz: 7deg;
      --alpha: 0.3;
      --blur: 1.7px;
      --float-speed: 12.8s;
    }
    @media (max-width: 1180px) {
      .hero-plane--near-left { --x: -50vw; }
      .hero-plane--near-right { --x: 40vw; }
      .hero-plane--mid-left { --x: -58vw; }
      .hero-plane--mid-right { --x: 44vw; }
    }
    @media (max-width: 900px) {
      .hero {
        min-height: 100vh;
      }
      .hero__inner {
        padding: 6.5rem 1.25rem 4rem;
        display: block;
      }
      .hero__showcase {
        overflow: hidden;
      }
      .hero__scene { inset: 0; }
      .hero-plane--near-left {
        --w: 270px;
        --x: -55vw;
        --y: 68vh;
        --z: 70px;
        --s: 0.86;
      }
      .hero-plane--near-right {
        --w: 275px;
        --x: 46vw;
        --y: 74vh;
        --z: 50px;
        --s: 0.84;
      }
      .hero-plane--mid-left {
        --w: 220px;
        --x: -48vw;
        --y: -24vh;
        --z: -180px;
        --s: 0.62;
      }
      .hero-plane--mid-right {
        --w: 230px;
        --x: 42vw;
        --y: -20vh;
        --z: -210px;
        --s: 0.62;
      }
      .hero-plane--far-left,
      .hero-plane--far-right,
      .hero-plane--horizon-left,
      .hero-plane--horizon-right,
      .hero-plane--deep-left,
      .hero-plane--deep-right,
      .hero-plane--upper-left,
      .hero-plane--upper-right,
      .hero-plane--lower-left,
      .hero-plane--lower-right {
        display: none;
      }
    }
    @media (max-width: 560px) {
      .hero__content {
        text-align: center;
      }
      .hero__pills {
        justify-content: center;
      }
      .hero__h1 {
        margin-top: 2.25rem;
        max-width: 20rem;
        font-size: clamp(2rem, 8.35vw, 2.4rem);
        line-height: 1.08;
        letter-spacing: 0.003em;
      }
      .hero__desc {
        margin-top: 2rem;
      }
      .hero__actions { align-items: stretch; }
      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .hero-plane--near-left {
        --x: -62vw;
        --y: 72vh;
        --s: 0.76;
        --alpha: 0.42;
      }
      .hero-plane--near-right {
        --x: 50vw;
        --y: 79vh;
        --s: 0.75;
        --alpha: 0.42;
      }
      .hero-plane--mid-left,
      .hero-plane--mid-right {
        --alpha: 0.18;
        --blur: 3px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero__scene {
        transition: none;
      }
      .hero-plane {
        animation: none;
      }
    }

    /* ============================================================
       MARQUEE
       ============================================================ */
    .marquee-bar {
      border-top: 1px solid var(--color-line);
      border-bottom: 1px solid var(--color-line);
      background: white;
      padding: 1.25rem 0;
      overflow: hidden;
    }
    .marquee-bar__inner {
      display: flex;
      gap: 3rem;
      animation: marquee 40s linear infinite;
      white-space: nowrap;
    }
    .marquee-bar__item {
      display: flex;
      align-items: center;
      gap: 3rem;
      color: var(--color-mute);
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .marquee-bar__dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--color-brand-pink);
      flex-shrink: 0;
    }

    /* ============================================================
       ABOUT
       ============================================================ */
    .about {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) {
      .about { grid-template-columns: 1fr 1.3fr; padding: 8rem 2.5rem; }
      .about__stats { grid-column: 1 / -1; }
    }
    .section-eyebrow {
      display: inline-flex;
      font-size: 0.72rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink);
    }
    .about__h2 {
      margin-top: 1rem;
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.12;
      color: var(--color-ink);
    }
    .about__body { display: flex; flex-direction: column; gap: 1.25rem; }
    .about__body p {
      max-width: 46rem;
      font-size: 1.05rem;
      line-height: 1.72;
      color: #42536a;
    }
    .about__body p:last-child { color: var(--color-ink); font-weight: 600; }
    .about__stats {
      display: grid;
      gap: 1rem;
      margin-top: 0.25rem;
    }
    @media (min-width: 768px) {
      .about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }
    }
    @media (min-width: 1200px) {
      .about__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    .about-stat {
      position: relative;
      min-height: 180px;
      padding: 1.35rem;
      border-radius: 26px;
      background:
        linear-gradient(180deg, #a9d0ff, #8fc0fb),
        radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 52%);
      border: 1px solid rgba(123, 184, 255, 0.24);
      box-shadow: 0 22px 42px -30px rgba(44, 78, 142, 0.24);
      overflow: hidden;
    }
    .about-stat:nth-child(3),
    .about-stat:nth-child(4) {
      background:
        linear-gradient(180deg, #f8a8c8, #f08db8),
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 50%);
      border-color: rgba(247, 138, 184, 0.24);
      box-shadow: 0 22px 42px -30px rgba(136, 54, 95, 0.22);
    }
    .about-stat::before {
      content: '';
      position: absolute;
      inset: auto auto -42px -28px;
      width: 122px;
      height: 122px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(74,108,247,0.14), transparent 72%);
      pointer-events: none;
    }
    .about-stat--accent {
      background:
        linear-gradient(180deg, rgba(32,40,72,0.98), rgba(20,27,53,0.96)),
        radial-gradient(circle at top right, rgba(255,141,189,0.28), transparent 50%);
      color: #f8fafc;
      border-color: rgba(255,255,255,0.08);
    }
    .about-stat--accent::before {
      background: radial-gradient(circle, rgba(255,141,189,0.2), transparent 72%);
    }
    .about-stat__value {
      display: inline-flex;
      align-items: center;
      margin-bottom: 0.8rem;
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.04;
      color: #10203f;
      letter-spacing: 0;
    }
    .about-stat--accent .about-stat__value {
      color: #ffffff;
    }
    .about-stat__label {
      max-width: 15rem;
      font-size: 0.95rem;
      line-height: 1.62;
      color: rgba(16, 32, 63, 0.84);
    }
    .about-stat--accent .about-stat__label {
      color: rgba(226,232,240,0.82);
    }

    /* ============================================================
       SERVICES — horizontal scroll pinned
       ============================================================ */
    .services-section {
      position:relative;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
      margin: 0 100px;
    }
    .services-sticky {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .services-header {
      padding: 4rem 1.5rem 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
    }
    @media (min-width: 1024px) { .services-header { padding: 5rem 3rem 0; } }
    .services-header__actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .services-header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
      color: var(--color-ink);
    }
    .services-scroll-hint {
      display: none;
      max-width: 20rem;
      font-size: 0.875rem;
      color: var(--color-mute);
    }
    @media (min-width: 768px) { .services-scroll-hint { display: block; } }
    .services-track-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      cursor: grab;
      touch-action: pan-x;
      user-select: none;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .services-track-wrap:focus-visible {
      outline-offset: -6px;
    }
    .services-track-wrap::-webkit-scrollbar { display: none; }
    .services-track-wrap.is-dragging { cursor: grabbing; }
    .services-track {
      display: flex;
      gap: 1.5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      will-change: auto;
    }
    @media (min-width: 1024px) { .services-track { gap: 2rem; padding-left: 3rem; padding-right: 3rem; } }
    .service-card {
      position: relative;
      flex-shrink: 0;
      width: 78vw;
      height: 70vh;
      max-height: 640px;
      border-radius: 36px;
      padding: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 30px 60px -20px rgba(30,41,59,0.18);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
      cursor: pointer;
    }
    @media (min-width: 640px) { .service-card { width: 60vw; } }
    @media (min-width: 768px) { .service-card { width: 44vw; } }
    @media (min-width: 1024px) { .service-card { width: 36vw; } }
    @media (min-width: 1280px) { .service-card { width: 32vw; } }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.5), transparent 60%);
      pointer-events: none;
    }
    .service-card:hover {
      transform: translateY(-10px) rotate(-0.5deg);
      box-shadow: 0 40px 80px -20px rgba(30,41,59,0.25);
    }
    .service-card__top {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      margin-bottom: 0.75rem;
      flex-shrink: 0;
    }
    .service-chip {
      position: absolute;
      left: 1.25rem;
      top: 1.25rem;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-ink);
    }
    .service-card__thumb {
      position: relative;
      flex-shrink: 0;
      width: 100%;
      height: 40%;
      min-height: 220px;
      border-radius: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.34);
      border: 0;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.36), 0 18px 36px -30px rgba(30,41,59,0.5);
    }
    .service-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.98) contrast(0.98);
      transition: transform 0.45s ease;
    }
    .service-card:hover .service-card__thumb img {
      transform: scale(1.04);
    }
    .service-card__bottom {
      position: relative;
      flex: 1;
      padding: 1.25rem 1.5rem 1.35rem;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }
    @media (min-width: 1024px) {
      .service-card__bottom { padding: 1.25rem 1.6rem 1.45rem; }
    }
    .service-card h3 {
      font-size: 1.72rem;
      font-weight: 800;
      color: var(--color-ink);
      line-height: 1.16;
    }
    .service-card p {
      margin-top: 0.6rem;
      font-size: 0.92rem;
      color: rgba(30,41,59,0.75);
      line-height: 1.62;
    }
    .service-card ul {
      margin-top: 0.85rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }
    .service-card li {
      padding: 0.42rem 0.7rem;
      min-height: 30px;
      border-radius: 9999px;
      background: rgba(255,255,255,0.46);
      border: 1px solid rgba(255,255,255,0.42);
      box-shadow: 0 12px 26px -22px rgba(30,41,59,0.42);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-ink);
      line-height: 1.2;
    }
    .service-card__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      width: fit-content;
      min-height: 38px;
      margin-top: auto;
      padding: 0.6rem 1rem;
      border-radius: 9999px;
      background: var(--color-ink);
      color: white;
      font-size: 0.8125rem;
      font-weight: 700;
      box-shadow: 0 16px 30px -22px rgba(30,41,59,0.7);
      transition: transform 0.2s, background 0.2s;
    }
    .service-card__cta span {
      transition: transform 0.2s;
    }
    .service-card__cta:hover {
      transform: translateY(-2px);
      background: white;
      color: var(--color-ink);
    }
    .service-card__cta:hover span {
      transform: translateX(3px);
    }
    .services-progress {
      padding: 0 1.5rem 2rem;
    }
    @media (min-width: 1024px) { .services-progress { padding: 0 3rem 2rem; } }
    .services-progress__bar {
      height: 4px;
      background: var(--color-line);
      border-radius: 9999px;
      overflow: hidden;
    }
    .services-progress__fill {
      height: 100%;
      background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-pink));
      border-radius: 9999px;
      transform-origin: 0 50%;
      transform: scaleX(0);
      transition: transform 0.1s linear;
    }
    .services-nav {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .services-nav__arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      border: none;
      transition: background 0.2s, color 0.2s, opacity 0.2s;
      font-size: 1rem;
    }
    .services-nav__arrow--prev {
      background: white;
      border: 1px solid var(--color-line);
      color: var(--color-ink);
    }
    .services-nav__arrow--prev:hover:not(:disabled) { background: var(--color-brand-blue-pale); }
    .services-nav__arrow--next {
      background: var(--color-ink);
      color: white;
    }
    .services-nav__arrow--next:hover:not(:disabled) { background: var(--color-brand-blue); color: var(--color-ink); }
    .services-nav__arrow:disabled {
      opacity: 0.45;
      cursor: default;
    }

    /* ============================================================
       WORKS
       ============================================================ */
    .works {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
    }
    @media (min-width: 1024px) { .works { padding: 8rem 2.5rem; } }
    .works__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .works__header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
    }
    .works__view-all {
      display: none;
      font-size: 0.875rem;
      font-weight: 600;
      color: #365ca8;
      transition: color 0.2s, transform 0.2s;
    }
    @media (min-width: 768px) { .works__view-all { display: inline-flex; } }
    .works__view-all:hover {
      color: var(--color-brand-pink);
      transform: translateX(2px);
    }
    .works__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    @media (min-width: 1024px) { .works__grid { grid-template-columns: 1.4fr 1fr; } }

    /* Before/After */
    .before-after {
      position: relative;
      border-radius: 36px;
      overflow: hidden;
      height: 420px;
      user-select: none;
      cursor: ew-resize;
      background: var(--color-line);
    }
    @media (min-width: 1024px) { .before-after { height: 400px; } }
    .before-after__side { position: absolute; inset: 0; }
    .before-after__clip { position: absolute; inset: 0; overflow: hidden; }
    .before-after__label {
      position: absolute;
      z-index: 10;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background: rgba(0,0,0,0.6);
      color: white;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .before-after__label--after { top: 1rem; right: 1rem; }
    .before-after__label--before { top: 1rem; left: 1rem; }
    .before-after__divider {
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: white;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }
    .before-after__handle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: white;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      font-weight: 700;
      color: var(--color-ink);
      font-size: 1rem;
    }
    .art-before {
      width: 100%; height: 100%;
      background: #FFF0F6;
      display: grid;
      place-items: center;
    }
    .art-after {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #EAF4FF, #FFD1E3);
      display: grid;
      place-items: center;
    }
    .art-before svg, .art-after svg { width: 75%; }
    .works__case {
      border-radius: 36px;
      padding: 2rem;
      background: linear-gradient(180deg, #7bb8ff, #5f97dc);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 300px;
      box-shadow: 0 22px 48px -28px rgba(44, 78, 142, 0.35);
    }
    @media (min-width: 1024px) { .works__case { padding: 2.5rem; } }
    .case-chip {
      display: inline-flex;
      align-items: center;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: white;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-ink);
      width: fit-content;
    }
    .works__case h3 {
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1.22;
    }
    .works__case p { margin-top: 0.75rem; color: rgba(16, 32, 63, 0.82); }

    /* Carousel */
    .carousel { position: relative; }
    .carousel__track-wrap { overflow: hidden; border-radius: 28px; }
    .carousel__track {
      display: flex;
      gap: 1.5rem;
      will-change: transform;
    }
    .carousel__slide {
      position: relative;
      flex-shrink: 0;
      border-radius: 28px;
      overflow: hidden;
      background: var(--color-line);
      height: 200px;
      transition: transform 0.3s;
    }
    .carousel__slide:hover { transform: scale(1.02); }
    .carousel__slide img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .carousel__slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.35rem;
      padding: 1.25rem;
    }
    .carousel__slide:hover .carousel__slide-overlay { opacity: 1; }
    .carousel__slide-overlay span {
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
      background: rgba(123,184,255,0.22);
      border: 1px solid rgba(123,184,255,0.5);
      border-radius: 999px;
      padding: 0.3rem 0.85rem;
      display: inline-block;
    }
    .carousel__slide-overlay small {
      color: rgba(255,255,255,0.82);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .carousel__controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.5rem;
    }
    .carousel__dots { display: flex; gap: 0.5rem; }
    .carousel__dot {
      height: 6px;
      border-radius: 9999px;
      transition: width 0.3s, background 0.3s;
      width: 12px;
      background: var(--color-line);
      cursor: pointer;
      border: none;
    }
    .carousel__dot.active {
      width: 32px;
      background: var(--color-brand-pink);
    }
    .carousel__arrows { display: flex; gap: 0.5rem; }
    .carousel__arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      border: none;
      transition: background 0.2s, color 0.2s;
      font-size: 1rem;
    }
    .carousel__arrow--prev {
      background: white;
      border: 1px solid var(--color-line);
      color: var(--color-ink);
    }
    .carousel__arrow--prev:hover { background: var(--color-brand-blue-pale); }
    .carousel__arrow--next {
      background: var(--color-ink);
      color: white;
    }
    .carousel__arrow--next:hover { background: var(--color-brand-blue); color: var(--color-ink); }

    /* ============================================================
       WHY VERTEX
       ============================================================ */
    .why {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
    }
    @media (min-width: 1024px) { .why { padding: 8rem 2.5rem; } }
    .why__intro { text-align: center; max-width: 48rem; margin: 0 auto; }
    .why__intro h2 {
      margin-top: 1rem;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.1;
    }
    .why__intro h2 .blue { color: var(--color-brand-blue); }
    .why__intro h2 .pink { color: var(--color-brand-pink); }
    .why__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
    }
    @media (min-width: 640px) { .why__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }
    .why-card {
      position: relative;
      border-radius: 28px;
      padding: 1.5rem;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.14);
      color: white;
      box-shadow: 0 22px 44px -28px rgba(15, 23, 42, 0.28);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
      opacity: 0;
      transform: translateY(40px);
    }
    .why-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s;
    }
    .why-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .why-card__icon {
      aspect-ratio: 1;
      border-radius: 16px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 1.25rem;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .why-card__icon svg { width: 75%; height: 75%; }
    .why-card h3 { font-size: 1.25rem; font-weight: 700; color: white; }
    .why-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.82); line-height: 1.65; }
    .why-card__ring {
      position: absolute;
      inset: 0;
      border-radius: 28px;
      border: 2px solid transparent;
      pointer-events: none;
      transition: border-color 0.2s;
    }
    .why-card:hover .why-card__ring { border-color: rgba(255,255,255,0.16); }

    /* ============================================================
       PROCESS
       ============================================================ */
    .process-section {
      position: relative;
      padding: 6rem 0;
      background: linear-gradient(135deg, #f7faff 0%, #fff8fb 100%);
      overflow: hidden;
    }
    .process-sticky { position: relative; }
    .process-header {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) { .process-header { padding: 0 2.5rem 2.5rem; } }
    .process-header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
    }
    .process-header h2 .blue { color: var(--color-brand-blue); }
    .process-cards {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 1.5rem 1.25rem;
      scrollbar-width: thin;
      scrollbar-color: var(--color-brand-blue-light) transparent;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(250px, 1fr));
      gap: 1rem;
      width: 100%;
      min-width: 1060px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .process-card {
      position: relative;
      min-height: 530px;
      border-radius: 24px;
      padding: 1.25rem 1.4rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid #d7deee;
      background: #f2f4fc;
      box-shadow: 0 20px 55px rgba(80, 131, 206, 0.12);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .process-card:nth-child(even) {
      border-color: #f2dbe7;
      background: #fcf1f7;
    }
    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 65px rgba(30, 41, 59, 0.1);
    }
    .process-card__top {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .process-num {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #0f73f6;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(15, 115, 246, 0.22);
    }
    .process-card:nth-child(even) .process-num {
      background: #f72585;
      box-shadow: 0 8px 20px rgba(247, 37, 133, 0.2);
    }
    .process-card__illo {
      width: calc(100% + 0.4rem);
      height: 285px;
      margin: 0.5rem -0.2rem 0;
      overflow: hidden;
      background: #eff2fa;
    }
    .process-card:nth-child(even) .process-card__illo {
      background: #fdf0f4;
    }
    .process-card__illo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .process-card__bottom {
      width: 100%;
      margin-top: auto;
    }
    .process-card h3 {
      font-size: 1.34rem;
      font-weight: 800;
      line-height: 1.16;
      color: var(--color-ink);
    }
    .process-card h3::after {
      content: "";
      display: block;
      width: 42px;
      height: 3px;
      margin: 0.85rem auto 0;
      border-radius: 999px;
      background: var(--color-brand-blue);
    }
    .process-card:nth-child(even) h3::after { background: var(--color-brand-pink); }
    .process-card p {
      max-width: 255px;
      margin: 1rem auto 0;
      font-size: 0.92rem;
      line-height: 1.62;
      color: var(--color-body);
    }
    .process-connector {
      position: absolute;
      z-index: 3;
      top: 42%;
      right: -28px;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      color: var(--color-ink);
      box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
    }
    .process-connector .material-symbols-rounded {
      font-size: 22px;
    }
    @media (min-width: 1024px) {
      .process-cards { padding-inline: 1.5rem; }
      .process-grid { min-width: 0; padding-inline: 1rem; }
    }
    @media (max-width: 700px) {
      .process-section { padding: 4.5rem 0; }
      .process-header { padding-bottom: 2rem; }
      .process-cards {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .process-cards::-webkit-scrollbar { display: none; }
      .process-grid {
        grid-template-columns: repeat(4, minmax(82vw, 1fr));
        min-width: max-content;
        padding-right: 1.5rem;
      }
      .process-card {
        min-height: 520px;
        scroll-snap-align: center;
      }
      .process-connector { display: none; }
    }

    /* ============================================================
       CTA / CONTACT
       ============================================================ */
    .cta { padding: 6rem 1.5rem; }
    @media (min-width: 1024px) { .cta { padding: 6rem 2.5rem; } }
    .cta__box {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      border-radius: 40px;
      overflow: hidden;
      background: var(--color-ink);
      color: white;
      padding: 2rem;
    }
    @media (min-width: 1024px) { .cta__box { padding: 4rem; } }
    .cta__glow1 {
      position: absolute;
      top: -8rem; right: -8rem;
      width: 28rem; height: 28rem;
      background: rgba(123,184,255,0.4);
      border-radius: 50%;
      filter: blur(60px);
    }
    .cta__glow2 {
      position: absolute;
      bottom: -8rem; left: -8rem;
      width: 24rem; height: 24rem;
      background: rgba(247,138,184,0.4);
      border-radius: 50%;
      filter: blur(60px);
    }
    .cta__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .cta__inner { grid-template-columns: 1fr 1.1fr; } }
    .cta__left-eyebrow {
      font-size: 0.72rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink-light);
    }
    .cta__h2 {
      margin-top: 1rem;
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.1;
      color: white;
    }
    .cta__h2 em { font-style: normal; color: var(--color-brand-blue); }
    .cta__desc {
      margin-top: 1.25rem;
      color: rgba(255,255,255,0.78);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 28rem;
    }
    .cta__contact-links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: white;
      transition: color 0.2s;
    }
    .contact-link:hover { color: var(--color-brand-blue); }
    .contact-link__icon {
      display: grid;
      place-items: center;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.15);
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .contact-link:hover .contact-link__icon {
      background: var(--color-brand-blue);
      color: var(--color-ink);
    }
    .contact-link--phone:hover { color: var(--color-brand-pink); }
    .contact-link--phone:hover .contact-link__icon {
      background: var(--color-brand-pink);
      color: var(--color-ink);
    }
    .contact-link__sub { font-size: 0.75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.78); }
    .contact-link__val { font-weight: 600; }

    /* Form */
    .cta__form {
      position: relative;
      border-radius: 24px;
      background: white;
      padding: 1.5rem;
      color: var(--color-ink);
      box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
      opacity: 0;
      transform: translateY(24px);
    }
    .cta__form.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
    @media (min-width: 1024px) { .cta__form { padding: 2rem; } }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    @media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
    .form-group { display: flex; flex-direction: column; }
    .form-label {
      font-size: 0.75rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-mute);
      margin-bottom: 0.5rem;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--color-line);
      background: white;
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      color: var(--color-ink);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--color-brand-blue);
      box-shadow: 0 0 0 4px rgba(123,184,255,0.2);
    }
    .form-textarea { resize: none; }
    .form-error { margin-top: 4px; font-size: 0.75rem; color: #b41663; }
    .form-mt { margin-top: 1rem; }
    .form-submit {
      margin-top: 1.5rem;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 1.5rem;
      border-radius: 9999px;
      background: var(--color-brand-blue);
      color: #10203f;
      font-weight: 600;
      font-size: 0.9375rem;
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      cursor: pointer;
      border: 1px solid rgba(17,24,39,0.04);
      box-shadow: 0 20px 42px -22px rgba(91, 126, 213, 0.52);
    }
    .form-submit:hover:not(:disabled) {
      transform: translateY(-2px);
      background: #96c9ff;
      box-shadow: 0 24px 48px -22px rgba(104, 122, 204, 0.58);
    }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
    .form-success { margin-top: 0.75rem; text-align: center; font-size: 0.875rem; color: var(--color-mute); }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      position: relative;
      margin-top: 2.5rem;
      background: var(--color-ink);
      color: white;
      overflow: hidden;
    }
    .footer__dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }
    .footer__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) { .footer__inner { padding: 5rem 2.5rem 2.5rem; } }
    .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    @media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.footer__logo img {
  display: block;
  height: 80px; /* Adjust if needed */
  width: auto;
  object-fit: contain;
}
    .footer__brand-desc {
      margin-top: 1.25rem;
      color: rgba(255,255,255,0.82);
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 22rem;
    }
    .footer__socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
    .footer__social {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      font-size: 0.75rem;
      font-weight: 600;
      color: white;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .footer__social:hover {
      background: var(--color-brand-blue);
      color: var(--color-ink);
      border-color: transparent;
    }
    .footer__col h4 { font-family: var(--font-display); font-weight: 600; color: white; }
    .footer__col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
    .footer__col li a,
    .footer__col li span { font-size: 0.875rem; color: rgba(255,255,255,0.82); transition: color 0.2s; }
    .footer__col li a:hover { color: var(--color-brand-blue); }
    .footer__newsletter h4 { font-family: var(--font-display); font-weight: 600; color: white; }
    .footer__newsletter p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.82); }
    .footer__newsletter-form {
      margin-top: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      padding: 6px;
      transition: border-color 0.2s;
    }
    .footer__newsletter-form:focus-within { border-color: var(--color-brand-blue); }
    .footer__newsletter-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      color: white;
    }
    .footer__newsletter-input::placeholder { color: rgba(255,255,255,0.7); }
    .footer__newsletter-btn {
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: var(--color-brand-pink);
      color: #10203f;
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      white-space: nowrap;
      box-shadow: 0 14px 28px -18px rgba(91, 126, 213, 0.55);
    }
    .footer__newsletter-btn:hover {
      transform: translateY(-1px);
      background: #ff9fc7;
      box-shadow: 0 18px 30px -18px rgba(104, 122, 204, 0.62);
    }
    .footer__bottom {
      margin-top: 4rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.10);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.78);
    }
    .footer__bottom-links { display: flex; gap: 1.25rem; }
    .footer__bottom-links a,
    .footer__bottom-links span { transition: color 0.2s; color: rgba(255,255,255,0.78); }
    .footer__bottom-links a:hover { color: white; }
    .footer__bottom-brand {
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ============================================================
       SCROLL REVEAL
       ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  

    /* ============================================================
       SUBPAGE HERO + LAYOUTS
       ============================================================ */
    .subhero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--color-brand-blue-pale), white 55%, var(--color-brand-pink-pale));
    }
    .subhero__blob1, .subhero__blob2 {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      animation: blob 14s ease-in-out infinite;
    }
    .subhero__blob1 { left:-6rem; top:4rem; width:22rem; height:22rem; background: rgba(123,184,255,0.30); }
    .subhero__blob2 { right:-6rem; bottom:-4rem; width:20rem; height:20rem; background: rgba(247,138,184,0.30); animation-delay:-4s; }
    .subhero__dots {
      position:absolute; inset:0;
      background-image: radial-gradient(circle, rgba(30,41,59,0.08) 1px, transparent 1px);
      background-size: 24px 24px; opacity:0.5; pointer-events:none;
    }
    .subhero__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem 4rem;
      text-align: center;
    }
    @media (min-width: 1024px) { .subhero__inner { padding: 7rem 2.5rem 5rem; } }
    .subhero__crumb {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink);
      background: white;
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      border: 1px solid var(--color-line);
      margin-bottom: 1.5rem;
    }
    .subhero h1 {
      font-size: 3.45rem;
      font-weight: 800;
      line-height: 1.08;
      max-width: 52rem;
      margin: 0 auto;
    }
    .subhero h1 .blue { color: var(--color-brand-blue); }
    .subhero h1 .highlight { position: relative; display: inline-block; }
    .subhero h1 .highlight::after {
      content:''; position:absolute; left:0; right:0; bottom:4px;
      height:12px; background: var(--color-brand-pink-light);
      z-index:-1; border-radius:3px;
    }
    .subhero p {
      margin: 1.5rem auto 0;
      max-width: 40rem;
      font-size: 1.08rem;
      line-height: 1.7;
      color: var(--color-body);
    }

    /* Generic content section */
    .content-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem;
    }
    @media (min-width: 1024px) { .content-section { padding: 7rem 2.5rem; } }

    /* Feature grid (Production Ready Artwork) */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
    .feature-card {
      background: white;
      border: 1px solid var(--color-line);
      border-radius: 24px;
      padding: 2rem;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px -20px rgba(30,41,59,0.18);
      border-color: transparent;
    }
    .feature-card__chip {
      display:inline-flex; align-items:center;
      padding: 0.3rem 0.8rem;
      border-radius: 9999px;
      background: var(--color-brand-blue-pale);
      color: var(--color-ink);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0;
      font-weight: 700;
      text-transform: uppercase;
    }
    .feature-card h3 {
      margin-top: 1rem;
      font-size: 1.28rem;
      font-weight: 800;
      line-height: 1.2;
      color: var(--color-ink);
    }
    .feature-card p {
      margin-top: 0.5rem;
      font-size: 0.96rem;
      line-height: 1.65;
      color: var(--color-body);
    }

    /* Two-column pitch */
    .pitch {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .pitch { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
    .pitch h2 {
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
      margin-top: 1rem;
    }
    .pitch__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .pitch__list li {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1rem 1.25rem;
      background: white;
      border: 1px solid var(--color-line);
      border-radius: 16px;
    }
    .pitch__list .bullet {
      width: 28px; height: 28px; border-radius: 8px;
      display: grid; place-items: center;
      background: var(--color-brand-pink-light);
      color: var(--color-ink);
      font-weight: 700;
      flex-shrink: 0;
      font-size: 0.875rem;
    }
    .pitch__list strong { color: var(--color-ink); display:block; margin-bottom: 0.15rem; }
    .pitch__list p { font-size: 0.9375rem; color: var(--color-body); line-height: 1.6; }

    @media (max-width: 640px) {
      .about__h2,
      .services-header h2,
      .works__header h2,
      .process-header h2,
      .cta__h2,
      .pitch h2,
      .why__intro h2,
      .service-page__header h2 {
        font-size: 2.05rem;
        line-height: 1.15;
      }

      .subhero h1 {
        font-size: 2.25rem;
        line-height: 1.12;
      }

      .subhero p,
      .about__body p,
      .cta__desc {
        font-size: 1rem;
        line-height: 1.68;
      }

      .service-card h3,
      .works__case h3 {
        font-size: 1.42rem;
      }
    }

    /* Works page grid */
    .works-page-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .works-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }
    .works-filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0.7rem 1rem;
      border-radius: 9999px;
      background: white;
      border: 1px solid rgba(30,41,59,0.1);
      color: var(--color-ink);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1;
      transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
      box-shadow: 0 14px 30px -24px rgba(30,41,59,0.34);
    }
    .works-filter-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(123,184,255,0.34);
      background: rgba(123,184,255,0.12);
    }
    .works-filter-chip.is-active {
      background: var(--color-brand-blue);
      color: #10203f;
      border-color: transparent;
      box-shadow: 0 18px 34px -20px rgba(91, 126, 213, 0.5);
    }
    .works-filter-chip[data-filter="embroidery-digitizing"].is-active {
      background: var(--color-brand-pink);
    }
    @media (min-width: 640px) { .works-page-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .works-page-grid { grid-template-columns: repeat(3, 1fr); } }
    .work-tile {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--color-line);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .work-tile:hover { transform: translateY(-6px); }
    .work-tile img { width:100%; height:100%; object-fit: cover; display:block; }
    .work-tile__overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1rem 1.25rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .work-tile__chip {
      position:absolute; top: 0.75rem; left: 0.75rem;
      background: rgba(255,255,255,0.9);
      color: var(--color-ink);
      font-family: var(--font-mono);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      padding: 0.3rem 0.7rem;
      border-radius: 9999px;
    }

    /* Services page grid */
    .services-page-section {
      padding-top: 3rem;
    }
    .service-page__header {
      margin-bottom: 1.5rem;
    }
    .service-page__header h2 {
      margin-top: 0.5rem;
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.15;
    }
    .services-page-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    @media (min-width: 760px) {
      .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (min-width: 1180px) {
      .services-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    .service-page-card {
      width: 100%;
      height: auto;
      min-height: 620px;
      max-height: none;
      border-radius: 24px;
      cursor: default;
    }
    .service-page-card:hover {
      transform: translateY(-6px);
    }
    .service-page-card .service-card__thumb {
      height: 260px;
      min-height: 260px;
    }
    .service-page-card .service-card__bottom {
      min-height: 360px;
    }
    .service-page-card .service-card__cta {
      cursor: pointer;
    }
    @media (max-width: 520px) {
      .service-page-card {
        min-height: 0;
      }
      .service-page-card .service-card__thumb {
        height: 220px;
        min-height: 220px;
      }
      .service-page-card .service-card__bottom {
        min-height: 0;
      }
    }

    /* Contact page — remove padding-top so hero flows into cta box */
    .contact-page .cta { padding-top: 3rem; }
