  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --black: #040404;
    --dark: #101014;
    --card: #161619;
    --border: rgba(255, 255, 255, 0.06);
    --white: #f5f5f0;
    --gray: #6b6b78;
    --muted: #3a3a45;
    --accent: #47ccdb;
    --accent-glow: rgba(71, 204, 219, 0.3);
    --accent-dim: rgba(71, 204, 219, 0.08);
  }

  @font-face {
    font-family: 'HeadingFont';
    src: url('font/heading.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'BodyFont';
    src: url('font/body.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }

  html {
    scroll-behavior: auto;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
  }

  body {
    font-family: 'BodyFont', 'HelveticaNeueLTPro', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  #mainContent {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(.16, 1, .3, 1);
  }

  #mainContent.ready {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
  }

  .cur, .cur-f {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
  }

  .cur {
    width: 8px;
    height: 8px;
    background: var(--accent);
  }

  .cur-f {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--accent);
    transition: width .3s, height .3s, transform .15s ease-out;
  }

  .cur-f.big {
    width: 80px;
    height: 80px;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .nav-brand img {
    height: 28px;
    width: auto;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .5px;
    opacity: .6;
    transition: opacity .3s;
  }

  .nav-link:hover { opacity: 1; }

  .nav-cta {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .3s;
  }

  .nav-cta:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
  }

  .page-transition {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--black);
    transform: translateY(100%);
    transition: transform .6s cubic-bezier(.76, 0, .24, 1);
    pointer-events: none;
  }

  .page-transition.active { transform: translateY(0); }

  .page-transition.exit {
    transform: translateY(-100%);
    transition: transform .6s cubic-bezier(.76, 0, .24, 1) .1s;
  }

  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-video video.loaded { opacity: 1; }

  .hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
      to bottom,
      rgba(11, 11, 14, .4) 0%,
      rgba(11, 11, 14, .6) 50%,
      rgba(11, 11, 14, .85) 100%
    ); */
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp .8s ease forwards 3.8s;
  }

  .hero-scroll span {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .scroll-ln {
    width: 1px;
    height: 36px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
  }

  .scroll-ln::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scD 2s ease-in-out infinite;
  }

  @keyframes scD {
    0%   { top: -100%; }
    100% { top: 100%; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .marquee-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    white-space: nowrap;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: 32px;
    color: transparent;
    -webkit-text-stroke: 1px var(--muted);
    transition: all .3s;
  }

  .marquee-item:hover {
    -webkit-text-stroke-color: var(--accent);
  }

  .marquee-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

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

  .projects-section { position: relative; }

  .project-full {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
  }

  .project-bg {
    position: absolute;
    inset: 0;
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
  }

  .project-full:hover .project-bg { transform: scale(1.03); }

  .project-cover {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    transition: opacity .6s;
  }

  .project-full:hover .project-cover img { opacity: .6; }

  .project-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .15;
    transition: opacity .6s;
    transform-style: preserve-3d;
  }

  .project-full:hover .project-3d { opacity: .35; }

  .p3d-cube {
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    animation: p3dSpin 14s linear infinite;
  }

  .p3d-face {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(71, 204, 219, .1);
    background: rgba(71, 204, 219, .02);
  }

  .p3d-face.pf { transform: translateZ(60px); }
  .p3d-face.pb { transform: rotateY(180deg) translateZ(60px); }
  .p3d-face.pr { transform: rotateY(90deg) translateZ(60px); }
  .p3d-face.pl { transform: rotateY(-90deg) translateZ(60px); }

  @keyframes p3dSpin {
    0%   { transform: rotateX(-15deg) rotateY(0); }
    100% { transform: rotateX(-15deg) rotateY(360deg); }
  }

  .p3d-sphere {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(71, 204, 219, .08);
    background: radial-gradient(circle at 30% 30%, rgba(71, 204, 219, .06), transparent 70%);
    animation: p3dPulse 5s ease-in-out infinite;
  }

  @keyframes p3dPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.08); }
  }

  .p3d-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 10px solid rgba(71, 204, 219, .05);
    animation: p3dRing 8s linear infinite;
  }

  @keyframes p3dRing {
    0%   { transform: translate(-50%, -50%) rotateX(0) rotateZ(0); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateZ(180deg); }
  }

  .p3d-diamond {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(71, 204, 219, .08);
    background: rgba(71, 204, 219, .02);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: p3dFloat 6s ease-in-out infinite;
  }

  @keyframes p3dFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(45deg) translateY(0); }
    50%      { transform: translate(-50%, -50%) rotate(45deg) translateY(-15px); }
  }

  .p3d-tri {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(71, 204, 219, .04);
    animation: p3dFloat2 7s ease-in-out infinite;
  }

  @keyframes p3dFloat2 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-15px); }
  }

  .p3d-hex {
    width: 100px;
    height: 100px;
    background: rgba(71, 204, 219, .03);
    border: 1px solid rgba(71, 204, 219, .07);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: p3dSpin 18s linear infinite;
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 80px;
    background: linear-gradient(
      to top,
      rgba(11, 11, 14, .8) 0%,
      rgba(11, 11, 14, .2) 40%,
      transparent 70%
    );
  }

  .project-number {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .project-name {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 12px;
    color: var(--white);
  }

  .project-cat {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .project-desc {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
  }

  .project-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
  }

  .project-full:hover .project-line { transform: scaleX(1); }

  .project-detail {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 800;
    background: var(--black);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .project-detail.open {
    display: block;
    animation: detailIn .6s cubic-bezier(.16, 1, .3, 1);
  }

  @keyframes detailIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .detail-back {
    position: fixed;
    top: 24px;
    left: 48px;
    z-index: 810;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    cursor: pointer;
    border: none;
    background: rgba(11, 11, 14, .6);
    backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all .3s;
  }

  .detail-back:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .detail-back svg { width: 18px; height: 18px; }

  .detail-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

  .detail-hero-bg { position: absolute; inset: 0; }

  .detail-hero-cover {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .detail-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
  }

  .detail-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 11, 14, .9), transparent);
  }

  .detail-hero-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .detail-hero-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: -.03em;
    margin-bottom: 12px;
  }

  .detail-hero-cat {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
  }

  .detail-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px;
  }

  .detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 48px;
    align-items: start;
  }

  .detail-desc {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray);
    text-align: left;
  }

  .detail-meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .meta-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .meta-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }

  .meta-value {
    font-size: 14px;
    color: var(--white);
  }

  .detail-gallery {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .detail-gallery.g-1 { grid-template-columns: 1fr; }
  .detail-gallery.g-2 { grid-template-columns: 1fr 1fr; }

  .gallery-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    background: var(--dark);
  }

  .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .gallery-item {
    width: 100%;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }

  .detail-body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 70vh;
  }

  .gallery-row .gallery-item {
    height: 100%;
  }

  .detail-nav {
    display: flex;
    justify-content: space-between;
    padding: 40px 48px;
    margin-top: 0;
    border-top: 1px solid var(--border);
    position: sticky;
    bottom: 0;
    background: var(--black);
    z-index: 100;
  }

  .detail-nav-btn {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
    border: none;
    background: none;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .detail-nav-btn:hover { color: var(--accent); }

  .clients-section {
    padding: 60px 80px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .clients-title-wrap {
    position: absolute;
    left: 120px;
    top: 25%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .clients-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(60px, 10vw, 100px);
    letter-spacing: -.04em;
    color: white;
    line-height: 1;
  }

  .clients-subtitle {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.6;
    max-width: 420px;
    line-height: 1.7;
    text-align: left;
    margin-left: 0;
  }

  .clients-container {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .clients-list {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0px;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0px;
    min-width: 200px;
    text-align: center;
  }

  .client-item {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--gray);
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 0px;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }

  .client-item:hover {
    color: var(--accent);
    border-color: transparent;
    background: transparent;
    transform: none;
  }

  .client-item.active {
    color: var(--white);
    border-color: transparent;
    background: transparent;
  }

  .clients-orbit {
    position: fixed;
    right: -320px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    opacity: 0;
    animation: orbitSlideIn 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
  }

  @keyframes orbitSlideIn {
    0% {
      opacity: 1;
      right: -600px;
    }
    100% {
      opacity: 1;
      right: -320px;
    }
  }

  .orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(71, 204, 219, .2);
    border-radius: 50%;
    transition: all .6s;
  }

  .orbit-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(71, 204, 219, .3) 90deg,
      transparent 180deg,
    );
    opacity: 0.4;
    animation: ringGlow 4s linear infinite;
  }

  @keyframes ringGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .orbit-ring.dimmed {
    border-color: rgba(71, 204, 219, .08);
  }

  .orbit-ring.dimmed::before {
    opacity: 0.1;
  }

  .orbit-logos {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .orbit-logos.paused {
    animation: none !important;
  }

  @keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .orbit-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin-left: -50px;
    margin-top: -50px;
    transition: all .7s cubic-bezier(.16, 1, .3, 1);
    opacity: 1;
    cursor: pointer;
  }

  .orbit-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(var(--angle)) translateY(-280px);
    z-index: -1;
  }

  .orbit-logo.dimmed {
    opacity: 0.2;
    filter: grayscale(1) brightness(0.5);
  }

  .orbit-logo.active {
    opacity: 1;
    filter: none;
  }

  .orbit-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    padding: 16px;
    transition: all .5s;
  }

  @keyframes keepUpright {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .orbit-logo.active img {
    transform: scale(1.3);
  }

  .orbit-logo:not(.dimmed):not(.active):hover img {
    transform: scale(1.1);
  }

  .orbit-featured {
    display: none;
  }

  @keyframes counterRotate {
    from { transform: rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(-1 * var(--angle) - 360deg)); }
  }

  .clients-wrap { overflow: hidden; }

  .clients-track {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: cScroll 25s linear infinite;
    width: max-content;
  }

  .client-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 28px);
    white-space: nowrap;
    color: var(--muted);
    transition: color .3s;
    letter-spacing: -.02em;
  }

  .client-name:hover { color: var(--accent); }

  .client-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
  }

  @keyframes cScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .prj-marquee {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .prj-track {
    display: flex;
    gap: 24px;
    animation: prjM 15s linear infinite;
    width: max-content;
  }

  .prj-word {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    white-space: nowrap;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1px var(--muted);
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .prj-star {
    color: var(--accent);
    font-size: 16px;
    -webkit-text-stroke: 0;
    flex-shrink: 0;
  }

  @keyframes prjM {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .about-section {
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-3d-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
  }

  .pen-tool-art {
    position: relative;
    width: 260px;
    height: 260px;
  }

  .pen-tool-art > svg { width: 100%; height: 100%; }

  .pen-path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawPath 4s ease-in-out forwards infinite alternate;
  }

  @keyframes drawPath {
    0%   { stroke-dashoffset: 800; }
    100% { stroke-dashoffset: 0; }
  }

  .pen-path-fill {
    fill: var(--accent-dim);
    stroke: none;
    opacity: 0;
    animation: fillIn 2s ease forwards 2s;
  }

  @keyframes fillIn { to { opacity: 1; } }

  .pen-dot {
    fill: var(--accent);
    opacity: 0;
    animation: dotIn .4s ease forwards;
  }

  @keyframes dotIn { to { opacity: 1; } }

  .pen-dot:nth-child(2) { animation-delay: 1s; }
  .pen-dot:nth-child(3) { animation-delay: 1.5s; }
  .pen-dot:nth-child(4) { animation-delay: 2s; }
  .pen-dot:nth-child(5) { animation-delay: 2.5s; }

  .pen-handle {
    stroke: var(--accent);
    stroke-width: 1;
    opacity: .3;
    stroke-dasharray: 4 4;
  }

  .pen-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 30%;
    left: 60%;
    animation: penMove 6s ease-in-out infinite;
  }

  .pen-cursor svg { width: 100%; height: 100%; }

  @keyframes penMove {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(20px, -30px); }
    50%      { transform: translate(-10px, 20px); }
    75%      { transform: translate(30px, 10px); }
  }

  .color-swatch {
    position: absolute;
    display: flex;
    gap: 6px;
  }

  .color-swatch.cs-1 { bottom: 20px; left: 20px; }
  .color-swatch.cs-2 { top: 20px; right: 20px; }

  .swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    animation: swatchIn .5s ease forwards;
  }

  .swatch:nth-child(1) { animation-delay: 2.5s; }
  .swatch:nth-child(2) { animation-delay: 2.7s; }
  .swatch:nth-child(3) { animation-delay: 2.9s; }

  @keyframes swatchIn { to { opacity: 1; } }

  .grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04;
  }

  .grid-lines line {
    stroke: var(--white);
    stroke-width: .5;
  }

  .sec-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sec-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .sec-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -.03em;
    color: var(--white);
  }

  .about-content .sec-tag { margin-bottom: 16px; }
  .about-content .sec-title { margin-bottom: 24px; }

  .about-text {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 40px;
  }

  .about-stats {
    display: flex;
    gap: 40px;
  }

  .stat { text-align: center; }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 4px;
  }

  .stat-lbl {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .footer {
    padding: 60px 80px 40px;
    border-top: 1px solid var(--border);
    background: var(--black);
  }

  .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    margin: 0;
  }

  .footer-social-icons {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .footer-icon-link {
    color: var(--gray);
    transition: color 0.3s;
  }

  .footer-icon-link:hover {
    color: var(--white);
  }

  .footer-icon-link svg {
    width: 20px;
    height: 20px;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--muted);
    margin-top: 16px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }

  .footer-brand img {
    height: 40px;
    width: auto;
    opacity: 0.9;
  }

  .footer-email {
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-email:hover {
    color: var(--accent);
  }

  .rv {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(.16, 1, .3, 1);
  }

  .rv.on {
    opacity: 1;
    transform: translateY(0);
  }

  .work-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    border-bottom: 1px solid var(--border);
  }

  .work-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 12vw, 120px);
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
  }

  .work-subtitle {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--gray);
    max-width: 400px;
    margin: 0 auto;
  }

  .work-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .work-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .work-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .work-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(11, 11, 14, .5) 0%,
      rgba(11, 11, 14, .7) 50%,
      rgba(11, 11, 14, .95) 100%
    );
  }

  .work-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
  }

  .work-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 12vw, 120px);
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
  }

  .work-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 400px;
    margin: 0 auto;
  }

  .about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .about-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: all 0.5s ease;
  }

  .about-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .project-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    transition: opacity .6s;
  }

  .project-full:hover .project-cover video {
    opacity: .6;
  }

  .detail-hero-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
  }

  .more-work-section {
    position: relative;
    padding: 100px 80px;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .more-work-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .more-work-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
  }

  .more-work-bg::after {
    content: '';
    position: absolute;
    inset: 0;
  }

  .more-work-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
  }

  .more-work-title {
    font-family: 'HeadingFont', 'Syne', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .more-work-desc {
    font-family: 'BodyFont', 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .more-work-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .more-work-btn:hover {
    background: var(--white);
    color: var(--black);
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .clients-orbit {
      right: -380px;
      width: 600px;
      height: 600px;
    }
    
    @keyframes orbitSlideIn {
      0% {
        opacity: 1;
        right: -600px;
      }
      100% {
        opacity: 1;
        right: -280px;
      }
    }
    
    .project-overlay {
      padding: 40px 48px;
    }
    
    .about-section {
      padding: 100px 40px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      min-height: 100svh;
    }
    
    .hero-video img {
      object-position: center;
    }
    
    nav { 
      padding: 16px 20px;
      backdrop-filter: blur(10px);
      background: rgba(11, 11, 14, 0.8);
    }
    
    .nav-brand img {
      height: 24px;
    }
    
    .nav-right .nav-link { 
      display: none; 
    }
    
    .nav-cta {
      padding: 8px 16px;
      font-size: 11px;
    }

    .detail-gallery {
      margin-left: 0;
      margin-right: 0;
      left: 0;
      right: 0;
      width: 100%;
    }

    .gallery-item {
      height: 60vh !important;
    }

    .gallery-row {
      grid-template-columns: 1fr;
      height: auto;
    }

    .gallery-row .gallery-item {
      height: 50vh;
    }

    .detail-gallery.g-2 { 
      grid-template-columns: 1fr; 
    }
    
    .marquee-section {
      padding: 32px 0;
    }
    
    .marquee-item {
      font-size: clamp(24px, 8vw, 48px);
      gap: 20px;
    }
    
    .marquee-dot {
      width: 8px;
      height: 8px;
    }
    
    .project-full {
      height: 80vh;
    }
    
    .project-overlay { 
      padding: 24px 20px;
      justify-content: center;
    }
    
    .project-number {
      font-size: 10px;
    }
    
    .project-name { 
      font-size: clamp(24px, 6vw, 32px);
      margin-bottom: 8px;
    }
    
    .project-cat {
      font-size: 9px;
    }
    
    .project-desc {
      font-size: 13px;
      max-width: 100%;
    }
    
    .about-section { 
      grid-template-columns: 1fr; 
      gap: 32px; 
      padding: 60px 20px;
    }
    
    .about-3d-wrap { 
      min-height: 280px; 
    }
    
    .pen-tool-art {
      width: 200px;
      height: 200px;
    }
    
    .about-text {
      font-size: 14px;
      line-height: 1.7;
    }
    
    .footer {
      padding: 40px 20px 32px;
    }

    .footer-main {
      flex-direction: column;
      gap: 40px;
    }
    .footer-right {
      align-items: flex-start;
    }

    .footer-social-icons {
      gap: 24px;
    }
    .footer-top { 
      flex-direction: column; 
      gap: 32px;
    }
    
    .footer-links { 
      align-items: flex-start; 
    }
    
    .footer-bottom { 
      flex-direction: column; 
      gap: 16px; 
      text-align: center; 
    }
    
    .footer-cta h2 {
      font-size: clamp(28px, 8vw, 40px);
      margin-bottom: 16px;
    }
    
    .footer-cta p {
      font-size: 14px;
      margin-bottom: 24px;
    }
    
    .btn-fill {
      padding: 12px 28px;
      font-size: 13px;
      width: 100%;
      text-align: center;
    }
    
    .footer-socials {
      gap: 8px;
    }
    
    .social-btn {
      width: 38px;
      height: 38px;
    }
    
    .about-stats { 
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .stat-num { 
      font-size: 36px;
    }
    
    .stat-lbl {
      font-size: 8px;
    }
    
    .detail-hero-overlay { 
      padding: 32px 24px; 
    }
    
    .detail-body { 
      padding: 40px 20px; 
    }
    
    .detail-info { 
      grid-template-columns: 1fr; 
      gap: 32px; 
    }
    
    .detail-back { 
      left: 20px; 
    }
    
    .detail-gallery.g-2 { 
      grid-template-columns: 1fr; 
    }
    
    .clients-section {
      padding: 60px 20px;
      flex-direction: column;
      min-height: auto;
    }
    
    .clients-title-wrap {
      position: relative;
      left: 0;
      top: 0;
      transform: none;
      text-align: center;
      margin-bottom: 40px;
      z-index: 10;
      align-items: center;
    }

    .clients-title {
      font-size: clamp(36px, 10vw, 48px);
    }

    .clients-subtitle {
      font-size: 12px;
      max-width: 100%;
      padding: 0 20px;
      line-height: 1.6;
    }
    
    .clients-container {
      display: flex;
      flex-direction: column;
      gap: 60px;
      align-items: center;
    }
    
    .clients-orbit {
      position: relative;
      right: 0 !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      width: 100%;
      max-width: 350px;
      height: 350px;
      margin: 0 auto;
      opacity: 1 !important;
      animation: none !important;
    }
    
    .orbit-ring {
      width: 100%;
      height: 100%;
      position: relative;
      top: 0;
      left: 0;
      transform: none;
    }
    
    .orbit-logo {
      position: absolute;
      width: 50px;
      height: 50px;
      margin: 0;
      top: 50%;
      left: 50%;
    }
    
    .orbit-logo::before {
      transform: rotate(var(--angle)) translateY(-140px);
    }
    
    .orbit-logo img {
      padding: 8px;
      width: 100%;
      height: 100%;
    }
    
    .clients-list {
      position: relative;
      left: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 280px;
      padding: 0;
      gap: 8px;
    }
    
    .client-item {
      font-size: 14px;
      padding: 8px 12px;
    }
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.4);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.7);
  }