.about {
  width: 100%;
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.about::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  left: -300px;
  background: radial-gradient(circle, rgba(0,191,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -300px;
  right: -300px;
  background: radial-gradient(circle, rgba(138,43,226,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-container {
  max-width: 1100px;
  
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.about-header {
  display: flex;
  align-items: center;
  margin-top:40px;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.about-icon {
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.about h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.about-card {
  background: #0e0e10;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.2s ease;
}

.quote {
  position: relative;
  padding: 20px 24px 20px 32px;
  margin: 28px 0;
  background: rgba(0,191,255,0.03);
  border: 1px solid rgba(0,191,255,0.12);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.about-card.animated {
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-card:hover {
  border-color: var(--border-hover);
}

.about-card p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
}

.about-card > p:not(.quote) {
  color: #bbbbc0;
}

.about a {
  color: var(--primary);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about a:hover { opacity: 0.75; }

.quote:hover {
  border-color: rgba(0,191,255,0.25);
}

.quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(0,191,255,0.4);
  border-radius: 8px 0 0 8px;
}

.quote,
.quote p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 32px;
  padding: 0;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.social-links::after { content: none; }

.social-item { transition: transform 0.2s ease; }
.social-item:hover { transform: translateY(-2px); }

.about-card {
  background: #0e0e10;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.2s ease;
}

.quote {
  position: relative;
  padding: 20px 24px 20px 32px;
  margin: 28px 0;
  background: rgba(0,191,255,0.03);
  border: 1px solid rgba(0,191,255,0.12);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.social-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0e0e10;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social-item a:hover {
  border-color: rgba(255,255,255,0.14);
  background: #111114;
}

.social-item i {
  font-size: 0.9rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .about h1 { font-size: 2.2rem; }
  .about-card { padding: 28px 24px; }
  .social-links { flex-wrap: wrap; }
}

.features-hero {
  padding: 80px 0px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0c0c0c;
}

.features-hero::before {
  content: '<';
  position: absolute;
  left: 15%;
  top: 20%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(0,191,255,0.03);
  line-height: 0;
  pointer-events: none;
}

.features-hero::after {
  content: '/>';
  position: absolute;
  right: 15%;
  top: 20%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(138,43,226,0.03);
  line-height: 0;
  pointer-events: none;
}

.features-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
}

.features-subtitle {
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 48px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.features-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  padding: 0px 5% 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.feature-card {
   background-color: var(--bg-raised);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 28px 26px;
  position: relative;
  opacity: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-card:hover {
 transform: translateY(-15px) scale(1.05); 
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.feature-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.feature-extra-tag {
  border: 1.5px solid rgba(46,204,113,0.4);
  color: var(--text-muted);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  white-space: nowrap;
}

.loading-container {
  text-align: center;
  padding: 60px;
  margin: 0 auto;
  grid-column: 1 / -1;
}

.loading-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

.loading-container p {
  font-size: 0.875rem;
  color: var(--text-faint);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
  .about h1 { font-size: 2rem; }
  .features-title { font-size: 2rem; }
  .features-container { grid-template-columns: 1fr; }
  .social-links { gap: 4px; }
  .social-item p { display: none; }
}