/* ==========================================================================
       RESET & ROOT VARIABLES
       ========================================================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --bg: #fafafa;
      --bg-dark: #111111;
      --bg-light: #f3f4f6;
      --surface: #ffffff;
      --text: #111111;
      --text-muted: #555555;
      --text-light: #999999;
      --orange: #f97316;
      --orange-dark: #ea580c;
      --orange-light: rgba(249, 115, 22, 0.1);
      
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-pill: 999px;
      
      --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
      --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
      --shadow-orange: 0 15px 40px rgba(249, 115, 22, 0.15);
      
      --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      --transition-fast: all 0.2s ease;
    }
    
    html {
      scroll-behavior: auto;
      background: var(--bg);
      color: var(--text);
      max-width: 100%;
      overflow-x: hidden;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Noto Sans SC", sans-serif;
      line-height: 1.6;
      max-width: 100%;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    /* Lenis Smooth Scroll styles */
    html.lenis, html.lenis body {
      height: auto;
    }
    .lenis-smooth {
      scroll-behavior: auto !important;
    }
    .lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }
    .lenis-stopped {
      overflow: hidden;
    }
    .lenis-scrolling iframe {
      pointer-events: none;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg);
    }
    ::-webkit-scrollbar-thumb {
      background: #ddd;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--orange);
    }
    
    a {
      color: inherit;
      text-decoration: none;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      outline: none;
    }
    
    /* Common Layouts */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(24px, 5vw, 80px);
      position: relative;
    }
    
    .section-pad {
      padding: clamp(80px, 12vh, 160px) 0;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    /* Keep the native cursor visible; the previous custom cursor could disappear on light modal surfaces. */
    @media (hover: hover) and (pointer: fine) {
      body, a, button, [role="button"], .masonry-item, .suggestion-chip, .engine-tag, .stacked-card, .timeline-step-card, .slider-btn {
        cursor: auto;
      }

      a, button, [role="button"], .masonry-item, .suggestion-chip, .engine-tag, .stacked-card, .timeline-step-card, .slider-btn {
        cursor: pointer;
      }
    }
    
    /* ==========================================================================
       DYNAMICS: MORPHING BUBBLE CURSOR & BACKGROUND GLOW
       ========================================================================== */
    .cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(700px circle at var(--mx, -1000px) var(--my, -1000px), rgba(249, 115, 22, 0.05), transparent 70%);
    }
    
    /* Minimalist Custom Cursor (iPadOS Style Snapping) */
    .custom-cursor {
      width: 10px;
      height: 10px;
      background: #fff;
      mix-blend-mode: difference;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
      display: none !important;
    }
    
    .custom-cursor.visible {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.4;
    }
    
    .custom-cursor.hover {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
    }
    
    @media (hover: none) and (pointer: coarse) {
      .custom-cursor {
        display: none !important;
      }
    }
    
    /* Scroll Reveal animations (Gentle & Smooth) */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--reveal-delay, 0s);
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Reference-style entry sequence */
    body.page-loading {
      overflow: hidden;
    }

    .site-intro {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: #f6f7f8;
      color: var(--text);
      pointer-events: none;
    }

    .site-intro::before,
    .site-intro::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.13) 1.2px, transparent 1.2px);
      background-size: 32px 32px;
      opacity: 0;
    }

    .site-intro::before {
      top: 0;
      height: 74px;
      animation: introGridTop 1.2s 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .site-intro::after {
      bottom: 0;
      height: 32svh;
      animation: introGridBottom 1.15s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .intro-loader {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 3px solid rgba(0, 0, 0, 0.08);
      border-top-color: rgba(0, 0, 0, 0.38);
      transform: translate(-50%, -50%);
      animation: introSpin 0.72s linear infinite, introLoaderOut 0.28s 0.42s ease forwards;
    }

    .intro-brand {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      opacity: 0;
      transform: translateY(28px) scale(0.9);
      animation:
        introBrandIn 0.58s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        introBrandDock 0.78s 1.08s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .intro-logo {
      width: min(360px, 56vw);
      height: auto;
      object-fit: contain;
    }

    .intro-wordmark {
      font-family: 'Inter', "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: clamp(40px, 5.4vw, 78px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.04em;
    }

    .intro-subtitle {
      font-size: clamp(14px, 1.4vw, 20px);
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--text-muted);
    }

    .site-intro.is-done {
      animation: introOverlayOut 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .page-loading .navbar,
    .page-loading .hero-brand-system,
    .page-loading .hero-statement,
    .page-loading .production-canvas {
      opacity: 0 !important;
    }

    .page-loading .navbar {
      transform: translateY(-16px);
    }

    .page-loading .hero-brand-system {
      transform: translateX(-42px) scale(0.96);
    }

    .page-loading .hero-statement {
      transform: translateY(18px);
    }

    .page-loading .production-canvas {
      transform: translateY(46px);
    }

    .intro-complete .navbar {
      animation: navEntry 0.7s 0.02s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .intro-complete .hero-brand-system {
      animation: heroBrandEntry 0.82s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .intro-complete .hero-statement {
      animation: heroStatementEntry 0.82s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .intro-complete .production-canvas {
      animation: productionCanvasEntry 0.9s 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .intro-complete .floating-work {
      animation-name: floatDrift, workCardEntry;
      animation-duration: 9s, 0.8s;
      animation-timing-function: ease-in-out, cubic-bezier(0.16, 1, 0.3, 1);
      animation-iteration-count: infinite, 1;
      animation-fill-mode: none, both;
      animation-delay: var(--float-offset, 0s), var(--work-entry-delay, 0.5s);
    }

    .intro-complete .hero-brief-console {
      animation: briefConsoleEntry 0.72s 0.64s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

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

    @keyframes introLoaderOut {
      to { opacity: 0; transform: translate(-50%, -50%) scale(0.86); }
    }

    @keyframes introGridTop {
      from { opacity: 0; transform: translateY(-18px); }
      to { opacity: 0.22; transform: translateY(0); }
    }

    @keyframes introGridBottom {
      from { opacity: 0; transform: translateY(42px); }
      to { opacity: 0.28; transform: translateY(0); }
    }

    @keyframes introBrandIn {
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes introBrandDock {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to { opacity: 0.96; transform: translate(-29vw, -12vh) scale(0.76); }
    }

    @keyframes introBrandDockMobile {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to { opacity: 0.92; transform: translateY(-12vh) scale(0.72); }
    }

    @keyframes introOverlayOut {
      to { opacity: 0; visibility: hidden; }
    }

    @keyframes navEntry {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes heroBrandEntry {
      from { opacity: 0; transform: translateX(-42px) scale(0.96); }
      to { opacity: 1; transform: translateX(0) scale(1); }
    }

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

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

    @keyframes workCardEntry {
      from { opacity: 0; filter: blur(8px); }
      to { opacity: 1; filter: blur(0); }
    }

    @keyframes briefConsoleEntry {
      from { opacity: 0; transform: translate(-50%, 26px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }
    
    /* Highlight Pill Badge */
    .highlight-pill {
      background: var(--text);
      color: var(--surface);
      padding: 4px 20px;
      border-radius: var(--radius-pill);
      display: inline-block;
      line-height: 1.1;
      margin: 4px 0;
      font-weight: 700;
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    
    /* Buttons */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--text);
      color: var(--surface);
      font-size: 15px;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
      padding: 16px 36px;
      border-radius: var(--radius-pill);
      box-shadow: var(--shadow-sm);
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: -1;
      border-radius: var(--radius-pill);
    }
    
    .btn-primary:hover {
      color: var(--surface);
      transform: translateY(-4px);
      box-shadow: var(--shadow-orange);
    }
    
    .btn-primary:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .btn-primary .arrow {
      transition: transform 0.3s ease;
    }
    
    .btn-primary:hover .arrow {
      transform: translateX(4px);
    }
    
    /* ==========================================================================
       NAVBAR & GLASSMORPHISM (Polished minimalist identity)
       ========================================================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 28px clamp(24px, 5vw, 80px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 250, 250, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
    }
    
    .navbar.scrolled {
      padding: 16px clamp(24px, 5vw, 80px);
      background: rgba(250, 250, 250, 0.85);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }
    
    /* Brand Logo & Text Layout */
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 48px;
    }

    .brand-logo-img {
      width: clamp(52px, 4vw, 64px);
      height: clamp(42px, 3.4vw, 54px);
      object-fit: contain;
      flex: 0 0 auto;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-brand:hover .brand-logo-img {
      transform: translateY(-1px) scale(1.04);
    }
    
    .logo-text {
      display: inline-flex;
      align-items: baseline;
      gap: 7px;
      color: var(--text);
      line-height: 1;
      white-space: nowrap;
    }

    .logo-main {
      position: relative;
      font-family: "Songti SC", "STSong", "Noto Serif SC", "PingFang SC", serif;
      font-weight: 900;
      font-size: clamp(18px, 1.4vw, 23px);
      letter-spacing: 0.02em;
    }

    .logo-main::after {
      content: "";
      position: absolute;
      left: 2px;
      right: 8px;
      bottom: -6px;
      height: 2px;
      border-radius: var(--radius-pill);
      background: var(--orange);
      transform: skewX(-16deg);
      opacity: 0.86;
    }

    .logo-submark {
      padding-left: 7px;
      border-left: 1px solid rgba(0, 0, 0, 0.18);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: rgba(17, 17, 17, 0.72);
    }
    
    .logo-divider {
      width: 1px;
      height: 14px;
      background: rgba(0, 0, 0, 0.1);
    }
    
    .logo-subtext {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 1px;
    }

    /* Desktop horizontal navigation links */
    .nav-links-desktop {
      display: none;
      align-items: center;
      gap: 32px;
    }
    
    @media (min-width: 1024px) {
      .nav-links-desktop {
        display: flex;
      }
    }
    
    .nav-link-item {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.25s ease;
      text-decoration: none;
      position: relative;
      padding: 6px 0 6px 15px;
    }
    
    .nav-link-item:hover {
      color: var(--text);
    }
    
    .nav-link-item.active {
      color: var(--orange);
      font-weight: 600;
    }
    
    .nav-link-item::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid var(--orange);
      transform: translateY(-50%) scale(0.4);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-link-item.active::before {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }

    /* Right Actions: CTA + Hamburger */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-nav-cta {
      display: none;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--text);
      padding: 8px 18px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @media (min-width: 1024px) {
      .btn-nav-cta {
        display: inline-block;
      }
    }

    .btn-nav-cta:hover {
      background: var(--text);
      color: var(--bg);
    }
    
    /* Asymmetrical Hamburger Menu Button */
    .menu-btn {
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 5px;
      border-radius: var(--radius-sm);
      z-index: 110;
      transition: background 0.2s;
    }
    
    @media (min-width: 1024px) {
      .menu-btn {
        display: none !important;
      }
    }
    
    .menu-btn:hover {
      background: rgba(0, 0, 0, 0.04);
    }
    
    .menu-line {
      display: block;
      height: 1.5px;
      background: var(--text);
      transition: var(--transition-smooth);
    }
    
    .line-top {
      width: 20px;
    }
    
    .line-bottom {
      width: 12px; /* Premium asymmetry */
    }
    
    .menu-btn:hover .line-bottom {
      width: 20px;
    }
    
    /* X state */
    .menu-btn.active .line-top {
      transform: translateY(3.25px) rotate(45deg);
      width: 20px;
    }
    
    .menu-btn.active .line-bottom {
      transform: translateY(-3.25px) rotate(-45deg);
      width: 20px;
    }
    
    /* Fullscreen Overlay Menu */
    .nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(250, 250, 250, 0.96);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    
    .nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    
    .nav-overlay nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
      z-index: 2;
    }
    
    .nav-overlay nav a {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 6vw, 64px);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -2px;
      transition: var(--transition-smooth);
      opacity: 0;
      transform: translateY(20px);
    }
    
    .nav-overlay.open nav a {
      opacity: 1;
      transform: translateY(0);
    }
    
    .nav-overlay.open nav a:nth-child(1) { transition-delay: 0.1s; }
    .nav-overlay.open nav a:nth-child(2) { transition-delay: 0.15s; }
    .nav-overlay.open nav a:nth-child(3) { transition-delay: 0.2s; }
    .nav-overlay.open nav a:nth-child(4) { transition-delay: 0.25s; }
    .nav-overlay.open nav a:nth-child(5) { transition-delay: 0.3s; }
    .nav-overlay.open nav a:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-overlay nav a:hover {
      color: var(--orange);
      transform: scale(1.05);
    }
    
    .nav-overlay .bg-watermark {
      position: absolute;
      bottom: -10%;
      right: -10%;
      width: 70%;
      height: 70%;
      opacity: 0.02;
      pointer-events: none;
      z-index: 1;
    }
    
    /* ==========================================================================
       HERO SECTION (Logo framed inside a design blueprint)
       ========================================================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      position: relative;
      z-index: 2;
    }
    
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
    }
    
    .hero-left {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 100%;
    }
    
    /* CAD Technical Blueprint outline frame */
    .logo-blueprint-frame {
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: clamp(30px, 5vw, 60px);
      background: rgba(255, 255, 255, 0.3);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 480px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    
    .corner-crosshair {
      position: absolute;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1;
      user-select: none;
    }
    .corner-crosshair.top-left { top: 12px; left: 12px; }
    .corner-crosshair.top-right { top: 12px; right: 12px; }
    .corner-crosshair.bottom-left { bottom: 12px; left: 12px; }
    .corner-crosshair.bottom-right { bottom: 12px; right: 12px; }
    
    .blueprint-tag {
      position: absolute;
      font-family: 'Courier New', Courier, monospace;
      font-size: 9px;
      font-weight: bold;
      color: var(--text-light);
      letter-spacing: 1px;
      user-select: none;
    }
    .blueprint-tag.top-left-tag { top: 14px; left: 30px; }
    .blueprint-tag.bottom-right-tag { bottom: 14px; right: 30px; }
    
    .hero-logo-svg {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.04));
      transition: var(--transition-smooth);
    }
    
    .hero-logo-svg path {
      transition: fill 0.6s ease;
    }
    
    .hero-logo-svg .st0 {
      fill: var(--text);
    }
    
    .logo-blueprint-frame:hover .hero-logo-svg {
      transform: scale(1.03) rotate(1deg);
      filter: var(--shadow-orange);
    }
    
    .logo-blueprint-frame:hover .st0 {
      fill: var(--orange);
    }
    
    .hero-logo-svg .st1 {
      fill: var(--text);
    }
    
    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(38px, 4.5vw, 58px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -2px;
      color: var(--text);
      margin-bottom: 24px;
    }
    
    .hero-desc {
      font-size: clamp(15px, 1.8vw, 17px);
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 520px;
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding: 120px 0 80px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .hero-left {
        order: 1;
      }

      .hero-right {
        order: 2;
        align-items: flex-start;
      }

      .logo-blueprint-frame {
        max-width: 260px;
        margin: 0 auto;
      }

      .hero-title {
        font-size: 42px;
        letter-spacing: 0;
        line-height: 1.12;
      }

      .hero-desc {
        max-width: 100%;
        margin-bottom: 28px;
      }

      .highlight-pill {
        padding: 4px 14px;
      }
    }

    @media (max-width: 420px) {
      .hero-title {
        font-size: 38px;
      }
    }

    /* ==========================================================================
       HERO PRODUCTION CANVAS (Miora-inspired, ZDS-specific)
       ========================================================================== */
    .hero-canvas {
      min-height: 100svh;
      align-items: stretch;
      padding: 96px 0 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfbfb 0%, #f6f6f6 100%);
    }

    .hero-canvas .container {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .hero-topline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: clamp(28px, 4vw, 56px);
      min-height: auto;
      padding-top: clamp(20px, 3vw, 42px);
      position: relative;
      z-index: 3;
    }

    .hero-brand-system {
      min-width: min(48vw, 660px);
    }

    .hero-kicker {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .hero-wordmark {
      position: relative;
      display: inline-block;
      width: max-content;
      font-family: "Songti SC", "STSong", "Noto Serif SC", "PingFang SC", serif;
      font-size: clamp(82px, 10.5vw, 154px);
      font-weight: 900;
      line-height: 0.88;
      letter-spacing: 0;
      color: var(--text);
      text-transform: none;
      text-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
    }

    .hero-wordmark::after {
      content: "";
      position: absolute;
      left: 3%;
      bottom: -10px;
      width: 48%;
      height: clamp(7px, 0.9vw, 12px);
      border-radius: var(--radius-pill);
      background: var(--orange);
      transform: skewX(-14deg);
      opacity: 0.92;
    }

    .hero-wordmark-sub {
      margin-top: 24px;
      font-size: clamp(18px, 2vw, 28px);
      font-weight: 800;
      letter-spacing: 0.12em;
      color: var(--text);
      text-transform: none;
    }

    .hero-statement {
      width: min(45vw, 620px);
      padding-top: clamp(18px, 2.4vw, 34px);
    }

    .hero-statement h1 {
      display: grid;
      gap: 10px;
      font-family: "PingFang SC", "Microsoft YaHei", "Heiti SC", sans-serif;
      font-size: clamp(36px, 4vw, 64px);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 900;
      color: var(--text);
      text-wrap: balance;
      margin-bottom: 28px;
    }

    .headline-kick,
    .headline-cycle,
    .headline-delivery {
      display: block;
    }

    .headline-kick {
      font-size: 0.74em;
      line-height: 1.05;
      color: rgba(17, 17, 17, 0.86);
    }

    .headline-cycle {
      position: relative;
      width: max-content;
      max-width: 100%;
      min-width: min(5.65em, 100%);
      height: 1.12em;
      overflow: hidden;
      padding: 0.02em 0.18em 0.1em;
      border-radius: 9px;
      background: #111;
      color: #fff;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
      transform: translateX(-2px);
    }

    .headline-cycle-stack {
      display: grid;
      animation: headlineCycle 10.5s cubic-bezier(0.78, 0, 0.22, 1) infinite;
      will-change: transform;
    }

    .headline-cycle-stack span {
      height: 1.12em;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .headline-delivery {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 2px;
      font-size: 0.43em;
      line-height: 1.45;
      font-weight: 850;
      color: rgba(17, 17, 17, 0.76);
    }

    .headline-delivery .label {
      padding: 5px 10px 6px;
      border-radius: var(--radius-pill);
      background: rgba(249, 115, 22, 0.12);
      color: var(--orange);
      font-size: 0.74em;
      letter-spacing: 0.08em;
    }

    .headline-delivery .copy {
      white-space: nowrap;
    }

    .hero-statement .highlight-pill {
      padding: 8px 15px 11px;
      border-radius: 8px;
      transform: none;
      box-shadow: none;
      display: block;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
    }

    .hero-statement p {
      max-width: 500px;
      font-size: 16.5px;
      line-height: 1.9;
      color: var(--text-muted);
      text-wrap: pretty;
      margin-bottom: 26px;
    }

    @keyframes headlineCycle {
      0%, 18% { transform: translateY(0); }
      25%, 43% { transform: translateY(-25%); }
      50%, 68% { transform: translateY(-50%); }
      75%, 93% { transform: translateY(-75%); }
      100% { transform: translateY(0); }
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 15px 24px;
      border: 1px solid rgba(0, 0, 0, 0.16);
      border-radius: var(--radius-pill);
      color: var(--text);
      background: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      font-weight: 700;
      transition: var(--transition-fast);
    }

    .btn-secondary:hover {
      border-color: var(--text);
      background: var(--surface);
      transform: translateY(-2px);
    }

    .production-canvas {
      position: relative;
      min-height: clamp(450px, 46svh, 560px);
      margin-top: clamp(-48px, -3vw, -18px);
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      isolation: isolate;
    }

    .production-canvas::before {
      content: '';
      position: absolute;
      inset: 0 calc(50% - 50vw);
      background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.28;
      z-index: -2;
    }

    .production-canvas::after {
      content: '';
      position: absolute;
      inset: 0 calc(50% - 50vw);
      background: linear-gradient(180deg, rgba(250, 250, 250, 0.2), rgba(250, 250, 250, 0.92) 84%);
      z-index: -1;
    }

    .floating-work {
      position: absolute;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      animation: floatDrift 9s ease-in-out infinite;
    }

    .floating-work img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .floating-work .work-label {
      position: absolute;
      left: 14px;
      bottom: 14px;
      padding: 7px 10px;
      border-radius: 6px;
      background: rgba(17, 17, 17, 0.84);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .work-main {
      left: 44%;
      top: 72px;
      width: min(32vw, 430px);
      aspect-ratio: 16 / 10;
      border-radius: 12px;
      --float-offset: -2s;
      --work-entry-delay: 0.54s;
      animation-delay: var(--float-offset);
    }

    .work-character {
      right: -3vw;
      top: 122px;
      width: min(26vw, 350px);
      aspect-ratio: 3 / 4;
      border-radius: 12px;
      --float-offset: -5s;
      --work-entry-delay: 0.68s;
      animation-delay: var(--float-offset);
    }

    .work-banner {
      left: -8vw;
      top: 116px;
      width: min(30vw, 420px);
      aspect-ratio: 16 / 10;
      border-radius: 12px;
      --float-offset: -1s;
      --work-entry-delay: 0.48s;
      animation-delay: var(--float-offset);
    }

    .work-layer {
      left: 6%;
      bottom: 30px;
      width: min(25vw, 330px);
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      --float-offset: -6s;
      --work-entry-delay: 0.76s;
      animation-delay: var(--float-offset);
    }

    .hero-brief-console {
      position: absolute;
      left: 50%;
      top: 172px;
      transform: translateX(-50%);
      width: min(760px, calc(100vw - 48px));
      min-height: 154px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(18px);
      padding: 22px;
      z-index: 4;
    }

    .brief-text {
      min-height: 56px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .brief-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brief-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .brief-tool {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      background: var(--bg-light);
      color: var(--text-muted);
      font-size: 12.5px;
      font-weight: 700;
    }

    .brief-submit {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--text);
      color: var(--surface);
      font-size: 20px;
      transition: var(--transition-fast);
    }

    .brief-submit:hover {
      background: var(--orange);
      transform: translateY(-2px);
    }

    .canvas-metrics {
      position: absolute;
      right: 2%;
      bottom: 30px;
      display: grid;
      grid-template-columns: repeat(3, minmax(92px, 1fr));
      gap: 10px;
      z-index: 3;
    }

    .canvas-metric {
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    }

    .canvas-metric strong {
      display: block;
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      line-height: 1;
      color: var(--text);
    }

    .canvas-metric span {
      display: block;
      margin-top: 6px;
      font-size: 11px;
      color: var(--text-muted);
    }

    @keyframes floatDrift {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--tilt, 0deg)); }
      50% { transform: translate3d(0, -14px, 0) rotate(calc(var(--tilt, 0deg) * -1)); }
    }

    @media (max-width: 980px) {
      .hero-topline {
        flex-direction: column;
        min-height: auto;
      }

      .hero-brand-system,
      .hero-statement {
        width: 100%;
        min-width: 0;
      }

      .hero-wordmark {
        font-size: 118px;
      }

      .hero-wordmark-sub {
        letter-spacing: 0.28em;
      }

      .hero-statement {
        padding-top: 0;
      }

      .production-canvas {
        min-height: 620px;
        margin-top: 28px;
      }

      .work-banner,
      .work-character {
        display: none;
      }

      .work-main {
        left: 46%;
        width: min(76vw, 430px);
      }

      .work-layer {
        left: 4%;
        width: min(42vw, 260px);
      }

      .hero-brief-console {
        top: 260px;
      }

      .canvas-metrics {
        left: 50%;
        right: auto;
        bottom: 40px;
        transform: translateX(-50%);
        width: min(680px, calc(100vw - 48px));
      }
    }

    @media (max-width: 640px) {
      .site-intro::before {
        height: 58px;
      }

      .site-intro::after {
        height: 34svh;
      }

      .intro-logo {
        width: min(260px, 72vw);
      }

      .intro-brand {
        gap: 12px;
        animation:
          introBrandIn 0.58s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards,
          introBrandDockMobile 0.72s 1.08s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }

      .intro-subtitle {
        letter-spacing: 0.08em;
        text-align: center;
      }

      .hero-canvas {
        padding-top: 78px;
      }

      .hero-topline {
        gap: 28px;
      }

      .hero-kicker {
        font-size: 14px;
        margin-bottom: 18px;
      }

      .hero-wordmark {
        font-size: 74px;
      }

      .hero-wordmark-sub {
        font-size: 15px;
        letter-spacing: 0.2em;
      }

      .hero-statement h1 {
        font-size: 31px;
        line-height: 1;
        margin-bottom: 20px;
        overflow-wrap: anywhere;
      }

      .headline-cycle {
        width: max-content;
        min-width: min(5.65em, 100%);
        padding: 0.02em 0.18em 0.1em;
      }

      .headline-delivery {
        gap: 7px;
        font-size: 0.54em;
      }

      .headline-delivery .copy {
        white-space: normal;
      }

      .hero-statement p {
        font-size: 15px;
        line-height: 1.72;
        margin-bottom: 24px;
      }

      .hero-actions {
        align-items: stretch;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .production-canvas {
        min-height: 610px;
        margin-top: 30px;
      }

      .work-main {
        left: 8%;
        top: 26px;
        width: 84%;
      }

      .work-layer {
        display: none;
      }

      .hero-brief-console {
        top: 250px;
        width: calc(100vw - 32px);
        padding: 18px;
      }

      .brief-toolbar {
        align-items: flex-end;
      }

      .brief-tool:nth-child(3) {
        display: none;
      }

      .canvas-metrics {
        grid-template-columns: 1fr;
        bottom: 26px;
        width: calc(100vw - 32px);
      }

      .canvas-metric {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .canvas-metric span {
        margin-top: 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .site-intro {
        display: none;
      }

      .page-loading .navbar,
      .page-loading .hero-brand-system,
      .page-loading .hero-statement,
      .page-loading .production-canvas {
        opacity: 1 !important;
        transform: none !important;
      }

      .floating-work,
      .headline-cycle-stack {
        animation: none;
      }
    }
    
    /* ==========================================================================
       SHOWCASE MASONRY GRID (3 independent Flex columns)
       ========================================================================== */
    .showcase {
      position: relative;
      z-index: 2;
    }

    body.kv-gallery-open .showcase {
      z-index: 20000;
    }

    body.kv-gallery-open .floating-prompt-wrap {
      opacity: 0;
      pointer-events: none;
      transform: translateY(120%);
    }
    
    .showcase-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .showcase-header .feat-tag {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 12px;
    }
    
    .showcase-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: -1.5px;
    }
    
    /* Flex Staggered columns */
    .masonry-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      width: 100%;
    }
    
    @media (max-width: 768px) {
      .masonry-container {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }
    
    .masonry-col {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    @media (max-width: 768px) {
      .masonry-col {
        gap: 24px;
      }
    }
    
    .masonry-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.03);
      position: relative;
      background: var(--surface);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .masonry-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .masonry-item:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }
    
    .masonry-item:hover img {
      transform: scale(1.05);
    }
    
    /* Card Info Overlay */
    .masonry-item .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      opacity: 0;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .masonry-item:hover .card-overlay {
      opacity: 1;
    }

    .card-overlay * {
      transform: translateY(20px);
      opacity: 0;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .masonry-item:hover .card-overlay * {
      transform: translateY(0);
      opacity: 1;
    }

    .card-overlay .tag {
      align-self: flex-start;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition-delay: 0.05s;
    }
    
    .card-overlay h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.3px;
      transition-delay: 0.1s;
    }
    
    .card-overlay p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      line-height: 1.5;
      transition-delay: 0.15s;
    }
    
    .card-overlay .tag {
      align-self: flex-start;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .card-overlay h3 {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
      font-family: 'Outfit', sans-serif;
    }
    
    .card-overlay p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
    }

    .showcase .masonry-container,
    .showcase .showcase-cta-wrap {
      display: none;
    }

    .kv-curated-gallery {
      display: grid;
      gap: 28px;
    }

    .kv-feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .kv-feature-card,
    .kv-stack-thumb,
    .kv-open-gallery,
    .kv-lightbox-close,
    .kv-lightbox-nav,
    .kv-lightbox-thumb {
      font: inherit;
    }

    .kv-feature-card {
      position: relative;
      min-height: 44px;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: var(--radius-md);
      background: #111;
      color: #fff;
      text-align: left;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .kv-feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
    }

    .kv-feature-card img {
      width: 100%;
      height: 100%;
      min-height: 220px;
      aspect-ratio: 16 / 10;
      display: block;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .kv-feature-card:hover img {
      transform: scale(1.045);
    }

    .kv-feature-card.is-primary img {
      min-height: 300px;
    }

    .kv-feature-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 8px;
      padding: 24px;
      background: linear-gradient(180deg, rgba(0,0,0,0.02) 25%, rgba(0,0,0,0.78) 100%);
    }

    .kv-feature-meta {
      width: fit-content;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: rgba(249, 115, 22, 0.94);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .kv-feature-overlay h3 {
      max-width: 16em;
      color: #fff;
      font-size: clamp(19px, 2vw, 28px);
      line-height: 1.15;
      letter-spacing: 0;
    }

    .kv-feature-overlay p {
      max-width: 32em;
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      line-height: 1.55;
    }

    .kv-gallery-dock {
      display: grid;
      gap: 22px;
      align-items: center;
      padding: 20px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(250,250,250,0.72));
      box-shadow: var(--shadow-sm);
    }

    .kv-dock-copy {
      display: grid;
      gap: 12px;
      align-content: center;
    }

    .kv-dock-copy h3 {
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1.18;
      letter-spacing: 0;
    }

    .kv-dock-copy p {
      max-width: 46em;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .kv-open-gallery {
      width: fit-content;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border: 1px solid #111;
      border-radius: var(--radius-pill);
      background: #111;
      color: #fff;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .kv-open-gallery:hover {
      transform: translateY(-2px);
      background: var(--orange);
      border-color: var(--orange);
    }

    .kv-open-gallery span {
      color: rgba(255,255,255,0.72);
      font-size: 12px;
      font-weight: 700;
    }

    .kv-stack-visual {
      position: relative;
      min-height: 210px;
      isolation: isolate;
    }

    .kv-stack-thumb {
      position: absolute;
      width: 46%;
      min-width: 132px;
      max-width: 250px;
      min-height: 44px;
      padding: 0;
      overflow: hidden;
      border: 3px solid #fff;
      border-radius: var(--radius-sm);
      background: #111;
      cursor: pointer;
      box-shadow: 0 18px 35px rgba(0,0,0,0.18);
      transition: transform 0.35s ease, z-index 0.35s ease;
    }

    .kv-stack-thumb img {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: block;
      object-fit: cover;
    }

    .kv-stack-thumb:hover {
      z-index: 20;
      transform: translateY(-10px) rotate(0deg) scale(1.05) !important;
    }

    .kv-stack-thumb:nth-child(1) { left: 0; top: 28px; z-index: 2; transform: rotate(-7deg); }
    .kv-stack-thumb:nth-child(2) { left: 16%; top: 2px; z-index: 3; transform: rotate(4deg); }
    .kv-stack-thumb:nth-child(3) { left: 34%; top: 38px; z-index: 4; transform: rotate(-2deg); }
    .kv-stack-thumb:nth-child(4) { left: 50%; top: 12px; z-index: 5; transform: rotate(7deg); }
    .kv-stack-thumb:nth-child(5) { left: 6%; top: 110px; z-index: 6; transform: rotate(5deg); }
    .kv-stack-thumb:nth-child(6) { left: 28%; top: 96px; z-index: 7; transform: rotate(-5deg); }
    .kv-stack-thumb:nth-child(7) { left: 48%; top: 114px; z-index: 8; transform: rotate(3deg); }

    .kv-stack-count {
      position: absolute;
      right: 10px;
      bottom: 8px;
      z-index: 25;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      background: rgba(17,17,17,0.88);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .kv-lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(8, 8, 8, 0.92);
      backdrop-filter: blur(18px);
    }

    body.kv-gallery-open,
    body.kv-gallery-open .kv-lightbox {
      cursor: auto !important;
    }

    body.kv-gallery-open .custom-cursor {
      display: none !important;
    }

    body.kv-gallery-open .kv-lightbox button {
      cursor: pointer !important;
    }

    .kv-lightbox.active {
      display: flex;
    }

    .kv-lightbox-panel {
      width: min(1440px, 100%);
      height: min(920px, 94vh);
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      gap: 14px;
    }

    .kv-lightbox-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #fff;
    }

    .kv-lightbox-title {
      min-width: 0;
    }

    .kv-lightbox-kicker {
      color: var(--orange);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .kv-lightbox-title h3 {
      margin-top: 4px;
      color: #fff;
      font-size: clamp(18px, 2vw, 28px);
      line-height: 1.2;
    }

    .kv-lightbox-counter {
      color: rgba(255,255,255,0.62);
      font-size: 13px;
      font-weight: 700;
    }

    .kv-lightbox-close,
    .kv-lightbox-nav {
      min-width: 48px;
      min-height: 48px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .kv-lightbox-close:hover,
    .kv-lightbox-nav:hover {
      background: rgba(249,115,22,0.92);
      transform: scale(1.04);
    }

    .kv-lightbox-stage {
      position: relative;
      min-height: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: #050505;
      touch-action: pan-y;
    }

    .kv-lightbox-stage img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
      user-select: none;
      cursor: zoom-in !important;
      transform: scale(1);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
    }

    .kv-lightbox-stage.is-zoomed img {
      transform: scale(1.32);
      cursor: zoom-out !important;
    }

    .kv-lightbox-nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      transform: translateY(-50%);
    }

    .kv-lightbox-nav:hover {
      transform: translateY(-50%) scale(1.04);
    }

    .kv-lightbox-nav.prev {
      left: 16px;
    }

    .kv-lightbox-nav.next {
      right: 16px;
    }

    .kv-lightbox-thumbs {
      display: flex;
      align-items: center;
      gap: 12px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x proximity;
      padding: 8px 2px 12px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }

    .kv-lightbox-thumbs::-webkit-scrollbar {
      display: none;
    }

    .kv-lightbox-thumb {
      flex: 0 0 clamp(82px, 7.2vw, 112px);
      scroll-snap-align: center;
      min-height: 56px;
      padding: 0;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.06);
      opacity: 0.48;
      cursor: pointer;
      filter: saturate(0.76) brightness(0.82);
      box-shadow: 0 10px 24px rgba(0,0,0,0.28);
      transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease, flex-basis 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    }

    .kv-lightbox-thumb.active,
    .kv-lightbox-thumb:hover {
      flex-basis: clamp(102px, 8.8vw, 138px);
      opacity: 1;
      border-color: var(--orange);
      filter: none;
      transform: translateY(-4px);
      box-shadow: 0 0 0 1px rgba(249,115,22,0.38), 0 18px 38px rgba(0,0,0,0.36);
    }

    .kv-lightbox-thumb img {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: block;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .kv-gallery-dock {
        grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
        padding: 28px;
      }

      .kv-stack-visual {
        min-height: 250px;
      }
    }

    @media (min-width: 1024px) {
      .kv-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(230px, 1fr));
      }

      .kv-feature-card.is-primary {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
      }

      .kv-feature-card.is-secondary {
        grid-column: 3 / 5;
      }

      .kv-feature-card.is-tertiary,
      .kv-feature-card.is-quaternary {
        grid-row: 2;
      }

      .kv-feature-card img {
        min-height: 100%;
        aspect-ratio: auto;
      }
    }

    @media (max-width: 767px) {
      .showcase-header {
        margin-bottom: 34px;
      }

      .kv-feature-overlay {
        padding: 20px;
      }

      .kv-feature-overlay p {
        display: none;
      }

      .kv-stack-visual {
        min-height: 230px;
        overflow: hidden;
      }

      .kv-stack-thumb {
        width: 58%;
      }

      .kv-lightbox {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
      }

      .kv-lightbox-panel {
        height: auto;
        max-height: 94vh;
        grid-template-rows: auto auto auto;
      }

      .kv-lightbox-stage {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
      }

      .kv-lightbox-stage.is-portrait {
        aspect-ratio: 9 / 14;
      }

      .kv-lightbox-nav {
        top: auto;
        bottom: 14px;
      }

      .kv-lightbox-nav.prev {
        left: 14px;
      }

      .kv-lightbox-nav.next {
        right: 14px;
      }

      .kv-lightbox-thumb {
        flex-basis: 76px;
        min-height: 48px;
      }

      .kv-lightbox-thumb.active,
      .kv-lightbox-thumb:hover {
        flex-basis: 96px;
      }

      .kv-lightbox-stage.is-zoomed img {
        transform: scale(1.16);
      }
    }
    
    /* ==========================================================================
       INTERACTIVE PROMPT BAR
       ========================================================================== */
    .prompt-bar-container {
      margin: 40px auto 0;
      max-width: 760px;
      width: 100%;
      position: relative;
      z-index: 10;
    }
    
    .prompt-bar {
      position: relative;
      isolation: isolate;
      min-height: 70px;
      background:
        radial-gradient(circle at 86% 50%, rgba(249, 115, 22, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(18, 18, 18, 0.94), rgba(5, 5, 5, 0.86));
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 26px;
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 0, 0, 0.18);
      padding: 9px 9px 9px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition-smooth);
      overflow: hidden;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .prompt-bar::before {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 25px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(249, 115, 22, 0.09));
      pointer-events: none;
      z-index: -1;
    }
    
    .prompt-bar:focus-within {
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(249, 115, 22, 0.22);
      border-color: rgba(249, 115, 22, 0.55);
    }

    .prompt-intent {
      flex: 0 0 auto;
      min-height: 42px;
      padding: 0 12px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(249, 115, 22, 0.16);
      color: #ffb17d;
      border: 1px solid rgba(249, 115, 22, 0.22);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      white-space: nowrap;
    }
    
    .prompt-bar input {
      flex: 1;
      min-width: 0;
      border: none;
      background: none;
      font-size: 15px;
      color: #fff;
      outline: none;
      font-family: inherit;
      height: 44px;
    }
    
    .prompt-bar input::placeholder {
      color: rgba(255, 255, 255, 0.56);
    }
    
    .prompt-bar .engine-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      min-height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      padding: 0 14px;
      border-radius: 18px;
      font-size: 12px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.76);
      white-space: nowrap;
      transition: var(--transition-fast);
    }
    
    .prompt-bar .engine-tag:hover {
      background: rgba(249, 115, 22, 0.18);
      border-color: rgba(249, 115, 22, 0.28);
      color: #fff;
    }
    
    .prompt-bar .send-btn {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
      box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
    }
    
    .prompt-bar .send-btn:hover {
      background: #ff8a2a;
      transform: scale(1.08);
      box-shadow: var(--shadow-orange);
    }
    
    .prompt-bar .send-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    
    /* Floating bottom prompt bar trigger */
    .floating-prompt-wrap {
      position: fixed;
      bottom: max(18px, env(safe-area-inset-bottom));
      left: 50%;
      transform: translate(-50%, 140%);
      width: calc(100% - 32px);
      max-width: 760px;
      z-index: 90;
      transition: var(--transition-smooth);
      opacity: 0;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: transparent;
    }
    
    .floating-prompt-wrap.visible {
      transform: translate(-50%, 0);
      opacity: 1;
      pointer-events: all;
    }

    .floating-prompt-wrap.is-forced {
      transform: translate(-50%, 0);
      opacity: 1;
      pointer-events: all;
    }
    
    /* Quick Prompt Suggestions */
    .floating-prompt-wrap .prompt-suggestions {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin: 0 auto;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    }

    .floating-prompt-wrap.visible .prompt-suggestions {
      opacity: 1;
      transform: translateY(0);
    }
    
    .suggestion-chip {
      background: rgba(12, 12, 12, 0.64);
      border: 1px solid rgba(255, 255, 255, 0.14);
      padding: 7px 13px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.72);
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
      transition: var(--transition-fast);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    
    .suggestion-chip:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: translateY(-2px);
    }

    @media (max-width: 640px) {
      .floating-prompt-wrap {
        width: calc(100% - 20px);
        bottom: max(12px, env(safe-area-inset-bottom));
      }

      .prompt-bar {
        min-height: 62px;
        border-radius: 22px;
        padding: 8px;
        gap: 8px;
      }

      .prompt-bar::before {
        border-radius: 21px;
      }

      .prompt-intent {
        min-height: 40px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.12em;
      }

      .prompt-bar input {
        font-size: 14px;
        height: 42px;
      }

      .prompt-bar .engine-tag {
        display: none;
      }

      .prompt-bar .send-btn {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
      }

      .floating-prompt-wrap .prompt-suggestions {
        max-width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 2px 2px;
        scrollbar-width: none;
      }

      .floating-prompt-wrap .prompt-suggestions::-webkit-scrollbar {
        display: none;
      }

      .suggestion-chip {
        flex: 0 0 auto;
      }
    }

    @keyframes pulse-border {
      0% { box-shadow: var(--shadow-lg), 0 0 0 0px rgba(249, 115, 22, 0.5); }
      70% { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(249, 115, 22, 0); }
      100% { box-shadow: var(--shadow-lg), 0 0 0 0px rgba(249, 115, 22, 0); }
    }
    
    .highlight-pulse {
      animation: pulse-border 1.5s infinite !important;
      border-color: var(--orange) !important;
    }
    
    /* ==========================================================================
       AI ENGINE SIMULATION MODAL
       ========================================================================== */
    .ai-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, 0.98);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      color: #fff;
      padding: 24px;
    }
    
    .ai-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .ai-loader-container {
      max-width: 500px;
      width: 100%;
      text-align: center;
    }
    
    .ai-loader-title {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--orange);
      margin-bottom: 24px;
    }
    
    .ai-progress-container {
      width: 100%;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-pill);
      overflow: hidden;
      margin-bottom: 12px;
      position: relative;
    }
    
    .ai-progress-bar {
      height: 100%;
      width: 0%;
      background: var(--orange);
      transition: width 0.1s linear;
      box-shadow: 0 0 12px var(--orange);
    }
    
    .ai-progress-status {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #888;
      margin-bottom: 40px;
    }
    
    .ai-log-console {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-sm);
      padding: 16px;
      font-family: 'Courier New', Courier, monospace;
      text-align: left;
      font-size: 12px;
      height: 180px;
      overflow-y: auto;
      color: #22c55e;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    }
    
    .ai-log-console .log-line {
      margin-bottom: 4px;
      opacity: 0.9;
    }
    
    /* Result Display Modal */
    .result-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -45%) scale(0.95);
      z-index: 20001;
      background: var(--surface);
      max-width: 760px;
      width: calc(100% - 32px);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 30px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .result-modal.active {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }
    
    .result-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding-bottom: 15px;
    }
    
    .result-modal-header h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }
    
    .close-modal {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 600;
      transition: var(--transition-fast);
    }
    
    .close-modal:hover {
      background: var(--text);
      color: var(--surface);
    }
    
    .result-content {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
    }
    
    .result-image-box {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
    }
    
    .result-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .result-image-box .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
    }
    
    .result-info-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .result-info-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }
    
    .result-info-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.7;
    }
    
    .result-meta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 20px;
    }
    
    .result-meta-item {
      background: var(--bg-light);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
    }
    
    .result-meta-label {
      font-size: 11px;
      color: var(--text-light);
      text-transform: uppercase;
    }
    
    .result-meta-value {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    
    .btn-download {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--text);
      color: var(--surface);
      padding: 14px;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition-fast);
      width: 100%;
    }
    
    .btn-download:hover {
      background: var(--orange);
      box-shadow: var(--shadow-orange);
    }
    
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      z-index: 20000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    
    .modal-backdrop.active {
      opacity: 1;
      pointer-events: all;
    }

    /* Cooperation QR Modal */
    .cooperation-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -45%) scale(0.96);
      z-index: 20001;
      width: min(920px, calc(100% - 32px));
      border-radius: var(--radius-lg);
      background: #101010;
      color: #fff;
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
      max-height: calc(100vh - 32px);
      overflow-x: hidden;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cooperation-modal.active {
      opacity: 1;
      pointer-events: all;
      transform: translate(-50%, -50%) scale(1);
    }

    .cooperation-modal::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 12%, rgba(249, 115, 22, 0.28), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
      pointer-events: none;
    }

    .cooperation-modal-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
      gap: 34px;
      padding: clamp(24px, 4vw, 40px);
      align-items: center;
    }

    .cooperation-copy {
      min-width: 0;
    }

    .cooperation-kicker {
      color: var(--orange);
      font-size: 11px;
      line-height: 1.4;
      letter-spacing: 2.2px;
      font-weight: 800;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .cooperation-copy h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -1px;
      margin-bottom: 18px;
      color: #fff;
    }

    .cooperation-copy p {
      max-width: 560px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .cooperation-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 24px;
    }

    .cooperation-point {
      min-height: 74px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .cooperation-point strong {
      display: block;
      color: #fff;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .cooperation-point span {
      color: rgba(255, 255, 255, 0.58);
      font-size: 12px;
      line-height: 1.5;
    }

    .cooperation-contact-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 12px;
      letter-spacing: 0.5px;
    }

    .cooperation-contact-line span {
      padding: 8px 11px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.08);
    }

    .qr-panel {
      position: relative;
      padding: 12px;
      border-radius: var(--radius-md);
      background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.22), transparent 36%),
        rgba(255, 255, 255, 0.98);
      color: var(--text);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    }

    .qr-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.11), transparent 40%),
        #f7f8fa;
      border: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .qr-frame img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
    }

    .qr-fallback {
      display: none;
      width: calc(100% - 34px);
      height: calc(100% - 34px);
      border: 1px dashed rgba(0, 0, 0, 0.18);
      border-radius: var(--radius-sm);
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .qr-frame.qr-missing .qr-fallback {
      display: flex;
    }

    .qr-meta {
      padding: 14px 4px 2px;
      text-align: center;
    }

    .qr-meta strong {
      display: block;
      font-size: 16px;
      margin-bottom: 4px;
    }

    .qr-meta span {
      color: var(--text-muted);
      font-size: 12px;
    }

    .cooperation-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .cooperation-close:hover {
      background: #fff;
      color: var(--text);
    }

    @media (max-width: 820px) {
      .cooperation-modal {
        width: min(440px, calc(100% - 28px));
      }
      .cooperation-modal-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }
      .cooperation-points {
        grid-template-columns: minmax(0, 1fr);
      }
      .qr-panel {
        max-width: 300px;
        justify-self: center;
        width: 100%;
      }
    }
    
    /* ==========================================================================
       PARTNER MARQUEE (Endless scroll)
       ========================================================================== */
    .partners {
      margin-top: clamp(-104px, -6vw, -48px);
      padding: clamp(70px, 7vw, 106px) 0 clamp(44px, 5vw, 82px);
      background:
        radial-gradient(ellipse at 28% 30%, rgba(249, 115, 22, 0.055), transparent 46%),
        radial-gradient(ellipse at 74% 58%, rgba(249, 115, 22, 0.055), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 20%, #fbfaf8 58%, #f4f0eb 82%, #10100f 100%);
      overflow: hidden;
      position: relative;
    }

    .partners::before,
    .partners::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      pointer-events: none;
      z-index: 0;
    }

    .partners::before {
      top: 0;
      height: 230px;
      background:
        linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255,255,255,0.58) 66%, rgba(255,255,255,0) 100%);
    }

    .partners::after {
      bottom: 0;
      height: clamp(280px, 26vw, 420px);
      background:
        radial-gradient(ellipse at 50% 24%, rgba(255, 255, 255, 0.24), transparent 46%),
        radial-gradient(ellipse at 50% 52%, rgba(249, 115, 22, 0.055), transparent 60%),
        linear-gradient(180deg, rgba(251, 250, 248, 0), rgba(247, 243, 239, 0.82) 28%, rgba(16, 16, 15, 0.08) 60%, rgba(16, 16, 15, 0.72) 84%, #10100f 100%);
    }
    
    .marquee-container {
      position: relative;
      z-index: 1;
      display: flex;
      width: 100%;
      min-height: clamp(190px, 16vw, 252px);
      align-items: center;
      overflow: hidden;
      transform: rotate(-1.15deg);
      mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.32) 3%, #000 9%, #000 91%, rgba(0,0,0,0.32) 97%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.32) 3%, #000 9%, #000 91%, rgba(0,0,0,0.32) 97%, transparent);
    }

    .marquee-container::before,
    .marquee-container::after {
      display: none;
    }

    .marquee-container::before {
      top: 18px;
    }

    .marquee-container::after {
      bottom: 18px;
    }
    
    .marquee-track {
      display: flex;
      gap: clamp(46px, 4vw, 78px);
      align-items: center;
      animation: scroll 58s linear infinite;
      white-space: nowrap;
      width: max-content;
      padding: 42px 10vw;
    }
    
    .partner-logo-chip {
      flex: 0 0 auto;
      position: relative;
      height: clamp(54px, 5.2vw, 82px);
      min-width: clamp(140px, 14vw, 210px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 clamp(14px, 1.4vw, 26px);
      opacity: 0.38;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .partner-logo-chip::before {
      display: none !important;
    }

    .partner-logo-chip.logo-lightmark::before {
      display: none !important;
    }

    .partner-logo-chip.logo-wide {
      min-width: clamp(180px, 18vw, 260px);
    }

    .partner-logo-chip.logo-mid {
      min-width: clamp(150px, 15vw, 220px);
    }

    .partner-logo-chip.logo-compact {
      min-width: clamp(120px, 12vw, 170px);
    }
    
    .partner-logo-chip:hover {
      opacity: 1;
      transform: translateY(-2px) scale(1.04);
    }

    .client-logo-chip img {
      display: block;
      width: auto;
      height: clamp(30px, 2.8vw, 42px);
      max-width: 100%;
      object-fit: contain;
      filter: grayscale(1) brightness(0.2);
      transition: filter 0.4s ease, opacity 0.4s ease;
    }

    .partner-logo-chip:hover img {
      filter: grayscale(0) brightness(1);
    }

    /* Keep monochrome white logo dark grey/black on hover for visibility on light sand background */
    .partner-logo-chip.logo-lightmark img {
      filter: grayscale(1) brightness(0.2);
    }

    .partner-logo-chip.logo-lightmark:hover img {
      filter: grayscale(1) brightness(0.1);
    }

    .logo-compact img {
      max-width: 100%;
    }

    .logo-compact.client-logo-chip img {
      height: clamp(26px, 2.4vw, 36px);
    }

    .brand-context-copy {
      position: relative;
      z-index: 1;
      width: min(100% - 48px, 1120px);
      margin: 12px auto 0;
      color: rgba(17, 17, 17, 0.58);
      font-size: clamp(13px, 1.2vw, 15px);
      line-height: 1.8;
      text-align: center;
      letter-spacing: 0;
    }
    
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track {
        animation: none;
      }
    }
    
    /* ==========================================================================
       STATS & NUMERICS
       ========================================================================== */
    .stats-section {
      position: relative;
      margin-top: -1px;
      padding-top: clamp(44px, 5.5vw, 76px);
      background:
        radial-gradient(ellipse at 50% -12%, rgba(249, 115, 22, 0.08), transparent 44%),
        linear-gradient(180deg, #10100f 0%, #10100f 48%, #0e0e0d 100%);
      color: var(--surface);
      overflow: hidden;
    }

    .stats-section::before {
      content: "";
      position: absolute;
      left: -8%;
      right: -8%;
      top: -150px;
      height: 230px;
      background:
        radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.1), transparent 46%),
        radial-gradient(ellipse at 50% 42%, rgba(249, 115, 22, 0.08), transparent 58%),
        linear-gradient(180deg, rgba(247, 243, 239, 0.16), rgba(16, 16, 15, 0));
      filter: blur(14px);
      pointer-events: none;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(40px, 6vw, 100px);
      text-align: center;
    }
    
    .stat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .stat-card .number {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(48px, 6vw, 84px);
      font-weight: 900;
      line-height: 1;
      margin-bottom: 12px;
      color: var(--surface);
    }
    
    .stat-card .number span {
      color: var(--orange);
    }
    
    .stat-card .label {
      font-size: 15px;
      color: var(--text-light);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    
    /* ==========================================================================
       SERVICES + COMMITMENTS
       ========================================================================== */
    #services {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 72% 34%, rgba(249, 115, 22, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f7 100%);
    }

    #services::before {
      content: "";
      position: absolute;
      inset: 80px 0 22%;
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.085) 1px, transparent 1.4px);
      background-size: 28px 28px;
      opacity: 0.28;
      mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
      pointer-events: none;
    }

    #services .container {
      z-index: 1;
    }

    .services-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .services-header .feat-tag {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 12px;
    }
    
    .services-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: 0;
    }
    
    .service-drop-layout {
      max-width: 1240px;
      margin: 0 auto 72px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
    }

    .service-drop-copy {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .service-drop-copy .drop-eyebrow {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--orange);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .service-drop-copy h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 2.125rem;
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    .service-drop-copy p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
    }

    .service-drop-stage {
      position: relative;
      min-height: 620px;
      overflow: visible;
      isolation: isolate;
      border-radius: 0;
      background: transparent;
      perspective: 1100px;
    }

    .service-drop-stage::before {
      content: "";
      position: absolute;
      inset: -80px -74px -44px -72px;
      z-index: -2;
      border-radius: 0;
      background:
        radial-gradient(circle at 61% 70%, rgba(249, 115, 22, 0.16), transparent 31%),
        radial-gradient(circle at 86% 76%, rgba(17, 17, 17, 0.055), transparent 22%),
        radial-gradient(circle at 25% 78%, rgba(17, 17, 17, 0.035), transparent 26%),
        radial-gradient(circle, rgba(0, 0, 0, 0.055) 1px, transparent 1.4px);
      background-size: auto, auto, auto, 31px 31px;
      opacity: 0.58;
      mask-image: radial-gradient(ellipse at 61% 70%, #000 0%, #000 54%, transparent 86%);
      -webkit-mask-image: radial-gradient(ellipse at 61% 70%, #000 0%, #000 54%, transparent 86%);
      pointer-events: none;
    }

    .service-drop-stage::after {
      content: "";
      position: absolute;
      left: 8%;
      right: 1%;
      bottom: 48px;
      height: 170px;
      border-radius: 999px;
      background:
        radial-gradient(ellipse at 48% 52%, rgba(0, 0, 0, 0.16), transparent 58%),
        radial-gradient(ellipse at 45% 36%, rgba(249, 115, 22, 0.16), transparent 48%),
        radial-gradient(ellipse at 82% 58%, rgba(17, 17, 17, 0.1), transparent 42%);
      box-shadow: none;
      filter: blur(18px);
      opacity: 0.62;
      transform: rotateX(66deg) translateZ(-28px) scaleX(0.98);
      transform-origin: 50% 50%;
      z-index: 0;
      pointer-events: none;
    }

    .service-drop-item {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
      opacity: 0;
      transform: translate3d(var(--start-x, 0px), var(--start-y, -220px), 0) rotate(var(--start-r, 0deg));
      transform-origin: 50% 92%;
      will-change: transform, opacity;
      pointer-events: none;
      filter:
        drop-shadow(0 18px 18px rgba(0, 0, 0, 0.11))
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.08));
    }

    .service-drop-item::after {
      content: "";
      position: absolute;
      left: 12%;
      right: 12%;
      bottom: -7px;
      height: 11px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2), transparent 72%);
      filter: blur(6px);
      opacity: 0;
      transform: scaleX(0.58);
      z-index: -1;
      pointer-events: none;
    }

    .service-drop-item.is-dropped {
      z-index: var(--drop-z, 2);
      animation: serviceDrop 1280ms cubic-bezier(0.16, 1, 0.3, 1) var(--drop-delay, 0ms) both;
    }

    .service-drop-item.is-dropped::after {
      animation: serviceContactShadow 1280ms cubic-bezier(0.16, 1, 0.3, 1) var(--drop-delay, 0ms) both;
    }

    .service-drop-item.is-settled {
      z-index: var(--drop-z, 2);
      opacity: 1;
      transform: translate3d(var(--drop-x, 0px), var(--drop-y, 0px), 0) rotate(var(--drop-r, 0deg));
    }

    .service-drop-item.is-settled::after {
      opacity: 0.68;
      transform: scaleX(1);
    }

    .service-token {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border-radius: var(--radius-pill);
      color: #fff;
      background: rgba(17, 17, 17, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      font-size: 1rem;
      line-height: 1.1;
      font-weight: 900;
      white-space: nowrap;
      letter-spacing: 0;
      will-change: transform;
      transform: translateZ(0);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transform: translateZ(10px);
    }

    .service-token.is-orange {
      background: rgba(249, 115, 22, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 12px 36px rgba(249, 115, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .service-token.is-light {
      color: #111;
      background: rgba(248, 247, 244, 0.88);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .service-shape {
      z-index: 1;
      display: block;
      opacity: 0.82;
      filter: drop-shadow(0 10px 14px rgba(0,0,0,0.12));
    }

    .service-shape.is-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--orange);
    }

    .service-shape.is-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #111;
      box-shadow: 0 0 0 16px rgba(0,0,0,0.08);
    }

    .service-shape.is-block {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-sm);
      background: #dededc;
    }

    .service-shape.is-triangle {
      width: 0;
      height: 0;
      border-left: 38px solid transparent;
      border-right: 38px solid transparent;
      border-bottom: 70px solid #d8d8d6;
      background: transparent;
    }

    .service-shape.is-spark {
      width: 74px;
      height: 74px;
      opacity: 0.24;
    }

    .service-shape.is-spark::before,
    .service-shape.is-spark::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 74px;
      height: 12px;
      border-radius: var(--radius-pill);
      background: #111;
      transform: translate(-50%, -50%) rotate(0deg);
    }

    .service-shape.is-spark::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    @keyframes serviceDrop {
      0% {
        opacity: 0;
        filter: blur(5px);
        transform: translate3d(var(--start-x, 0px), var(--start-y, -260px), 0) rotate(var(--start-r, 0deg)) scale(0.96);
      }
      18% {
        opacity: 1;
        filter: blur(2px);
      }
      52% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(var(--drop-x, 0px), calc(var(--drop-y, 0px) + var(--impact-y, 16px)), 0) rotate(calc(var(--drop-r, 0deg) + var(--impact-r, 4deg))) scale(1.012, 0.968);
      }
      66% {
        transform: translate3d(var(--drop-x, 0px), calc(var(--drop-y, 0px) - var(--rebound-y, 8px)), 0) rotate(calc(var(--drop-r, 0deg) - var(--rebound-r, 2deg))) scale(0.996, 1.006);
      }
      82% {
        transform: translate3d(var(--drop-x, 0px), calc(var(--drop-y, 0px) + 3px), 0) rotate(calc(var(--drop-r, 0deg) + 0.8deg)) scale(1.002, 0.996);
      }
      100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(var(--drop-x, 0px), var(--drop-y, 0px), 0) rotate(var(--drop-r, 0deg)) scale(1);
      }
    }

    @keyframes serviceContactShadow {
      0%, 38% {
        opacity: 0;
        transform: scaleX(0.45);
      }
      52% {
        opacity: 0.95;
        transform: scaleX(1.18);
      }
      66% {
        opacity: 0.58;
        transform: scaleX(0.82);
      }
      100% {
        opacity: 0.82;
        transform: scaleX(1);
      }
    }

    @media (min-width: 1024px) {
      .service-drop-layout {
        grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
        gap: 48px;
      }

      .service-drop-copy {
        margin: 0;
        text-align: left;
      }

      .service-drop-stage {
        min-height: 580px;
      }
    }

    @media (max-width: 767px) {
      .service-drop-layout {
        margin-bottom: 42px;
      }

      .service-drop-copy h3 {
        font-size: 1.75rem;
      }

      .service-drop-copy p {
        font-size: 0.9375rem;
      }

      .service-drop-stage {
        min-height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 10px;
        padding: 8px 0;
        overflow: visible;
        background: transparent;
        border-radius: 0;
      }

      .service-drop-stage::before,
      .service-drop-stage::after {
        display: none;
      }

      .service-drop-item {
        position: relative;
        opacity: 1;
        transform: none !important;
        animation: none !important;
      }

      .service-drop-item::after {
        display: none;
      }

      .service-token {
        min-height: 46px;
        padding: 0 17px;
        font-size: 0.9375rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
      }

      .service-shape {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-drop-item.is-dropped {
        animation-duration: 1ms;
        animation-delay: 0ms;
      }

      .service-drop-item.is-dropped::after {
        animation: none;
        opacity: 0.72;
      }
    }
    
    /* Commitment Cards Grid */
    .commitment-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    @media (max-width: 1100px) {
      .commitment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .commitment-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .commit-card {
      position: relative;
      overflow: hidden;
      min-height: 250px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,245,0.98));
      border: 1px solid rgba(17, 17, 17, 0.07);
      border-radius: 14px;
      padding: 28px 26px 26px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.04);
      transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .commit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 16%, rgba(249, 115, 22, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(247,247,245,0.82));
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .commit-card::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -34px;
      width: 126px;
      height: 126px;
      border-radius: 50%;
      background:
        radial-gradient(circle at center, rgba(249,115,22,0.13), transparent 58%);
      pointer-events: none;
    }
    
    .commit-card:hover {
      border-color: rgba(249, 115, 22, 0.28);
      transform: translateY(-8px);
      box-shadow: 0 26px 60px rgba(0,0,0,0.09);
    }

    .commit-card:hover::before {
      opacity: 1;
    }
    
    .commit-card .icon-box {
      position: relative;
      width: 58px;
      height: 58px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 34% 28%, rgba(249, 115, 22, 0.24), transparent 36%),
        #f3f0eb;
      color: var(--orange);
      overflow: hidden;
      z-index: 1;
      box-shadow: inset 0 0 0 1px rgba(17,17,17,0.05);
    }

    .premium-icon {
      width: 28px;
      height: 28px;
      color: var(--text);
      transition: transform 0.4s ease, color 0.4s ease;
      position: relative;
      z-index: 2;
    }

    .commit-card:hover .premium-icon {
      transform: scale(1.12) rotate(2deg);
      color: var(--orange);
    }

    .commit-meta {
      position: relative;
      z-index: 1;
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
    }
    
    .commit-card h3 {
      position: relative;
      z-index: 1;
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .commit-card p {
      position: relative;
      z-index: 1;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    
    /* ==========================================================================
       50/50 DUAL-PANE STICKY FEATURE SECTION
       ========================================================================== */
    .feature-split-section {
      padding: 0;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(249, 115, 22, 0.18), transparent 34%),
        radial-gradient(ellipse at 72% 76%, rgba(249, 115, 22, 0.16), transparent 36%),
        linear-gradient(180deg, #10100f 0%, #1a120e 46%, #10100f 100%);
      position: relative;
      z-index: 2;
      overflow: clip;
    }
    
    .split-section-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
      min-height: clamp(900px, 112vh, 1180px);
      align-items: center;
      padding: clamp(56px, 7vh, 86px) 0;
      isolation: isolate;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(249, 115, 22, 0.14), transparent 48%),
        radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.1), transparent 48%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03), transparent 60%),
        linear-gradient(90deg, #18120e 0%, #141210 48%, #10100f 100%);
    }

    .split-section-inner::before {
      content: "";
      position: absolute;
      top: 5%;
      bottom: 5%;
      left: 50%;
      width: min(68vw, 980px);
      transform: translateX(-50%);
      background:
        radial-gradient(ellipse at 48% 44%, rgba(249, 115, 22, 0.2), transparent 62%),
        radial-gradient(ellipse at 55% 54%, rgba(255,255,255,0.07), transparent 54%);
      filter: blur(28px);
      pointer-events: none;
      z-index: -1;
    }

    .split-section-inner::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 24%;
      right: 22%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(249,115,22,0.2), rgba(255,255,255,0.1), rgba(249,115,22,0.18), transparent);
      transform: translateY(-50%);
      pointer-events: none;
      opacity: 0.32;
      z-index: 0;
    }

    .workflow-bridge {
      display: none;
    }
    
    .split-pane-left {
      background: transparent;
      min-height: 620px;
      position: sticky;
      top: 92px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 40px;
      overflow: hidden;
      z-index: 2;
      align-self: start;
    }
    
    .split-pane-right {
      background: transparent;
      padding: 32px clamp(32px, 5vw, 70px) 32px clamp(48px, 6vw, 88px);
      color: #fff;
      z-index: 2;
      align-self: center;
    }
    
    .sticky-pane-content {
      width: 100%;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    /* Left Side efficiency chart widget */
    .efficiency-widget {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.135), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 82% 12%, rgba(249, 115, 22, 0.2), transparent 38%),
        rgba(26, 18, 13, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 20px;
      padding: 36px;
      width: 100%;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.1);
      color: #fff;
      backdrop-filter: blur(18px);
    }

    .efficiency-widget::before {
      content: "";
      position: absolute;
      inset: -20% -20% auto auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 62%);
      pointer-events: none;
    }

    .efficiency-widget::after {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px;
      pointer-events: none;
    }
    
    .widget-title {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      letter-spacing: 0;
      font-weight: 900;
      color: #fff;
      margin-bottom: 24px;
    }
    
    .chart-bar-wrap {
      margin-bottom: 24px;
    }
    
    .chart-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 8px;
      color: rgba(255,255,255,0.84);
    }
    
    .chart-bar-bg {
      position: relative;
      width: 100%;
      height: 14px;
      background: rgba(255,255,255,0.1);
      border-radius: var(--radius-pill);
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    }
    
    .chart-bar-fill {
      height: 100%;
      border-radius: var(--radius-pill);
      width: 15%;
      transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .chart-bar-fill.traditional {
      background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.54));
      width: 100%;
    }
    
    .chart-bar-fill.zds-ai {
      background: linear-gradient(90deg, #f97316, #ffb15d);
      box-shadow: 0 0 18px rgba(249, 115, 22, 0.45);
      width: 10%;
      min-width: 24px;
    }

    .efficiency-flow {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin: 4px 0 24px;
    }

    .flow-stage {
      min-width: 0;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.52);
      font-size: 11px;
      font-weight: 800;
      transition: var(--transition-smooth);
    }

    .flow-stage.is-complete {
      background: rgba(249,115,22,0.18);
      color: rgba(255,255,255,0.84);
    }

    .flow-stage.is-current {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 12px 26px rgba(249,115,22,0.28);
    }
    
    .widget-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
    }
    
    .w-stat h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--orange);
      line-height: 1.1;
    }
    
    .w-stat p {
      font-size: 12px;
      color: rgba(255,255,255,0.58);
    }
    
    /* Right Side Timeline steps scroll cards */
    .timeline-steps-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 0 0 0 52px;
      position: relative;
    }
    
    .timeline-steps-wrap::before {
      content: "";
      position: absolute;
      left: 24px;
      top: 26px;
      bottom: 26px;
      width: 2px;
      background: linear-gradient(180deg, rgba(249, 115, 22, 0.45), rgba(255, 255, 255, 0.08), rgba(249, 115, 22, 0.22));
    }
    
    .timeline-step-card {
      position: relative;
      opacity: 0.28;
      transition: opacity 0.5s ease, border-color 0.5s ease, background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      min-height: 118px;
      padding: 20px 22px;
      border-radius: 16px;
      border: 1px solid transparent;
      background: transparent;
      transform: translateX(0);
    }

    .timeline-step-card::before {
      content: "";
      position: absolute;
      left: -39px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #111;
      border: 2px solid rgba(255, 255, 255, 0.25);
      z-index: 2;
      transform: translateY(-50%);
      transition: all 0.4s ease;
    }
    
    .timeline-step-card.active {
      opacity: 1;
      transform: translateX(-6px);
      background:
        radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.16), transparent 38%),
        rgba(255, 255, 255, 0.055);
      border-color: rgba(249, 115, 22, 0.18);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .timeline-step-card.active::before {
      background: var(--orange);
      border-color: #111;
      box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.24), 0 0 20px rgba(249, 115, 22, 0.7);
      transform: translateY(-50%) scale(1.22);
    }
    
    .timeline-step-card .step-num {
      font-family: 'Outfit', sans-serif;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 18px;
      font-weight: 900;
      color: rgba(255,255,255,0.8);
      line-height: 1;
      flex-shrink: 0;
      border-radius: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
      transition: var(--transition-smooth);
    }

    .timeline-step-card.active .step-num {
      color: #fff;
      background: var(--orange);
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 14px 34px rgba(249,115,22,0.28);
    }
    
    .timeline-step-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(19px, 2vw, 25px);
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    
    .timeline-step-card p {
      font-size: clamp(13px, 1.25vw, 15px);
      color: rgba(255,255,255,0.62);
      line-height: 1.65;
    }

    @media (max-width: 920px) {
      .split-section-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0;
      }

      .split-section-inner::before {
        display: none;
      }

      .split-section-inner::after,
      .workflow-bridge,
      .timeline-step-card::before,
      .timeline-steps-wrap::before {
        display: none;
      }

      .split-pane-left {
        position: relative;
        top: auto;
        min-height: auto;
        height: auto;
        padding: 64px 24px 24px;
      }

      .split-pane-right {
        padding: 24px 24px 70px;
      }

      .timeline-steps-wrap {
        gap: 28px;
        padding: 0;
      }

      .timeline-step-card {
        min-height: auto;
        transform: none;
      }

      .timeline-step-card.active {
        transform: none;
      }

      .timeline-step-card .step-num {
        width: 48px;
        height: 48px;
        font-size: 16px;
      }
    }
    
    /* Section 3: Styles Tilted stack (Standalone after Feature split) */
    .styles-section {
      background: var(--bg-light);
      position: relative;
      z-index: 2;
    }
    
    .styles-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }
    
    .styles-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 460px;
    }
    
    .tilted-card-stack {
      position: relative;
      width: 100%;
      max-width: 380px;
      height: 100%;
    }
    
    .stacked-card {
      position: absolute;
      top: 30px;
      left: 0;
      width: 100%;
      height: 85%;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: var(--surface);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.6s;
    }
    
    .stacked-card img {
      width: 100%;
      height: 70%;
      object-fit: cover;
    }
    
    .stacked-card .info {
      padding: 16px 20px;
      background: var(--surface);
      color: var(--text);
    }
    
    .stacked-card .info h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    
    .stacked-card .info p {
      font-size: 12px;
      color: var(--text-muted);
    }
    
    /* Offsets & rotations */
    .stacked-card.card-1 {
      transform: rotate(-6deg) translate(-10px, 10px);
      z-index: 3;
    }
    
    .stacked-card.card-2 {
      transform: rotate(3deg) translate(5px, -5px);
      z-index: 2;
    }
    
    .stacked-card.card-3 {
      transform: rotate(-2deg) translate(15px, -20px);
      z-index: 1;
    }
    
    /* Fan out on hover */
    .styles-visual:hover .stacked-card.card-1 {
      transform: rotate(-14deg) translate(-80px, 10px);
    }
    
    .styles-visual:hover .stacked-card.card-2 {
      transform: rotate(0deg) translate(0px, -40px);
      z-index: 4;
    }
    
    .styles-visual:hover .stacked-card.card-3 {
      transform: rotate(14deg) translate(80px, 10px);
    }
    
    .styles-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .styles-text .feat-tag {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 12px;
    }
    
    .styles-text h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -2px;
      margin-bottom: 24px;
    }
    
    .styles-text p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 30px;
    }
    
    /* ==========================================================================
       CONTROLLED AI ART PIPELINE HEADLINE
       ========================================================================== */
    .big-headline {
      text-align: center;
      background: var(--bg);
      position: relative;
      z-index: 2;
    }
    
    .big-headline h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(48px, 9vw, 96px);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -4px;
      text-transform: uppercase;
      color: var(--text);
    }
    
    .big-headline .outline-text {
      color: transparent;
      -webkit-text-stroke: 2px var(--text);
      transition: var(--transition-smooth);
    }
    
    .big-headline h2:hover .outline-text {
      color: var(--orange);
      -webkit-text-stroke: 2px var(--orange);
    }
    
    .big-headline p {
      margin-top: 30px;
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-muted);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* ==========================================================================
       HORIZONTAL SCROLL GALLERY TRACK
       ========================================================================== */
    .hscroll-section {
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    
    .hscroll-header-wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }
    
    .hscroll-header-wrap h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: -1.5px;
    }
    
    .slider-nav {
      display: flex;
      gap: 12px;
    }
    
    .slider-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-fast);
      background: var(--surface);
    }
    
    .slider-btn:hover {
      background: var(--text);
      color: var(--surface);
      border-color: var(--text);
    }
    
    .slider-btn svg {
      width: 20px;
      height: 20px;
    }
    
    .hscroll-track-container {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      padding: 0 clamp(24px, 5vw, 80px);
      overflow: hidden;
    }
    
    .hscroll-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 30px;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    
    .hscroll-track::-webkit-scrollbar {
      display: none;
    }
    
    .hscroll-card {
      flex: 0 0 clamp(320px, 35vw, 460px);
      scroll-snap-align: start;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--surface);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: var(--transition-smooth);
    }
    
    .hscroll-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    
    .hscroll-card img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      transition: var(--transition-smooth);
    }
    
    .hscroll-card:hover img {
      transform: scale(1.02);
    }
    
    .hscroll-card .card-info {
      padding: 20px 24px;
    }
    
    .hscroll-card .card-info h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    
    .hscroll-card .card-info p {
      font-size: 13px;
      color: var(--text-muted);
    }
    
    .scroll-progress-container {
      max-width: 400px;
      height: 3px;
      background: rgba(0, 0, 0, 0.06);
      border-radius: var(--radius-pill);
      margin: 20px auto 0;
      position: relative;
      overflow: hidden;
    }
    
    .scroll-progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: var(--orange);
      transition: width 0.1s ease-out;
    }
    
    /* ==========================================================================
       SECONDARY GRID GALLERY
       ========================================================================== */
    .grid-gallery-section {
      background: var(--bg-light);
      position: relative;
      z-index: 2;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    
    .gallery-grid-item {
      aspect-ratio: 16/10;
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-sm);
      background: var(--surface);
      transition: var(--transition-smooth);
    }
    
    .gallery-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-smooth);
    }
    
    .gallery-grid-item:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    
    .gallery-grid-item:hover img {
      transform: scale(1.05);
    }
    
    .gallery-grid-item .overlay-info {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
      padding: 16px 20px;
      display: flex;
      align-items: flex-end;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .gallery-grid-item:hover .overlay-info {
      opacity: 1;
    }
    
    .gallery-grid-item .overlay-info span {
      color: #fff;
      font-size: 13px;
      font-weight: 600;
    }
    
    /* ==========================================================================
       BOTTOM CTA SECTION
       ========================================================================== */
    .bottom-cta {
      background: var(--surface);
      text-align: center;
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(0, 0, 0, 0.02);
    }
    
    .bottom-cta-inner {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .bottom-cta h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -2px;
      margin-bottom: 24px;
      color: var(--text);
    }
    
    .bottom-cta p {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--text-muted);
      margin-bottom: 40px;
    }
    
    /* ==========================================================================
       FOOTER
       ========================================================================== */
    .footer {
      background: var(--bg);
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding: 80px 0 40px;
      position: relative;
      z-index: 2;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    
    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    
    .footer-brand h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .footer-brand-title {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0;
    }

    .footer-brand-title img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      padding: 5px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }
    
    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 380px;
      line-height: 1.8;
    }

    .footer-socials {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }
    
    .social-link {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-light) !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color var(--transition-fast) !important;
      text-decoration: none;
    }
    
    .social-link:hover {
      color: var(--orange) !important;
    }
    
    .footer-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-light);
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .footer-col a {
      display: block;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 12px;
      transition: var(--transition-fast);
    }
    
    .footer-col a:hover {
      color: var(--orange);
      transform: translateX(2px);
    }

    .footer-info-item {
      display: block;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
      line-height: 1.6;
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 30px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .footer-bottom span {
      font-size: 13px;
      color: var(--text-light);
    }
    
    /* ==========================================================================
       PERSISTENT FLOATING BOTTOM PROMPT BAR
       ========================================================================== */
    .floating-prompt-wrap {
      position: fixed;
      bottom: max(18px, env(safe-area-inset-bottom));
      left: 50%;
      transform: translate(-50%, 120%);
      width: calc(100% - 32px);
      max-width: 760px;
      z-index: 90;
      transition: var(--transition-smooth);
      opacity: 0;
      pointer-events: none;
    }
    
    .floating-prompt-wrap#floatingPrompt {
      background: transparent;
    }
    
    /* ==========================================================================
       AI SIMULATION LOADER OVERLAY
       ========================================================================== */
    .ai-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, 0.98);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      color: #fff;
      padding: 24px;
    }
    
    .ai-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    /* ==========================================================================
       PSD LAYERED DELIVERY VISUALIZER (3D Explosion Showcase)
       ========================================================================== */
    .psd-visualizer {
      background: linear-gradient(180deg, var(--bg) 0%, #ffffff 45%, #f7f8fa 100%);
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      position: relative;
    }
    .psd-visualizer-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
      gap: clamp(36px, 5vw, 70px);
      align-items: center;
    }
    @media (max-width: 991px) {
      .psd-visualizer-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
      }
    }
    .psd-text-content {
      min-width: 0;
      position: relative;
      z-index: 2;
      background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 86%, rgba(255,255,255,0) 100%);
    }
    .psd-text-content::before {
      content: "";
      position: absolute;
      inset: -22px -14px -22px -22px;
      z-index: -1;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 82%, rgba(255,255,255,0) 100%);
    }
    .blueprint-metadata {
      font-size: 11px;
      color: var(--orange);
      letter-spacing: 2px;
      margin-bottom: 12px;
      font-weight: 600;
      overflow-wrap: anywhere;
    }
    .psd-feature-list {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .psd-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.025);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .psd-feature-item:hover {
      background: #fff;
      border-color: rgba(249, 115, 22, 0.16);
      transform: translateY(-2px);
    }
    .feature-step {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--orange);
      color: #fff;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 800;
      line-height: 1;
      box-shadow: 0 10px 20px rgba(249, 115, 22, 0.16);
    }
    .psd-feature-item strong {
      display: block;
      margin-bottom: 4px;
      font-weight: 800;
      line-height: 1.35;
    }
    .psd-feature-item p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.65;
    }
    .psd-verif-badge {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      margin-top: 40px;
      font-size: 11px;
      color: var(--text-muted);
      border-top: 1px dashed rgba(0, 0, 0, 0.08);
      padding-top: 20px;
    }
    .psd-visual-content {
      min-width: 0;
      position: relative;
      z-index: 1;
      overflow: visible;
    }

    .psd-3d-wrapper {
      position: relative;
      width: 100%;
      min-height: 610px;
      padding: 22px 0 0;
      display: grid;
      align-content: center;
      gap: 18px;
      perspective: 1300px;
      isolation: isolate;
    }

    .psd-3d-wrapper::before {
      content: "";
      position: absolute;
      inset: 11% -5% 4%;
      z-index: -1;
      border-radius: 999px;
      background:
        radial-gradient(ellipse at 54% 34%, rgba(249, 115, 22, 0.13), transparent 42%),
        radial-gradient(ellipse at 48% 76%, rgba(17, 17, 17, 0.13), transparent 56%);
      filter: blur(22px);
      pointer-events: none;
    }

    .psd-3d-wrapper::after {
      content: "";
      position: absolute;
      left: 9%;
      right: 7%;
      bottom: 58px;
      height: 1px;
      z-index: -1;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.14), transparent);
      box-shadow: 0 22px 44px rgba(0,0,0,0.12);
      transform: rotateX(74deg);
      pointer-events: none;
    }

    .psd-3d-container {
      position: relative;
      width: min(720px, calc(100% - 28px));
      margin: 0 auto;
      display: grid;
      gap: 16px;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .psd-stage-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(156px, 0.34fr);
      gap: 14px;
      align-items: stretch;
      transform-style: preserve-3d;
    }

    .psd-final-frame {
      position: relative;
      margin: 0;
      overflow: hidden;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #10100f;
      box-shadow: 0 34px 84px rgba(0, 0, 0, 0.18);
      transform: rotateX(3deg) rotateY(-5deg) rotateZ(-1deg);
      transform-origin: 50% 78%;
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      animation: psdStageFloat 9s ease-in-out infinite;
    }

    .psd-3d-wrapper:hover .psd-final-frame {
      transform: rotateX(0deg) rotateY(-1.5deg) rotateZ(0deg) translateY(-4px);
      box-shadow: 0 42px 96px rgba(0, 0, 0, 0.2);
    }

    .psd-final-frame img {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      object-fit: cover;
      display: block;
      filter: saturate(1.04) contrast(1.02);
    }

    .psd-final-frame::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 42px;
      z-index: 2;
      background: linear-gradient(180deg, rgba(0,0,0,0.42), transparent);
      pointer-events: none;
    }

    .psd-final-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(255,255,255,0.16), transparent 18%, transparent 72%, rgba(255,255,255,0.08)),
        linear-gradient(180deg, transparent 56%, rgba(0,0,0,0.3));
      pointer-events: none;
    }

    .psd-stage-kicker {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 9px;
      border-radius: 7px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(0,0,0,0.5);
      color: rgba(255,255,255,0.82);
      font-size: 10px;
      line-height: 1;
      letter-spacing: 0.08em;
      backdrop-filter: blur(10px);
    }

    .psd-stage-kicker::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 18px rgba(249,115,22,0.8);
    }

    .case-final-overlay {
      position: relative;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 10px 12px 11px;
      background: rgba(0, 0, 0, 0.72);
      color: #fff;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      backdrop-filter: blur(10px);
      font-size: 10px;
      line-height: 1.2;
      letter-spacing: 1px;
    }

    .case-final-overlay strong {
      color: #fff;
      font-weight: 900;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .case-final-overlay span {
      color: rgba(255,255,255,0.72);
      text-align: right;
    }

    .psd-process-preview {
      position: relative;
      min-width: 0;
      display: grid;
      align-content: stretch;
      gap: 10px;
      padding: 8px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
      box-shadow: 0 28px 62px rgba(0, 0, 0, 0.16);
      overflow: hidden;
      transform: rotateX(2deg) rotateY(-10deg) translateZ(28px);
      transform-origin: 0 60%;
      transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
      animation: psdPreviewFloat 8s ease-in-out infinite;
    }

    .psd-process-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(255,255,255,0.14), transparent 22%, transparent 74%, rgba(255,255,255,0.06)),
        radial-gradient(circle at 20% 12%, rgba(249,115,22,0.18), transparent 32%);
      pointer-events: none;
      z-index: 2;
    }

    .psd-process-preview.is-switching {
      animation: psdProcessSwitch 520ms cubic-bezier(0.16, 1, 0.3, 1), psdPreviewFloat 8s ease-in-out infinite;
    }

    .psd-process-preview img {
      width: 100%;
      aspect-ratio: 4 / 5;
      height: 100%;
      min-height: 0;
      object-fit: cover;
      border-radius: 7px;
      display: block;
      filter: saturate(1.04) contrast(1.02);
    }

    .psd-process-copy {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      z-index: 3;
      padding: 10px;
      border-radius: 8px;
      background: rgba(255,255,255,0.88);
      color: var(--text-main);
      box-shadow: 0 16px 36px rgba(0,0,0,0.16);
      backdrop-filter: blur(14px);
    }

    .psd-process-copy span {
      display: block;
      margin-bottom: 5px;
      color: var(--orange);
      font-size: 9px;
      line-height: 1;
      letter-spacing: 0.12em;
      font-weight: 900;
    }

    .psd-process-copy strong {
      display: block;
      font-size: 15px;
      line-height: 1.25;
      font-weight: 900;
    }

    .psd-process-copy p {
      margin-top: 5px;
      color: var(--text-muted);
      font-size: 10px;
      line-height: 1.45;
    }

    .case-process-strip {
      position: relative;
      z-index: 3;
      grid-column: 1 / -1;
      width: 100%;
      margin: 0 auto;
      padding: 8px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
      backdrop-filter: blur(18px);
      transform: translateZ(46px) rotateX(2deg);
      transform-origin: 50% 0;
    }

    .case-process-strip::before {
      content: "";
      position: absolute;
      top: 8px;
      bottom: 8px;
      left: 8px;
      width: calc((100% - 40px) / 4);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.04));
      border: 1px solid rgba(249,115,22,0.2);
      box-shadow: 0 14px 32px rgba(249,115,22,0.12);
      transform: translateX(calc(var(--active-index, 0) * (100% + 8px)));
      transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .case-step-thumb {
      appearance: none;
      position: relative;
      min-width: 0;
      overflow: hidden;
      padding: 11px 10px;
      border-radius: 8px;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 9px;
      align-items: center;
      transform: translateY(calc(var(--card-lift, 0) * -1px)) rotate(calc(var(--card-rotate, 0) * 1deg));
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s ease, opacity 0.45s ease;
      animation: psdCardSettle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: calc(var(--step-index, 0) * 80ms);
    }

    .case-step-thumb::after {
      display: none;
    }

    .case-step-thumb:nth-child(1) { --card-lift: 0; --card-rotate: -2.2; --step-index: 1; }
    .case-step-thumb:nth-child(2) { --card-lift: 8; --card-rotate: -0.8; --step-index: 2; }
    .case-step-thumb:nth-child(3) { --card-lift: 3; --card-rotate: 1; --step-index: 3; }
    .case-step-thumb:nth-child(4) { --card-lift: 10; --card-rotate: 1.8; --step-index: 4; }

    .case-step-thumb:hover,
    .case-step-thumb.is-active {
      transform: translateY(-5px) rotate(0deg);
      color: var(--text-main);
      z-index: 2;
    }

    .case-step-index {
      position: relative;
      z-index: 2;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: #111;
      color: #fff;
      font-size: 10px;
      font-weight: 900;
      transition: background 0.45s ease, transform 0.45s ease;
    }

    .case-step-thumb.is-active .case-step-index {
      background: var(--orange);
      transform: scale(1.04);
    }

    .case-step-copy {
      position: relative;
      z-index: 2;
      min-width: 0;
      display: grid;
      gap: 3px;
    }

    .case-step-copy strong {
      color: var(--text-main);
      font-size: 12px;
      line-height: 1.1;
      font-weight: 900;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .case-step-copy em {
      color: var(--text-muted);
      font-size: 9px;
      line-height: 1.25;
      font-style: normal;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @keyframes psdPreviewFloat {
      0%, 100% { transform: rotateX(2deg) rotateY(-10deg) translateZ(28px) translateY(0); }
      50% { transform: rotateX(0deg) rotateY(-6deg) translateZ(36px) translateY(-6px); }
    }

    @keyframes psdProcessSwitch {
      0% { opacity: 0.38; transform: rotateX(7deg) rotateY(12deg) translateZ(12px) translateY(18px) scale(0.94); }
      100% { opacity: 1; transform: rotateX(2deg) rotateY(-10deg) translateZ(28px) translateY(0) scale(1); }
    }

    @keyframes psdStageFloat {
      0%, 100% { transform: rotateX(3deg) rotateY(-5deg) rotateZ(-1deg) translateY(0); }
      50% { transform: rotateX(1.5deg) rotateY(-3deg) rotateZ(-0.4deg) translateY(-8px); }
    }

    @keyframes psdCardSettle {
      0% {
        opacity: 0;
        transform: translateY(34px) rotate(0deg) scale(0.96);
      }
      68% {
        opacity: 1;
        transform: translateY(calc((var(--card-lift, 0) * -1px) - 7px)) rotate(calc(var(--card-rotate, 0) * 1deg)) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(calc(var(--card-lift, 0) * -1px)) rotate(calc(var(--card-rotate, 0) * 1deg)) scale(1);
      }
    }
    
    .psd-hint {
      text-align: center;
      margin-top: 18px;
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .pulse-icon {
      color: var(--orange);
      animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot {
      0% { opacity: 0.3; }
      50% { opacity: 1; }
      100% { opacity: 0.3; }
    }
    @media (max-width: 640px) {
      .psd-feature-list {
        gap: 10px;
        margin-top: 20px;
      }
      .psd-feature-item {
        padding: 12px 14px;
      }
      .psd-feature-item p {
        font-size: 13px;
        line-height: 1.55;
      }
      .psd-verif-badge {
        flex-direction: column;
        gap: 8px;
      }
      .psd-3d-wrapper {
        min-height: auto;
        padding-top: 8px;
        perspective: 800px;
      }
      .psd-visual-content.reveal {
        opacity: 1;
        transform: none;
      }
      .psd-3d-container {
        width: 100%;
        transform: none !important;
      }
      .psd-stage-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
      }
      .psd-final-frame,
      .psd-3d-wrapper:hover .psd-final-frame {
        transform: none !important;
        animation: none;
        border-radius: 9px;
      }
      .psd-stage-kicker {
        top: 9px;
        left: 9px;
        font-size: 8px;
        max-width: calc(100% - 18px);
      }
      .case-final-overlay {
        display: grid;
        gap: 4px;
        padding: 8px 9px;
        font-size: 8px;
      }
      .case-final-overlay span {
        text-align: left;
        line-height: 1.45;
      }
      .psd-process-preview,
      .psd-process-preview.is-switching {
        transform: none;
        animation: none;
        min-height: 148px;
      }
      .psd-process-preview img {
        aspect-ratio: 16 / 9;
        height: auto;
        object-fit: cover;
      }
      .psd-process-copy {
        left: 9px;
        right: 9px;
        bottom: 9px;
        padding: 8px 9px;
      }
      .psd-process-copy strong {
        font-size: 13px;
      }
      .psd-process-copy p {
        font-size: 9px;
      }
      .case-process-strip {
        width: 100%;
        margin-top: 0;
        padding: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        transform: none;
      }
      .case-process-strip::before {
        display: none;
      }
      .case-step-thumb,
      .case-step-thumb:hover,
      .case-step-thumb.is-active {
        transform: none;
        animation: none;
        padding: 10px 9px;
        background: rgba(255,255,255,0.72);
        box-shadow: 0 8px 18px rgba(0,0,0,0.045);
      }
      .case-step-thumb.is-active {
        background: rgba(249,115,22,0.1);
      }
      .case-step-copy strong,
      .case-step-copy em {
        white-space: normal;
      }
      .partners {
        margin-top: -38px;
        padding: 54px 0 52px;
        background:
          radial-gradient(ellipse at 30% 32%, rgba(249, 115, 22, 0.05), transparent 48%),
          linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 22%, #fbfaf8 60%, #f4f0eb 82%, #10100f 100%);
      }
      .partners::before {
        height: 180px;
      }
      .partners::after {
        height: 230px;
        background:
          radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, 0.22), transparent 46%),
          linear-gradient(180deg, rgba(251, 250, 248, 0), rgba(247, 243, 239, 0.82) 30%, rgba(16, 16, 15, 0.08) 60%, rgba(16, 16, 15, 0.72) 84%, #10100f 100%);
      }
      .marquee-container {
        min-height: 80px;
        mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
      }
      .stats-section {
        padding-top: 46px;
      }
      .marquee-track {
        gap: 20px;
        padding: 16px 8vw;
      }
      .partner-logo-chip {
        height: 48px;
        min-width: 110px;
        padding: 0 10px;
      }
      .partner-logo-chip.logo-wide,
      .partner-logo-chip.logo-mid,
      .partner-logo-chip.logo-compact {
        min-width: 120px;
      }
      .client-logo-chip img {
        max-width: 100px;
        max-height: 28px;
      }
      .brand-context-copy {
        width: min(100% - 32px, 520px);
        font-size: 12px;
        margin-top: 16px;
      }
    }
