.about-hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.about-origin {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.about-origin-body {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 640px;
}

.about-origin-body p + p {
  margin-top: 1.1rem;
}

.about-diff {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.about-diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.about-diff-item {
  padding: 1.75rem;
  background: var(--bg);
  transition: background 0.2s;
}

.about-diff-item:hover {
  background: var(--bg-2);
}

.about-diff-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.about-diff-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.about-diff-item p {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .about-diff-row {
    grid-template-columns: 1fr;
  }
}

.about-team {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.about-team-body {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 600px;
}

.about-overview {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.about-overview-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  max-width: 640px;
}

.about-overview-table tr {
  border-bottom: 1px solid var(--border);
}

.about-overview-table tr:first-child {
  border-top: 1px solid var(--border);
}

.about-overview-table th {
  width: 180px;
  padding: 1rem 1.25rem 1rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-light);
  vertical-align: top;
  white-space: nowrap;
  font-family: var(--font-body);
}

.about-overview-table td {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.7;
}

@media (max-width: 575px) {
  .about-overview-table,
  .about-overview-table tbody,
  .about-overview-table tr,
  .about-overview-table th,
  .about-overview-table td {
    display: block;
    width: 100%;
  }

  .about-overview-table tr {
    padding: 0.75rem 0;
  }

  .about-overview-table th {
    padding-bottom: 0.2rem;
    color: var(--ink-light);
  }

  .about-overview-table td {
    padding-top: 0;
  }
}

.about-cta {
  padding: 4rem 0;
}

.about-cta-panel {
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--bg);
}

.about-cta-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.about-cta-panel p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.6;
}
