@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

    :root {
      --bg: #0a0010;
      --bg2: #0d0616;
      --card: rgba(255, 255, 255, .035);
      --pu: #7c3aed;
      --pu2: #a78bfa;
      --gold: #d4af37;
      --amber: #f59e0b;
      --cyan: #22d3ee;
      --green: #10b981;
      --rose: #f43f5e;
      --pink: #ec4899;
      --lime: #a3e635;
      --text: #f3f4f6;
      --muted: #9ca3af;
      --muted2: #6b7280;
      --line: rgba(124, 58, 237, .22)
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      line-height: 1.65;
      overflow-x: hidden
    }

    a {
      color: inherit
    }

    .display {
      font-family: 'Plus Jakarta Sans', sans-serif
    }

    .mono,
    code {
      font-family: 'JetBrains Mono', monospace
    }

    .container {
      width: min(1200px, 100%);
      margin: auto;
      padding: 0 24px
    }

    section {
      position: relative;
      padding: 96px 0;
      scroll-margin-top: 72px
    }

    section:nth-of-type(odd) {
      background: linear-gradient(180deg, var(--bg), #0c0314, var(--bg))
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 54px
    }

    .section-head h2 {
      font: 800 clamp(1.8rem, 5vw, 2.65rem)/1.15 'Plus Jakarta Sans';
      letter-spacing: 0;
      margin-bottom: 14px
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.03rem
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--pu2);
      font: 600 .72rem 'JetBrains Mono';
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 12px
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      min-width: 0
    }

    .card:hover {
      border-color: rgba(124, 58, 237, .48)
    }

    .grid {
      display: grid;
      gap: 18px
    }

    .g2,
    .g3,
    .g4 {
      grid-template-columns: 1fr
    }

    .grid>*,
    .split>*,
    .nav-inner>*,
    .sti-grid>* {
      min-width: 0
    }

    .title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px
    }

    .icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(124, 58, 237, .2);
      color: var(--pu2);
      font-weight: 800;
      flex: 0 0 auto
    }

    .card h3,
    .card h4 {
      font-family: 'Plus Jakarta Sans';
      line-height: 1.3
    }

    .card h3 {
      font-size: 1.12rem
    }

    .card h4 {
      font-size: .94rem
    }

    .card p {
      color: var(--muted);
      font-size: .86rem
    }

    .tag {
      display: inline-block;
      border: 1px solid rgba(212, 175, 55, .25);
      background: rgba(212, 175, 55, .08);
      color: #fde68a;
      border-radius: 5px;
      padding: 3px 8px;
      font: .65rem 'JetBrains Mono';
      overflow-wrap: anywhere
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s, transform .65s
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    .scrollbox {
      overflow-x: auto
    }

    .table {
      width: 100%;
      border-collapse: collapse;
      min-width: 570px
    }

    .table th,
    .table td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(124, 58, 237, .16);
      text-align: left;
      font-size: .82rem
    }

    .table th {
      color: var(--muted);
      font-weight: 600
    }

    .table td {
      color: #d1d5db
    }

    .table td:last-child {
      color: #c4b5fd;
      font-family: 'JetBrains Mono'
    }

    /* shared site chrome */
    .lpbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      width: 100%;
      padding: 9px 18px;
      background: #0b0b12;
      border-bottom: 2px solid #caa14b;
      position: relative;
      z-index: 1000;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
    }

    .lpbar a {
      text-decoration: none
    }

    .lpbrand {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #f5f2e8;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .6px
    }

    .lpdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #caa14b;
      box-shadow: 0 0 8px #caa14b
    }

    .lpright {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .lpright span {
      color: #8b8b96;
      font-size: 11px
    }

    .lpall {
      color: #caa14b;
      border: 1px solid rgba(202, 161, 75, .55);
      padding: 5px 11px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 11px;
      white-space: nowrap
    }

    /* navigation */
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 900
    }

    .site-nav {
      border-bottom: 1px solid transparent;
      transition: .25s
    }

    .site-nav.scrolled {
      background: rgba(10, 0, 16, .9);
      border-color: var(--line);
      backdrop-filter: blur(16px)
    }

    .nav-inner {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 0;
      background: none;
      color: white;
      cursor: pointer
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, var(--gold), var(--pu));
      font: 800 .9rem 'JetBrains Mono'
    }

    .brand-name {
      font: 700 .95rem 'Plus Jakarta Sans';
      white-space: nowrap
    }

    .nav-links {
      display: none;
      align-items: center
    }

    .nav-links a {
      padding: 7px 7px;
      text-decoration: none;
      color: #cbd5e1;
      font-size: .68rem;
      white-space: nowrap;
      border-radius: 6px
    }

    .nav-links a:hover {
      color: #fde68a;
      background: rgba(255, 255, 255, .05)
    }

    .burger {
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .03);
      color: white;
      border-radius: 7px;
      font-size: 1.15rem;
      cursor: pointer
    }

    .mobile-menu {
      display: none;
      padding: 8px 24px 14px;
      background: rgba(10, 0, 16, .97);
      border-bottom: 1px solid var(--line);
      columns: 2
    }

    .mobile-menu.open {
      display: block
    }

    .mobile-menu a {
      display: block;
      padding: 9px;
      color: #cbd5e1;
      text-decoration: none;
      font-size: .82rem;
      border-radius: 6px
    }

    .mobile-menu a:hover {
      background: rgba(255, 255, 255, .05);
      color: #fde68a
    }

    /* hero */
    .hero {
      min-height: calc(100vh - 40px);
      display: flex;
      align-items: center;
      padding: 92px 0 70px;
      overflow: hidden;
      background: radial-gradient(circle at 50% 25%, rgba(124, 58, 237, .2), transparent 43%), linear-gradient(180deg, #160827, var(--bg) 80%)
    }

    .hero .container {
      text-align: center;
      position: relative;
      z-index: 2
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(124, 58, 237, .45);
      background: rgba(124, 58, 237, .15);
      color: #c4b5fd;
      border-radius: 999px;
      padding: 6px 15px;
      font-size: .76rem;
      margin-bottom: 24px
    }

    .hero h1 {
      max-width: 950px;
      margin: 0 auto 20px;
      font: 800 clamp(2.2rem, 7vw, 4.7rem)/1.08 'Plus Jakarta Sans';
      letter-spacing: 0;
      background: linear-gradient(95deg, #fff, #ddd6fe, #fff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent
    }

    .hero-sub {
      max-width: 730px;
      margin: 0 auto 26px;
      color: var(--muted);
      font-size: clamp(.96rem, 2vw, 1.2rem)
    }

    .hero-chip {
      width: min(330px, 82vw);
      margin: 0 auto 25px;
      display: block
    }

    .cta-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px
    }

    .btn {
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 8px;
      padding: 12px 24px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      background: rgba(255, 255, 255, .05);
      cursor: pointer
    }

    .btn.primary {
      background: linear-gradient(90deg, #6d28d9, #7c3aed);
      border-color: #8b5cf6
    }

    .btn:hover {
      transform: translateY(-1px)
    }

    /* architecture */
    .states {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 22px
    }

    .state {
      width: 60px;
      text-align: center
    }

    .state b {
      display: grid;
      place-items: center;
      height: 56px;
      border-radius: 8px;
      font-family: 'JetBrains Mono'
    }

    .state small {
      color: var(--muted2);
      font-size: .62rem
    }

    .neg b {
      background: rgba(124, 58, 237, .28);
      color: #c4b5fd
    }

    .zero b {
      background: rgba(107, 114, 128, .25);
      color: #d1d5db
    }

    .pos b {
      background: rgba(212, 175, 55, .25);
      color: #fde68a
    }

    .props {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 20px
    }

    .prop {
      text-align: center;
      background: rgba(212, 175, 55, .07);
      border: 1px solid rgba(212, 175, 55, .16);
      padding: 8px;
      border-radius: 7px
    }

    .prop b {
      color: #fbbf24;
      font: .78rem 'JetBrains Mono'
    }

    .prop small {
      display: block;
      color: var(--muted2);
      font-size: .65rem
    }

    .diagram {
      margin: 36px auto;
      max-width: 780px
    }

    .diagram h3 {
      text-align: center;
      margin-bottom: 18px
    }

    .diagram svg {
      width: 100%;
      display: block
    }

    .gate-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px
    }

    .gate {
      padding: 18px
    }

    .gate-top {
      display: flex;
      justify-content: space-between;
      gap: 8px
    }

    .gate-sym {
      color: var(--pu2);
      font: 1.5rem 'JetBrains Mono'
    }

    .gate-desc {
      min-height: 42px;
      margin: 6px 0 12px
    }

    .truth {
      display: grid;
      grid-template-columns: 24px repeat(3, 27px);
      gap: 4px;
      align-items: center
    }

    .truth.one {
      grid-template-columns: 24px repeat(3, 27px) 20px repeat(3, 27px)
    }

    .trit {
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border-radius: 4px;
      font: bold .72rem 'JetBrains Mono'
    }

    .trit.n {
      background: rgba(124, 58, 237, .9)
    }

    .trit.z {
      background: rgba(107, 114, 128, .4)
    }

    .trit.p {
      background: rgba(212, 175, 55, .9);
      color: #1a1000
    }

    .th {
      font: .62rem 'JetBrains Mono';
      color: var(--muted2);
      text-align: center
    }

    /* compute & data cards */
    .unit {
      border-top: 2px solid var(--accent, var(--pu))
    }

    .unit .icon {
      background: color-mix(in srgb, var(--accent) 18%, transparent);
      color: var(--accent)
    }

    .unit h3 {
      margin-bottom: 8px
    }

    .proscons {
      margin: 32px 0
    }

    .pros {
      border-color: rgba(16, 185, 129, .32);
      background: rgba(16, 185, 129, .055)
    }

    .cons {
      border-color: rgba(244, 63, 94, .3);
      background: rgba(244, 63, 94, .05)
    }

    .list {
      list-style: none
    }

    .list li {
      padding: 9px 0 9px 22px;
      position: relative;
      color: var(--muted);
      font-size: .82rem
    }

    .list li:before {
      content: '+';
      position: absolute;
      left: 0;
      color: var(--green);
      font-weight: bold
    }

    .cons .list li:before {
      content: '!';
      color: var(--rose)
    }

    .list b {
      display: block;
      color: white
    }

    .feature h4 {
      margin-bottom: 5px
    }

    .feature .tag {
      float: right;
      margin-left: 8px
    }

    .format-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 16px
    }

    /* ISA */
    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 30px
    }

    .stat {
      text-align: center
    }

    .stat b {
      display: block;
      color: #e9d5ff;
      font: 800 1.8rem 'Plus Jakarta Sans'
    }

    .stat span {
      color: var(--muted);
      font-size: .76rem
    }

    .encoding {
      display: grid;
      gap: 10px
    }

    .enc {
      border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
      border-radius: 7px;
      overflow: hidden
    }

    .enc-head {
      display: flex;
      justify-content: space-between;
      padding: 9px 12px;
      background: color-mix(in srgb, var(--accent) 10%, transparent);
      font: .74rem 'JetBrains Mono';
      color: var(--accent)
    }

    .enc p {
      padding: 9px 12px
    }

    .isa-group {
      padding: 0;
      overflow: hidden
    }

    .isa-head {
      padding: 10px 14px;
      border-bottom: 1px solid var(--line);
      font-weight: 700
    }

    .inst {
      padding: 10px 14px;
      border-bottom: 1px solid rgba(124, 58, 237, .1)
    }

    .inst:last-child {
      border: 0
    }

    .inst code:first-child {
      font-weight: 700
    }

    .inst code+code {
      color: var(--muted2);
      font-size: .62rem
    }

    .inst p {
      font-size: .72rem;
      margin-top: 3px
    }

    /* advanced */
    .equation-layout {
      display: grid;
      gap: 22px
    }

    .eq-buttons {
      display: grid;
      gap: 8px
    }

    .eq-btn {
      width: 100%;
      text-align: left;
      border: 1px solid var(--line);
      background: var(--card);
      color: white;
      padding: 14px;
      border-radius: 8px;
      cursor: pointer
    }

    .eq-btn.active {
      border-color: var(--pu2);
      background: rgba(124, 58, 237, .16)
    }

    .eq-btn b {
      font-family: 'Plus Jakarta Sans'
    }

    .eq-btn small {
      display: none;
      color: var(--muted);
      margin-top: 5px
    }

    .eq-btn code {
      display: none;
      color: #fbbf24;
      font-size: .68rem
    }

    .eq-btn.active small,
    .eq-btn.active code {
      display: block
    }

    .eq-stage {
      display: grid;
      place-items: center;
      min-height: 360px
    }

    .eq-stage svg {
      width: min(420px, 100%)
    }

    /* bio */
    .encoder-controls {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
      margin: 15px 0
    }

    .base-btn {
      width: 44px;
      height: 44px;
      border-radius: 7px;
      background: color-mix(in srgb, var(--base) 15%, transparent);
      border: 1px solid color-mix(in srgb, var(--base) 55%, transparent);
      color: var(--base);
      font: 700 1rem 'Plus Jakarta Sans';
      cursor: pointer
    }

    .clear-btn {
      margin-left: auto
    }

    .encoded {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      min-height: 146px;
      padding: 14px;
      background: rgba(0, 0, 0, .22);
      border: 1px solid var(--line);
      border-radius: 8px
    }

    .base-cell {
      width: 34px;
      text-align: center
    }

    .base-cell b {
      display: block;
      padding: 4px;
      border: 1px solid var(--bc);
      color: var(--bc)
    }

    .base-cell span {
      display: flex
    }

    .base-cell i {
      width: 17px;
      height: 28px;
      display: grid;
      place-items: center;
      font: 700 .65rem 'JetBrains Mono';
      font-style: normal
    }

    .encoder-meta {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 8px;
      color: var(--muted);
      font-size: .7rem
    }

    .neuron-state {
      text-align: center;
      font: 700 1rem 'JetBrains Mono'
    }

    /* transistor */
    .sti-grid {
      display: grid;
      gap: 24px;
      align-items: center
    }

    .sti-buttons {
      display: flex;
      gap: 8px;
      margin: 12px 0 18px
    }

    .sti-buttons button {
      border: 1px solid var(--line);
      background: var(--card);
      color: var(--muted);
      padding: 9px 18px;
      border-radius: 7px;
      font: bold .78rem 'JetBrains Mono';
      cursor: pointer
    }

    .sti-buttons button.active {
      background: rgba(124, 58, 237, .35);
      color: white;
      border-color: var(--pu2)
    }

    .sti-output {
      display: inline-block;
      padding: 6px 12px;
      border: 1px solid var(--out);
      color: var(--out);
      background: color-mix(in srgb, var(--out) 14%, transparent);
      border-radius: 7px;
      font: .78rem 'JetBrains Mono'
    }

    .fet {
      fill: #1b2130;
      stroke: #374151;
      stroke-width: 1.5
    }

    .fet.partial {
      fill: var(--pu);
      stroke: var(--pu2)
    }

    .fet.on {
      fill: var(--amber);
      stroke: #fbbf24
    }

    .fet-label {
      font: 700 9px 'JetBrains Mono';
      fill: #9ca3af
    }

    .fet.on+.fet-label,
    .fet.partial+.fet-label {
      fill: #0a0010
    }

    .circuit-grid {
      margin-top: 30px
    }

    .circuit svg {
      width: 150px;
      flex: 0 0 auto
    }

    .circuit-inner {
      display: flex;
      gap: 15px;
      align-items: center
    }

    /* pipeline/fab/perf/roadmap */
    .pipeline {
      display: flex;
      gap: 5px;
      min-width: 760px
    }

    .stage {
      flex: 1;
      text-align: center;
      padding: 12px 5px;
      border: 1px solid var(--line);
      border-radius: 6px;
      font: .65rem 'JetBrains Mono';
      color: #c4b5fd
    }

    .stage:nth-child(n+5):nth-child(-n+8) {
      color: #fde68a;
      border-color: rgba(212, 175, 55, .25)
    }

    .stage:nth-child(n+9) {
      color: #6ee7b7;
      border-color: rgba(16, 185, 129, .25)
    }

    .flow {
      height: 5px;
      background: rgba(124, 58, 237, .15);
      overflow: hidden;
      border-radius: 3px;
      margin-top: 14px
    }

    .flow:after {
      content: '';
      display: block;
      width: 25%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--pu2), transparent);
      animation: flow 3s linear infinite
    }

    @keyframes flow {
      to {
        transform: translateX(500%)
      }
    }

    .fab-timeline {
      position: relative
    }

    .fab-timeline:before {
      content: '';
      position: absolute;
      left: 18px;
      top: 5px;
      bottom: 5px;
      width: 1px;
      background: linear-gradient(var(--pu), var(--gold), var(--pu))
    }

    .fab-step {
      position: relative;
      margin: 0 0 18px 46px
    }

    .fab-step:before {
      content: '';
      position: absolute;
      left: -33px;
      top: 19px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 4px var(--bg)
    }

    .charts {
      display: grid;
      gap: 25px
    }

    .chart h4 {
      text-align: center;
      font-size: .83rem;
      margin-bottom: 8px
    }

    .bars {
      height: 190px;
      display: flex;
      align-items: end;
      gap: 12px;
      border-bottom: 1px solid #374151;
      padding: 8px 8px 0
    }

    .bar-col {
      flex: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: end;
      text-align: center;
      min-width: 0
    }

    .bar {
      height: var(--h);
      min-height: 3px;
      background: var(--c);
      opacity: .68;
      border-radius: 4px 4px 0 0;
      position: relative
    }

    .bar-col:first-child .bar {
      opacity: 1
    }

    .bar em {
      position: absolute;
      top: -19px;
      left: 50%;
      transform: translateX(-50%);
      font: 600 .58rem 'JetBrains Mono';
      color: #d1d5db;
      font-style: normal
    }

    .bar-col small {
      height: 36px;
      padding-top: 5px;
      color: var(--muted);
      font-size: .55rem;
      line-height: 1.1;
      overflow-wrap: anywhere
    }

    .roadmap {
      display: grid;
      gap: 16px
    }

    .mile {
      position: relative;
      padding-left: 58px
    }

    .mile:before {
      content: '';
      position: absolute;
      left: 17px;
      top: 4px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid var(--pu);
      background: var(--bg)
    }

    .mile.done:after {
      content: '?';
      position: absolute;
      left: 24px;
      top: 7px;
      color: #34d399;
      font-weight: bold
    }

    .mile.done:before {
      border-color: #34d399;
      background: rgba(16, 185, 129, .12)
    }

    .mile time {
      color: var(--pu2);
      font: .72rem 'JetBrains Mono'
    }

    .mile.done time {
      color: #34d399
    }

    .mile h4 {
      margin: 2px 0
    }

    .mile p {
      color: var(--muted);
      font-size: .76rem
    }

    footer {
      padding: 45px 0;
      border-top: 1px solid var(--line)
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .footer-text p {
      color: var(--muted);
      font-size: .78rem
    }

    .footer-copy {
      color: var(--muted2);
      font-size: .7rem
    }

    .lpfooter {
      padding: 10px 18px;
      background: #0b0b12;
      border-top: 1px solid rgba(202, 161, 75, .3);
      text-align: center;
      font: 12px -apple-system, sans-serif
    }

    .lpfooter a {
      color: #caa14b;
      text-decoration: none;
      font-weight: 700
    }

    .lpfooter span {
      color: #4a4a55;
      margin-left: 15px
    }

    @media(min-width:640px) {

      .g2,
      .g3,
      .g4 {
        grid-template-columns: repeat(2, 1fr)
      }

      .gate-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .encoding {
        grid-template-columns: repeat(3, 1fr)
      }

      .charts {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(min-width:850px) {

      .equation-layout,
      .sti-grid,
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 34px
      }

      .roadmap {
        grid-template-columns: repeat(6, 1fr);
        position: relative
      }

      .roadmap:before {
        content: '';
        position: absolute;
        left: 4%;
        right: 4%;
        top: 18px;
        height: 1px;
        background: var(--line)
      }

      .mile {
        padding: 48px 4px 0;
        text-align: center
      }

      .mile:before {
        left: 50%;
        transform: translateX(-50%)
      }

      .mile.done:after {
        left: 50%;
        transform: translateX(-50%)
      }
    }

    @media(min-width:1024px) {
      .g3 {
        grid-template-columns: repeat(3, 1fr)
      }

      .g4 {
        grid-template-columns: repeat(4, 1fr)
      }

      .gate-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(min-width:1360px) {
      .nav-links {
        display: flex
      }

      .burger {
        display: none
      }

      .mobile-menu {
        display: none !important
      }

      .site-nav .container {
        width: min(1400px, 100%)
      }
    }

    @media(max-width:520px) {
      .container {
        padding: 0 16px
      }

      section {
        padding: 76px 0
      }

      .lpright span {
        display: none
      }

      .mobile-menu {
        padding-left: 12px;
        padding-right: 12px
      }

      .brand-name {
        font-size: .84rem
      }

      .hero {
        padding-top: 70px
      }

      .card {
        padding: 18px
      }

      .props {
        grid-template-columns: 1fr
      }

      .truth.one {
        grid-template-columns: 20px repeat(3, 25px);
        grid-auto-rows: 27px
      }

      .truth.one .arrow {
        display: none
      }

      .circuit-inner {
        align-items: flex-start;
        flex-direction: column
      }

      .encoder-meta {
        flex-direction: column
      }

      .table {
        min-width: 520px
      }
    }

    @media(prefers-reduced-motion:reduce) {
      html {
        scroll-behavior: auto
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none
      }

      .flow:after {
        animation: none
      }

      svg animate {
        display: none
      }
    }
