/* about.css */
/* ============================================================
   About Us page (V1)
   ============================================================ */
:root {
  --ab-purple: #7B48FE;
  --ab-rose: #C4899A;
  --ab-ink: #111;
  --ab-muted: #555;
}

.ab-hero {
  background: #F5F4F0;
  padding: 100px 0 96px;
  text-align: center;
}

.ab-hero h1 {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 28px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.ab-hero-hl {
  display: inline;
  background: #BDD7F5;
  border-radius: 4px;
  padding: 2px 0;
}

.ab-hero-sub {
  font-size: 20px;
  line-height: 1.65;
  color: #555;
  max-width: 54ch;
  margin: 0 auto;
}

.origin-dark {
  background: #000;
  padding: 88px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.origin-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 24px;
}

.origin-eyebrow--purple {
  color: var(--ab-purple);
}

.origin-h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0;
}

.origin-h2--ink {
  color: var(--ab-ink);
}

.origin-body p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 22px;
}

.origin-body p:last-child {
  margin-bottom: 0;
}

.origin-body strong {
  color: #fff;
  font-weight: 700;
}

.origin-body--muted p {
  color: var(--ab-muted);
}

.origin-body-closing {
  font-size: 18px;
  font-weight: 400;
  color: #555 !important;
}

.candid-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1.15fr;
  gap: 16px;
  align-items: end;
}

.candid-grid--single {
  display: block;
  padding-bottom: 0;
}

.candid-team-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.ab-sec {
  padding: 88px 0;
}

.ab-sec--border-top {
  border-top: 1px solid #EBEBEB;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  padding: 32px 28px 40px;
  background: #F9F8FD;
  border-radius: 20px;
  border: 1px solid #EAE8F4;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}

.pillar:hover {
  box-shadow: 0 14px 40px rgba(80, 60, 180, .12);
  transform: translateY(-4px);
}

.pillar .deco {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 120px;
  height: 120px;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

.pillar-num {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.pillar-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.3px;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pillar-body {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-right: 48px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.impact-sec {
  background: #000;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.impact-arc {
  position: absolute;
  right: -420px;
  top: -220px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1.5px solid rgba(100, 80, 220, .35);
  pointer-events: none;
}

.impact-arc::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(100, 80, 220, .18);
}

.impact-inner {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.impact-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
}

.impact-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 42ch;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
}

.impact-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 24px 26px;
  transition: border-color .22s;
}

.impact-card:hover {
  border-color: rgba(123, 72, 254, .5);
}

.impact-n {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-l {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.4;
}

.impact-reviews-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.impact-reviews-link:hover .impact-l,
.impact-reviews-link:focus-visible .impact-l {
  color: rgba(255, 255, 255, .9);
}

.impact-star {
  font-size: .55em;
  font-weight: 600;
  color: #FBBC04;
}

.impact-google-icon {
  vertical-align: middle;
  margin: 0 1px;
}

.how-sec {
  background: #fff;
  padding: 88px 0;
}

.how-h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 14px;
}

.how-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.how-sub--wide {
  max-width: none;
  margin-top: 14px;
}

.ab-test-wrap {
  background: #EEF2FF;
  padding: 88px 0;
}

.ab-test-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 32px rgba(80, 60, 180, .10);
  max-width: 1000px;
  margin: 0 auto;
}

.ab-test-color-block {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #60AFFF 0%, #3B82F6 50%, #93C5FD 100%);
}

.ab-test-content {
  flex: 1;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ab-test-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: #111;
  margin: 0 0 32px;
  letter-spacing: -.3px;
}

.ab-test-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ab-test-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ab-test-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.ab-test-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.ab-test-role {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}

.ab-cta {
  background: #0A0A0A;
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ab-cta::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 60, 160, .42), transparent 68%);
  pointer-events: none;
}

.ab-cta::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 137, 154, .25), transparent 68%);
  pointer-events: none;
}

.ab-cta h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.ab-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  max-width: 40ch;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  white-space: normal;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  background: #fff;
  border: none;
  color: #111;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
  white-space: nowrap;
  max-width: 100%;
}

.ab-cta-btn:hover,
.ab-cta-btn:focus-visible {
  background: #F5F5F5;
  color: #111;
}

.ab-cta-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.ab-cta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.ab-cta-chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(34, 168, 97, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pillar {
    transition: none;
  }

  .pillar:hover {
    transform: none;
  }
}


/* About RWD */
/* About Us page */
@media (max-width: 860px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-hero {
    padding: 72px 0 64px;
  }

  .origin-dark {
    padding-top: 64px;
  }

  .ab-sec,
  .how-sec,
  .ab-test-wrap {
    padding: 64px 0;
  }

  .impact-sec {
    padding: 72px 0 80px;
  }

  .ab-cta {
    padding: 80px 20px;
  }

  .ab-cta-btn {
    font-size: 15px;
    padding: 16px 24px;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar:first-child {
    border-radius: 20px 20px 0 0;
  }

  .pillar:not(:first-child):not(:last-child) {
    border-radius: 0;
  }

  .pillar:last-child {
    border-radius: 0 0 20px 20px;
  }

  .ab-test-content {
    padding: 32px 28px;
  }
}

@media (max-width: 700px) {
  .ab-test-card {
    flex-direction: column;
  }

  .ab-test-color-block {
    width: 100%;
    height: 140px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .ab-cta-footnote {
    gap: 12px 16px;
  }
}

@media (max-width: 560px) {
  .ab-hero h1 {
    letter-spacing: -1px;
  }

  .ab-hero-sub {
    font-size: 17px;
  }

  .origin-grid {
    padding-bottom: 48px;
  }

  .candid-team-img {
    border-radius: 12px;
  }
}

