:root {
  --black: #000;
  --ink: #080703;
  --muted: rgba(8, 7, 3, 0.65);
  --slate: #3a4763;
  --soft: #f9f9f8;
  --card: #f8f8f6;
  --line: #e7e9ed;
  --green: #5ee8c0;
  --green-strong: #1ad79f;
  --green-soft: rgba(94, 232, 192, 0.15);
  --orange: #ffa94d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  z-index: 10;
  color: #fff;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  flex: 0 0 auto;
}

.brand-mark {
  width: 24px;
  height: 20px;
}

.brand-word {
  width: 76px;
  height: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin-left: 24px;
  margin-right: 8px;
  gap: 4px;
}

.main-nav a,
.language,
.login {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.main-nav .active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.language {
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.language img {
  width: 16px;
  height: 16px;
}

.login {
  min-width: 101px;
  padding: 0 16px;
  color: #04130b;
  background: var(--green-strong);
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.login:hover {
  background: #5ee8c0;
  box-shadow: 0 10px 24px rgba(94, 232, 192, 0.22);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 21px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.button-primary {
  background: var(--green);
  color: #04130b;
}

.button-primary:hover {
  background: #1ad79f;
  color: #04130b;
}

.button-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.button-outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: #04130b;
}

.button-white {
  background: #fff;
  color: var(--ink);
}

.button-white:hover {
  background: #eafff8;
  color: #04130b;
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 16px;
}

.button-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero {
  position: relative;
  height: 920px;
  min-height: 920px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 643px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 112px;
}

.eyebrow {
  margin: 40px 0 28px;
  padding: 9px 17px;
  border: 1px solid rgba(94, 232, 192, 0.2);
  border-radius: 999px;
  background: rgba(94, 232, 192, 0.1);
  color: var(--green);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.g2-icon {
  width: 35px;
  height: 35px;
}

.rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.55px;
}

.stars {
  display: flex;
}

.stars img {
  width: 20px;
  height: 20px;
}

.hero h1 {
  width: min(1280px, 100%);
  margin: 0;
  font-size: 56px;
  line-height: 64px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}

.hero-lead {
  width: min(990px, 100%);
  margin: 24px 0 28px;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  transform: translateY(24px);
}

.hero .button {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-stats {
  position: relative;
  z-index: 1;
  height: 72px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  color: #b8bfc3;
  font-size: 14px;
  transform: translateY(24px);
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-stats img {
  width: 20px;
  height: 20px;
}

.trusted {
  position: relative;
  z-index: 1;
  padding-top: 41px;
  text-align: center;
  transform: translateY(24px);
}

.trusted p {
  margin: 0 0 38px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}

.logos {
  position: relative;
  width: min(1090px, 100%);
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.logos::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.logos-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  animation: client-logos-marquee 28s linear infinite;
  will-change: transform;
}

.logos:hover .logos-track {
  animation-play-state: paused;
}

.logos-track img {
  width: auto;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.72);
  opacity: 0.68;
}

@keyframes client-logos-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.section {
  padding: 80px 0;
}

.split-section {
  min-height: 488px;
}

.split-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 64px;
  align-items: center;
}

.split-grid h2,
.code-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: 44px;
  line-height: 60px;
  font-weight: 700;
}

.split-grid p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.server-image {
  width: 576px;
  height: 328px;
  object-fit: cover;
  border-radius: 16px;
}

.problems-section,
.steps-section {
  background: var(--soft);
}

.problems-section {
  height: 702px;
  min-height: 702px;
}

.section h2 {
  margin: 0;
  font-size: 44px;
  line-height: 60px;
  font-weight: 700;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  position: relative;
  min-height: 322px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e9eef0;
  border-radius: 16px;
}

.badge {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 6px 12px;
  border-radius: 0 16px 0 16px;
  background: var(--orange);
  color: #04130b;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 130, 103, 0.1);
}

.card-icon.small {
  width: 46px;
  height: 46px;
}

.card-icon img {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

.problem-card p {
  flex: 1;
  margin: 0 0 24px;
  color: var(--slate);
  font-size: 14px;
  line-height: 20px;
}

.section-note {
  margin: 32px 0 0;
  color: #8991a1;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.source-section {
  min-height: 900px;
}

.source-heading {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.source-copy {
  width: 100%;
  margin: 16px auto 48px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.source-cards {
  display: grid;
  gap: 24px;
  justify-content: center;
}

.source-top {
  grid-template-columns: repeat(3, 350px);
}

.source-bottom {
  grid-template-columns: repeat(2, 350px);
  margin-top: 24px;
}

.source-cards article {
  min-height: 212px;
  padding: 25px;
  border: 1px solid #e9eef0;
  border-radius: 16px;
  background: #fff;
}

.source-cards h3 {
  margin: 20px 0 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.source-cards p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
}

.steps-section {
  min-height: 562px;
}

.step-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin: 48px 0 48px;
}

.track-line {
  position: absolute;
  top: 26px;
  left: 141px;
  right: 140px;
  height: 2px;
  background: var(--green);
}

.step-track article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-track b {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
}

.step-track h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.step-track p {
  margin: 0;
  color: #616c82;
  font-size: 14px;
  line-height: 24px;
}

.code-section {
  min-height: 682px;
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.code-grid {
  display: grid;
  grid-template-columns: 1fr 678px;
  gap: 64px;
  align-items: center;
}

.code-copy {
  min-width: 0;
  min-height: 522px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.code-copy p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 24px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #fff;
  font-family: "IBM Plex Sans SC", Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("/assets/feature-check.svg") center / 20px 20px no-repeat;
}

.code-panel {
  width: 678px;
  min-width: 0;
  min-height: 502px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.code-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-left: 4px;
}

.code-tabs > span {
  color: #fff;
  font-size: 18px;
  line-height: 56px;
  font-weight: 500;
}

.tabs {
  width: 440px;
  height: 41px;
  display: flex;
  align-items: center;
  gap: 3.5px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.tabs button {
  height: 31px;
  min-width: 53px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.tabs button:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tabs button[data-lang="node"] {
  width: 84px;
}

.tabs button[data-lang="python"] {
  width: 80px;
}

.tabs button[data-lang="php"] {
  width: 64px;
}

.tabs button[data-lang="java"] {
  width: 65px;
}

.tabs button[data-lang="go"] {
  width: 53px;
}

.tabs button[data-lang="ruby"] {
  width: 68px;
}

.tabs .active {
  background: #fff;
  color: #08152a;
}

.tabs .active:hover {
  background: #fff;
  color: #08152a;
}

.snippet {
  min-height: 418px;
  margin: 0;
  padding: 24px;
  overflow: auto;
  border-radius: 12px;
  background: #01021b;
  color: #fff;
  font-family: "Geist Mono", SFMono-Regular, Consolas, monospace;
  font-size: 14px;
  line-height: 20px;
}

.snippet code,
.snippet code span {
  font-family: "Geist Mono", SFMono-Regular, Consolas, monospace;
}

.snippet .ln {
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
}

.kw {
  color: #ff32c6;
  font-weight: 700;
}

.str {
  color: #3fa4ff;
}

.fn {
  color: #1ac69c;
}

.var {
  color: #c478ff;
}

.mod {
  color: #ffac60;
}

.compare-section {
  height: 756px;
  min-height: 756px;
}

.compare-copy {
  margin: 16px 0 48px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.table-wrap {
  width: min(1106px, 100%);
  margin: 0 auto;
  overflow-x: auto;
}

table {
  width: 1106px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 20px;
}

th,
td {
  height: 71px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}

thead th {
  height: 47px;
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

tbody th {
  width: 228px;
  color: var(--ink);
  font-weight: 600;
}

td {
  width: 222px;
}

tbody tr:nth-child(4) th,
tbody tr:nth-child(4) td,
tbody tr:nth-child(6) th,
tbody tr:nth-child(6) td {
  height: 51px;
}

.highlight {
  width: 247px;
  background: var(--green-soft);
  border-left: 1px solid rgba(94, 232, 192, 0.2);
  border-right: 1px solid rgba(94, 232, 192, 0.2);
  color: var(--ink);
  font-weight: 600;
}

thead .highlight {
  background: var(--green);
  color: #fff;
}

.highlight.top {
  border-radius: 12px 12px 0 0;
}

.highlight.bottom {
  border-radius: 0 0 12px 12px;
}

.dash {
  color: #aab1bf;
}

.testimonials-section {
  min-height: 666px;
  padding: 80px 0;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.testimonials-shell {
  width: min(1512px, 100%);
  padding-left: 116px;
}

.testimonials-section h2 {
  margin: 0 0 48px;
  font-size: 44px;
  line-height: 60px;
  font-weight: 700;
}

.reviews {
  display: flex;
  gap: 24px;
  width: max-content;
  overflow: visible;
  animation: reviews-marquee 72s linear infinite;
  will-change: transform;
}

.reviews:hover {
  animation-play-state: paused;
}

@keyframes reviews-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--reviews-shift, 1696px)), 0, 0);
  }
}

.review-card {
  width: 400px;
  min-width: 400px;
  height: 346px;
  padding: 28px;
  border-radius: 12px;
  background: #0e1712;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.review-card.faded {
  opacity: 1;
}

.reviewer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  object-fit: cover;
}

.reviewer p,
.review-card p {
  margin: 0;
}

.reviewer strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.reviewer span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 16px;
}

.review-card > p {
  min-height: 168px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 22px;
}

.review-stars {
  color: #ffcc00;
  letter-spacing: 3px;
  font-size: 18px;
}

.review-link {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 32px auto 0;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
}

.review-link img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.faq-section {
  height: 952px;
  min-height: 952px;
}

.faq-section h2 {
  margin-bottom: 48px;
  line-height: 49px;
  font-family: Inter, "IBM Plex Sans SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.faq-list {
  width: min(840px, 100%);
  margin: 0 auto;
}

.faq-list details {
  margin-top: 16px;
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
}

.faq-list details:first-child {
  margin-top: 0;
}

.faq-list details[open] {
  background: #f3f3f0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: "IBM Plex Sans SC", Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.18s ease;
}

.faq-list summary:hover {
  color: var(--green-strong);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details .faq-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.faq-list details .faq-icon::before {
  content: "";
  width: 14.667px;
  height: 14.667px;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("/assets/faq-plus.svg") center / contain no-repeat;
  mask: url("/assets/faq-plus.svg") center / contain no-repeat;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-family: "IBM Plex Sans SC", Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.faq-section {
  min-height: 984px;
  height: auto;
  padding: 100px 0;
  --faq-accent: #00a86b;
}

.faq-item {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f8f6;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.is-open {
  background: #f3f3f0;
}

.faq-item__q {
  width: 100%;
  min-height: 72px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, "IBM Plex Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  transition: color 0.18s ease;
}

.faq-item__q:hover {
  color: var(--faq-accent);
}

.faq-item__ic {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-left: 24px;
  color: currentColor;
  transform: rotate(0deg);
  transition: color 0.18s ease, transform 0.22s ease;
}

.faq-item__ic::before,
.faq-item__ic::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  right: 3px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
  -webkit-mask: none;
  mask: none;
}

.faq-item__ic::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__ic {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__ic::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-item.is-open .faq-item__a {
  max-height: 320px;
}

.faq-item__a p {
  margin: 0;
  padding: 0 24px 24px;
  color: #3a4763;
  font-family: Arial, "IBM Plex Sans SC", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.final-cta {
  min-height: 510px;
  padding: 80px 0;
  background: #050807;
  color: #fff;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.final-cta p {
  margin: 16px 0 0;
  color: #ccc;
  font-size: 18px;
  line-height: 28px;
}

.final-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.final-awards {
  width: min(885px, calc(100% - 48px));
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.final-award {
  display: block;
  height: 160px;
  width: auto;
  object-fit: contain;
}

.final-award-g2 {
  width: 131px;
}

.final-award-iso {
  width: 158px;
}

.g2-award {
  position: relative;
  width: 139px;
  height: 160px;
  flex: 0 0 139px;
  overflow: hidden;
  color: #050807;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  font-family: Inter, Arial, sans-serif;
  text-align: center;
}

.g2-award::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  clip-path: polygon(0 0, 50% 58%, 100% 0, 100% 22%, 50% 100%, 0 22%);
}

.g2-award-regional::after {
  background: #ff2f86;
}

.g2-award-grid::after {
  background: linear-gradient(90deg, #ff6b00 0%, #ffb000 50%, #ff4b25 100%);
}

.g2-award-top {
  position: relative;
  height: 30px;
  display: grid;
  place-content: center;
  border-bottom: 1px solid #d8d8d8;
  font-size: 8px;
  font-weight: 800;
  line-height: 8px;
  letter-spacing: 0.4px;
}

.g2-award-top strong {
  font-size: 7px;
  line-height: 8px;
}

.g2-award-top i {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #ff492c;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.g2-award-body {
  position: relative;
  z-index: 1;
  min-height: 100px;
  padding: 19px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g2-award-body strong {
  display: block;
  font-size: 27px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: -1px;
}

.g2-award-grid .g2-award-body strong {
  margin-top: 9px;
  font-size: 23px;
  line-height: 25px;
}

.g2-award-body span {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.footer {
  height: 288px;
  min-height: 288px;
  padding: 54px 0 25px;
  background: #050807;
  color: rgba(255, 255, 255, 0.58);
}

.footer-main {
  height: 124px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  width: 403px;
  height: 124px;
}

.footer-logo {
  display: inline-block;
  width: 106px;
  height: 20px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 19px;
}

.footer-col {
  width: 217px;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col strong {
  color: #fff;
  font-size: 16px;
}

.footer-col > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.copyright {
  margin-top: 42px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 32px, 1280px);
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    height: 64px;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 24px;
  }

  .site-header.open .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    width: auto;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #050807;
    border-radius: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .problems-section,
  .source-section,
  .steps-section,
  .code-section,
  .compare-section,
  .testimonials-section,
  .faq-section,
  .final-cta,
  .footer {
    height: auto;
    min-height: 0;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-actions,
  .hero-stats,
  .final-actions {
    flex-wrap: wrap;
  }

  .hero-stats {
    height: auto;
    margin-top: 80px;
    padding: 18px 0;
    gap: 18px;
  }

  .trusted p {
    font-size: 20px;
  }

  .logos {
    gap: 0;
  }

  .logos-track {
    gap: 40px;
    padding-right: 40px;
  }

  .logos-track img {
    height: 26px;
  }

  .split-grid,
  .code-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .final-awards {
    flex-wrap: wrap;
    gap: 28px;
  }

  .split-grid h2,
  .code-copy h2,
  .final-cta h2,
  .section h2,
  .testimonials-section h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .server-image,
  .code-panel {
    width: 100%;
  }

  .problem-cards,
  .source-top,
  .source-bottom,
  .step-track {
    grid-template-columns: 1fr;
  }

  .track-line {
    display: none;
  }

  .code-tabs {
    align-items: flex-start;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .code-copy,
  .code-panel,
  .code-tabs,
  .snippet,
  .feature-list,
  .feature-list li {
    min-width: 0;
  }

  .testimonials-shell {
    width: min(100% - 32px, 1280px);
    padding-left: 0;
  }

  .review-card {
    width: 320px;
    min-width: 320px;
  }

  .footer-main {
    flex-direction: column;
    height: auto;
  }

  .footer-brand,
  .footer-brand p {
    width: 100%;
  }
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  background: #000;
}

.hero-particles canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin-left: 24px;
  margin-right: 8px;
  gap: 4px;
}

.site-nav a,
.lang-btn,
.btn-login {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.lang-btn img {
  width: 16px;
  height: 16px;
}

.lang-btn:hover {
  color: #fff;
}

.lang-switch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  min-width: 148px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
}

.lang-menu button:hover,
.lang-menu button.is-active {
  background: rgba(94, 232, 192, 0.12);
  color: #fff;
}

.btn-login {
  min-width: 101px;
  padding: 0 16px;
  color: #04130b;
  background: var(--green-strong);
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

html[lang="ru"] .main-nav,
html[lang="ja"] .main-nav,
html[lang="ru"] .site-nav,
html[lang="ja"] .site-nav {
  gap: 2px;
  margin-left: 12px;
}

html[lang="ru"] .main-nav a,
html[lang="ja"] .main-nav a,
html[lang="ru"] .site-nav a,
html[lang="ja"] .site-nav a {
  padding: 0 8px;
  font-size: 13px;
}

html[lang="ru"] .login,
html[lang="ru"] .btn-login,
html[lang="ja"] .login,
html[lang="ja"] .btn-login {
  min-width: auto;
  padding: 0 12px;
  font-size: 13px;
}

html[lang="ru"] .lang-btn,
html[lang="ja"] .lang-btn,
html[lang="ru"] .language,
html[lang="ja"] .language {
  padding: 0 8px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .main-nav,
  .site-nav {
    gap: 2px;
    margin-left: 12px;
  }

  .main-nav a,
  .site-nav a,
  .lang-btn,
  .language {
    padding: 0 8px;
    font-size: 12px;
  }

  .login,
  .btn-login {
    min-width: auto;
    padding: 0 12px;
    font-size: 12px;
  }
}

.btn-login:hover {
  background: #5ee8c0;
  box-shadow: 0 10px 24px rgba(94, 232, 192, 0.22);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
}

.menu-toggle span {
  top: 50%;
  margin-top: -1px;
}

.menu-toggle::before {
  top: 12px;
}

.menu-toggle::after {
  bottom: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 21px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #04130b;
}

.btn-primary:hover {
  background: #1ad79f;
  color: #04130b;
}

.btn-ghost {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #04130b;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 16px;
}

.btn-arrow,
.button-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.btn-final-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 0 21px;
  font-weight: 600;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}

.btn-final-secondary:hover {
  background: #eafff8;
  color: #04130b;
}

.hero .btn {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.tabs button.is-active {
  background: #fff;
  color: #08152a;
}

.code-sample {
  min-height: 418px;
  margin: 0;
  padding: 24px;
  overflow: auto;
  border-radius: 12px;
  background: #01021b;
  color: #fff;
  font-family: "Geist Mono", SFMono-Regular, Consolas, monospace;
  font-size: 14px;
  line-height: 20px;
  white-space: pre;
}

.code-sample .ln {
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
}

.code-sample .kw { color: #ff32c6; font-weight: 700; }
.code-sample .str { color: #3fa4ff; }
.code-sample .fn { color: #1ac69c; }
.code-sample .var { color: #c478ff; }
.code-sample .mod { color: #ffac60; }

.code-lang-tabs {
  width: 440px;
  height: 41px;
  display: flex;
  align-items: center;
  gap: 3.5px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.code-lang-tabs button {
  height: 31px;
  min-width: 53px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.code-lang-tabs button.is-active {
  background: #fff;
  color: #08152a;
}

.code-editor {
  min-height: 418px;
}

.compare-table .col-rola,
.compare-table .highlight {
  width: 247px;
  background: var(--green-soft);
  border-left: 1px solid rgba(94, 232, 192, 0.2);
  border-right: 1px solid rgba(94, 232, 192, 0.2);
  color: var(--ink);
  font-weight: 600;
}

.compare-table thead .col-rola,
.compare-table thead .highlight {
  background: var(--green);
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.compare-table tbody tr:last-child .col-rola,
.compare-table .col-rola-last,
.compare-table .highlight.bottom {
  border-radius: 0 0 12px 12px;
}

.compare-table .is-dash,
.compare-table .dash {
  color: #aab1bf;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .header-actions .lang-switch,
  .header-actions .btn-login {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    width: auto;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #050807;
    border-radius: 12px;
    z-index: 20;
  }

  .site-header.open .site-nav,
  .site-nav.is-open {
    display: flex;
  }
}

.shell {
  width: min(1120px, calc(100% - 48px));
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
}

.hero {
  height: 100svh;
  min-height: 720px;
}

.hero-content {
  height: calc(100svh - 180px);
  min-height: 540px;
  padding-top: 88px;
}

.eyebrow {
  margin: 24px 0;
}

.hero h1 {
  width: min(960px, 100%);
  font-size: 52px;
  line-height: 60px;
  text-wrap: balance;
}

.netnut-brand {
  color: #ff7a1a;
}

.hero-lead {
  width: min(760px, 100%);
  margin: 18px 0 24px;
  font-size: 17px;
  line-height: 27px;
}

.hero-actions {
  gap: 16px;
  transform: none;
}

.hero-stats {
  height: 56px;
  gap: 48px;
  transform: none;
}

.trusted {
  padding-top: 24px;
  transform: none;
}

.trusted p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}

.logos {
  display: none;
}

.section,
.code-section,
.testimonials-section {
  padding: 72px 0;
}

.split-section,
.problems-section,
.source-section,
.steps-section,
.code-section,
.compare-section,
.testimonials-section,
.faq-section {
  height: auto;
  min-height: 0;
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 72px;
}

.split-grid h2,
.code-copy h2,
.final-cta h2,
.section h2,
.testimonials-section h2 {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="zh-CN"] .split-grid h2 {
  text-wrap: wrap;
  line-break: strict;
}

.section h2.center,
.testimonials-section h2.center {
  width: min(820px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.split-grid p {
  max-width: 590px;
  margin: 18px 0 24px;
  line-height: 26px;
}

.server-image {
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

.problem-cards {
  width: min(1140px, 100%);
  gap: 20px;
  margin: 36px auto 0;
}

.problem-card {
  min-height: 340px;
  padding: 28px 28px 24px;
  border-radius: 8px;
}

.problems-section h2.center {
  width: min(820px, 100%);
  font-size: 34px;
  line-height: 42px;
}

.badge {
  border-radius: 0 8px 0 8px;
}

.problem-card h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 27px;
}

.problem-card p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 22px;
}

.section-note {
  width: min(760px, 100%);
  margin: 24px auto 0;
}

.source-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.source-copy,
.compare-copy {
  width: min(760px, 100%);
  margin: 14px auto 36px;
  font-size: 16px;
  line-height: 24px;
}

.source-top {
  width: min(1100px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
}

.source-bottom {
  width: min(730px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px auto 0;
}

.source-cards {
  gap: 20px;
}

.source-cards article {
  min-height: 184px;
  padding: 24px;
  border-radius: 8px;
}

.source-cards h3 {
  margin: 16px 0 6px;
}

.step-track {
  gap: 32px;
  margin: 36px 0;
}

.track-line {
  left: 12%;
  right: 12%;
}

.step-track h3 {
  font-size: 17px;
}

.step-track p {
  line-height: 22px;
}

.code-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 640px);
  gap: 72px;
}

.code-copy {
  min-height: 480px;
}

.code-copy h2 + .button {
  margin-top: 24px;
}

.code-panel {
  width: 100%;
  min-height: 480px;
  border-radius: 8px;
}

.compare-copy {
  text-align: center;
}

.compare-section h2 {
  margin-bottom: 36px;
}

.testimonials-section h2 {
  margin-bottom: 36px;
}

.testimonials-shell {
  width: min(1120px, calc(100% - 48px));
  padding-left: 0;
}

.review-card {
  height: 300px;
  padding: 24px;
  border-radius: 8px;
}

.reviewer {
  margin-bottom: 18px;
}

.review-card > p {
  min-height: 132px;
  font-size: 14px;
  line-height: 21px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.faq-section {
  padding: clamp(72px, 8vw, 104px) 0;
}

.faq-section h2 {
  margin-bottom: 48px;
}

.faq-list {
  width: min(820px, 100%);
}

.faq-item {
  margin: 0;
  border-bottom: 1px solid #e7e9ed;
  border-radius: 0;
  background: transparent;
}

.faq-item.is-open {
  background: transparent;
}

.faq-item__q {
  min-height: 0;
  padding: 22px 4px;
  font-size: 17px;
  line-height: 1.4;
}

.faq-item__ic {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  margin-top: 2px;
  margin-left: 20px;
  border-radius: 50%;
  background: var(--faq-accent);
  color: #fff;
}

.faq-item__ic::before,
.faq-item__ic::after {
  top: 12px;
  left: 6px;
  right: 6px;
}

.faq-item__a p {
  padding: 0 46px 24px 4px;
  font-size: 16px;
  line-height: 1.65;
}

.final-cta {
  min-height: 440px;
  padding: 72px 0;
}

.final-cta p {
  max-width: 650px;
  font-size: 16px;
  line-height: 24px;
}

.final-awards {
  margin-top: 52px;
  gap: 32px;
}

.final-award {
  height: 144px;
}

@media (max-width: 900px) {
  .shell,
  .header-inner,
  .testimonials-shell {
    width: min(1120px, calc(100% - 32px));
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 48px;
  }

  .hero-content {
    height: auto;
    min-height: 520px;
    padding-top: 104px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-stats {
    width: min(560px, calc(100% - 32px));
    height: auto;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }

  .trusted {
    padding-top: 36px;
  }

  .section,
  .code-section,
  .testimonials-section,
  .faq-section,
  .final-cta {
    padding: 56px 0;
  }

  .split-grid,
  .code-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-grid h2,
  .code-copy h2,
  .final-cta h2,
  .section h2,
  .testimonials-section h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .server-image {
    height: 260px;
  }

  .problem-cards,
  .source-cards,
  .step-track {
    gap: 16px;
  }

  .problem-card,
  .source-cards article {
    min-height: 0;
  }

  .problems-section h2.center {
    font-size: 30px;
    line-height: 38px;
  }

  .source-top,
  .source-bottom {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .source-bottom {
    margin-top: 16px;
  }

  .step-track {
    margin: 32px 0;
  }

  .code-copy,
  .code-panel {
    min-height: 0;
  }

  .code-copy {
    gap: 36px;
  }

  .final-grid {
    gap: 28px;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .final-awards {
    margin-top: 44px;
    gap: 24px;
  }

  .final-award {
    height: 112px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-stats {
    font-size: 13px;
  }

  .trusted p {
    font-size: 18px;
    line-height: 26px;
  }

  .split-grid h2,
  .code-copy h2,
  .final-cta h2,
  .section h2,
  .testimonials-section h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .server-image {
    height: 220px;
  }

  .review-card {
    height: 292px;
  }

  .final-awards {
    gap: 18px;
  }

  .final-award {
    height: 96px;
  }
}
