    :root{
      --bg: #EAEAEA;
      --ink: #0c0c0c;
      --muted: rgba(12,12,12,.85);
      --soft: rgba(12,12,12,.06);
      --soft2: rgba(12,12,12,.10);
      --surface: rgba(12,12,12,.08);
      --surface-strong: rgba(12,12,12,.12);
      --surface-soft: rgba(12,12,12,.05);
      --primary: #0c0c0c;
      --secondary: #6f5f55;
  --accent: #c36a2d;
  --gen-bg: #0c0c0c;
  --gen-ink: #f8f7f5;
  --radius: 22px;
      --radius2: 28px;
      --shadow: 0 18px 55px rgba(0,0,0,.08);
      --shadow2: 0 10px 26px rgba(0,0,0,.08);
      --max: 1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
      letter-spacing: -0.01em;
      overflow-x:hidden;
      transition: background-color 700ms ease, color 700ms ease;
  position: relative;
}
body.gen-dark{
  background: var(--gen-bg);
  color: var(--gen-ink);
}
    html{
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    html::-webkit-scrollbar{
      width: 0;
      height: 0;
    }

    body.theme-animate::before{
      content: "";
      position: fixed;
      inset: 0;
      background: linear-gradient(120deg, var(--primary), var(--secondary));
      opacity: 0;
      animation: wash 700ms ease;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: multiply;
    }

    @keyframes wash{
      0%{opacity:0}
      35%{opacity:.35}
      100%{opacity:0}
    }

    .grain{
      pointer-events:none;
      position:fixed; inset:-20%;
      background-image:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,.06) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,.05) 0 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(0,0,0,.045) 0 1px, transparent 1px);
      background-size: 160px 160px, 220px 220px, 260px 260px;
      opacity:.20;
      animation: drift 18s linear infinite;
      mix-blend-mode:multiply;
      z-index: 1;
    }
    @keyframes drift{
      0%{transform:translate3d(-1.5%, -1.5%, 0)}
      50%{transform:translate3d(1.5%, 1.2%, 0)}
      100%{transform:translate3d(-1.5%, -1.5%, 0)}
    }

    a{color:inherit}
    .wrap{max-width:var(--max); margin:0 auto; padding: 0 20px; position: relative; z-index: 2;}

    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(8px);
      background: transparent; /* transparent top navigation */
      border-bottom: none;
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0;
      gap:16px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      text-decoration:none;
      cursor: pointer;
      transition: opacity 200ms ease;
    }
    .brand:hover{
      opacity: 0.8;
    }
    .brand img{
      width:38px; height:38px; object-fit:contain;
      filter: contrast(1.05);
    }
    .brand strong{
      font-weight:900;
      letter-spacing:-0.03em;
    }
    .navlinks{
      display:flex; gap:18px; align-items:center;
      font-weight:600;
      color: var(--muted);
    }
    .navlinks a{
      text-decoration:none;
      padding:10px 10px;
      border-radius:12px;
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }
    .navlinks a:hover{background:var(--soft); color:var(--ink); transform: translateY(-1px);}
    .navcta{
      display:flex; gap:10px; align-items:center;
    }
    body.product-mode .navlinks,
    body.product-mode .navcta{
      display:none;
    }
    body.product-mode .brand img{
      display:none;
    }
    body.product-mode .brand strong{
      color:#0c0c0c;
      font-size: 24px;
    }

    .btn{
      border: 1px solid var(--soft2);
      background: var(--surface-strong);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.12); background: var(--surface);}
    .btn.primary{
      background: var(--primary);
      color: var(--bg);
      border-color: rgba(12,12,12,.25);
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
    }
    .btn.primary:hover{transform: translateY(-2px) scale(1.01);}

    header.hero{min-height:100vh; display:flex; align-items:center; padding: 54px 0 34px; position:relative; z-index: 2; overflow: hidden;}
    .heroVideo{
      position:absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .heroVideo::after{
      content:"";
      position:absolute;
      inset:0;
      background: rgba(255,255,255,.35);
    }
    .heroVideo video{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display:block;
    }
    .parallaxZone{
      position: relative;
      overflow: hidden;
    }
    .sectionParallax{
      position:absolute;
      inset: -10% -8% auto;
      height: 120%;
      pointer-events:none;
      z-index: 0;
    }
    .heroOrb{
      position:absolute;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0));
      filter: blur(2px);
      opacity:.75;
      transform: translate3d(0,0,0);
      transition: transform 100ms linear;
    }
    .processOrb{
      position:absolute;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0));
      filter: blur(2px);
      opacity:.75;
      transform: translate3d(0,0,0);
      transition: transform 100ms linear;
    }
    .orb1{width: 240px; height: 240px; top: 6%; left: 4%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(195,106,45,.18), rgba(255,255,255,0));}
    .orb2{width: 320px; height: 320px; top: 18%; right: 8%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(12,12,12,.08), rgba(255,255,255,0));}
    .orb3{width: 180px; height: 180px; bottom: 10%; left: 45%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), rgba(111,95,85,.18), rgba(255,255,255,0));}
    .heroLine{
      position:absolute;
      height: 2px;
      width: 260px;
      background: linear-gradient(90deg, rgba(12,12,12,0), rgba(12,12,12,.18), rgba(12,12,12,0));
      opacity:.45;
      transform: translate3d(0,0,0);
      transition: transform 100ms linear;
    }
    .line1{top: 20%; left: 22%; transform: rotate(-6deg);}
    .line2{bottom: 18%; right: 14%; transform: rotate(8deg);}
    .heroGrid{
      display:grid;
      grid-template-columns: 1.10fr .90fr;
      gap: 28px;
      align-items: center;
    }
    .kickerRow{
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .kicker{
      display:inline-flex; gap:10px; align-items:center;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
      font-size:12px;
      color: var(--muted);
      border: 1px solid var(--soft2);
      background: var(--surface);
      padding: 10px 12px;
      border-radius: 999px;
      width: fit-content;
    }
    .kickerIcons{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
    }
    .kickerIcon{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: inherit;
      transition: transform 200ms ease, opacity 200ms ease;
    }
    .kickerIcon:hover{
      transform: translateY(-2px);
      opacity: 0.85;
    }
    .kickerIcon svg{
      width: 22px;
      height: 22px;
      fill: currentColor;
      display: block;
    }
    .kdot{
      width:8px; height:8px; border-radius:999px; background: var(--primary);
      box-shadow: 0 0 0 4px var(--soft);
    }
    h1{
      margin: 16px 0 14px;
      font-size: clamp(40px, 5vw, 64px);
      line-height: 0.98;
      letter-spacing:-0.05em;
      font-weight: 900;
      font-family: Helvetica, Arial, sans-serif;
    }
    .sub{
      max-width: 56ch;
      font-size: 18px;
      line-height: 1.55;
      color: var(--muted);
      margin: 0 0 18px;
    }
    .heroCtas{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top: 18px;}
    .heroMeta{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top: 18px;
      color: var(--muted);
      font-weight:600;
      font-size: 13px;
    }
    .pill{
      border: 1px solid var(--soft2);
      background: var(--surface);
      padding: 9px 12px;
      border-radius: 999px;
    }

    .panel{
      border-radius: 10px;
      background: linear-gradient(135deg, var(--surface-strong), var(--surface-soft));
      border: 1px solid var(--soft2);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .panelInner{
      position:relative;
      padding: 18px;
      display:flex;
      flex-direction:column;
      gap: 14px;
      height: auto;
      min-height: 360px;
    }
    .panelInner.collapsed .palettePanel{
      display: none;
    }
    /* Large screens (>= 921px): Collapse palette, keep stage more visible */
    @media (min-width: 921px){
      .panelInner.collapsed{
        min-height: auto;
      }
      .panelInner.collapsed .stage{
        flex: 0 1 auto;
        min-height: 200px;
      }
      .panelInner.collapsed .hint{
        display: none;
      }
    }
    /* Small screens (<= 920px): Collapse palette, shrink stage more */
    @media (max-width: 920px){
      .panelInner.collapsed{
        min-height: auto;
      }
      .panelInner.collapsed .stage{
        flex: 0 1 auto;
        min-height: 160px;
      }
    }
    .panelTop{
      display:flex; align-items:center; justify-content:space-between;
      gap: 12px;
      color: var(--muted);
      font-weight:700;
      font-size: 13px;
      z-index:2;
    }
    .panelToggle{
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
      padding: 4px 8px;
      transition: background 200ms ease, color 200ms ease;
      display: flex;
      align-items: center;
    }
    .panelToggle:hover{
      background: var(--soft);
      color: var(--ink);
    }
    .toggleIcon{
      display: inline-block;
      transition: transform 300ms ease;
    }
    .panelInner.collapsed .toggleIcon{
      transform: rotate(-180deg);
    }
    .panelMark{display:flex; align-items:center; gap:10px;}
    .panelMark img{width:34px; height:34px; object-fit:contain;}
    .hint{
      font-weight:700;
      color: var(--ink);
      padding: 8px 10px;
      border-radius: 999px;
      border: none;
      background: transparent;
      width: fit-content;
      z-index:2;
    }

    .stage{
      position:relative;
      border-radius: 18px;
      border: 1px solid var(--soft);
      background: var(--surface);
      overflow:hidden;
      flex: 1 1 auto;
      min-height: 220px;
      
    }
    canvas#pyramidCanvas{
      position:absolute;
       inset:0;
       scale:1.5;
      display:block;
      cursor: grab;
      z-index: 22;
      touch-action: none;
    }
    canvas#pyramidCanvas:active{cursor: grabbing;}
    @supports not (transform-style: preserve-3d) {
      #pyramid{
        animation: none;
        transform: translate(-50%, -50%);
      }
      .tier .face,
      .tier .cap{display:none;}
      #pyramid::before{
        content:'';
        position:absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-left: 120px solid transparent;
        border-right: 120px solid transparent;
        border-bottom: 208px solid #f3a3a3;
        transform: translate(-50%, -50%);
      }
    }

    .vignette{
      pointer-events:none;
      position:absolute; inset:0;
    }

    .palettePanel{
      display:grid;
      gap: 10px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid var(--soft);
      background: var(--surface);
    }
    .panelLabel{
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 900;
      color: var(--ink);
    }
    .panelInput{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid var(--soft2);
      background: var(--surface-strong);
      font-weight: 700;
      color: var(--ink);
      font-size: 14px;
    }
    .uploadBox{
      border: 1px solid var(--soft2);
      border-radius: 12px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      min-height: 56px;
    }
    #logoInput{
      display: none;
    }
    .uploadBtn{
      border: 1px solid var(--soft2);
      background: var(--surface-strong);
      border-radius: 10px;
      padding: 10px 14px;
      cursor: pointer;
      font-weight: 700;
      color: var(--ink);
      font-size: 14px;
      transition: background 200ms ease, transform 200ms ease;
      flex-grow: 1;
      white-space: nowrap;
    }
    .uploadBtn:hover{
      background: var(--surface);
      transform: translateY(-1px);
    }
    .uploadBtn.hidden{
      display: none;
    }
    .imageContainer{
      position: relative;
      flex-shrink: 0;
      display: none;
    }
    .imageContainer.visible{
      display: block;
    }
    .logoPreview{
      width: 56px;
      height: 56px;
      border-radius: 10px;
      border: 1px solid var(--soft2);
      object-fit: contain;
      background: var(--surface-strong);
      cursor: pointer;
      transition: opacity 200ms ease;
    }
    .logoPreview:hover{
      opacity: 0.8;
    }
    .editOverlay{
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,.4);
      border-radius: 10px;
      opacity: 0;
      transition: opacity 200ms ease;
    }
    .imageContainer:hover .editOverlay{
      opacity: 1;
    }
    .editIcon{
      color: white;
      font-size: 18px;
      font-weight: bold;
    }
    .paletteRow{
      display:flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }
    .paletteSwatch{
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid var(--soft2);
      box-shadow: 0 2px 4px rgba(0,0,0,.06);
    }
    .presetDropdown{
      display:grid;
      gap: 6px;
    }
    .panelSelect{
      border: 1px solid var(--soft2);
      background: var(--surface-strong);
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 700;
      color: var(--ink);
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
      background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding-right: 36px;
    }
    .palettePreview{
      padding: 6px 0 2px;
    }
    .generateBtn{
      padding: 12px 14px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      background: linear-gradient(120deg, var(--primary), var(--secondary));
      color: var(--bg);
      box-shadow: var(--shadow2);
      transition: transform 200ms ease;
    }
    .generateBtn:hover{transform: translateY(-2px);}

    section{padding: 42px 0;}
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap: 18px;
      margin-bottom: 18px;
    }
    .sectionHead.flip{
      flex-direction: row-reverse;
    }
    .sectionHead.flip h2{
      text-align: right;
    }
    .sectionHead.flip p{
      text-align: left;
    }
    .sectionHead h2{
      margin:0;
      font-size: clamp(30px, 4vw, 46px);
      letter-spacing:-0.04em;
      line-height:1.05;
      font-weight: 900;
    }
    .sectionHead p{
      margin:0;
      max-width: 58ch;
      color: var(--muted);
      font-weight: 600;
      line-height:1.5;
    }

    .modernSection{
      padding: 64px 0;
    }
    .modernSection .sectionHead{
      align-items: flex-start;
      margin-bottom: 28px;
    }
    #problems .sectionHead h2,
    #services .sectionHead h2,
    #team .sectionHead h2{
      font-size: clamp(34px, 4.6vw, 56px);
    }
    #problems .sectionHead p,
    #services .sectionHead p,
    #team .sectionHead p{
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.6;
    }

    .fadeItem{
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.8,.2,1);
    }
    .fadeItem.in{
      opacity: 1;
      transform: translateY(0);
    }

    .problemsSection{
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
    }
    .problemsGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 32px;
    }
    .problemItem{
      display:grid;
      grid-template-columns: 64px 1fr;
      gap: 16px;
      padding: 22px 0 22px 16px;
      border-top: 1px solid rgba(12,12,12,.22);
      border-left: 4px solid var(--accent);
      align-items: start;
      transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
      border-radius: 16px;
    }
    .problemItem:hover{
      transform: translateY(-8px);
      box-shadow: 0 18px 36px rgba(12,12,12,.12);
      background: rgba(12,12,12,.03);
    }
    .problemItem .problemCopy{
      transition: transform 220ms ease;
      transform-origin: left center;
    }
    .problemItem:hover .problemCopy{
      transform: scale(1.04);
    }
    .problemIndex{
      font-weight: 900;
      font-size: 20px;
      letter-spacing: 0.08em;
      color: var(--accent);
    }
    .problemCopy h3{
      margin: 0 0 8px;
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .problemCopy p{
      margin: 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.6;
      font-size: clamp(17px, 1.8vw, 20px);
    }

    .servicesSection{
      padding-top: 32px;
    }
    .teamSection{
      padding-top: 28px;
    }
    #problems,
    #services,
    #team,
    #contact{
      --radius: 6px;
      --radius2: 8px;
    }
    .teamList{
      display:grid;
      gap: 34px;
      margin-top: 14px;
    }
    .teamItem{
      display:grid;
      gap: 16px;
      border: none;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      cursor: pointer;
      text-align: left;
      transition: transform 220ms ease;
    }
    .teamItem:hover{
      transform: translateY(-2px);
    }
    .teamHeading{
      margin: 0 auto 2px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: 900;
      letter-spacing: -0.01em;
      text-align: center;
      position: relative;
      width: fit-content;
      padding-bottom: 8px;
    }
    .teamHeading::after{
      content:"";
      position:absolute;
      left: 50%;
      bottom: 0;
      width: 64px;
      height: 3px;
      background: var(--accent);
      transform: translateX(-50%);
      border-radius: 0;
    }
    .teamContent{
      display:grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(18px, 3vw, 36px);
      align-items: center;
    }
    .teamItem:nth-child(even) .teamImage{
      order: 2;
    }
    .teamItem:nth-child(even) .teamCopy{
      order: 1;
    }
    .teamImage{
      border-radius: 6px;
      overflow: hidden;
      background: transparent;
      border: 1px solid rgba(12,12,12,.18);
      width: 100%;
      height: clamp(320px, 38vw, 420px);
      box-shadow: 0 12px 28px rgba(12,12,12,.12);
    }
    .teamImage img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }
    .teamCopy{
      display:grid;
      gap: 10px;
      max-width: 58ch;
    }
    .teamName{
      font-weight: 900;
      font-size: clamp(18px, 1.8vw, 22px);
      color: var(--ink);
    }
    .teamRole{
      font-weight: 700;
      font-size: clamp(16px, 1.5vw, 18px);
      color: var(--muted);
    }
    .teamCopy p{
      margin: 0 0 6px;
      font-weight: 600;
      color: var(--muted);
      line-height: 1.7;
      font-size: clamp(16px, 1.7vw, 20px);
    }

    .ctaPanel{
      border-radius: 26px;
      border: 1px solid var(--soft2);
      background: linear-gradient(135deg, rgba(12,12,12,.92), rgba(111,95,85,.95));
      color: var(--bg);
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 20px;
      padding: 32px;
    }
    .ctaCopy{
      display:grid;
      gap: 10px;
      max-width: 70ch;
    }
    .ctaEyebrow{
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-size: 11px;
      color: rgba(233,225,219,.7);
    }
    .ctaPanel h3{
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: -0.03em;
      font-weight: 900;
    }
    .ctaPanel p{
      margin: 0;
      font-size: 17px;
      line-height: 1.6;
      color: rgba(233,225,219,.85);
      font-weight: 600;
    }
    .footerAddress strong{
      color: #ffffff;
      font-weight: 900;
    }
    .ctaActions{
      display:flex;
      flex-direction: column;
      gap: 10px;
      align-items: stretch;
    }
    .ctaActions .btn{
      justify-content: center;
      text-align: center;
    }
    .socialLinks{
      display:flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
      margin-top: 6px;
    }
    .socialLink{
      display: grid;
      place-items: center;
      color: var(--accent);
      transition: transform 200ms ease, opacity 200ms ease;
    }
    .socialLink:hover{
      transform: translateY(-2px);
      opacity: 0.85;
    }
    .socialLink svg{
      width: 28px;
      height: 28px;
      fill: currentColor;
      display: block;
    }
    .modernFooter{
      margin-top: 26px;
      border-top: 1px solid var(--soft2);
      padding-top: 18px;
      font-size: 14px;
    }

    .teamGrid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .teamCard{
      border-radius: var(--radius);
      border: 1px solid var(--soft2);
      background: var(--surface);
      box-shadow: var(--shadow2);
      padding: 12px;
      text-align:left;
      cursor: pointer;
      display:flex;
      flex-direction:column;
      gap: 12px;
      transition: transform 220ms ease, box-shadow 220ms ease;
      position: relative;
      overflow: hidden; /* hide overflowing image when it scales */
      --tx: 0px; --ty: 0px; --s: 1;
    }
    .teamCard:hover{transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.14);}

    /* image is hidden by default; appears on hover covering content and following cursor */
    .teamImageContainer{
      position: fixed; /* follow viewport */
      left: 0; top: 0;
      width: 0; height: 0;
      overflow: visible;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 220ms ease, visibility 220ms ease;
      z-index: 9999; /* on top of everything */
    }
    .teamImageContainer.visible{
      opacity: 1;
      visibility: visible;
    }
    .teamImageContainer img{
      position: fixed;
      left: 0; top: 0;
      transform: translate(-50%, -50%) scale(1.12);
      height: auto;
      width: auto;
      max-width: none;
      object-fit: cover;
      transition: transform 220ms ease, opacity 200ms ease;
      will-change: transform, opacity;
      pointer-events: none;
      mix-blend-mode: normal;
      filter: none;
      border: none;
      border-radius: 0;
      box-shadow: none;
      animation: floaty 4s ease-in-out infinite;
    }
    @keyframes floaty{
      0%{transform: translate(-50%, -50%) translateY(-6px) scale(1.12)}
      50%{transform: translate(-50%, -50%) translateY(6px) scale(1.13)}
      100%{transform: translate(-50%, -50%) translateY(-6px) scale(1.12)}
    }

    .teamInfo{
      display:flex;
      flex-direction:column;
      gap:6px;
      align-items:flex-start;
      transition: all 300ms ease;
      position: relative;
      z-index: 1; /* ensure text sits under the image when it appears */
      background: transparent;
      padding: 6px 0 0 0;
    }
    .teamInfo .role{
      font-weight:800;
      font-size:13px;
      letter-spacing:.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .teamInfo .name{
      margin:0;
      font-size:18px;
      font-weight:900;
      letter-spacing:-0.02em;
    }
    .teamBio{
      margin:0;
      display:block;
      color: var(--muted);
      font-size:13px;
      line-height:1.4;
      text-transform: lowercase; /* small laters -> lowercase */
    }

    .teamModal{
      position: fixed;
      inset: 0;
      background: var(--bg);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 80;
    }
    .teamModal.open{display:flex;}
    .teamModalClose{
      position: absolute;
      top: 20px;
      right: 20px;
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(12,12,12,.08);
      color: var(--ink);
      border-radius: 999px;
      width: 40px;
      height: 40px;
      display:grid;
      place-items:center;
      cursor: pointer;
    }
    .teamModalContent{
      width: min(1100px, 96vw);
      max-height: 92vh;
      display:flex;
      gap: 18px;
      color: var(--ink);
      align-items: stretch;
      padding: 18px;
    }
    /* Modal image: default (portrait) layout */
    .teamModalImage{
      width: 100%;
      height: auto;
      max-height: 70vh;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      border: none;
      background: transparent;
      display:block;
    }

    /* Wide images (image wider than tall): image on top, text below */
    .teamModal.wide .teamModalContent{flex-direction: column;}
    .teamModal.wide .teamModalImage{width:100%; max-height:70vh;}
    .teamModal.wide .teamModalInfo{width:100%; padding-top: 12px;}

    /* Tall images (image taller than wide): image on the right, text on the left */
    .teamModal.tall .teamModalContent{flex-direction: row;}
    .teamModal.tall .teamModalImage{width:48%; max-height:80vh; align-self:center; order:2}
    .teamModal.tall .teamModalInfo{width:52%; padding-right:20px; align-self:center; order:1}

    /* Remove any framing around modal image */
    .teamModal .teamModalImage, .teamModal .teamModalImage img{border:0; border-radius:0; box-shadow:none}
    .teamModalInfo h3{
      margin: 0 0 6px;
      font-size: 30px;
      font-weight: 900;
      letter-spacing:-0.03em;
    }
    .teamModalInfo span{
      display:block;
      font-weight: 800;
      letter-spacing:.08em;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 10px;
      color: var(--muted);
    }
    .teamModalInfo p{
      margin: 0;
      max-width: 70ch;
      line-height: 1.6;
      color: var(--muted);
      font-weight: 600;
    }

    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      border-radius: var(--radius);
      background: var(--surface);
      border: 1px solid var(--soft2);
      box-shadow: var(--shadow2);
      padding: 18px;

      opacity: 0;
      transform: translateY(14px);
      transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
    }
    .card.in{opacity:1; transform: translateY(0);}
    .card h3{margin: 0 0 8px; font-size: 16px; font-weight: 900; letter-spacing:-0.03em;}
    .card h4{margin: 0 0 12px; font-size: 28px; font-weight: 400;}
    .valueIcon{font-size: 32px; line-height: 1; margin: 0 0 8px;}
    .card p{margin: 0 0 12px; color: var(--ink); line-height: 1.55; font-weight: 700; font-size: 14px;}
    .bullets{
      margin: 0;
      padding-left: 16px;
      color: var(--muted);
      font-weight: 600;
      line-height:1.55;
      font-size: 13px;
    }

    .servicesSection .card{
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 6px 0 6px 16px;
      border-left: 3px solid var(--accent);
      transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
      border-radius: 16px;
    }
    .servicesSection .card.in:hover{
      transform: translateY(-8px);
      box-shadow: 0 18px 36px rgba(12,12,12,.12);
      background: rgba(12,12,12,.03);
    }
    .servicesSection .card h3,
    .servicesSection .card p,
    .servicesSection .card .bullets{
      transition: transform 220ms ease;
      transform-origin: left center;
    }
    .servicesSection .card.in:hover h3,
    .servicesSection .card.in:hover p,
    .servicesSection .card.in:hover .bullets{
      transform: scale(1.04);
    }
    .servicesSection .card{
      transform: translateY(16px);
    }
    .servicesSection .card:nth-child(1){
      transform: translateX(-22px);
    }
    .servicesSection .card:nth-child(2){
      transform: translateY(16px);
    }
    .servicesSection .card:nth-child(3){
      transform: translateX(22px);
    }
    .servicesSection .card.in{
      transform: translateX(0);
    }
    .servicesSection .card h3{
      font-size: clamp(24px, 2.6vw, 34px);
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .servicesSection .card p{
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 700;
    }
    .servicesSection .bullets{
      font-size: clamp(16px, 1.8vw, 20px);
      font-weight: 700;
    }


    .problems{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 14px;
    }
    .problem{
      border-radius: var(--radius);
      border: 1px solid var(--soft2);
      background: var(--surface);
      padding: 16px 16px;
      display:flex;
      gap: 12px;
      align-items:flex-start;

      opacity: 0;
      transform: translateY(14px);
      transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
    }
    .problem.in{opacity:1; transform: translateY(0);}
    .tick{
      width: 28px; height: 28px;
      border-radius: 999px;
      border: 1px solid var(--soft2);
      display:grid; place-items:center;
      background: var(--surface);
      flex: 0 0 auto;
      font-weight: 900;
    }
    .problem strong{display:block; font-weight:900; letter-spacing:-0.02em}
    .problem span{display:block; color: var(--ink); margin-top: 4px; font-weight: 700; line-height:1.45}

    .timeline{
      border-radius: var(--radius2);
      border: 1px solid var(--soft2);
      background: var(--surface);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .step{
      display:grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      padding: 18px 18px;
      border-top: 1px solid var(--soft);

      opacity: 0;
      transform: translateY(10px);
      transition: opacity 950ms ease, transform 950ms cubic-bezier(.2,.8,.2,1);
    }
    .step:first-child{border-top:none}
    .step.in{
      opacity: 1;
      transform: translateY(0);
      animation: fadeGlow 950ms ease both;
    }
    @keyframes fadeGlow{
      0%{filter: blur(.2px); background: rgba(255,255,255,.16)}
      100%{filter: blur(0); background: rgba(255,255,255,0)}
    }
    .num{
      width:44px; height:44px;
      border-radius: 16px;
      background: var(--primary);
      color: var(--bg);
      display:grid; place-items:center;
      font-weight:900;
    }
    .step h4{margin:0 0 6px; font-size: 15px; font-weight:900}
    .step p{margin:0; color: var(--ink); font-weight:700; line-height:1.55; font-size: 14px}

    .processSection{
      position: relative;
    }
    .processSection .sectionParallax{
      top: -20%;
    }
    .processSection .processOrb{
      opacity: 0.6;
    }
    .processSection .orb1{width: 220px; height: 220px; top: 10%; left: 6%;}
    .processSection .orb2{width: 280px; height: 280px; top: 5%; right: 4%;}
    .processSection .orb3{width: 200px; height: 200px; bottom: 12%; left: 40%;}

    .problemsSection .sectionParallax,
    .servicesSection .sectionParallax{
      top: -18%;
    }

    .processRail{
      position: relative;
      display: grid;
      gap: 32px;
      padding: 12px 0;
      overflow: hidden;
      max-width: 980px;
      margin: 0 auto;
    }
    .processRail::before{
      content: "";
      position: absolute;
      left: 50%;
      top: 20px;
      bottom: 20px;
      width: 1px;
      background: linear-gradient(180deg, rgba(12,12,12,0), rgba(12,12,12,.45), rgba(12,12,12,0));
      transform: translateX(-50%) scaleY(0);
      transform-origin: top;
      transition: transform 900ms ease;
    }
    .processRail.in::before{
      transform: translateX(-50%) scaleY(1);
    }
    .processStep{
      display: grid;
      grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
      align-items: flex-start;
      column-gap: 24px;
      padding: 6px 0;
      position: relative;
      z-index: 1;
      opacity: 1;
      transform: none;
      transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
      cursor: pointer;
      border-radius: 16px;
    }
    .processStep:hover{
      transform: translateY(-8px);
      box-shadow: 0 18px 36px rgba(12,12,12,.12);
      background: rgba(12,12,12,.03);
    }
    .processStep .processText{
      transition: transform 220ms ease;
      transform-origin: left center;
    }
    .processStep:hover .processText{
      transform: translateX(0) scale(1.04);
    }
    .processStep.in{
      opacity: 1;
      transform: none;
    }
    .processDot{
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: var(--surface);
      border: 2px solid var(--accent);
      box-shadow: 0 0 0 6px rgba(195,106,45,.12);
      opacity: 0;
      transform: scale(0.2);
      transition: opacity 700ms ease, transform 700ms ease;
      grid-column: 2;
      justify-self: center;
    }
    .processStep.in .processDot{
      opacity: 1;
      transform: scale(1);
    }
    .processNum{
      font-family: inherit;
      font-size: 30px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .processText h4{
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(6px);
      transition: opacity 220ms ease, transform 220ms ease, max-height 220ms ease;
    }
    .processStep:hover .processText h4{
      opacity: 1;
      max-height: 120px;
      transform: translateY(0);
    }
    .processText p{
      margin: 0;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.5;
      font-size: 14px;
    }
    .processStep .processText{
      grid-column: 1;
      text-align: right;
      justify-self: end;
      max-width: 360px;
      opacity: 0;
      transform: translateX(-28px) scale(1);
      transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.8,.2,1);
    }
    .processStep:nth-child(even) .processText{
      grid-column: 3;
      text-align: left;
      padding-right: 0;
      justify-self: start;
      max-width: 360px;
      transform: translateX(28px) scale(1);
    }
    .processStep.in .processText{
      opacity: 1;
      transform: translateX(0) scale(1);
    }
    .processStep.in:hover .processText{
      transform: translateX(0) scale(1.04);
    }

    .cta{
      border-radius: var(--radius2);
      border: 1px solid var(--soft2);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--bg);
      box-shadow: 0 22px 60px rgba(0,0,0,.20);
      padding: 26px;

      opacity: 0;
      transform: translateY(14px);
      transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.8,.2,1);
    }
    .cta.in{opacity:1; transform: translateY(0);}
    .cta h3{
      margin: 0 0 10px;
      font-weight: 900;
      letter-spacing:-0.04em;
      font-size: 28px;
      line-height: 1.05;
    }
    .cta p{
      margin: 0 0 16px;
      color: rgba(233,225,219,.86);
      font-weight: 600;
      line-height:1.5;
      max-width: 70ch;
    }
    .cta .btn{box-shadow:none}
    .cta .btn.primary{
      background: var(--bg);
      color: var(--ink);
      border-color: rgba(233,225,219,.30);
    }

    .footer{
      padding: 18px 0 42px;
      color: var(--muted);
      font-weight: 600;
      font-size: 13px;
      display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap;
    }

    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.8,.2,1);
    }
    .reveal.in{opacity:1; transform: translateY(0);}

    html:not(.js) .reveal,
    html:not(.js) .fadeItem,
    html:not(.js) .card,
    html:not(.js) .problem,
    html:not(.js) .step,
    html:not(.js) .cta{
      opacity:1;
      transform: translateY(0);
    }

@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr; gap: 16px;}
  .grid2{grid-template-columns: 1fr;}
  .grid3{grid-template-columns: 1fr;}
  .problems{grid-template-columns: 1fr;}
  .teamGrid{grid-template-columns: 1fr;}
  .navlinks{display:none;}
  .panel{min-height: 460px;}
  .stage{min-height: 240px;}
  .productIntro{
    flex-direction:column;
    align-items:flex-start;
  }
  .productIntroLogo{
    width: 100%;
    justify-content:flex-start;
  }
  .problemsGrid{
    grid-template-columns: 1fr;
  }
  .teamContent{
    grid-template-columns: 1fr;
  }
  .teamItem:nth-child(even) .teamImage,
  .teamItem:nth-child(even) .teamCopy{
    order: initial;
  }
  .teamImage{
    order: 1;
  }
  .teamCopy{
    order: 2;
  }
  .ctaPanel{
    flex-direction: column;
    align-items: flex-start;
  }
  .ctaActions{
    width: 100%;
  }
  .genFooterGrid{
    grid-template-columns: 1fr;
  }
}

    @media (max-width: 768px){
      .wrap{padding: 0 16px;}
      .hero h1{font-size: clamp(32px, 8vw, 48px);}
      .heroCtas{flex-direction: column; align-items: stretch; gap: 8px;}
      .heroCtas .btn{width: 100%; justify-content: center;}
      .heroMeta{flex-direction: column; gap: 8px;}
      .panelInner{padding: 14px;}
      .palettePanel{gap: 8px; padding: 12px;}
      .step{grid-template-columns: 36px 1fr; gap: 12px; padding: 14px;}
      .num{width: 36px; height: 36px; font-size: 14px;}
      .processRail{
        padding: 22px 14px;
        max-width: none;
      }
      .processRail::before{
        left: 22px;
        transform: scaleY(0);
      }
      .processRail.in::before{
        transform: scaleY(1);
      }
      .processStep{
        grid-template-columns: 18px 1fr;
        gap: 12px;
      }
      .processDot{
        grid-column: 1;
        justify-self: center;
      }
      .processStep .processText,
      .processStep:nth-child(even) .processText{
        grid-column: 2;
        text-align: left;
        padding: 0 0 0 6px;
        transform: translateX(-18px) scale(1);
      }
      .processNum{font-size: 24px;}
      .cta{padding: 20px; text-align: center;}
      .cta h3{font-size: 24px;}
      .cta .heroCtas{justify-content: center;}
      .navcta{flex-direction: column; gap: 8px;}
      .navcta .btn{width: 100%; justify-content: center;}
      .presetSelect{font-size: 14px;}
      .teamImageContainer img{height: 220px;}
      .teamModalImage{height: min(48vh, 420px);}
      .modernSection{
        padding: 48px 0;
      }
      .problemItem{
        grid-template-columns: 52px 1fr;
      }
    }

    @media (max-width: 480px){
      .wrap{padding: 0 12px;}
      .heroGrid{gap: 12px;}
      .panel{min-height: 400px;}
      .stage{min-height: 200px;}
      .step{grid-template-columns: 32px 1fr; padding: 12px;}
      .num{width: 32px; height: 32px; font-size: 12px;}
      .processRail{margin: 0 -12px; border-radius: 0; padding: 24px 14px 18px;}
      .cta{padding: 16px;}
      .cta h3{font-size: 20px;}
      .brand strong{font-size: 16px;}
      .topbar .nav{padding: 10px 0;}
      .brand img{width: 32px; height: 32px;}
      .timeline{margin: 0 -12px; border-radius: 0;}
      .teamGrid{grid-template-columns: 1fr;}
      .teamImageContainer img{height: 200px;}
      .problemItem{
        grid-template-columns: 1fr;
      }
      .problemIndex{
        font-size: 16px;
      }
      .teamHeading::after{
        width: 46px;
      }
    }

.productCarousel{
  padding: 0 6vw 72px;
  display: grid;
  gap: 24px;
}
.backBtnWrap{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.backBtnLarge{
  padding: 14px 22px;
  font-size: 16px;
}
.productIntro{
  min-height: 56vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 26px;
  padding: 22px 0 32px;
}
.genHero{
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 72px;
}
.genHero .sectionParallax{
  inset: -15% -8% auto;
  height: 140%;
}
.genOrb{
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.85;
  transform: translate3d(0,0,0);
  transition: transform 120ms linear;
}
.genOrb1{
  width: 280px;
  height: 280px;
  top: 4%;
  left: 6%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(195,106,45,.2), rgba(255,255,255,0));
}
.genOrb2{
  width: 380px;
  height: 380px;
  top: 10%;
  right: 4%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(12,12,12,.1), rgba(255,255,255,0));
}
.genOrb3{
  width: 220px;
  height: 220px;
  bottom: 6%;
  left: 44%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(111,95,85,.2), rgba(255,255,255,0));
}
.genLine{
  position: absolute;
  height: 2px;
  width: 320px;
  background: linear-gradient(90deg, rgba(12,12,12,0), rgba(12,12,12,.2), rgba(12,12,12,0));
  opacity: .5;
}
.genLine1{top: 18%; left: 18%; transform: rotate(-8deg);}
.genLine2{bottom: 14%; right: 12%; transform: rotate(10deg);}
.genGrid{
  position: absolute;
  inset: 6% 12% auto;
  height: 60%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(12,12,12,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12,12,12,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .35;
}
.genHero .productIntroText{
  position: relative;
  z-index: 2;
}
.genMeta{
  margin-top: 16px;
}
.genCtas{
  margin-top: 18px;
}
.genHero .productIntroLogo{
  position: relative;
  z-index: 2;
}
.genHero .productIntroLogo img{
  filter: drop-shadow(0 20px 40px rgba(12,12,12,.18));
}
.heroAiText{
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 62ch;
}
.genFooter{
  padding: 56px 0 80px;
}
.genFooterGrid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.genFooterCopy h3{
  margin: 8px 0 10px;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  font-weight: 900;
}
.genFooterCopy p{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}
.genForm{
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--soft2);
  background: var(--surface);
}
.genLabel{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--ink);
}
.genInput,
.genTextarea{
  border: 1px solid var(--soft2);
  background: var(--surface-strong);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.genTextarea{
  resize: vertical;
  min-height: 120px;
}
    .productIntroText{
      display:flex;
      flex-direction:column;
      gap: 10px;
      max-width: 60ch;
    }
    .welcomeLabel{
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: clamp(32px, 4.6vw, 64px);
      color: var(--muted);
    }
    .productIntro h2{
      margin:0;
      font-size: clamp(48px, 8vw, 108px);
      font-weight: 900;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      line-height: 1.02;
    }
.productIntro p{
  margin:0;
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}
.heroAiText{
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 60ch;
}
    .productIntroLogo{
      display:flex;
      justify-content:flex-end;
      flex: 0 0 34%;
    }
.productIntroLogo img{
  width: min(360px, 40vw);
  height: auto;
  opacity: 0;
  transition: opacity 200ms ease;
}
    .productIntro.has-logo .productIntroLogo img{
      opacity: 1;
    }
    .buyBtn{
      margin-top: 12px;
      align-self:flex-start;
    }

    .carousel-header{
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }
    .carousel-header h2{
      margin: 0;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      letter-spacing: -0.01em;
    }

    .infiniteCarousel{
      position: relative;
      overflow: hidden;
      padding: 16px 0 32px;
      background: linear-gradient(90deg, var(--bg) 0%, transparent 5%, transparent 95%, var(--bg) 100%);
      border-radius: 12px;
    }
    .infiniteCarousel::before,
    .infiniteCarousel::after{
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 10;
      pointer-events: none;
    }
    .infiniteCarousel::before{
      left: 0;
      background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
    }
    .infiniteCarousel::after{
      right: 0;
      background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
    }

    .infiniteTrack{
      display: flex;
      gap: 24px;
      padding: 0 20px;
      animation: infiniteScroll 26s linear infinite;
      will-change: transform;
    }
    .infiniteTrack:hover{
      animation-play-state: paused;
    }

.infiniteItem{
  width: clamp(320px, 34vw, 460px);
  aspect-ratio: 4 / 3.2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--soft2);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  flex: 0 0 auto;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  padding: 18px;
}
    .infiniteItem img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
.productCardInner{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--soft2);
  background: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}
.productCardTitle{
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.productCardSub{
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
}
.productCardBtn{
  margin-top: 6px;
}
    .infiniteItem:hover{
      transform: translateY(-16px) scale(1.02);
      box-shadow: 0 28px 56px rgba(0,0,0,.16);
    }
    .infiniteItem:focus-visible{
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    @keyframes infiniteScroll{
      0%{
        transform: translateX(0);
      }
      100%{
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px){
      .productCarousel{
        padding: 0 6vw 56px;
      }
      .productIntro{
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
      }
      .productIntroLogo{
        justify-content: flex-start;
      }
      .productIntroLogo img{
        width: min(280px, 70vw);
      }
      .infiniteTrack{
        animation-duration: 20s;
      }
      .infiniteItem{
        width: clamp(220px, 70vw, 320px);
      }
      .infiniteCarousel::before,
      .infiniteCarousel::after{
        width: 40px;
      }
    }

    .brandWall{
      display: grid;
      gap: 18px;
      padding: 10px 0 6px;
    }
    .brandKicker{
      margin: 0;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: .2em;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
    }
    .brandStripWrap{
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
    }
    .brandBtn{
      border: 1px solid var(--soft2);
      background: var(--surface);
      color: var(--ink);
      border-radius: 999px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      font-weight: 800;
      display: grid;
      place-items: center;
      transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .brandBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(12,12,12,.12);
    }
    .brandStrip{
      overflow: hidden;
      padding: 6px 0 18px;
    }
    .brandTrack{
      display: flex;
      gap: 36px;
      align-items: center;
      will-change: transform;
    }
    .brandItem{
      width: clamp(180px, 18vw, 240px);
      aspect-ratio: 3 / 2;
      border-radius: 16px;
      background: transparent;
      border: none;
      box-shadow: none;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }
    .brandItem img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: none;
      opacity: 1;
    }
    .brandItem img[src*="remark"]{
      width: 70%;
      height: auto;
      max-height: 60%;
    }
    .brandItem img[src*="shuttle"]{
      width: 100%;
      height: 100%;
      max-height: none;
      object-fit: cover;
    }
    .brandItem img[src*="fallen-trinkets"],
    .brandItem img[src*="fallen_trinkets"],
    .brandItem img[src*="fallen trinkets"]{
      width: 120%;
      height: auto;
      max-height: 120%;
    }

    @media (max-width: 600px){
      .brandKicker{
        letter-spacing: .12em;
      }
      .brandStripWrap{
        grid-template-columns: 1fr;
      }
      .brandBtn{
        display: none;
      }
      .brandTrack{
        gap: 24px;
      }
      .brandItem{
        width: clamp(140px, 50vw, 200px);
      }
    }

    .workSection{
      padding: 36px 0 0;
    }
    .workWall{
      margin-top: 18px;
      padding: 40px 0 52px;
      border-top: 1px solid var(--soft2);
      border-bottom: 1px solid var(--soft2);
      background:
        radial-gradient(circle at 20% 10%, rgba(12,12,12,.08), transparent 55%),
        linear-gradient(160deg, rgba(255,255,255,.65), rgba(255,255,255,0));
    }
    .workGrid{
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: clamp(20px, 4vw, 36px);
      align-items: stretch;
    }
    .workFeature{
      position: relative;
      min-height: 420px;
      border-radius: 28px;
      padding: clamp(24px, 4vw, 42px);
      color: #f8f7f5;
      background:
        linear-gradient(130deg, rgba(9,9,9,.68), rgba(9,9,9,.25)),
        var(--work-image, linear-gradient(130deg, #cfc7c1, #f1ece8));
      background-size: cover;
      background-position: center;
      display: grid;
      gap: 14px;
      box-shadow: 0 30px 60px rgba(12,12,12,.18);
      overflow: hidden;
    }
    .workFeature::after{
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.18);
      pointer-events: none;
    }
    .workFeatureMeta{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .workLabel{
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0,0,0,.35);
      border: 1px solid rgba(255,255,255,.35);
    }
    .workLabel.muted{
      background: rgba(255,255,255,.08);
    }
    .workFeature h3{
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .workFeature p{
      margin: 0;
      max-width: 46ch;
      color: rgba(255,255,255,.86);
      font-weight: 600;
      line-height: 1.5;
    }
    .workMetrics{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: auto;
    }
    .workMetrics div{
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 18px;
      padding: 14px 16px;
      display: grid;
      gap: 4px;
      backdrop-filter: blur(8px);
    }
    .workMetrics strong{
      font-size: 20px;
    }
    .workMetrics span{
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }
    .workTiles{
      display: grid;
      gap: 16px;
    }
    .workTile{
      position: relative;
      padding: 22px;
      border-radius: 20px;
      min-height: 160px;
      color: #fff;
      display: grid;
      gap: 10px;
      background:
        linear-gradient(140deg, rgba(12,12,12,.72), rgba(12,12,12,.2)),
        var(--work-image, linear-gradient(140deg, #d6d0ca, #f1ece8));
      background-size: cover;
      background-position: center;
      box-shadow: 0 18px 40px rgba(12,12,12,.14);
    }
    .workTile::after{
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.18);
      pointer-events: none;
    }
    .workTag{
      width: fit-content;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: 10px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.35);
      background: rgba(0,0,0,.35);
    }
    .workTile h4{
      margin: 0;
      font-size: 18px;
      font-weight: 800;
    }
    .workTile p{
      margin: 0;
      font-weight: 600;
      color: rgba(255,255,255,.82);
      line-height: 1.5;
    }
    .workFooter{
      margin-top: 26px;
      display: grid;
      gap: 16px;
    }
    .workMarquee{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--muted);
    }
    .workMarquee span{
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--surface-soft);
      border: 1px solid var(--soft2);
    }
    .workBadges{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .workBadges span{
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      background: #0c0c0c;
      color: #f8f7f5;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 11px;
    }

    @media (max-width: 980px){
      .workGrid{
        grid-template-columns: 1fr;
      }
      .workFeature{
        min-height: 380px;
      }
      .workMetrics{
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px){
      .workWall{
        padding: 32px 0 40px;
      }
      .workMetrics{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .workTile{
        min-height: 150px;
      }
      .workBadges span{
        letter-spacing: .08em;
      }
    }

section {
  margin: 0;
}
