/* About Section Enhanced Styles */
.about-enhanced {
  position: relative;
  overflow: hidden;
}

.about-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.about-header {
  margin-bottom: 40px;
}

.about-subtitle {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: rgba(158, 209, 178, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(158, 209, 178, 0.2);
  backdrop-filter: blur(5px);
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(158, 209, 178, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(158, 209, 178, 0.5);
  }
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.underline-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.underline-icon {
  color: var(--accent);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.about-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* Highlight Cards */
.highlight-card {
  background: linear-gradient(145deg, var(--bg-alt), #0c1f18);
  border: 1px solid rgba(158, 209, 178, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(158, 209, 178, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.highlight-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(158, 209, 178, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  background: var(--accent);
  color: var(--bg-main);
  transform: rotate(360deg);
}

.highlight-content {
  flex: 1;
}

.highlight-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.highlight-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature-card-wrapper {
  height: 100%;
}

.feature-card {
  position: relative;
  height: 100%;
  background: linear-gradient(145deg, var(--bg-alt), #0c1f18);
  border: 1px solid rgba(158, 209, 178, 0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 30px 40px -20px rgba(158, 209, 178, 0.3);
}

.feature-card.creator-card:hover {
  box-shadow: 0 30px 40px -20px #9ed1b2;
}
.feature-card.audience-card:hover {
  box-shadow: 0 30px 40px -20px #78a98a;
}
.feature-card.investor-card:hover {
  box-shadow: 0 30px 40px -20px #5a8f6e;
}

.feature-card-inner {
  position: relative;
  padding: 30px;
  z-index: 2;
}

.feature-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(158, 209, 178, 0.2),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(158, 209, 178, 0.1);
  border: 1px solid rgba(158, 209, 178, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.feature-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.feature-icon-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(158, 209, 178, 0.2),
    rgba(158, 209, 178, 0.05)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(158, 209, 178, 0.2);
}

.feature-card:hover .feature-icon-bg {
  background: var(--accent);
  color: var(--bg-main);
  transform: scale(1.1);
}

.icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--accent);
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-ring {
  opacity: 0.5;
  transform: scale(1);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--accent);
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-list li i {
  transform: scale(1.2);
}

.feature-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid rgba(158, 209, 178, 0.1);
  border-bottom: 1px solid rgba(158, 209, 178, 0.1);
}

.stat {
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover {
  color: #ffffff;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Technology Card */
.technology-card {
  background: linear-gradient(135deg, var(--bg-alt), #0a1511);
  border: 1px solid rgba(158, 209, 178, 0.15);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.technology-card:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 50px -20px rgba(158, 209, 178, 0.3);
  transform: scale(1.01);
}

.technology-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(158, 209, 178, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(158, 209, 178, 0.1) 0%,
      transparent 30%
    );
  opacity: 0.5;
  z-index: 1;
}

.technology-content {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(158, 209, 178, 0.1);
  border: 1px solid rgba(158, 209, 178, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 25px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
}

.technology-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.technology-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.technology-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.tech-feature i {
  color: var(--accent);
  font-size: 1.1rem;
}

.btn-tech {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), #78a98a);
  color: var(--bg-main);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-tech:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(158, 209, 178, 0.4);
}

.technology-visual {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.grid-item {
  aspect-ratio: 1;
  background: rgba(158, 209, 178, 0.05);
  border: 1px solid rgba(158, 209, 178, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: gridPulse 3s infinite;
}

.grid-item:nth-child(1) {
  animation-delay: 0s;
}
.grid-item:nth-child(2) {
  animation-delay: 0.2s;
}
.grid-item:nth-child(3) {
  animation-delay: 0.4s;
}
.grid-item:nth-child(4) {
  animation-delay: 0.6s;
}
.grid-item:nth-child(5) {
  animation-delay: 0.8s;
}
.grid-item:nth-child(6) {
  animation-delay: 1s;
}
.grid-item:nth-child(7) {
  animation-delay: 1.2s;
}
.grid-item:nth-child(8) {
  animation-delay: 1.4s;
}
.grid-item:nth-child(9) {
  animation-delay: 1.6s;
}

@keyframes gridPulse {
  0%,
  100% {
    background: rgba(158, 209, 178, 0.05);
    border-color: rgba(158, 209, 178, 0.15);
  }
  50% {
    background: rgba(158, 209, 178, 0.15);
    border-color: var(--accent);
  }
}

.visual-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 3s infinite;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.particle-2 {
  top: 60%;
  right: 30%;
  animation-delay: 0.5s;
}
.particle-3 {
  bottom: 20%;
  left: 50%;
  animation-delay: 1s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title {
    font-size: 2.5rem;
  }

  .technology-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 2rem;
  }

  .technology-card {
    padding: 30px;
  }

  .technology-content {
    padding-right: 0;
    text-align: center;
  }

  .technology-features {
    justify-content: center;
  }

  .btn-tech {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.8rem;
  }

  .highlight-number {
    font-size: 1.4rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }
}
