.about-page{
  background:linear-gradient(180deg, #fcfafc 0%, #fbf7fa 100%);
}

.about-intro{
  padding:72px 0 64px;
}

.about-intro-wrap{
  max-width:780px;
  display:grid;
  gap:0;
}

.about-intro-wrap .eyebrow{
  justify-self:start;
  background:#fff;
  border:1px solid var(--line);
}

.about-intro-wrap h1{
  margin:18px 0 16px;
  font-size:clamp(2.8rem, 5vw, 4.8rem);
  line-height:.94;
  letter-spacing:-.065em;
  max-width:11ch;
}

.about-intro-wrap p{
  max-width:60ch;
  color:var(--muted);
  line-height:1.85;
  font-size:1.05rem;
}

.about-section{
  padding:88px 0;
}

.about-two-col{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, .92fr);
  gap:28px;
  align-items:center;
}

.about-copy h2{
  margin:16px 0 14px;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:.98;
  letter-spacing:-.05em;
}

.about-copy{
  max-width:580px;
}

.about-copy p{
  color:var(--muted);
  line-height:1.85;
}

.about-list{
  margin:22px 0 0;
  padding-left:20px;
  display:grid;
  gap:10px;
  color:#4f434e;
  line-height:1.75;
  font-weight:600;
}

.about-visual{
  display:flex;
  justify-content:flex-end;
}

.about-flow-card{
  width:min(100%, 420px);
  padding:24px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.flow-pill{
  padding:14px 16px;
  border-radius:18px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-weight:700;
  text-align:center;
}

.flow-arrow{
  padding:10px 0;
  color:var(--brand);
  font-size:1.3rem;
  font-weight:800;
  text-align:center;
}

.flow-phone{
  padding:18px;
  border-radius:24px;
  background:linear-gradient(180deg, #9a5b80 0%, var(--brand) 100%);
  color:#fff;
  text-align:center;
}

.flow-avatar{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  border-radius:18px;
  background:rgba(255,255,255,.16);
  font-size:1.2rem;
  font-weight:800;
}

.flow-name{
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:-.03em;
}

.flow-save{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background:#fff;
  color:var(--brand);
  font-weight:800;
}

.reason-grid,
.values-grid{
  display:grid;
  gap:18px;
}

.reason-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.values-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.reason-card,
.value-box{
  padding:28px 24px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.reason-icon,
.value-emoji{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:18px;
  background:var(--brand-soft);
  font-size:1.4rem;
}

.reason-card h3,
.value-box h3{
  margin-bottom:10px;
  font-size:1.2rem;
  letter-spacing:-.04em;
}

.reason-card p,
.value-box p{
  color:var(--muted);
  line-height:1.8;
}

.about-cta{
  padding:26px 0 88px;
}

.about-cta-box{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 220px;
  gap:20px;
  align-items:center;
  padding:32px 34px;
  border-radius:34px;
  background:linear-gradient(145deg, #9a5b80 0%, #844369 58%, #65324c 100%);
  box-shadow:0 28px 60px rgba(41, 19, 34, .16);
}

.about-cta-copy h2{
  margin:16px 0 12px;
  color:#fff;
  font-size:clamp(2.1rem, 4vw, 3.5rem);
  line-height:.98;
  letter-spacing:-.055em;
}

.about-cta-copy{
  max-width:560px;
}

.about-cta-copy p{
  max-width:40ch;
  color:rgba(255,255,255,.84);
  line-height:1.8;
}

.about-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.about-cta-actions .btn-brand{
  background:#fff;
  color:var(--brand);
  box-shadow:none;
}

.about-cta-actions .btn-light{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}

.about-cta-art{
  position:relative;
  min-height:210px;
}

.about-cta-art::after{
  content:"";
  position:absolute;
  right:28px;
  bottom:12px;
  width:146px;
  height:20px;
  border-radius:999px;
  background:rgba(31, 12, 24, .22);
  filter:blur(12px);
}

.about-cta-mascot{
  position:absolute;
  right:18px;
  bottom:24px;
  width:170px;
  height:auto;
  filter:drop-shadow(0 18px 24px rgba(31, 12, 24, .22));
}

@media (max-width:1040px){
  .about-two-col,
  .reason-grid,
  .values-grid,
  .about-cta-box{
    grid-template-columns:1fr;
  }

  .about-visual{
    justify-content:flex-start;
  }

  .about-intro-wrap h1{
    max-width:none;
  }
}

@media (max-width:760px){
  .about-intro{
    padding-top:42px;
  }

  .about-intro-wrap h1,
  .about-cta-copy h2{
    max-width:none;
  }

  .about-cta-box{
    padding:24px 20px;
  }

  .about-cta-art{
    min-height:160px;
  }

  .about-cta-mascot{
    width:138px;
  }
}
