@charset "UTF-8";
/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
:root {
  color-scheme: dark;
}

/* Font Family */
:root {
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #050505;
  color: #f4f4f5;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.overline {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #80d497;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 800;
  text-transform: capitalize;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: #80d497;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary .btn-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-primary:hover {
  background-color: #98dfab;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(128, 212, 151, 0.3);
          box-shadow: 0 10px 20px rgba(128, 212, 151, 0.3);
}
.btn-primary:hover .btn-icon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(128, 212, 151, 0.5);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: var(--d, 0s);
          transition-delay: var(--d, 0s);
}
.reveal.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes gridScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

@keyframes gridScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
@-webkit-keyframes grid-drift {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@keyframes grid-drift {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .brand .brand-icon {
  height: 32px;
  width: auto;
}
.navbar .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #a1a1aa;
}
.navbar .nav-links a:hover {
  color: #f4f4f5;
}
.navbar .nav-links .btn-nav {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #f4f4f5;
}
.navbar .nav-links .btn-nav:hover {
  background: #fff;
  color: #000;
}
.navbar .hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar .hamburger span {
  width: 25px;
  height: 2px;
  background: #f4f4f5;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
  .navbar .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    height: calc(100vh - 80px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 10%;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
    gap: 0;
  }
  .navbar .nav-links.nav-active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .navbar .nav-links li {
    opacity: 0;
    width: 80%;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .nav-links li:last-child {
    border-bottom: none;
  }
  .navbar .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    width: 100%;
  }
  .navbar .nav-links .btn-nav {
    padding: 1rem 3rem;
    font-size: 1.2rem;
  }
  .navbar .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1001;
  }
  .navbar .hamburger.toggle span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
            transform: rotate(-45deg) translate(-5px, 5px);
  }
  .navbar .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar .hamburger.toggle span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
            transform: rotate(45deg) translate(-5px, -5px);
  }
  @-webkit-keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
  @keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
}
footer {
  padding: 6rem 0 3rem;
  background: #050505;
  position: relative;
  overflow: hidden;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-divider {
  position: absolute;
  bottom: 100px;
  left: -10%;
  right: -10%;
  width: 120%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(ellipse at 50% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  -webkit-animation: gridScan 20s linear infinite;
          animation: gridScan 20s linear infinite;
  pointer-events: none;
}
footer .footer-top {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 6rem;
}
footer .footer-brand-col {
  max-width: 300px;
}
footer .footer-brand-col .brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}
footer .footer-brand-col .brand .brand-icon {
  height: 56px;
  width: auto;
}
footer .footer-brand-col .slogan {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}
footer .footer-links-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3rem, 8vw, 6rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .link-group .footer-group-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
footer .link-group a {
  font-size: 0.9rem;
  color: #a1a1aa;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
footer .link-group a .social-icon {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .link-group a:hover {
  color: #f4f4f5;
}
footer .link-group a:hover .social-icon {
  opacity: 1;
}
footer .footer-bottom {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .footer-bottom .footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-left .btn-signin {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.95rem;
  color: #a1a1aa;
  font-weight: 500;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-bottom .footer-bottom-left .btn-signin span {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
footer .footer-bottom .footer-bottom-left .btn-signin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f4f4f5;
}
footer .footer-bottom .footer-bottom-left .btn-signin:hover span {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
footer .footer-bottom .footer-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a1a1aa;
}
footer .footer-bottom .footer-bottom-right a:hover {
  color: #f4f4f5;
}

@media (max-width: 1024px) {
  footer .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}
/* Font Family */
:root {
  color-scheme: dark;
}

@keyframes gridScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
@keyframes grid-drift {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes orbit-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes orbit-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes orbit-spin-counter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes orbit-spin-counter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.hero-section {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-section .hero-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 6rem;
}
.hero-section .subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero-section .title {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  display: inline-block;
}
.hero-section .description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.hero-section .hero-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.hero-section .hero-tags .tag {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}
.hero-section .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-animation: gridScan 20s linear infinite;
          animation: gridScan 20s linear infinite;
  pointer-events: none;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  -webkit-mask-image: radial-gradient(ellipse at center, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 60%);
  mask-image: radial-gradient(ellipse at center, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 60%);
}
.hero-section .hero-bottom-blur {
  position: absolute;
  bottom: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(128, 212, 151, 0.4) 0%, rgba(128, 212, 151, 0) 70%);
  -webkit-filter: blur(80px);
          filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}
.hero-section .glow-bg {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(120px);
          filter: blur(120px);
  z-index: 0;
  opacity: 0.5;
}
.hero-section .glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.15);
  top: -100px;
  right: -100px;
}
.hero-section .glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.1);
  bottom: -100px;
  left: 10%;
}

.workflow-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.workflow-section .workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.workflow-section .card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 12px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.workflow-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(128, 212, 151, 0.1), transparent 50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.workflow-section .card:hover {
  background: rgba(255, 255, 255, 0.04);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}
.workflow-section .card:hover::before {
  opacity: 1;
}
.workflow-section .card .number {
  font-size: 0.9rem;
  color: #80d497;
  margin-right: 0.5rem;
}
.workflow-section .card .card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  margin-bottom: 1rem;
}
.workflow-section .card .card-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.workflow-section .card p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.7;
}

.platforms-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.platforms-section .platforms-grid-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 60%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 0% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(ellipse at 0% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  -webkit-animation: gridScan 20s linear infinite;
          animation: gridScan 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.platforms-section .platforms-blur {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(128, 212, 151, 0.5) 0%, rgba(128, 212, 151, 0.2) 40%, rgba(128, 212, 151, 0) 70%);
  -webkit-filter: blur(70px);
          filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.platforms-section .platforms-stagger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}
.platforms-section .stagger-item {
  position: relative;
  max-width: 520px;
  padding: 4rem 0;
}
.platforms-section .stagger-item.stagger-left {
  margin-left: 0;
}
.platforms-section .stagger-item.stagger-center {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.platforms-section .stagger-item.stagger-right {
  margin-left: auto;
}
.platforms-section .stagger-watermark {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
}
.platforms-section .stagger-heading {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: #80d497;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.platforms-section .stagger-body {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: #a1a1aa;
  line-height: 1.8;
}

.industry-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(128, 212, 151, 0.05)), to(transparent));
  background: linear-gradient(to bottom, transparent, rgba(128, 212, 151, 0.05), transparent);
}
.industry-section .industry-container {
  max-width: 800px;
  text-align: center;
}
.industry-section .industry-desc {
  font-size: 1.25rem;
  color: #a1a1aa;
  line-height: 1.8;
}

.arsenal-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at center, rgba(128, 212, 151, 0.05) 0%, transparent 80%);
}
.arsenal-section .arsenal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.arsenal-section .arsenal-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(128, 212, 151, 0.12) 0%, transparent 70%);
  -webkit-filter: blur(40px);
          filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.arsenal-section .orbit-center {
  z-index: 10;
  position: relative;
  pointer-events: none;
}
.arsenal-section .orbit-center .overline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.arsenal-section .orbit-center .section-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0;
  color: #80d497;
  line-height: 1;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  pointer-events: auto;
}
.arsenal-section .orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.arsenal-section .orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.arsenal-section .orbit-circle.orbit-inner {
  width: 300px;
  height: 300px;
  -webkit-animation: orbit-spin 20s linear infinite;
          animation: orbit-spin 20s linear infinite;
  border-color: rgba(255, 255, 255, 0.1);
}
.arsenal-section .orbit-circle.orbit-middle {
  width: 500px;
  height: 500px;
  animation: orbit-spin 35s linear infinite reverse;
  border-color: rgba(255, 255, 255, 0.07);
}
.arsenal-section .orbit-circle.orbit-outer {
  width: 750px;
  height: 750px;
  -webkit-animation: orbit-spin 50s linear infinite;
          animation: orbit-spin 50s linear infinite;
  border-color: rgba(255, 255, 255, 0.04);
}
.arsenal-section .orbit-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  background: #050505;
  border: 1px solid rgba(128, 212, 151, 0.3);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  color: rgba(128, 212, 151, 0.9);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  z-index: 5;
  -webkit-animation: orbit-spin-counter 20s linear infinite;
          animation: orbit-spin-counter 20s linear infinite;
}
.arsenal-section .orbit-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  -webkit-filter: drop-shadow(0 0 3px rgba(128, 212, 151, 0.3));
          filter: drop-shadow(0 0 3px rgba(128, 212, 151, 0.3));
}
.arsenal-section .orbit-icon.icon-js {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.arsenal-section .orbit-icon.icon-ts {
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.arsenal-section .orbit-icon.icon-html {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.arsenal-section .orbit-icon.icon-css {
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.arsenal-section .orbit-icon.icon-scss {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  animation-direction: reverse;
}
.arsenal-section .orbit-icon.icon-zig {
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  animation-direction: reverse;
}
.arsenal-section .orbit-icon.icon-react {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  animation-direction: reverse;
}
.arsenal-section .orbit-icon.icon-nodejs {
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes orbit-spin-counter {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.ai-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ai-section .ai-grid-bg {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 60%;
  height: 60%;
  background-image: linear-gradient(rgba(128, 212, 151, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 212, 151, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at bottom left, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at bottom left, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  -webkit-animation: grid-drift 60s linear infinite;
          animation: grid-drift 60s linear infinite;
}
.ai-section .container {
  position: relative;
  z-index: 1;
}
.ai-section .section-title {
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  display: inline-block;
}
.ai-section .ai-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #a1a1aa;
  font-size: 1.1rem;
}
.ai-section .ai-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ai-section .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.ai-section .step .step-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
}
.ai-section .step .step-box {
  width: 180px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.ai-section .step .step-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(128, 212, 151, 0.1), transparent 70%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.ai-section .step .step-box.glow {
  -webkit-box-shadow: 0 0 40px rgba(128, 212, 151, 0.15);
          box-shadow: 0 0 40px rgba(128, 212, 151, 0.15);
  border-color: rgba(128, 212, 151, 0.4);
  color: #80d497;
  background: rgba(128, 212, 151, 0.05);
}
.ai-section .step .step-box.glow::after {
  opacity: 1;
}
.ai-section .step .step-box .step-text {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.ai-section .step .step-box:hover {
  -webkit-transform: translateY(-10px) scale(1.05);
          transform: translateY(-10px) scale(1.05);
  border-color: rgba(128, 212, 151, 0.6);
  background: rgba(255, 255, 255, 0.07);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.pricing-section .pricing-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #a1a1aa;
  font-size: 1.1rem;
  text-align: center;
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pricing-section .pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.pricing-section .pricing-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.pricing-section .pricing-card:hover .card-glow {
  opacity: 0.1;
}
.pricing-section .pricing-card .card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right, #80d497, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.pricing-section .pricing-card.featured {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(128, 212, 151, 0.3);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
@media (min-width: 1024px) {
  .pricing-section .pricing-card.featured {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .pricing-section .pricing-card.featured:hover {
    -webkit-transform: scale(1.08) translateY(-8px);
            transform: scale(1.08) translateY(-8px);
  }
}
.pricing-section .pricing-card.featured .card-glow {
  opacity: 0.2;
  width: 300px;
  height: 300px;
}
.pricing-section .pricing-card.featured .featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #80d497;
  color: #050505;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.05em;
}
.pricing-section .pricing-card .pricing-header {
  margin-bottom: 2rem;
}
.pricing-section .pricing-card .pricing-header .tier-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.5rem;
}
.pricing-section .pricing-card .pricing-header .pricing-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pricing-section .pricing-card .pricing-desc {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.pricing-section .pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.pricing-section .pricing-card .pricing-features li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}
.pricing-section .pricing-card .pricing-features li:last-child {
  border-bottom: none;
}
.pricing-section .pricing-card .pricing-features li::before {
  content: "→";
  color: #80d497;
  margin-right: 0.75rem;
  font-weight: bold;
}
.pricing-section .pricing-card .pricing-value {
  margin-bottom: 2rem;
}
.pricing-section .pricing-card .pricing-value .value-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #80d497;
  letter-spacing: -0.02em;
}
.pricing-section .pricing-card .btn-primary, .pricing-section .pricing-card .btn-secondary {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  text-align: center;
  background: #111111;
}
.cta-section .gigantic-title {
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.05em;
  margin-bottom: 3rem;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#a1a1aa));
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

@media (max-width: 1024px) {
  .industry-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
  .industry-section .industry-desc {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .platforms-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
  .platforms-section .platforms-blur {
    right: -300px;
    top: -300px;
  }
  .platforms-section .stagger-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    padding: 2.5rem 0;
  }
  .arsenal-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
  .arsenal-section .arsenal-container {
    height: 520px;
  }
  .arsenal-section .orbit-circle.orbit-inner {
    width: 150px;
    height: 150px;
  }
  .arsenal-section .orbit-circle.orbit-middle {
    width: 340px;
    height: 340px;
  }
  .arsenal-section .orbit-circle.orbit-outer {
    width: 480px;
    height: 480px;
  }
  .arsenal-section .orbit-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .ai-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
  .ai-section .ai-steps {
    gap: 2rem;
  }
  .ai-section .step-box {
    width: 160px;
    height: 160px;
    font-size: 1.5rem;
  }
}