/* ═══════════════════════════════════════════════════════
   ZEVSAMA STUDIO — index.css
   Layer 3: Page-specific styles for index.html
   Hero · Marquee · Services · Clients · About · Projects
   Footer · Preloader · AFK · Hire Bubble · Modals · Toast
   Alive Bar · Konami · Hero Game · Celebration
   Phase 02 — diekstrak dari index.html
   ═══════════════════════════════════════════════════════ */

  /* ============================================================
     HERO — Stacked Poster (Centered)
  ============================================================ */
  #hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
  }

  /* ── Scanline texture ── */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.012) 3px,
      rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: scanFade 2s ease forwards 0.5s;
  }
  @keyframes scanFade { to { opacity: 1; } }

  /* ── Vignette corners ── */
  #hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(5,5,5,0.7) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── EDITORIAL GRID OVERLAY ── */
  .hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
  }
  /* Vertical lines */
  .hero-grid-v {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.04);
  }
  /* Horizontal lines */
  .hero-grid-h {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.04);
  }
  /* + at intersections */
  .hero-grid-plus {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
  }

  /* ── KANJI FLOATERS ── */
  .hero-kanji {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    pointer-events: none;
    z-index: 2;
    user-select: none;
    line-height: 1;
    opacity: 0;
    animation: kanjiFloat 12s ease-in-out infinite;
  }
  @keyframes kanjiFloat {
    0%   { opacity: 0; transform: translateY(0px); }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-22px); }
  }
  /* each kanji gets a different delay + subtle drift */
  .hero-kanji:nth-child(1)  { animation-delay: 0.0s;  animation-duration: 14s; }
  .hero-kanji:nth-child(2)  { animation-delay: 1.4s;  animation-duration: 11s; }
  .hero-kanji:nth-child(3)  { animation-delay: 2.8s;  animation-duration: 13s; }
  .hero-kanji:nth-child(4)  { animation-delay: 4.1s;  animation-duration: 10s; }
  .hero-kanji:nth-child(5)  { animation-delay: 5.5s;  animation-duration: 15s; }
  .hero-kanji:nth-child(6)  { animation-delay: 0.7s;  animation-duration: 12s; }
  .hero-kanji:nth-child(7)  { animation-delay: 3.3s;  animation-duration: 14s; }
  .hero-kanji:nth-child(8)  { animation-delay: 6.2s;  animation-duration: 11s; }
  .hero-kanji:nth-child(9)  { animation-delay: 1.9s;  animation-duration: 16s; }
  .hero-kanji:nth-child(10) { animation-delay: 7.0s;  animation-duration: 13s; }
  .hero-kanji:nth-child(11) { animation-delay: 2.5s;  animation-duration: 10s; }
  .hero-kanji:nth-child(12) { animation-delay: 8.4s;  animation-duration: 12s; }

  /* Mobile — lighter grid, fewer + marks */
  @media (max-width: 768px) {
    .hero-grid-v { background: rgba(255,255,255,0.03); }
    .hero-grid-h { background: rgba(255,255,255,0.03); }
    .hero-grid-plus { font-size: 0.5rem; color: rgba(255,255,255,0.07); }
    .hero-kanji { font-size: 0.75rem !important; }
  }

  /* ── Pink glow — centered ── */
  .hero-pink-blob {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,0,122,0.13) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: blobPulse 5s ease-in-out infinite;
    z-index: 0;
  }

  /* ── Ghost BG text ── */
  .hero-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18rem, 40vw, 42rem);
    color: rgba(255,255,255,0.018);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -8px;
    animation: bgTextDrift 18s ease-in-out infinite;
  }
  @keyframes bgTextDrift {
    0%   { transform: translate(-50%, -50%) translateX(0px); }
    25%  { transform: translate(-50%, -50%) translateX(18px) translateY(-8px); }
    50%  { transform: translate(-50%, -50%) translateX(6px) translateY(12px); }
    75%  { transform: translate(-50%, -50%) translateX(-14px) translateY(4px); }
    100% { transform: translate(-50%, -50%) translateX(0px); }
  }

  /* ── Poster stack wrapper ── */
  .hero-poster {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ── Each row: clip-path reveal ── */
  .hero-row {
    display: block;
    overflow: hidden;
  }
  .hero-row-inner {
    display: block;
    transform: translateY(110%);
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-row:nth-child(1) .hero-row-inner { animation-delay: 0.15s; }
  .hero-row:nth-child(2) .hero-row-inner { animation-delay: 0.30s; }
  .hero-row:nth-child(3) .hero-row-inner { animation-delay: 0.44s; }
  .hero-row:nth-child(4) .hero-row-inner { animation-delay: 0.57s; }
  .hero-row:nth-child(5) .hero-row-inner { animation-delay: 0.68s; }

  /* ── Label small top ── */
  .hero-label-top {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.5rem, 1.2vw, 0.72rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink);
    line-height: 1;
    padding-bottom: 16px;
  }

  /* ── Big name ── */
  .hero-name-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(7rem, 18vw, 20rem);
    line-height: 0.85;
    letter-spacing: -3px;
    color: var(--white);
  }
  .hero-name-main .pink { color: var(--pink); }

  /* ── Divider row with diamond ── */
  .hero-divider-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0 12px;
    width: 100%;
    justify-content: center;
    min-width: min(480px, 80vw);
  }
  .hero-div-line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,122,0.35));
  }
  .hero-div-line.flip {
    background: linear-gradient(to left, transparent, rgba(255,0,122,0.35));
  }
  .hero-div-diamond {
    font-size: 0.5rem;
    color: var(--pink);
    opacity: 0.6;
    letter-spacing: 3px;
  }

  /* ── Label small bottom ── */
  .hero-label-bottom {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.44rem, 1vw, 0.6rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.22);
    line-height: 1;
    padding-top: 4px;
  }

  /* ── Meta bar ── */
  .hero-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 1.1s;
  }
  .hero-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .hero-meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.44rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.18);
  }
  .hero-meta-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(240,237,230,0.55);
  }
  .hero-meta-sep {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.07);
  }
  .hero-status-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00ff88;
    animation: statusPulse 2s ease-in-out infinite;
    margin-right: 5px;
    vertical-align: middle;
  }
  @keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ── Tagline + word cycle ── */
  .hero-tagline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 1.25s;
  }
  .hero-tagline-static {
    font-size: 0.8rem;
    color: rgba(240,237,230,0.35);
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .hero-cycle-wrap {
    position: relative;
    height: 1.3em;
    overflow: hidden;
    display: inline-block;
    min-width: 76px;
  }
  .hero-cycle-word {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    position: absolute;
    top: 0; left: 0;
    white-space: nowrap;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  }
  .hero-cycle-word.active { transform: translateY(0); opacity: 1; }
  .hero-cycle-word.exit   { transform: translateY(-110%); opacity: 0; }

  /* ── Scroll indicator — perfectly centered bottom ── */
  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 1.4s;
    z-index: 2;
    pointer-events: none;
  }
  .hero-scroll span {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.2);
  }
  .scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255,0,122,0.15);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    animation: scrollDrop 2s ease-in-out infinite;
  }
  @keyframes scrollDrop {
    0%   { top: -100%; }
    100% { top: 100%; }
  }


  /* ── SAMA ↔ Japanese cycle animation ── */
  .hero-sama-wrap {
    position: relative;
    display: inline-block;
  }
  .hero-sama-en,
  .hero-sama-jp {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: var(--pink);
  }
  .hero-sama-jp {
    position: absolute;
    top: 0; left: 0; right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(60%) skewY(4deg);
    transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
    font-family: serif;
    letter-spacing: 12px;
  }
  .hero-sama-en {
    opacity: 1;
    transform: translateY(0) skewY(0);
    transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1), transform 0.45s cubic-bezier(0.16,1,0.3,1);
  }
  /* Active: JP visible, EN hidden */
  .hero-sama-wrap.show-jp .hero-sama-en {
    opacity: 0;
    transform: translateY(-60%) skewY(-3deg);
  }
  .hero-sama-wrap.show-jp .hero-sama-jp {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }

  /* mobile */
  @media (max-width: 768px) {
    #hero { padding: 0 20px; }
    .hero-name-main { font-size: clamp(5.5rem, 22vw, 8rem); letter-spacing: -1px; }
    .hero-meta { gap: 14px; flex-wrap: wrap; justify-content: center; }
    .hero-scroll { bottom: 24px; }
  }

  /* MARQUEE */
  .marquee-section {
    padding: 30px 0;
    background: var(--pink);
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: rgba(5,5,5,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .marquee-item::after {
    content: '✦';
    color: rgba(5,5,5,0.5);
  }

  /* SERVICES */
  /* ═══════════════════════════════════════════════
     SERVICES — Split Panel with Hover Reveal
  ═══════════════════════════════════════════════ */
  #services {
    padding: 140px 0;
    position: relative;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 60px;
  }
  .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--pink);
  }

  .services-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.92;
    margin-bottom: 80px;
    max-width: 800px;
    padding: 0 60px;
  }
  .services-header em {
    font-style: italic;
    color: var(--pink);
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.6em;
  }

  /* ── Service list container ── */
  .service-list {
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }

  /* ── Each service row ── */
  .service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    padding: 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: default;
    position: relative;
    overflow: hidden;
    min-height: 88px;
    transition: min-height 0.55s cubic-bezier(0.76,0,0.24,1),
                background 0.4s ease,
                padding-left 0.4s cubic-bezier(0.76,0,0.24,1);
  }
  @media (hover: hover) and (pointer: fine) {
    .service-item { cursor: none; }
  }

  /* Pink wash on hover */
  .service-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--pink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s cubic-bezier(0.76,0,0.24,1);
    z-index: 1;
  }
  .service-item:hover::before,
  .service-item.active::before { transform: scaleY(1); }

  /* Subtle pink bg wash */
  .service-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,0,122,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .service-item:hover::after,
  .service-item.active::after { opacity: 1; }

  /* Row number */
  .service-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--pink);
    opacity: 0.4;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s;
  }
  .service-item:hover .service-num,
  .service-item.active .service-num { opacity: 1; }

  /* Main body — name + desc + tags */
  .service-item-body {
    display: grid;
    grid-template-rows: 1fr 0fr;
    position: relative;
    z-index: 2;
    padding: 0 30px 0 0;
    gap: 0;
    transition: grid-template-rows 0.55s cubic-bezier(0.76,0,0.24,1);
  }
  .service-item:hover .service-item-body,
  .service-item.active .service-item-body {
    grid-template-rows: 1fr 1fr;
  }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1;
    color: rgba(255,255,255,0.55);
    transition: color 0.35s ease;
    padding: 28px 0 28px 0;
    align-self: center;
  }
  .service-item:hover .service-name,
  .service-item.active .service-name {
    color: var(--white);
  }

  /* Description reveal */
  .service-desc-wrap {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 0;
    transition: padding-bottom 0.55s cubic-bezier(0.76,0,0.24,1);
  }
  .service-item:hover .service-desc-wrap,
  .service-item.active .service-desc-wrap {
    padding-bottom: 24px;
  }
  .service-desc {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.38);
    max-width: 520px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.08s, transform 0.4s cubic-bezier(0.76,0,0.24,1) 0.08s;
  }
  .service-item:hover .service-desc,
  .service-item.active .service-desc {
    opacity: 1;
    transform: translateY(0);
  }
  .service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.76,0,0.24,1) 0.15s;
  }
  .service-item:hover .service-tags,
  .service-item.active .service-tags {
    opacity: 1;
    transform: translateY(0);
  }
  .service-tag {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s;
  }
  .service-item:hover .service-tag,
  .service-item.active .service-tag {
    border-color: rgba(255,0,122,0.35);
    color: var(--blush);
  }

  /* Right side — index number + arrow */
  .service-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 28px;
    align-self: start;
    position: relative;
    z-index: 2;
  }
  .service-idx {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    letter-spacing: 2px;
    transition: color 0.4s;
    user-select: none;
  }
  .service-item:hover .service-idx,
  .service-item.active .service-idx { color: rgba(255,0,122,0.1); }

  .service-arrow {
    font-size: 1.1rem;
    color: var(--pink);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.3s ease 0.1s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1) 0.1s;
  }
  .service-item:hover .service-arrow,
  .service-item.active .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    #services { padding: 80px 0; }
    .section-label { padding: 0 20px; }
    .services-header { padding: 0 20px; margin-bottom: 40px; }
    .service-item {
      grid-template-columns: 36px 1fr auto;
      padding: 0 20px;
      min-height: 72px;
    }
    .service-item.active { min-height: auto; }
    .service-name { font-size: clamp(1.5rem, 7vw, 2.2rem); padding: 20px 0; }
    .service-item:hover .service-item-body,
    .service-item.active .service-item-body { grid-template-rows: auto 1fr; }
    .service-item.active .service-desc-wrap { padding-bottom: 20px; }
    .service-idx { font-size: 2.5rem; }
    .service-right { padding-top: 20px; }
  }

  /* CLIENTS MARQUEE */
  /* CLIENTS MARQUEE */
  /* ============================================================
     CLIENTS — Interactive List
  ============================================================ */
  #clients {
    padding: 120px 0 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid lines in bg */
  #clients::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
  }

  /* Top header row */
  .clients-top {
    padding: 0 60px;
    margin-bottom: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .clients-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.92;
  }
  .clients-sub {
    font-size: 0.82rem;
    color: rgba(240,237,230,0.35);
    max-width: 240px;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
  }

  /* ── Stat counter strip ── */
  .clients-stats {
    display: flex;
    gap: 0;
    padding: 0 60px;
    margin-bottom: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .cl-stat {
    flex: 1;
    padding: 24px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
  }
  /* + at top-left corner */
  .cl-stat::before {
    content: '+';
    position: absolute;
    top: -7px; left: -5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
  }
  .cl-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: var(--white);
  }
  .cl-stat-num .pink { color: var(--pink); }
  .cl-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.3);
  }

  /* ── Client list ── */
  .client-list {
    position: relative;
  }

  /* Shared cursor follower image bubble — glassmorphism */
  .cl-cursor-bubble {
    position: fixed;
    width: 180px;
    height: 120px;
    border-radius: 0;
    /* glassmorphism base */
    background: rgba(18, 10, 16, 0.55);
    backdrop-filter: blur(18px) saturate(1.6);
    -webkit-backdrop-filter: blur(18px) saturate(1.6);
    border: 1px solid rgba(255,0,122,0.28);
    box-shadow:
      0 8px 32px rgba(0,0,0,0.55),
      0 0 0 0.5px rgba(255,255,255,0.06) inset,
      0 0 40px rgba(255,0,122,0.06);
    pointer-events: none;
    z-index: 9000;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.82) rotate(-4deg) translateY(6px);
    transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
                transform 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Glassmorphism top sheen */
  .cl-cursor-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.07) 0%,
      transparent 100%
    );
    border-radius: 0;
    pointer-events: none;
  }

  /* Glare streak — animated on hover */
  .cl-cursor-bubble::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(105deg,
      transparent 35%,
      rgba(255,255,255,0.07) 50%,
      rgba(255,255,255,0.03) 58%,
      transparent 72%
    );
    transform: skewX(-15deg);
    pointer-events: none;
    animation: bubbleGlare 5s ease-in-out infinite;
  }

  @keyframes bubbleGlare {
    0%   { left: -60%; opacity: 0; }
    18%  { opacity: 1; }
    52%  { left: 130%; opacity: 0; }
    100% { left: 130%; opacity: 0; }
  }

  .cl-cursor-bubble.visible {
    opacity: 1;
    transform: scale(1) rotate(-2deg) translateY(0);
  }

  .cl-cursor-bubble-inner {
    text-align: center;
    padding: 14px 16px;
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  /* ── Text flip container ── */
  .cl-bubble-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: var(--pink);
    line-height: 1.2;
  }

  .cl-cursor-bubble-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.48rem;
    letter-spacing: 4px;
    color: rgba(240,237,230,0.32);
    text-transform: uppercase;
    display: block;
    margin-top: 7px;
    transition: opacity 0.2s;
  }

  /* Pink accent dot bottom-left */
  .cl-bubble-dot {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 8px rgba(255,0,122,0.7);
    animation: dotPulse 1.8s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%,100% { box-shadow: 0 0 6px rgba(255,0,122,0.6); transform: scale(1); }
    50%      { box-shadow: 0 0 14px rgba(255,0,122,0.9); transform: scale(1.25); }
  }

  /* Each client row */
  /* ── CLIENT GRID ── */
  /* ── CLIENT GRID — editorial grid-lines style ── */
  .client-list {
    position: relative;
    margin: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .cl-item {
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    padding: 28px 26px 24px;
    cursor: default;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    transition: background 0.35s;
  }

  /* pink fill on hover */
  .cl-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,0,122,0.05);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
  }
  .cl-item:hover { background: rgba(255,0,122,0.04); }
  .cl-item:hover::before { opacity: 1; }

  /* + marker at each top-left corner intersection */
  .cl-item::after {
    content: '+';
    position: absolute;
    top: -7px;
    left: -5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
    transition: color 0.3s;
    z-index: 2;
  }
  .cl-item:hover::after { color: rgba(255,0,122,0.6); }

  /* num label */
  .cl-item-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s;
    line-height: 1;
  }
  .cl-item:hover .cl-item-num { color: rgba(255,0,122,0.6); }

  /* name — offset tiles effect */
  .cl-item-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    line-height: 1;
    margin-top: 16px;
    overflow: hidden;
    display: block;
    transition: color 0.3s;
  }
  .cl-item:hover .cl-item-name { color: rgba(255,255,255,1); }

  /* Row name — offset tiles effect */
  .cl-row-flip {
    display: block;
    height: 1em;
    overflow: hidden;
    position: relative;
  }
  .cl-row-cur,
  .cl-row-next {
    display: block;
    line-height: 1;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
  }
  .cl-row-cur  { transform: translateY(0); }
  .cl-row-next {
    position: absolute;
    top: 0; left: 0;
    transform: translateY(105%);
  }
  .cl-item:hover .cl-row-cur  { transform: translateY(-105%); }
  .cl-item:hover .cl-row-next { transform: translateY(0); }

  /* footer: type + arrow */
  .cl-item-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 14px;
  }
  .cl-item-type {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.44rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
    transition: color 0.3s;
    line-height: 1;
  }
  .cl-item:hover .cl-item-type { color: rgba(255,255,255,0.5); }

  .cl-item-arrow {
    font-size: 0.7rem;
    color: var(--pink);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .cl-item:hover .cl-item-arrow { opacity: 1; transform: translate(0,0); }

  /* Bottom marquee strip — keeps motion */
  .cl-marquee-strip {
    margin-top: 56px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 14px 0;
  }
  .cl-marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .cl-marquee-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .cl-marquee-item::after {
    content: '✦';
    color: rgba(255,0,122,0.3);
    font-size: 0.4rem;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .clients-top { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .clients-stats { padding: 0 20px; gap: 0; flex-wrap: wrap; }
    .cl-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .client-list { margin: 0 20px; grid-template-columns: repeat(2, 1fr); }
    .cl-item { min-height: 120px; padding: 22px 18px 18px; }
    .cl-item-name { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  }

  /* ═══════════════════════════════════════════════════════════
     ABOUT — EDITORIAL MAGAZINE v2
     Inspired by: Awwwards SOTD portfolios, Codrops interactions
  ═══════════════════════════════════════════════════════════ */
  #about {
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ── TOP ISSUE BAR ── */
  .about-issue-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 20px;
  }
  .about-issue-left { display: flex; align-items: center; gap: 14px; }
  .about-issue-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--pink);
  }
  .about-issue-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
  }
  .about-issue-center {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.08);
    text-align: center;
    text-transform: uppercase;
  }
  .about-issue-right {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.15);
    text-align: right;
    text-transform: uppercase;
  }

  /* ── MAIN EDITORIAL GRID ── */
  .about-spread {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 88vh;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* ══════════════════════
     LEFT COLUMN — PHOTO
  ══════════════════════ */
  .about-col-photo {
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.06);
    cursor: none;
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.9s ease;
  }
  /* Full-bleed photo */
  .about-photo-wrap {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 0.08s linear;
    will-change: transform;
  }
  .about-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(30%) contrast(1.05) brightness(0.92);
    transition: filter 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
    transform: scale(1.06);
    will-change: filter, transform;
  }
  .about-col-photo.active .about-photo {
    filter: grayscale(0%) contrast(1.08) brightness(1);
    transform: scale(1.0);
  }
  /* Chromatic aberration duplicates */
  .about-photo-chr {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    mix-blend-mode: screen;
    transform: scale(1.06);
  }
  .about-col-photo.active .about-photo-chr { opacity: 0.25; }
  /* Noise-blur mask overlay — reveals photo under cursor */
  .about-blur-mask {
    position: absolute; inset: 0;
    backdrop-filter: blur(12px) brightness(0.7);
    -webkit-backdrop-filter: blur(12px) brightness(0.7);
    transition: opacity 0.5s ease;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    background: rgba(5,5,5,0.25);
  }
  .about-col-photo.active .about-blur-mask { opacity: 0; }
  /* Spotlight reveal circle that follows cursor */
  .about-reveal-spot {
    position: absolute;
    width: 180px; height: 180px;
    margin: -90px 0 0 -90px;
    border-radius: 50%;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: normal;
  }
  .about-col-photo:hover .about-reveal-spot { opacity: 1; }
  /* Vignette */
  .about-photo-vignette {
    position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.2) 40%, transparent 65%),
      linear-gradient(to right, transparent 60%, rgba(5,5,5,0.4) 100%);
    pointer-events: none;
    z-index: 3;
  }
  /* Glare */
  .about-photo-glare {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 55%);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: screen;
    transition: opacity 0.4s;
  }
  .about-col-photo:hover .about-photo-glare { opacity: 1; }
  /* Photo meta — bottom */
  .about-photo-meta {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 32px;
    z-index: 5;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  }
  .about-photo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  }
  .about-photo-name em { color: var(--pink); font-style: normal; }
  .about-avail-badge {
    background: var(--pink);
    color: #fff;
    padding: 7px 13px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
  }
  .about-avail-badge::before {
    content: '';
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    animation: dotPulse 1.6s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.3; transform:scale(0.6); }
  }
  /* Fallback */
  .about-photo-fallback {
    position:absolute; inset:0;
    display: none;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 60%, rgba(255,0,122,0.07) 100%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10rem;
    color: rgba(255,0,122,0.05);
    letter-spacing: 8px;
    z-index: 1;
  }
  .about-photo.error { opacity: 0; }
  .about-photo.error ~ .about-photo-chr { display: none; }
  .about-photo.error ~ * ~ * ~ .about-photo-fallback { display: flex; }

  /* ══════════════════════
     RIGHT COLUMN — CONTENT
  ══════════════════════ */
  .about-col-content {
    display: grid;
    grid-template-rows: auto auto 1fr;
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s,
                opacity 0.9s ease 0.15s;
  }
  .about-col-content.in-view,
  .about-col-photo.in-view {
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  /* ── TOP SECTION: oversized num + headline ── */
  .about-top {
    padding: 44px 56px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 28px;
    align-items: start;
  }
  /* Giant editorial number */
  .about-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    line-height: 0.85;
    color: rgba(255,255,255,0.04);
    letter-spacing: -2px;
    user-select: none;
    position: relative;
    top: 4px;
    transition: color 0.4s;
  }
  #about:hover .about-big-num { color: rgba(255,0,122,0.07); }
  .about-top-right { display: flex; flex-direction: column; }
  .about-kicker {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .about-kicker::before { content:''; width:20px; height:1px; background:var(--pink); }

  /* Headline — each word is a character-split span */
  .about-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    line-height: 0.88;
    letter-spacing: 0px;
    margin: 0;
    display: flex; flex-direction: column; gap: 2px;
  }
  .hl-word {
    display: block;
    overflow: hidden;
    position: relative;
    cursor: default;
  }
  .hl-word-inner {
    display: block;
    transform: translateY(100%);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .hl-word-inner.revealed { transform: translateY(0); }
  .hl-word:nth-child(2) .hl-word-inner { transition-delay: 0.08s; color: var(--pink); }
  .hl-word:nth-child(3) .hl-word-inner { transition-delay: 0.16s; }
  /* Scramble chars — injected by JS */
  .hl-char {
    display: inline-block;
    transition: color 0.1s;
  }

  /* ── MIDDLE: bio + pull quote ── */
  .about-middle {
    padding: 36px 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-body {
    font-size: 0.9rem;
    line-height: 1.95;
    color: rgba(255,255,255,0.48);
    font-weight: 300;
  }
  .about-body strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    position: relative;
    cursor: default;
  }
  /* Word-level hover — magnetic underline */
  .about-body strong::after {
    content: '';
    position: absolute;
    bottom: -1px; left: -2px; right: -2px; height: 1px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.76,0,0.24,1);
  }
  .about-body strong:hover::after { transform: scaleX(1); }
  /* Editorial pull-quote */
  .about-pull-quote {
    border-left: 2px solid var(--pink);
    padding: 4px 0 4px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    line-height: 1.3;
    cursor: default;
    transition: color 0.4s;
  }
  .about-pull-quote:hover { color: rgba(255,255,255,0.7); }
  .about-pull-quote em { color: var(--pink); font-style: normal; }

  /* ── BOTTOM: stats + skills ── */
  .about-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* Stats row */
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .stat-box {
    padding: 26px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s;
  }
  .stat-box::before {
    content: '+';
    position: absolute; top:-7px; left:-5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.1);
    z-index:2;
    transition: color 0.3s;
  }
  .stat-box:hover::before { color: rgba(255,0,122,0.5); }
  /* Pink glow orb rises from bottom */
  .stat-box::after {
    content:'';
    position:absolute; bottom:-50px; left:50%;
    transform:translateX(-50%);
    width:100px; height:100px;
    background:radial-gradient(circle, rgba(255,0,122,0.55), transparent 65%);
    filter:blur(20px);
    opacity:0;
    pointer-events:none;
    transition:opacity 0.4s, bottom 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .stat-box:hover::after { opacity:1; bottom:-18px; }
  .stat-box:hover { background: rgba(255,0,122,0.03); }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--pink);
    line-height: 1;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .stat-box:hover .stat-num { transform: scale(1.1) translateY(-2px); }
  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-top: 5px;
    display: block;
    transition: color 0.3s;
  }
  .stat-box:hover .stat-label { color: rgba(255,255,255,0.5); }

  /* Skills — tag cloud with directional swipe */
  .about-skills {
    padding: 28px 56px;
  }
  .skills-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
  }
  .skills-header-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }
  .skills-header::after {
    content:''; flex:1; height:1px;
    background:rgba(255,255,255,0.06);
  }
  .skills-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .skill-tag {
    position: relative;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    cursor: default;
    overflow: hidden;
    transition: color 0.35s, border-color 0.35s;
    opacity: 0;
    transform: translateY(6px);
  }
  .skill-tag.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease,
                color 0.35s, border-color 0.35s;
  }
  /* Directional fill swipe */
  .skill-tag::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,0,122,0.1);
    transform: translateX(-101%);
    transition: transform 0.38s cubic-bezier(0.76,0,0.24,1);
    z-index: 0;
  }
  .skill-tag:hover::before { transform: translateX(0); }
  .skill-tag:hover { color: var(--white); border-color: rgba(255,0,122,0.35); }
  .skill-tag span { position: relative; z-index: 1; }
  /* Featured tags get dot accent */
  .skill-tag.featured {
    border-color: rgba(255,0,122,0.2);
    color: rgba(255,0,122,0.6);
  }
  .skill-tag.featured::after {
    content: '✦';
    margin-left: 6px;
    font-size: 0.45rem;
    vertical-align: middle;
    position: relative; z-index: 1;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .about-top { grid-template-columns: 70px 1fr; }
    .about-big-num { font-size: 5rem; }
    .about-top, .about-middle, .about-skills { padding-left: 40px; padding-right: 40px; }
  }
  @media (max-width: 900px) {
    .about-spread { grid-template-columns: 1fr; min-height: auto; }
    .about-col-photo {
      height: 72vw; max-height: 420px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .about-issue-bar { padding: 12px 24px; }
    .about-top, .about-middle, .about-skills { padding: 28px 24px; }
    .about-top { grid-template-columns: 1fr; gap: 0; }
    .about-big-num { display: none; }
    .about-headline { font-size: clamp(2.8rem, 8vw, 4rem); }
  }
  @media (max-width: 480px) {
    .about-stats { grid-template-columns: repeat(3,1fr); }
    .skills-tags { gap: 6px; }
  }

  /* PROJECTS */
  /* ============================================================
     SELECTED WORKS — List + Grid Hybrid
  ============================================================ */
  #projects {
    padding: 140px 60px;
    position: relative;
  }

  /* ── Header row ── */
  .projects-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
  }
  .projects-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.88;
  }
  .projects-title span { color: var(--pink); }
  .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.55);
    text-decoration: none;
    transition: all 0.3s;
    cursor: none;
    position: relative;
  }
  /* + corner marker */
  .view-all-btn::before {
    content: '+';
    position: absolute;
    top: -7px; left: -5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s;
  }
  .view-all-btn:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
  }
  .view-all-btn:hover::before { color: #fff; }

  /* ── GRID ZONE — top 2 cards ── */
  /* ── Unified grid ── */
  .works-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    grid-template-rows: auto auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .works-grid .project-card.is-grid:nth-child(1) { grid-column: 1; grid-row: 1; min-height: 440px; }
  .works-grid .project-card.is-grid:nth-child(2) { grid-column: 2; grid-row: 1; min-height: 440px; }
  .works-grid .project-card.is-grid:nth-child(3) { grid-column: 1 / 3; grid-row: 2; min-height: 360px; }
  .works-grid .project-card.is-grid:nth-child(3) .pc-ghost { font-size: clamp(4rem, 10vw, 10rem); }
  .works-grid .project-card.is-grid:nth-child(4) { display: none; }

  /* ── SHARED: project-card ── */
  .project-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: #0c0c0c;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
  /* + corner marker on each card */
  .project-card::after {
    content: '+';
    position: absolute;
    top: -7px; left: -5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.12);
    pointer-events: none;
    z-index: 20;
    transition: color 0.3s;
  }
  .project-card:hover::after { color: rgba(255,0,122,0.5); }

  /* ── GRID CARDS (card 1 & 2) ── */
  .project-card.is-grid {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    transition: border-color 0.4s;
  }
  .project-card.is-grid:hover {
    border-color: rgba(255,0,122,0.3);
  }

  /* Visual fill */
  .pc-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
  }
  .pc-visual-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .project-card.is-grid:hover .pc-visual-bg { transform: scale(1.04); }

  /* Ghost text watermark */
  .pc-ghost {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem,8vw,7rem);
    color: rgba(255,255,255,0.035);
    letter-spacing: -2px;
    line-height: 0.9;
    text-align: center;
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  }
  .project-card.is-grid:hover .pc-ghost {
    transform: scale(1.08) translateY(-4px);
    opacity: 0.06;
  }

  /* Clip-path reveal overlay for grid cards */
  .pc-reveal {
    position: absolute;
    inset: 0;
    z-index: 4;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.65s cubic-bezier(0.16,1,0.3,1);
  }
  .project-card.is-grid:hover .pc-reveal {
    clip-path: inset(0% 0 0 0);
  }
  .pc-reveal-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  /* Play icon inside reveal */
  .pc-play-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,0,122,0.7);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pc-play-icon::after {
    content: '';
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--pink);
    margin-left: 3px;
  }
  .pc-play-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(255,0,122,0.7);
    text-transform: uppercase;
  }

  /* Grid card bottom info bar */
  .pc-info {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #0c0c0c;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
  }
  .pc-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    letter-spacing: 3px;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.8;
  }
  .pc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem,2.5vw,2rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
  }
  .pc-year {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
    margin-top: 4px;
  }
  .pc-arrow {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .project-card:hover .pc-arrow {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    transform: rotate(45deg) scale(1.1);
  }

  /* Backgrounds per card */
  .pc-bg-1 { background: linear-gradient(135deg, #0f0008, #1a0012, #0a0008); }
  .pc-bg-2 { background: linear-gradient(135deg, #04040e, #0a0820, #060310); }
  .pc-bg-3 { background: linear-gradient(145deg, #100006, #1c000e, #250018); display:flex;align-items:center;justify-content:center; }
  .pc-bg-4 { background: linear-gradient(145deg, #0c0004, #180010, #1e000c); display:flex;align-items:center;justify-content:center; }

  /* Glow blobs */
  .pc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    animation: blobPulse 4s ease-in-out infinite;
  }

  @media (max-width: 768px) {
    .works-grid { grid-template-columns: 1fr; }
    .works-grid .project-card.is-grid:nth-child(1),
    .works-grid .project-card.is-grid:nth-child(2),
    .works-grid .project-card.is-grid:nth-child(3) { grid-column: 1; grid-row: auto; min-height: 320px; }
    .works-grid .project-card.is-grid:nth-child(4) { display: flex; grid-column: 1; grid-row: auto; min-height: 320px; }
  }

  /* FOOTER CTA */
  #footer {
    background: var(--black);
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255,0,122,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .footer-cta-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 14rem);
    line-height: 0.88;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
  }
  .footer-cta-title .pink { color: var(--pink); }
  .footer-cta-sub {
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin: 24px auto 0;
    max-width: 500px;
    line-height: 1.6;
  }
  .footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0;
    width: fit-content;
    background: transparent;
    color: var(--white);
    padding: 20px 52px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  /* + corners */
  .footer-cta-btn::after {
    content: '+';
    position: absolute;
    top: -7px; left: -5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s;
    z-index: 2;
  }
  .footer-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .footer-cta-btn:hover { border-color: var(--pink); }
  .footer-cta-btn:hover::before { transform: scaleX(1); }
  .footer-cta-btn:hover::after { color: #fff; }
  .footer-cta-btn span { position: relative; z-index: 1; transition: color 0.4s; }
  .footer-cta-btn:hover span { color: #fff; }
  .footer-bottom {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
  }
  .footer-bottom-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
  }
  .footer-bottom-logo span { color: var(--pink); }
  .footer-bottom-copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
  }
  .footer-social {
    display: flex;
    gap: 20px;
  }
  .footer-social a {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
    cursor: none;
  }
  .footer-social a:hover { color: var(--pink); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideUp {
    to { transform: translateY(0); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes marquee-reverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
  @keyframes scrollSlide {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  @keyframes blobPulse {
    0%, 100% { transform: scale(1) translateY(-50%); opacity: 0.6; }
    50% { transform: scale(1.1) translateY(-50%); opacity: 0.8; }
  }

  /* SCROLL REVEAL — kept for non-GSAP fallback */
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.25s; }
  .reveal-delay-3 { transition-delay: 0.35s; }

  /* =====================
     GSAP SPLIT TEXT SCRUB
  ===================== */
  .gsap-title-wrap {
    overflow: hidden;
    display: block;
  }
  .gsap-title-line {
    display: block;
    will-change: transform, opacity;
  }

  /* =====================
     GSAP PARALLAX LAYERS
  ===================== */
  .parallax-slow  { will-change: transform; }
  .parallax-med   { will-change: transform; }
  .parallax-fast  { will-change: transform; }

  /* Pink blob hero parallax */
  .hero-pink-blob { will-change: transform; }

  /* Section decorative number parallax */
  .hero-number { will-change: transform; }

  /* =====================
     GSAP PIN COUNTER — Services section pin
  ===================== */
  .services-pin-wrap {
    position: relative;
  }

  /* Scrub char animation base */
  .scrub-char {
    display: inline-block;
    will-change: transform, opacity, color;
  }

  /* Section entrance base states for GSAP */
  .gsap-fade-up {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
  }
  .gsap-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    will-change: transform, opacity;
  }
  .gsap-fade-right {
    opacity: 0;
    transform: translateX(50px);
    will-change: transform, opacity;
  }
  .gsap-scale-in {
    opacity: 0;
    transform: scale(0.88);
    will-change: transform, opacity;
  }

  /* Progress line for scrub */
  .gsap-scrub-line {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    z-index: 9999;
    pointer-events: none;
    opacity: 0.6;
  }

  @media (max-width: 768px) {
    #afk-toggle {
      bottom: 24px;
      right: 14px;
      left: auto;
      font-size: 0.55rem;
      padding: 7px 10px;
      gap: 5px;
      letter-spacing: 1px;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    #afk-toggle .afk-dot { width: 5px; height: 5px; }

    #hero { padding: 0 20px; }
    #services, #projects, #footer { padding: 80px 20px; }
    #footer { padding-bottom: 80px; }

    .projects-header-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .view-all-btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer-cta-title { font-size: clamp(2.8rem, 11vw, 4rem); word-break: break-word; }
    .clients-top { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-social { justify-content: center; }
    .hero-scroll { display: none; }

    /* Services header text scale */
    .services-header { font-size: clamp(2.2rem, 9vw, 4rem); margin-bottom: 40px; }

    /* Section label padding */
    .section-label { margin-bottom: 28px; }
  }

  /* Extra small screens — 480px */
  @media (max-width: 480px) {
    /* Footer CTA btn full width */
    .footer-cta-btn { width: 100%; justify-content: center; padding: 18px 24px; }
  }

  /* =====================
     AFK SCREEN
  ===================== */

  /* Loading bar — bottom of screen, 5s before AFK */
  #afk-loader {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    z-index: 99990;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  #afk-loader.show { opacity: 1; }
  #afk-loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), #ff69b4, var(--pink));
    background-size: 200% 100%;
    animation: loaderShine 1s linear infinite;
    box-shadow: 0 0 12px rgba(255,0,122,0.8), 0 0 30px rgba(255,0,122,0.4);
    transition: width linear;
  }
  @keyframes loaderShine {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Toggle button — always floating */
  #afk-toggle {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 99995;
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(255,0,122,0.3);
    color: var(--blush);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 0;
    cursor: none;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }
  #afk-toggle:hover { border-color: var(--pink); color: var(--pink); }
  #afk-toggle .afk-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
    animation: dotPulse 1.5s ease-in-out infinite;
  }
  #afk-toggle.afk-off .afk-dot { background: rgba(255,255,255,0.2); animation: none; }
  #afk-toggle.afk-off { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); }
  @keyframes dotPulse {
    0%,100% { transform: scale(1); opacity:1; }
    50% { transform: scale(1.5); opacity:0.6; }
  }

  /* AFK OVERLAY */
  #afk-screen {
    position: fixed;
    inset: 0;
    z-index: 99997;
    pointer-events: none;
    opacity: 0;
    background: var(--black);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #afk-screen.afk-enter {
    pointer-events: all;
    animation: afkFadeIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  #afk-screen.afk-exit {
    animation: afkFadeOut 0.7s cubic-bezier(0.7,0,0.3,1) forwards;
  }
  @keyframes afkFadeIn {
    0%   { opacity:0; clip-path: inset(50% 50% 50% 50%); }
    100% { opacity:1; clip-path: inset(0% 0% 0% 0%); }
  }
  @keyframes afkFadeOut {
    0%   { opacity:1; clip-path: inset(0% 0% 0% 0%); transform: scale(1); }
    100% { opacity:0; clip-path: inset(50% 50% 50% 50%); transform: scale(1.04); }
  }

  /* BG gradient */
  .afk-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,0,122,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255,0,122,0.12) 0%, transparent 60%),
      var(--black);
    animation: afkBgPulse 4s ease-in-out infinite alternate;
  }
  @keyframes afkBgPulse {
    from { opacity: 0.8; }
    to   { opacity: 1; }
  }

  /* Giant kanji background */
  .afk-kanji {
    position: absolute;
    font-family: serif;
    font-weight: 900;
    color: rgba(255,0,122,0.055);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }
  .afk-kanji-1 { font-size: clamp(14rem, 35vw, 38rem); top: -5%; left: -4%; animation: kanjiFloat1 8s ease-in-out infinite; }
  .afk-kanji-2 { font-size: clamp(8rem, 20vw, 22rem); bottom: -3%; right: -2%; animation: kanjiFloat2 10s ease-in-out infinite; color: rgba(255,0,122,0.04); }
  .afk-kanji-3 { font-size: clamp(5rem, 12vw, 14rem); top: 40%; right: 10%; animation: kanjiFloat3 7s ease-in-out infinite; color: rgba(255,255,255,0.025); }
  @keyframes kanjiFloat1 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-20px) rotate(-1deg); } }
  @keyframes kanjiFloat2 { 0%,100% { transform: translateY(0) rotate(5deg); } 50% { transform: translateY(15px) rotate(3deg); } }
  @keyframes kanjiFloat3 { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-12px) rotate(-5deg); } }

  /* Kinetic marquee rows */
  .afk-marquee-wrap {
    position: absolute;
    width: 120%;
    left: -10%;
    overflow: hidden;
    white-space: nowrap;
  }
  .afk-marquee-wrap:nth-child(1) { top: 12%; }
  .afk-marquee-wrap:nth-child(2) { top: 28%; }
  .afk-marquee-wrap:nth-child(3) { top: 44%; }
  .afk-marquee-wrap:nth-child(4) { top: 60%; }
  .afk-marquee-wrap:nth-child(5) { top: 76%; }

  .afk-marquee-row {
    display: inline-flex;
    gap: 60px;
    padding-right: 60px;
    animation: afkMarquee 18s linear infinite;
  }
  .afk-marquee-wrap:nth-child(even) .afk-marquee-row { animation-direction: reverse; animation-duration: 22s; }
  .afk-marquee-wrap:nth-child(3) .afk-marquee-row { animation-duration: 14s; }
  .afk-marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    white-space: nowrap;
    display: flex; align-items: center; gap: 60px;
  }
  .afk-marquee-item::after { content: '✦'; font-size: 0.4em; opacity: 0.4; }
  .afk-row-1 .afk-marquee-item { font-size: clamp(2.5rem, 5vw, 6rem); color: rgba(255,255,255,0.06); }
  .afk-row-2 .afk-marquee-item { font-size: clamp(1.2rem, 2.5vw, 3rem); color: rgba(255,0,122,0.25); }
  .afk-row-3 .afk-marquee-item { font-size: clamp(3rem, 6vw, 7.5rem); color: rgba(255,255,255,0.05); }
  .afk-row-4 .afk-marquee-item { font-size: clamp(1rem, 2vw, 2.5rem); color: rgba(255,0,122,0.18); }
  .afk-row-5 .afk-marquee-item { font-size: clamp(2rem, 4vw, 5rem); color: rgba(255,255,255,0.04); }
  @keyframes afkMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Center content */
  .afk-center {
    position: relative; z-index: 5;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    pointer-events: none;
  }
  .afk-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 16vw, 18rem);
    line-height: 0.85;
    letter-spacing: -4px;
    animation: afkLogoPulse 3s ease-in-out infinite;
    mix-blend-mode: normal;
  }
  .afk-logo .zev { color: var(--white); }
  .afk-logo .sama { color: var(--pink); }
  @keyframes afkLogoPulse {
    0%,100% { text-shadow: 0 0 60px rgba(255,0,122,0.3); }
    50% { text-shadow: 0 0 120px rgba(255,0,122,0.7), 0 0 200px rgba(255,0,122,0.2); }
  }
  .afk-sub {
    font-family: serif;
    font-weight: 200;
    font-size: clamp(0.75rem, 1.5vw, 1.1rem);
    letter-spacing: 8px;
    color: rgba(255,255,255,0.2);
    margin-top: 12px;
    animation: afkSubFade 2s ease-in-out infinite alternate;
  }
  @keyframes afkSubFade {
    from { opacity: 0.3; } to { opacity: 0.7; }
  }

  /* Scan line effect */
  #afk-screen::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none; z-index: 6;
  }

  /* Bottom buttons */
  .afk-actions {
    position: absolute;
    bottom: clamp(24px, 5vh, 48px);
    left: 50%; transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: all;
    width: max-content;
  }
  .afk-tap-hint {
    font-size: clamp(0.65rem, 1.5vw, 0.78rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    animation: afkSubFade 1.8s ease-in-out infinite alternate;
  }
  .afk-tap-hint .arrow { color: var(--pink); }
  .afk-btn-dismiss {
    background: transparent;
    border: 1px solid rgba(255,0,122,0.35);
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.6rem, 1.2vw, 0.72rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  .afk-btn-dismiss:hover { background: rgba(255,0,122,0.1); border-color: var(--pink); color: var(--white); }
  .afk-line {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: clamp(80px, 20vw, 160px); height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    box-shadow: 0 0 20px rgba(255,0,122,0.6);
    animation: afkLinePulse 2s ease-in-out infinite;
  }
  .afk-line-top { top: clamp(16px, 4vh, 32px); }
  .afk-line-bottom { bottom: clamp(80px, 15vh, 120px); }
  @keyframes afkLinePulse {
    0%,100% { opacity: 0.5; width: clamp(80px,15vw,140px); }
    50% { opacity: 1; width: clamp(100px,25vw,200px); }
  }
  /* =====================
     HERO MINI-GAME: CATCH "S"
  ===================== */
  #hero-game {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
  }

  /* HUD — score + hint */
  .game-hud {
    position: absolute;
    top: 28px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .game-hud.visible { opacity: 1; }
  .game-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--pink);
    line-height: 1;
  }
  .game-score span { color: rgba(255,255,255,0.3); font-size: 0.7em; }
  .game-hint {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    animation: hintPulse 2s ease-in-out infinite;
  }
  @keyframes hintPulse {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* Combo flash */
  .game-combo {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    letter-spacing: 4px;
    color: var(--pink);
    pointer-events: none;
    opacity: 0;
    z-index: 20;
    text-shadow: 0 0 20px rgba(255,0,122,0.9);
    white-space: nowrap;
    transform: translate(-50%, -50%);
  }
  .game-combo.pop {
    animation: comboPop 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  @keyframes comboPop {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    40%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
    70%  { opacity: 1; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0; transform: translate(-50%, -80%) scale(1); }
  }

  /* The catchable target */
  .game-target {
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
    pointer-events: all;
    z-index: 15;
    transition: transform 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  .game-target::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255,0,122,0.2);
    animation: targetPing 1.5s ease-out infinite;
  }
  @keyframes targetPing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
  }
  .game-target-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--pink);
    line-height: 1;
    pointer-events: none;
  }
  /* Wiggle when about to escape */
  .game-target.restless {
    animation: targetWiggle 0.4s ease-in-out infinite;
  }
  @keyframes targetWiggle {
    0%,100% { transform: rotate(-4deg) scale(1); }
    50%      { transform: rotate(4deg) scale(1.05); }
  }

  /* Hit burst — particles */
  .game-burst {
    position: absolute;
    width: 0; height: 0;
    pointer-events: none;
    z-index: 16;
  }
  .burst-particle {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
    transform-origin: center;
    animation: burstFly var(--dur) ease-out forwards;
    top: 0; left: 0;
  }
  @keyframes burstFly {
    0%   { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
  }

  /* Glitch overlay on hit */
  .game-glitch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 18;
    opacity: 0;
  }
  .game-glitch.active {
    animation: glitchFlash 0.45s steps(1) forwards;
  }
  @keyframes glitchFlash {
    0%   { opacity: 1; background: rgba(255,0,122,0.08); clip-path: inset(30% 0 40% 0); }
    10%  { clip-path: inset(10% 0 60% 0); background: rgba(255,255,255,0.05); }
    20%  { clip-path: inset(60% 0 10% 0); background: rgba(255,0,122,0.1); }
    30%  { clip-path: inset(40% 0 30% 0); background: rgba(255,255,255,0.03); }
    40%  { clip-path: inset(20% 0 50% 0); background: rgba(255,0,122,0.06); }
    50%  { clip-path: inset(0% 0 0% 0); background: rgba(255,0,122,0.04); opacity: 0.6; }
    100% { opacity: 0; }
  }

  /* Miss feedback — brief red flash on target */
  .game-target.miss {
    animation: targetMiss 0.3s ease forwards;
  }
  @keyframes targetMiss {
    0%,100% { border-color: var(--pink); }
    50%     { border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.4); }
  }

  /* Score popup float */
  .score-popup {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--pink);
    pointer-events: none;
    z-index: 20;
    animation: scoreFloat 0.8s ease-out forwards;
    text-shadow: 0 0 12px rgba(255,0,122,0.6);
  }
  @keyframes scoreFloat {
    0%   { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-50px) scale(0.8); }
  }

  /* Mobile size adjustments */
  @media (max-width: 768px) {
    .game-hud { top: 80px; right: 24px; }
    .game-target { width: 48px; height: 48px; }
    .game-target-letter { font-size: 1.3rem; }
  }

  /* =====================
     SCORE 300 — CELEBRATION SCREEN
  ===================== */
  #game-celebration {
    position: fixed;
    inset: 0;
    z-index: 999999; /* di atas hamburger (99998) dan cursor (99999) */
    pointer-events: none;
    opacity: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  #game-celebration.active {
    pointer-events: all;
    opacity: 1;
  }

  /* Full-screen glitch chaos */
  .cel-glitch-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  .cel-glitch-slice {
    position: absolute;
    left: 0; right: 0;
    background: var(--pink);
    opacity: 0;
    mix-blend-mode: screen;
  }

  /* Noise scan-line overlay */
  .cel-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.3) 2px,
      rgba(0,0,0,0.3) 4px
    );
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
  }
  #game-celebration.active .cel-scanlines { opacity: 1; }

  /* RGB split text */
  .cel-preload-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    z-index: 10;
    text-align: center;
    white-space: nowrap;
    will-change: transform, opacity;
  }
  .cel-preload-text.rgb {
    text-shadow:
      2px 0 0 rgba(255,0,122,0.8),
      -2px 0 0 rgba(0,200,255,0.6);
  }

  /* Main ZEVSAMA reveal */
  .cel-logo-wrap {
    position: relative;
    z-index: 15;
    opacity: 0;
    text-align: center;
  }
  .cel-logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 18vw, 16rem);
    line-height: 0.88;
    letter-spacing: -4px;
    color: var(--white);
    display: block;
    position: relative;
  }
  .cel-logo-main .pink { color: var(--pink); }
  /* Glitch copies */
  .cel-logo-main::before,
  .cel-logo-main::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    pointer-events: none;
  }
  .cel-logo-main::before {
    color: rgba(255,0,122,0.7);
    clip-path: inset(30% 0 50% 0);
    transform: translate(-4px, 0);
    animation: logoChromeA 0.12s steps(1) infinite;
  }
  .cel-logo-main::after {
    color: rgba(0,220,255,0.5);
    clip-path: inset(60% 0 10% 0);
    transform: translate(4px, 0);
    animation: logoChromeB 0.16s steps(1) infinite;
  }
  @keyframes logoChromeA {
    0%  { clip-path: inset(10% 0 70% 0); transform: translate(-4px, 0); }
    25% { clip-path: inset(40% 0 40% 0); transform: translate(3px, 1px); }
    50% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, -1px); }
    75% { clip-path: inset(20% 0 60% 0); transform: translate(5px, 0); }
  }
  @keyframes logoChromeB {
    0%  { clip-path: inset(50% 0 30% 0); transform: translate(4px, 0); }
    33% { clip-path: inset(20% 0 55% 0); transform: translate(-3px, 1px); }
    66% { clip-path: inset(70% 0 5%  0); transform: translate(2px, -2px); }
  }

  /* Japanese subtitle */
  .cel-jp-text {
    font-family: serif;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    letter-spacing: 6px;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
  }
  .cel-jp-text.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Score badge */
  .cel-score-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    letter-spacing: 6px;
    color: var(--pink);
    z-index: 20;
    opacity: 0;
    white-space: nowrap;
  }

  /* Continue prompt */
  .cel-continue {
    position: absolute;
    bottom: clamp(100px, 15vh, 140px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    z-index: 20;
    opacity: 0;
    white-space: nowrap;
    animation: hintPulse 1.5s ease-in-out infinite;
  }

  @media (max-width: 768px) {
    .cel-logo-main { font-size: clamp(4rem, 22vw, 8rem); letter-spacing: -2px; }
    .cel-score-badge { top: 24px; font-size: 0.75rem; }
    .cel-continue { bottom: 120px; }
  }
  /* Desktop: GSAP handles these, disable CSS transition to avoid conflict */
  @media (min-width: 769px) {
    #clientsHeadline.reveal,
    #projectsHeadline.reveal,
    #footerHeadline.reveal {
      opacity: 0;
      transform: none;
      transition: none;
    }
  }
  /* =====================
     PRELOADER
  ===================== */
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: all;
  }
  #preloader.pl-exit {
    animation: plExit 0.9s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
  @keyframes plExit {
    0%   { opacity: 1; clip-path: inset(0 0 0 0); }
    100% { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; }
  }

  /* Scanline noise on preloader */
  #preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent, transparent 3px,
      rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px
    );
    pointer-events: none;
    z-index: 2;
  }

  /* Ambient glow */
  .pl-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(255,0,122,0.12) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s;
  }
  #preloader.pl-glow-on .pl-glow { opacity: 1; }

  /* Logo SVG wrapper */
  .pl-logo-wrap {
    position: relative;
    z-index: 5;
    width: clamp(120px, 28vw, 220px);
    height: auto;
    margin-bottom: 48px;
  }
  .pl-logo-wrap svg {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  /* Each of the 4 logo paths animates individually */
  /* path A = top-left rect, B = bottom-right rect, C = left curve, D = right curve */
  .pl-path-a,
  .pl-path-b,
  .pl-path-c,
  .pl-path-d {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    transition: none;
  }

  /* ── PHASE 1: paths fly in from 4 directions ── */
  .pl-logo-wrap.phase-impact .pl-path-a {
    animation: pathFlyA 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  .pl-logo-wrap.phase-impact .pl-path-b {
    animation: pathFlyB 0.55s cubic-bezier(0.16,1,0.3,1) 0.06s forwards;
  }
  .pl-logo-wrap.phase-impact .pl-path-c {
    animation: pathFlyC 0.55s cubic-bezier(0.16,1,0.3,1) 0.03s forwards;
  }
  .pl-logo-wrap.phase-impact .pl-path-d {
    animation: pathFlyD 0.55s cubic-bezier(0.16,1,0.3,1) 0.09s forwards;
  }

  @keyframes pathFlyA {
    0%   { opacity: 1; transform: translate(-80px, -60px) scale(0.8); filter: blur(8px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translate(0, 0) scale(1); }
  }
  @keyframes pathFlyB {
    0%   { opacity: 1; transform: translate(80px, 60px) scale(0.8); filter: blur(8px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translate(0, 0) scale(1); }
  }
  @keyframes pathFlyC {
    0%   { opacity: 1; transform: translate(-60px, 40px) scale(0.85); filter: blur(6px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translate(0, 0) scale(1); }
  }
  @keyframes pathFlyD {
    0%   { opacity: 1; transform: translate(60px, -40px) scale(0.85); filter: blur(6px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translate(0, 0) scale(1); }
  }

  /* ── PHASE 2: assembled logo — shockwave pulse ── */
  .pl-logo-wrap.phase-pulse svg {
    animation: logoShock 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
  }
  @keyframes logoShock {
    0%  { transform: scale(1); }
    15% { transform: scale(1.08) rotate(-0.5deg); }
    30% { transform: scale(0.97) rotate(0.3deg); }
    50% { transform: scale(1.03); }
    70% { transform: scale(0.99); }
    100%{ transform: scale(1); }
  }

  /* ── PHASE 2b: paths split apart on impact ── */
  .pl-logo-wrap.phase-split .pl-path-a {
    animation: splitA 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  .pl-logo-wrap.phase-split .pl-path-b {
    animation: splitB 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.04s forwards;
  }
  .pl-logo-wrap.phase-split .pl-path-c {
    animation: splitC 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.02s forwards;
  }
  .pl-logo-wrap.phase-split .pl-path-d {
    animation: splitD 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.06s forwards;
  }
  @keyframes splitA { 0%{transform:translate(0,0);opacity:1;} 100%{transform:translate(-28px,-22px) scale(1.02);opacity:1;} }
  @keyframes splitB { 0%{transform:translate(0,0);opacity:1;} 100%{transform:translate(28px,22px) scale(1.02);opacity:1;} }
  @keyframes splitC { 0%{transform:translate(0,0);opacity:1;} 100%{transform:translate(-18px,14px) scale(1.01);opacity:1;} }
  @keyframes splitD { 0%{transform:translate(0,0);opacity:1;} 100%{transform:translate(18px,-14px) scale(1.01);opacity:1;} }

  /* ── PHASE 3: rejoin ── */
  .pl-logo-wrap.phase-join .pl-path-a,
  .pl-logo-wrap.phase-join .pl-path-b,
  .pl-logo-wrap.phase-join .pl-path-c,
  .pl-logo-wrap.phase-join .pl-path-d {
    animation: pathJoin 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  @keyframes pathJoin {
    0%   { } /* keep current split position via JS inline style */
    100% { transform: translate(0,0) scale(1); opacity: 1; }
  }

  /* Shockwave ring */
  .pl-shockwave {
    position: absolute;
    width: 0; height: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,0,122,0.7);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 4;
    opacity: 0;
  }
  .pl-shockwave.fire {
    animation: shockRing 0.7s ease-out forwards;
  }
  @keyframes shockRing {
    0%   { width: 0; height: 0; opacity: 0.9; transform: translate(-50%,-50%); }
    100% { width: 500px; height: 500px; opacity: 0; transform: translate(-50%,-50%); }
  }

  /* Impact flash */
  .pl-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
  }
  .pl-flash.fire {
    animation: flashBurst 0.35s ease-out forwards;
  }
  @keyframes flashBurst {
    0%   { opacity: 0.18; }
    100% { opacity: 0; }
  }

  /* Impact particles */
  .pl-particle {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--pink);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
  }
  .pl-particle.fire {
    animation: particleFly var(--pdur) ease-out forwards;
  }
  @keyframes particleFly {
    0%   { opacity: 1; transform: translate(0,0) scale(1); }
    100% { opacity: 0; transform: translate(var(--ptx), var(--pty)) scale(0); }
  }

  /* Bottom text block */
  .pl-meta {
    position: relative;
    z-index: 5;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  #preloader.pl-meta-in .pl-meta { opacity: 1; transform: translateY(0); }

  .pl-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: 12px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
  }
  .pl-name span { color: var(--pink); }

  .pl-kanji {
    font-family: serif;
    font-size: clamp(0.65rem, 1.4vw, 0.85rem);
    letter-spacing: 5px;
    color: rgba(255,255,255,0.22);
    display: block;
    margin-bottom: 6px;
  }

  .pl-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(0.52rem, 1.1vw, 0.62rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    display: block;
  }

  /* Divider line under meta name — matches nav border style */
  .pl-meta-divider {
    width: clamp(40px, 8vw, 60px);
    height: 1px;
    background: rgba(255,0,122,0.4);
    margin: 10px auto;
  }

  /* Loading bar */
  .pl-bar-wrap {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(180px, 32vw, 280px);
    z-index: 5;
  }
  /* Status badge above bar — matches ticker-status style */
  .pl-bar-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
  }
  .pl-bar-status-dot {
    width: 4px; height: 4px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,0,122,0.7);
    animation: tickerPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
    margin-right: 6px;
  }
  .pl-bar-status-left {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .pl-bar-track {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    position: relative;
    overflow: visible;
  }
  /* Track end ticks — matches nav border aesthetic */
  .pl-bar-track::before,
  .pl-bar-track::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 1px;
    height: 7px;
    background: rgba(255,255,255,0.15);
  }
  .pl-bar-track::before { left: 0; }
  .pl-bar-track::after  { right: 0; }
  .pl-bar-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    background: var(--pink);
    box-shadow: 0 0 8px rgba(255,0,122,0.5), 0 0 2px rgba(255,0,122,0.8);
    transition: width 0.12s linear;
  }
  /* Glowing head of the bar */
  .pl-bar-fill::after {
    content: '';
    position: absolute;
    right: -1px; top: -2px;
    width: 3px; height: 5px;
    background: rgba(255,0,122,0.9);
    box-shadow: 0 0 6px rgba(255,0,122,0.9);
  }
  .pl-bar-label {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
  }
  .pl-bar-pct {
    color: rgba(255,0,122,0.75);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
  /* % suffix handled via JS */

  /* ── GRID ACCENTS (left & right panels) ── */
  .pl-grid {
    position: absolute;
    top: 0; bottom: 0;
    width: clamp(80px, 14vw, 160px);
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
  }
  #preloader.pl-meta-in .pl-grid { opacity: 1; }
  .pl-grid-left  { left: 0; }
  .pl-grid-right { right: 0; transform: scaleX(-1); }

  /* Grid lines drawn via SVG pattern */
  .pl-grid svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
  }

  /* Fade mask — grid fades toward center */
  .pl-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--black) 100%);
    pointer-events: none;
  }
  .pl-grid-right::after {
    background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
  }

  /* Plus / crosshair markers */
  .pl-plus {
    position: absolute;
    width: 14px; height: 14px;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  #preloader.pl-meta-in .pl-plus { opacity: 1; }
  .pl-plus::before,
  .pl-plus::after {
    content: '';
    position: absolute;
    background: rgba(255,0,122,0.45);
  }
  .pl-plus::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
  .pl-plus::after  { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

  /* Plus variants — dimmer for secondary ones */
  .pl-plus.dim::before,
  .pl-plus.dim::after { background: rgba(255,255,255,0.12); }
  .pl-plus.mid::before,
  .pl-plus.mid::after { background: rgba(255,0,122,0.2); }

  /* Big kanji bg watermark */
  .pl-kanji-bg {
    position: absolute;
    font-family: serif;
    font-weight: 900;
    color: rgba(255,0,122,0.03);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
  }
  .pl-kanji-bg-1 {
    font-size: clamp(12rem, 32vw, 28rem);
    top: -5%; left: -6%;
    transform: rotate(-8deg);
    animation: kanjiDrift1 12s ease-in-out infinite;
  }
  .pl-kanji-bg-2 {
    font-size: clamp(8rem, 20vw, 18rem);
    bottom: -4%; right: -2%;
    transform: rotate(6deg);
    color: rgba(255,255,255,0.018);
    animation: kanjiDrift2 9s ease-in-out infinite;
  }
  @keyframes kanjiDrift1 { 0%,100%{transform:rotate(-8deg) translateY(0);} 50%{transform:rotate(-7deg) translateY(-18px);} }
  @keyframes kanjiDrift2 { 0%,100%{transform:rotate(6deg) translateY(0);} 50%{transform:rotate(5deg) translateY(12px);} }



  /* ===================== CURSOR TRAIL ===================== */
  .cur-trail {
    position: fixed; pointer-events: none; border-radius: 50%; z-index: 99998;
    transform: translate(-50%, -50%); mix-blend-mode: screen; will-change: transform, opacity;
  }

  /* ===================== HIRE ME BUBBLE — BRUTALIST GRID v2 ===================== */
  #hire-bubble {
    position: fixed; bottom: 32px; left: 32px; z-index: 9990;
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  }
  #hire-bubble.hire-visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  @media (max-width: 768px) { #hire-bubble { bottom: 90px; left: 16px; } }

  /* ── TRIGGER BUTTON ── */
  .hire-btn {
    display: flex; align-items: center; gap: 9px;
    background: var(--black); color: var(--pink); border: 1px solid var(--pink);
    border-radius: 0; padding: 10px 16px;
    font-family: 'Share Tech Mono', monospace; font-size: 0.62rem;
    font-weight: 400; letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
    box-shadow: 3px 3px 0 var(--pink);
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.18s;
    position: relative; z-index: 2; overflow: hidden;
  }
  .hire-btn:hover {
    background: var(--pink); color: #fff;
    box-shadow: 5px 5px 0 rgba(255,0,122,0.4);
    transform: translate(-1px, -1px);
  }
  .hire-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--pink); }
  .hire-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--pink);
    position: relative; flex-shrink: 0;
    box-shadow: 0 0 6px var(--pink);
  }
  .hire-btn:hover .hire-dot { background: #fff; box-shadow: 0 0 6px rgba(255,255,255,0.6); }
  .hire-dot::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 1px solid rgba(255,0,122,0.5);
    animation: hirePing 1.4s ease-out infinite;
  }
  @keyframes hirePing { 0%{transform:scale(1);opacity:.8;} 100%{transform:scale(2.4);opacity:0;} }

  /* ── CARD ── */
  .hire-card {
    background: var(--black);
    border: 1px solid rgba(255,0,122,0.5);
    border-radius: 0; padding: 0;
    width: 270px; margin-bottom: 8px;
    box-shadow: 6px 6px 0 var(--pink), 0 24px 60px rgba(0,0,0,0.85);
    opacity: 0; transform: translateY(14px) scale(0.97); transform-origin: bottom left;
    transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: none;
    position: relative; overflow: hidden;
  }
  /* scanlines overlay */
  .hire-card::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.18) 2px,
      rgba(0,0,0,0.18) 4px
    );
  }
  .hire-card.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

  /* ── GLITCH ANIMATIONS ── */
  @keyframes hireGlitchIn {
    0%   { opacity:0; transform:translateY(14px) scale(0.97); clip-path:inset(100% 0 0 0); }
    10%  { opacity:1; clip-path:inset(60% 0 30% 0); transform:translateY(14px) scale(0.97) translateX(-4px); filter:hue-rotate(90deg) brightness(1.4); }
    20%  { clip-path:inset(20% 0 70% 0); transform:translateY(6px) scale(0.99) translateX(5px); filter:hue-rotate(-60deg) brightness(1.2); }
    30%  { clip-path:inset(80% 0 5% 0); transform:translateY(10px) scale(0.98) translateX(-3px); }
    40%  { clip-path:inset(5% 0 50% 0); transform:translateY(4px) scale(1) translateX(4px); filter:hue-rotate(30deg); }
    55%  { clip-path:inset(0% 0 0% 0); transform:translateY(2px) scale(1) translateX(-2px); filter:none; }
    65%  { clip-path:inset(30% 2px 20% 0); transform:translateY(0) scale(1) translateX(3px); filter:brightness(1.15); }
    75%  { clip-path:inset(0% 0 0% 0); transform:translateY(0) scale(1) translateX(0); filter:none; }
    85%  { clip-path:inset(10% 0 5% 2px); transform:translateX(-1px); filter:brightness(1.05); }
    100% { clip-path:inset(0% 0 0% 0); transform:translateY(0) scale(1) translateX(0); filter:none; opacity:1; }
  }
  @keyframes hireGlitchOut {
    0%   { opacity:1; clip-path:inset(0% 0 0% 0); transform:translateY(0) scale(1); filter:none; }
    10%  { clip-path:inset(20% 3px 60% 0); transform:translateX(5px) scale(1.01); filter:hue-rotate(60deg) brightness(1.3); }
    20%  { clip-path:inset(70% 0 10% 2px); transform:translateX(-4px); filter:hue-rotate(-90deg); }
    30%  { clip-path:inset(5% 0 80% 0); transform:translateX(3px) scaleX(1.02); filter:brightness(1.5); }
    40%  { clip-path:inset(50% 2px 30% 0); transform:translateX(-2px); filter:none; }
    55%  { clip-path:inset(0% 0 95% 0); transform:translateY(4px) scale(0.99); filter:hue-rotate(45deg); }
    70%  { clip-path:inset(0% 0 100% 0); transform:translateY(10px) scale(0.97); filter:none; opacity:0.4; }
    100% { opacity:0; transform:translateY(14px) scale(0.97); clip-path:inset(100% 0 0 0); }
  }
  .hire-card.glitch-open  {
    animation: hireGlitchIn 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
    pointer-events: all;
  }
  .hire-card.glitch-close {
    animation: hireGlitchOut 0.42s cubic-bezier(0.76,0,0.24,1) forwards;
    pointer-events: none;
  }

  /* card header bar */
  .hire-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 12px;
    border-bottom: 1px solid rgba(255,0,122,0.3);
    background: rgba(255,0,122,0.08);
    position: relative; z-index: 1;
  }
  .hire-card-status {
    display: flex; align-items: center; gap: 7px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .hire-status-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #00e676; box-shadow: 0 0 8px #00e676;
    animation: hirePing 1.8s ease-out infinite; flex-shrink: 0;
  }
  .hire-card-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--pink); opacity: 0.7;
    border: 1px solid rgba(255,0,122,0.25);
    padding: 2px 6px;
  }

  /* card body */
  .hire-card-body {
    padding: 16px 14px 14px; position: relative; z-index: 1;
  }

  /* grid line decoration */
  .hire-grid-lines {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(255,0,122,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,0,122,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .hire-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: 5px; line-height: 1;
    margin-bottom: 4px;
    color: var(--white);
  }
  .hire-card-title .tw-cursor {
    display: inline-block;
    width: 3px; height: 1.4rem;
    background: var(--pink);
    margin-left: 2px;
    vertical-align: middle;
    animation: twBlink 0.75s step-end infinite;
  }
  @keyframes twBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }

  /* typewriter sub */
  .hire-card-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem; letter-spacing: 1px; line-height: 1.7;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    min-height: 2.2em;
  }
  .hire-card-sub .tw-cursor-sub {
    display: inline-block; width: 6px; height: 0.65em;
    background: rgba(255,255,255,0.3);
    vertical-align: middle; margin-left: 1px;
    animation: twBlink 0.75s step-end infinite;
  }

  /* divider */
  .hire-card-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, var(--pink), rgba(255,0,122,0.1), transparent);
    margin-bottom: 14px;
  }

  /* actions */
  .hire-card-actions { display: flex; flex-direction: column; gap: 6px; }
  .hire-quick-btn {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 12px; border-radius: 0;
    font-size: 0.58rem; letter-spacing: 2.5px;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.18s; cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    position: relative; overflow: hidden;
    border: 1px solid transparent;
  }
  .hire-quick-btn .hqb-text { position: relative; z-index: 1; }
  .hire-quick-btn .hqb-arrow {
    font-size: 0.7rem; position: relative; z-index: 1;
    transition: transform 0.2s;
  }
  .hire-quick-btn::before {
    content: ''; position: absolute; inset: 0;
    transform: translateX(-101%);
    transition: transform 0.25s cubic-bezier(0.76,0,0.24,1); z-index: 0;
  }
  .hire-quick-btn:hover::before { transform: translateX(0); }
  .hire-quick-btn:hover .hqb-arrow { transform: translateX(3px); }

  .hire-quick-btn.primary {
    background: var(--pink); color: #fff;
    border-color: var(--pink);
    box-shadow: 3px 3px 0 rgba(255,0,122,0.35);
  }
  .hire-quick-btn.primary::before { background: rgba(255,255,255,0.15); }
  .hire-quick-btn.primary:hover { box-shadow: 4px 4px 0 rgba(255,0,122,0.5); transform: translate(-1px,-1px); }

  .hire-quick-btn.secondary {
    background: transparent; color: rgba(255,255,255,0.45);
    border-color: rgba(255,255,255,0.12);
  }
  .hire-quick-btn.secondary::before { background: rgba(255,255,255,0.04); }
  .hire-quick-btn.secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

  /* ===================== STAT COUNTER ===================== */
  .stat-num {
    font-family:'Bebas Neue',sans-serif;font-size:clamp(2.2rem,4vw,3.2rem);
    color:var(--pink);line-height:1;display:block;letter-spacing:2px;
  }

  /* ===================== SECRET / KONAMI ===================== */
  #secret-overlay {
    position:fixed;inset:0;z-index:999990;background:#050505;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    opacity:0;pointer-events:none;transition:opacity 0.5s;overflow:hidden;
  }
  #secret-overlay.active { opacity:1;pointer-events:all; }
  .secret-bg-kanji {
    position:absolute;font-family:serif;font-weight:900;
    color:rgba(255,0,122,0.04);pointer-events:none;user-select:none;
    font-size:clamp(16rem,40vw,36rem);top:-10%;left:-5%;line-height:1;
    animation:kanjiDrift1 10s ease-in-out infinite;
  }
  .secret-content { position:relative;z-index:2;text-align:center;padding:40px; }
  .secret-label {
    font-size:0.6rem;font-weight:500;letter-spacing:3px;color:var(--pink);text-transform:uppercase;
    margin-bottom:16px;opacity:0;transform:translateY(10px);transition:all 0.5s 0.2s;
  }
  .secret-title {
    font-family:'Bebas Neue',sans-serif;font-size:clamp(3.5rem,10vw,9rem);
    letter-spacing:-2px;line-height:0.9;opacity:0;transform:translateY(20px);
    transition:all 0.6s 0.35s cubic-bezier(0.16,1,0.3,1);position:relative;
  }
  .secret-title .pink { color:var(--pink); }
  .secret-jp {
    font-family:serif;font-size:clamp(0.8rem,2vw,1.1rem);
    letter-spacing:6px;color:rgba(255,255,255,0.25);margin-top:12px;
    opacity:0;transform:translateY(10px);transition:all 0.5s 0.5s;
  }
  .secret-msg { margin-top:32px;font-size:0.7rem;letter-spacing:3px;color:rgba(255,255,255,0.2);opacity:0;transition:all 0.5s 0.7s; }
  .secret-msg a { color:var(--pink);text-decoration:none; }
  .secret-close {
    position:absolute;top:28px;right:28px;font-size:0.6rem;letter-spacing:3px;
    color:rgba(255,255,255,0.2);text-transform:uppercase;cursor:pointer;
    background:none;border:none;font-family:'Inter', sans-serif;transition:color 0.2s;z-index:5;
  }
  .secret-close:hover { color:var(--pink); }
  #secret-overlay.active .secret-label,
  #secret-overlay.active .secret-title,
  #secret-overlay.active .secret-jp,
  #secret-overlay.active .secret-msg { opacity:1;transform:translateY(0); }
  .secret-title::before {
    content:attr(data-text);position:absolute;left:0;top:0;
    color:rgba(255,0,122,0.6);clip-path:inset(30% 0 50% 0);transform:translateX(-3px);
    animation:secretGlitchA 0.15s steps(1) infinite;
  }
  .secret-title::after {
    content:attr(data-text);position:absolute;left:0;top:0;
    color:rgba(0,220,255,0.4);clip-path:inset(55% 0 15% 0);transform:translateX(3px);
    animation:secretGlitchB 0.2s steps(1) infinite;
  }
  @keyframes secretGlitchA { 0%{clip-path:inset(10% 0 70% 0);transform:translateX(-3px);} 33%{clip-path:inset(45% 0 35% 0);transform:translateX(2px);} 66%{clip-path:inset(65% 0 15% 0);transform:translateX(-4px);} }
  @keyframes secretGlitchB { 0%{clip-path:inset(55% 0 20% 0);transform:translateX(3px);} 50%{clip-path:inset(25% 0 55% 0);transform:translateX(-2px);} }

  /* pm- image modal elements */
  .pm-img-wrap {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 16/9; border: 1px solid rgba(255,255,255,0.06);
    background: #111;
  }
  .pm-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; background: linear-gradient(145deg, #111, #1a1a1a);
    border: 1px dashed rgba(255,0,122,0.2); border-radius: 12px;
  }
  .pm-img-placeholder span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: rgba(255,0,122,0.3); letter-spacing: 4px;
  }
  .pm-img-placeholder small {
    font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.15);
  }
  .pm-desc {
    font-size: 0.78rem; color: rgba(255,255,255,0.45);
    line-height: 1.6; margin: 10px 0 0;
    max-width: 560px;
  }
  .pm-meta-row {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px; margin-top: 16px;
  }
  .pm-tag {
    font-size: 0.55rem; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    padding: 4px 10px; border-radius: 100px;
  }
  .pm-live-btn {
    font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
    background: var(--pink); color: #fff;
    padding: 6px 16px; border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .pm-live-btn:hover { opacity: 0.8; }

  /* ── PLACEHOLDER THUMBNAIL (no YouTube ID yet) ── */
  .mg-thumb-placeholder {
    background: linear-gradient(145deg, #111, #1a1a1a);
    cursor: pointer;
  }
  .mg-ph-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
  }
  .mg-ph-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: rgba(255,0,122,0.2);
    letter-spacing: 4px;
    line-height: 1;
  }
  .mg-ph-label {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
  }
  /* Play button still shows on placeholder but dimmed */
  .mg-thumb-placeholder .mg-play-btn {
    background: rgba(0,0,0,0.15);
  }
  .mg-thumb-placeholder .mg-play-icon {
    background: rgba(255,0,122,0.35);
    box-shadow: 0 0 16px rgba(255,0,122,0.2);
  }
  .mg-thumb-placeholder:hover .mg-play-icon {
    background: rgba(255,0,122,0.55);
  }

  /* ── TOOLTIP on placeholder click ── */
  .mg-ph-tooltip {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,5,5,0.88);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    z-index: 20;
    padding: 16px;
    text-align: center;
    animation: tooltipIn 0.25s cubic-bezier(0.16,1,0.3,1) forwards;
    pointer-events: none;
  }
  .mg-ph-tooltip span {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }
  .mg-ph-tooltip code {
    color: var(--pink);
    font-family: monospace;
    font-size: 0.62rem;
  }
  @keyframes tooltipIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* project-modal cursor fix */
  #project-modal, #project-modal * { cursor: auto; }
  #project-modal .mg-close,
  #project-modal .mg-thumb,
  #project-modal .pm-img-wrap,
  #project-modal .mg-backdrop,
  #project-modal .pm-live-btn { cursor: pointer !important; }

  /* Prevent scroll bleed through modal panel */
  .mg-panel { overscroll-behavior: contain; }

  /* ── ZEVSAMA TOAST ── */
  #zs-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10,10,10,0.92);
    border: 1px solid rgba(255,0,122,0.35);
    border-radius: 100px;
    padding: 10px 10px 10px 18px;
    box-shadow: 0 8px 40px rgba(255,0,122,0.18), 0 2px 12px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
                transform 0.3s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
    max-width: calc(100vw - 40px);
  }
  #zs-toast.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .zt-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,0,122,0.15);
    border: 1px solid rgba(255,0,122,0.3);
    display: flex; align-items: center; justify-content: center;
  }
  .zt-icon svg { width: 13px; height: 13px; }
  .zt-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(245,245,240,0.85);
    letter-spacing: 0.2px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
  }
  .zt-text strong { color: #fff; font-weight: 600; }
  .zt-actions {
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
  }
  .zt-btn-primary {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 7px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .zt-btn-primary:hover { opacity: 0.88; transform: scale(1.03); }
  .zt-btn-dismiss {
    background: transparent;
    color: rgba(245,245,240,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 7px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .zt-btn-dismiss:hover { color: rgba(245,245,240,0.7); border-color: rgba(255,255,255,0.2); }

  #project-modal {
    position: fixed; inset: 0; z-index: 999980;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  #project-modal.open { opacity: 1; pointer-events: all; }

  .mg-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
  }
  .mg-panel {
    position: relative; z-index: 2;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    width: 100%; max-width: 1100px;
    max-height: 92vh;
    overflow-y: auto;
    padding: clamp(24px, 4vw, 52px);
    transform: translateY(40px);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,0,122,0.3) transparent;
  }
  #project-modal.open .mg-panel { transform: translateY(0); }

  .mg-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 24px;
    gap: 20px;
  }
  .mg-label {
    font-size: 0.6rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--pink); margin-bottom: 8px;
  }
  .mg-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: 2px; line-height: 1;
  }
  .mg-title .pink { color: var(--pink); }
  .mg-sub {
    font-size: 0.65rem; letter-spacing: 2px; color: rgba(255,255,255,0.3);
    margin-top: 8px; text-transform: uppercase;
  }
  .mg-close {
    background: none; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif;
    font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
    padding: 10px 18px; border-radius: 100px; cursor: pointer;
    transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
  }
  .mg-close:hover { border-color: var(--pink); color: var(--pink); }

  .mg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 768px) {
    .mg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mg-panel { padding: 20px 16px; border-radius: 20px 20px 0 0; }
    .mg-header { flex-direction: column; gap: 14px; }
  }
  @media (max-width: 480px) {
    .mg-grid { grid-template-columns: 1fr; }
  }

  .mg-video-wrap { display: flex; flex-direction: column; gap: 10px; }

  .mg-thumb {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 16/9; cursor: pointer;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.25s, transform 0.25s;
  }
  .mg-thumb:hover { border-color: rgba(255,0,122,0.5); transform: scale(1.02); }
  .mg-thumb.playing { transform: none !important; cursor: default; border-color: rgba(255,0,122,0.4); }
  .mg-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: opacity 0.3s;
  }
  .mg-thumb iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: none;
  }

  /* Play button overlay */
  .mg-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.25s;
  }
  .mg-thumb:hover .mg-play-btn { background: rgba(0,0,0,0.15); }
  .mg-thumb.playing .mg-play-btn { display: none; }
  .mg-thumb.playing img { display: none; }
  .mg-thumb.playing .mg-thumb-overlay { display: none; }

  .mg-play-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 24px rgba(255,0,122,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
  }
  .mg-play-icon::after {
    content: '';
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
    margin-left: 3px;
  }
  .mg-thumb:hover .mg-play-icon { transform: scale(1.12); }

  .mg-thumb-overlay {
    position: absolute; top: 10px; left: 12px;
  }
  .mg-thumb-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem; letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.5);
    padding: 2px 8px; border-radius: 4px;
  }

  .mg-video-info {
    display: flex; flex-direction: column; gap: 3px; padding: 0 2px;
  }
  .mg-video-title {
    font-size: 0.78rem; letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .mg-video-tag {
    font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,0,122,0.6);
  }
  #project-modal, #project-modal * { cursor: auto; }
  .mg-close, .mg-thumb, .mg-backdrop { cursor: pointer !important; }


/* ── ALIVE BAR ── */
/* ── ALIVE ELEMENTS CSS — zs-alive-v1 ── */
#zsa-prog{position:fixed;right:0;top:0;bottom:0;width:2px;z-index:900;pointer-events:none;overflow:visible}
#zsa-prog::before{content:'';position:absolute;inset:0;background:rgba(255,255,255,.035)}
#zsa-fill{position:absolute;top:0;left:0;right:0;height:0%;background:linear-gradient(to bottom,transparent 0%,rgba(255,0,122,.5) 60%,#FF007A 100%);transition:height .07s linear}
#zsa-dot{position:absolute;left:50%;transform:translate(-50%,-50%);width:7px;height:7px;background:#FF007A;border-radius:50%;box-shadow:0 0 12px rgba(255,0,122,1),0 0 24px rgba(255,0,122,.5);top:0%;transition:top .07s linear}
.zsa-tick{position:absolute;right:0;width:6px;height:1px;background:rgba(255,0,122,.2);transform:translateY(-50%);transition:background .3s,width .3s}
.zsa-tick.on{background:rgba(255,0,122,.6);width:10px}
.zsa-lbl{position:absolute;right:14px;font-family:'Share Tech Mono',monospace;font-size:.4rem;letter-spacing:2px;color:rgba(255,0,122,0);text-transform:uppercase;white-space:nowrap;transform:translateY(-50%);pointer-events:none;transition:color .35s}
.zsa-lbl.on{color:rgba(255,0,122,.55)}
#zsa-pill{position:fixed;bottom:28px;left:50%;transform:translateX(-50%);z-index:890;display:flex;flex-direction:row;align-items:center;pointer-events:none}
.zsa-pb{display:flex;align-items:center;gap:8px;background:rgba(7,7,7,.88);border:1px solid rgba(255,255,255,.07);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);padding:7px 13px;font-family:'Share Tech Mono',monospace;font-size:.52rem;letter-spacing:2px;color:rgba(240,237,230,.4);text-transform:uppercase;white-space:nowrap;transition:border-color .5s,color .5s}
#zsa-clock-pb{border-right:none;border-color:rgba(255,255,255,.07)!important}
#zsa-status-pb{border-left:1px solid rgba(255,0,122,.15)}
#zsa-status-pb.open{border-color:rgba(0,255,136,.18);color:rgba(240,237,230,.6)}
#zsa-status-pb.closed{border-color:rgba(255,0,122,.12)}
.zsa-sdot{width:5px;height:5px;border-radius:50%;flex-shrink:0;transition:background .5s,box-shadow .5s}
#zsa-status-pb.open .zsa-sdot{background:#00ff88;box-shadow:0 0 6px rgba(0,255,136,.8);animation:tickerPulse 2s ease-in-out infinite}
#zsa-status-pb.closed .zsa-sdot{background:rgba(255,0,122,.4);box-shadow:none}
.zsa-clk{color:rgba(240,237,230,.85);font-size:.6rem;letter-spacing:1px;min-width:52px;text-align:right;font-variant-numeric:tabular-nums}
#zsa-vis{display:inline-flex;align-items:center;gap:5px;padding-left:10px;border-left:1px solid rgba(255,255,255,.07);font-family:'Share Tech Mono',monospace;font-size:.5rem;letter-spacing:2px;color:rgba(255,255,255,.18);text-transform:uppercase;white-space:nowrap;vertical-align:middle}
#zsa-vnum{color:rgba(255,0,122,.65);font-size:.55rem;font-variant-numeric:tabular-nums}
#zsa-sec{font-family:'Share Tech Mono',monospace;font-size:.5rem;letter-spacing:3px;color:rgba(255,0,122,.45);text-transform:uppercase;padding:0 14px;border-left:1px solid rgba(255,255,255,.06);height:100%;display:flex;align-items:center;gap:6px;white-space:nowrap;opacity:0;transition:opacity .4s;overflow:hidden}
#zsa-sec.on{opacity:1}
#zsa-sec::before{content:'→';color:rgba(255,0,122,.3);font-size:.45rem}
#zsa-sname{transition:opacity .18s,transform .18s}
#zsa-sname.sw{opacity:0;transform:translateY(5px)}
@media(max-width:900px){#zsa-pill,#zsa-prog,#zsa-sec,#zsa-vis{display:none!important}}