@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

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

body {
  background-color: #000;
  font-family: 'Inter Tight', sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header */
.header {
  background-color: transparent;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  transform: translate(0px, 45px);
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 41px;
  width: auto;
}

.nav-button {
  border: 1px solid #fff;
  background-color: #fff;
  color: #212121;
  text-align: center;
  border-radius: 17px;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: 0.3s;
}

.nav-button:hover {
  border-color: #f25325;
  background-color: #f25325;
  color: #fff;
}

/* Home Hero Section */
.home-hero-section {
  height: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
}

/* Hero Circle Wrapper + Gradient */
.hero-circle-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 1440px;
  height: 1440px;
  display: flex;
  position: absolute;
  inset: -5% 0% 0% 50%;
  transform: perspective(1000px) translate(-50%, -40%);
  pointer-events: none;
}

.black-background-circle {
  background: radial-gradient(circle, #000 40%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.2) 65%, transparent 78%);
  width: 1200px;
  height: 1200px;
  border-radius: 10000px;
  position: relative;
  filter: blur(15px);
}

.gradient-circle {
  z-index: -1;
  background-image: linear-gradient(90deg, #ff7023, #bf4a91 50%, #c823ff);
  filter: blur(30px);
  border-radius: 1000px;
  width: 1440px;
  height: 1440px;
  position: absolute;
}

/* Circle Left accents */
.circle-left {
  background-color: #ff2323;
  opacity: 0.5;
  filter: blur(100px);
  mix-blend-mode: plus-lighter;
  border-radius: 1000px;
  width: 605px;
  height: 605px;
  position: absolute;
  inset: -20% auto auto -10%;
}

.circle-left.right {
  background-color: #680066;
  inset: -20% -10% auto auto;
}

/* Hero Background Image */
.hero-background-image {
  opacity: 0.15;
  position: absolute;
  inset: 0% auto auto 0%;
  width: 100%;
  height: auto;
}

/* Hero Content */
.hero-detail-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Badge Pill */
.hero-sub-heading-div {
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 11px 18px;
  display: inline-flex;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.hero-sub-heading-div img {
  width: 12px;
  height: 12px;
}

.hero-sub-heading-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* Headings */
.h1-heading {
  color: #fff;
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
}

.hero-heading {
  max-width: 769px;
  margin-left: auto;
  margin-right: auto;
}

/* Large Paragraph */
.large-paragraph {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.8);
}

.hero-paragraph {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

/* CTA Arrow Button */
.arrow-button-link {
  justify-content: flex-start;
  align-items: center;
  line-height: 120%;
  text-decoration: none;
  display: flex;
  gap: 6px;
}

.arrow-button-div {
  z-index: 1;
  border: 1px solid #fff;
  background-color: #fff;
  color: #212121;
  border-radius: 17px;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  position: relative;
  transition: 0.3s;
}

.button-arrow-icon-div {
  background-color: #fff;
  border-radius: 17px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.arrow-button-link:hover .arrow-button-div {
  border-color: #f25325;
  background-color: #f25325;
  color: #fff;
}

.arrow-button-link:hover .button-arrow-icon-div {
  background-color: #f25325;
}

.arrow-button-link:hover .button-arrow-icon-div img {
  filter: brightness(0) invert(1);
}

.button-arrow-icon-div img {
  width: 20px;
  height: 20px;
}

/* Stats / Proven Numbers */
.proven-number-grid {
  z-index: 2;
  gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 920px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: grid;
}

.proven-number-line {
  background-color: rgba(255, 255, 255, 0.5);
  width: 46px;
  height: 1px;
  margin-bottom: 12px;
}

.h3-heading {
  color: #fff;
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 120%;
}

.proven-number {
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 18px;
}

.small-paragraph {
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

/* Footer */
.footer {
  padding-top: 25px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-line {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
}

.footer-bottom-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 41px;
  width: auto;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media screen and (max-width: 991px) {
  .home-hero-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .hero-circle-wrapper {
    transform: perspective(1000px) translate(-50%, -45%);
  }

  .circle-left {
    width: 400px;
    height: 400px;
    left: -15%;
  }

  .circle-left.right {
    right: -15%;
  }

  .h1-heading {
    font-size: 48px;
  }

  .hero-sub-heading-text {
    font-size: 12px;
  }

  .hero-paragraph {
    white-space: normal;
  }

  .proven-number-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top: 80px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .gradient-circle {
    width: 1000px;
    height: 1000px;
  }

  .hero-circle-wrapper {
    width: 1000px;
    height: 1000px;
    transform: perspective(1000px) translate(-50%, -30%);
  }

  .home-hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .h1-heading {
    font-size: 36px;
  }

  .hero-sub-heading-text {
    font-size: 11px;
  }

  .proven-number-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    padding: 0 20px;
  }

  .h3-heading {
    font-size: 28px;
  }
}
