:root {
  --purple-1: #8b5cf6;
  --purple-2: #c4b5fd;
  --purple-glow: rgba(139, 92, 246, 0.3);
  --muted: #9aa4b2;
  --bg: #05060a;
  --card: #0f1720;
  --text: #e6eef8;
  --accent: #a78bfa;
  --nav-height: 70px;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 2rem);
}

html, body { 
  height: 100%; 
}

body {
  background: linear-gradient(180deg, #05060a 0%, #0a0e1a 50%, #05060a 100%);
  color: var(--text);
  font-family: "League Spartan", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  padding-top: var(--nav-height);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--purple-1);
  top: 10%;
  left: -10%;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--purple-2);
  bottom: 20%;
  right: -10%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
}

.site-container {
  width: 100%;
  max-width: 90rem;
  padding: 0 1.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(5, 6, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 6, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(139, 92, 246, 0.2);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-1);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--purple-1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple-1) 0%, var(--accent) 100%);
  color: white !important;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.scroll-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  z-index: 9999;
  transition: width 0.1s ease;
}

#hero {
  min-height: calc(85vh - var(--nav-height));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

#hero-heading {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 0%, var(--purple-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blinking-cursor {
  color: var(--purple-1);
  animation: blink 1s infinite;
  font-weight: 400;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-tagline {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--purple-2);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  max-width: 75ch;
  margin-inline: auto;
  color: #b9c6d6;
  font-family: "Ubuntu", sans-serif;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-sub strong {
  color: var(--purple-1);
  font-weight: 700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  animation: fadeInUp 1s ease 0.6s both;
}


.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(135deg, var(--purple-1) 0%, var(--accent) 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2);
}

.cta-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.cta-btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.sections {
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.accordion-item {
  background: rgba(15, 23, 32, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2), var(--purple-1));
  opacity: 0;
  transition: opacity 0.3s;
}

.accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.2), 0 0 80px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.accordion-item:hover::before {
  opacity: 1;
}

.accordion-item.open {
  background: rgba(15, 23, 32, 0.8);
  border-color: rgba(139, 92, 246, 0.4);
}

.accordion-item.open::before {
  opacity: 1;
}

.accordion-header {
  padding: 2rem 2.5rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(139, 92, 246, 0.05);
}

.accordion-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e9eeff;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--purple-1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-header:hover .accordion-title {
  color: var(--purple-1);
  transform: translateX(4px);
}

.accordion-header.active .accordion-title {
  color: var(--purple-1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding: 0 2.5rem;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.accordion-item.open .accordion-content {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.accordion-inner {
  width: 100%;
  display: grid;
  gap: 2rem;
  padding: 0.5rem 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.accordion-item.open .accordion-inner {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 880px) {
  .accordion-inner {
    grid-template-columns: 1fr 2fr;
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-1), var(--accent));
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.subsection-block {
  padding: 1.5rem 1.8rem;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.subsection-block:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateX(4px);
}

.subsection-title {
  font-family: "League Spartan", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-1);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subsection-title::before {
  content: '◆';
  font-size: 0.7em;
  color: var(--purple-2);
}

.subsection-body {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #d3dfef;
}

.muted {
  color: var(--muted);
  font-size: 1.05rem;
  font-style: italic;
}

.intro-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #b9c6d6;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.tagline-emphasis {
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-1);
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.faq-item {
  padding: 1.5rem 1.8rem;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateX(4px);
}

.faq-question {
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-1);
  margin-bottom: 0.8rem;
}

.faq-answer {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #d3dfef;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.who-card {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.who-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.who-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.who-card:hover .who-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.who-label {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-1);
  margin-bottom: 0.8rem;
}

.who-desc {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #d3dfef;
}


.cta-special .accordion-content {
  background: rgba(139, 92, 246, 0.05);
}

.cta-full-width {
  text-align: center;
  padding: 2rem 1rem;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--purple-1);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b9c6d6;
  max-width: 70ch;
  margin: 0 auto 1.5rem;
}

.cta-emphasis {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-2);
  margin: 2rem 0;
  font-style: italic;
}

.cta-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0;
}


.soft-divider {
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.1), transparent);
  margin: 1.8rem 0;
  border-radius: 2px;
}


.footer-dark {
  background: rgba(4, 6, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem 0 2rem;
  color: var(--text);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
  margin-top: 6rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.brand-purple { 
  color: var(--purple-1);
  text-shadow: 0 0 20px var(--purple-glow);
}

.brand-white { 
  color: white; 
}

.footer-inner {
  display: grid;
  gap: 3rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h5 {
  color: var(--purple-1);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-about {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-style: italic;
  color: var(--purple-2);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--purple-1);
  padding-left: 5px;
}

.footer-contact {
  font-family: "Ubuntu", sans-serif;
  color: var(--muted);
}

.footer-contact a {
  color: var(--purple-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--purple-2);
}

.footer-copyright {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "Ubuntu", sans-serif;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-1), var(--accent));
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 6, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .accordion-title { 
    font-size: 1.4rem; 
  }
  
  .accordion-header { 
    padding: 1.5rem 1.5rem; 
  }
  
  .accordion-content { 
    padding: 0 1.5rem; 
  }
  
  #hero { 
    min-height: calc(70vh - var(--nav-height)); 
  }
  
  .accordion-icon {
    font-size: 1.2rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

.better-color {
  color: #d9f0d3;
}

.accordion-inner .left-col {
  display: none;
}

.accordion-inner .right-col {
  grid-column: 1 / -1;
}


@media (min-width: 880px) {
  .accordion-inner {
    grid-template-columns: 1fr; 
  }
}


#who-this-is-for .who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}


#who-this-is-for .who-grid .who-card:nth-child(4),
#who-this-is-for .who-grid .who-card:nth-child(5) {
  grid-column: span 1;
  justify-self: center;
}


@media (max-width: 900px) {
  #who-this-is-for .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {
  #who-this-is-for .who-grid {
    grid-template-columns: 1fr;
  }
}



.nav-brand:hover .logo-img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


.logo-img {
  height: 36px;         
  width: auto;
  display: inline-block;  
  vertical-align: middle;    
  margin: 0;                
  padding: 0;
}

.footer-logo {
  height: 36px;      
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

/* SVG Icon Styling */
.who-icon svg,
.faq-icon {
  width: 48px;
  height: 48px;
  stroke: var(--purple-1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.who-card:hover .who-icon svg {
  stroke: var(--purple-2);
  transform: scale(1.1) translateY(-4px);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.faq-question {
  display: flex;
  align-items: center;
}

/* Step number positioning fix for "How It Works" */
#how-it-works .who-card {
  position: relative;
  padding-top: 4rem;
}

#how-it-works .step-number {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
}

/* Mobile responsive icons */
@media (max-width: 768px) {
  .who-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
  }
}