  :root {
      --paper: #0E0E0F;
      --ink: #EDEDEA;
      --g1: #ABABAB;
      --g2: #777777;
      --hair: #2C2C2C;
      --display: 'Syne', sans-serif;
      --body: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
      --maxw: 1120px;
  }

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

  body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      font-size: 17px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased
  }

  ::selection {
      background: var(--ink);
      color: var(--paper)
  }

  :focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 2px
  }

  .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px
  }

  a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px
  }

  a:hover {
      text-decoration-thickness: 2px
  }

  .label {
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--g1)
  }

  .secnum {
      font-weight: 600;
      font-size: 13px;
      letter-spacing: .08em;
      color: var(--g2)
  }

  /* header */
  header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: var(--paper);
      border-bottom: 2px solid var(--ink)
  }

  .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px
  }

  .brand {
      font-family: var(--display);
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -.01em;
      text-decoration: none
  }

  .nav-links {
      display: flex;
      gap: 28px
  }

  .nav-links a {
      font-weight: 600;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none
  }

  .nav-links a:hover {
      text-decoration: underline;
      text-underline-offset: 5px
  }

  /* hero */
  .hero {
      padding: clamp(48px, 8vw, 96px) 0
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: clamp(32px, 5vw, 64px);
      align-items: center
  }

  @media(max-width:860px) {
      .hero-grid {
          grid-template-columns: 1fr;
          gap: 36px
      }
  }

  h1 {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(44px, 7.2vw, 86px);
      line-height: .96;
      letter-spacing: -.025em;
      margin: 22px 0 24px
  }

  .lede {
      font-size: clamp(18px, 2vw, 21px);
      color: var(--g1);
      max-width: 32ch;
      margin-bottom: 34px
  }

  .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center
  }

  .btn {
      display: inline-block;
      font-family: var(--body);
      font-weight: 600;
      font-size: 15px;
      padding: 14px 24px;
      border: 2px solid var(--ink);
      background: var(--paper);
      color: var(--ink);
      text-decoration: none;
      cursor: pointer
  }

  .btn.primary {
      background: var(--ink);
      color: var(--paper)
  }

  .btn:hover {
      background: var(--ink);
      color: var(--paper);
      text-decoration: none
  }

  .btn.primary:hover {
      background: #fff
  }

  .proof {
      margin-top: 40px;
      font-size: 13px;
      line-height: 1.9;
      color: var(--g1)
  }

  /* hero figure */
  .figure {
      position: relative;
      border: 2px solid var(--ink);
      background: var(--paper);
      aspect-ratio: 1/0.9;
      min-height: 280px;
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent
  }

  .figure:hover .fcap2 {
      color: var(--ink)
  }

  .spk {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 3;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      padding: 0;
      cursor: pointer;
      line-height: 0;
      background: var(--paper);
      color: var(--ink);
      border: 2px solid var(--ink)
  }

  .spk:hover {
      background: var(--ink);
      color: var(--paper)
  }

  .spk svg {
      display: block
  }

  .spk .spk-body {
      fill: currentColor
  }

  .spk .spk-waves {
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      opacity: 0
  }

  .spk .spk-slash {
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      opacity: 1
  }

  .spk.on .spk-waves {
      opacity: 1
  }

  .spk.on .spk-slash {
      opacity: 0
  }

  .signal-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px
  }

  .tabs {
      display: flex;
      border: 2px solid var(--ink)
  }

  .tab {
      flex: 1;
      font-family: var(--body);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 11px 6px;
      background: var(--paper);
      color: var(--ink);
      border: 0;
      border-left: 2px solid var(--ink);
      cursor: pointer;
      text-align: center;
      line-height: 1
  }

  .tab:first-child {
      border-left: 0
  }

  .tab:hover:not(.on) {
      background: var(--hair)
  }

  .tab.on {
      background: var(--ink);
      color: var(--paper)
  }

  .figure canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block
  }

  .figure .fcap {
      position: absolute;
      left: 12px;
      top: 11px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--g1)
  }

  .figure .fcap2 {
      position: absolute;
      right: 12px;
      bottom: 11px;
      font-size: 11px;
      letter-spacing: .1em;
      color: var(--g2)
  }

  /* sections */
  .sec {
      padding: clamp(56px, 8vw, 96px) 0;
      border-top: 2px solid var(--ink)
  }

  .sec-head {
      display: flex;
      align-items: baseline;
      gap: 18px;
      margin-bottom: 44px;
      flex-wrap: wrap
  }

  .sec-head h2 {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(28px, 3.6vw, 44px);
      letter-spacing: -.01em
  }

  /* services */
  .svc {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 28px;
      align-items: start;
      padding: 28px 0;
      border-top: 1px solid var(--hair)
  }

  .svc:first-of-type {
      border-top: 0
  }

  .svc .tag {
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--g1);
      padding-top: 5px
  }

  .svc h3 {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.01em;
      margin-bottom: 10px
  }

  .svc p {
      color: var(--g1);
      max-width: 62ch
  }

  .svc .links {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 22px
  }

  .svc .links a {
      font-size: 14px;
      font-weight: 500
  }

  @media(max-width:680px) {
      .svc {
          grid-template-columns: 1fr;
          gap: 10px
      }
  }

  /* selected sites */
  .sites {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0
  }

  @media(max-width:680px) {
      .sites {
          grid-template-columns: 1fr
      }
  }

  .sites li {
      border-top: 1px solid var(--hair);
      padding: 0
  }

  .sites a {
      display: block;
      padding: 18px 4px;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none
  }

  .sites a:hover {
      text-decoration: underline;
      text-underline-offset: 4px
  }

  .sites a span {
      color: var(--g2);
      font-weight: 400;
      font-size: 14px;
      margin-left: 8px
  }

  /* contact */
  .contact h2.big {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(34px, 6vw, 68px);
      line-height: 1;
      letter-spacing: -.025em;
      max-width: 16ch;
      margin: 14px 0 22px
  }

  .contact .lede {
      margin-bottom: 32px
  }

  .socials {
      margin-top: 46px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 26px
  }

  .socials a {
      font-size: 14px;
      font-weight: 500
  }

  /* footer */
  footer {
      border-top: 2px solid var(--ink);
      padding: 26px 0
  }

  .foot {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 26px;
      font-size: 13px;
      color: var(--g1)
  }

  .foot a {
      font-weight: 500
  }

  /* loader */
  body.loading {
      overflow: hidden
  }

  .loader {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: var(--paper);
      color: var(--ink);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .72s cubic-bezier(.76, 0, .24, 1)
  }

  .loader.done {
      transform: translateY(-101%)
  }

  .loader .l-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px
  }

  .loader .l-top .brand {
      font-family: var(--display);
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -.01em
  }

  .loader .l-main {
      padding-bottom: 9vh
  }

  .loader .count {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(72px, 17vw, 220px);
      line-height: .85;
      letter-spacing: -.03em;
      display: flex;
      align-items: flex-start
  }

  .loader .count .sign {
      font-size: .32em;
      font-weight: 700;
      margin-top: .55em;
      margin-left: .08em;
      color: var(--g1)
  }

  .loader .bar {
      height: 3px;
      width: 100%;
      background: var(--hair);
      margin-top: 22px;
      overflow: hidden
  }

  .loader .bar-fill {
      height: 100%;
      width: 0;
      background: var(--ink);
      transition: width .18s linear
  }

  @media(prefers-reduced-motion:reduce) {
      html {
          scroll-behavior: auto
      }

      .loader {
          transition: none
      }
  }