/* =========================================================
   ABOUT PAGE — Premium Styles
   ========================================================= */

/* ===== About Hero ===== */
.about-hero {
  background: radial-gradient(ellipse at 70% 0%, rgba(46, 196, 182, .14), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(242, 183, 5, .08), transparent 50%),
    var(--navy-950);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-eyebrow {
  color: var(--teal-400);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.about-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.about-hero__sub {
  color: #C9D2E8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 32px;
}

.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero__chips span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: #E7EBF6;
}

@media (max-width: 600px) {
  .about-hero {
    padding: 52px 0 64px;
  }

  .about-hero__title {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }
}

/* ===== About Stats Band ===== */
.about-stats {
  background: var(--paper-100);
  padding: 52px 0;
  border-bottom: 1px solid var(--paper-100);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.astat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-950);
  line-height: 1;
  margin-bottom: 8px;
}

.astat:nth-child(1) .astat__num {
  color: #E8650A;
}

.astat:nth-child(2) .astat__num {
  color: var(--teal-400);
}

.astat p {
  color: var(--ink-600);
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 400px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Values Grid ===== */
.about-values {
  padding: 88px 0 80px;
  background: var(--white);
}

.about-values h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 52px;
  margin-top: 6px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--paper-50);
  border: 1.5px solid var(--paper-100);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 196, 182, .25);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--vc) 12%, white);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background .2s;
}

.value-card:hover .value-card__icon {
  background: color-mix(in srgb, var(--vc) 20%, white);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--vc);
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.value-card p {
  font-size: .87rem;
  color: var(--ink-600);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Founder Section ===== */
.founder {
  background: linear-gradient(160deg, #EEF2FF 0%, var(--paper-50) 60%, #E8FDF9 100%);
  padding: 96px 0 100px;
  overflow: hidden;
}

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left copy */
.founder__copy .section-label {
  margin-bottom: 12px;
}

.founder__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 22px;
  line-height: 1.12;
}

.founder__bio {
  color: var(--ink-600);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.founder__quote {
  background: var(--white);
  border-left: 4px solid var(--teal-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.founder__quote-icon {
  width: 24px;
  height: 24px;
  fill: var(--teal-400);
  opacity: .5;
  display: block;
  margin-bottom: 8px;
}

.founder__quote blockquote {
  margin: 0 0 10px;
  font-size: .92rem;
  color: var(--navy-950);
  font-style: italic;
  line-height: 1.65;
}

.founder__quote cite {
  font-size: .78rem;
  color: var(--teal-400);
  font-weight: 700;
  font-style: normal;
  letter-spacing: .04em;
}

.founder__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder__badges span {
  background: var(--white);
  border: 1.5px solid var(--paper-100);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

/* Right image */
.founder__image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder__image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 17, 40, .18);
  width: 100%;
  max-width: 420px;
}

.founder__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}

.founder__image-card:hover .founder__img {
  transform: scale(1.03);
}

.founder__image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, .35) 0%, transparent 55%);
  pointer-events: none;
}

/* Floating tag */
.founder__image-tag {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--paper-100);
  min-width: 200px;
}

.founder__tag-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.founder__image-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--navy-950);
}

.founder__image-tag small {
  font-size: .72rem;
  color: var(--teal-400);
  font-weight: 700;
}

/* Floating stat */
.founder__image-stat {
  position: absolute;
  top: 28px;
  right: -18px;
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}

.founder__image-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-500);
  line-height: 1;
}

.founder__image-stat span {
  font-size: .65rem;
  color: #C9D2E8;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder__image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .founder__image-stat {
    right: 0;
    top: 20px;
  }
}

@media (max-width: 560px) {
  .founder {
    padding: 64px 0 72px;
  }

  .founder__img {
    height: 340px;
  }

  .founder__image-tag {
    left: 10px;
    bottom: -16px;
  }

  .founder__image-stat {
    display: none;
  }
}

/* ===== Timeline ===== */
.about-journey {
  padding: 88px 0 80px;
  background: var(--white);
}

.about-journey h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 56px;
  margin-top: 6px;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-400), var(--gold-500));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -46px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--teal-400);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 0 0 5px rgba(46, 196, 182, .12);
  flex-shrink: 0;
}

.timeline__content {
  background: var(--paper-50);
  border: 1.5px solid var(--paper-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  flex: 1;
  transition: box-shadow .2s, border-color .2s;
}

.timeline__content:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 196, 182, .3);
}

.timeline__year {
  display: inline-block;
  background: var(--teal-400);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.timeline__content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.timeline__content p {
  font-size: .87rem;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .timeline {
    padding-left: 34px;
  }

  .timeline__dot {
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: .9rem;
  }
}

/* ===== About CTA Band ===== */
.about-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
  padding: 64px 0;
}

.about-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.about-cta h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin-bottom: 8px;
}

.about-cta p {
  color: #C9D2E8;
  margin: 0;
  font-size: .94rem;
}

.about-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.about-cta__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, .5);
  background: rgba(37, 211, 102, .1);
  color: #25D366;
  font-weight: 700;
  font-size: .94rem;
  transition: background .2s, border-color .2s, transform .15s;
}

.about-cta__wa:hover {
  background: rgba(37, 211, 102, .2);
  border-color: #25D366;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta__btns {
    width: 100%;
  }

  .about-cta__btns .btn,
  .about-cta__wa {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Reveal on Scroll (about page specific) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.founder__image-wrap[data-reveal] {
  transform: translateX(24px);
}

.founder__image-wrap[data-reveal].is-visible {
  transform: none;
}