@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
  --bg: #0e0e11;
  --bg2: #141418;
  --bg3: #1a1a1f;
  --cherry: #e53935;
  --cherry-h: #ef5350;
  --cherry-a: rgba(229, 57, 53, .06);
  --t1: #eceef3;
  --t2: #9ea3b0;
  --t3: #5c6070;
  --t4: #33363f;
  --ol: rgba(255, 255, 255, .06);
  --ol2: rgba(255, 255, 255, .1);
  --rs: 10px;
  --rm: 16px;
  --rl: 20px;
  --pill: 9999px;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}


#scroll-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  display: inline-flex;
  vertical-align: middle;
}

.fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.cnt {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}


.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 6px;
  background: var(--bg);
  border: 1px solid var(--ol);
  border-radius: var(--pill);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--t1);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.02em;
  padding: 0 16px 0 14px;
  white-space: nowrap;
}

.nav-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-mid {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 4px;
}

.nav-mid a {
  color: var(--t2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 450;
  padding: 6px 14px;
  border-radius: var(--pill);
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav-mid a:hover {
  color: var(--t1);
  background: rgba(255, 255, 255, .06);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  margin-left: 4px;
  background: var(--t1);
  color: var(--bg);
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: .88;
}

.dev-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  margin-bottom: 40px;
  background: rgba(255, 170, 0, .08);
  border: 1px solid rgba(255, 170, 0, .25);
  border-radius: var(--pill);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: #ffaa00;
  letter-spacing: .02em;
  animation: bannerPulse 3s ease-in-out infinite;
}

.dev-banner .material-symbols-rounded {
  font-size: 18px;
  color: #ffaa00;
}

@keyframes bannerPulse {
  0%, 100% { border-color: rgba(255, 170, 0, .25); }
  50% { border-color: rgba(255, 170, 0, .5); }
}

.hero-new {
  padding: 200px 0 100px;
  position: relative;
}

.hero-center {
  text-align: center;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--cherry);
  letter-spacing: .1em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tag .material-symbols-rounded {
  font-size: 13px;
}

.hero-title {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: .9;
}

.hero-title .lo {
  color: var(--t4);
  font-weight: 300;
}

.hero-sub {
  margin: 24px auto 0;
  font-size: 16px;
  color: var(--t2);
  max-width: 460px;
  line-height: 1.6;
  font-weight: 350;
}

.hero-btns {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  background: var(--cherry);
  color: #fff;
  border: none;
  border-radius: var(--pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, transform .2s var(--ease);
}

.btn-p:hover {
  background: var(--cherry-h);
}

.btn-p:active {
  transform: scale(.96);
}

.btn-p .material-symbols-rounded {
  font-size: 17px;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--ol2);
  border-radius: var(--pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.btn-g:hover {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .16);
}

.btn-g .material-symbols-rounded {
  font-size: 17px;
}


.fb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 48px;

}

.fb-rev {
  direction: rtl;
}

.fb-rev>* {
  direction: ltr;
}

.fb-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(30, 30, 35, 0.6) 0%, rgba(20, 20, 24, 0.8) 100%);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.fbc-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.fbc-ic {
  font-size: 18px;
  color: var(--cherry);
}

.fbc-q {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  letter-spacing: 0.02em;
}

.fbc-st {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.fbc-st.ok {
  color: #66bb6a;
}

.fbc-rows {
  padding: 8px 0;
}

.fbc-r {
  display: flex;
  align-items: baseline;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-size: 13px;
  transition: background 0.2s ease;
}

.fbc-r:hover {
  background: rgba(255, 255, 255, 0.03);
}

.fbc-r:last-child {
  border-bottom: none;
}

.fbc-k {
  color: var(--t4);
  min-width: 110px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.fbc-v {
  color: var(--t1);
  font-weight: 500;
}

.fbc-v.warn {
  color: #fb8c00;
}

.fbc-v.ok {
  color: #66bb6a;
}

.fb-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t4);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-weight: 600;
}

.fb-text h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

.fb-text p {
  margin-top: 16px;
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 350;
  max-width: 440px;
}


.icon-strip {
  padding: 14px 0;
  overflow: hidden;
}

.icon-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  color: var(--t4);
  white-space: nowrap;
  transition: color .2s;
  cursor: default;
}

.ic:hover {
  color: var(--cherry);
}

.ic .material-symbols-rounded {
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ic span:last-child {
  font-size: 12px;
  font-weight: 450;
}

.ic-dot {
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--t4);
  margin: 0 4px;
}


.sec {
  padding: 100px 0;
}

.sec-ey {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--cherry);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sec-ey .material-symbols-rounded {
  font-size: 14px;
}

.sec-h {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sec-h .lo {
  color: var(--t4);
}

.sec-p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--t3);
  max-width: 440px;
  line-height: 1.6;
  font-weight: 350;
}




.api-g {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.api-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.api-v {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.api-v .a {
  color: var(--cherry);
}

.api-l {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  margin-top: 3px;
  letter-spacing: .04em;
}

.api-sr {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 24px;
}

.api-s {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--t3);
  padding: 4px 11px;
  border: 1px solid var(--ol2);
  border-radius: var(--pill);
  transition: color .15s, border-color .15s;
  cursor: default;
}

.api-s:hover {
  color: var(--cherry);
  border-color: rgba(229, 57, 53, .2);
}

.cw {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}

.cw-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ol);
  gap: 7px;
}

.cw-bar span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t4);
}

.cw-body {
  padding: 24px;
  font-family: 'JetBrains Mono', 'Fira Code', var(--mono);
  font-size: 14px;
  line-height: 1.7;
  color: #e2e2e8;
  overflow-x: auto;
}

.cl {
  display: block;
}

.kw {
  color: #ff5252;
}

.str {
  color: #81c784;
}

.fn {
  color: #64b5f6;
}

.cm {
  color: #6c6c75;
}


.pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.pc {
  background: var(--bg2);
  border: 1px solid var(--ol);
  border-radius: var(--rl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .3s var(--ease);
  position: relative;
}

.pc:hover {
  border-color: var(--ol2);
  transform: translateY(-2px);
}

.pc.hot {
  border-color: rgba(229, 57, 53, .2);
  background: linear-gradient(175deg, rgba(229, 57, 53, .035), var(--bg2) 25%);
}

.pc-v {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.pc-n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 4px 0 24px;
}

.pc-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}

.pc-ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 350;
  color: var(--t2);
}

.pc-ul li .material-symbols-rounded {
  font-size: 15px;
}

.pc-ul li .ck {
  color: var(--cherry);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.pc-ul li .no {
  color: var(--t4);
}

.pc-ul li.off {
  opacity: .25;
}

.pc-b {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--ol2);
  border-radius: var(--pill);
  background: transparent;
  color: var(--t1);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}

.pc-b:hover {
  background: rgba(255, 255, 255, .03);
}

.pc-b.fl {
  background: var(--cherry);
  border-color: var(--cherry);
  color: #fff;
}

.pc-b.fl:hover {
  background: var(--cherry-h);
}


.cta {
  padding: 120px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.cta p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--t3);
  font-weight: 350;
}

.cta .btn-p {
  margin-top: 28px;
}


.foot {
  padding: 24px 0;
}

.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-l {
  font-size: 11px;
  color: var(--t4);
}

.foot-l b {
  color: var(--cherry);
  font-weight: 600;
}

.foot-r {
  display: flex;
  gap: 18px;
  list-style: none;
}

.foot-r a {
  font-size: 11px;
  color: var(--t4);
  text-decoration: none;
  transition: color .15s;
}

.foot-r a:hover {
  color: var(--t1);
}


.rv {
  will-change: transform, opacity, filter;
}


@media (max-width: 1100px) {
  .fb {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fb-rev {
    direction: ltr;
  }

  .pg {
    grid-template-columns: repeat(2, 1fr);
  }

  .api-g {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 768px) {
  .cnt {
    padding: 0 20px;
  }

  .hero-new {
    padding-top: 120px;
  }



  .fb {
    padding: 48px 20px;
  }

  .nav {
    padding: 0 12px;
  }

  .nav-mid {
    display: none;
  }

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

  .sec {
    padding: 64px 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .foot-in {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}