:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-2: #1a1a1a;
    --line: #333333;
    --ink: #f2f2f2;
    --muted: #a3a3a3;
    --lime: #AAFE01;
    --lime-dim: rgba(170, 254, 1, 0.14);
    --max: 1214px;
    --pad: clamp(16px, 4vw, 48px);
    --font-sans: "Inter Display", "Geist", ui-sans-serif, system-ui, sans-serif;
    --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  }

  *, *::before, *::after { box-sizing: border-box; }
  * {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  body.nav-open { overflow: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  .wrap {
    width: min(100% - var(--pad) * 2, var(--max));
    margin-inline: auto;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .pixels {
    display: grid;
    grid-template-columns: 6px 6px;
    gap: 2px;
  }
  .pixels i {
    width: 6px; height: 6px;
    background: var(--lime);
    opacity: .85;
  }
  .pixels i:nth-child(2) { opacity: .15; }
  .pixels i:nth-child(3) { opacity: .45; }
  .pixels i:nth-child(4) { opacity: .7; }

  /* Buttons — chamfered Ahrah style */
  .btn {
    --btn-bg: var(--lime);
    --btn-fg: #0a0a0a;
    --btn-border: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 22px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-border);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
  .btn-secondary {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    --btn-border: var(--line);
  }
  .btn-secondary:hover { background: var(--surface); }
  .btn-sm { min-height: 42px; padding: 9px 16px; font-size: 13px; }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo img { height: 21px; width: auto; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 32px);
  }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-toggle {
    display: none;
    width: 40px; height: 40px;
    place-items: center;
    border: 1px solid var(--line);
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }

  /* Blueprint frame — lines + diamond markers */
  .blueprint {
    position: relative;
    width: min(100% - var(--pad) * 2, var(--max));
    margin: 0 auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .blueprint::before,
  .blueprint::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
    pointer-events: none;
  }
  /* Corner / rail joint diamonds — half above + half below the joint */
  .mark-diamond {
    --mark-size: 8px;
    position: absolute;
    z-index: 3;
    pointer-events: none;
    width: var(--mark-size);
    height: var(--mark-size);
    background: #fff;
  }
  .m-tl {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .m-tr {
    top: 0;
    right: 0;
    transform: translate(50%, -50%) rotate(45deg);
  }
  .m-bl {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%) rotate(45deg);
  }
  .m-br {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%) rotate(45deg);
  }
  .m-ml {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .m-mr {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(45deg);
  }
  .m-top-mid {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .m-hero-split-t {
    top: 0;
    left: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .m-hero-split-b {
    bottom: 0;
    left: 60%;
    transform: translate(-50%, 50%) rotate(45deg);
  }

  /* Hero */
  .hero {
    position: relative;
    padding: 0;
    overflow: visible;
  }
  .hero-frame {
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: clamp(420px, 62vh, 560px);
    align-items: stretch;
  }
  .hero-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60%;
    width: 1px;
    background: var(--line);
    z-index: 2;
  }
  .hero-copy-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 64px) clamp(24px, 3.5vw, 52px);
    position: relative;
  }
  .hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: .95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 15ch;
  }
  .hero h1 strong {
    color: var(--lime);
    font-weight: 700;
  }
  .hero-copy {
    max-width: 57ch;
    color: var(--ink);
    font-size: 16px;
    margin: 0 0 28px;
    opacity: .92;
  }
  .hero-copy strong { color: var(--lime); font-weight: 600; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

  /* Side box — fills right grid cell, edges on blueprint lines */
  .hero-side {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-left: 0;
  }
  .terminal {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #0e0e0e;
    border: 0;
    animation: floatIn .7s ease both;
  }
  .term-bar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: #101010;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
    flex: 0 0 auto;
  }
  .term-dots { display: flex; gap: 6px; flex: 0 0 auto; }
  .term-dots i {
    width: 9px; height: 9px; border-radius: 50%;
    background: #3a3a3a;
  }
  .term-title {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .term-ship { flex: 0 0 auto; color: var(--muted); }
  .term-body {
    flex: 1;
    margin: 0;
    padding: 28px 26px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 24px;
    color: #e5e5e5;
    white-space: pre-wrap;
    background:
      linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
  }
  .term-body .muted { color: var(--muted); }
  .term-body .code { color: #e8e8e8; }
  #term-cursor {
    color: var(--lime);
    animation: blink 1s steps(1) infinite;
  }

  /* Brands — continues blueprint */
  .brands {
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .brands-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 18px clamp(24px, 3.5vw, 52px);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #102826;
    border: 1px solid rgba(170,254,1,.45);
    position: relative;
  }
  .badge-pill::before,
  .badge-pill::after,
  .badge-pill .c3,
  .badge-pill .c4 {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-color: var(--lime);
    border-style: solid;
  }
  .badge-pill::before {
    top: -1px; left: -1px;
    border-width: 1px 0 0 1px;
  }
  .badge-pill::after {
    top: -1px; right: -1px;
    border-width: 1px 1px 0 0;
  }
  .badge-pill .c3 {
    bottom: -1px; left: -1px;
    border-width: 0 0 1px 1px;
  }
  .badge-pill .c4 {
    bottom: -1px; right: -1px;
    border-width: 0 1px 1px 0;
  }
  .badge-pill span {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--lime);
    white-space: nowrap;
  }
  .badge-pill img { height: 14px; width: auto; opacity: .9; }
  .ticker {
    position: relative;
    overflow: hidden;
    min-height: 88px;
    border-top: 0;
  }
  .ticker::before,
  .ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
  }
  .ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
  }
  .ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
  }
  .ticker-track {
    display: flex;
    width: max-content;
    height: 88px;
    align-items: stretch;
    animation: ticker 32s linear infinite;
  }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  .ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0 36px;
    border-right: 1px solid var(--line);
    flex: 0 0 auto;
  }
  .ticker-item img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    opacity: .92;
    transition: opacity .2s ease;
  }
  .ticker-item:hover img { opacity: 1; }
  .pixel-bar {
    height: 18px;
    background:
      repeating-linear-gradient(
        90deg,
        #2a2a2a 0 2px,
        #1a1a1a 2px 4px,
        #3a3a3a 4px 5px,
        #151515 5px 8px
      );
    border-top: 1px solid var(--line);
    opacity: .85;
  }

  /* Stack */
  .section { padding: clamp(64px, 10vw, 120px) 0; }
  /* Box line frame — same rails as blueprint; reuse on sections */
  .section-box {
    position: relative;
    width: min(100% - var(--pad) * 2, var(--max));
    margin: 0 auto;
    border: 1px solid var(--line);
    padding: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 40px);
  }
  .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
  }
  .section-head h2 {
    margin: 14px 0 16px;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .section-head p {
    margin: 0 auto;
    color: var(--muted);
    max-width: 48ch;
    font-size: 17px;
  }

  /* Tech stack — single viewport, edge-to-edge radar */
  #stack {
    padding: 0;
  }
  #stack .section-box {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    height: 100svh;
    padding: 0;
    overflow: visible;
  }
  #stack .section-head {
    flex: 0 0 auto;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    padding: clamp(20px, 3.5vh, 36px) clamp(20px, 3vw, 40px) clamp(12px, 2vh, 20px);
  }
  #stack .section-head h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 4vw, 48px);
  }
  #stack .section-head p {
    font-size: 15px;
    max-width: 48ch;
  }
  #stack .section-head .btn {
    min-height: 48px;
    padding: 12px 18px;
  }
  #stack .section-head > div:last-child {
    margin-top: 16px !important;
  }

  /* Tech radar (Technology Radar) */
  .radar-board {
    --radar-blue: #4da3ff;
    --radar-purple: #a78bfa;
    --radar-green: #5eea8a;
    --radar-orange: #ff9f4a;
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
    border: 0;
    background:
      radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0) 0 0 / 22px 22px,
      #0c0c0c;
    overflow: hidden;
    padding: clamp(20px, 3vw, 36px) 0;
  }
  #stack .radar-board {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
  }
  .radar-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: clamp(20px, 3vw, 32px);
  }
  #stack .radar-tabs {
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
    border-bottom: 1px solid var(--line);
  }
  #stack .radar-tab {
    min-height: 42px;
    border-right: 1px solid var(--line);
  }
  #stack .radar-tab:last-child { border-right: 0; }
  #stack .radar-tab::before,
  #stack .radar-tab::after { display: none; }
  .radar-tab {
    --tab: var(--radar-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: clamp(10px, 1.1vw, 12px);
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
    background: transparent;
  }
  .radar-tab::before,
  .radar-tab::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid color-mix(in srgb, var(--tab) 55%, transparent);
    pointer-events: none;
    transition: border-color .2s ease;
  }
  .radar-tab::before {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }
  .radar-tab::after {
    right: 0; bottom: 0;
    border-left: 0; border-top: 0;
  }
  .radar-tab .tab-mark { color: var(--tab); opacity: .85; }
  .radar-tab:hover,
  .radar-tab.is-active {
    color: var(--ink);
    background: color-mix(in srgb, var(--tab) 10%, transparent);
  }
  .radar-tab.is-active::before,
  .radar-tab.is-active::after {
    border-color: var(--tab);
  }
  .radar-tab[data-cat="tools"] { --tab: var(--radar-blue); }
  .radar-tab[data-cat="practices"] { --tab: var(--radar-purple); }
  .radar-tab[data-cat="data"] { --tab: var(--radar-green); }
  .radar-tab[data-cat="langs"] { --tab: var(--radar-orange); }
  .radar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    gap: clamp(16px, 3vw, 36px);
    align-items: center;
    min-height: 420px;
  }
  #stack .radar-layout {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
    gap: 0;
    align-items: stretch;
    min-height: 0;
    height: 100%;
  }
  .radar-stage {
    position: relative;
    width: min(100%, 560px);
    margin: 0 auto;
    aspect-ratio: 1;
  }
  #stack .radar-stage {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    min-height: 0;
    padding: clamp(8px, 1.5vh, 16px);
  }
  #stack .radar-svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1.2;
  }
  #stack .radar-panel {
    min-height: 0;
    height: 100%;
    overflow: auto;
    border-left: 1px solid var(--line);
    padding: clamp(16px, 2.5vh, 28px) clamp(16px, 2vw, 28px);
    opacity: 1;
    transform: none;
    align-content: space-around;
  }
  #stack .radar-cols {
    gap: 14px 20px;
  }
  #stack .radar-group li {
    font-size: 11px;
    gap: 6px;
  }
  .radar-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
  }
  .radar-ring {
    fill: rgba(255,255,255,.03);
    stroke: rgba(255,255,255,.1);
    stroke-width: 1;
    transform-origin: 320px 320px;
    animation: radarRingIn .9s cubic-bezier(.16,1,.3,1) both;
  }
  .radar-ring:nth-child(1) { animation-delay: .05s; fill: rgba(255,255,255,.07); }
  .radar-ring:nth-child(2) { animation-delay: .12s; fill: rgba(255,255,255,.05); }
  .radar-ring:nth-child(3) { animation-delay: .19s; fill: rgba(255,255,255,.035); }
  .radar-ring:nth-child(4) { animation-delay: .26s; fill: rgba(255,255,255,.02); }
  .radar-cross {
    stroke: rgba(0,0,0,.85);
    stroke-width: 10;
  }
  .radar-cross-thin {
    stroke: rgba(255,255,255,.12);
    stroke-width: 1;
  }
  .radar-slice {
    fill: rgba(255,255,255,.08);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
  }
  .radar-slice.is-on { opacity: 1; }
  .radar-label {
    fill: rgba(255,255,255,.38);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .radar-sweep {
    stroke: rgba(170,254,1,.35);
    stroke-width: 1.5;
    transform-origin: 320px 320px;
    animation: radarSweep 8s linear infinite;
  }
  .radar-blip {
    cursor: pointer;
    transform-box: fill-box;
    transform-origin: center;
    opacity: 1;
    animation: radarBlipIn .45s cubic-bezier(.16,1,.3,1) both;
  }
  .radar-blip.is-dim { opacity: .22 !important; }
  .radar-blip.is-hot,
  .radar-blip:hover { opacity: 1 !important; }
  @media (prefers-reduced-motion: reduce) {
    .radar-ring,
    .radar-blip,
    .radar-sweep { animation: none !important; }
  }
  .radar-blip polygon {
    transition: filter .2s ease, transform .2s ease;
  }
  .radar-blip:hover polygon,
  .radar-blip.is-hot polygon {
    filter: drop-shadow(0 0 6px currentColor);
  }
  .radar-blip text {
    fill: #fff;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    pointer-events: none;
    text-anchor: middle;
    dominant-baseline: central;
  }
  .radar-tooltip {
    position: absolute;
    z-index: 3;
    padding: 6px 10px;
    background: #111;
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -140%) scale(.96);
    transition: opacity .15s ease, transform .15s ease;
  }
  .radar-tooltip.is-on {
    opacity: 1;
    transform: translate(-50%, -140%) scale(1);
  }
  .radar-panel {
    min-height: 360px;
    border-left: 1px solid var(--line);
    padding-left: clamp(16px, 2vw, 28px);
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .radar-panel.is-on {
    opacity: 1;
    transform: none;
  }
  .radar-panel-title {
    margin: 0 0 18px;
    color: var(--panel, var(--radar-blue));
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .radar-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }
  .radar-group h4 {
    margin: 0 0 10px;
    color: rgba(255,255,255,.4);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .radar-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }
  .radar-group li {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .02em;
    cursor: pointer;
    transition: color .15s ease;
  }
  .radar-group li .idx { color: rgba(255,255,255,.28); flex: 0 0 auto; }
  .radar-group li.is-hot,
  .radar-group li:hover {
    color: var(--panel, var(--ink));
  }

  /* Compliance */
  #compliance {
    padding-top: 0;
    padding-bottom: 0;
  }
  #compliance .section-box {
    padding: 0;
    overflow: visible;
  }
  #compliance .compliance-row {
    padding-inline: clamp(20px, 3vw, 40px);
  }
  #compliance .pixel-bar:first-of-type {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .compliance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(28px, 4vh, 40px) 0;
    border: 0;
    flex-wrap: wrap;
  }
  .compliance-row h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .certs {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .certs img {
    width: 82px;
    height: 82px;
    object-fit: contain;
  }
  .certs .vdiv {
    width: 1px;
    height: 48px;
    background: var(--line);
  }

  /* Products — two columns: graphic | copy + nav */
  #work {
    padding: 0;
  }
  #work .section-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72svh;
    height: auto;
    padding: 0;
    overflow: visible;
  }
  .cases-viewport {
    --case-gap: clamp(48px, 6vw, 88px);
    position: relative;
    flex: 0 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: var(--case-gap);
    row-gap: 32px;
    align-items: stretch;
    min-height: 0;
    width: min(100%, 1080px);
    margin-inline: auto;
    padding: clamp(36px, 5vh, 56px) clamp(32px, 4vw, 56px);
  }
  .case-stage {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    min-width: 0;
    min-height: 0;
  }
  .case-slide {
    display: none;
  }
  .case-slide.is-active {
    display: contents;
  }
  .case-slide.is-active .case-media,
  .case-slide.is-active .case-body {
    animation: fadeSlide .45s ease;
  }
  .case-media {
    grid-column: 1;
    grid-row: 1 / -1;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 0;
  }
  .viewfinder {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-height: 100%;
  }
  .viewfinder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .viewfinder .vf {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,.85);
    pointer-events: none;
    z-index: 2;
  }
  .viewfinder .vf-tl {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }
  .viewfinder .vf-tr {
    top: 0; right: 0;
    border-left: 0; border-bottom: 0;
  }
  .viewfinder .vf-bl {
    bottom: 0; left: 0;
    border-right: 0; border-top: 0;
  }
  .viewfinder .vf-br {
    bottom: 0; right: 0;
    border-left: 0; border-top: 0;
  }
  .case-body {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
    max-width: none;
    padding: 4px 0 0;
  }
  .case-body .eyebrow {
    color: var(--ink);
    margin-bottom: 18px;
  }
  .case-body .eyebrow .pix {
    width: 8px;
    height: 8px;
    background: var(--lime);
    flex: 0 0 auto;
  }
  .case-body h3 {
    margin: 0 0 14px;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
  }
  .case-body .lede {
    margin: 0 0 18px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 15px;
  }
  .case-body p {
    margin: 0 0 28px;
    color: var(--ink);
    max-width: 42ch;
    font-size: 16px;
    line-height: 1.55;
  }
  .case-body .btn {
    margin-top: 0;
  }
  .case-nav {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }
  .case-arrow {
    --tab: rgba(255,255,255,.55);
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--ink);
    flex: 0 0 auto;
    transition: color .2s ease, background .2s ease, opacity .2s ease;
  }
  .case-arrow::before,
  .case-arrow::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--tab);
    pointer-events: none;
  }
  .case-arrow::before {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }
  .case-arrow::after {
    right: 0; bottom: 0;
    border-left: 0; border-top: 0;
  }
  .case-arrow:hover {
    color: var(--lime);
    --tab: var(--lime);
  }
  .case-arrow:disabled {
    opacity: .35;
    pointer-events: none;
  }
  .case-arrow svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }
  .case-arrow-label { display: none; }
  .case-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
  }
  #work .pixel-bar {
    flex: 0 0 auto;
    border-top: 1px solid var(--line);
  }
  .icon-btn {
    width: 48px; height: 48px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition: background .2s ease, border-color .2s ease;
  }
  .icon-btn:hover { background: var(--surface-2); border-color: #555; }
  .case-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3a3a3a;
    padding: 0;
    transition: background .2s ease, transform .2s ease;
  }
  .dot.is-active {
    background: var(--lime);
    transform: scale(1.15);
  }
  .case-progress {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* Metrics */
  .metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .metric {
    background: var(--bg);
    padding: 36px 24px;
    text-align: center;
  }
  .metric strong {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lime);
    font-variant-numeric: tabular-nums;
  }
  .metric span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
  }

  /* Testimonials */
  #testimonials {
    padding: 0;
  }
  #testimonials .section-box {
    padding: 0;
    overflow: visible;
  }
  #testimonials .pixel-bar:first-of-type {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .t-head {
    padding: clamp(20px, 3vh, 28px) clamp(20px, 3vw, 40px) 0;
  }
  .t-head .eyebrow { color: var(--ink); }
  .t-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    align-items: stretch;
    padding: clamp(20px, 3vh, 32px) clamp(16px, 2.5vw, 36px) clamp(28px, 4vh, 40px);
    min-height: 320px;
  }
  .t-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    background: #171717;
    padding: clamp(28px, 4vw, 48px);
    min-height: 280px;
  }
  .t-card .vf {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255,255,255,.75);
    pointer-events: none;
    z-index: 2;
  }
  .t-card .vf-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
  .t-card .vf-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
  .t-card .vf-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
  .t-card .vf-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
  .t-logo {
    display: grid;
    place-items: center;
    min-height: 120px;
  }
  .t-logo img {
    width: min(100%, 180px);
    height: auto;
    object-fit: contain;
  }
  .t-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
  }
  .t-copy blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--ink);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.45;
    font-weight: 500;
  }
  .t-copy .t-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
  }
  .t-copy .t-role {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
  }
  .t-tabs {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-left: 0;
  }
  .t-tab {
    position: relative;
    width: 58px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: grid;
    place-items: center;
    padding: 16px 0;
    background: #3a3a3a;
    color: #0a0a0a;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.2);
    transition: background .2s ease, color .2s ease, width .2s ease;
  }
  .t-tab:nth-child(1) { background: #2f2f2f; }
  .t-tab:nth-child(2) { background: #4a4a4a; }
  .t-tab:nth-child(3) { background: #5a5a5a; }
  .t-tab.is-active {
    width: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
    pointer-events: none;
  }
  .t-tab::before,
  .t-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,.35);
  }
  .t-tab::before { top: 0; }
  .t-tab::after { bottom: 0; }
  .t-tab:hover { filter: brightness(1.08); }
  .t-panel { display: none; }
  .t-panel.is-active {
    display: contents;
  }
  /* FAQ — two-column */
  #faq {
    padding: 0;
  }
  .faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.2fr);
    gap: 0;
    align-items: stretch;
    border: 1px solid var(--line);
  }
  .faq-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 48px);
    border-right: 1px solid var(--line);
    min-height: 420px;
  }
  .faq-aside .eyebrow {
    position: absolute;
    top: clamp(28px, 4vw, 48px);
    left: clamp(28px, 4vw, 48px);
  }
  .faq-aside h2 {
    margin: 0;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 12ch;
  }
  .faq-list {
    margin: 0;
    border-top: 0;
  }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item:last-child { border-bottom: 0; }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px, 2.4vh, 28px) clamp(18px, 2.5vw, 32px);
    text-align: left;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 600;
    line-height: 1.35;
  }
  .faq-q .q-text { min-width: 0; }
  .faq-q .mark {
    position: relative;
    width: 28px;
    height: 28px;
    border: 0;
    display: grid;
    place-items: center;
    color: var(--lime);
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 500;
    transition: transform .25s ease;
  }
  .faq-q .mark::before,
  .faq-q .mark::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border: 1.5px solid rgba(255,255,255,.7);
    pointer-events: none;
  }
  .faq-q .mark::before {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }
  .faq-q .mark::after {
    right: 0; bottom: 0;
    border-left: 0; border-top: 0;
  }
  .faq-item.is-open .faq-q .mark { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    color: var(--muted);
    padding: 0 clamp(18px, 2.5vw, 32px);
    font-size: 15px;
    line-height: 1.55;
  }
  .faq-item.is-open .faq-a {
    max-height: 480px;
    padding-bottom: 22px;
  }
  @media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-aside {
      min-height: 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
      justify-content: flex-start;
      align-items: flex-start;
      gap: 14px;
      padding: clamp(24px, 5vw, 36px) clamp(18px, 4vw, 32px);
    }
    .faq-aside .eyebrow {
      position: static;
      top: auto;
      left: auto;
    }
    .faq-aside h2 {
      max-width: none;
      width: 100%;
      text-align: left;
    }
    .faq-list { border-left: 0; }
  }

  /* Footer */
  .site-footer {
    margin-top: 0;
    padding: 0;
    border-top: 0;
    background: var(--bg);
  }
  .footer-box {
    position: relative;
    width: min(100% - var(--pad) * 2, var(--max));
    margin: 0 auto;
    border: 1px solid var(--line);
    overflow: visible;
  }
  .footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(0, 1.4fr);
    gap: clamp(32px, 5vw, 64px);
    padding: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 40px);
    border-bottom: 1px solid var(--line);
  }
  .footer-brand .logo img { height: 18px; width: auto; }
  .footer-tagline {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: 15px;
    max-width: 28ch;
  }
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
  }
  .footer-social a {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
  }
  .footer-social a::before,
  .footer-social a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid rgba(255,255,255,.55);
    pointer-events: none;
  }
  .footer-social a::before {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }
  .footer-social a::after {
    right: 0; bottom: 0;
    border-left: 0; border-top: 0;
  }
  .footer-social img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-content: start;
  }
  .footer-nav .nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav h4 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .footer-nav a {
    color: var(--muted);
    font-size: 15px;
    transition: color .15s ease;
  }
  .footer-nav a:hover { color: var(--lime); }
  .footer-hatch {
    height: 16px;
    background:
      repeating-linear-gradient(
        -45deg,
        #2a2a2a 0 2px,
        #151515 2px 6px
      );
    border-bottom: 1px solid var(--line);
    opacity: .9;
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px clamp(24px, 3vw, 40px);
  }
  .footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
  }
  .footer-badges {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-badges img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  }

  /* Reveal */
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
  }
  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }

  @keyframes blink {
    50% { opacity: 0; }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes floatIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes radarRingIn {
    from { opacity: 0; transform: scale(.86); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes radarBlipIn {
    from { opacity: 0; transform: scale(.4); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-grid::before { display: none; }
    .hero-copy-col {
      padding: clamp(28px, 5vw, 40px) clamp(18px, 4vw, 28px);
    }
    .hero h1 {
      max-width: none;
      font-size: clamp(32px, 8vw, 48px);
    }
    .hero-ctas {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 10px;
    }
    .hero-ctas .btn {
      flex: 1 1 0;
      min-width: 0;
      width: auto;
      min-height: 48px;
      padding: 12px 10px;
      font-size: 12px;
      gap: 8px;
      white-space: nowrap;
    }
    .hero-ctas .btn svg {
      width: 16px;
      height: 16px;
    }
    .hero-side {
      min-height: 280px;
      border-top: 1px solid var(--line);
    }
    .term-body {
      padding: 20px 18px;
      font-size: 13px;
      line-height: 22px;
    }
    .term-ship { display: none; }
    .m-hero-split-t,
    .m-hero-split-b { display: none; }

    .brands-top {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 20px clamp(18px, 4vw, 28px);
      min-height: 0;
    }
    .brands-top .eyebrow {
      flex: 1 1 auto;
      min-width: 0;
      max-width: none;
      font-size: 10px;
      letter-spacing: 0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.2;
    }
    .brands-top .eyebrow .pixels {
      flex: 0 0 auto;
    }
    .badge-pill {
      flex: 0 0 auto;
      padding: 6px 10px;
      gap: 8px;
    }
    .badge-pill span {
      font-size: 10px;
      white-space: nowrap;
    }
    .badge-pill img {
      height: 12px;
      width: 12px;
    }
    .ticker-item { min-width: 148px; padding: 0 20px; }

    .section-head {
      padding-inline: clamp(18px, 4vw, 28px);
    }
    .section-head h2 br { display: none; }

    .compliance-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      padding: 28px clamp(18px, 4vw, 28px);
    }
    .certs {
      width: 100%;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 16px;
    }
    .certs .vdiv { display: none; }

    #work .section-box {
      height: auto;
      min-height: 0;
    }
    .cases-viewport {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      column-gap: 0;
      row-gap: 0;
      width: 100%;
      padding: 28px clamp(18px, 4vw, 28px) 16px;
      align-items: stretch;
      justify-content: stretch;
    }
    .case-stage {
      display: block;
      grid-column: 1;
      grid-row: 1;
      grid-template-columns: none;
      grid-template-rows: none;
      width: 100%;
      max-width: none;
      height: auto;
    }
    .case-slide.is-active {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      height: auto;
    }
    .case-slide.is-active .case-media,
    .case-slide.is-active .case-body {
      animation: fadeSlide .45s ease;
    }
    .case-media,
    .case-body {
      grid-column: auto;
      grid-row: auto;
    }
    .case-nav {
      display: flex;
      flex-direction: row;
      grid-column: 1;
      grid-row: 2;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 20px;
      padding: 14px 4px 6px;
      border-top: 1px solid var(--line);
    }
    .case-arrow {
      width: auto;
      min-width: 72px;
      height: 44px;
      padding: 0 10px;
      grid-column: auto;
      grid-row: auto;
      background: var(--surface);
      border: 1px solid var(--line);
    }
    .case-arrow::before,
    .case-arrow::after { display: none; }
    .case-arrow-label {
      display: inline;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .case-pager {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 0;
      flex: 1 1 auto;
    }
    .case-progress {
      font-size: 11px;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }
    .case-body {
      padding: 0;
      max-width: none;
    }
    .case-body .eyebrow { margin-bottom: 12px; }
    .case-body h3 { margin-bottom: 10px; }
    .case-body .lede { margin-bottom: 12px; }
    .case-body p { margin-bottom: 20px; }
    .case-body .btn { width: 100%; }
    .viewfinder {
      width: min(100%, 320px);
      max-height: 42vw;
      margin-inline: auto;
    }

    .metrics { grid-template-columns: repeat(2, 1fr); }
    .metric {
      padding: 28px 16px;
    }
    .metric strong {
      font-size: clamp(36px, 10vw, 48px);
    }

    .t-stage { grid-template-columns: 1fr; }
    .t-card {
      grid-template-columns: 1fr;
      padding: clamp(24px, 5vw, 36px) clamp(18px, 4vw, 28px);
      min-height: 0;
    }
    .t-panel.is-active { display: grid; gap: 18px; }
    .t-tabs {
      width: 100%;
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .t-tabs::-webkit-scrollbar { display: none; }
    .t-tab {
      width: auto;
      flex: 1 1 0;
      writing-mode: horizontal-tb;
      transform: none;
      min-height: 48px;
      min-width: 0;
      font-size: 12px;
      letter-spacing: .06em;
      text-align: center;
    }
    .t-tab.is-active {
      width: auto;
      padding: 12px 8px;
      opacity: 1;
      pointer-events: none;
      background: var(--surface-2);
      color: var(--ink);
    }
    .t-head {
      padding: 28px clamp(18px, 4vw, 28px) 0;
    }

    .radar-layout { grid-template-columns: 1fr; }
    .radar-panel {
      border-left: 0;
      border-top: 1px solid var(--line);
      padding: 20px clamp(18px, 4vw, 28px);
      min-height: 0;
    }
    .radar-tabs { grid-template-columns: 1fr 1fr; }
    #stack .section-box {
      height: auto;
      min-height: 0;
      overflow: visible;
    }
    #stack .section-head {
      padding: 28px clamp(18px, 4vw, 28px) 16px;
    }
    #stack .radar-layout {
      grid-template-columns: 1fr;
      height: auto;
    }
    #stack .radar-stage {
      aspect-ratio: 1;
      max-height: 48vh;
    }
    #stack .radar-panel {
      height: auto;
      border-left: 0;
      border-top: 1px solid var(--line);
    }
    #stack .radar-tab:nth-child(2n) { border-right: 0; }
    #stack .radar-tab:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }

  @media (max-width: 760px) {
    :root { --pad: 18px; }
    .section { padding: 48px 0; }
    .header-inner {
      height: 64px;
      gap: 12px;
      padding-left: max(0px, env(safe-area-inset-left));
      padding-right: max(0px, env(safe-area-inset-right));
    }
    .nav-toggle {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      flex: 0 0 auto;
    }
    .nav-links {
      position: fixed;
      inset: 64px 0 auto 0;
      background: rgba(10, 10, 10, .98);
      border-bottom: 1px solid var(--line);
      flex-direction: column;
      align-items: stretch;
      padding: 8px var(--pad) calc(20px + env(safe-area-inset-bottom));
      gap: 0;
      max-height: calc(100dvh - 64px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transform: translateY(-120%);
      opacity: 0;
      pointer-events: none;
      transition: transform .3s ease, opacity .3s ease;
    }
    .nav-links.is-open {
      transform: none;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links a {
      padding: 16px 0;
      border-bottom: 1px solid #222;
      font-size: 14px;
    }
    .header-cta { display: none; }

    .hero-copy-col {
      padding: 28px 18px 32px;
    }
    .hero-copy { font-size: 15px; margin-bottom: 22px; }
    .hero-side { min-height: 260px; }
    .term-bar { padding: 0 14px; height: 44px; font-size: 12px; }

    .brands-top { padding: 16px 18px; }
    .brands-top .eyebrow { font-size: 10px; }

    .certs img { width: 56px; height: 56px; }
    .compliance-row h2 { font-size: clamp(26px, 7vw, 34px); }

    .cases-viewport { padding: 24px 18px 14px; }
    .case-body h3 { font-size: clamp(28px, 8vw, 36px); }
    .case-arrow {
      min-width: 64px;
      padding: 0 8px;
    }
    .case-arrow-label { font-size: 11px; }
    .case-progress { font-size: 10px; }
    .faq-q {
      padding: 18px;
      font-size: 15px;
      gap: 14px;
    }
    .faq-a { padding-left: 18px; padding-right: 18px; font-size: 14px; }

    .metrics { grid-template-columns: 1fr 1fr; }
    .metric { padding: 24px 12px; }
    .metric span { font-size: 11px; letter-spacing: .04em; }

    .footer-top {
      padding: 28px 18px;
      gap: 28px;
    }
    .footer-nav {
      grid-template-columns: 1fr 1fr;
      gap: 24px 20px;
    }
    .footer-nav .nav-col h4 {
      font-size: 12px;
    }
    .footer-nav .nav-col a {
      font-size: 14px;
    }
    .footer-bottom {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px 16px;
      gap: 12px;
    }
    .footer-bottom p {
      flex: 1 1 auto;
      min-width: 0;
      font-size: 11px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .footer-badges {
      flex: 0 0 auto;
      gap: 8px;
    }
    .footer-badges img {
      width: 28px;
      height: 28px;
    }

    /* Full-bleed horizontal rules; no side rails */
    .blueprint,
    .section-box,
    .footer-box {
      width: 100%;
      border-left: 0;
      border-right: 0;
    }
    .blueprint::before,
    .blueprint::after { display: none; }
    main > .section > .wrap { width: 100%; }
    .faq-layout,
    .metrics {
      border-left: 0;
      border-right: 0;
    }
    .m-tl,
    .m-tr,
    .m-bl,
    .m-br,
    .m-ml,
    .m-mr { display: none; }

  }

  @media (max-width: 420px) {
    .hero-ctas {
      gap: 8px;
    }
    .hero-ctas .btn {
      min-height: 44px;
      padding: 10px 8px;
      font-size: 11px;
      gap: 6px;
    }
    .hero-ctas .btn svg {
      width: 14px;
      height: 14px;
    }
    .contact-submit,
    .case-body .btn {
      white-space: normal;
      text-align: center;
      line-height: 1.25;
      padding-inline: 16px;
    }
    .metric strong { font-size: 32px; }
    .t-tab { font-size: 11px; padding-inline: 6px; }
  }
  /* Legal / Privacy */
  .legal-page .section.legal-section {
    padding: 0;
  }
  .legal-box {
    padding: 0;
    overflow: visible;
    border-bottom: 0;
  }
  .legal-page + .site-footer .footer-box {
    border-top: 0;
  }
  .legal-hero {
    text-align: center;
    padding: clamp(56px, 8vw, 96px) clamp(24px, 4vw, 48px) clamp(40px, 6vw, 64px);
  }
  .legal-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: .95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }
  .legal-meta {
    margin: 18px 0 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .legal-body {
    padding: clamp(36px, 5vw, 56px) clamp(24px, 6vw, 80px) clamp(48px, 6vw, 72px);
    max-width: 820px;
    margin: 0 auto;
  }
  .legal-lede {
    margin: 0 0 36px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
  }
  .legal-block {
    margin: 0 0 32px;
  }
  .legal-block:last-child {
    margin-bottom: 0;
  }
  .legal-block h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .legal-block p,
  .legal-block li {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
  }
  .legal-block p + p,
  .legal-block p + ul {
    margin-top: 12px;
  }
  .legal-block ul {
    margin: 12px 0 0;
    padding-left: 1.25em;
    display: grid;
    gap: 10px;
  }
  .legal-block a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal-block a:hover {
    color: var(--ink);
  }

  /* Contact */
  .contact-page .section.contact-section {
    padding: 0;
  }
  .contact-box {
    padding: 0;
    overflow: visible;
    border-bottom: 0;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
  }
  .contact-page + .site-footer .footer-box {
    border-top: 0;
  }
  .contact-intro {
    padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-intro h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }
  .contact-lede {
    margin: 0 0 36px;
    max-width: 34ch;
    color: var(--muted);
    font-size: 17px;
  }
  .contact-person {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 22px 22px 20px;
    max-width: 420px;
  }
  .person-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .person-avatar {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #1f2a0a 0%, #141414 55%, #0f0f0f 100%);
    border: 1px solid #3a4a12;
    color: var(--lime);
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .person-row strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
  }
  .person-row span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
  }
  .contact-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .contact-points li {
    position: relative;
    padding-left: 16px;
    color: var(--ink);
    font-size: 12px;
    line-height: 1.45;
  }
  .contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted);
  }
  .contact-points em {
    font-style: normal;
    color: var(--lime);
    font-weight: 600;
  }
  .contact-form {
    padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }
  .contact-form .field {
    display: grid;
    gap: 8px;
  }
  .contact-form .field > span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .contact-form .field-hint {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-mono);
    line-height: 1.4;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 0;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .15s ease, background .15s ease;
  }
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.45;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #666;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #555;
    background: #0d0d0d;
  }
  .field-affix {
    position: relative;
    display: block;
  }
  .field-affix .affix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 14px;
    pointer-events: none;
  }
  .field-affix input {
    padding-left: 34px;
  }
  .contact-form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .contact-submit {
    width: 100%;
    margin-top: 6px;
  }
  .form-status {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
  }
  .form-status.is-success { color: var(--lime); }
  .form-status.is-error { color: #ff6b6b; }
  .contact-submit:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
  }

  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
      min-height: 0;
    }
    .contact-intro {
      border-right: 0;
      border-bottom: 1px solid var(--line);
      justify-content: flex-start;
    }
    .contact-person { max-width: none; width: 100%; }
    .contact-form { justify-content: flex-start; }
  }

  @media (max-width: 760px) {
    .contact-intro,
    .contact-form {
      padding: 28px 18px 32px;
    }
    .contact-intro h1 {
      font-size: clamp(32px, 9vw, 44px);
      margin: 14px 0 12px;
    }
    .contact-lede {
      font-size: 15px;
      margin-bottom: 24px;
      max-width: none;
    }
    .contact-person { padding: 18px; }
    .contact-points li { font-size: 14px; }
    .contact-form { gap: 16px; }
    .contact-submit { min-height: 52px; }

    .legal-hero {
      padding: 40px 18px 32px;
      text-align: left;
    }
    .legal-hero h1 {
      font-size: clamp(32px, 9vw, 48px);
    }
    .legal-meta {
      font-size: 13px;
      margin-top: 12px;
    }
    .legal-body {
      padding: 28px 18px 40px;
    }
    .legal-lede,
    .legal-block p,
    .legal-block li {
      font-size: 15px;
    }
    .legal-block h2 { font-size: 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
    }
    .ticker-track { animation: none; }
  }