
    /* ==========================================================================
       1. BASE RESET & DESIGN SYSTEM
       ========================================================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-tap-highlight-color: transparent;
    }

    :root {
      --bg-warm: #110e0c;
      --bg-cool: #06080c;
      --surface-paper: #f8f2e6;
      --ink-primary: #1a1614;
      --ink-muted: #665b4e;
      --accent-digital: #00e5a3;
      --accent-digital-glow: rgba(0, 229, 163, 0.45);
      --font-fa: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-display: 'Playfair Display', serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      width: 100%;
      min-height: 100%;
      background-color: var(--bg-warm);
      color: #f3f4f6;
      font-family: var(--font-fa);
      direction: rtl;
      overflow-x: hidden;
    }

    /* Cinematic Film Overlays */
    .film-grain {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9990;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .vignette {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9989;
      background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
    }

    .letterbox {
      position: fixed;
      left: 0;
      width: 100%;
      height: 0;
      background: #000;
      z-index: 9995;
      pointer-events: none;
      transition: height 0.75s var(--ease-out);
    }
    .letterbox-top { top: 0; }
    .letterbox-bottom { bottom: 0; }
    body.in-cinematic-silence .letterbox { height: 7.5vh; }

    /* Top Navigation */
    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(18px, 4vw, 48px);
      z-index: 9980;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.92) 0%, transparent 100%);
      backdrop-filter: blur(8px);
    }
    .nav-brand {
      color: #fff;
      text-decoration: none;
      font-weight: 900;
      font-size: 21px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-brand-tag {
      font-size: 9.5px;
      background: var(--accent-digital);
      color: #032b1d;
      padding: 2px 7px;
      border-radius: 5px;
      font-weight: 800;
    }
    .nav-cta-btn {
      background: #ffffff;
      color: #000;
      border: none;
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 800;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .nav-cta-btn:hover {
      background: var(--accent-digital);
      box-shadow: 0 0 16px var(--accent-digital-glow);
    }

    /* Preloader */
    #preloader {
      position: fixed;
      inset: 0;
      background: #090706;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .preloader-title { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
    .preloader-bar-bg {
      width: 120px;
      height: 3px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 3px;
      overflow: hidden;
    }
    .preloader-bar-fill {
      width: 0%;
      height: 100%;
      background: var(--accent-digital);
      transition: width 0.4s ease;
    }

    /* Step Dots Indicator (Desktop) */
    .step-indicator-bar {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9970;
    }
    .step-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .step-dot.active {
      background: var(--accent-digital);
      transform: scale(1.5);
      box-shadow: 0 0 10px var(--accent-digital);
    }

    /* ==========================================================================
       2. CINEMATIC STORY STAGE
       ========================================================================== */
    .story-viewport {
      position: relative;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      perspective: 1400px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--bg-warm);
      transition: background-color 1s ease;
    }

    .scene-ambient-bg {
      position: absolute;
      inset: -5%;
      width: 110%;
      height: 110%;
      background: 
        radial-gradient(circle at 65% 35%, rgba(217, 119, 6, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 35% 65%, rgba(180, 83, 9, 0.14) 0%, transparent 60%),
        linear-gradient(180deg, #171310 0%, #0a0908 100%);
      z-index: 1;
      transform: translate3d(0, 0, -80px);
      transition: all 1.2s ease;
    }
    .scene-ambient-bg.digital-mode {
      background: 
        radial-gradient(circle at 50% 50%, rgba(0, 229, 163, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 55%),
        linear-gradient(180deg, #090e14 0%, #040608 100%);
    }

    .table-surface-texture {
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 120%;
      height: 70%;
      background: radial-gradient(ellipse at 50% 80%, #2b1e17 0%, #15100d 65%, transparent 100%);
      opacity: 0.9;
      transform: rotateX(60deg);
      pointer-events: none;
      z-index: 2;
    }

    .stage-container {
      position: relative;
      width: 100%;
      height: 100%;
      max-width: 1260px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 clamp(20px, 4vw, 64px);
      z-index: 10;
    }

    .visual-stage-zone {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform-style: preserve-3d;
    }

    #emberCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 19;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    /* ==========================================================================
       3. HERO 1: PAPER MENU & PRECISE STICKER CENTERING
       ========================================================================== */
    .paper-hero-stage {
      position: absolute;
      width: clamp(280px, 27vw, 380px);
      height: clamp(420px, 62vh, 560px);
      transform-style: preserve-3d;
      filter: drop-shadow(0 20px 30px rgba(0,0,0,0.65)) drop-shadow(0 6px 12px rgba(0,0,0,0.4));
      will-change: transform, opacity;
    }

    .underlying-ghost-sheet {
      position: absolute;
      inset: 0;
      background: #e4d7be;
      border-radius: 4px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      transform: rotate(-5deg) translate(-14px, 8px);
      opacity: 0;
      pointer-events: none;
      z-index: -1;
      transition: all 0.6s var(--ease-out);
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .underlying-ghost-sheet span {
      font-size: 11px;
      font-weight: 800;
      color: #785a3a;
      opacity: 0.7;
    }

    .reprint-minimal-tag {
      position: absolute;
      top: -10px;
      right: 20px;
      background: #ef4444;
      color: #fff;
      font-size: 11.5px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 4px;
      box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
      transform: rotate(4deg) scale(0);
      transform-origin: center center;
      z-index: 15;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .paper-body-main {
      position: absolute;
      inset: 0;
      background-color: var(--surface-paper);
      background-image: 
        radial-gradient(rgba(0,0,0,0.04) 1px, transparent 0),
        linear-gradient(135deg, #fbf7ee 0%, #e8ddc7 100%);
      background-size: 8px 8px, 100% 100%;
      border-radius: 4px;
      padding: clamp(18px, 2.8vh, 30px) clamp(16px, 2vw, 26px);
      color: var(--ink-primary);
      box-shadow: inset 0 0 45px rgba(133, 94, 56, 0.2), inset 0 0 3px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .paper-fiber-border {
      position: absolute;
      inset: 0;
      border: 1px dashed rgba(160, 130, 95, 0.35);
      border-radius: 3px;
      pointer-events: none;
    }
    .paper-fold-crease {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.4) 50%, rgba(0,0,0,0.08) 100%);
      pointer-events: none;
      opacity: 0.5;
    }

    .menu-header {
      text-align: center;
      border-bottom: 2px solid #2d241e;
      padding-bottom: 10px;
      margin-bottom: 14px;
    }
    .menu-crest {
      font-size: 9px;
      letter-spacing: 2px;
      color: #8b5e34;
      font-weight: 700;
    }
    .menu-title {
      font-family: var(--font-display);
      font-size: clamp(19px, 2.4vw, 23px);
      font-weight: 600;
      color: #1a1614;
      margin-top: 2px;
    }
    .menu-subtitle { font-size: 9.5px; color: var(--ink-muted); }

    .menu-section-title {
      font-size: 11px;
      font-weight: 800;
      color: #854d0e;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 10px 0 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .menu-section-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #d4c5b2;
    }

    .menu-item-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 11.5px;
      position: relative;
    }
    .item-name { font-weight: 700; color: #27211d; }
    .item-dots { flex: 1; border-bottom: 1px dotted #a89885; margin: 0 6px; }
    
    /* Target Price Box */
    .item-price {
      font-weight: 800;
      color: #1f1b18;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 54px;
    }
    .item-desc {
      font-size: 9px;
      color: #716454;
      line-height: 1.35;
      margin-top: 1px;
      margin-bottom: 8px;
    }

    /* Red Pen Scribble */
    .price-scribble {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 105%;
      height: 18px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 3;
    }
    .scribble-svg {
      width: 100%;
      height: 100%;
      stroke: #dc2626;
      stroke-width: 2.6;
      stroke-linecap: round;
      fill: none;
    }

    /* PRECISE CENTERING: Sticker sits EXACTLY on top of burger price */
    .correction-sticker {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-4deg) scale(0);
      transform-origin: center center;
      background: #fef08a;
      color: #991b1b;
      font-size: 10.5px;
      font-weight: 900;
      padding: 2px 6px;
      border-radius: 2px;
      box-shadow: 0 2px 7px rgba(0,0,0,0.35);
      border: 1px dashed rgba(180, 83, 9, 0.45);
      z-index: 10;
      white-space: nowrap;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .correction-sticker::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 5px 5px 0;
      border-color: transparent rgba(0,0,0,0.25) transparent transparent;
    }

    /* Chapter 1: Torn Piece */
    .torn-piece {
      position: absolute;
      top: -2px;
      left: -2px;
      width: clamp(80px, 26%, 120px);
      height: clamp(100px, 26%, 140px);
      background-color: var(--surface-paper);
      background-image: linear-gradient(135deg, #faf6ee 0%, #ded0b7 100%);
      box-shadow: -4px 6px 15px rgba(0,0,0,0.35);
      clip-path: polygon(0 0, 100% 0, 75% 35%, 100% 65%, 45% 85%, 60% 100%, 0 100%);
      filter: url(#paperTearDisplace);
      transform-origin: top left;
      z-index: 12;
      opacity: 0;
      pointer-events: none;
    }
    .tear-edge-scar {
      position: absolute;
      top: 0;
      left: 0;
      width: clamp(80px, 26%, 120px);
      height: clamp(100px, 26%, 140px);
      clip-path: polygon(0 0, 100% 0, 75% 35%, 100% 65%, 45% 85%, 60% 100%, 0 100%);
      background: rgba(80, 50, 25, 0.4);
      filter: url(#paperTearDisplace) blur(3px);
      opacity: 0;
      pointer-events: none;
      z-index: 2;
    }

    /* Chapter 2: Stains */
    .stain-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      mix-blend-mode: multiply;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .coffee-ring {
      position: absolute;
      top: 20%;
      right: 8%;
      width: clamp(100px, 32%, 140px);
      height: clamp(100px, 32%, 140px);
      border-radius: 50%;
      border: 6px solid rgba(82, 40, 13, 0.45);
      background: radial-gradient(circle, rgba(100, 50, 15, 0.12) 0%, rgba(90, 42, 12, 0.25) 75%, rgba(65, 30, 8, 0.55) 100%);
      filter: url(#paperTearDisplace) blur(1px);
      transform: rotate(25deg);
    }
    .grease-splatter {
      position: absolute;
      bottom: 12%;
      left: 10%;
      width: clamp(70px, 20%, 95px);
      height: clamp(50px, 16%, 70px);
      background: radial-gradient(ellipse, rgba(160, 100, 20, 0.4) 0%, rgba(130, 80, 15, 0.15) 60%, transparent 100%);
      border-radius: 45% 65% 50% 70%;
      filter: blur(3px);
    }

    /* ==========================================================================
       4. HERO 2: DIGITAL SMARTPHONE & QR WITH INTERACTIVE TABS
       ========================================================================== */
    .digital-hero-stage {
      position: absolute;
      width: clamp(260px, 24vw, 320px);
      height: clamp(450px, 66vh, 590px);
      z-index: 20;
      opacity: 0;
      transform: translateY(50px) scale(0.92);
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 25px 45px rgba(0, 229, 163, 0.28)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
      transition: all 0.8s var(--ease-out);
    }
    .digital-hero-stage.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .metric-floating-pill {
      position: absolute;
      background: rgba(13, 17, 23, 0.88);
      border: 1px solid var(--accent-digital);
      color: #fff;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 10.5px;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.6s ease;
      white-space: nowrap;
      pointer-events: none;
      z-index: 25;
    }
    .digital-hero-stage.active .metric-floating-pill {
      opacity: 1;
      transform: translateY(0);
    }
    .metric-pill-1 { top: 12%; right: -50px; transition-delay: 0.2s; }
    .metric-pill-2 { bottom: 25%; left: -60px; transition-delay: 0.4s; }

    .phone-device {
      width: 100%;
      height: 100%;
      background: #0d1117;
      border-radius: 38px;
      border: 4px solid #30363d;
      box-shadow: inset 0 0 0 2px #161b22;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .phone-speaker-island {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 72px;
      height: 18px;
      background: #000;
      border-radius: 20px;
      z-index: 100;
    }
    .phone-screen-content {
      flex: 1;
      overflow-y: auto;
      background: #090d12;
      color: #fff;
      display: flex;
      flex-direction: column;
      padding: 34px 14px 14px;
      font-size: 11px;
      scrollbar-width: none;
    }
    .phone-screen-content::-webkit-scrollbar { display: none; }

    .digital-top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .rest-avatar {
      width: 26px;
      height: 26px;
      background: linear-gradient(135deg, #059669, #10b981);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 12px;
    }
    .digital-search-pill {
      background: #161b22;
      border: 1px solid #21262d;
      border-radius: 10px;
      padding: 5px 10px;
      font-size: 10px;
      color: #8b949e;
      margin-bottom: 10px;
    }

    .digital-categories {
      display: flex;
      gap: 6px;
      margin-bottom: 10px;
      overflow-x: auto;
    }
    .cat-chip {
      background: #1c2128;
      color: #adbac7;
      padding: 3px 9px;
      border-radius: 16px;
      font-size: 9.5px;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s;
    }
    .cat-chip.active {
      background: var(--accent-digital);
      color: #032b1d;
      font-weight: 800;
    }

    .digital-dish-card {
      background: #161b22;
      border: 1px solid #28303a;
      border-radius: 10px;
      padding: 8px;
      margin-bottom: 7px;
      display: flex;
      gap: 8px;
      transition: transform 0.2s;
    }
    .digital-dish-card:hover { transform: translateY(-1px); border-color: var(--accent-digital); }
    .dish-thumb {
      width: 50px;
      height: 50px;
      border-radius: 7px;
      background: #21262d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }
    .dish-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .dish-info h5 { font-size: 11px; font-weight: 800; color: #f0f6fc; }
    .dish-info p { font-size: 8.5px; color: #8b949e; line-height: 1.35; }
    .dish-live-price {
      font-size: 11px;
      font-weight: 900;
      color: var(--accent-digital);
    }
    .dish-add-btn {
      background: #238636;
      color: #fff;
      border: none;
      width: 20px;
      height: 20px;
      border-radius: 5px;
      font-size: 12px;
      cursor: pointer;
    }

    /* Wooden QR Stand with Laser Scan */
    .qr-stand-card {
      position: absolute;
      bottom: 20px;
      left: -85px;
      width: 90px;
      height: 120px;
      background: #191512;
      border: 1px solid #3d3128;
      border-radius: 8px;
      padding: 7px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 12px 25px rgba(0,0,0,0.6);
      transform: rotate(5deg) translateY(25px);
      opacity: 0;
      z-index: 18;
      transition: all 0.7s var(--ease-out);
      cursor: pointer;
      overflow: hidden;
    }
    .qr-stand-card:hover .qr-scan-laser {
      animation: scanLaserAnim 1.2s infinite ease-in-out;
    }
    .qr-matrix {
      width: 50px;
      height: 50px;
      background: #fff;
      padding: 3px;
      border-radius: 4px;
      position: relative;
    }
    .qr-matrix svg { width: 100%; height: 100%; }
    .qr-scan-laser {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 2px;
      background: var(--accent-digital);
      box-shadow: 0 0 8px var(--accent-digital);
      opacity: 0;
    }
    @keyframes scanLaserAnim {
      0% { top: 0; opacity: 1; }
      50% { top: 100%; opacity: 1; }
      100% { top: 0; opacity: 1; }
    }
    .qr-tagline { font-size: 7px; font-weight: 700; color: #d7c5b0; text-align: center; }

    /* ==========================================================================
       5. STORY CAPTION CARDS
       ========================================================================== */
    .story-text-zone {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .story-caption-card {
      position: absolute;
      right: 0;
      max-width: 500px;
      opacity: 0;
      transform: translateY(18px);
      pointer-events: none;
      transition: all 0.6s var(--ease-out);
    }
    .story-caption-card.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .caption-chapter-tag {
      font-size: 11px;
      font-weight: 800;
      color: #d97706;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: inline-block;
    }
    .caption-heading {
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 900;
      line-height: 1.35;
      color: #ffffff;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
      text-shadow: 0 3px 15px rgba(0,0,0,0.8);
    }
    .caption-desc {
      font-size: clamp(13.5px, 1.25vw, 16px);
      font-weight: 400;
      line-height: 1.75;
      color: #d1d5db;
      text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    }

    .step-nav-hints {
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .step-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11.5px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.25s;
    }
    .step-btn:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: var(--accent-digital);
    }

    /* ==========================================================================
       6. SECTIONS BELOW STORY (UNRESTRICTED NATURAL SCROLLING)
       ========================================================================== */
    .interactive-demo-section {
      background: #080a0e;
      padding: clamp(60px, 8vh, 100px) 20px;
      border-top: 1px solid #1f242c;
      position: relative;
      z-index: 50;
    }
    .demo-container { max-width: 1100px; margin: 0 auto; }
    .section-headline-box { text-align: center; margin-bottom: 40px; }
    .section-badge {
      display: inline-block;
      background: rgba(0, 229, 163, 0.12);
      border: 1px solid rgba(0, 229, 163, 0.3);
      color: var(--accent-digital);
      font-size: 11.5px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .section-headline-box h2 { font-size: clamp(22px, 3.2vw, 34px); font-weight: 900; color: #fff; margin-bottom: 10px; }
    .section-headline-box p { font-size: 14px; color: #9ca3af; max-width: 580px; margin: 0 auto; line-height: 1.6; }

    .workspace-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      align-items: center;
      background: #0d1117;
      border: 1px solid #21262d;
      border-radius: 20px;
      padding: clamp(18px, 3.5vw, 34px);
    }
    .dashboard-panel {
      background: #161b22;
      border: 1px solid #30363d;
      border-radius: 14px;
      padding: 18px;
    }
    .dash-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #21262d;
      padding-bottom: 10px;
      margin-bottom: 16px;
      font-size: 13px;
      font-weight: 800;
    }
    .edit-item-row {
      background: #0d1117;
      border: 1px solid #21262d;
      border-radius: 10px;
      padding: 12px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .price-stepper {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #161b22;
      border: 1px solid #30363d;
      border-radius: 6px;
      padding: 3px 6px;
    }
    .price-stepper button {
      background: #21262d;
      border: none;
      color: #fff;
      width: 24px;
      height: 24px;
      border-radius: 5px;
      cursor: pointer;
    }
    .price-value-live {
      font-weight: 800;
      font-size: 12.5px;
      color: var(--accent-digital);
      min-width: 65px;
      text-align: center;
    }
    .sync-trigger-btn {
      width: 100%;
      background: linear-gradient(135deg, #00e5a3 0%, #0ea5e9 100%);
      color: #04251a;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.2s;
    }
    .sync-trigger-btn:hover {
      box-shadow: 0 4px 18px var(--accent-digital-glow);
    }

    .customer-mockup-wrapper { display: flex; flex-direction: column; align-items: center; }
    .customer-preview-box {
      width: 100%;
      max-width: 270px;
      background: #090d12;
      border: 2px solid #30363d;
      border-radius: 22px;
      padding: 18px 14px;
      position: relative;
    }
    .customer-live-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: #059669;
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 10px;
    }

    .value-pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .pillar-card {
      background: #0d1117;
      border: 1px solid #1e242c;
      border-radius: 14px;
      padding: 20px;
    }
    .pillar-icon { font-size: 22px; margin-bottom: 10px; }
    .pillar-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
    .pillar-card p { font-size: 13px; color: #8b949e; line-height: 1.6; }

    /* Blog Section */
    .blog-section {
      background: #07090c;
      padding: clamp(60px, 8vh, 100px) 20px;
      border-top: 1px solid #161a20;
    }
    .blog-container { max-width: 1100px; margin: 0 auto; }
    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .blog-header h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff; }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .article-card {
      background: #0d1117;
      border: 1px solid #21262d;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    .article-card:hover { transform: translateY(-4px); border-color: #38414d; }
    .article-thumb-placeholder {
      width: 100%;
      height: 150px;
      background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }
    .article-content { padding: 16px; flex: 1; display: flex; flex-direction: column; }
    .article-meta { font-size: 11px; color: #8b949e; margin-bottom: 8px; display: flex; gap: 8px; }
    .article-title { font-size: 14px; font-weight: 800; color: #f0f6fc; line-height: 1.5; margin-bottom: 6px; }
    .article-excerpt { font-size: 12px; color: #8b949e; line-height: 1.6; flex: 1; margin-bottom: 12px; }
    .article-footer { font-size: 11.5px; font-weight: 700; color: var(--accent-digital); }

    /* Final CTA */
    .final-cta-section {
      background: radial-gradient(circle at center, #10161f 0%, #06080a 80%);
      padding: 80px 20px;
      text-align: center;
      border-top: 1px solid #1b2129;
    }
    .final-cta-container { max-width: 620px; margin: 0 auto; }
    .final-cta-section h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: #fff; margin-bottom: 12px; }
    .final-cta-section p { font-size: 14.5px; color: #9ca3af; line-height: 1.6; margin-bottom: 26px; }
    .btn-cta-primary {
      background: var(--accent-digital);
      color: #032014;
      padding: 13px 30px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 25px var(--accent-digital-glow);
    }

    /* Semantic Footer */
    .site-footer {
      background: #040507;
      border-top: 1px solid #12151b;
      padding: 35px 20px;
      font-size: 12px;
      color: #6b7280;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-nav { display: flex; gap: 16px; list-style: none; }
    .footer-nav a { color: #9ca3af; text-decoration: none; }

    /* ==========================================================================
       7. MOBILE REVOLUTION: CLEAN DUAL-ZONE COMPOSITION
       ========================================================================== */
    @media (max-width: 992px) {
      .stage-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        padding: 0 16px;
        gap: 0;
      }

      .story-text-zone {
        grid-row: 1;
        align-items: flex-start;
        padding-top: 70px;
        height: 155px;
        justify-content: center;
      }

      .story-caption-card {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        width: 100%;
        max-width: 440px;
        text-align: center;
      }
      .story-caption-card.active {
        transform: translateX(-50%) translateY(0);
      }

      .caption-heading { font-size: 20px; margin-bottom: 4px; }
      .caption-desc { font-size: 12px; line-height: 1.55; }
      .step-nav-hints { justify-content: center; margin-top: 8px; gap: 8px; }
      .step-btn { padding: 5px 12px; font-size: 11px; }

      .visual-stage-zone {
        grid-row: 2;
        align-items: center;
        height: calc(100vh - 235px);
        height: calc(100dvh - 235px);
      }

      .paper-hero-stage {
        width: clamp(240px, 72vw, 290px);
        height: clamp(350px, 48vh, 420px);
      }
      .digital-hero-stage {
        width: clamp(230px, 68vw, 275px);
        height: clamp(390px, 50vh, 460px);
      }

      .qr-stand-card { display: none; }
      .step-indicator-bar { display: none; }
      .metric-floating-pill { display: none; }

      .workspace-grid { grid-template-columns: 1fr; }
      .value-pillars-grid { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 420px) {
      .story-text-zone { padding-top: 64px; height: 145px; }
      .caption-heading { font-size: 18.5px; }
      .caption-desc { font-size: 11.5px; }
      .paper-hero-stage { width: 235px; height: 340px; }
      .digital-hero-stage { width: 220px; height: 380px; }
    }
  
.wtb-story-audio{position:fixed;left:18px;bottom:18px;z-index:9997}.wtb-story-audio button{width:40px;height:40px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(10,12,15,.72);color:#fff;cursor:pointer;backdrop-filter:blur(10px)}.wtb-story-cursor .paper-hero-stage{transition:transform .18s ease-out}.article-thumb-placeholder img{width:100%;height:100%;object-fit:cover;display:block}.wtb-story-home .site-footer{position:relative;z-index:10}


/* Webtick v1.8.1 — homepage article card final polish */
.wtb-story-home .blog-section{background:linear-gradient(180deg,#07090c 0%,#05070b 100%)}
.wtb-story-home .articles-grid{align-items:stretch}
.wtb-story-home .article-card{background:linear-gradient(145deg,#0b1018,#090c12);border-color:rgba(0,229,255,.13);box-shadow:0 16px 45px rgba(0,0,0,.20)}
.wtb-story-home .article-card:hover{border-color:rgba(0,229,255,.35);box-shadow:0 20px 55px rgba(0,0,0,.28),0 0 28px rgba(0,229,255,.06)}
.wtb-story-home .article-card .article-content{background:transparent;color:#dfe8f5}
.wtb-story-home .article-card .article-title,.wtb-story-home .article-card h3.article-title,.wtb-story-home .article-card .article-title a{color:#f4f7ff!important;text-shadow:0 0 12px rgba(53,107,255,.08)}
.wtb-story-home .article-card .article-excerpt{color:#8f9ab0}
.wtb-story-home .article-card .article-meta{color:#72809a}
.wtb-story-home .article-card .article-footer{color:#00e5ff}
.wtb-story-home .blog-header h2{color:#fff}
.wtb-story-home .blog-header p{color:#8f9ab0}
