/* About page — extends profile.css shell */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content.content--about {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  gap: 28px;
}

.about-hero-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 22px;
  align-items: stretch;
}

.about-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.2) 45%,
    transparent 72%
  );
  pointer-events: none;
}

.about-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  z-index: 1;
}

.about-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 8px;
}

.about-hero-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-hero-desc {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  max-width: 520px;
}

.about-stat-card {
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  background: linear-gradient(145deg, var(--primary-700) 0%, #6366f1 48%, #7c3aed 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-stat-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}

.about-stat-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-stat-text {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.about-stat-metric {
  margin-top: auto;
  padding-top: 8px;
}

.about-stat-num {
  display: block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.about-section-accent {
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary) 0%, #7c3aed 100%);
}

.about-section-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-step-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.about-step-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-step-num {
  color: var(--primary);
  margin-right: 6px;
}

.about-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.about-inline-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-700);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.about-checklist strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.about-checklist p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.about-support {
  background: linear-gradient(180deg, #f8fafc 0%, var(--card) 100%);
}

.about-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.about-contact-ico {
  font-size: 20px;
  line-height: 1;
}

.about-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.about-contact-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-700);
  text-decoration: none;
}

.about-contact-value:hover {
  text-decoration: underline;
}

.about-contact-static {
  color: var(--text);
  font-weight: 600;
}

.about-site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px 8px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.about-version-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.about-copy {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.about-legal a {
  color: var(--primary-700);
  font-weight: 700;
  text-decoration: none;
}

.about-legal a:hover {
  text-decoration: underline;
}

.about-legal .dot {
  margin: 0 8px;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .about-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-hero-row {
    grid-template-columns: 1fr;
  }

  .about-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-site-footer {
    flex-direction: column;
    text-align: center;
  }

  .about-copy {
    order: -1;
  }
}
