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

    :root {
      --bg: #080a0f;
      --bg2: #0d1017;
      --bg3: #141820;
      --surface: #1a1f2b;
      --border: #1e2433;
      --border-b: #2a3040;
      --tx: #e4e8f0;
      --tx2: #a1a9b8;
      --tx3: #6b7280;
      --blue: #2d9bd6;
      --blueL: #45b8f0;
      --blueG: rgba(45, 155, 214, .15);
      --green: #22c55e;
      --red: #ef4444;
      --yellow: #eab308;
      --cyan: #06b6d4;
      --mono: 'JetBrains Mono', monospace;
      --sans: 'Outfit', system-ui, sans-serif
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--bg);
      color: var(--tx);
      font-family: var(--sans);
      font-size: 16.5px;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: .025;
      pointer-events: none;
      z-index: 9999
    }

    .gridbg {
      position: fixed;
      inset: 0;
      background-image: linear-gradient(rgba(45, 155, 214, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 155, 214, .04) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(ellipse 60% 40% at 50% 20%, #000 10%, transparent 70%)
    }

    .glow {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(45, 155, 214, .12) 0%, rgba(45, 155, 214, .03) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 6px var(--green)
      }

      50% {
        box-shadow: 0 0 14px var(--green), 0 0 28px rgba(34, 197, 94, .2)
      }
    }

    .a {
      opacity: 0;
      animation: fadeUp .8s cubic-bezier(0.22, 1, 0.36, 1) forwards
    }

    .d1 {
      animation-delay: .05s
    }

    .d2 {
      animation-delay: .1s
    }

    .d3 {
      animation-delay: .18s
    }

    .d4 {
      animation-delay: .26s
    }

    .d5 {
      animation-delay: .34s
    }

    .d6 {
      animation-delay: .42s
    }

    .d7 {
      animation-delay: .5s
    }

    .d8 {
      animation-delay: .6s
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 2rem;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(8, 10, 15, .7);
      backdrop-filter: blur(24px) saturate(1.8);
      border-bottom: 1px solid var(--border)
    }

    .nlogo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .nlogo img {
      height: 32px
    }

    .nlogo span {
      font-family: var(--mono);
      font-weight: 700;
      font-size: 1rem;
      color: var(--tx)
    }

    .nr {
      display: flex;
      align-items: center;
      gap: 1.5rem
    }

    .nr a {
      color: var(--tx2);
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
      transition: color .2s
    }

    .nr a:hover {
      color: var(--tx)
    }

    .ghb {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      background: var(--surface);
      border: 1px solid var(--border-b);
      border-radius: 8px;
      color: var(--tx);
      font-size: .82rem;
      font-weight: 600;
      transition: all .2s
    }

    .ghb:hover {
      border-color: var(--blue);
      background: var(--bg3)
    }

    .ghb svg {
      width: 16px;
      height: 16px;
      fill: currentColor
    }

    .hero {
      position: relative;
      z-index: 1;
      padding: 150px 2rem 80px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid var(--border-b);
      background: var(--bg2);
      font-size: .8rem;
      font-family: var(--mono);
      color: var(--tx2);
      margin-bottom: 1.8rem
    }

    .badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite
    }

    h1 {
      font-size: clamp(2.5rem, 6.5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.035em;
      margin-bottom: 1.2rem
    }

    .bl {
      color: var(--blueL)
    }

    .hsub {
      font-size: 1.15rem;
      color: var(--tx2);
      max-width: 580px;
      margin: 0 auto 2.2rem;
      line-height: 1.7
    }

    .hsub strong {
      color: var(--tx);
      font-weight: 600
    }

    .hacts {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 9px;
      font-weight: 700;
      font-size: .92rem;
      text-decoration: none;
      transition: all .25s;
      border: none;
      cursor: pointer
    }

    .btn-b {
      background: var(--blue);
      color: #fff
    }

    .btn-b:hover {
      background: var(--blueL);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(45, 155, 214, .4), 0 0 1px var(--blueL)
    }

    .btn-b:active {
      transform: translateY(0);
      box-shadow: 0 4px 10px rgba(45, 155, 214, .3)
    }

    .btn-g {
      background: transparent;
      color: var(--tx);
      border: 1px solid var(--border-b)
    }

    .btn-g:hover {
      background: var(--surface);
      border-color: var(--blue);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
    }

    .btn-g:active {
      transform: translateY(0);
    }

    .btn svg {
      width: 17px;
      height: 17px;
      fill: currentColor
    }

    .cmd {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 9px;
      font-family: var(--mono);
      font-size: .88rem;
      cursor: pointer;
      transition: all .2s
    }

    .cmd:hover {
      border-color: var(--blue)
    }

    .cmd .p {
      color: var(--blue)
    }

    .cmd .c {
      color: var(--tx)
    }

    .cmd .tg {
      font-family: var(--sans);
      font-size: .72rem;
      color: var(--tx3);
      padding: 2px 8px;
      background: var(--surface);
      border-radius: 4px
    }

    .cmd.copied .tg {
      color: var(--green)
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      padding: 2rem 2rem 3rem;
      max-width: 950px;
      margin: 0 auto
    }

    .sv {
      font-family: var(--mono);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--blueL)
    }

    .sl {
      font-size: .78rem;
      color: var(--tx3);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-top: 2px
    }

    .callout {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto 4rem;
      padding: 0 2rem
    }

    .cbox {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: rgba(239, 68, 68, .06);
      border: 1px solid rgba(239, 68, 68, .15);
      border-radius: 10px
    }

    .cbox-i {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px
    }

    .cbox-t {
      font-size: .92rem;
      color: var(--tx2);
      line-height: 1.6
    }

    .cbox-t strong {
      color: var(--tx)
    }

    .tw {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto 5rem;
      padding: 0 2rem
    }

    .term {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
    }

    .tb {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 12px 16px;
      background: var(--bg3);
      border-bottom: 1px solid var(--border)
    }

    .td {
      width: 11px;
      height: 11px;
      border-radius: 50%
    }

    .td.r {
      background: #ff5f57
    }

    .td.y {
      background: #febc2e
    }

    .td.g {
      background: #28c840
    }

    .tt {
      flex: 1;
      text-align: center;
      font-family: var(--mono);
      font-size: .75rem;
      color: var(--tx3)
    }

    .tc {
      padding: 20px;
      font-family: var(--mono);
      font-size: .82rem;
      line-height: 1.9;
      overflow-x: auto;
      white-space: pre
    }

    .cm {
      color: var(--tx3)
    }

    .pr {
      color: var(--blue)
    }

    .fl {
      color: var(--cyan)
    }

    .st {
      color: var(--yellow)
    }

    .out {
      color: var(--tx2)
    }

    .ok {
      color: var(--green)
    }

    .sec {
      position: relative;
      z-index: 1;
      max-width: 1060px;
      margin: 0 auto;
      padding: 4.5rem 2rem
    }

    .stag {
      font-family: var(--mono);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--blue);
      margin-bottom: .8rem
    }

    .sec h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -.02em;
      margin-bottom: .8rem
    }

    .sdesc {
      color: var(--tx2);
      font-size: 1rem;
      max-width: 560px;
      margin-bottom: 2.5rem
    }

    .div {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 auto;
      max-width: 1020px
    }

    .sg {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden
    }

    .sc {
      background: var(--bg2);
      padding: 22px 20px;
      position: relative;
      border: 1px solid transparent;
      transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1)
    }

    .sc:hover {
      background: var(--bg3);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .6);
      z-index: 2;
      border-color: var(--border-b);
      border-radius: 8px
    }

    .si {
      font-size: 1.3rem;
      margin-bottom: 8px
    }

    .sn {
      font-weight: 700;
      font-size: .92rem;
      margin-bottom: 4px
    }

    .sd {
      font-size: .76rem;
      color: var(--tx3);
      line-height: 1.5
    }

    .sp {
      display: inline-block;
      margin-top: 8px;
      padding: 2px 8px;
      background: var(--surface);
      border-radius: 4px;
      font-family: var(--mono);
      font-size: .68rem;
      color: var(--tx2)
    }

    .sp.real {
      background: rgba(45, 155, 214, .1);
      color: var(--blue);
      border: 1px solid rgba(45, 155, 214, .2)
    }

    .ct {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      font-size: .88rem
    }

    .ct th,
    .ct td {
      padding: 14px 18px;
      text-align: left;
      border-bottom: 1px solid var(--border)
    }

    .ct th {
      background: var(--bg3);
      font-weight: 600;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--tx2)
    }

    .ct th.hl {
      color: var(--blueL)
    }

    .ct td {
      background: var(--bg2)
    }

    .ct tr:last-child td {
      border-bottom: none
    }

    .w {
      color: var(--blueL);
      font-family: var(--mono);
      font-weight: 700
    }

    .dm {
      color: var(--tx3)
    }

    .fg {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.2rem
    }

    .fc {
      padding: 28px;
      background: rgba(13, 16, 23, 0.8);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: all .35s cubic-bezier(0.2, 0.8, 0.2, 1)
    }

    .fc:hover {
      border-color: var(--border-b);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .5), 0 0 2px var(--blue)
    }

    .fi {
      width: 40px;
      height: 40px;
      background: var(--blueG);
      border: 1px solid rgba(45, 155, 214, .15);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 14px
    }

    .ft {
      font-weight: 700;
      margin-bottom: 6px;
      font-size: .95rem
    }

    .fd {
      font-size: .84rem;
      color: var(--tx2);
      line-height: 1.6
    }

    .fcta {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 5rem 2rem;
      max-width: 650px;
      margin: 0 auto
    }

    .fcta h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      font-weight: 800;
      letter-spacing: -.02em;
      margin-bottom: .8rem
    }

    .fcta p {
      color: var(--tx2);
      margin-bottom: 2rem;
      font-size: 1rem
    }

    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 1.8rem 2rem;
      text-align: center;
      font-size: .8rem;
      color: var(--tx3)
    }

    footer a {
      color: var(--tx2);
      text-decoration: none
    }

    footer a:hover {
      color: var(--blue)
    }

    @media(max-width:768px) {
      .nr a:not(.ghb) {
        display: none
      }

      .hero {
        padding: 120px 1.5rem 50px
      }

      .stats {
        gap: 1.5rem
      }

      .sv {
        font-size: 1.4rem
      }

      .hacts {
        flex-direction: column
      }

      .sg {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr))
      }

      .ct {
        font-size: .78rem
      }

      .ct th,
      .ct td {
        padding: 10px 12px
      }

      .tc {
        font-size: .72rem;
        padding: 14px
      }
    }

    @media(max-width:480px) {
      .cmd {
        font-size: .76rem;
        padding: 10px 14px
      }

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