/* about.css - About Platform Styles */

.df-about {
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.df-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.df-about-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.df-about-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

/* Points List */
.df-about-points {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xs);
}

.df-about-point {
  display: flex;
  gap: var(--spacing-sm);
}

.df-point-icon-wrapper,
.df-point-icon-wrapper-orange {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.df-point-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--color-green);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.df-point-icon-wrapper-orange {
  background-color: rgba(249, 115, 22, 0.08);
  color: var(--color-orange);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.df-point-icon-wrapper i,
.df-point-icon-wrapper-orange i {
  width: 22px;
  height: 22px;
}

.df-point-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.df-point-text p {
  color: var(--color-text-secondary);
  font-size: 0.925rem;
}

/* SVG Art Column */
.df-about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.df-visual-wrapper {
  width: 100%;
  max-width: 440px;
  background-color: rgba(15, 22, 42, 0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal);
}

.df-visual-wrapper:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.df-svg-illustration {
  width: 100%;
  height: auto;
}

/* Animations in SVG */
.df-svg-illustration path[stroke-dasharray] {
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.df-svg-illustration rect, 
.df-svg-illustration circle {
  transition: transform var(--transition-normal);
}

.df-svg-illustration:hover rect[x="80"] {
  transform: translate(-3px, -3px);
}

.df-svg-illustration:hover rect[x="300"] {
  transform: translate(3px, 3px);
}

/* Responsiveness */
@media (max-width: 992px) {
  .df-about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .df-about-visual {
    order: -1; /* Place SVG illustration on top in mobile */
  }
  
  .df-visual-wrapper {
    max-width: 380px;
  }
}
