.about-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(153, 92, 245, 0.02) 0%, rgba(191, 164, 250, 0.01) 50%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
}

.about-content-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 60px 0;
}

.about-main-title {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.01em;
  color: #010202;
  margin: 0 0 40px 0;
  position: relative;
  background: linear-gradient(135deg, #010202 0%, #995CF5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleReveal 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #995CF5 0%, #BFA4FA 100%);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 0.5s forwards;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0);
}

@keyframes underlineExpand {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.about-description-block {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 40px 0;
}

.about-paragraph {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #20262A;
  text-align: left;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 20px;
  position: relative;
}

.about-paragraph:nth-child(1) {
  animation-delay: 0.3s;
}

.about-paragraph:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-founders-intro {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #010202;
  text-align: center;
  margin: 80px 0 60px 0;
}

.about-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 900px;
  margin: 0 auto 140px auto;
  padding: 40px 20px;
}

.about-founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, #FFFFFF 0%, #FDFBFF 100%);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 
    0 8px 32px rgba(153, 92, 245, 0.08),
    0 4px 16px rgba(153, 92, 245, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(153, 92, 245, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

.about-founder-card:nth-child(1) {
  animation-delay: 0.9s;
}

.about-founder-card:nth-child(2) {
  animation-delay: 1.1s;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.about-founder-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(153, 92, 245, 0.15),
    0 8px 24px rgba(153, 92, 245, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(153, 92, 245, 0.3);
}

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

.about-founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 24px;
  border: 4px solid rgba(153, 92, 245, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(153, 92, 245, 0.12);
  background-color: #f8f9fa;
  clip-path: circle(76px at center);
}

.about-founder-card:hover .about-founder-image {
  border-color: rgba(153, 92, 245, 0.4);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(153, 92, 245, 0.2);
  clip-path: circle(80px at center);
}


.about-founder-name {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #010202;
  margin: 0 0 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.about-founder-card:hover .about-founder-name {
  color: #995CF5;
  transform: translateY(-2px);
}

.about-founder-role {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #995CF5;
  margin: 0;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.about-founder-card:hover .about-founder-role {
  opacity: 1;
  transform: translateY(-1px);
}

.about-founders-intro {
  font-family: 'Uncut Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #010202;
  text-align: center;
  margin: 80px 0 60px 0;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-founders-intro::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #995CF5 0%, #BFA4FA 100%);
  border-radius: 2px;
}

.about-content-container:hover .about-paragraph {
  color: #1A1D23;
}

.about-description-block {
  position: relative;
}

.about-description-block::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #995CF5 0%, #BFA4FA 100%);
  border-radius: 2px;
  transform: scaleY(0);
  animation: lineGrow 1s ease-out 1.2s forwards;
}

@keyframes lineGrow {
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1024px) {
  .about-main-title {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 32px;
  }
  
  .about-paragraph {
    font-size: 18px;
    line-height: 28px;
  }
  
  .about-founders-grid {
    gap: 40px;
    max-width: 600px;
  }
  
  .about-founder-card {
    padding: 32px 24px;
  }
  
  .about-founder-image {
    width: 180px;
    height: 180px;
    clip-path: circle(66px at center);
  }
  
  .about-founder-card:hover .about-founder-image {
    clip-path: circle(70px at center);
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    min-height: auto;
    padding: 120px 20px 60px 20px;
  }
  
  .about-main-title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 24px;
  }
  
  .about-paragraph {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
  }
  
  .about-founders-intro {
    font-size: 20px;
    margin: 60px 0 40px 0;
  }
  
  .about-founders-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10px;
    margin-bottom: 80px;
  }
  
  .about-founder-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  
  .about-founder-image {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    clip-path: circle(56px at center);
  }
  
  .about-founder-card:hover .about-founder-image {
    clip-path: circle(60px at center);
  }
  
  .about-founder-name {
    font-size: 22px;
    line-height: 26px;
  }
  
  .about-founder-role {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 100px 15px 40px 15px;
  }
  
  .about-main-title {
    font-size: 36px;
    line-height: 40px;
  }
  
  .about-paragraph {
    font-size: 15px;
    line-height: 24px;
  }
  
  .about-founders-intro {
    font-size: 18px;
    margin: 50px 0 32px 0;
  }
  
  .about-founders-grid {
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .about-founder-card {
    padding: 24px 16px;
  }
  
  .about-founder-image {
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
    clip-path: circle(46px at center);
  }
  
  .about-founder-card:hover .about-founder-image {
    clip-path: circle(50px at center);
  }
  
  .about-founder-name {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 320px) {
  .about-hero-section {
    padding: 80px 12px 30px 12px;
  }
  
  .about-main-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .about-paragraph {
    font-size: 14px;
    line-height: 22px;
  }
  
  .about-founders-intro {
    font-size: 16px;
    margin: 40px 0 28px 0;
  }
  
  .about-founder-card {
    padding: 20px 12px;
  }
  
  .about-founder-image {
    width: 120px;
    height: 120px;
    clip-path: circle(41px at center);
  }
  
  .about-founder-card:hover .about-founder-image {
    clip-path: circle(45px at center);
  }
  
  .about-founder-name {
    font-size: 18px;
    line-height: 22px;
  }
  
  .about-founder-role {
    font-size: 13px;
    line-height: 18px;
  }
}

.about-visual-enhancement {
  position: relative;
  overflow: hidden;
}

.about-visual-enhancement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(153, 92, 245, 0.02) 0%, rgba(191, 164, 250, 0.01) 100%);
  pointer-events: none;
}

.about-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(153, 92, 245, 0.15) 0%, rgba(191, 164, 250, 0.08) 100%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.about-decorative-shape:first-child {
  display: none;
}

.about-decorative-shape:last-child {
  bottom: 25%;
  right: 8%;
  width: 150px;
  height: 150px;
  animation: floatComplex 6s ease-in-out infinite reverse;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(153, 92, 245, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes floatComplex {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translateY(-15px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translateY(-25px) scale(1.05) rotate(270deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.about-geometric-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(153, 92, 245, 0.2);
  border-radius: 12px;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

.about-geometric-element:nth-child(3) {
  top: 30%;
  right: 15%;
  transform: rotate(45deg);
  animation-delay: -5s;
}

.about-geometric-element:nth-child(4) {
  bottom: 40%;
  left: 12%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation-delay: -10s;
}

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