    /* ─── Reset ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: #080808;
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }
    a { color: inherit; text-decoration: none; }
    button { cursor: none; border: none; background: none; font-family: inherit; }
    input, select, textarea { font-family: inherit; }

    /* ─── Custom cursor ───────────────────────────────── */
    #cursor-dot {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg,#FF8C3A,#FFD23F,#A8E063,#56CFE1,#9B5FD4);
      pointer-events: none; transform: translate(-50%,-50%);
      transition: transform 0.1s ease;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 9998;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.3);
      pointer-events: none; transform: translate(-50%,-50%);
      transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    }
    body.cursor-hover #cursor-ring {
      width: 60px; height: 60px;
      border-color: rgba(255,200,100,0.6);
    }

    /* ─── Gradient utility ──────────────────────────── */
    .grad-text {
      background: linear-gradient(90deg, #FF8C3A 0%, #FFD23F 28%, #A8E063 50%, #56CFE1 72%, #9B5FD4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-bg {
      background: linear-gradient(135deg, #FF8C3A 0%, #FFD23F 28%, #A8E063 50%, #56CFE1 72%, #9B5FD4 100%);
    }
    .grad-border {
      border: 1.5px solid transparent;
      background-clip: padding-box;
      position: relative;
    }
    .grad-border::before {
      content: '';
      position: absolute; inset: -1.5px;
      border-radius: inherit;
      background: linear-gradient(135deg, #FF8C3A, #FFD23F, #A8E063, #56CFE1, #9B5FD4);
      z-index: -1;
    }

    /* ─── Film grain overlay ─────────────────────────── */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 9990;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      opacity: 0.35;
      mix-blend-mode: overlay;
    }

    /* ─── Nav ───────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      transition: background 0.4s ease, backdrop-filter 0.4s ease;
    }
    nav.scrolled {
      background: rgba(8,8,8,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo img { height: 32px; filter: brightness(0) invert(1); }
    .nav-links { display: flex; gap: 36px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
    .nav-links a:hover { color: #fff; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .nav-social {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      cursor: none;
    }
    .nav-social:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }
    .nav-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.7); }
    .nav-social:hover svg { fill: #fff; }
    .nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
    .cart-btn {
      position: relative;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      cursor: none;
    }
    .cart-btn:hover { background: rgba(255,255,255,0.13); }
    .cart-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
    .cart-count {
      position: absolute; top: -4px; right: -4px;
      width: 18px; height: 18px; border-radius: 50%;
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
      font-size: 10px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      display: none;
    }
    .cart-count.show { display: flex; }

    /* ─── Ticker ─────────────────────────────────────── */
    .ticker-wrap {
      overflow: hidden; white-space: nowrap;
      background: linear-gradient(135deg, #FF8C3A 0%, #FFD23F 28%, #A8E063 50%, #56CFE1 72%, #9B5FD4 100%);
      padding: 12px 0;
    }
    .ticker-inner {
      display: inline-flex; gap: 0;
      animation: ticker 28s linear infinite;
    }
    .ticker-inner span {
      font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: #080808;
      padding: 0 32px;
    }
    .ticker-inner .dot { color: rgba(0,0,0,0.4); }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── Hero ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      padding: 120px 48px 80px;
      overflow: hidden;
    }

    /* ambient glow orbs */
    .orb {
      position: absolute; border-radius: 50%; filter: blur(120px);
      pointer-events: none; opacity: 0.35;
    }
    .orb-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: radial-gradient(circle, #9B5FD4, transparent 70%); animation: float1 12s ease-in-out infinite; }
    .orb-2 { width: 500px; height: 500px; bottom: -150px; left: -80px; background: radial-gradient(circle, #FF8C3A, transparent 70%); animation: float2 15s ease-in-out infinite; }
    .orb-3 { width: 400px; height: 400px; top: 40%; left: 40%; background: radial-gradient(circle, #56CFE1, transparent 70%); animation: float3 10s ease-in-out infinite; opacity: 0.18; }
    @keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
    @keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-50px)} }
    @keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,40px)} }

    .hero-content {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 80px;
      max-width: 1280px; width: 100%;
    }
    .hero-text { }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: ''; width: 24px; height: 1.5px;
      background: linear-gradient(90deg,#FF8C3A,#9B5FD4);
    }
    .hero-headline {
      font-size: clamp(56px, 7vw, 96px);
      font-weight: 700; line-height: 0.95; letter-spacing: -0.03em;
      margin-bottom: 28px;
    }
    .hero-sub {
      font-size: 16px; line-height: 1.65;
      color: rgba(255,255,255,0.55);
      max-width: 420px;
      margin-bottom: 48px;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
    }
    .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 36px;
      border-radius: 100px;
      background: linear-gradient(135deg, #FF8C3A 0%, #FFD23F 30%, #A8E063 55%, #56CFE1 78%, #9B5FD4 100%);
      color: #080808; font-weight: 700; font-size: 14px;
      letter-spacing: 0.04em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(155,95,212,0.4);
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 32px; border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
      transition: border-color 0.2s, color 0.2s;
      cursor: none;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

    /* film counter badge */
    .film-counter {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 8px 14px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
      font-family: 'Courier New', monospace;
      color: rgba(255,255,255,0.5);
      margin-top: 40px;
    }
    .film-counter .frame-no {
      background: linear-gradient(90deg,#FF8C3A,#FFD23F);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      font-size: 16px; font-weight: 700;
    }

    /* hero camera */
    .hero-camera {
      position: relative; display: flex;
      align-items: center; justify-content: center;
    }
    .camera-glow {
      position: absolute; width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,200,60,0.2) 0%, transparent 70%);
      animation: pulse-glow 4s ease-in-out infinite;
    }
    @keyframes pulse-glow { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:0.8;transform:scale(1.06)} }
    .camera-float {
      position: relative; z-index: 2;
      animation: float-cam 6s ease-in-out infinite;
      filter: drop-shadow(0 32px 64px rgba(155,95,212,0.35)) drop-shadow(0 0 48px rgba(255,140,58,0.2));
    }
    @keyframes float-cam {
      0%,100%{transform:translateY(0) rotate(-1deg)}
      50%{transform:translateY(-14px) rotate(1deg)}
    }
    .camera-float img { width: 480px; max-width: 90%; height: auto; border-radius: 20px; }

    /* exposure strip */
    .exposure-strip {
      position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 4px; align-items: center;
    }
    .exp-frame {
      width: 28px; height: 36px; border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.04);
    }
    .exp-frame.active {
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
      border-color: transparent;
    }

    /* scroll cue */
    .scroll-cue {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      z-index: 2;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
      animation: scroll-fade 2s ease-in-out infinite;
    }
    @keyframes scroll-fade { 0%,100%{opacity:0.3} 50%{opacity:1} }

    /* ─── Section base ──────────────────────────────── */
    section { position: relative; z-index: 2; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
    .section-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; width: 20px; height: 1px;
      background: linear-gradient(90deg,#FF8C3A,#9B5FD4);
    }

    /* ─── Product section ────────────────────────────── */
    .product-section { padding: 100px 0 120px; }
    .product-section .section-header { margin-bottom: 64px; }
    .section-title {
      font-size: clamp(36px,4.5vw,64px);
      font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 16px; color: rgba(255,255,255,0.45);
      font-family: 'Inter', sans-serif; font-weight: 400;
      max-width: 520px; line-height: 1.65;
    }

    .product-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 20px;
    }

    .product-card {
      position: relative;
      background: #111;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.07);
      overflow: hidden;
      transition: transform 0.3s ease, border-color 0.3s;
      cursor: none;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.14);
    }
    .product-card.featured {
      border-color: transparent;
      background: linear-gradient(#111,#111) padding-box,
                  linear-gradient(135deg,#FF8C3A,#FFD23F,#A8E063,#56CFE1,#9B5FD4) border-box;
    }

    .card-badge {
      position: absolute; top: 20px; right: 20px; z-index: 2;
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
      color: #fff; font-size: 10px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 100px;
    }

    .card-image {
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      padding: 24px 16px; min-height: 300px;
      position: relative; overflow: hidden;
    }
    .card-image > img {
      max-height: 260px; max-width: 100%; object-fit: contain;
      position: relative; z-index: 1;
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .product-card:hover .card-image > img { transform: scale(1.06) rotate(1.5deg); }
    .card-qty-display {
      position: absolute; top: 16px; left: 16px; z-index: 2;
      background: rgba(8,8,8,0.7); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 4px 10px;
      font-size: 11px; font-family: 'Courier New', monospace;
      color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
    }

    .card-body { padding: 28px 28px 32px; }
    .card-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
    .card-tagline { font-size: 13px; color: rgba(255,255,255,0.4); font-family: 'Inter',sans-serif; margin-bottom: 20px; }
    .card-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .card-feature {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: rgba(255,255,255,0.6); font-family:'Inter',sans-serif;
    }
    .card-feature::before {
      content: '';
      width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
      display: flex; align-items: center; justify-content: center;
    }
    .card-feature svg { width: 8px; height: 8px; fill: #fff; }

    .card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
    .card-price { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
    .card-price .currency { font-size: 18px; vertical-align: super; font-weight: 500; }
    .card-price .per { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 400; margin-left: 4px; }

    .qty-control { display: flex; align-items: center; gap: 0; }
    .qty-btn {
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,0.08); color: #fff;
      font-size: 18px; font-weight: 300;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; cursor: none; border: none;
    }
    .qty-btn:hover { background: rgba(255,255,255,0.16); }
    .qty-val { width: 36px; text-align: center; font-size: 16px; font-weight: 600; }

    .add-to-cart {
      width: 100%; margin-top: 20px;
      padding: 14px; border-radius: 14px;
      background: linear-gradient(135deg,#FF8C3A 0%,#FFD23F 30%,#A8E063 55%,#56CFE1 78%,#9B5FD4 100%);
      color: #080808; font-size: 14px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s; cursor: none;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .add-to-cart:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(155,95,212,0.35);
    }
    .add-to-cart svg { width: 16px; height: 16px; }

    /* ─── Features section ───────────────────────────── */
    .features-section { padding: 80px 0 100px; border-top: 1px solid rgba(255,255,255,0.05); }
    .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
    .feature-card {
      padding: 32px 28px;
      background: #0f0f0f;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.06);
      transition: border-color 0.3s, transform 0.3s;
    }
    .feature-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: linear-gradient(135deg,rgba(255,140,58,0.15),rgba(155,95,212,0.15));
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; font-size: 22px;
    }
    .feature-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .feature-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; font-family:'Inter',sans-serif; }

    /* ─── How it works ──────────────────────────────── */
    .hiw-section { padding: 100px 0; background: #0c0c0c; }
    .hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: 64px; border-radius: 24px; overflow: hidden; }
    .hiw-step {
      padding: 48px 40px; background: #0c0c0c;
      position: relative;
    }
    .step-number {
      font-size: 72px; font-weight: 700; line-height: 1;
      background: linear-gradient(135deg,rgba(255,140,58,0.15),rgba(155,95,212,0.15));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 24px; font-family:'Courier New',monospace;
    }
    .step-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
    .step-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; font-family:'Inter',sans-serif; }
    .step-icon { font-size: 32px; margin-bottom: 20px; }

    /* ─── Gallery ────────────────────────────────────── */
    .gallery-section { padding: 0 0 100px; overflow: hidden; }

    /* Hero editorial banner */
    .gallery-hero {
      position: relative; height: 70vh; min-height: 480px;
      overflow: hidden; margin-bottom: 72px;
    }
    .gallery-hero-img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center top;
      filter: brightness(0.55);
      transform: scale(1.04);
      transition: transform 8s ease;
    }
    .gallery-hero:hover .gallery-hero-img { transform: scale(1); }
    .gallery-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(8,8,8,0.9) 100%);
    }
    .gallery-hero-text {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 0 48px 52px;
      display: flex; align-items: flex-end; justify-content: space-between;
    }
    .gallery-hero-text h2 {
      font-size: clamp(40px,6vw,80px);
      font-weight: 700; letter-spacing: -0.03em; line-height: 1;
    }
    .gallery-hero-badge {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px; padding: 12px 20px;
      text-align: right;
    }
    .gallery-hero-badge .date { font-size: 11px; font-family:'Courier New',monospace; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
    .gallery-hero-badge .venue { font-size: 14px; font-weight: 600; }

    /* ── Clean 4×3 gallery grid ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 260px);
      gap: 10px;
      padding: 0 48px;
    }
    @media(max-width:1100px){
      .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 240px); padding: 0 32px; }
    }
    @media(max-width:768px){
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(6, 200px); padding: 0 20px; }
    }

    .photo-wrap {
      position: relative; overflow: hidden;
      border-radius: 10px; cursor: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .photo-wrap:hover { transform: scale(1.025); z-index: 10; box-shadow: 0 16px 48px rgba(0,0,0,0.55); }

    .photo-wrap img {
      width: 100%; height: 100%; display: block;
      object-fit: cover;
      transition: transform 0.4s ease;
      filter: saturate(1.06) contrast(1.04);
    }
    .photo-wrap:hover img { transform: scale(1.06); }

    .photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 28px 12px 10px;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
      font-size: 10px; font-family: 'Courier New', monospace;
      color: rgba(255,255,255,0.85); letter-spacing: 0.1em; text-transform: uppercase;
      opacity: 0; transition: opacity 0.25s;
    }
    .photo-wrap:hover .photo-caption { opacity: 1; }

    /* Film strip accent */
    .film-strip-bar {
      display: flex; align-items: center; overflow: hidden;
      padding: 14px 0; margin-bottom: 48px;
      gap: 6px;
    }
    .fh { width: 20px; height: 30px; border-radius: 4px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
    .ff {
      flex: 1; height: 42px; border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.02);
      min-width: 60px; max-width: 100px;
    }

    /* Lightbox */
    #lightbox {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.95); backdrop-filter: blur(12px);
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    #lightbox.open { opacity: 1; pointer-events: all; }
    #lightbox img {
      max-width: 90vw; max-height: 88vh;
      object-fit: contain; border-radius: 8px;
      box-shadow: 0 40px 120px rgba(0,0,0,0.8);
      transform: scale(0.95); transition: transform 0.3s;
    }
    #lightbox.open img { transform: scale(1); }
    #lightbox-close {
      position: absolute; top: 24px; right: 24px;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.1); color: #fff;
      font-size: 20px; display: flex; align-items: center; justify-content: center;
      cursor: none; border: none; transition: background 0.2s;
    }
    #lightbox-close:hover { background: rgba(255,255,255,0.2); }
    #lightbox-caption {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      font-size: 12px; font-family: 'Courier New', monospace;
      color: rgba(255,255,255,0.4); letter-spacing: 0.1em; white-space: nowrap;
    }

    /* ─── Community section ──────────────────────────── */
    .community-section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.05); }
    .community-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .community-text h2 { font-size: clamp(36px,4vw,56px); font-weight: 700; letter-spacing:-0.02em; line-height:1.1; margin-bottom:20px; }
    .community-text p { font-size:15px; color:rgba(255,255,255,0.45); font-family:'Inter',sans-serif; line-height:1.7; margin-bottom:32px; }
    .community-cards { display:flex; flex-direction:column; gap:16px; }
    .comm-card {
      padding: 20px 24px;
      background: #111;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.07);
      display: flex; align-items: center; gap: 16px;
    }
    .comm-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink:0;
      background: linear-gradient(135deg,rgba(255,140,58,0.15),rgba(155,95,212,0.15));
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .comm-card-text h4 { font-size:15px; font-weight:600; margin-bottom:4px; }
    .comm-card-text p { font-size:13px; color:rgba(255,255,255,0.4); font-family:'Inter',sans-serif; }

    /* ─── CTA banner ─────────────────────────────────── */
    .cta-section { padding: 80px 0 100px; }
    .cta-inner {
      background: linear-gradient(135deg,#FF8C3A 0%,#FFD23F 28%,#A8E063 50%,#56CFE1 72%,#9B5FD4 100%);
      border-radius: 32px; padding: 80px;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
      mix-blend-mode: overlay; opacity:0.5;
    }
    .cta-inner h2 { font-size: clamp(36px,5vw,72px); font-weight:700; color:#080808; letter-spacing:-0.03em; line-height:1; margin-bottom:16px; position:relative; }
    .cta-inner p { font-size:16px; color:rgba(0,0,0,0.55); font-family:'Inter',sans-serif; margin-bottom:40px; position:relative; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 40px; border-radius: 100px;
      background: #080808; color: #fff;
      font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s; cursor: none; position:relative;
    }
    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }

    /* ─── Footer ─────────────────────────────────────── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 60px 0 40px;
    }
    .footer-inner {
      display: flex; align-items: flex-start; justify-content: space-between;
      flex-wrap: wrap; gap: 40px; margin-bottom: 48px;
    }
    .footer-brand img { height: 28px; filter: brightness(0) invert(1); opacity:0.8; margin-bottom:12px; display:block; }
    .footer-brand p { font-size:13px; color:rgba(255,255,255,0.35); font-family:'Inter',sans-serif; max-width:240px; line-height:1.6; }
    .footer-links h4 { font-size:11px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:16px; }
    .footer-links ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
    .footer-links ul li a { font-size:14px; color:rgba(255,255,255,0.6); transition:color 0.2s; }
    .footer-links ul li a:hover { color:#fff; }
    .footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:24px; border-top:1px solid rgba(255,255,255,0.05); }
    .footer-bottom p { font-size:12px; color:rgba(255,255,255,0.25); font-family:'Inter',sans-serif; }
    .footer-gradient { height:2px; background:linear-gradient(90deg,#FF8C3A,#FFD23F,#A8E063,#56CFE1,#9B5FD4); margin-bottom:40px; }

    /* ─── Cart Sidebar ───────────────────────────────── */
    .cart-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0); backdrop-filter: blur(0px);
      pointer-events: none; transition: background 0.3s, backdrop-filter 0.3s;
    }
    .cart-overlay.open {
      background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
      pointer-events: all;
    }
    .cart-sidebar {
      position: fixed; top: 0; right: -480px; bottom: 0; width: 480px; z-index: 1001;
      background: #0f0f0f;
      border-left: 1px solid rgba(255,255,255,0.08);
      transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
      display: flex; flex-direction: column;
    }
    .cart-sidebar.open { right: 0; }
    .cart-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .cart-title { font-size: 18px; font-weight: 700; }
    .cart-close {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.07); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; cursor: none; border: none; transition: background 0.2s;
    }
    .cart-close:hover { background: rgba(255,255,255,0.13); }
    .cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
    .cart-items::-webkit-scrollbar { width: 4px; }
    .cart-items::-webkit-scrollbar-track { background: transparent; }
    .cart-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
    .cart-empty { text-align: center; padding: 80px 20px; }
    .cart-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
    .cart-empty p { color: rgba(255,255,255,0.35); font-size:14px; }
    .cart-item {
      display: flex; align-items: center; gap: 16px;
      padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .cart-item-img {
      width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg,rgba(255,140,58,0.1),rgba(155,95,212,0.1));
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .cart-item-img img { width: 60px; object-fit: contain; }
    .cart-item-info { flex: 1; }
    .cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .cart-item-price { font-size: 13px; color: rgba(255,255,255,0.45); }
    .cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
    .cart-item-qty button {
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(255,255,255,0.08); color: #fff; font-size: 14px;
      display: flex; align-items: center; justify-content: center; cursor: none;
      transition: background 0.2s;
    }
    .cart-item-qty button:hover { background: rgba(255,255,255,0.15); }
    .cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
    .cart-item-remove { color: rgba(255,255,255,0.2); font-size: 20px; cursor: none; transition: color 0.2s; }
    .cart-item-remove:hover { color: rgba(255,80,80,0.7); }
    .cart-footer { padding: 24px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
    .cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .cart-total-label { font-size: 14px; color: rgba(255,255,255,0.5); }
    .cart-total-amount { font-size: 24px; font-weight: 700; }
    .checkout-btn {
      width: 100%; padding: 16px;
      border-radius: 14px;
      background: linear-gradient(135deg,#FF8C3A,#FFD23F,#A8E063,#56CFE1,#9B5FD4);
      color: #080808; font-size: 15px; font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s; cursor: none;
    }
    .checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(155,95,212,0.4); }
    .cart-note { text-align: center; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.2); font-family:'Inter',sans-serif; }

    /* ─── Checkout Modal ─────────────────────────────── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 1100;
      background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: #111; border-radius: 28px;
      border: 1px solid rgba(255,255,255,0.09);
      width: 100%; max-width: 580px;
      max-height: 90vh; overflow-y: auto;
      transform: translateY(20px);
      transition: transform 0.3s;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal::-webkit-scrollbar { width: 4px; }
    .modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
    .modal-header {
      padding: 32px 36px 0;
      display: flex; align-items: center; justify-content: space-between;
    }
    .modal-title { font-size: 22px; font-weight: 700; }
    .modal-close { width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.07);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;cursor:none;border:none;transition:background 0.2s; }
    .modal-close:hover { background:rgba(255,255,255,0.13); }
    .modal-body { padding: 28px 36px 36px; }

    .form-section { margin-bottom: 28px; }
    .form-section-title {
      font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-bottom: 16px;
    }
    .form-row { display: grid; gap: 12px; }
    .form-row.col-2 { grid-template-columns: 1fr 1fr; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
    .form-group input, .form-group select {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 12px 14px;
      color: #fff; font-size: 14px; font-family: 'Space Grotesk',sans-serif;
      outline: none; transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .form-group input:focus, .form-group select:focus { border-color: rgba(155,95,212,0.5); }
    .form-group input::placeholder { color: rgba(255,255,255,0.2); }
    .form-group select option { background: #111; }

    .order-summary {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px; padding: 20px;
      margin-bottom: 24px;
    }
    .order-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
    .order-row:last-child { margin-bottom: 0; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.07); color: #fff; font-weight: 700; font-size: 16px; }

    .place-order-btn {
      width: 100%; padding: 16px;
      border-radius: 14px;
      background: linear-gradient(135deg,#FF8C3A,#FFD23F,#A8E063,#56CFE1,#9B5FD4);
      color: #080808; font-size: 15px; font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s; cursor: none;
    }
    .place-order-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(155,95,212,0.4); }

    /* Success state */
    .success-state {
      display: none; flex-direction: column; align-items: center;
      text-align: center; padding: 60px 36px;
    }
    .success-state.show { display: flex; }
    .success-ring {
      width: 96px; height: 96px; border-radius: 50%;
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
      display: flex; align-items: center; justify-content: center;
      font-size: 40px; margin-bottom: 28px;
      animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    @keyframes pop-in { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
    .success-state h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
    .success-state p { color: rgba(255,255,255,0.45); font-family:'Inter',sans-serif; font-size: 15px; line-height: 1.6; max-width: 320px; }
    .success-ref { margin-top: 20px; font-family:'Courier New',monospace; font-size: 13px; color: rgba(255,255,255,0.3); }

    /* ─── Toast ──────────────────────────────────────── */
    #toast {
      position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
      z-index: 2000;
      background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 100px; padding: 12px 24px;
      font-size: 13px; font-weight: 600; color: #fff;
      display: flex; align-items: center; gap: 10px;
      opacity: 0; transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    #toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    #toast .toast-dot {
      width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg,#FF8C3A,#9B5FD4);
    }

    /* ─── Scroll Animations ───────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }

    /* ─── Responsive ─────────────────────────────────── */
    @media(max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
      .hero-text { order: 1; }
      .hero-camera { order: 0; }
      .hero-sub { margin: 0 auto 48px; }
      .hero-actions { justify-content: center; }
      .product-grid { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .community-inner { grid-template-columns: 1fr; }
    }
    @media(max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .container { padding: 0 24px; }
      .hero { padding: 100px 24px 80px; }
      .product-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .hiw-grid { grid-template-columns: 1fr; }
      .gallery-scroll { padding: 48px 24px 24px; }
      .cart-sidebar { width: 100%; right: -100%; }
      .cta-inner { padding: 48px 24px; }
      .footer-inner { flex-direction: column; }
      .modal { border-radius: 20px; }
      .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
      .form-row.col-2 { grid-template-columns: 1fr; }
    }

    /* ─── Stripe Elements ─────────────────────────── */
    .stripe-card-element {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 14px 12px;
      transition: border-color 0.2s;
    }
    .stripe-card-element.StripeElement--focus { border-color: rgba(155,95,212,0.5); }
    .stripe-card-element.StripeElement--invalid { border-color: rgba(255,80,80,0.5); }
    .stripe-error { color: rgba(255,100,100,0.8); font-size: 12px; margin-top: 6px; min-height: 16px; }

    /* ─── Shipping preview ───────────────────────── */
    .shipping-preview {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; color: rgba(255,255,255,0.4);
      font-family: 'Inter', sans-serif;
      margin-top: 12px; padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* ─── Apple/Google Pay divider ───────────────── */
    .pay-divider {
      text-align: center; margin: 16px 0;
      position: relative;
    }
    .pay-divider::before {
      content: ''; position: absolute; top: 50%; left: 0; right: 0;
      height: 1px; background: rgba(255,255,255,0.08);
    }
    .pay-divider span {
      position: relative; background: #111;
      padding: 0 12px;
      font-size: 12px; color: rgba(255,255,255,0.3);
      font-family: 'Inter', sans-serif;
    }
