 /* ─── TOKENS ─────────────────────────────────────────────── */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #F3F3F3;
      --bg-alt: #EAEAE8;
      --ink: #0E0E0C;
      --ink-60: rgba(14,14,12,.58);
      --ink-20: rgba(14,14,12,.14);
      --accent: #CCFF0D;
      --title: "Figtree", sans-serif;
      --display: "Big Shoulders Display", sans-serif;
      --mono: "JetBrains Mono", monospace;
      --pad-x: 64px;
      --eyebrow-size: 1.944vw;
      --radius: clamp(12px, 1.5vw, 20px);
    }
    @media (max-width: 600px) { :root { --pad-x: 20px; } }
    html, body { min-height: 100%; overflow-x: hidden; background: var(--bg); }
    body { font-family: var(--title); color: var(--ink); -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }

    /* ─── PAGE LOADER ─────────────────────────────────────────── */
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #F3F3F3; /* matches the site's --bg color */
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: all;
    }
    #page-loader__star {
      width: 48px;
      height: 48px;
      object-fit: contain;
      transform-origin: center center;
      will-change: transform;
    }
    @media (prefers-reduced-motion: no-preference) {
      @keyframes star-morph {
        0%   { transform: scale(1)    rotate(0deg); }
        25%  { transform: scale(1.12) rotate(6deg); }
        50%  { transform: scale(0.94) rotate(-4deg); }
        75%  { transform: scale(1.08) rotate(9deg); }
        100% { transform: scale(1)    rotate(0deg); }
      }
      #page-loader__star {
        animation: star-morph 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
      }
    }
    /* Hide body scroll while loader is active */
    body.is-loading {
      overflow: hidden;
    }

    /* ─── TOP BAR ─────────────────────────────────────────────── */
    .top-bar {
      position: absolute; top: 0; left: 0; right: 0; z-index: 10;
      display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start;
      padding: 24px var(--pad-x) 0; gap: 12px;
      animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) both;
    }
    .mobile-video-wrap { display: none; }
    @media (max-width: 700px) {
      .top-bar { grid-template-columns: 1fr; gap: 2px; padding-top: 16px; }
      .top-bar__col { display: none !important; }
      .hero__video-wrap { display: none !important; }
      .hero__eyebrow-row { display: none !important; }
      .hero { min-height: auto !important; padding-top: 120px !important; padding-bottom: 60px !important; }
      .hero__headline { white-space: normal !important; font-size: clamp(60px, 18vw, 120px) !important; text-align: left !important; width: 100% !important; }
      .mobile-video-wrap { display: block; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
      .mobile-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
    }
    .top-bar__brand { display: flex; flex-direction: column; gap: 3px; }
    .top-bar__name {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--title); font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
    }
    .top-bar__star {
      width: 15px; height: 15px; flex-shrink: 0; background: var(--accent);
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .top-bar__sub { font-size: 12px; color: var(--ink-60); letter-spacing: -0.01em; padding-left: 22px; }
    .top-bar__col { display: flex; flex-direction: column; gap: 2px; padding-top: 1px; }
    .top-bar__label { font-size: 14px; font-weight: 500; letter-spacing: -0.02em; }
    .top-bar__hint { font-size: 12px; color: var(--ink-60); letter-spacing: -0.01em; }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100svh; overflow: hidden; background: var(--bg);
      display: flex; flex-direction: column; padding-bottom: 140px;
    }
    .hero__video-wrap {
      display: flex; justify-content: center; align-items: center;
      padding-top: clamp(72px, 9vw, 100px); flex: 0 0 auto;
      position: relative; z-index: 3; overflow: visible;
      animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) .18s both;
    }
    .hero__video-frame {
      width: clamp(220px, 36vw, 500px); aspect-ratio: 4/3;
      border-radius: var(--radius); overflow: hidden; background: #181816; position: relative;
      box-shadow: 0 32px 80px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.08);
      will-change: transform; transform-origin: center;
    }
    .hero__video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .hero__type {
      position: relative; z-index: 2; flex: 0 0 auto;
      padding: 0 var(--pad-x); overflow: visible;
      margin-top: clamp(16px, 2vh, 24px);
      animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) .3s both;
    }
    .hero__eyebrow-row {
      display: flex; justify-content: space-between; align-items: baseline;
      width: 100%; margin-bottom: .1em;
    }
    .hero__eyebrow-word {
      font-family: var(--title); font-weight: 600;
      font-size: var(--eyebrow-size); line-height: 1.1;
      letter-spacing: .01em; text-transform: uppercase; color: var(--ink);
    }
    .hero__headline {
      font-family: var(--display); font-weight: 900;
      line-height: .9; letter-spacing: -0.02em;
      text-transform: uppercase; color: var(--ink);
      white-space: nowrap; display: block;
      width: calc(100vw - 2 * var(--pad-x));
      overflow: visible;
    }

    /* ─── BOTTOM NAV ──────────────────────────────────────────── */
    .bottom-nav-wrap {
      position: fixed; bottom: clamp(16px, 2.5vw, 28px); left: 0; right: 0;
      display: flex; justify-content: center; align-items: center;
      z-index: 200; pointer-events: none;
      animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) .5s both;
    }
    .bottom-nav {
      pointer-events: all; background: #0E0E0C; border-radius: 999px;
      padding: 8px 16px 8px 8px; display: inline-flex; align-items: center; gap: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.28), 0 3px 10px rgba(0,0,0,.14);
      white-space: nowrap; max-width: calc(100vw - 32px);
    }
    @media (max-width: 600px) { .bottom-nav { gap: 10px; padding: 6px 12px 6px 6px; } }
    .bottom-nav__avatar {
      width: clamp(48px, 5vw, 64px); height: clamp(48px, 5vw, 64px);
      border-radius: 50%; overflow: hidden; background: #333; flex-shrink: 0;
    }
    .bottom-nav__avatar img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      display: block;
    }
    .bottom-nav__avatar-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--accent) 0%, #a0cc09 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .bottom-nav__avatar-placeholder span {
      font-family: var(--title); font-weight: 700; font-size: 22px; color: var(--ink);
    }
    .bottom-nav__info { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
    .bottom-nav__name {
      font-family: var(--title); font-weight: 600; font-size: clamp(13px, 1.2vw, 16px);
      color: #fff; letter-spacing: -0.01em; white-space: nowrap;
    }
    .bottom-nav__marquee-wrap {
      overflow: hidden; width: clamp(160px, 22vw, 340px); position: relative;
    }
    .bottom-nav__marquee-wrap::before,
    .bottom-nav__marquee-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 24px; z-index: 2; pointer-events: none;
    }
    .bottom-nav__marquee-wrap::before { left: 0; background: linear-gradient(to right, #0E0E0C, transparent); }
    .bottom-nav__marquee-wrap::after  { right: 0; background: linear-gradient(to left, #0E0E0C, transparent); }
    .bottom-nav__marquee {
      display: flex; animation: marquee 9s linear infinite; width: max-content;
    }
    .bottom-nav__marquee span {
      font-family: var(--mono); font-size: clamp(8px, .8vw, 10px);
      color: rgba(255,255,255,.42); letter-spacing: .05em; text-transform: uppercase;
      white-space: nowrap; padding-right: 40px;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .bottom-nav__burger {
      position: relative; width: clamp(36px, 3.5vw, 46px); height: clamp(36px, 3.5vw, 46px);
      border-radius: 50%; background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; cursor: pointer; transition: background .2s;
    }
    .bottom-nav__burger:hover { background: rgba(255,255,255,.16); }
    .burger-menu {
      position: absolute; bottom: calc(100% + 2px);
      left: 50%; transform: translateX(-50%) translateY(8px);
      background: #0E0E0C; border-radius: 16px; padding: 8px 8px 18px;
      display: flex; flex-direction: column; gap: 2px; min-width: 160px;
      opacity: 0; pointer-events: none;
      transition: opacity .22s cubic-bezier(.2,.8,.2,1), transform .22s cubic-bezier(.2,.8,.2,1);
      box-shadow: 0 12px 40px rgba(0,0,0,.3);
      margin-bottom: -10px;
    }
    .bottom-nav__burger:hover .burger-menu,
    .burger-menu:hover { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .burger-menu a {
      font-family: var(--title); font-weight: 500; font-size: 15px;
      color: rgba(255,255,255,.75); padding: 11px 18px; border-radius: 10px;
      transition: background .15s, color .15s; display: block; text-align: center;
    }
    .burger-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }

    /* ─── SHARED SECTION ──────────────────────────────────────── */
    .section { padding: clamp(64px, 8vw, 120px) clamp(20px, 2.5vw, 40px); }
    .section-eyebrow {
      font-family: "Figtree", sans-serif; font-weight: 500;
      font-size: clamp(13px, 1vw, 14px); line-height: 1.5; letter-spacing: .08em;
      text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--display); font-weight: 900;
      font-size: clamp(52px, 8vw, 108px);
      line-height: .88; letter-spacing: -0.025em; text-transform: uppercase;
    }
    .section-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: clamp(32px, 5vw, 60px); gap: 24px; flex-wrap: wrap;
    }
    .section-link {
      font-family: var(--title); font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
      border-bottom: 1px solid currentColor; padding-bottom: 2px;
      transition: opacity .2s; white-space: nowrap; align-self: center;
    }
    .section-link:hover { opacity: .55; }

    /* ─── WORK SECTION ────────────────────────────────────────── */
    .work-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(8px, 1.2vw, 14px);
    }
    @media (max-width: 700px) {
      .work-grid { grid-template-columns: 1fr; }
      .work-card__thumb,
      .work-card__thumb img { border-radius: 0; }
    }

    .work-card {
      background: #171717; border-radius: 20px; overflow: hidden;
      cursor: none; display: block; position: relative;
      transition: transform .35s cubic-bezier(.2,.8,.2,1);
    }
    .work-card:hover { transform: scale(1.01); }

    .work-card__thumb {
      margin: 10px 10px 0 10px;
      border-radius: 14px; overflow: hidden;
      aspect-ratio: 4/3; position: relative;
    }

    /* ── work card bar ── */
    .work-card__bar {
      background: #171717;
      padding: 16px 20px;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    .work-card__name {
      font-family: var(--display); font-weight: 900;
      font-size: clamp(15px, 1.4vw, 20px);
      letter-spacing: -0.02em; text-transform: uppercase; color: #fff;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .work-card__right {
      font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
      text-transform: uppercase; color: rgba(255,255,255,.5);
      white-space: nowrap; flex-shrink: 0;
    }

    /* ── work card hover overlay ── */
    @media (hover: hover) and (pointer: fine) {
      .work-card__overlay {
        position: absolute; inset: 0; z-index: 2;
        border-radius: 14px;
        opacity: 0; pointer-events: none;
        transition: opacity 0.35s ease;
        padding: clamp(24px, 4vw, 40px);
        display: flex; flex-direction: column;
        justify-content: flex-end; gap: 0;
        font-family: 'Figtree', sans-serif;
      }
      .work-card:hover .work-card__overlay { opacity: 1; pointer-events: auto; }

      .work-card[data-overlay-theme="dark"] .work-card__overlay {
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px) saturate(180%);
        -webkit-backdrop-filter: blur(4px) saturate(180%);
      }
      .work-card[data-overlay-theme="light"] .work-card__overlay {
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(4px) saturate(180%);
        -webkit-backdrop-filter: blur(4px) saturate(180%);
      }

      .work-card__overlay-intro {
        font-family: 'Figtree', sans-serif;
        font-weight: 500;
        font-size: clamp(24px, 3.5vw, 44px);
        line-height: 1.15;
        letter-spacing: -0.02em;
        text-transform: none;
        margin-bottom: clamp(24px, 3vw, 40px);
        max-width: 70%;
      }
      .work-card[data-overlay-theme="dark"] .work-card__overlay-intro { color: #fff; }
      .work-card[data-overlay-theme="light"] .work-card__overlay-intro { color: #111; }

      .work-card__overlay-kpis {
        display: flex;
        gap: clamp(24px, 4vw, 48px);
        margin-bottom: clamp(24px, 4vw, 40px);
      }
      .work-card__overlay-kpi {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .work-card__overlay-kpi-number {
        font-size: clamp(28px, 3.5vw, 48px);
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.02em;
      }
      .work-card[data-overlay-theme="dark"] .work-card__overlay-kpi-number { color: #fff; }
      .work-card[data-overlay-theme="light"] .work-card__overlay-kpi-number { color: #111; }

      .work-card__overlay-kpi-label {
        font-size: clamp(10px, 0.9vw, 12px);
        font-weight: 400;
        line-height: 1.4;
        max-width: 120px;
      }
      .work-card[data-overlay-theme="dark"] .work-card__overlay-kpi-label { color: rgba(255,255,255,0.55); }
      .work-card[data-overlay-theme="light"] .work-card__overlay-kpi-label { color: rgba(14,14,12,0.5); }

      .work-card__overlay-services-title {
        font-size: clamp(9px, 0.8vw, 11px);
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        display: block;
        margin-bottom: 8px;
      }
      .work-card[data-overlay-theme="dark"] .work-card__overlay-services-title { color: rgba(255,255,255,0.55); }
      .work-card[data-overlay-theme="light"] .work-card__overlay-services-title { color: rgba(14,14,12,0.5); }

      .work-card__overlay-services-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 16px;
      }
      .work-card__overlay-services-list li {
        font-size: clamp(10px, 0.9vw, 12px);
        font-weight: 400;
      }
      .work-card[data-overlay-theme="dark"] .work-card__overlay-services-list li { color: #fff; }
      .work-card[data-overlay-theme="light"] .work-card__overlay-services-list li { color: #111; }
    }

    /* ─── ABOUT SECTION ───────────────────────────────────────── */
    .about-me {
      position: relative;
      padding-top: clamp(120px, 14vw, 200px);
      padding-bottom: clamp(120px, 14vw, 200px);
    }
    .about-me__inner { max-width: 630px; margin: 0 auto; text-align: left; }
    .about-me__text {
      font-family: "Figtree", sans-serif; font-weight: 400;
      font-size: 24px; line-height: 1.5; color: var(--ink);
    }
    .about-me__text p { margin-bottom: 32px; }
    .about-me__text p:last-child { margin-bottom: 0; }

    /* ── Mouse-trail effect (About Me only — see index.html's closing
       script block for the cursor logic). Scoped to ".about-me
       .section-eyebrow" rather than the bare ".section-eyebrow" so this
       doesn't add position/z-index to that shared class's other two
       usages ("Selected Work…", "How I work") elsewhere on the page. */
    .about-me__trail {
      position: absolute; inset: 0;
      pointer-events: none; overflow: hidden; z-index: 3;
    }
    .about-me__text, .about-me .section-eyebrow { position: relative; z-index: 2; }
    .about-me__trail-img {
      position: absolute;
      width: 160px; height: 200px;
      object-fit: cover;
      opacity: 0;
      border-radius: 4px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      will-change: transform, opacity;
    }

    /* ─── STACK SECTION ───────────────────────────────────────── */
    .stack-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
      background: var(--ink-20); border-radius: var(--radius); overflow: hidden;
      margin-top: clamp(32px, 5vw, 56px);
    }
    @media (max-width: 800px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }

    .stack-item {
      background: var(--bg); padding: clamp(24px, 3vw, 40px) 24px;
      display: flex; flex-direction: column; gap: 12px;
      transition: background .2s;
    }
    .stack-item:hover { background: var(--bg-alt); }
    .stack-item__icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-weight: 900; font-size: 16px;
      letter-spacing: -0.02em; color: #fff; flex-shrink: 0;
    }
    .stack-item__name {
      font-family: var(--title); font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
    }
    .stack-item__desc {
      font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
      text-transform: uppercase; color: var(--ink-60);
    }

    /* ─── CONTACT / FOOTER ────────────────────────────────────── */
    .contact {
      background: var(--bg); /* same light gray as the rest of the page —
                                no dark background */
      padding: clamp(80px, 10vw, 160px) var(--pad-x)
               clamp(40px, 5vw, 64px);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Big heading — same font/style as .hero__headline (Big Shoulders
       Display, weight 900, uppercase, tight tracking) */
    .contact__heading {
      font-family: "Big Shoulders Display", sans-serif;
      font-weight: 900;
      font-size: clamp(48px, 9vw, 140px);
      text-transform: uppercase;
      letter-spacing: -0.02em;
      line-height: 0.9;
      color: var(--ink);
      margin: 0 0 clamp(40px, 6vw, 80px);
    }

    /* Contact me label */
    .contact__reach {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: clamp(48px, 7vw, 96px);
    }

    .contact__reach-label {
      font-family: 'Figtree', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--ink-60);
      margin: 0;
    }

    /* Email — bold, black, clearly clickable */
    .contact__reach-email {
      font-family: 'Figtree', sans-serif;
      font-weight: 700;
      font-size: clamp(16px, 1.8vw, 22px);
      color: var(--ink);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: opacity 0.2s;
    }
    .contact__reach-email:hover { opacity: 0.65; }

    /* Two pill buttons */
    .contact__buttons {
      display: flex;
      gap: 12px;
      margin-bottom: clamp(48px, 8vw, 120px);
    }

    .contact__btn {
      font-family: 'Figtree', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: var(--ink);
      border: 1.5px solid var(--ink);
      border-radius: 999px;
      padding: 10px 28px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      letter-spacing: 0.01em;
    }
    .contact__btn:hover {
      background: var(--ink);
      color: #fff;
    }

    /* Bottom bar */
    .contact__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--ink-20);
      padding-top: 20px;
    }

    .contact__credit {
      font-family: 'Figtree', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: var(--ink-60);
    }

    .contact__back-top {
      font-family: 'Figtree', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: var(--ink);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: opacity 0.2s;
    }
    .contact__back-top:hover { opacity: 0.6; }

    /* Mobile */
    @media (max-width: 600px) {
      .contact__buttons { flex-direction: column; width: fit-content; }
      .contact__bottom { flex-direction: column; gap: 12px;
                         align-items: flex-start; }
    }

    /* ─── CARD HOVER EFFECTS ─────────────────────────────────── */
    .work-card__thumb img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }
    .work-card:hover .work-card__thumb img { transform: scale(1.05); }

    #view-cursor {
      position: fixed; left: 0; top: 0;
      pointer-events: none; z-index: 9999;
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--ink); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--title); font-weight: 600;
      font-size: 13px; letter-spacing: -0.01em;
      opacity: 0; transform: translate(-50%, -50%) scale(0.7);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    #view-cursor.active {
      opacity: 1; transform: translate(-50%, -50%) scale(1);
    }

    /* ─── CIRCULAR ROTATING CURSOR BADGE (SCROLL / MOVE ME) ──
       One shared template (see buildBadge() in main.js) — size comes from
       each instance's own inline width/height, everything else (glass,
       color, font, star) is identical between variants. */
    body.custom-cursor-active { cursor: none; }
    /* Restore the native pointer over clickable elements — the badge
       cursor hides itself here (see updateCursorState in main.js), so the
       system cursor needs to be visible again instead of staying none.
       .work-card is excluded: it keeps its own cursor:none + "View" badge. */
    body.custom-cursor-active a:not(.work-card),
    body.custom-cursor-active button,
    body.custom-cursor-active [role="button"] {
      cursor: pointer;
    }
    .badge-cursor {
      position: fixed; left: 0; top: 0;
      pointer-events: none; z-index: 10000;
      opacity: 0; transform: translate(-50%, -50%) scale(0.85);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .badge-cursor.active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .cursor-badge__glass {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.10);
      pointer-events: none;
      transition: background 0.2s ease;
    }
    .badge-cursor--dark-ctx .cursor-badge__glass { background: rgba(0, 0, 0, 0.15); }
    .badge-cursor__spin {
      width: 100%; height: 100%;
      animation: badgeSpin 10s linear infinite;
    }
    .badge-cursor__spin svg { display: block; width: 100%; height: 100%; }
    .badge-cursor__text, .badge-cursor__star {
      fill: var(--ink-60);
      transition: fill 0.2s ease;
    }
    .badge-cursor--dark-ctx .badge-cursor__text,
    .badge-cursor--dark-ctx .badge-cursor__star { fill: rgba(255, 255, 255, 0.75); }
    .badge-cursor__text {
      font-family: "Figtree", sans-serif; font-weight: 500;
      text-transform: uppercase;
    }
    @keyframes badgeSpin { to { transform: rotate(360deg); } }

    /* ─── SERVICES SECTION ───────────────────────────────────────── */
    .services-section {
      background: var(--bg);
      padding: clamp(64px, 8vw, 112px) clamp(8px, 1.5vw, 20px);
    }
    .services-intro {
      display: flex; align-items: flex-start; gap: 16px;
      max-width: 60%; margin-bottom: clamp(32px, 5vw, 52px);
      padding: clamp(24px, 3vw, 40px) 0;
    }
    .services-intro__star {
      color: var(--accent); font-size: 22px; line-height: 1.5; flex-shrink: 0;
    }
    .services-intro__quote {
      font-family: var(--title); font-weight: 500;
      font-size: 36px;
      color: rgba(255,255,255,.88); line-height: 1.5; letter-spacing: -.01em;
    }
    .services-wrapper {
      background: #111;
      border-radius: 24px;
      padding: clamp(24px, 3vw, 40px);
    }
    .services-container {
      background: #1e1e1e;
      border-radius: 16px;
      overflow: hidden;
      padding: 0;
      margin-top: clamp(16px, 2vw, 24px);
    }
    .service-row {
      display: grid;
      grid-template-columns: 48px 1fr 1.5fr 280px;
      gap: clamp(16px, 2.5vw, 32px);
      align-items: start;
      padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 48px);
    }
    @media (max-width: 860px) {
      .service-row { grid-template-columns: 36px 1fr; row-gap: 14px; }
      .service-row__body { grid-column: 2; }
      .service-row__img  { display: none; }
    }
    .service-divider {
      height: 1px; background: rgba(255,255,255,.08);
      margin: 0 clamp(24px, 3.5vw, 48px);
    }
    .service-row__num {
      font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
      color: rgba(255,255,255,.28); align-self: flex-start; padding-top: 8px;
    }
    .service-row__title {
      font-family: var(--title); font-weight: 700;
      font-size: 35px;
      color: #fff; letter-spacing: -.025em; line-height: .95; text-transform: uppercase;
    }
    .service-row__body { display: flex; flex-direction: column; gap: 14px; }
    .service-row__desc {
      font-family: var(--title); font-size: clamp(18px, .9vw, 19px);
      color: #fff; line-height: 1.65;
    }
    .service-row__tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .service-tag {
      font-family: var(--mono); font-size: 10px; letter-spacing: .05em;
      text-transform: uppercase; color: rgba(255,255,255,.45);
      border: 1px solid rgba(255,255,255,.14); padding: 5px 12px; border-radius: 999px;
    }
    .service-row__img { width: 100%; height: 280px; border-radius: 10px; overflow: hidden; }
    .service-row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .srv-reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity .6s ease-out, transform .6s ease-out;
    }
    .srv-reveal.visible { opacity: 1; transform: none; }
    .srv-reveal-d1 { transition-delay: .15s; }
    .srv-reveal-d2 { transition-delay: .30s; }

    @media (max-width: 700px) {
      .services-intro {
        max-width: 100%;
        padding: clamp(16px, 4vw, 24px) 0;
      }
      .services-intro__quote {
        font-size: clamp(18px, 5vw, 24px);
      }
      .service-row {
        grid-template-columns: 1fr;
      }
      .service-row__body {
        grid-column: 1;
      }
      .service-row__title {
        font-size: clamp(28px, 7vw, 40px);
      }
      .service-row__desc {
        font-size: 15px;
        line-height: 1.6;
      }
      .service-row__img {
        display: block;
        width: 100%;
        max-height: 280px;
        object-fit: cover;
      }
    }

    /* ─── ANIMATIONS ──────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── SCROLL REVEAL ───────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }