  :root {
    --bg: #0a0a0a;
    --card: #141414;
    --card2: #171717;
    --border: #232323;
    --border2: #2a2a2a;
    --text: #EDECE9;
    --muted: #9B9B9B;
    --muted2: #6B6B6B;
    --accent: #FF7139;
    --btn-bg: #f90130;
  }

* {
  scrollbar-width: thin;
  scrollbar-color: hsl(0 0% 85%) transparent;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: hsl(0 0% 85%);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: hsl(0 0% 75%);
}

/* Hide scrollbar for sidebar but keep scroll */
.sidebar-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar-scroll::-webkit-scrollbar {
  display: none;
}

/* Show on hover only */
.sidebar-scroll:hover {
  scrollbar-width: thin;
}
.sidebar-scroll:hover::-webkit-scrollbar {
  display: block;
  width: 4px;
}
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-system, -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  a {
    color: #fff;
    text-decoration: none;
  }

  .wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 0;
    font-size: 13px;
    letter-spacing: -0.01em;
  }

  .top-left {
    color: var(--muted2);
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .dot {
    width: 6px;
    height: 6px;
    background: #2ECC71;
    border-radius: 50%;
    display: inline-block
  }

  .top-right {
    color: var(--muted2);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px
  }

  .hero {
    padding: 96px 0 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    line-height: 1;
  }

  .hero .youtube {
    background: #f90130;
    padding: 3px;
    cursor: pointer;
    text-decoration: underline;
  } 
 

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border2);
    background: var(--card);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12.5px;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: -0.02em;
  }

  .badge b {
    color: var(--text);
    font-weight: 500
  }

  h1 {
    margin-top: 28px;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 650;
  }

  .why {
    margin-top: 26px;
  }

  p {
    font-size: 15.5px;
    margin: 20px 16px;
  }

  h1 span.muted {
    color: var(--muted2);
    font-weight: 450
  }


  .mock-wrap {
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
  }

  .mock-wrap video {
    width: 100%;
    height: auto;
  }

  .btn-yoink {
    background: #1c1c1c;
    color: var(--text);
    border: 1px solid var(--border2);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 12.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-monospace, monospace;
  }

  .btn-yoink i {
    font-style: normal;
    background: var(--text);
    color: #000;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px;
  }

  .copy {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--muted);
    letter-spacing: -0.01em;
  }

  .grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .grid div {
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.4;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    gap: 10px;
  }

  .grid div:nth-child(2n) {
    border-right: none
  }

  .grid div:nth-last-child(-n+2) {
    border-bottom: none
  }

  .grid div span {
    color: var(--text);
    font-weight: 500
  }

  .grid div em {
    font-style: normal;
    color: var(--muted2);
    font-family: ui-monospace, monospace;
    font-size: 12px;
    margin-left: auto;
  }

  .cta-row {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-firefox {
    background: linear-gradient(165deg,  #fca632, #f3294e);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .12s, opacity .12s;
  }
  .btn-github {
   color: #fff;
    border: 1px solid white;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .12s, opacity .12s;
  }
  .btn-firefox:hover {
    transform: translateY(-1px);
    opacity: .95
  }

  .btn-github:hover {
    transform: translateY(-1px);
    opacity: .95
  }

  .cta-hint {
    font-size: 12.5px;
    color: var(--muted2);
    font-family: ui-monospace, monospace;
    line-height: 1.5;
  }

  .divider {
    height: 1px;
    background: var(--border);
    margin: 56px 0 20px
  }

  footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--muted2);
    font-family: ui-monospace, monospace;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
footer div a {
  font-size: 10px;
}


  @media(max-width:600px) {
    h1 {
      font-size: 40px
    }

    .sub {
      font-size: 17px
    }

    .grid {
      grid-template-columns: 1fr
    }

    .grid div {
      border-right: none
    }

    .grid div:nth-last-child(-n+2) {
      border-bottom: 1px solid var(--border)
    }

    .grid div:last-child {
      border-bottom: none
    }

    .hero {
      padding-top: 56px
    }

    footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    footer .footer-links {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
