:root {
  --soft-card: rgba(255, 255, 255, 0.04);
  --soft-border: rgba(148, 163, 184, 0.18);
}

body.light {
  --soft-card: rgba(15, 23, 42, 0.02);
  --soft-border: rgba(148, 163, 184, 0.25);
}

.about-app {
  padding-bottom: 0;
}

.about-hero {
  padding-bottom: 42px;
}



.about-hero .hero-logo {
  margin-bottom: 14px;
}

.about-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-story-copy p,
.about-principles li,
.about-cta-box p,
.about-social-card p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.about-principles {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.about-principles li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--soft-border);
  background: linear-gradient(145deg, var(--card), var(--card3));
}

.about-principles li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 2px;
}

.about-media-card,
.about-cta-box,
.about-social-card {
  position: relative;
  border: 1px solid var(--soft-border);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--card), var(--card3));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.about-media-card {
  padding: 22px;
  min-height: 380px;
}

.about-media-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 320px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.about-media-art::before,
.about-media-art::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.08);
}

.about-media-art::before {
  width: 78%;
  height: 66%;
  transform: rotate(-10deg);
}

.about-media-art::after {
  width: 54%;
  height: 54%;
  transform: rotate(12deg);
}

.about-dashboard-mock {
  position: relative;
  width: min(88%, 360px);
  padding: 18px 16px 14px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.38);
  z-index: 1;
}

.about-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 12px;
  color: #dbeafe;
}

.about-dots {
  display: flex;
  gap: 6px;
}

.about-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.about-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-metric {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.about-metric .label {
  display: block;
  margin-bottom: 8px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-metric .value {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.about-metric .value small {
  font-size: 12px;
  color: #bfdbfe;
}

.about-cta-box {
  padding: 28px 26px;
}

.about-cta-box h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.7px;
}

.about-cta-box .primary-btn {
  margin-top: 20px;
  max-width: 280px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-social-card {
  padding: 18px 16px 12px;
  text-align: center;
}

.about-social-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
}

.about-social-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.about-social-card p {
  font-size: 13px;
  line-height: 1.7;
}

.about-social-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .about-media-card {
    min-height: 320px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}
