 /* ─── 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; }

    /* ─── CTA BUTTON ──────────────────────────────────────────── */
    .cta-fixed {
      position: fixed; top: 18px; right: var(--pad-x); z-index: 300;
      background: var(--ink); color: #fff; font-family: var(--title);
      font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
      padding: 12px 22px; border-radius: 999px; white-space: nowrap;
      transition: transform .2s, background .2s;
      animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) .1s both;
    }
    .cta-fixed:hover { background: #222; transform: scale(1.03); }
    @media (max-width: 600px) { .cta-fixed { font-size: 12px; padding: 10px 16px; top: 14px; } }

    /* ─── 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; }

    /* ─── TICKER STRIP ────────────────────────────────────────── */
    .ticker-strip {
      background: var(--ink); padding: 18px 0; overflow: hidden;
    }
    .ticker-track {
      display: flex; width: max-content;
      animation: tickerScroll 24s linear infinite;
    }
    .ticker-item {
      display: flex; align-items: center; gap: 28px;
      padding-right: 56px; white-space: nowrap;
    }
    .ticker-item span {
      font-family: var(--display); font-weight: 700;
      font-size: clamp(18px, 2vw, 26px);
      letter-spacing: -0.01em; text-transform: uppercase;
      color: rgba(255,255,255,.88);
    }
    .ticker-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
    }
    @keyframes tickerScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SHARED SECTION ──────────────────────────────────────── */
    .section { padding: clamp(64px, 8vw, 120px) clamp(20px, 2.5vw, 40px); }
    .section-eyebrow {
      font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
      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 {
      background: #171717; border-radius: 20px; overflow: hidden;
      cursor: none; display: block;
      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;
    }

    /* ─── ABOUT SECTION ───────────────────────────────────────── */
    #about { background: var(--bg); padding: clamp(64px, 8vw, 120px) clamp(20px, 2.5vw, 40px); }
    .about-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: end; }
    .about-text { font-family: var(--title); font-weight: 500; font-size: 60px; line-height: 1.2; text-align: left; color: var(--ink); opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
    .about-text.visible { opacity: 1; transform: none; }
    .about-word { display: inline-block; }
    .about-photo-wrap { width: 100%; height: 500px; overflow: hidden; border-radius: 20px; opacity: 0; transform: translateY(40px) rotate(-3deg); transition: opacity .9s cubic-bezier(.2,.8,.2,1) .15s, transform .9s cubic-bezier(.2,.8,.2,1) .15s; }
    .about-photo-wrap.visible { opacity: 1; transform: rotate(-3deg); }
    .about-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    @media (max-width: 700px) { .about-layout { grid-template-columns: 1fr; } .about-photo-wrap { display: none; } .about-text { font-size: 32px; } }

    /* ─── 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(--ink);
      padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(40px, 5vw, 72px);
      display: flex; flex-direction: column; gap: clamp(40px, 6vw, 64px);
    }
    .contact__heading {
      font-family: var(--display); font-weight: 900;
      font-size: clamp(48px, 9.5vw, 132px);
      line-height: .88; letter-spacing: -0.03em; text-transform: uppercase;
      color: #fff; max-width: 14ch;
    }
    .contact__heading em { color: var(--accent); font-style: normal; }
    .contact__actions {
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .contact__email {
      font-family: var(--title); font-weight: 700;
      font-size: clamp(14px, 1.4vw, 19px); color: #fff; letter-spacing: -0.02em;
      border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 3px;
      transition: border-color .2s, color .2s;
    }
    .contact__email:hover { border-color: #fff; color: var(--accent); }
    .contact__divider { width: 1px; height: 20px; background: rgba(255,255,255,.15); }
    .contact__social { display: flex; gap: 16px; }
    .contact__social-link {
      font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
      text-transform: uppercase; color: rgba(255,255,255,.4);
      transition: color .2s; border-bottom: 1px solid transparent; padding-bottom: 2px;
    }
    .contact__social-link:hover { color: #fff; border-color: rgba(255,255,255,.28); }
    .contact__footer {
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid rgba(255,255,255,.09); padding-top: 24px;
      flex-wrap: wrap; gap: 10px;
    }
    .contact__footer-copy {
      font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
      text-transform: uppercase; color: rgba(255,255,255,.28);
    }

    /* ─── 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);
    }

    /* ─── 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; }

    /* ─── 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; }