/* Reset and Base Styles */
:root {
  /* Brand Colors */
  --primary-purple: #6B46C1;
  --neon-violet: #9F7AEA;
  --mint-green: #68D391;
  --crypto-blue: #4299E1;
  
  /* Dark Mode Colors */
  --bg-dark: #1A202C;
  --bg-darker: #171923;
  --bg-card: #2D3748;
  --text-primary: #F7FAFC;
  --text-secondary: #CBD5E0;
  --text-muted: #718096;
  
  /* Accent Colors */
  --accent-purple: #805AD5;
  --accent-green: #48BB78;
  --accent-blue: #3182CE;
  
  /* Gradients */
  --gradient-purple: linear-gradient(135deg, var(--primary-purple) 0%, var(--neon-violet) 100%);
  --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(159, 122, 234, 0.1);
  transition: all 0.3s ease;
}

/* Add scroll effect for header */
.header.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neon-violet);
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav a:hover {
  color: var(--neon-violet);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-violet);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-violet);
  position: relative;
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--neon-violet);
  transition: transform 0.3s ease;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  bottom: -6px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.25rem;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }

  .nav a:hover {
    background: rgba(159, 122, 234, 0.1);
  }

  .menu-icon.active {
    background: transparent;
  }

  .menu-icon.active::before {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-icon.active::after {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* Content Wrapper */
.content-wrapper {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .content-wrapper {
    margin-top: 4rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(159, 122, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero .subheadline {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  max-width: 800px;
  line-height: 1.4;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero p:not(.subheadline) {
  font-size: 1.25rem;
  color: white;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-buttons button {
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cta-buttons .primary {
  background: linear-gradient(
    135deg,
    var(--neon-violet) 0%,
    var(--primary-purple) 100%
  );
  color: white;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons .secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--neon-violet);
  color: white;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 6px 12px rgba(0, 0, 0, 0.1);
}

.cta-buttons button:active {
  transform: translateY(1px);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(26, 32, 44, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(159, 122, 234, 0.1);
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-purple);
}

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
}

/* Power of Peptides Section */
#peptides {
  background: #0D0D0D;
  padding: 5rem 1.5rem;
}

#peptides h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--neon-violet);
}

#peptides .content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  perspective: 1000px;
}

.flip-card {
  background: transparent;
  height: 16rem;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.flip-card-front {
  background: var(--primary-purple);
  color: white;
}

.flip-card-back {
  background: #1F2937;
  color: var(--text-secondary);
  transform: rotateY(180deg);
}

.flip-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  text-align: center;
}

.flip-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

.benefits-summary {
  max-width: 48rem;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2rem;
}

.benefits-summary h3 {
  font-size: 1.75rem;
  color: var(--neon-violet);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.benefits-summary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.benefits-summary li {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.benefits-summary strong {
  color: var(--neon-violet);
}

.benefits-summary .italic {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  background: rgba(45, 55, 72, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(159, 122, 234, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(159, 122, 234, 0.2);
  border-color: rgba(159, 122, 234, 0.3);
}

/* Token Elements */
.token-element {
  background: var(--gradient-card);
  border: 1px solid rgba(159, 122, 234, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.token-element:hover {
  border-color: var(--neon-violet);
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.2);
}

/* Footer */
.footer {
  background: #0D0D0D;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neon-violet);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  height: 1.5rem;
  width: 1.5rem;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.social-icon:hover {
  transform: scale(1.1);
  color: var(--neon-violet);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.disclaimer p {
  margin-bottom: 0.5rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-icon {
    height: 1.25rem;
    width: 1.25rem;
  }

  .disclaimer {
    font-size: 0.625rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 1rem;
  }

  .logo-container {
    margin-bottom: 1rem;
  }

  .logo-img {
    height: 36px; /* Slightly smaller on tablet */
  }

  .nav {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
    text-shadow: 
      0 1px 2px rgba(0, 0, 0, 0.3),
      0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .hero .subheadline {
    font-size: 1.25rem;
    text-shadow: 
      0 1px 2px rgba(0, 0, 0, 0.3),
      0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .hero p:not(.subheadline) {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }

  .section {
    padding: 4rem 1rem;
    margin: 1rem;
  }

  .background-image {
    animation-duration: 60s;
  }

  #peptides {
    padding: 3rem 1rem;
  }

  #peptides h2 {
    font-size: 2rem;
  }

  #peptides .content p {
    font-size: 1.125rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flip-card {
    height: 14rem;
  }

  .flip-card h3 {
    font-size: 1.125rem;
  }

  .flip-card p {
    font-size: 0.75rem;
  }

  .benefits-summary {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .benefits-summary h3 {
    font-size: 1.5rem;
  }

  .benefits-summary li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .logo-img {
    height: 32px; /* Even smaller on mobile */
  }

  .logo-text {
    font-size: 1.25rem;
  }
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(159, 122, 234, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(159, 122, 234, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(159, 122, 234, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Background Styles */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  animation: kenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
  filter: blur(1px);
}

@keyframes kenBurns {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 32, 44, 0.95) 0%,
    rgba(26, 32, 44, 0.85) 50%,
    rgba(26, 32, 44, 0.95) 100%
  );
  backdrop-filter: blur(8px);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  .background-image {
    animation: none;
  }
}

/* Add loading state */
.background-image.loading {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.background-image.loaded {
  opacity: 1;
}

/* Problem Section */
#problem {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.problem-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-content {
  color: white;
}

#problem h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--neon-violet);
}

.problem-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
}

.problem-icon {
  color: var(--neon-violet);
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.125rem;
}

.solution-card {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(88, 28, 135, 0.9) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.solution-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-tag {
  display: inline-block;
  background: white;
  color: var(--primary-purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #problem {
    padding: 4rem 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #problem h2 {
    font-size: 2rem;
  }

  .problem-intro {
    font-size: 1.125rem;
  }

  .problem-list li {
    font-size: 1rem;
  }

  .solution-card {
    padding: 2rem;
  }

  .solution-card h3 {
    font-size: 1.5rem;
  }

  .solution-card p {
    font-size: 1rem;
  }
}

/* How It Works Section */
#how-it-works {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.how-it-works-header {
  max-width: 80rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.how-it-works-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  background: linear-gradient(to bottom, #1a1a1d, #101010);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

.step-number {
  background: var(--primary-purple);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.step-list li::before {
  content: "•";
  color: var(--neon-violet);
  position: absolute;
  left: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #how-it-works {
    padding: 4rem 1rem;
  }

  .how-it-works-header {
    margin-bottom: 3rem;
  }

  #how-it-works h2 {
    font-size: 2rem;
  }

  .how-it-works-intro {
    font-size: 1.125rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .step-card h3 {
    font-size: 1.25rem;
  }

  .step-card p,
  .step-list li {
    font-size: 0.875rem;
  }
}

/* $PEP Coin Section */
#pep-coin {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.pep-coin-header {
  max-width: 72rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#pep-coin h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.pep-coin-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.pep-coin-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.pep-coin-card {
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.utility-card {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(88, 28, 135, 0.9) 100%);
  transition: box-shadow 0.3s ease;
}

.utility-card:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

.blockchain-card {
  background: linear-gradient(135deg, #1a1a1d 0%, #101010 100%);
  border: 1px solid rgba(159, 122, 234, 0.4);
}

.pep-coin-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.pep-coin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pep-coin-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.pep-coin-list li::before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
}

.blockchain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blockchain-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--neon-violet);
  font-weight: 600;
}

.pep-coin-footer {
  max-width: 48rem;
  margin: 5rem auto 0;
  text-align: center;
}

.pep-coin-quote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #pep-coin {
    padding: 4rem 1rem;
  }

  .pep-coin-header {
    margin-bottom: 3rem;
  }

  #pep-coin h2 {
    font-size: 2rem;
  }

  .pep-coin-intro {
    font-size: 1.125rem;
  }

  .pep-coin-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pep-coin-card {
    padding: 2rem;
  }

  .pep-coin-card h3 {
    font-size: 1.25rem;
  }

  .pep-coin-list li,
  .blockchain-list li {
    font-size: 0.875rem;
  }

  .pep-coin-quote {
    font-size: 1rem;
  }
}

/* Personalized Protocols Section */
#personalized {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.personalized-header {
  max-width: 80rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#personalized h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.personalized-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.protocols-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.protocol-card {
  background: #1a1a1d;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.protocol-card:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
  transform: translateY(-2px);
}

.protocol-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-violet);
  margin-bottom: 0.5rem;
  transition: text-decoration 0.3s ease;
}

.protocol-card:hover h3 {
  text-decoration: underline;
}

.protocol-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.personalized-footer {
  max-width: 48rem;
  margin: 4rem auto 0;
  text-align: center;
}

.personalized-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Mobile optimizations */
@media (max-width: 1024px) {
  .protocols-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #personalized {
    padding: 4rem 1rem;
  }

  .personalized-header {
    margin-bottom: 3rem;
  }

  #personalized h2 {
    font-size: 2rem;
  }

  .personalized-intro {
    font-size: 1.125rem;
  }

  .protocols-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .protocol-card {
    padding: 1.25rem;
  }

  .protocol-card h3 {
    font-size: 1.125rem;
  }

  .protocol-card p {
    font-size: 0.75rem;
  }

  .personalized-quote {
    font-size: 0.875rem;
  }
}

/* Supporters Section */
#supporters {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.supporters-header {
  max-width: 72rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#supporters h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.supporters-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.supporters-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.supporters-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.purpose-card {
  background: linear-gradient(135deg, #1a1a1d 0%, #101010 100%);
  transition: box-shadow 0.3s ease;
}

.purpose-card:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

.believers-card {
  background: #1a1a1d;
  border: 1px solid rgba(159, 122, 234, 0.3);
  transition: all 0.3s ease;
}

.believers-card:hover {
  border-color: var(--neon-violet);
}

.believers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
  border-radius: 1rem;
  pointer-events: none;
  animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

.supporters-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-violet);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purpose-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.purpose-list li::before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
}

.highlight {
  color: var(--neon-violet);
  font-weight: 600;
}

.believers-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.believers-tag {
  position: relative;
  z-index: 1;
}

.believers-tag span {
  display: inline-block;
  background: var(--primary-purple);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.supporters-footer {
  max-width: 48rem;
  margin: 5rem auto 0;
  text-align: center;
}

.supporters-quote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #supporters {
    padding: 4rem 1rem;
  }

  .supporters-header {
    margin-bottom: 3rem;
  }

  #supporters h2 {
    font-size: 2rem;
  }

  .supporters-intro {
    font-size: 1.125rem;
  }

  .supporters-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .supporters-card {
    padding: 1.5rem;
  }

  .supporters-card h3 {
    font-size: 1.25rem;
  }

  .purpose-list li,
  .believers-text {
    font-size: 0.875rem;
  }

  .believers-tag span {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .supporters-quote {
    font-size: 1rem;
  }
}

/* Learn Section */
#learn {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

#learn .learn-header {
  max-width: 72rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#learn h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

#learn .learn-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

#learn .learn-accordion {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#learn .learn-item {
  background: #1a1a1d;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#learn .learn-item:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

#learn .learn-summary {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neon-violet);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
}

#learn .learn-summary::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

#learn .learn-item[open] .learn-summary::after {
  transform: rotate(45deg);
}

#learn .learn-item[open] .learn-summary {
  text-decoration: underline;
}

#learn .learn-content {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

#learn .learn-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#learn .learn-content li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

#learn .learn-content li::before {
  content: "•";
  color: var(--neon-violet);
  position: absolute;
  left: 0;
}

#learn .learn-content .highlight {
  color: var(--neon-violet);
  font-weight: 600;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #learn {
    padding: 4rem 1rem;
  }

  #learn .learn-header {
    margin-bottom: 3rem;
  }

  #learn h2 {
    font-size: 2rem;
  }

  #learn .learn-intro {
    font-size: 1.125rem;
  }

  #learn .learn-accordion {
    gap: 1rem;
  }

  #learn .learn-item {
    padding: 1.25rem;
  }

  #learn .learn-summary {
    font-size: 1.125rem;
  }

  #learn .learn-content {
    font-size: 0.875rem;
  }
}

/* Get Started Section */
#get-started {
  background: linear-gradient(to bottom, #0D0D0D, #1C1C1E);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.get-started-header {
  max-width: 64rem;
  margin: 0 auto 2.5rem;
}

#get-started h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.get-started-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.get-started-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.get-started-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.get-started-steps {
  background: #1A1A1D;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.get-started-steps:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

.steps-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.steps-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.steps-list .highlight {
  color: var(--neon-violet);
  font-weight: 600;
}

.get-started-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-icon {
  margin-bottom: 1rem;
}

.cta-icon .icon {
  width: 4rem;
  height: 4rem;
  color: var(--neon-violet);
  animation: bounce-slow 2.5s infinite;
}

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-button {
  background: var(--neon-violet);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
  background: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #get-started {
    padding: 4rem 1rem;
  }

  .get-started-header {
    margin-bottom: 2rem;
  }

  #get-started h2 {
    font-size: 2rem;
  }

  .get-started-subtitle {
    font-size: 1.125rem;
  }

  .get-started-intro {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .get-started-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .get-started-steps {
    padding: 1.25rem;
  }

  .steps-list li {
    font-size: 0.875rem;
  }

  .cta-icon .icon {
    width: 3rem;
    height: 3rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.625rem 1.75rem;
  }
}

/* Stay in the Loop Section */
#stay-in-the-loop {
  background: #0D0D0D;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stay-in-the-loop-header {
  max-width: 72rem;
  margin: 0 auto 4rem;
  text-align: center;
}

#stay-in-the-loop h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-violet);
}

.stay-in-the-loop-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.stay-in-the-loop-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.stay-in-the-loop-card {
  background: #1A1A1D;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stay-in-the-loop-card:hover {
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3);
}

.stay-in-the-loop-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-violet);
  margin-bottom: 1rem;
}

.stay-in-the-loop-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-form input {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: white;
  color: black;
  font-size: 1rem;
  width: 100%;
}

.email-form input:focus {
  outline: 2px solid var(--neon-violet);
}

.email-form button {
  background: var(--neon-violet);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-form button:hover {
  background: var(--primary-purple);
  transform: translateY(-1px);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.wallet-button {
  background: var(--neon-violet);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallet-button:hover {
  background: var(--primary-purple);
  transform: translateY(-1px);
}

.pep-watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8rem;
  font-weight: 800;
  color: var(--neon-violet);
  opacity: 0.1;
  pointer-events: none;
  line-height: 1;
}

.stay-in-the-loop-footer {
  max-width: 48rem;
  margin: 5rem auto 0;
  text-align: center;
}

.stay-in-the-loop-quote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  #stay-in-the-loop {
    padding: 4rem 1rem;
  }

  .stay-in-the-loop-header {
    margin-bottom: 3rem;
  }

  #stay-in-the-loop h2 {
    font-size: 2rem;
  }

  .stay-in-the-loop-intro {
    font-size: 1.125rem;
  }

  .stay-in-the-loop-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stay-in-the-loop-card {
    padding: 1.5rem;
  }

  .stay-in-the-loop-card h3 {
    font-size: 1.25rem;
  }

  .stay-in-the-loop-card p {
    font-size: 0.875rem;
  }

  .email-form input,
  .email-form button,
  .wallet-button {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .pep-watermark {
    font-size: 6rem;
  }

  .stay-in-the-loop-quote {
    font-size: 1rem;
  }
}

.stay-in-the-loop-card.community-card {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.community-card h3 {
  color: var(--neon-violet);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.community-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.community-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neon-violet);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.community-button:hover {
  color: var(--neon-violet-light);
}

.community-button .social-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

@media (max-width: 768px) {
  .stay-in-the-loop-card.community-card {
    padding: 1.5rem;
  }
  
  .community-card h3 {
    font-size: 1.25rem;
  }
  
  .community-card p {
    font-size: 0.875rem;
  }
  
  .community-button {
    font-size: 0.875rem;
  }
  
  .community-button .social-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
  