/* ==========================================================================
                                 WICCHAIN 
   ========================================================================== */

:root {
  --bg-dark: #050509;
  --bg-dark-95: rgba(5, 5, 9, 0.95);
  --bg-soft: #11111a;
  --bg-card: #0a0a11;
  --gold: #f7b733;
  --gold-soft: #f5d27a;
  --gold-gradient: linear-gradient(135deg, #f7b733, #fceabb);
  --accent-green: #5dff9a;
  --accent-purple: #b58cff;
  --text-main: #f9fbff;
  --text-muted: #a0a4b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(247, 183, 51, 0.35);
  --max-container: 1440px;
  --max-section: 1280px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #141414;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}


.overflow-hidden {
  overflow: hidden;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.z-10 {
  z-index: 10;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-x-5 {
  column-gap: 1.25rem;
}

.gap-x-12 {
  column-gap: 3rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.grow-0 {
  flex-grow: 0;
}

.flex-1 {
  flex: 1;
}

.w-full {
  width: 100%;
}

.w-28 {
  width: 7rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.max-w-container {
  max-width: var(--max-container);
}

.list-none {
  list-style: none;
}

.mb-0 {
  margin-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.relative {
  position: relative;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-opacity-12 {
  border-color: rgba(255, 255, 255, 0.12);
}

.bg-dark-95 {
  background-color: var(--bg-dark-95);
  backdrop-filter: blur(18px);
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

/* Desktop utilities */
@media (min-width: 1280px) {
  .xl\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .xl\:gap-x-12 {
    column-gap: 3rem;
  }

  .xl\:w-36 {
    width: 9rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0;
  }

  .xl\:items-center {
    align-items: center;
  }
}

/* Navigation */
.navbar {
  border-bottom: 1px solid var(--border);
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-item:hover,
.nav-item:focus {
  color: var(--text-main);
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.nav-item:hover::before {
  transform: scaleX(1);
}

/* Buttons - Responsive Design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 36px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: normal;
  text-align: center;
  letter-spacing: 0;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .btn {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background: linear-gradient(90deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
  color: #000000;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(252, 231, 79, 0.4);
}

.btn-secondary {
  position: relative;
  background: transparent;
  color: #ffffff;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 12, 0.9);
  color: var(--text-main);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* Section Containers */
.section-container {
  max-width: var(--max-section);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .section-padding {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Typography */
.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-heading {
    font-size: 2.5rem;
  }
}

.section-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 800px;
}

/* Hero Section - Fully Responsive */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1.25rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 800px;
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 900px;
    padding: 8rem 4rem;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    gap: 5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
  }
}

.hero-subtitle {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    gap: 70px;
    width: auto;
  }
}

/* Partner Logos Section - Below CTAs */
.partner-logos-section {
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .partner-logos-section {
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .partner-logos-section {
    margin-top: 6rem;
  }
}

.partner-logos-title {
  margin: 0 0 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5d27a;
}

@media (min-width: 768px) {
  .partner-logos-title {
    font-size: 0.6875rem;
    margin: 0 0 2rem;
  }
}

.partner-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .partner-logos-row {
    gap: 2rem 3.5rem;
  }
}

.partner-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  filter: grayscale(100%) brightness(1.3);
}

@media (min-width: 768px) {
  .partner-logo {
    height: 24px;
  }
}

@media (min-width: 1024px) {
  .partner-logo {
    height: 28px;
  }
}

.partner-logo:hover {
  opacity: 0.9;
}

/* =============================================
   COMMUNITY SECTION
   ============================================= */

.community-section {
  position: relative;
  padding: 5rem 0;
  background: transparent;
}

@media (min-width: 768px) {
  .community-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .community-section {
    padding: 7.5rem 0;
  }
}

.community-container {
  max-width: 1489px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1024px) {
  .community-container {
    padding: 0 4rem;
  }
}

@media (min-width: 1280px) {
  .community-container {
    padding: 0 7.5rem;
  }
}

.community-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .community-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

@media (min-width: 1280px) {
  .community-content {
    gap: 10rem;
  }
}

/* Left Side - Text and Social Icons */
.community-left {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .community-left {
    max-width: 594px;
  }
}

.community-header {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.community-title {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .community-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .community-title {
    font-size: 4rem;
  }
}

.community-subtitle {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: normal;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .community-subtitle {
    font-size: 1.875rem;
  }
}

/* Social Icons Grid */
.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem 1.875rem;
  max-width: 355px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-icon-link:hover .social-icon {
  color: var(--gold-soft);
  transform: scale(1.1);
}

/* Right Side - Statistics */
.community-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-end;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .community-stats {
    min-height: 689px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  text-align: right;
}

.stat-value {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 120px !important;
  line-height: 1;
  letter-spacing: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gradient Text */
.stat-gradient-gold {
  background-image: linear-gradient(95deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
}

.stat-gradient-green {
  background-image: linear-gradient(95deg, rgba(94, 222, 15, 1) 0%, rgba(38, 248, 255, 1) 100%);
}

.stat-gradient-purple {
  background-image: linear-gradient(95deg, rgba(240, 135, 255, 1) 0%, rgba(91, 46, 122, 1) 100%);
}

.stat-label {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: normal;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .stat-label {
    font-size: 1.9375rem;
  }
}


.hero-bg {
  position: absolute;
  top: 0;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
}

/* Circle BG (glows) */
.hero-bg-circle-right {
  left: -15%;
  width: 55vw;
  min-width: 600px;
  height: 100%;
  object-fit: cover;
}

.hero-bg-circle-left {
  right: -20%;
  width: 75vw;
  min-width: 800px;
  height: 100%;
  object-fit: cover;
}

/* Ribbon graphics */
.hero-ribbon-left {
  left: 0;
  top: -10%;
  width: clamp(400px, 25vw, 630px);
  height: auto;
  max-height: none;
  object-fit: contain;
}

.hero-ribbon-right {
  right: 0;
  top: -3%;
  width: clamp(650px, 42vw, 1050px);
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1023px) {
  .hero-bg-circle-right {
    left: -15%;
    width: 50vw;
    min-width: 500px;
  }

  .hero-bg-circle-left {
    right: -30%;
    width: 70vw;
    min-width: 650px;
  }

  .hero-ribbon-left {
    left: -5%;
    top: -8%;
    width: clamp(320px, 28vw, 500px);
  }

  .hero-ribbon-right {
    right: -5%;
    top: -5%;
    width: clamp(500px, 45vw, 850px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-bg-circle-right {
    left: -25%;
    width: 60vw;
    min-width: 400px;
  }

  .hero-bg-circle-left {
    right: -35%;
    width: 80vw;
    min-width: 500px;
  }

  .hero-ribbon-left {
    left: -8%;
    top: -5%;
    width: clamp(250px, 32vw, 400px);
  }

  .hero-ribbon-right {
    right: -8%;
    top: 0%;
    width: clamp(400px, 50vw, 650px);
  }
}

.hero-gradient {
  background-image: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-description {
    max-width: 75%;
  }
}

.hero-description p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .hero-description p {
    font-size: 1.25rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    width: auto;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta-group {
    justify-content: flex-start;
  }
}

.partner-section {
  margin-top: 2rem;
}

.partner-eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .partner-logos {
    justify-content: flex-start;
  }
}

.partner-pill {
  border-radius: 9999px;
  padding: 0.375rem 0.8125rem;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 14, 0.9);
  font-weight: 500;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  order: -1;
}

@media (min-width: 1024px) {
  .hero-cards {
    order: 0;
  }
}

.social-card {
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(247, 183, 51, 0.12), #090910);
}

.card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.card-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.375rem 0 0.75rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.social-icon {
  padding: 0.4375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 9, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--gold-soft);
  background: rgba(247, 183, 51, 0.1);
}

.stats-card {
  padding: 1.25rem 1.375rem 1.125rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #14141f 0, #080812 40%, #14141f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stat-gold {
  color: var(--gold-soft);
}

.stat-green {
  color: var(--accent-green);
}

.stat-purple {
  color: var(--accent-purple);
}

/* Hero Background */
.hero-bg-img {
  position: absolute;
  top: -12.5rem;
  right: -12.5rem;
  width: 75rem;
  height: 75rem;
  object-fit: contain;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero-bg-img {
    width: 100rem;
    height: 100rem;
    top: -14rem;
    left: 62%;
  }
}

@media (max-width: 639px) {
  .hero-bg-img {
    left: 50%;
    width: 100rem;
    height: 100rem;
    top: -3.5rem;
  }
}

/* Grid Layouts */
.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media (min-width: 768px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Cards */
.product-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(247, 183, 51, 0.09), #101019);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.product-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1rem;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.product-description {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}



.made-for-future-section {
  position: relative;
  padding: 7.5rem 0;
  background: transparent;
  overflow: hidden;
}


.made-for-future-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../Public/Assets/Waves.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.made-for-future-container {
  position: relative;
  width: 100%;
  max-width: 1728px;
  height: 946px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

.made-for-future-heading {
  position: absolute;
  top: 0;
  left: 116px;
  width: 1100px;
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 65px;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0;
}


.future-card {
  position: absolute;
  width: 424px;
  height: 331px;
  display: flex;
  flex-direction: column;
  border-radius: 46px;
  border: none;
  backdrop-filter: blur(4.45px);
  -webkit-backdrop-filter: blur(4.45px);
  background: linear-gradient(312deg, rgba(115, 115, 115, 0.68) 0%, rgba(20, 20, 20, 0.14) 100%);
}


.future-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 46px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}


.future-card-title {
  margin: 0;
  margin-left: 20px;
  width: 384px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 44px;
  line-height: normal;
  color: #ffffff;
  letter-spacing: 0;
  z-index: 2;
  position: relative;
}


.future-card-desc {
  margin: 0;
  margin-left: 20px;
  width: 384px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #d5d5d5;
  letter-spacing: 0;
  z-index: 2;
  position: relative;
}


.future-card-1 {
  top: 202px;
  left: 730px;
  gap: 20px;
}

.future-card-1::before {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.6) 0%, rgba(16, 16, 16, 1) 100%);
}

.future-card-1 .future-card-title {
  margin-top: 54px;
  height: 56px;
}

.future-card-1 .future-card-desc {
  height: 168px;
}


.future-card-2 {
  top: 144px;
  left: 1180px;
  gap: 15px;
}

.future-card-2::before {
  background: linear-gradient(60deg, rgba(255, 255, 255, 0.6) 0%, rgba(16, 16, 16, 1) 100%);
}

.future-card-2 .future-card-title {
  margin-top: 42px;
  height: 112px;
}

.future-card-2 .future-card-desc {
  height: 120px;
}


.future-card-3 {
  top: 546px;
  left: 730px;
  gap: 15px;
}

.future-card-3::before {
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.8) 0%, rgba(16, 16, 16, 0) 100%);
}

.future-card-3 .future-card-title {
  margin-top: 30px;
  height: 112px;
}

.future-card-3 .future-card-desc {
  height: 144px;
}


.future-card-4 {
  top: 506px;
  left: 1180px;
  gap: 15px;
}

.future-card-4::before {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.6) 0%, rgba(16, 16, 16, 1) 100%);
}

.future-card-4 .future-card-title {
  margin-top: 39px;
  height: 112px;
}

.future-card-4 .future-card-desc {
  height: 144px;
}


@media (max-width: 1700px) {
  .made-for-future-container {
    max-width: 1400px;
  }

  .made-for-future-heading {
    left: 60px;
  }

  .future-card-1 {
    left: 580px;
  }

  .future-card-2 {
    left: 1030px;
  }

  .future-card-3 {
    left: 580px;
  }

  .future-card-4 {
    left: 1030px;
  }
}

@media (max-width: 1400px) {
  .made-for-future-container {
    max-width: 1200px;
    height: auto;
    min-height: 946px;
  }

  .made-for-future-heading {
    left: 40px;
    font-size: 55px;
    width: 900px;
  }

  .future-card {
    width: 380px;
    height: 300px;
  }

  .future-card-title {
    font-size: 36px;
    width: 340px;
  }

  .future-card-desc {
    font-size: 18px;
    width: 340px;
  }

  .future-card-1 {
    left: 480px;
  }

  .future-card-2 {
    left: 880px;
  }

  .future-card-3 {
    left: 480px;
  }

  .future-card-4 {
    left: 880px;
  }
}

@media (max-width: 1200px) {
  .made-for-future-container {
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 0 2rem;
  }

  .made-for-future-heading {
    position: relative;
    left: 0;
    width: 100%;
    font-size: 48px;
    margin-bottom: 3rem;
  }

  .future-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    height: auto;
    min-height: 280px;
    padding: 2rem;
  }

  .future-card-title {
    width: 100%;
    font-size: 32px;
    margin-top: 0 !important;
    height: auto !important;
    margin-bottom: 1rem;
  }

  .future-card-desc {
    width: 100%;
    height: auto !important;
    font-size: 17px;
    line-height: 1.5;
  }
}

/* Real-World Application Section */
.real-world-section {
  position: relative;
  padding: 7.5rem 0;
  background: transparent;
}

.real-world-container {
  position: relative;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 17px;
}

/* Left Side */
.real-world-left {
  position: relative;
  width: 928px;
  height: 827px;
  margin-left: 118px;
}

.real-world-globe {
  position: absolute;
  top: 490px;
  left: 464px;
  width: 464px;
  height: 337px;
  object-fit: cover;
  aspect-ratio: 0.93;
}

.real-world-heading {
  position: absolute;
  top: 30px;
  left: 0;
  width: 928px;
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 65px;
  line-height: normal;
  color: #ffffff;
  letter-spacing: 0;
}

.real-world-btn {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 280px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 16px;
  position: absolute;
  top: 677px;
  left: 0;
  border-radius: 36px;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.real-world-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.real-world-btn-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* Right Side */
.real-world-right {
  position: relative;
  margin-top: -1px;
  width: 545px;
  height: 828px;
}

/* Golden Gradient Bar */
.real-world-bar {
  position: absolute;
  top: 0;
  left: 24px;
  width: 93px;
  height: 828px;
  border-radius: 60px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(252, 231, 79, 0) 0%, rgba(216, 140, 0, 1) 100%);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.real-world-bar.animate-in {
  opacity: 1;
  transform: scaleY(1);
}

.real-world-bar-blur {
  position: absolute;
  top: 525px;
  left: 0;
  width: 93px;
  height: 303px;
  filter: blur(49.85px);
  background: linear-gradient(180deg, rgba(252, 231, 79, 0) 0%, rgba(216, 140, 0, 1) 100%);
}

/* Number Circles */
.real-world-circle {
  position: absolute;
  left: 7px;
  width: 79px;
  height: 76px;
  display: flex;
  background: #ffffff;
  border-radius: 71px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5) translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.real-world-circle.animate-in {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.real-world-circle[data-scroll-item="1"].animate-in {
  transition-delay: 0.1s;
}

.real-world-circle[data-scroll-item="2"].animate-in {
  transition-delay: 0.3s;
}

.real-world-circle[data-scroll-item="3"].animate-in {
  transition-delay: 0.5s;
}

.real-world-circle-number {
  margin-top: 17px;
  margin-left: 30px;
  width: 19px;
  height: 41px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  letter-spacing: 0;
  line-height: normal;
}

/* Feature Descriptions */
.real-world-feature {
  position: absolute;
  left: 161px;
  width: 384px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.real-world-feature.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.real-world-feature[data-scroll-item="1"].animate-in {
  transition-delay: 0.2s;
}

.real-world-feature[data-scroll-item="2"].animate-in {
  transition-delay: 0.4s;
}

.real-world-feature[data-scroll-item="3"].animate-in {
  transition-delay: 0.6s;
}

.real-world-feature-title {
  position: relative;
  margin: 0;
  margin-top: -1px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: rgba(252, 231, 79, 0.74);
  letter-spacing: 0;
  line-height: normal;
}

.real-world-feature-desc {
  position: relative;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #d5d5d5;
  letter-spacing: 0;
  line-height: normal;
}

/* Responsive */
@media (max-width: 1700px) {
  .real-world-container {
    max-width: 1400px;
  }

  .real-world-left {
    margin-left: 60px;
  }
}

@media (max-width: 1400px) {
  .real-world-container {
    flex-direction: column;
    max-width: 100%;
    gap: 3rem;
  }

  .real-world-left {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 600px;
    margin-left: 0;
  }

  .real-world-heading {
    position: relative;
    width: 100%;
    font-size: 48px;
    margin-bottom: 2rem;
  }

  .real-world-globe {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 2rem 0;
  }

  .real-world-btn {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 2rem;
  }

  .real-world-right {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 700px;
    margin: 0 auto;
  }

  .real-world-bar {
    height: 100%;
    min-height: 700px;
  }
}

/* Roadmap Section */
.roadmap-section {
  position: relative;
  padding: 7.5rem 0;
  background: transparent;
  overflow: hidden;
}

/* Right Side Glow Gradient */
.roadmap-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(245, 144, 44, 0.3) 0%, rgba(245, 144, 44, 0.15) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.roadmap-container {
  position: relative;
  width: 100%;
  max-width: 1726px;
  height: 1286px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

.roadmap-heading {
  position: absolute;
  top: 76px;
  left: 532px;
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 85px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.roadmap-subtitle {
  position: absolute;
  top: 204px;
  left: calc(50% - 372px);
  width: 743px;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 31px;
  color: #c6c6c6;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* Timeline Base */
.roadmap-timeline-base {
  position: absolute;
  top: 1057px;
  left: 117px;
  width: 1487px;
  height: 35px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    rgba(245, 144, 44, 0.6) 8px,
    rgba(245, 144, 44, 0.6) 10px,
    transparent 10px,
    transparent 18px
  );
  background-size: 100% 100%;
}

/* Connecting Lines */
.roadmap-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, rgba(245, 144, 44, 0.6) 0%, rgba(245, 144, 44, 0.2) 100%);
}

/* Milestone Content */
.roadmap-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.roadmap-title {
  position: relative;
  margin: 0;
  margin-top: -1px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.roadmap-desc {
  position: relative;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #d5d5d5;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}


.roadmap-year {
  position: absolute;
  width: 156px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px 21px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.40), inset 0 -1px 2px rgba(0, 0, 0, 0.20);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(153, 153, 153, 0.2) 100%);
}

.roadmap-year time {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  margin-left: -5px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.roadmap-year-indicator {
  position: relative;
  width: 40px;
  height: 34px;
  margin-right: -5px;
  background: #f5902c;
  border-radius: 8px;
}

.roadmap-year {
  justify-content: center;
  align-items: center;
}

.roadmap-year > div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1700px) {
  .roadmap-container {
    max-width: 1400px;
  }

  .roadmap-heading {
    left: 400px;
    font-size: 70px;
  }

  .roadmap-subtitle {
    left: calc(50% - 320px);
    width: 640px;
    font-size: 26px;
  }
}

@media (max-width: 1400px) {
  .roadmap-container {
    max-width: 100%;
    height: auto;
    min-height: 1000px;
  }

  .roadmap-heading {
    position: relative;
    left: 0;
    top: 0;
    font-size: 56px;
    margin-bottom: 1rem;
    text-align: center;
  }

  .roadmap-subtitle {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 22px;
    margin-bottom: 3rem;
  }

  .roadmap-timeline-base,
  .roadmap-line,
  .roadmap-content,
  .roadmap-year {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
  }

  .roadmap-year {
    width: auto !important;
    max-width: 200px;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 7.5rem 0;
  background: transparent;
}

/* Outer Glow Effect - Enhanced */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1700px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgb(250, 152, 55) 0%, rgba(253, 162, 25, 0.75) 30%, rgba(255, 178, 63, 0.863) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Additional Glow Layer */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1500px;
  height: 750px;
  background: radial-gradient(ellipse at center, rgba(252, 231, 79, 0.5) 0%, rgba(245, 144, 44, 0.4) 40%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

.cta-container {
  position: relative;
  width: 1488px;
  height: 695px;
  margin: 0 auto;
  border-radius: 67px;
  overflow: hidden;
  border: none;
  background-image: url('../Public/Assets/CTA.png');
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

/* Border Gradient Effect */
.cta-container::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2.2px;
  border-radius: 67px;
  background: linear-gradient(235deg, rgba(255, 255, 255, 0.46) 0%, rgba(0, 0, 0, 0.46) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

/* Join the Challenge Badge */
.cta-badge {
  position: absolute;
  top: 76px;
  left: 43px;
  width: 254px;
  height: 44px;
  border-radius: 29px;
  overflow: hidden;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  z-index: 2;
}

.cta-badge-text {
  margin-top: 5px;
  margin-left: 25px;
  width: 204px;
  height: 33px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.44px;
  line-height: 33.2px;
  white-space: nowrap;
}

/* Main Heading */
.cta-heading {
  position: absolute;
  top: 165px;
  left: 43px;
  margin: 0;
  background: linear-gradient(111deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 106px;
  letter-spacing: 2.12px;
  line-height: 160.1px;
  white-space: nowrap;
  z-index: 2;
}

/* Primary Description */
.cta-description {
  position: absolute;
  top: 310px;
  left: 43px;
  width: 683px;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #ffffff;
  letter-spacing: 0.50px;
  line-height: 37.7px;
  z-index: 2;
}

/* Secondary Description */
.cta-subdescription {
  position: absolute;
  top: 442px;
  left: 43px;
  width: 683px;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.32px;
  line-height: 19.2px;
  z-index: 2;
}

/* Buttons Container */
.cta-buttons {
  position: absolute;
  top: 506px;
  left: 43px;
  width: 626px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

/* Sign Up Button */
.cta-btn-signup {
  all: unset;
  box-sizing: border-box;
  width: 287px;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 36px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(252, 231, 79, 0.4),
              0 0 24px rgba(216, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-btn-signup:hover {
  box-shadow: 0 12px 40px rgba(252, 231, 79, 0.6),
              0 0 32px rgba(216, 140, 0, 0.5);
  transform: translateY(-2px);
}

.cta-btn-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #000000;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* See Rules Button */
.cta-btn-rules {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 310px;
  padding: 19px 16px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 36px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-btn-rules:hover {
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.cta-btn-rules::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.cta-btn-text-white {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1550px) {
  .cta-container {
    width: 95%;
    max-width: 1488px;
  }
}

@media (max-width: 1024px) {
  .cta-container {
    width: 90%;
    height: auto;
    min-height: 500px;
    padding: 3rem 2rem;
  }

  .cta-badge,
  .cta-heading,
  .cta-description,
  .cta-subdescription,
  .cta-buttons {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100%;
  }

  .cta-heading {
    font-size: 64px;
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
  }

  .cta-description {
    font-size: 20px;
    line-height: 1.5;
    margin: 1rem 0;
  }

  .cta-subdescription {
    font-size: 14px;
    line-height: 1.4;
    margin: 1rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .cta-btn-signup,
  .cta-btn-rules {
    width: 100% !important;
  }
}

/* Footer */
/* Footer Section */
.footer-section {
  background: #000000;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 120px;
  margin-bottom: 60px;
}

/* Left Column - Managed By */
.footer-col-left {
}

.footer-managed-by {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Social Media Icons */
.footer-social-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: rgba(245, 144, 44, 1);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
}

/* Middle Column - Wicchain */
.footer-col-middle {
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: rgba(245, 144, 44, 1);
}

/* Right Column - Get Connected */
.footer-col-right {
}

/* Language Selector */
.footer-language {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 40px;
  cursor: pointer;
}

.footer-globe-icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.footer-language-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

.footer-language-arrow {
  width: 12px;
  height: 12px;
  color: #FFFFFF;
}


.footer-waitlist-btn {
  width: 100%;
  max-width: 400px;
  height: 50px;
  background: linear-gradient(90deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(252, 231, 79, 0.3);
}

.footer-waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(252, 231, 79, 0.4);
}

/* Bottom Section */
.footer-bottom-section {
  position: relative;
  padding: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Large FOOTER WIC Logo */
.footer-wicchain-logo {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  opacity: 0.6;
  user-select: none;
}


/* Large Desktop (1440px and below) */
@media (max-width: 1440px) {
  /* Ecosystem Section */
  .ecosystem-container {
    max-width: 1200px;
  }

  .bento-row:first-child {
    grid-template-columns: 520px 1fr;
  }

  .bento-row:last-child {
    grid-template-columns: 1fr 500px;
  }

  /* Made For Future Section */
  .made-for-future-container {
    max-width: 1200px;
  }

  .made-for-future-heading {
    width: 900px;
    font-size: 54px;
  }

  .made-for-future-card {
    width: 280px;
    height: 140px;
  }

  /* Real World Section */
  .real-world-container {
    max-width: 1200px;
  }

  /* Roadmap Section */
  .roadmap-container {
    max-width: 1200px;
  }

  /* CTA Section */
  .cta-container {
    width: 1200px;
    height: 560px;
  }

  /* Footer */
  .footer-container {
    max-width: 1200px;
  }

  .footer-content {
    gap: 80px;
  }
}

/* Laptop (1024px and below) */
@media (max-width: 1024px) {
  /* Ecosystem Section */
  .ecosystem-container {
    max-width: 100%;
    padding: 0 2rem;
  }

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

  .bento-grid {
    flex-direction: column;
    gap: 20px;
  }

  .bento-row {
    width: 100%;
  }

  .bento-row:first-child,
  .bento-row:last-child {
    grid-template-columns: 1fr;
  }

  .bento-card {
    width: 100% !important;
  }

  /* Made For Future Section */
  .made-for-future-container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .made-for-future-heading {
    width: 100%;
    font-size: 42px;
    text-align: center;
  }

  .made-for-future-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 auto 20px;
    max-width: 400px;
  }

  /* Real World Section */
  .real-world-container {
    flex-direction: column;
    padding: 0 2rem;
  }

  .real-world-left,
  .real-world-right {
    width: 100%;
  }

  .real-world-heading {
    font-size: 36px;
  }

  /* Roadmap Section */
  .roadmap-container {
    padding: 0 2rem;
  }

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

  .roadmap-timeline-container {
    overflow-x: auto;
  }

  /* CTA Section */
  .cta-container {
    width: 100%;
    max-width: 900px;
    height: auto;
    min-height: 500px;
  }

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

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-wicchain-logo {
    max-width: 800px;
  }
}


@media (max-width: 768px) {
  /* Hero Section Tablet */
  .hero-title {
    font-size: 42px !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px !important;
  }

  .hero-description p {
    font-size: 14px;
  }

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

  .hero-cta-group .btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Ecosystem Section */
  .ecosystem-heading {
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
  }

  .ecosystem-container {
    padding: 0 2rem;
  }

  .bento-card {
    padding: 28px 24px;
  }

  .bento-card-title {
    font-size: 22px;
  }

  .bento-card-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .bento-card-link {
    padding: 11px 22px;
    font-size: 14px;
  }

  /* Made For Future Section */
  .made-for-future-heading {
    font-size: 36px;
    line-height: 1.3;
    padding: 0 2rem;
    text-align: center;
  }

  .made-for-future-container {
    padding: 0 2rem;
  }

  .made-for-future-card {
    max-width: 100%;
    padding: 24px;
  }

  .made-for-future-card-title {
    font-size: 18px;
  }

  .made-for-future-card-description {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Real World Section */
  .real-world-container {
    padding: 0 2rem;
  }

  .real-world-heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .real-world-globe {
    width: 180px;
    height: 180px;
  }

  .real-world-feature-title {
    font-size: 17px;
  }

  .real-world-feature-description {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Roadmap Section */
  .roadmap-container {
    padding: 0 2rem;
  }

  .roadmap-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .roadmap-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .roadmap-milestone {
    padding: 20px;
  }

  .roadmap-milestone-title {
    font-size: 15px;
  }

  .roadmap-milestone-description {
    font-size: 13px;
    line-height: 1.6;
  }

  /* CTA Section */
  .cta-container {
    padding: 48px 32px;
  }

  .cta-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .cta-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-subdescription {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .cta-btn-signup,
  .cta-btn-rules {
    width: 100%;
    height: 52px;
  }

  /* Footer */
  .footer-section {
    padding: 48px 0 0;
  }

  .footer-container {
    padding: 0 2rem;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-content {
    gap: 36px;
  }

  .footer-heading {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-wicchain-logo {
    max-width: 600px;
  }
}


@media (max-width: 640px) {
  
  body {
    font-size: 14px;
    overflow-x: hidden;
  }

  .section-container {
    padding: 0 1.25rem;
  }

  
  .container,
  .ecosystem-container,
  .made-for-future-container,
  .real-world-container,
  .roadmap-container,
  .cta-section,
  .footer-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hero Section Mobile */
  .hero-inner {
    padding: 2rem 1rem 1.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 11px !important;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    opacity: 0.8;
  }

  .hero-description {
    margin: 1.25rem 0;
  }

  .hero-description p {
    font-size: 10px;
    line-height: 1.5;
    opacity: 0.7;
  }

  .hero-cta-group {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .hero-cta-group .btn {
    width: auto;
    padding: 11px 22px;
    font-size: 12px;
    flex: 0 0 auto;
    font-weight: 600;
  }

  /* Social Icons Mobile */
  .community-subtitle {
    font-size: 13px !important;
    margin-bottom: 20px;
    opacity: 0.7;
  }

  .social-icons-grid {
    gap: 16px 14px;
    max-width: 100%;
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .social-icon {
    width: 36px !important;
    height: 36px !important;
    color: rgba(255, 255, 255, 0.85);
  }

  .social-icon-link {
    padding: 0;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin-top: 0;
  }

  
  .stats-card,
  .chart-card {
    padding: 40px 20px;
    border-radius: 0;
    background: transparent;
    border: none;
    text-align: center;
  }

  .stats-card h3,
  .chart-card h3 {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 12px;
    opacity: 0.7;
    font-weight: 400;
    text-transform: none;
    order: 2;
  }

  .stats-card,
  .chart-card {
    display: flex;
    flex-direction: column;
  }

  .stats-number,
  .stat-value {
    font-size: 72px !important;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    order: 1;
  }

  /* Individual stat colors on mobile */
  .stats-card:nth-child(1) .stats-number,
  .stats-card:nth-child(1) .stat-value {
    color: #E8B923;
  }

  .stats-card:nth-child(2) .stats-number,
  .stats-card:nth-child(2) .stat-value {
    color: #34D399;
  }

  .stats-card:nth-child(3) .stats-number,
  .stats-card:nth-child(3) .stat-value {
    color: #A855F7;
  }

  .stats-label,
  .stat-label {
    font-size: 14px;
    opacity: 0.6;
    font-weight: 400;
    order: 2;
    margin-top: 12px;
  }

  /* Ecosystem Section */
  .ecosystem-section {
    padding: 2.5rem 0 2rem;
  }

  .ecosystem-container {
    padding: 0 1rem;
  }

  .ecosystem-heading {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .bento-grid {
    gap: 14px;
  }

  .bento-row {
    flex-direction: column;
    gap: 14px;
  }

  .bento-card {
    width: 100% !important;
    padding: 24px 20px 28px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 16px;
    gap: 12px;
    border: none !important;
    box-shadow: none !important;
  }

  
  .bento-card::before,
  .bento-card::after {
    content: none !important;
    display: none !important;
  }

  .bento-card-wicswap::before,
  .bento-card-wicswap::after {
    content: none !important;
    display: none !important;
  }

  .bento-card-tokenization::before,
  .bento-card-tokenization::after {
    content: none !important;
    display: none !important;
  }

  .bento-card-wicchain::before,
  .bento-card-wicchain::after {
    content: none !important;
    display: none !important;
  }

  .bento-card-wicwallet::before,
  .bento-card-wicwallet::after {
    content: none !important;
    display: none !important;
  }

  .bento-card-wicswap {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* Absolute positioning for mobile */
  .bento-card-title {
    position: static !important;
    font-size: 22px !important;
    margin-bottom: 10px;
    width: auto !important;
    top: auto !important;
    left: auto !important;
    z-index: 2;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .bento-card-desc {
    position: static !important;
    font-size: 13px !important;
    line-height: 1.5;
    margin-bottom: 18px;
    width: auto !important;
    top: auto !important;
    left: auto !important;
    z-index: 2;
    opacity: 0.85;
    color: #d5d5d5;
  }

  .bento-btn {
    position: relative !important;
    padding: 12px 24px !important;
    font-size: 13px !important;
    width: auto !important;
    max-width: fit-content;
    height: 44px !important;
    top: auto !important;
    left: auto !important;
    z-index: 2;
    display: inline-flex;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    border-radius: 22px !important;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600 !important;
    border: none !important;
  }

  /* Gardient */
  .bento-btn-secondary {
    position: relative !important;
    background: transparent !important;
    color: #ffffff !important;
    isolation: isolate;
  }

  .bento-btn-secondary::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    padding: 1px !important;
    border-radius: 22px !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    z-index: -1 !important;
    pointer-events: none !important;
  }

  
  .wicchain-logo {
    width: 140px !important;
    height: 120px !important;
    top: auto !important;
    bottom: 60px !important;
    left: auto !important;
    right: 15px !important;
    opacity: 0.6 !important;
  }

  .wicswap-img {
    opacity: 0.65 !important;
    object-fit: contain !important;
    width: 100% !important;
    height: 180px !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    object-position: center bottom !important;
  }

  .bento-card-wicswap {
    background: #141414 !important;
  }

  .bento-card-tokenization {
    background: #040304 !important;
  }

  .bento-card-wicwallet {
    background: #141414 !important;
  }

  .wicwallet-img {
    width: 180px !important;
    height: 180px !important;
    top: auto !important;
    bottom: 15px !important;
    right: 5px !important;
    left: auto !important;
    opacity: 0.65 !important;
    object-fit: contain !important;
  }

  .dots-wicchain {
    opacity: 0.25 !important;
    background-size: auto !important;
  }

  .dots-wicswap {
    opacity: 0.3 !important;
    background-size: auto !important;
  }

  .dots-tokenization {
    opacity: 0.7 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 180px !important;
    object-fit: contain !important;
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .dots-wicwallet {
    opacity: 0.25 !important;
    background-size: auto !important;
  }

  .bento-card-glow,
  .glow-wicchain,
  .glow-wicswap-1,
  .glow-wicswap-2,
  .glow-tokenization,
  .glow-wicwallet-1,
  .glow-wicwallet-2 {
    opacity: 0.4 !important;
    filter: blur(100px) !important;
  }

  /* Made For Future Section */
  .made-for-future-section {
    padding: 3rem 0 3.5rem;
  }

  .made-for-future-container {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .made-for-future-heading {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 67px;
    text-align: left;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  }

  .future-card {
    padding: 54px 20px 30px;
    margin-bottom: 30px;
    border-radius: 46px;
    min-height: 346px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .future-card-title {
    font-size: 35px;
    margin: 0;
    margin-left: 0;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: normal;
    letter-spacing: 0;
  }

  .future-card-desc {
    font-size: 20px;
    line-height: normal;
    opacity: 1;
    color: #d5d5d5;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
  }

  /* Real World Section */
  .real-world-section {
    padding: 3rem 0 3rem;
  }

  .real-world-container {
    padding: 0 1.25rem;
    flex-direction: column;
    gap: 0;
  }

  .real-world-left {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }

  .real-world-heading {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 45px;
    text-align: left;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: 0;
  }

  .real-world-globe {
    display: none;
  }

  .real-world-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 30px;
    border-radius: 36px;
    height: 43px;
    width: 190px;
    min-width: 190px;
    overflow: hidden;
    border: none;
    position: relative;
    flex-shrink: 0;
  }

  .real-world-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 36px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
  }

  .real-world-btn-text {
    position: relative;
    width: fit-content;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0;
    line-height: normal;
    z-index: 2;
  }

  .real-world-right {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .real-world-bar {
    display: none;
  }

  
  .real-world-circle {
    display: none;
  }

  .real-world-feature {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
  }

  
  .real-world-feature::before {
    content: counter(feature-counter);
    width: 49px;
    height: 47px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(252, 231, 79, 0.21) 0%, rgba(216, 140, 0, 1) 100%);
    border: none;
    border-radius: 71px;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    counter-increment: feature-counter;
  }

  
  .real-world-right {
    counter-reset: feature-counter;
  }

  .real-world-feature > div:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .real-world-feature-title {
    font-size: 34px;
    margin: 0;
    font-weight: 500;
    color: rgba(252, 231, 79, 0.74);
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: normal;
    letter-spacing: 0;
  }

  .real-world-feature-desc {
    font-size: 20px;
    line-height: normal;
    opacity: 1;
    color: #d5d5d5;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
  }

  
  .roadmap-section {
    padding: 3.5rem 0 3.5rem;
    position: relative;
    overflow: visible;
  }

  .roadmap-section::after {
    display: none !important;
  }

  .roadmap-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 800px;
    background: radial-gradient(ellipse closest-side, rgba(216, 140, 0, 0.15) 0%, rgba(252, 231, 79, 0.08) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
  }

  .roadmap-container {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 352px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .roadmap-heading {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: 0;
  }

  .roadmap-subtitle {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 50px;
    text-align: center;
    opacity: 1;
    color: #d5d5d5;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
  }

  
  .roadmap-timeline-base,
  .roadmap-line {
    display: none !important;
  }

  
  .roadmap-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 50px;
    margin-bottom: 50px;
  }

  /* Override absolute positioning for mobile */
  .roadmap-content {
    position: static !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .roadmap-year {
    position: static !important;
    width: 156px !important;
    top: auto !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 5px 21px;
    border-radius: 13px !important;
    overflow: hidden;
    backdrop-filter: blur(4px) brightness(100%) saturate(87.2%);
    -webkit-backdrop-filter: blur(4px) brightness(100%) saturate(87.2%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(153, 153, 153, 0.2) 100%);
  }

  .roadmap-year > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .roadmap-year time {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .roadmap-year-indicator {
    width: 40px;
    height: 34px;
    background: #f5902c;
    border-radius: 6px;
  }

  .roadmap-title {
    font-size: 28px !important;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .roadmap-desc {
    font-size: 18px !important;
    line-height: 1.4;
    opacity: 1;
    color: #d5d5d5;
    width: 100% !important;
    text-align: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 10px;
  }

  /* CTA Section */
  .cta-section {
    padding: 3rem 0 3rem;
    position: relative;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse closest-side, rgba(216, 140, 0, 0.4) 0%, rgba(252, 231, 79, 0.2) 30%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
  }

  .cta-section::after {
    display: none;
  }

  .cta-container {
    min-height: 616px;
    max-width: 370px;
    width: 370px;
    padding: 0;
    border-radius: 39px;
    background-size: cover;
    background-position: 50% 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
  }

  .cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2.2px;
    border-radius: 39px;
    background: linear-gradient(235deg, rgba(255, 255, 255, 0.46) 0%, rgba(0, 0, 0, 0.46) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
  }

  .cta-container > * {
    position: relative;
    z-index: 2;
  }

  .cta-container > div:first-child {
    display: flex;
    flex-direction: column;
    width: 316px;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-badge {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 44px;
    padding: 5px 25px;
    border-radius: 29px;
    overflow: hidden;
    border: 1px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .cta-badge-text {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.44px;
    line-height: 33.2px;
    white-space: nowrap;
  }

  .cta-heading {
    font-size: 50px;
    line-height: 75.5px;
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(111deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }

  .cta-description {
    font-size: 18px;
    line-height: 27.2px;
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    letter-spacing: 0.36px;
  }

  .cta-subdescription {
    font-size: 16px;
    line-height: 19.2px;
    margin-bottom: 0;
    opacity: 1;
    font-weight: 400;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    letter-spacing: 0.32px;
    width: 265px;
  }

  .cta-buttons {
    gap: 21px;
    flex-direction: column;
    width: 189px;
    align-items: flex-start;
  }

  .cta-btn-signup {
    all: unset;
    box-sizing: border-box;
    height: 42px;
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 36px;
    overflow: hidden;
  }

  .cta-btn-signup .cta-btn-text {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #000000;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }

  .cta-btn-rules {
    all: unset;
    box-sizing: border-box;
    width: 128px;
    height: 31px;
    padding: 19px 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
  }

  .cta-btn-rules::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 36px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
  }

  .cta-btn-rules .cta-btn-text-white {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 2;
  }

  /* Footer */
  .footer-section {
    padding: 24px 0 0;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-logo {
    width: 130px;
    margin-bottom: 12px;
  }

  .footer-managed-by {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .footer-copyright {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .footer-heading {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 7px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-social-icons {
    gap: 8px;
  }

  .footer-social-row {
    gap: 7px;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;
  }

  .footer-social-link svg {
    width: 17px;
    height: 17px;
  }

  .footer-language {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .footer-language-text {
    font-size: 11px;
  }

  .footer-waitlist-btn {
    height: 42px;
    font-size: 12px;
  }

  .footer-bottom-section {
    padding: 24px 0 0;
  }

  .footer-wicchain-logo {
    max-width: 100%;
    opacity: 0.85;
    margin-bottom: 0;
  }

  /* Navigation Mobile */
  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-logo img {
    height: 26px;
  }

  .nav-links {
    font-size: 12px;
    gap: 14px;
  }

  .nav-links a {
    padding: 8px 12px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  
  button {
    min-height: 44px;
  }

  a {
    min-height: 40px;
  }

  .footer-social-link {
    min-width: 34px;
    min-height: 34px;
  }

  
  p {
    line-height: 1.5;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }

  
  * {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  
  section {
    position: relative;
  }

  
  .ecosystem-heading,
  .made-for-future-heading,
  .real-world-heading,
  .roadmap-heading {
    text-align: left !important;
  }
}

/* =============================================
   END RESPONSIVE STYLES
   ============================================= */

/* === HERO SECTION === */

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .hidden {
    display: none;
  }
}

@media (max-width: 639px) {
  .chart-bar {
    width: 1.875rem;
  }

  .roadmap-item {
    min-width: 80px;
    font-size: 0.75rem;
  }

  .roadmap-label {
    font-size: 0.7rem;
  }

  .cta-banner {
    padding: 1.5rem 1.25rem;
  }

  .cta-title {
    font-size: 1.875rem;
  }
}

/* =============================================
   ECOSYSTEM BENTO BOX SECTION
   ============================================= */

.ecosystem-section {
  position: relative;
  padding: 7.5rem 0;
  background: transparent;
}

.ecosystem-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .ecosystem-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1280px) {
  .ecosystem-container {
    padding: 0 2rem;
  }
}

.ecosystem-heading {
  margin: 0 0 5rem 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ecosystem-heading {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .ecosystem-heading {
    font-size: 65px;
  }
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bento-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

@media (min-width: 1024px) {
  .bento-row:first-child {
    grid-template-columns: 625px 1fr;
  }

  .bento-row:last-child {
    grid-template-columns: 1fr 615px;
  }
}

/* Base Bento Card */
.bento-card {
  position: relative;
  height: 346px;
  border-radius: 20px;
  overflow: hidden;
  background: #101010;
}

/* Gradient Border Effect */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(20, 20, 20, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.bento-card-wicswap::before,
.bento-card-tokenization::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(20, 20, 20, 1) 100%);
}

/* Card  Backgrounds */
.bento-card-wicchain {
  background: #101010;
}

.bento-card-wicswap {
  background: #141414;
}

.bento-card-tokenization {
  background: #040304;
}

.bento-card-wicwallet {
  background: #141414;
}

/* Card Title */
.bento-card-title {
  position: absolute;
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 44px;
  color: #ffffff;
  z-index: 2;
}

/* Card Description */
.bento-card-desc {
  position: absolute;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: #d5d5d5;
  z-index: 2;
}

/* WICCHAIN Card */
.bento-card-wicchain .bento-card-title {
  top: 68px;
  left: 25px;
}

.bento-card-wicchain .bento-card-desc {
  top: 129px;
  left: 25px;
  width: 191px;
}

.glow-wicchain {
  position: absolute;
  top: 218px;
  left: 292px;
  width: 240px;
  height: 232px;
  background: rgba(205, 140, 0, 0.93);
  border-radius: 50%;
  filter: blur(186.8px);
  z-index: 0;
}

.wicchain-logo {
  position: absolute;
  top: 72px;
  left: 330px;
  width: 285px;
  height: 239px;
  z-index: 1;
}

.dots-wicchain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../Public/Assets/Dot-wichain.png');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  z-index: 0;
}

/* WICSWAP Card */
.bento-card-wicswap .bento-card-title {
  top: 34px;
  left: 25px;
}

.bento-card-wicswap .bento-card-desc {
  top: 95px;
  left: 25px;
  width: 220px;
}

.dots-wicswap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../Public/Assets/Dot-wicswap.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  z-index: 0;
}

.glow-wicswap-1 {
  position: absolute;
  top: 322px;
  left: 272px;
  width: 704px;
  height: 216px;
  background: #d78c00;
  border-radius: 352px / 108px;
  filter: blur(116.2px);
  z-index: 0;
}

.glow-wicswap-2 {
  position: absolute;
  top: 322px;
  left: 14px;
  width: 704px;
  height: 216px;
  background: #d78c00;
  border-radius: 352px / 108px;
  filter: blur(116.2px);
  z-index: 0;
}

.wicswap-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Tokenization Card */
.bento-card-tokenization .bento-card-title {
  top: 40px;
  left: 25px;
}

.bento-card-tokenization .bento-card-desc {
  top: 107px;
  left: 25px;
  width: 220px;
}

.glow-tokenization {
  position: absolute;
  top: 209px;
  left: -14px;
  width: 625px;
  height: 630px;
  background: rgba(215, 140, 0, 0.74);
  border-radius: 50%;
  filter: blur(107.15px);
  z-index: 0;
}

.dots-tokenization {
  position: absolute;
  top: 203px;
  left: 0;
  width: 1087px;
  height: 397px;
  opacity: 0.5;
  z-index: 0;
}

.tokenization-img {
  position: absolute;
  top: 116px;
  left: 373px;
  width: 171px;
  height: 147px;
  z-index: 2;
}

/* WICWALLET Card */
.wicwallet-title {
  top: 31px;
  left: 22px;
}

.wicwallet-desc {
  top: 97px;
  left: 22px;
  width: 191px;
}

.wicwallet-img {
  position: absolute;
  top: 31px;
  left: 211px;
  width: 404px;
  height: 361px;
  z-index: 1;
}

.glow-wicwallet-1 {
  position: absolute;
  top: -33px;
  left: 503px;
  width: 240px;
  height: 232px;
  background: #d7c48a;
  border-radius: 50%;
  filter: blur(148.25px);
  z-index: 0;
}

.glow-wicwallet-2 {
  position: absolute;
  top: 380px;
  left: -197px;
  width: 240px;
  height: 232px;
  background: rgba(255, 206, 101, 0.93);
  border-radius: 50%;
  filter: blur(148.25px);
  z-index: 0;
}

.dots-wicwallet {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../Public/Assets/dot-wallet.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  z-index: 0;
}

/* Bento Buttons */
.bento-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 36px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  text-decoration: none;
}

.bento-btn-primary {
  background: linear-gradient(90deg, rgba(252, 231, 79, 1) 0%, rgba(216, 140, 0, 1) 100%);
  color: #000000;
}

.bento-btn-primary:hover {
  box-shadow: 0 8px 20px rgba(252, 231, 79, 0.4);
}

.bento-btn-secondary {
  background: transparent;
  color: #ffffff;
  position: relative;
}

.bento-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.bento-btn-primary:hover,
.bento-btn-secondary:hover {
  transform: translateY(-2px);
}

.bento-btn-disabled {
  background: transparent;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
}

.bento-btn-disabled::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.bento-btn-disabled-alt {
  background: transparent;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
}

.bento-btn-disabled-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, rgba(252, 231, 79, 0.21) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Button Positions */
.bento-card-wicchain .bento-btn {
  top: 241px;
  left: 25px;
}

.bento-card-wicswap .bento-btn {
  top: 165px;
  left: 25px;
}

.bento-card-tokenization .bento-btn {
  top: 217px;
  left: 25px;
  width: 208px;
}

.bento-card-wicwallet .bento-btn {
  top: 122px;
  left: 22px;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .ecosystem-heading {
    margin-bottom: 3rem;
  }

  .bento-grid {
    gap: 20px;
  }

  .bento-card {
    height: 320px;
  }

  .bento-card-title {
    font-size: 32px;
  }

  .bento-card-desc {
    font-size: 15px;
  }

  .bento-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
