main {
  flex-direction: column;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
}

.about-hero {
  width: 100%;
  background: var(--theme-bg-page);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: var(--theme-radius-xl);
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-text);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hero-content h1 .accent {
  color: var(--theme-primary);
  white-space: nowrap;
  display: inline-block;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--theme-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.about-content {
  width: 100%;
  background-color: var(--theme-bg-surface-1);
  padding: 5rem 2rem;
  border-radius: var(--theme-radius-xl);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.story-card {
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border-accent);
  border-radius: var(--theme-radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  box-shadow: var(--theme-shadow-lg);
  border-color: var(--theme-border-accent-strong);
}

.story-card .card-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.story-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-text);
  margin: 0;
}

.story-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--theme-text-muted);
  margin: 0;
}

.story-card p + p {
  margin-top: 0.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border-accent);
  border-radius: var(--theme-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--theme-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--theme-shadow-lg);
  border-color: var(--theme-border-accent-strong);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--theme-text);
  margin: 0;
}

.feature-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--theme-text-muted);
  margin: 0;
}

.about-story,
.features-grid {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 480ms ease forwards;
}

.features-grid {
  animation-delay: 80ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story,
  .features-grid,
  .feature-card {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    padding: 5rem 2rem;
  }

  .about-content {
    padding: 5rem 2rem;
  }
}

@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
