.about-page {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  align-items: center;
  gap: 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 10, 95, 0.24), transparent 72%);
  pointer-events: none;
}

.about-hero-brand {
  position: relative;
  display: grid;
  place-items: center;
}

.about-hero-logo {
  width: clamp(100px, 18vw, 150px);
  height: clamp(100px, 18vw, 150px);
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 48px rgba(8, 12, 24, 0.48);
  background: rgba(6, 10, 22, 0.9);
}

.about-hero-pulse {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 26px;
  border: 1px solid rgba(17, 176, 255, 0.38);
  transform: scale(1.12);
  animation: aboutPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.about-hero-copy p {
  margin: 0;
  color: var(--muted);
}

.about-hero-copy h1 {
  margin: 10px 0 10px;
  max-width: 18ch;
}

.about-section {
  display: grid;
  gap: 14px;
}

.about-story-grid,
.about-two-column,
.feature-roadmap {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 14, 28, 0.86);
  padding: 18px;
}

.about-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card-goal {
  background: linear-gradient(160deg, rgba(17, 176, 255, 0.14), rgba(255, 10, 95, 0.16));
  border-color: rgba(17, 176, 255, 0.38);
  display: grid;
  align-content: center;
  gap: 8px;
}

.about-goal-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #a9dbff;
}

.about-card-goal h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-pillar {
  position: relative;
  overflow: hidden;
}

.about-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #001423;
  background: linear-gradient(145deg, #7cd7ff, #31b3ff);
}

.about-pillar h3 {
  margin: 12px 0 8px;
}

.feature-column header {
  margin-bottom: 12px;
}

.feature-column-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-column-badge.current {
  color: #b6ffd5;
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.18);
}

.feature-column-badge.planned {
  color: #a9dbff;
  border-color: rgba(17, 176, 255, 0.44);
  background: rgba(17, 176, 255, 0.16);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-item-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(5, 9, 20, 0.72);
  min-height: 66px;
  display: grid;
  align-content: center;
}

.about-two-column blockquote {
  margin: 12px 0;
  padding: 12px 14px;
  border-left: 3px solid rgba(255, 10, 95, 0.78);
  border-radius: 8px;
  background: rgba(255, 10, 95, 0.08);
  font-weight: 700;
  color: #ffd4e4;
}

.about-forward-card h3 {
  margin: 10px 0 0;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
}

.about-thanks-card {
  text-align: center;
  background: linear-gradient(170deg, rgba(12, 19, 35, 0.9), rgba(7, 11, 22, 0.95));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes aboutPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1.12);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.32);
  }
}

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

  .about-story-grid,
  .about-two-column,
  .feature-roadmap,
  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-hero-copy h1 {
    max-width: 28ch;
  }
}

@media (max-width: 720px) {
  .about-page {
    gap: 16px;
  }

  .about-card {
    padding: 14px;
  }

  .about-hero-logo,
  .about-hero-pulse {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }
}
