  :root{ --font-mono:"Space Mono", monospace; --lama-cursor: url(../public/images/cursor.png) 9 0, auto; }
  *{ margin:0; padding:0; box-sizing:border-box; }
  html,body{ background:#000; color:#fff; overflow-x:hidden; -webkit-font-smoothing:antialiased; font-family:var(--font-mono); }
  html,body{ cursor: var(--lama-cursor); }

  /* generic scroll-reveal */
  .reveal{ opacity:0; transform:translateY(30px); transition:opacity 1s ease, transform 1s ease; }
  .reveal.visible{ opacity:1; transform:translateY(0); }
  .reveal-slow{ transition-duration:1.2s; }
  .reveal-delay-1{ transition-delay:.1s; }
  .reveal-delay-2{ transition-delay:.2s; }
  .reveal-delay-3{ transition-delay:.3s; }
  .reveal-delay-4{ transition-delay:.4s; }

  section{ position:relative; width:100%; }
  .full{ height:100vh; height:100dvh; overflow:hidden; }
  .bgvideo{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

  /* navbar */
  nav{ position:fixed; top:0; left:0; width:100%; height:80px; z-index:50; display:flex; align-items:center; justify-content:space-between; padding:0 16px; opacity:0; transition:opacity .8s ease; }
  nav.shown{ opacity:1; }
  .pill{ background:rgba(255,255,255,.15); backdrop-filter:blur(8px); border-radius:14px; }
  .logo-pill{ height:48px; padding:0 20px; display:flex; align-items:center; gap:8px; cursor: var(--lama-cursor); transition:transform .15s ease, background-color .15s ease; text-decoration:none; }
  .logo-pill:hover{ transform:scale(1.02); background-color:rgba(255,255,255,.22); }
  .menu-pill{ height:48px; display:flex; align-items:center; overflow:hidden; width:48px; transition:width .4s cubic-bezier(.34,1.3,.64,1); }
  .menu-pill.open{ width:290px; }
  .ham-btn{ display:flex; align-items:center; justify-content:center; flex-shrink:0; width:48px; height:48px; border-radius:14px; background:none; border:none; cursor: var(--lama-cursor); }
  .menu-pill.open .ham-btn{ width:36px; height:36px; border-radius:11px; background:rgba(255,255,255,.1); margin-left:6px; }
  .menu-links{ display:flex; align-items:center; gap:24px; padding:0 24px 0 16px; opacity:0; transform:translateX(15px); transition:opacity .3s ease, transform .3s ease; white-space:nowrap; }
  .menu-pill.open .menu-links{ opacity:1; transform:translateX(0); }
  .menu-links button{ background:none; border:none; cursor: var(--lama-cursor); color:rgba(255,255,255,.85); font-size:16px; font-family:var(--font-mono); }
  .menu-links button:hover{ color:#fff; }

  .ham{ position:relative; width:18px; height:12px; }
  .ham span{ position:absolute; width:100%; height:1.5px; background:#fff; border-radius:2px; transition:all .3s ease; left:0; }
  .ham span:nth-child(1){ top:0; }
  .ham span:nth-child(2){ top:5.25px; }
  .ham span:nth-child(3){ bottom:0; }
  .ham.open span:nth-child(1){ transform:translateY(5.25px) rotate(45deg); }
  .ham.open span:nth-child(2){ opacity:0; transform:scale(0); }
  .ham.open span:nth-child(3){ transform:translateY(-5.25px) rotate(-45deg); }

  .dl-btn{ height:48px; padding:0 24px; background:#fff; border-radius:9999px; display:flex; align-items:center; gap:8px; border:none; cursor: var(--lama-cursor); transition:transform .15s ease, background-color .15s ease; }
  .dl-btn:hover{ transform:scale(1.03); background-color:#e2e2e6; }

  /* hero */
  #hero-watermark{ font-family:"Anton SC", sans-serif; font-size:clamp(60px,18vw,480px); letter-spacing:-4px; opacity:.1; line-height:1;
    white-space:nowrap; text-align:center; display:block;
    background-image:radial-gradient(circle, rgba(142,127,148,0) 0%, #8E7F94 70%); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .dotgrid{ position:absolute; inset:0; pointer-events:none; opacity:.05; background-image:radial-gradient(#fff 1px, transparent 1px); background-size:24px 24px; }
  .hero-glow{ position:absolute; inset:0; pointer-events:none; mix-blend-mode:screen;
    background-image:radial-gradient(circle at 50% 42%, rgba(230,50,90,.4) 0%, rgba(230,50,90,.15) 35%, transparent 65%); }

  /* layers */
  .layer-row{ width:100%; max-width:28rem; height:72px; border:1px solid rgba(255,255,255,.1); border-radius:8px; display:flex; align-items:center; justify-content:space-between; padding:0 24px; }

  /* contact form */
  .contact-input{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); border-radius:10px; padding:14px 16px; color:#fff; font-family:var(--font-mono); font-size:14px; outline:none; width:100%; transition:border-color .2s ease, background-color .2s ease; }
  .contact-input::placeholder{ color:rgba(255,255,255,.35); }
  .contact-input:focus{ border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.09); }
  textarea.contact-input{ resize:vertical; min-height:130px; }

  /* social placeholders */
  .social-icon{ width:44px; height:44px; border-radius:9999px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.35); font-size:16px; cursor:not-allowed; text-decoration:none; }

  ::-webkit-scrollbar{ width:0; }
