    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black:  #060503;
      --green:  #00C876;
      --green2: #00A863;
      --amber:  #F59000;
      --cream:  #EDE8D8;
      --muted:  #5a5048;
    }

    html, body {
      width: 100%; height: 100%;
      overflow: hidden;
      background: var(--black);
      font-family: 'Syne', sans-serif;
      color: var(--cream);
      cursor: none;
    }

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

    /* ─── Site layout ─── */
    .site-wrap {
      display: flex;
      height: 100%;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    /* ─── Brand strip ─── */
    .brand-strip {
      width: 34px;
      flex-shrink: 0;
      background: rgba(245,144,0,0.055);
      border-right: 1px solid rgba(245,144,0,0.22);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 14px 0;
      z-index: 20;
    }
    .bs-logo {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      object-fit: contain;
      flex-shrink: 0;
      filter: drop-shadow(0 0 6px rgba(245,144,0,0.45));
    }
    .bs-name {
      flex: 1;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-family: 'Space Mono', monospace;
      font-size: 0.38rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(245,144,0,0.30);
      user-select: none;
      margin: 8px 0;
    }
    .bs-year {
      font-family: 'Space Mono', monospace;
      font-size: 0.35rem;
      letter-spacing: 0.1em;
      color: rgba(245,144,0,0.18);
    }

    /* ─── Main area ─── */
    .site-main {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-width: 0;
    }

    /* ─── Top nav ─── */
    .top-nav {
      height: 40px;
      flex-shrink: 0;
      background: rgba(6,5,3,0.97);
      border-bottom: 1px solid rgba(245,144,0,0.1);
      display: flex;
      align-items: center;
      padding: 0 20px;
      z-index: 20;
    }
    .nav-links { display: flex; gap: 0; }
    .nav-link {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.28);
      text-decoration: none;
      padding: 0 14px;
      height: 40px;
      display: flex;
      align-items: center;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .nav-link:hover { color: rgba(237,232,216,0.65); }
    .nav-link.active { color: var(--amber); border-bottom-color: rgba(245,144,0,0.5); }

    .nav-ext {
      margin-left: auto;
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .nav-ext a {
      font-family: 'Space Mono', monospace;
      font-size: 0.52rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.2);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-ext a:hover { color: var(--amber); }

    /* Hamburger (hidden on desktop) */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      margin-left: 12px;
    }
    .hamburger span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: rgba(237,232,216,0.45);
    }

    /* ─── Sections wrap ─── */
    .sections-wrap {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    .site-section {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      overflow: hidden;
    }
    .site-section.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* ─── Shared section inner ─── */
    .sec-inner {
      height: 100%;
      overflow-y: auto;
      padding: 36px 44px;
      scrollbar-width: thin;
      scrollbar-color: rgba(245,144,0,0.2) transparent;
      background: rgba(6,5,3,0.62);
    }
    .sec-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
    }
    .sec-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--amber);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .sec-rule {
      flex: 1;
      height: 1px;
      background: rgba(245,144,0,0.15);
    }

    /* ─── Home section ─── */
    .s-home {
      background: transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    #bg-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
    }
    .home-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 24px;
      gap: 0;
    }
    .eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 0.72rem;
      font-style: italic;
      letter-spacing: 0.22em;
      color: rgba(245,144,0,0.75);
      text-shadow: 0 0 18px rgba(245,144,0,0.4);
      margin-bottom: 18px;
      animation: fadedown 0.8s ease both;
    }
    .logo-mark {
      width: clamp(160px, 24vw, 240px);
      height: clamp(160px, 24vw, 240px);
      object-fit: contain;
      border-radius: 50%;
      filter: drop-shadow(0 0 50px rgba(245,144,0,0.18));
      animation: fadedown-logo 0.9s 0.05s cubic-bezier(0.22,1,0.36,1) both;
      user-select: none;
      transition: filter 0.4s ease, transform 0.4s ease;
      margin-bottom: 20px;
    }
    .logo-mark:hover {
      filter: drop-shadow(0 0 55px rgba(245,144,0,0.65)) drop-shadow(0 0 20px rgba(245,144,0,0.4));
      transform: scale(1.04);
    }
    .home-headline {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: clamp(1.35rem, 3vw, 2rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      animation: fadedown 0.8s 0.1s ease both;
    }
    .home-sub {
      font-family: 'Syne', sans-serif;
      font-size: clamp(0.8rem, 1.4vw, 0.92rem);
      color: rgba(237,232,216,0.45);
      max-width: 380px;
      line-height: 1.75;
      margin-bottom: 26px;
      animation: fadedown 0.8s 0.18s ease both;
    }
    .cta-btn {
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--black);
      background: var(--amber);
      border: none;
      padding: 13px 28px;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 18px rgba(245,144,0,0.28), 0 2px 10px rgba(0,0,0,0.45);
      transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
      animation: btn-breathe 3s ease-in-out infinite, fadedown 0.8s 0.28s ease both;
    }
    .cta-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
      transform: translateX(-120%);
      transition: none;
    }
    .cta-btn:hover::after {
      transform: translateX(120%);
      transition: transform 0.45s ease;
    }
    .cta-btn:hover {
      background: #ffaa1a;
      box-shadow: 0 0 44px rgba(245,144,0,0.65), 0 4px 14px rgba(0,0,0,0.45);
      transform: translateY(-1px);
      animation: none;
    }
    .cta-btn:active { transform: translateY(0); }


    /* ─── Products section ─── */
    .s-products { background: transparent; }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 16px;
    }
    .prod-card {
      border: 1px solid rgba(245,144,0,0.16);
      border-radius: 8px;
      background-color: rgba(6,5,3,0.82);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32' opacity='0.09'%3E%3Cpolygon points='14,1 27,8 27,24 14,31 1,24 1,8' fill='none' stroke='%23F59000' stroke-width='0.5'/%3E%3C/svg%3E");
      background-size: 28px 32px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    }
    .prod-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 120px; height: 120px;
      background: radial-gradient(circle at top left, rgba(245,144,0,0.07), transparent 70%);
      pointer-events: none;
    }
    .prod-card:hover {
      border-color: rgba(245,144,0,0.42);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .prod-status {
      display: inline-block;
      font-family: 'Space Mono', monospace;
      font-size: 0.48rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 2px 7px;
      border-radius: 2px;
      width: fit-content;
    }
    .prod-status.alpha       { background: rgba(245,144,0,0.14); color: var(--amber); border: 1px solid rgba(245,144,0,0.28); }
    .prod-status.dev         { background: rgba(0,200,118,0.1);  color: #00C876;      border: 1px solid rgba(0,200,118,0.22); }
    .prod-status.beta        { background: rgba(80,130,255,0.1); color: #6699ff;      border: 1px solid rgba(80,130,255,0.22); }
    .prod-status.stable      { background: rgba(0,200,118,0.16); color: #00C876;      border: 1px solid rgba(0,200,118,0.32); }
    .prod-status.coming-soon { background: rgba(90,80,72,0.25);  color: var(--muted); border: 1px solid rgba(90,80,72,0.35); }

    .prod-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.06em;
      color: var(--cream);
      line-height: 1;
      margin-top: 4px;
    }
    .prod-tagline {
      font-family: 'Syne', sans-serif;
      font-size: 0.82rem;
      color: rgba(245,144,0,0.68);
      line-height: 1.4;
    }
    .prod-features {
      list-style: none;
      padding: 0;
      margin: 4px 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .prod-features li {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      color: rgba(237,232,216,0.4);
      line-height: 1.5;
      padding-left: 14px;
      position: relative;
    }
    .prod-features li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: rgba(245,144,0,0.45);
    }
    .prod-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .prod-link {
      font-family: 'Space Mono', monospace;
      font-size: 0.52rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.38);
      text-decoration: none;
      border: 1px solid rgba(245,144,0,0.16);
      padding: 4px 10px;
      border-radius: 3px;
      transition: color 0.2s, border-color 0.2s;
    }
    .prod-link:hover { color: var(--amber); border-color: rgba(245,144,0,0.42); }

    .prod-card-more {
      border: 1px dashed rgba(245,144,0,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      font-family: 'Space Mono', monospace;
      font-size: 0.52rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,144,0,0.2);
    }

    /* ─── About section ─── */
    .s-about { background: transparent; }
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
    }
    .about-copy p {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      color: rgba(237,232,216,0.55);
      line-height: 1.88;
      margin-bottom: 18px;
    }
    .about-copy p strong { color: var(--cream); font-weight: 600; }
    .about-values { display: flex; flex-direction: column; gap: 22px; }
    .value-item {
      border-left: 2px solid rgba(245,144,0,0.28);
      padding: 12px 14px;
      background-color: rgba(6,5,3,0.6);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32' opacity='0.09'%3E%3Cpolygon points='14,1 27,8 27,24 14,31 1,24 1,8' fill='none' stroke='%23F59000' stroke-width='0.5'/%3E%3C/svg%3E");
      background-size: 28px 32px;
      border-radius: 0 4px 4px 0;
    }
    .value-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 5px;
    }
    .value-text {
      font-family: 'Syne', sans-serif;
      font-size: 0.84rem;
      color: rgba(237,232,216,0.42);
      line-height: 1.65;
    }

    /* ─── Who we are ─── */
    .who-section { margin-top: 44px; }
    .who-card {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      background-color: rgba(6,5,3,0.72);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32' opacity='0.07'%3E%3Cpolygon points='14,1 27,8 27,24 14,31 1,24 1,8' fill='none' stroke='%23F59000' stroke-width='0.5'/%3E%3C/svg%3E");
      background-size: 28px 32px;
      border: 1px solid rgba(245,144,0,0.16);
      border-radius: 8px;
      padding: 24px 28px;
      max-width: 680px;
    }
    .who-avatar {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 2px solid rgba(245,144,0,0.32);
      box-shadow: 0 0 20px rgba(245,144,0,0.12);
      flex-shrink: 0;
    }
    .who-info { display: flex; flex-direction: column; gap: 4px; }
    .who-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      color: var(--cream);
      line-height: 1;
    }
    .who-role {
      font-family: 'Space Mono', monospace;
      font-size: 0.5rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,144,0,0.65);
      margin-bottom: 8px;
    }
    .who-bio {
      font-family: 'Syne', sans-serif;
      font-size: 0.86rem;
      color: rgba(237,232,216,0.5);
      line-height: 1.8;
    }
    @media (max-width: 480px) {
      .who-card { flex-direction: column; align-items: center; text-align: center; }
    }

    /* ─── Contact section ─── */
    .s-contact { background: transparent; }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 52px;
      align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: 18px; }
    .ci-item { display: flex; flex-direction: column; gap: 3px; }
    .ci-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.48rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .ci-value {
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      color: var(--cream);
      text-decoration: none;
      transition: color 0.2s;
    }
    a.ci-value:hover { color: var(--amber); }
    .ci-note {
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem;
      color: rgba(237,232,216,0.22);
      line-height: 1.75;
      margin-top: 14px;
      border-top: 1px solid rgba(245,144,0,0.08);
      padding-top: 14px;
    }

    .bmc-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: var(--amber);
      text-decoration: none;
      border: 1px solid rgba(245,144,0,0.3);
      padding: 7px 14px;
      border-radius: 3px;
      margin-top: 6px;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      width: fit-content;
    }
    .bmc-link:hover {
      background: rgba(245,144,0,0.12);
      border-color: rgba(245,144,0,0.6);
      color: #ffcc44;
    }
    .bmc-link svg { flex-shrink: 0; }

    .contact-form { display: flex; flex-direction: column; gap: 10px; }
    .cf-field {
      width: 100%;
      background: rgba(237,232,216,0.03);
      border: 1px solid rgba(245,144,0,0.14);
      border-radius: 4px;
      padding: 11px 14px;
      font-family: 'Space Mono', monospace;
      font-size: 0.74rem;
      color: var(--cream);
      outline: none;
      caret-color: var(--amber);
      transition: border-color 0.2s;
      resize: none;
    }
    .cf-field::placeholder { color: var(--muted); }
    .cf-field:focus { border-color: rgba(245,144,0,0.4); }
    textarea.cf-field { min-height: 110px; }

    .cf-submit {
      align-self: flex-start;
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--black);
      background: var(--amber);
      border: none;
      padding: 12px 24px;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 18px rgba(245,144,0,0.28), 0 2px 10px rgba(0,0,0,0.45);
      transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
      animation: btn-breathe 3s ease-in-out infinite;
    }
    .cf-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
      transform: translateX(-120%);
      transition: none;
    }
    .cf-submit:hover::after { transform: translateX(120%); transition: transform 0.45s ease; }
    .cf-submit:hover {
      background: #ffaa1a;
      box-shadow: 0 0 44px rgba(245,144,0,0.65), 0 4px 14px rgba(0,0,0,0.45);
      transform: translateY(-1px);
      animation: none;
    }
    .cf-submit:active { transform: translateY(0); }
    .cf-success {
      display: none;
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      color: var(--green);
      padding: 14px 0;
    }

    /* ─── Mobile sidebar ─── */
    .mob-sidebar {
      position: fixed;
      top: 0; left: 0; bottom: 0;
      width: 220px;
      background: #0d0b09;
      border-right: 1px solid rgba(245,144,0,0.2);
      z-index: 100;
      display: flex;
      flex-direction: column;
      padding: 20px 0;
      gap: 0;
      transform: translateX(-100%);
      transition: transform 0.28s ease;
    }
    .mob-sidebar.open { transform: translateX(0); }
    .mob-close {
      align-self: flex-end;
      background: none;
      border: none;
      color: rgba(237,232,216,0.35);
      font-size: 1.4rem;
      cursor: pointer;
      padding: 0 16px 10px;
      line-height: 1;
    }
    .mob-link {
      font-family: 'Space Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.38);
      text-decoration: none;
      padding: 13px 22px;
      transition: color 0.2s, background 0.2s;
      border-left: 2px solid transparent;
    }
    .mob-link:hover,
    .mob-link.active { color: var(--amber); border-left-color: rgba(245,144,0,0.5); background: rgba(245,144,0,0.04); }
    .mob-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s;
    }
    .mob-overlay.visible { opacity: 1; pointer-events: auto; }

    /* ─── Gecko Cursor ─── */
    .cursor-gecko {
      position: fixed;
      z-index: 9999;
      pointer-events: none;
      filter: drop-shadow(0 0 8px rgba(0,200,118,0.55));
    }
    .cursor-gecko svg { overflow: visible; }
    .gecko-svg { animation: gecko-sway 2.6s ease-in-out infinite; }
    @keyframes gecko-sway {
      0%   { transform: rotate(-5deg) translateX(0px); }
      28%  { transform: rotate(7deg)  translateX(1.5px); }
      55%  { transform: rotate(-3deg) translateX(-1px); }
      78%  { transform: rotate(6deg)  translateX(0.5px); }
      100% { transform: rotate(-5deg) translateX(0px); }
    }
    .gecko-tail { transform-box: fill-box; transform-origin: 0% 0%; animation: tail-idle 3s ease-in-out infinite; }
    @keyframes tail-idle {
      0%, 100% { transform: rotate(0deg); }
      35%       { transform: rotate(-22deg); }
      70%       { transform: rotate(14deg); }
    }
    .leg-fl { transform-box: fill-box; transform-origin: 100% 100%; animation: leg-idle 1.4s ease-in-out infinite 0.0s; }
    .leg-fr { transform-box: fill-box; transform-origin: 0%   100%; animation: leg-idle 1.4s ease-in-out infinite 0.35s; }
    .leg-bl { transform-box: fill-box; transform-origin: 100% 0%;   animation: leg-idle 1.4s ease-in-out infinite 0.7s; }
    .leg-br { transform-box: fill-box; transform-origin: 0%   0%;   animation: leg-idle 1.4s ease-in-out infinite 1.05s; }
    @keyframes leg-idle {
      0%, 100% { transform: rotate(0deg); }
      50%       { transform: rotate(-10deg); }
    }
    .cursor-gecko.walking .gecko-svg { animation: gecko-walk 0.48s ease-in-out infinite; }
    @keyframes gecko-walk {
      0%   { transform: rotate(-11deg) translateY(-1.5px); }
      25%  { transform: rotate(-4deg)  translateY(0); }
      50%  { transform: rotate(12deg)  translateY(-1.5px); }
      75%  { transform: rotate(4deg)   translateY(0); }
      100% { transform: rotate(-11deg) translateY(-1.5px); }
    }
    .cursor-gecko.walking .gecko-tail { animation: tail-walk 0.48s ease-in-out infinite; }
    @keyframes tail-walk {
      0%, 100% { transform: rotate(-28deg); }
      50%       { transform: rotate(22deg); }
    }
    .cursor-gecko.walking .leg-fl,
    .cursor-gecko.walking .leg-br { animation: leg-walk-a 0.48s ease-in-out infinite; }
    .cursor-gecko.walking .leg-fr,
    .cursor-gecko.walking .leg-bl { animation: leg-walk-b 0.48s ease-in-out infinite; }
    @keyframes leg-walk-a {
      0%, 100% { transform: rotate(-28deg); }
      50%       { transform: rotate(22deg); }
    }
    @keyframes leg-walk-b {
      0%, 100% { transform: rotate(22deg); }
      50%       { transform: rotate(-28deg); }
    }
    .cursor-gecko.stumble .gecko-svg {
      animation: gecko-stumble 0.65s cubic-bezier(.36,.07,.19,.97) both;
    }
    @keyframes gecko-stumble {
      0%   { transform: rotate(0deg)   translateX(0); }
      15%  { transform: rotate(-22deg) translateX(-5px) translateY(2px); }
      35%  { transform: rotate(18deg)  translateX(4px)  translateY(-1px); }
      55%  { transform: rotate(-10deg) translateX(-2px); }
      75%  { transform: rotate(7deg)   translateX(2px); }
      100% { transform: rotate(-5deg)  translateX(0); }
    }
    body:has(a:hover) .cursor-gecko,
    body:has(button:hover) .cursor-gecko { filter: drop-shadow(0 0 18px rgba(245,144,0,0.8)); }

    @media (hover: none), (pointer: coarse) {
      html, body { cursor: auto; }
      .cursor-gecko { display: none; }
    }

    /* ─── Shared animations ─── */
    @keyframes fadedown {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadedown-logo {
      from { opacity: 0; transform: translateY(-14px) scale(0.92); }
      to   { opacity: 1; transform: translateY(0)    scale(1);    }
    }
    @keyframes fadeup {
      from { opacity: 0; transform: translateX(-50%) translateY(14px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    @keyframes btn-breathe {
      0%, 100% { box-shadow: 0 0 18px rgba(245,144,0,0.28), 0 2px 10px rgba(0,0,0,0.45); }
      50%       { box-shadow: 0 0 36px rgba(245,144,0,0.52), 0 2px 10px rgba(0,0,0,0.45); }
    }

    /* ─── Responsive ─── */
    @media (max-width: 768px) {
      .brand-strip { display: none; }
      .nav-links   { display: none; }
      .nav-ext     { display: none; }
      .hamburger   { display: flex; margin-left: auto; }
      .sec-inner   { padding: 24px 18px; }
      .about-layout   { grid-template-columns: 1fr; gap: 28px; }
      .contact-layout { grid-template-columns: 1fr; gap: 24px; }
      .product-grid   { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .sec-inner { padding: 18px 14px; }
      .home-headline { font-size: 1.3rem; }
    }

    /* ─── Product detail modal ─── */
    .prod-card { cursor: pointer; }
    .prod-card-hint {
      font-family: 'Space Mono', monospace;
      font-size: 0.46rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,144,0,0);
      margin-top: auto;
      padding-top: 10px;
      transition: color 0.2s;
    }
    .prod-card:hover .prod-card-hint { color: rgba(245,144,0,0.38); }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(6,5,3,0.82);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .modal-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-image {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 4px;
      transform: translateY(12px);
      transition: transform 0.25s ease;
    }
    .modal-backdrop.open .lightbox-image { transform: translateY(0); }
    .modal-header-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }

    .back-to-products {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.45);
      text-decoration: none;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      margin-bottom: 24px;
      transition: color 0.2s;
    }
    .back-to-products:hover { color: var(--amber); }

    .detail-hero {
      background-color: rgba(6,5,3,0.82);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32' opacity='0.09'%3E%3Cpolygon points='14,1 27,8 27,24 14,31 1,24 1,8' fill='none' stroke='%23F59000' stroke-width='0.5'/%3E%3C/svg%3E");
      background-size: 28px 32px;
      border: 1px solid rgba(245,144,0,0.24);
      border-radius: 10px;
      padding: 32px;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
    }
    .detail-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 200px; height: 200px;
      background: radial-gradient(circle at top left, rgba(245,144,0,0.08), transparent 70%);
      pointer-events: none;
    }
    .detail-hero .modal-name { font-size: 2.8rem; }

    .tech-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .tech-pill {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.45);
      border: 1px solid rgba(245,144,0,0.16);
      padding: 4px 10px;
      border-radius: 3px;
    }
    .modal-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem;
      letter-spacing: 0.06em;
      color: var(--cream);
      line-height: 1;
    }
    .modal-tagline {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      color: rgba(245,144,0,0.7);
      line-height: 1.4;
    }
    .modal-close {
      background: none;
      border: 1px solid rgba(245,144,0,0.18);
      border-radius: 4px;
      color: rgba(237,232,216,0.45);
      font-size: 1.1rem;
      line-height: 1;
      padding: 6px 10px;
      cursor: pointer;
      flex-shrink: 0;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .modal-close:hover {
      color: var(--cream);
      border-color: rgba(245,144,0,0.42);
      background: rgba(245,144,0,0.07);
    }
    .modal-body { padding: 22px 24px 28px; display: flex; flex-direction: column; gap: 24px; }
    .modal-section-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.48rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(245,144,0,0.5);
      margin-bottom: 10px;
    }
    .modal-description {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      color: rgba(237,232,216,0.62);
      line-height: 1.85;
    }
    .modal-features {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .modal-features li {
      font-family: 'Space Mono', monospace;
      font-size: 0.62rem;
      color: rgba(237,232,216,0.55);
      line-height: 1.6;
      padding-left: 18px;
      position: relative;
    }
    .modal-features li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--amber);
      opacity: 0.6;
    }
    .modal-screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
    }
    .modal-screenshot {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid rgba(245,144,0,0.14);
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .modal-screenshot:hover { border-color: rgba(245,144,0,0.42); }
    .modal-notes {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      color: rgba(237,232,216,0.32);
      line-height: 1.75;
      padding: 12px 14px;
      border-left: 2px solid rgba(245,144,0,0.18);
      background: rgba(245,144,0,0.03);
      border-radius: 0 4px 4px 0;
    }
    .modal-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding-top: 4px;
      border-top: 1px solid rgba(245,144,0,0.08);
    }
    .modal-link {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(237,232,216,0.5);
      text-decoration: none;
      border: 1px solid rgba(245,144,0,0.2);
      padding: 6px 14px;
      border-radius: 3px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .modal-link:hover {
      color: var(--amber);
      border-color: rgba(245,144,0,0.5);
      background: rgba(245,144,0,0.06);
    }
    .modal-link.primary {
      background: rgba(245,144,0,0.1);
      color: var(--amber);
      border-color: rgba(245,144,0,0.35);
    }
    .modal-link.primary:hover { background: rgba(245,144,0,0.18); }
    @media (max-width: 600px) {
      .modal-name  { font-size: 2rem; }
    }

/* ═══════════════════════════════════════════════════════
   Static content pages (products index + product detail pages)
   Plain scrolling documents — override the SPA's fixed-viewport,
   cursor-hidden, hash-routed app shell for these pages only.
   ═══════════════════════════════════════════════════════ */
html:has(body.static-body) {
  overflow: auto;
  height: auto;
  cursor: auto;
}
.static-body {
  overflow: visible;
  height: auto;
  min-height: 100vh;
  cursor: auto;
}
.static-body .site-wrap { height: auto; min-height: 100vh; }
.static-body .site-main { height: auto; }

.static-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 32px 96px;
  position: relative;
  z-index: 10;
}
.static-page h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.15;
}
.static-page h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--amber);
  margin: 40px 0 16px;
}
.static-page h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--cream);
  margin: 24px 0 8px;
}
.static-page p {
  font-family: 'Syne', sans-serif;
  color: var(--cream);
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 68ch;
}
.static-page .page-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 68ch;
}
.static-page ul.plain-list { margin: 0 0 20px 20px; }
.static-page ul.plain-list li {
  font-family: 'Syne', sans-serif;
  color: var(--cream);
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 8px;
}
.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.static-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  border: 1px solid rgba(245,144,0,0.4);
  border-radius: 4px;
  color: var(--amber);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.static-cta:hover { background: var(--amber); color: var(--black); }
.static-footer {
  border-top: 1px solid rgba(245,144,0,0.18);
  margin-top: 64px;
  padding: 32px;
  text-align: center;
}
.static-footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 10px;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
}
.static-footer a:hover { color: var(--amber); }

.product-card-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 40px; }
.product-card-list .pcl-item {
  border: 1px solid rgba(245,144,0,0.18);
  border-radius: 6px;
  padding: 20px 24px;
  background: rgba(245,144,0,0.03);
}
.product-card-list .pcl-item h3 { margin-top: 0; }
.product-card-list .pcl-item a.pcl-link {
  color: var(--green);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
}
.product-card-list .pcl-item a.pcl-link:hover { text-decoration: underline; }

/* ─── Homepage "What Drunken Gecko Builds" section ─── */
.builds-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  margin: 56px auto 0;
  padding: 0 24px 48px;
  text-align: left;
}
.builds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.builds-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}
.builds-item p {
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.85;
  max-width: none;
}
.builds-item a { color: var(--green); text-decoration: none; }
.builds-item a:hover { text-decoration: underline; }
.brand-line {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--amber);
  margin: 8px 0 20px;
}

@media (max-width: 768px) {
  .static-body .nav-links   { display: flex !important; flex-wrap: wrap; gap: 10px 16px; position: static; }
  .static-body .nav-ext     { display: flex !important; }
  .static-body .hamburger   { display: none !important; }
  .static-body .brand-strip { display: none; }
  .builds-grid { grid-template-columns: 1fr; }
}
