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

:root {
  --bg: #0f172a;
  --card: #171b35;
  --surface: #1f2d56;
  --radius: 14px;
  --shadow: 0 32px 64px -12px rgba(15,23,42,0.6);
  --text: #f0f6fc;
  --muted: #94a3b8;
  --primary: #6366f1;
  --primary-hover: #524edd;
  --secondary: #14b8a6;
  --highlight: #f59e0b;
  --danger: #ef4444;
  --success: #10b981;
  --border: rgba(255,255,255,0.08);
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  background-color: #140F2C;
  color: #ffffff;
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 140px;
}

main {
  flex: 1;
  position: relative;
}

body.core-page {
  padding-bottom: 0;
}

.core-page main {
  padding-bottom: 140px;
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* Superscript styles for trademark symbols */
sup {
  font-size: 9px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

/* general styles */
.z-1 {
  z-index: 1;
  position: relative;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.px-base {
  display: flex;
  width: 100%;
  padding: 0 16px;
}

.mb-base {
  margin-bottom: 16px;
}

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

/* Header Styles */
header {
  background: #0C0822F2;
  padding: 48px 16px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.logo .logo-edge {
  background: linear-gradient(90deg, #FF5AE1 0%, #6D96FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo-edge {
  color: #a78bfa;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  flex: 1;
  justify-content: flex-end;
  gap: 48px;
}

.nav-desktop a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: #a78bfa;
}

.nav-desktop a::before {
  position: absolute;
  left: -24px;
  right: -24px;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, #4b5563, transparent);
  opacity: 0.3;
}

/* Desktop Buttons */
.buttons-desktop {
  display: none;
  gap: 8px;
}

.btn {
  padding: 6px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 24px;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  margin-top: 14px;
  align-self: flex-start;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
}

.btn-secondary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* Mobile Elements */
.mobile-elements {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-mobile {
  padding: 8px;
  background: linear-gradient(106.16deg, #E6DBFF 30.2%, #E3D8FF 111.51%);
  color: #532DFF;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  justify-content: center;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0C0822F2;
  padding: 56px 32px;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-menu-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-buttons {
  display: flex;
  gap: 16px;
}

.btn-mobile-menu {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-mobile-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-mobile-primary {
  background: linear-gradient(106.16deg, #E6DBFF 30.2%, #E3D8FF 111.51%);
  color: #532DFF;
  border: none;
}

/* Hero Slider */
.hero-slider {
  width: 100%;
  position: relative;
}

.swiper-slide {
  display: flex;
  position: relative;
  padding: 136px 16px 88px;
}

.slide-content {
  max-width: 1200px;
  width: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.slide-text {
  width: 100%;
}

.slide-content img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  aspect-ratio: 375 / 276;
  object-fit: cover;
}

.slide-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 24px;
  color: #ffffff;
  min-height: 80px;
}

.slide-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #D9D9D9;
  margin-bottom: 24px;
  text-align: center;
}

.slide-list {
  list-style: none;
  margin-bottom: 32px;
  min-height: 96px;
}

.slide-list li {
  font-size: 14px;
  line-height: 24px;
  color: #C5D4FF;
  padding-left: 16px;
  position: relative;
}

.slide-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #C5D4FF;
}

.slide-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-slide {
  padding: 15px 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  line-height: 24px;
}

.btn-slide-outline {
  background-color: transparent;
  border: 1px solid #ABDDFF;
  color: #ABDDFF;
  transition: background-color 0.3s ease;
}

.btn-slide-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-slide-primary {
  background: linear-gradient(106.16deg, #E6DBFF 30.2%, #E3D8FF 111.51%);
  color: #532DFF;
  border: none;
  transition: opacity 0.3s ease;
  font-weight: 700;
  border: 1px solid #E6DBFF;
}

.btn-slide-primary:hover {
  opacity: 0.9;
}

/* Swiper Navigation */
.swiper-nav {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 16px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 64px;
  height: 64px;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 48px;
}

.swiper-button-prev {
  background-image: url('../images/icons/prev.svg');
}

.swiper-button-next {
  background-image: url('../images/icons/next.svg');
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Desktop Slider Styles - appears at 768px */
@media (min-width: 768px) {
  .swiper-slide {
    padding: 156px 16px 220px;
  }

  .slide-content {
    max-width: 1600px;
    margin: 0 auto;
  }

  .slide-image {
    flex: 1;
    max-width: 600px;
    opacity: 0.9;
  }

  .slide-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 56px;
    min-height: unset;
    text-align: left;
  }

  .slide-subtitle {
    font-size: 24px;
    margin-bottom: 48px;
    text-align: left;
  }

  .slide-list {
    min-height: unset;
    padding-left: 8px;
    margin-bottom: 88px;
  }

  .slide-list li {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 0;
  }

  .slide-buttons {
    display: inline-flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }

  .swiper-nav {
    left: 0;
    bottom: 68px;
    transform: none;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
    transform: translateY(-100%);
    z-index: 1;
    position: relative;
  }

  .slide-content img {
    height: 100%;
    aspect-ratio: unset;
  }

  section#about {
    padding-top: 56px;
  }

  section .section-title {
    font-size: 64px;
    margin-bottom: 40px;
  }

  .core-page section#platform .section-title {
    margin-bottom: 24px;
  }

  section .divider {
    max-width: 472px;
  }

  section .section-text {
    font-size: 24px;
    line-height: 40px;
  }

  section .mb-base {
    margin-bottom: 40px;
  }

  section .callout-title,
  section .callout-text {
    font-size: 20px;
    text-align: center;
  }

  section .module-callout {
    gap: 8px;
  }

  .btn-slide-outline {
    padding-left: 48px;
    padding-right: 48px;
  }

  .btn-slide-primary {
    padding-left: 56px;
    padding-right: 56px;
  }

  .section#platform .section-subtitle,
  .section#audience .section-subtitle {
    font-size: 32px;
    line-height: 1.2;
    padding-top: 8px;
    margin-bottom: 40px;
  }

  .section#platform .section-lead {
    font-size: 24px;
    line-height: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  section .advantage-title {
    font-size: 32px;
    line-height: 56px;
  }

  section .advantage-cards {
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-page section .section-text {
    max-width: 1040px;
    font-size: 28px;
    line-height: 40px;
    margin: 0 auto;
  }

  .core-page section .core-page-subtitle {
    font-size: 32px;
  }

  .core-page section.core-description-section {
    padding-bottom: 190px;
  }
}

/* Tablet adjustments */
@media (max-width: 1280px) and (min-width: 1024px) {
  .nav-desktop {
    gap: 24px;
  }

  .nav-desktop a,
  .btn {
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }

  .header-container {
    gap: 24px;
  }

  .buttons-desktop a {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Shared Section Styles */
.section {
  padding: 120px 16px 0;
  width: 100%;
  z-index: 2;
  position: relative;
}

.section#platform .section-title {
  margin-bottom: 0;
}

.section#audience .section-title {
  margin-bottom: 8px;
}

.section#modules {
  padding-bottom: 120px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.container-scroll {
  display: flex;
  gap: 24px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.container-scroll::-webkit-scrollbar {
  display: none;
}

/* Typography */
.section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 56px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 24px;
}

.section-summary {
  color: #E6DBFF;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #E6DBFF;
  margin-bottom: 24px;
}

.section-subtitle-bold {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #E6DBFF;
  margin-bottom: 56px;
}

.section-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #D9D9D9;
  margin-bottom: 24px;
  text-shadow: 0px 0px 32px rgba(195, 144, 252, 0.4);
}

.section-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

.section-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 56px;
}

/* Divider */
.divider {
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 14, 45, 0) 0%, rgba(61, 109, 255, 1) 29%, rgba(146, 85, 245, 1) 50%, rgba(61, 109, 255, 1) 71%, rgba(18, 14, 45, 0) 100%);
  margin: 0 auto;
  width: 100%;
  max-width: 312px;
}

/* Buttons */
.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-gradient {
  background: linear-gradient(106.16deg, #E6DBFF 30.2%, #E3D8FF 111.51%);
  color: #532DFF;
  border: none;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ABDDFF;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 11px 56px;
}

/* Hero Introduction Section */
.section-hero-intro {
  text-align: center;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  max-width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.feature-list li {
  font-size: 14px;
  line-height: 24px;
  color: #C5D4FF;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #C5D4FF;
}

/* Module Cards */
.module-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.module-card {
  background: rgba(24, 26, 49, 0.3);
  border: 1px solid rgba(79, 82, 108, 0.2);
  border-radius: 8px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.module-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.module-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

.module-title sup {
  font-size: 12px;
  font-weight: 800;
  vertical-align: super;
  line-height: 0;
}

.module-title-intel {
  background: linear-gradient(90deg, #FF5AE1 0%, #6D96FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.module-title-fundamentals {
  background: linear-gradient(90deg, #FF5AE1 0%, #6D96FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.module-title-strategy {
  background: linear-gradient(90deg, #FF5AE1 0%, #6D96FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.module-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.module-subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}

.module-description {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #EAD5FF;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.feature-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.8;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url('../images/icons/checkmark.svg') no-repeat center;
  background-size: contain;
}


.module-callout {
  background: rgba(18, 14, 45, 0.2);
  border-radius: 12px;
  padding: 32px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.callout-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #CA95FF;
}

.callout-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #EAD5FF;
}

/* Dark Section */
.section-dark {
  background: #181A2F;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Advantage Section */
.advantage-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.advantage-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #E6DBFF;
}

.advantage-cards {
  display: grid;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 56px;
}

.advantage-platform-image {
  width: 100%;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 24px;
  border-radius: 8px;
  text-align: center;
}

.advantage-card p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #EAD5FF;
}

.advantage-card-purple {
  background: linear-gradient(138deg, rgba(122, 61, 183, 0.30) 9.08%, rgba(140, 35, 245, 0.30) 91.9%);
}

.advantage-card-blue {
  background: linear-gradient(138deg, rgba(32, 128, 255, 0.30) 9.08%, rgba(6, 52, 188, 0.30) 91.9%);
}

.advantage-card-teal {
  background: linear-gradient(138deg, rgba(61, 156, 183, 0.30) 9.08%, rgba(39, 93, 108, 0.30) 91.9%);
}

.advantage-card-red {
  background: linear-gradient(138deg, rgba(183, 61, 109, 0.30) 9.08%, rgba(108, 39, 56, 0.30) 91.9%);
}

.advantage-card-orange {
  background: linear-gradient(138deg, rgba(183, 85, 61, 0.30) 9.08%, rgba(108, 49, 39, 0.30) 91.9%);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Audience Grid */
.audience-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audience-card {
  background: radial-gradient(52.82% 86.46% at 50% 25.21%, rgba(113, 19, 206, 0.05) 0%, rgba(38, 16, 138, 0.05) 100%);
  border: 1px solid rgba(197, 212, 255, 0.1);
  border-radius: 8px;
  padding: 40px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.audience-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  background: radial-gradient(circle at 50% 50%, rgba(181, 107, 255, 1) 0%, rgba(63, 11, 115, 1) 100%);
}

.audience-icon img {
  width: 32px;
  height: 32px;
}

.audience-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.audience-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.audience-description {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #C5D4FF;
  margin: 0;
}

/* Info Cards */
.section-cards {
  overflow: hidden;
}

.info-card {
  min-width: 320px;
  height: 400px;
  background: linear-gradient(180deg, rgba(24, 26, 47, 0.7) 0%, rgba(20, 15, 44, 1) 83%);
  border-radius: 8px;
  padding: 80px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  scroll-snap-align: start;
}

.info-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  color: #ffffff;
}

.info-card-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #E3D8FF;
}

.info-card-text-highlight {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}

/* CTA Section */
.section-cta {
  padding: 105px 24px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(113, 19, 206, 0.4) 0%, rgba(113, 19, 206, 0.6) 30%, rgba(20, 15, 44, 1) 96%), url("../images/onboarding.jpg");
  background-size: cover;
  background-position: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {

  .hide-on-desktop {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .nav-desktop {
    display: flex;
  }

  .buttons-desktop {
    display: flex;
  }

  .mobile-elements {
    display: none;
  }

  .section#modules {
    position: relative;
    z-index: 2;
  }

  header {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 24px;
  }

  .button-group {
    flex-direction: row;
    justify-content: center;
  }

  .advantage-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .advantage-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 250px;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .audience-card {
    width: 100%;
  }

  .container-scroll {
    padding: 0 60px;
    gap: 32px;
  }

  .section-cta .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .section-cta .cta-buttons .btn-slide {
    width: auto;
  }

  .audience-grid {
    gap: 24px 32px;
    max-width: 1056px;
    margin: 0 auto;
  }

  .audience-card {
    width: 100%;
  }

  section.section-cta {
    background: linear-gradient(180deg, #140F2C 17.83%, rgba(0, 0, 0, 0.00) 69.9%), linear-gradient(180deg, rgba(20, 15, 44, 0.14) -48.61%, rgba(20, 15, 44, 0.70) 96.43%), url("../images/onboarding.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 330px;
    margin-top: -280px;
    padding-bottom: 240px;
  }

  section.section-cta.about-page-cta {
    padding-top: 880px;
      margin-top: -700px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slide-title {
    min-height: 112px;
  }
}

@media (max-width: 767px) {

  .slide-buttons .btn-slide {
    min-width: 242px;
  }

  .cta-buttons .btn-slide {
    font-size: 14px;
    padding: 7px 0;
  }

  .section#platform {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .core-page section.core-description-section {
    padding-bottom: 120px;
  }
}

.core-link-arrow {
  width: 28px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .core-link-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 1023px) {

  .hide-on-mobile {
    display: none !important;
  }
  
  .cta-buttons .btn-slide {
    width: 100%;
  }

  .cta-buttons {
    padding-top: 24px;
  }

  .section-cta {
    border-radius: 8px;
  }

  .px-base-mobile {
    display: flex;
    width: 100%;
    padding: 0 16px;
  }

  .section#audience {
    padding-bottom: 120px;
  }
}

@media (max-width: 1199px) {
  .core-link-arrow {
    display: none;
  }
}

@media (min-width: 1600px) {
  .section .module-cards .module-card {
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  section .module-cards .module-subtitle {
    font-size: 20px;
  }

  section .module-title {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  section .module-cards {
    padding-top: 40px;
    gap: 4px;
    align-items: center;
    flex-direction: row;
  }

  section .module-callout {
    border-radius: 12px;
    border: 1px solid rgba(79, 82, 108, 0.2);
    background: rgba(18, 14, 45, 0.20);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    margin-top: -5px;
    padding: 20px 24px;
  }

  section .module-cards .divider {
    max-width: 304px;
  }

  section .advantage-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) {
  section .advantage-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.core-page section .divider {
  max-width: 304px;
  margin-bottom: 24px;
}

.core-page section .section-text {
  color: #EAD5FF;
}

.core-page-subtitle {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  margin-bottom: 56px;
}

.core-page .section-cta {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  margin: 0;
}

/* ================================
   Asset Class Card Icon Styles
   ================================ */

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.category-card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.category-card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.category-card .asset-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--secondary);
}

.back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Filter controls */
.filter-wrapper {
  position: relative;
  display: inline-block;
}

.filter-wrapper--detail {
  position: relative;
  display: inline-block;
}

.filter-btn-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.filter-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  background-color: rgba(15, 23, 42, 0.25);
  outline: none;
}

.filter-icon {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--highlight); /* yellow */
}

.filter-icon path {
  fill: var(--highlight);
}

.filter-popover {
  position: absolute;
  top: 120%;
  right: 0;
  background: #ffffff;
  color: #0f172a;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
  padding: 0.75rem 1rem;
  min-width: 230px;
  z-index: 20;
  display: none;
}

.filter-popover.open {
  display: block;
}

.filter-field {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-field label {
  font-size: 0.8rem;
  font-weight: 600;
}

.filter-field input,
.filter-field select {
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.18);
  font-size: 0.8rem;
  padding: 0.25rem 0.45rem;
  background: #f9fafb;
  color: #0f172a;
}

.filter-field input:focus,
.filter-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.5);
}

.filter-actions {
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.filter-btn--calendar {
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
}

.filter-btn--calendar:hover {
  background: var(--primary-hover);
}

.filter-btn--charts {
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
}

.filter-btn--charts:hover {
  background: var(--primary-hover);
}

.calendar-icon {
  width: 18px;
  height: 18px;
}

.filter-btn-text {
  display: inline-block;
  padding-left: 5px;
}

/* Utility */
.asset_class_landing_header {
  margin-bottom:10px;
  text-align: center;
}
.asset_class_header {
  margin-bottom:10px;
}

.legal-privacy-text {
  max-width: 900px;
}


#assetChartsOverlay.overlay-modal--charts-backdrop{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.60);
}
#assetChartsOverlay[hidden] { display: none !important; }

#assetChartsOverlay .overlay-modal--charts{
  max-width: 1040px;
  width: calc(100% - 32px);
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.40);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

#assetChartsOverlay .overlay-modal--charts-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding: 16px 16px 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#assetChartsOverlay .overlay-modal--charts-title{
  margin: 0;
}

#assetChartsOverlay .overlay-modal--charts-close{
  appearance:none;
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
  color: inherit;
}

#assetChartsOverlay .overlay-modal--charts-body{
  padding: 16px;
}

body.overlay-modal--charts-open{
  overflow:hidden;
}

/* Agreement modal overlay */
.ae-agreement-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ae-agreement-modal {
  width: min(920px, 100%);
  max-height: 86vh;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 52px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ae-agreement-header {
  padding: 18px 22px;
  border-bottom: 1px solid #ececec;
}

.ae-agreement-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #111;
}

.ae-agreement-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.ae-agreement-footer {
  padding: 16px 22px;
  border-top: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ae-agreement-footer--stacked {
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.ae-agreement-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ae-agreement-disclaimer {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

.ae-agreement-check {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #333;
  user-select: none;
}

.ae-agreement-actions {
  display: flex;
  gap: 10px;
}

.ae-btn {
  padding: 6px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 24px;
}

.ae-btn-primary {
  margin-top: 14px;
  align-self: flex-start;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
}

.ae-btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.ae-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.ae-agreement-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.ae-agreement-link:hover {
  color: var(--primary-hover);
}