/* ── Page shell ─────────────────────────────────────────────────────────────── */
.about {
  background: #f8f8f8;
  min-height: 100vh;
}

/* ── Shared inner container ─────────────────────────────────────────────────── */
.about__inner {
  width: 100%;
  max-width: 65rem; /* rem(1040) */
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 5rem; /* rem(80) */
}
@media (max-width: 844px) {
  .about__inner {
    padding-block: 4rem;
  }
}
@media (max-width: 640px) {
  .about__inner {
    padding-block: 3rem;
    padding-inline: 1.25rem;
  }
}

/* ── Shared eyebrow ─────────────────────────────────────────────────────────── */
.about__eyebrow {
  font-size: 0.6875rem; /* rem(11) */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4539cc;
  margin: 0 0 0.75rem;
}

/* ── Shared pill badge ──────────────────────────────────────────────────────── */
.about__pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.07);
  border: 1px solid rgba(69, 57, 204, 0.14);
  border-radius: 9999px;
  padding: 0.3125rem 0.875rem;
}

/* ── Shared section title ───────────────────────────────────────────────────── */
.about__section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.125rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────────────────── */
.about__hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(4rem + 4rem); /* nav-height + rem(64) */
  padding-bottom: 5.5rem;
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.04) 50%,
    #f8f8f8 100%
  );
}
@media (max-width: 844px) {
  .about__hero {
    padding-top: calc(4rem + 2.75rem);
    padding-bottom: 4rem;
  }
}
@media (max-width: 640px) {
  .about__hero {
    padding-top: calc(4rem + 2rem);
    padding-bottom: 3rem;
  }
}

.about__hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(69, 57, 204, 0.12) 1px,
    transparent 1px
  );
  background-size: 1.75rem 1.75rem;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    black 0%,
    transparent 70%
  );
}

.about__hero-inner {
  width: 100%;
  max-width: 72.5rem; /* rem(1160) */
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 26.25rem 1fr; /* rem(420) 1fr */
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__hero-inner {
    grid-template-columns: 22.5rem 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 844px) {
  .about__hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Left: copy */
.about__hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}

.about__hero-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.about__hero-sub {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}

.about__hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.about__hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555555;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 9999px;
  padding: 0.3125rem 0.75rem;
}
.about__hero-chip svg {
  color: #4539cc;
  flex-shrink: 0;
}

/* Right: mockup */
.about__hero-mockup {
  position: relative;
  padding: 1.75rem 0 2.25rem;
}

/* Dashboard panel */
.about__mock-dashboard {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 0.125rem 0.5rem rgba(0, 0, 0, 0.04),
    0 1rem 3.5rem rgba(69, 57, 204, 0.1),
    0 0.25rem 1rem rgba(0, 0, 0, 0.06);
  /* transform: perspective(50rem) rotateY(-3deg) rotateX(1deg);
  transform-origin: left center;
  transition: transform 0.4s ease; */
}
/* .about__mock-dashboard:hover {
  transform: perspective(50rem) rotateY(-1deg) rotateX(0deg);
} */
@media (max-width: 844px) {
  .about__mock-dashboard {
    transform: none;
  }
  .about__mock-dashboard:hover {
    transform: none;
  }
}

.about__mock-db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.about__mock-db-title {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.01em;
}

.about__mock-db-actions {
  display: flex;
  gap: 0.3125rem;
  align-items: center;
}
.about__mock-db-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #e0e0e0;
}

.about__mock-db-cols {
  display: grid;
  grid-template-columns: 1fr 4.5rem 4rem;
  padding: 0.4375rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.about__mock-db-cols span {
  font-size: 0.59375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a0a0a0;
}

.about__mock-db-row {
  display: grid;
  grid-template-columns: 1fr 4.5rem 4rem;
  align-items: center;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid #f5f5f5;
  animation: row-fade-in 0.4s ease both;
}
.about__mock-db-row:last-child {
  border-bottom: none;
}

@keyframes row-fade-in {
  from {
    opacity: 0;
    transform: translateX(-0.375rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about__mock-db-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.71875rem;
  font-weight: 500;
  color: #0d0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.about__mock-db-status {
  font-size: 0.65625rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.1875rem 0.5625rem;
  text-align: center;
  white-space: nowrap;
}
.about__mock-db-status--green {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
}
.about__mock-db-status--yellow {
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
}
.about__mock-db-status--blue {
  color: #4539cc;
  background: rgba(69, 57, 204, 0.08);
}
.about__mock-db-status--gray {
  color: #737373;
  background: #f2f2f2;
}

.about__mock-db-time {
  font-size: 0.65625rem;
  color: #a0a0a0;
  text-align: right;
}

.about__mock-db-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.about__mock-db-footer-stat {
  font-size: 0.6875rem;
  color: #737373;
}
.about__mock-db-footer-num {
  font-weight: 700;
  color: #0d0d0d;
}
.about__mock-db-footer-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.07);
  border: 1px solid rgba(69, 57, 204, 0.15);
  border-radius: 0.375rem;
  padding: 0.3125rem 0.6875rem;
  cursor: pointer;
}

/* Floating pills */
.about__mock-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 0.75rem;
  padding: 0.5rem 0.875rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.09);
}

.about__mock-float--stat {
  top: -0.875rem;
  left: 1rem;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.375rem 0.8125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4539cc;
  border-color: rgba(69, 57, 204, 0.18);
  animation: mock-float 3.5s ease-in-out infinite;
}

.about__mock-float--activity {
  bottom: -1.5rem;
  left: 1rem;
  animation: mock-float 4s ease-in-out infinite 0.6s;
}
@media (max-width: 640px) {
  .about__mock-float--activity {
    display: none;
  }
}

.about__mock-float--week {
  bottom: -0.875rem;
  right: 1rem;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.375rem 0.8125rem;
  font-size: 0.71875rem;
  font-weight: 600;
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.2);
  animation: mock-float 4.5s ease-in-out infinite 1.2s;
}
@media (max-width: 640px) {
  .about__mock-float--week {
    display: none;
  }
}

@keyframes mock-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.3125rem);
  }
}

.about__mock-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: mock-pulse 2s ease-in-out infinite;
}
@keyframes mock-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0.125rem rgba(22, 163, 74, 0.15);
  }
  50% {
    box-shadow: 0 0 0 0.3125rem rgba(22, 163, 74, 0.08);
  }
}

.about__mock-activity-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 0.0625rem;
  line-height: 1.2;
}
.about__mock-activity-sub {
  font-size: 0.6875rem;
  color: #a0a0a0;
  margin: 0;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MISSION
───────────────────────────────────────────────────────────────────────────── */
.about__mission {
  position: relative;
}
.about__mission::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 50% 60% at 90% 50%,
    rgba(69, 57, 204, 0.04) 0%,
    transparent 70%
  );
}

.about__inner--mission {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about__mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 844px) {
  .about__mission-wrap {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.about__mission-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.625rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.875rem;
}

.about__mission-body {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
  max-width: 22.5rem;
}

.about__mission-right {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

.about__mission-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.125rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 0.875rem;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.about__mission-stat + .about__mission-stat {
  margin-top: 0.5rem;
}
.about__mission-stat:hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
  border-color: #ccc;
}

.about__mission-stat-val {
  font-size: 1.625rem;
  font-weight: 700;
  color: #4539cc;
  letter-spacing: -0.03em;
  min-width: 4rem;
  flex-shrink: 0;
}
.about__mission-stat-label {
  font-size: 0.84375rem;
  color: #555555;
  line-height: 1.35;
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHAT WE DO
───────────────────────────────────────────────────────────────────────────── */
.about__what {
  position: relative;
}
.about__what::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 80% 30%,
    rgba(69, 57, 204, 0.04) 0%,
    transparent 70%
  );
}

.about__what-header {
  margin-bottom: 2.5rem;
}
.about__what-header .about__section-title {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
}

.about__feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 844px) {
  .about__feat-grid {
    grid-template-columns: 1fr;
  }
}

.about__feat-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.about__feat-card:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.07);
  border-color: #ccc;
}

.about__feat-visual {
  flex: 1;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid #f2f2f2;
  overflow: hidden;
  position: relative;
}

.about__feat-body {
  padding: 1rem 1.25rem 1.25rem;
}

.about__feat-num {
  font-size: 0.625rem;
  font-weight: 700;
  color: #d0d0d0;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  margin: 0 0 0.25rem;
}
.about__feat-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  margin: 0 0 0.3125rem;
}
.about__feat-desc {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}

/* Card 1 — Template picker */
.about__fv-templates {
  display: flex;
  gap: 0.375rem;
  flex-wrap: nowrap;
  margin-bottom: 0.625rem;
  justify-content: center;
  width: 100%;
}
.about__fv-chip {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #737373;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 9999px;
  padding: 0.25rem 0.6875rem;
}
.about__fv-chip--active {
  color: #4539cc;
  background: rgba(69, 57, 204, 0.07);
  border-color: rgba(69, 57, 204, 0.2);
  font-weight: 600;
}

.about__fv-doc {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  width: 100%;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}
.about__fv-doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.about__fv-badge {
  font-size: 0.625rem;
  font-weight: 600;
  color: #4539cc;
  background: rgba(69, 57, 204, 0.07);
  border-radius: 0.25rem;
  padding: 0.125rem 0.4375rem;
  border: 1px solid rgba(69, 57, 204, 0.15);
}
.about__fv-ready {
  font-size: 0.625rem;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.07);
  border-radius: 0.25rem;
  padding: 0.125rem 0.4375rem;
}
.about__fv-lines {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-bottom: 0.625rem;
}
.about__fv-line {
  height: 0.3125rem;
  border-radius: 0.15625rem;
  background: #ebebeb;
}
.about__fv-line--med {
  width: 70%;
}
.about__fv-line--short {
  width: 45%;
}
.about__fv-field {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.about__fv-field-label {
  font-size: 0.5625rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.about__fv-field-val {
  font-size: 0.71875rem;
  font-family: "JetBrains Mono", monospace;
  color: #0d0d0d;
  background: #ffffff;
  border: 1px solid rgba(69, 57, 204, 0.25);
  border-radius: 0.3125rem;
  padding: 0.3125rem 0.5rem;
}
.about__fv-cursor {
  display: inline-block;
  width: 0.09375rem;
  height: 0.6875rem;
  background: #4539cc;
  margin-left: 0.0625rem;
  vertical-align: middle;
  animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Card 2 — Pipeline tracker */
.about__fv-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.about__fv-pipe-row {
  display: grid;
  grid-template-columns: 6.25rem 1fr 4rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 0.5rem;
}
.about__fv-pipe-name {
  font-size: 0.65625rem;
  font-weight: 500;
  color: #0d0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about__fv-pipe-dots {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.about__fv-pipe-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}
.about__fv-pipe-dot--done {
  background: #4539cc;
}
.about__fv-pipe-dot--active {
  background: #ffffff;
  border: 0.125rem solid #4539cc;
  box-shadow: 0 0 0 0.125rem rgba(69, 57, 204, 0.15);
}
.about__fv-pipe-dot--idle {
  background: #ffffff;
  border: 0.09375rem solid #d4d4d4;
}
.about__fv-pipe-status {
  font-size: 0.625rem;
  font-weight: 600;
  text-align: right;
}
.about__fv-pipe-status--green {
  color: #16a34a;
}
.about__fv-pipe-status--yellow {
  color: #d97706;
}
.about__fv-pipe-status--blue {
  color: #4539cc;
}

/* Card 3 — Secure delivery */
.about__fv-secure {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about__fv-secure-doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
.about__fv-secure-label {
  font-size: 0.59375rem;
  font-family: "JetBrains Mono", monospace;
  color: #737373;
}
.about__fv-secure-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.about__fv-secure-lock {
  background: rgba(69, 57, 204, 0.07);
  border: 1px solid rgba(69, 57, 204, 0.15);
  border-radius: 0.375rem;
  padding: 0.25rem;
  display: flex;
}
.about__fv-secure-dest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.about__fv-secure-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(69, 57, 204, 0.15),
    rgba(69, 57, 204, 0.25)
  );
  border: 1.5px solid rgba(69, 57, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4539cc;
}
.about__fv-secure-check {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
}
.about__fv-secure-name {
  font-size: 0.625rem;
  font-weight: 600;
  color: #16a34a;
}

/* Card 4 — Before/After */
.about__fv-repeat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.about__fv-repeat-col {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  flex: 1;
}
.about__fv-repeat-label {
  font-size: 0.59375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a0a0a0;
  margin-bottom: 0.125rem;
}
.about__fv-repeat-label--primary {
  color: #4539cc;
}
.about__fv-repeat-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.65625rem;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid;
}
.about__fv-repeat-item--grey {
  color: #a0a0a0;
  border-color: #ebebeb;
  background: #fafafa;
  text-decoration: line-through;
}
.about__fv-repeat-item--primary {
  color: #4539cc;
  border-color: rgba(69, 57, 204, 0.2);
  background: rgba(69, 57, 204, 0.05);
  font-weight: 600;
}
.about__fv-repeat-arrow {
  flex-shrink: 0;
  color: #4539cc;
  opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   APPROACH
───────────────────────────────────────────────────────────────────────────── */
.about__approach {
  position: relative;
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.04) 40%,
    rgba(69, 57, 204, 0.06) 60%,
    #f8f8f8 100%
  );
}

.about__approach-header {
  margin-bottom: 2.5rem;
}
.about__approach-header .about__section-title {
  margin-bottom: 0;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .about__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .about__pillars {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.about__pillar {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.about__pillar:hover {
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.07);
  border-color: #ccc;
}

.about__pillar-visual {
  padding: 1rem 1rem 0.75rem;
  background: #fafafa;
  border-bottom: 1px solid #f2f2f2;
}

.about__pillar-foot {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about__pillar-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.about__pillar-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4375rem;
  background: rgba(69, 57, 204, 0.07);
  color: #4539cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__pillar-title {
  font-size: 0.84375rem;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.about__pillar-desc {
  font-size: 0.78125rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TEAM
───────────────────────────────────────────────────────────────────────────── */
.about__team {
  position: relative;
}
.about__team::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 50% 60% at 20% 50%,
    rgba(69, 57, 204, 0.04) 0%,
    transparent 70%
  );
}

.about__team-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 844px) {
  .about__team-wrap {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.about__team-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.about__avatars {
  display: flex;
  align-items: center;
}
.about__avatar {
  border-radius: 50%;
  border: 2.5px solid #f8f8f8;
  margin-left: -0.625rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}
.about__avatar:first-child {
  margin-left: 0;
}
.about__avatar--a {
  animation: av-float 4s ease-in-out infinite;
}
.about__avatar--b {
  animation: av-float 4.5s ease-in-out infinite 0.3s;
}
.about__avatar--c {
  animation: av-float 4s ease-in-out infinite 0.6s;
}
.about__avatar--d {
  animation: av-float 4.5s ease-in-out infinite 0.9s;
}

.about__avatar-more {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f0eefc;
  border: 2.5px solid #f8f8f8;
  margin-left: -0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4539cc;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}

@keyframes av-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.3125rem);
  }
}

.about__location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #a0a0a0;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 9999px;
  padding: 0.3125rem 0.75rem;
  white-space: nowrap;
}

.about__team-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  margin: 0 0 0.875rem;
}
.about__team-desc {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}

.about__stats {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.about__stat-val {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
}
.about__stat-label {
  font-size: 0.75rem;
  color: #a0a0a0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA
───────────────────────────────────────────────────────────────────────────── */
.about__cta {
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    rgba(69, 57, 204, 0.05) 50%,
    #f8f8f8 100%
  );
}
.about__cta .about__inner {
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.about__cta-wrap {
  max-width: 35rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about__cta-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  margin: 0;
}

.about__cta-sub {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.75;
  margin: 0;
}
