* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a0d2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  padding: 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
}
.header {
  text-align: center;
  margin-bottom: 60px;
}
.logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.logo-group img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.header h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #7f31a1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header p {
  font-size: 18px;
  color: #8080a0;
  font-weight: 300;
}
.boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.box {
  background: linear-gradient(to bottom, rgba(26, 13, 46, 0.95), rgba(15, 15, 35, 0.95));
  border: 1px solid rgba(127, 49, 161, 0.3);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(127, 49, 161, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
}
.box:hover {
  border-color: rgba(127, 49, 161, 0.6);
  box-shadow: 0 16px 48px rgba(127, 49, 161, 0.2);
  transform: translateY(-4px);
}
.box-icon {
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(127, 49, 161, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 12px;
  border: 1px solid rgba(127, 49, 161, 0.3);
}
.box-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.box-description {
  font-size: 16px;
  color: #a0a0c0;
  line-height: 1.6;
  flex-grow: 1;
}
.box-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a855f7;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: auto;
}
.box:hover .box-cta {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.6);
}
.arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.box:hover .arrow {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .header h1 {
    font-size: 36px;
  }
  .header p {
    font-size: 16px;
  }
  .boxes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .logo-group {
    flex-direction: column;
    gap: 12px;
  }
  .logo-group img {
    height: 48px;
  }
}
