@font-face {
  font-family: 'Dune Rise';
  src: url('../fonts/Dune_Rise.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@supports (height: 100svh) {
  .wrapper,
  .content,
  .hero-container,
  .horizontal-container,
  canvas {
    height: 100svh;
  }
}

/* CSS Variables & Reset */
:root {
  --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  --secondary: #10b981;
  --accent: #f97316;
  --dark: #1f2937;
  --light: #f9fafb;
  --grey: #ffffff80;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --font-heading: Roboto, sans-serif;
  --font-body: Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Test start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Roboto, sans-serif;
  overflow-x: hidden;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
  border-radius: 5px;
  border: 1px solid rgb(0, 0, 0);
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
}

.hide-on-desktop {
  display: none;
}

#mobileToggle {
  width: 24px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#mobileToggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #808080;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#mobileToggle span:nth-child(1) {
  top: 0px;
}

#mobileToggle span:nth-child(2),
#mobileToggle span:nth-child(3) {
  top: 8px;
}

#mobileToggle span:nth-child(4) {
  top: 16px;
}

#mobileToggle.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#mobileToggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mobileToggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobileToggle.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.wrapper,
.content {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: black;
}

.content {
  overflow: hidden;
}

.content .section {
  width: 100%;
  height: 100vh;
}

.content .section.hero {
  background-image: url(https://images.unsplash.com/photo-1589848315097-ba7b903cc1cc?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  perspective: 500px;
  overflow: hidden;

  /*TEST*/
  /* opacity: 0 !important; */
}

.hero-container .hero-content {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  justify-content: center;
  background: rgb(0, 0, 0);
  mask-image: radial-gradient(
    circle at center center,
    transparent 85px,
    black 100px
  );
  -webkit-mask-image: radial-gradient(
    circle at center center,
    transparent 85px,
    black 100px
  );
}

.hero-container .hero-content .hero-text {
  position: absolute;
  top: 101px;
  z-index: 2;
  text-align: center;
}

.hero-container .hero-content .hero-text .hero-subtitle {
  color: var(--grey);
}

.hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.features-section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.features-section .feature-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  z-index: 2;
}

.features-section .feature-header .feature-title {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.features-section .feature-header .section-subtitle {
  font-size: clamp(0.5rem, 1vw, 0.75rem);
  max-width: 450px;
  margin: 0 auto;
  color: var(--grey);
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 1rem;
  transform: translateY(50px);
}

.features-section .features-grid .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .features-section .features-grid .feature-card {
    max-width: 200px;
  }
}

.features-section .features-grid .feature-card .feature-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.features-section
  .features-grid
  .feature-card
  .feature-video
  .feature-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  transition: filter 0.3s ease;
}

.features-section
  .features-grid
  .feature-card:hover
  .feature-video
  .feature-bg-video {
  filter: brightness(0.5);
}

.features-section .features-grid .feature-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.features-section .features-grid .feature-card p {
  font-size: clamp(0.5rem, 1vw, 0.75rem);
  color: var(--grey);
  position: relative;
  z-index: 2;
}

.horizontal-container {
  width: 500%;
  height: 100dvh;
  display: flex;
  flex-wrap: nowrap;
  border-top: dashed 2px grey;
}

@media (max-width: 768px) {
  .horizontal-container {
    width: 100%;
  }
}

.panel {
  --background: var(--dark);
  position: relative;
  min-width: 100dvw;
  min-height: 100dvh;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--background);
}

.panel p {
  max-width: 75ch;
}

.panel.blue {
  color: var(--dark);
  --background: var(--color-ui-blue-lt);
}
.panel.orange {
  color: var(--dark);
  --background: var(--color-svg-tangerine);
}
.panel.red {
  color: var(--dark);
  --background: var(--color-scroll-pink);
}
.panel.purple {
  color: var(--dark);
  --background: var(--color-text-purple);
}
.panel.green {
  color: var(--dark);
  --background: var(--color-core-green-lt);
}
.panel.light {
  --background: var(--light);
  color: var(--dark);
}
.panel.grey {
  --background: var(--grey);
  color: var(--light);
}

.panel.description {
  text-align: center;
}

/* Stats start */
/* .stats-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: black;
}

.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
} */

.cards-section .gallery .cards .stat-item {
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cards-section .gallery .cards .stat-label {
  width: 100%;
  height: 100%;
}

.cards-section .gallery .cards .stat-label .cta-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 33.5px;
  margin: 48px auto;
  border-radius: 10px;
  border: 1px solid #f6feb5;
  background-color: var(--neutral-colors-mine-shaft, #2c2c2c);
  box-shadow:
    0 0 312.334px #f85401,
    0 0 178.476px #f85401,
    0 0 104.111px #fdaa2d,
    0 0 52.056px #fdaa2d,
    0 0 14.873px #fdaa2d,
    0 0 7.437px #fdaa2d;
  opacity: 0.99;
  cursor: pointer;
}

.cards-section .gallery .cards .stat-label .cta-highlight:hover {
  color: #f85401;
  transform: scale(1.0625);
}

.cards-section .gallery .cards .stat-item.large-screen-only {
  display: none;
}

.cards-section .gallery .cards .stat-item.primary {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.cards-section .gallery .cards .stat-item.primary .stat-number {
  color: #ffffff;
}

.cards-section .gallery .cards .stat-item.primary .stat-label {
  color: #ffffff;
}

.cards-section .gallery .cards .stat-item.primary .stat-number {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 32px;
  transition: color 0.3s ease;
}

.cards-section .gallery .cards .stat-item.primary .stat-label {
  /* sub-title mixin removed */
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cards-section .gallery .cards .stat-item.secondary {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.cards-section .gallery .cards .stat-item.secondary .stat-number {
  color: #ffffff;
}

.cards-section .gallery .cards .stat-item.secondary .stat-label {
  color: #ffffff;
}

.cards-section .gallery .cards .stat-item.secondary .stat-number {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 32px;
  transition: color 0.3s ease;
}

.cards-section .gallery .cards .stat-item.secondary .stat-label {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.find-one-card {
  position: relative;
  width: 300px !important;
  height: 350px !important;
}

.find-one-card.primary {
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(5px);
  border: 2px solid #f6feb5 !important;
  box-shadow:
    0px 0px 312.334px 0px #f85401,
    0px 0px 178.476px 0px #f85401,
    0px 0px 104.111px 0px #fdaa2d,
    0px 0px 52.056px 0px #fdaa2d,
    0px 0px 14.873px 0px #fdaa2d,
    0px 0px 7.437px 0px #fdaa2d;
}

.find-one-card.primary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.find-one-card.primary .stat-number {
  color: #ffffff;
}

.find-one-card.primary .stat-label {
  color: #ffffff;
}

.drag-proxy {
  visibility: hidden;
  position: absolute;
}

/* give the stack perspective */
.cards {
  perspective: 1200px; /* already positioned/centered in your CSS */
  transform-style: preserve-3d; /* helps on Safari */
}

/* the 3D “hinge” for each card */
.stat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

/* faces */
.stat-card-front,
.stat-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 32px 16px;
  backface-visibility: hidden; /* hide facing-away side */
  -webkit-backface-visibility: hidden; /* Safari */
}

/* the back starts rotated 180° */
.stat-card-back {
  transform: rotateY(180deg);
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 40px;
    filter: blur(2px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px);
    letter-spacing: 30px;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 20px;
    filter: blur(0);
  }
}

@keyframes logoEntrance {
  0% {
    opacity: 0.7;
    transform: translateY(10px);
    letter-spacing: 25px;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 20px;
    filter: blur(0);
  }
}

@keyframes horizontalScroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Stats end */

.gallery {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.cards {
  position: absolute;
  width: 300px;
  height: 250px;
  top: 50%; /* use 50% for true center (or 40% if you prefer) */
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  border-radius: 16px;
}

.cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 16px;
  font-size: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
}

/* Test end */

.review-title {
  color: white;
  text-align: center;
}

/* Partnership */

/* Partnership Section */
.partnership-section {
  min-height: 100dvh;
  height: auto !important;
  padding: 4rem 2rem;
  padding-bottom: 100px;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership-section .partnership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-section .partnership-header h2 {
  margin-bottom: 1rem;
}

.partnership-section .partnership-header .section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.partnership-section .partnership-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.partnership-section .partnership-container .partnership-card {
  background: rgba(18, 18, 18, 0.4);
  border: none;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  height: auto;
  width: 100%;
  max-width: 400px;
}
.partnership-section .partnership-container .partnership-card:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.partnership-section
  .partnership-container
  .partnership-card:hover
  .text-only-btn {
  background: transparent;
  border: none;
  color: #ffffff;
}

.partnership-section
  .partnership-container
  .partnership-card
  .partnership-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.partnership-section
  .partnership-container
  .partnership-card
  .partnership-video
  .partnership-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  transition: filter 0.3s ease;
}

.partnership-section
  .partnership-container
  .partnership-card:hover
  .partnership-video
  .partnership-bg-video {
  filter: brightness(0.5);
}

.partnership-section .partnership-container .partnership-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.partnership-section .partnership-container .partnership-card p {
  color: #959595;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  opacity: 0.2 !important;
  transition: opacity 0.3s ease;
}

.partnership-section .partnership-container .partnership-card:hover p {
  opacity: 1 !important;
}

.partnership-section .partnership-container .partnership-card .partnership-btn {
  background: transparent;
  border: 1.25px solid var(--neutral-colors-light-grey, #d4d4d4);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.partnership-section
  .partnership-container
  .partnership-card
  .partnership-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f85401;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 84, 1, 0.2);
}

.partnership-section .partnership-container .partnership-card .text-only-btn {
  background: transparent;
  border: none;
  color: #959595;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: fit-content;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.partnership-section
  .partnership-container
  .partnership-card
  .text-only-btn:hover {
  color: #f85401;
  background: rgba(248, 84, 1, 0.1);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: clamp(0.75rem, 2vw, 1rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: 500;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100dvw;
  z-index: 1000;
  padding: 0.5rem 0;
  /* transition: var(--transition); */
}

/* nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
} */

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.logo {
  font-family: 'Dune Rise', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.38px;
  letter-spacing: 1em;
  text-align: center;
  color: #ffffff80;
  cursor: pointer;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: white;
  transform: scale(1.0625);
}

/* Container */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 75px; /* Adjust width as needed */
  font-family: sans-serif;
}

/* The actual "Button" styling */
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  line-height: 1.2;
  cursor: pointer;

  /* Your existing Glass Styles */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thinner border often looks cleaner on glass */
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* The Arrow Icon */
.arrow {
  position: relative;
  height: 8px;
  width: 8px;
  margin-left: 10px;
}

.arrow::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  border: solid #808080;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

/* Rotate arrow when open */
.custom-select.open .arrow::after {
  transform: rotate(-135deg);
  top: 2px;
}

/* The Dropdown List */
.custom-options {
  position: absolute;
  display: block;
  top: 120%; /* Pushes it down slightly below the button */
  left: 0;
  right: 0;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(
    20,
    20,
    20,
    0.9
  ); /* Slightly darker background for readability */
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  overflow: hidden;
}

/* State: Open */
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Individual Options */
.custom-option {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: #808080;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.custom-option.selected {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  z-index: 2;
}

.scroll-indicator span {
  color: #e0e0e0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.scroll-indicator::after {
  content: '';
  width: 30px;
  height: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  position: relative;
  opacity: 0.5;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 10px;
  background: #e0e0e0;
  border-radius: 3px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

/* Mobile Responsive */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Black hole test */
#blackhole {
  height: 100%;
  width: 100vw;
  /* position: relative; */
  display: flex;
}

canvas {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  margin: auto;
}

/* Actual black hole */
.black-hole-container {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.black-hole-container-2 {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sphere {
  transform: translateY(40px);
  width: 225px;
  height: 225px;
  border-radius: 50%;
  position: absolute;
  background-color: #000;
  background: radial-gradient(circle at 30% 30%, #494949, #000000);
  box-shadow:
    0 0 50px #ffffff,
    0 0 100px #f9fafb,
    0 0 200px rgba(255, 255, 255, 0.5),
    0 0 300px rgba(255, 255, 255, 0.3),
    inset 0 0 100px #000,
    inset 0 0 200px #000;
}

.feature-card,
.feature-header,
.features-section,
.hero-content {
  will-change: transform, opacity;
}

/*
__________________________________________
*/
.assessment-section {
  height: 200dvh;
  background-color: black;
}

.assessment-section-title {
  color: white;
  padding-left: 32px;
}

.assessment-container {
  height: 100dvh;
}

.result-container {
  height: 100dvh;
}

.assessment-features {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.assessment-features__item {
  display: flex;
  flex-wrap: wrap;
  height: 215px;
  border-top: dashed 2px grey;
}

.assessment-features__item--left {
  flex-direction: row;
  text-align: right;
  width: 70%;
  padding-left: 64px;
}

.assessment-features__item--left-center {
  flex-direction: row;
  text-align: right;
  width: 65%;
  padding-left: 64px;
}

.assessment-features__item--right {
  flex-direction: row-reverse;
}

.assessment-features__item--right-center {
  flex-direction: row-reverse;
  margin-left: 64px;
}

.assessment-features__item--left {
  flex-direction: row;
}

.assessment-features__content {
  flex: 1 1 55%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 24px;
  margin-top: 0.5rem;
}

.assessment-features__content--left {
  flex: 1 1 55%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 24px;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.assessment-features__title {
  font-size: 1.5em;
  margin-block-end: 1rem;
}

.assessment-features__description {
  line-height: 1.6;
  color: white;
}

.assessment-features__description--left {
  line-height: 1.6;
  color: white;
  text-align: left;
}

/* GSAP animation reveal styles */
.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

/* User reviews */
.review-section {
  height: 120dvh;
  background-color: black;
}

/* 1. Deep Space Background */
.review-container {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  height: 100vh;
}

.bubble--container {
  position: absolute;
  width: 900px;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Faint orbital ring */
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.text {
  align-items: center;
  font-weight: 700;
  width: 400px;
  text-align: center;
  font-size: 32px;
  z-index: 10;
  min-height: 150px;
  color: #ffffff; /* White text pops on the black hole */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- THE CENTER: BLACK HOLE / ECLIPSE --- */
/* This looks much more premium than a yellow circle and improves readability */
.bubble--large {
  z-index: 1;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: relative;

  /* The Void */
  background-color: #000;
  background: radial-gradient(circle at 30% 30%, #494949, #000000);
  border: 1px solid #f6feb5;

  /* The Event Horizon (Glowing Rim) */
  box-shadow:
    0px 0px 10px 0px #f85401,
    0px 0px 150px 0px #f85401,
    0px 0px 80px 0px #fdaa2d,
    0px 0px 15px 0px #fdaa2d,
    0px 0px 15px 0px #fdaa2d,
    0px 0px 5px 0px #fdaa2d;
}

/* --- BASE PLANET STYLES --- */
.bubble {
  z-index: 2;
  position: absolute;
  border-radius: 50%;
  overflow: visible;
}

.bubble--one {
  width: 85px;
  height: 85px;
  left: 10%;
  top: 15%;
  background: black;
  box-shadow:
    inset -10px -10px 30px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 94, 98, 0.4);
}

.bubble--two {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  background: black;
  box-shadow:
    inset 0 0 20px #ffffff,
    0 0 100px #f9fafb,
    0 0 0px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 100px #000,
    inset 0 0 200px #000;
}

.bubble--three {
  width: 70px;
  height: 70px;
  top: 80%;
  right: 15%;
  background: black;
  box-shadow:
    inset 2px -1px 15px rgb(73 70 20 / 70%),
    0 0 15px rgb(236 253 161 / 40%);
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  max-width: 450px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    black 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}

.partnership-section {
  min-height: 100dvh;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
}

.footer-section {
  min-height: 100px;
  padding: 2rem;
  background: black;
}

@media (max-width: 1025px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Base (closed) */
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: black;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    /* animation-friendly "closed" state */
    opacity: 0;
    transform: translate3d(0, -12px, 0);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 220ms ease,
      transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
      max-height 280ms ease,
      visibility 0s linear 280ms; /* hide after close animation */
  }

  /* Open */
  .nav-menu.active {
    opacity: 1;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    max-height: 70vh; /* big enough for your menu */
    visibility: visible;
    pointer-events: auto;
    border-radius: 16px;
    border: 1px solid #f6feb5 !important;
    box-shadow:
      0px 0px 1px 0px #f85401,
      0px 0px 100px 0px #f85401,
      0px 0px 5px 0px #fdaa2d,
      0px 0px 5px 0px #fdaa2d,
      0px 0px 0px 0px #fdaa2d,
      0px 0px 10px 0px #fdaa2d;

    transition:
      opacity 220ms ease,
      transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
      max-height 320ms ease,
      visibility 0s; /* show immediately */
  }

  /* Optional: stagger the items for a “cool” feel */
  .nav-menu > * {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .nav-menu.active > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger delays (adjust count to your items) */
  .nav-menu.active > *:nth-child(1) {
    transition-delay: 60ms;
  }
  .nav-menu.active > *:nth-child(2) {
    transition-delay: 90ms;
  }
  .nav-menu.active > *:nth-child(3) {
    transition-delay: 120ms;
  }
  .nav-menu.active > *:nth-child(4) {
    transition-delay: 150ms;
  }
  .nav-menu.active > *:nth-child(5) {
    transition-delay: 180ms;
  }

  /* Nice-to-have: respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .nav-menu,
    .nav-menu > * {
      transition: none !important;
    }
  }
}

@media (max-width: 768px) {
  .logo {
    width: 187px;
    height: 10px;
    font-size: 11px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 11px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .features-section .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section .feature-header .section-subtitle {
    max-width: 275px;
  }

  .assessment-section {
    height: unset;
    min-height: 250dvh;
    padding-bottom: 64px;
  }

  .assessment-section-title {
    padding-left: 0px;
  }

  .assessment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: unset;
    min-height: 125dvh;
    margin-bottom: 64px;
  }

  .result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: unset;
    min-height: 125dvh;
  }

  .assessment-features {
    width: 90%;
    justify-content: unset;
    gap: 64px;
    margin-top: 48px;
  }

  .assessment-features__item {
    height: unset;
  }

  .assessment-features__item--left {
    text-align: unset;
    width: 90%;
    padding-left: 0px;
  }

  .assessment-features__item--left-center {
    text-align: unset;
    width: 90%;
    padding-left: 0px;
  }

  .assessment-features__item--right-center {
    margin-left: 0px;
  }

  .review-title {
    padding-bottom: 16px;
  }

  .bubble--large {
    box-shadow:
      0px 0px 10px 0px #f85401,
      0px 0px 50px 0px #f85401,
      0px 0px 80px 0px #fdaa2d,
      0px 0px 15px 0px #fdaa2d,
      0px 0px 15px 0px #fdaa2d,
      0px 0px 5px 0px #fdaa2d;
  }

  .faq-section-header {
    max-width: 275px;
    margin-top: 48px;
  }

  .faq-container {
    max-width: 85%;
  }

  .partnership-section .partnership-container {
    flex-direction: column;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .hide-on-desktop {
    display: block;
  }
}
