@import url("../new-global.css");

:root {
  /* light palette */
  --ab-bg: #f8f9ff;
  --ab-bg2: #eef0fb;
  --ab-white: #ffffff;
  --ab-card: #ffffff;

  /* brand */
  --ab-blue: #074fae;
  --ab-blue2: #1a3ec4;
  --ab-sky: #0ea5e9;
  --ab-cyan: #06b6d4;
  --ab-violet: #7c3aed;
  --ab-amber: #f59e0b;
  --ab-rose: #f43f5e;
  --ab-lime: #65a30d;
  --ab-green: #059669;
  --ab-orange: #ea580c;

  /* text */
  --ab-ink: #0f172a;
  --ab-ink2: #1e293b;
  --ab-sub: #475569;
  --ab-muted: #94a3b8;
  --ab-line: #e2e8f0;
  --ab-line2: #cbd5e1;

  /* misc */
  --ab-rxx: 28px;
  --ab-rxl: 20px;
  --ab-rxm: 14px;
  --ab-rxs: 8px;
  --ab-sh: 0 2px 8px rgba(15, 23, 42, 0.06), 0 8px 32px rgba(15, 23, 42, 0.08);
  --ab-shd: 0 8px 40px rgba(36, 85, 232, 0.18);
}
/* about us page css */
.about-page .team-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--bs-border-radius-xl);

  &:hover {
    box-shadow: var(--bs-box-shadow);
  }

  &:hover .overflow-badge,
  &:hover .card-body {
    visibility: visible;
    opacity: 1;
  }
}
.about-page .team-card .img-wrapper {
  position: relative;
  height: 100%;
}
.about-page .team-card .overflow-badge {
  position: absolute;
  width: max-content;
  top: calc(80px + 2rem);
  right: -90px;
  font-size: 2rem;
  font-weight: 600;
  transform: rotate(90deg) translate(0px, 0px);
  color: rgba(255, 255, 255, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: 0.3;
}
.about-page .team-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.about-page .team-card:hover .card-img-top {
  transform: scale(1.08);
}
.about-page .team-card .card-body {
  position: absolute;
  color: #fff;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  padding-top: 4rem;
  background: linear-gradient(to top, var(--primary-color) 10%, transparent);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.about-page .team-card .card-body span {
  font-size: 1.25rem;
}
.about-page .team-card .card-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875em;
  margin: 0;
}
/* ---------------------------------------------- */
.about-page .parallax-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.about-page .parallax-img {
  position: absolute;
  width: 100%;
  height: 180%;
  object-fit: cover;
  top: 0;
  left: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}
/* rotate svg style */
.rotating-text-wrapper {
  --size: 120px;
  width: var(--size);
  height: var(--size);
  position: relative;

  &:hover .text-wrapper {
    animation-play-state: paused;
  }
}
.rotating-text-wrapper .icon-wrapper {
  --icon-size: 40px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  & > img {
    width: var(--icon-size);
    height: var(--icon-size);
  }
}
.rotating-text-wrapper .text-wrapper {
  --icon-size: 120px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  & > img {
    width: var(--icon-size);
    height: var(--icon-size);
  }
}
/* ------------------------------------------------ */

.founder-section {
  background: url("../assets/images/process-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/* our core service */
.about-page .ocv-card {
  position: relative;
  height: 100%;
  transition: all 350ms ease-out;
}
.about-page .ocv-card:hover {
  --bs-box-shadow: 0 1rem 1rem -0.6rem rgba(13, 109, 253, 0.15);
  border-color: var(--primary-color) !important;
  box-shadow: var(--bs-box-shadow) !important;
  transform: translateY(-0.275rem);
}
.about-page .ocv-card .icon-wrapper {
  --icon-size: 48px;
  background-color: rgb(var(--cc-blue) / 0.1);
  width: var(--icon-size);
  height: var(--icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.825rem;
  margin-bottom: 30px;
}
.about-page .what-drives-us-section .mini-feature-card {
  width: 160px;
}
.about-page .what-drives-us-section .feature-card {
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about-page .what-drives-us-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color) !important;
}
.about-page .what-drives-us-section .mission-card {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}
.about-page .what-drives-us-section .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------- */
/* new about section */
.sec {
  position: relative;
  overflow: hidden;
}
.sec-alt {
  background: var(--ab-bg2);
}
.sec-white {
  background: var(--ab-white);
}
.cn {
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── shared typography ── */
.eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 85, 232, 0.08);
  border: 1.5px solid rgba(36, 85, 232, 0.18);
  color: var(--ab-blue);
  font-family: var(--ab-fh);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eye::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ab-blue);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.stitle {
  font-family: var(--ab-fh);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ab-ink);
}
.stitle em {
  font-style: normal;
  background: linear-gradient(120deg, var(--ab-blue), var(--ab-sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ssub {
  color: var(--ab-sub);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 560px;
}
.tbar {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ab-blue), var(--ab-sky));
  margin: 22px 0 0;
}

/* ── scroll reveal ── */
.sr {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.sl {
  transform: translateX(-50px);
}
.sr.sr {
  transform: translateX(50px);
}
.sr.in {
  opacity: 1;
  transform: translate(0);
}

/* ── swiper bullets ── */
.swiper-pagination-bullet {
  background: var(--ab-line2);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--ab-blue);
  width: 28px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════════════════════ */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.7);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}
@keyframes scw {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sccw {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(0.35) translateY(18px);
    opacity: 0;
  }
  60% {
    transform: scale(1.12) translateY(-5px);
    opacity: 1;
  }
  80% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
@keyframes ripout {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes slidex {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
}
@keyframes pring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes mblob {
  0%,
  100% {
    border-radius: 60% 40% 55% 45%/45% 60% 40% 55%;
  }
  33% {
    border-radius: 35% 65% 40% 60%/60% 30% 70% 40%;
  }
  66% {
    border-radius: 65% 35% 60% 40%/30% 65% 35% 70%;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes orbit {
  from {
    transform: rotate(var(--oa)) translateX(var(--or))
      rotate(calc(-1 * var(--oa)));
  }
  to {
    transform: rotate(calc(var(--oa) + 360deg)) translateX(var(--or))
      rotate(calc(-1 * (var(--oa)+360deg)));
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes waveMove {
  0% {
    d: path(
      "M0,40 C150,10 350,70 500,40 C650,10 850,70 1000,40 L1000,100 L0,100 Z"
    );
  }
  50% {
    d: path(
      "M0,40 C200,70 300,10 500,40 C700,70 800,10 1000,40 L1000,100 L0,100 Z"
    );
  }
  100% {
    d: path(
      "M0,40 C150,10 350,70 500,40 C650,10 850,70 1000,40 L1000,100 L0,100 Z"
    );
  }
}

/* --------------------------------------- */
/* founder section style */
.founder-sec {
  padding-block: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 0, 208, 0.07) 0%,
    rgba(0, 200, 255, 0.08) 37%,
    rgba(0, 100, 88, 0.07) 69%,
    rgba(7, 79, 174, 0.07) 100%
  );
}
.wwa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wwa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.wpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(36, 85, 232, 0.2);
  color: var(--blue);
  background: rgba(36, 85, 232, 0.05);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: default;
  transition: all 0.3s;
}
.wpill i {
  font-size: 1rem;
}
.wpill:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(36, 85, 232, 0.25);
}

/* visual */
.wwa-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}
.wwa-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 60% 40% 55% 45%/45% 60% 40% 55%;
  background: linear-gradient(
    135deg,
    rgba(36, 85, 232, 0.1),
    rgba(14, 165, 233, 0.08)
  );
  animation: mblob 9s ease-in-out infinite;
}
.wring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed;
}
.wr1 {
  width: 460px;
  height: 460px;
  border-color: rgba(36, 85, 232, 0.14);
  animation: scw 28s linear infinite;
}
.wr2 {
  width: 330px;
  height: 330px;
  border-color: rgba(14, 165, 233, 0.12);
  animation: sccw 20s linear infinite;
}
.wod {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: -6px;
  transform-origin: 0 0;
}
.wwa-frame {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 440px;
  border-radius: var(--ab-rxx);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(36, 85, 232, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.9);
  animation: float 7s ease-in-out infinite;
}
.wwa-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--ab-blue);
}
.fa-tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}
.fa-br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

/* floating cards */
.wfc {
  position: absolute;
  z-index: 10;
  background: #fff;
  border: 1.5px solid var(--ab-line);
  border-radius: 16px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  animation: float 5s ease-in-out infinite;
}
.wfc strong {
  display: block;
  font-family: var(--ab-fh);
  font-size: 0.88rem;
  color: var(--ab-ink);
  font-weight: 700;
}
.wfc span {
  font-size: 0.72rem;
  color: var(--ab-sub);
}
.wfc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wfc-icon i {
  font-size: 1.3rem;
  color: #fff;
}
.wfc1 {
  top: 40px;
  right: 60px;
  animation-delay: 0.8s;
}
.wfc2 {
  bottom: 40px;
  left: 60px;
  animation-delay: 1.6s;
}

/* badge circle */
.wwa-badge-circle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ab-white);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(36, 85, 232, 0.15);
  animation: float 6s ease-in-out infinite 2s;
}
.badge-ring-svg {
  position: absolute;
  inset: 0;
  animation: scw 20s linear infinite;
}
.wwa-badge-circle span {
  font-family: var(--ab-fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ab-blue);
  line-height: 1;
}
.wwa-badge-circle small {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 940px) {
  .wwa-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .wwa-visual {
    height: 420px;
  }
  .wwa-frame {
    width: 230px;
    height: 300px;
  }
}
@media (max-width: 560px) {
  .wwa-visual {
    height: 340px;
  }
  .wfc1 {
    right: 0;
  }
  .wfc2 {
    left: 0;
  }
}

/* core values style */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.val-card {
  background: var(--ab-white);
  border: 1.5px solid var(--ab-line);
  border-radius: var(--ab-rxx);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}
.val-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(36, 85, 232, 0.12);
  border-color: rgba(36, 85, 232, 0.2);
}
.vc-graphic {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
}
.vc-hexagon {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--ab-hc);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.4s;
}
.val-card:hover .vc-hexagon {
  transform: scale(1.15) rotate(8deg);
  animation: bounce 0.5s both;
}
.vc-hexagon i {
  font-size: 1.8rem;
}
.vc-spin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed;
  animation: scw 12s linear infinite;
}
.vc-spin2 {
  inset: 6px;
  animation: sccw 8s linear infinite;
}
.val-card:hover .vc-spin-ring {
  animation-duration: 3s;
}
.val-card h3 {
  font-family: var(--ab-fh);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.val-card p {
  color: var(--ab-sub);
  font-size: 0.88rem;
  line-height: 1.72;
}
.vc-num {
  position: absolute;
  bottom: 16px;
  right: 22px;
  font-family: var(--ab-fh);
  font-size: 3.8rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.04);
  line-height: 1;
}
.vc-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0 0 3px 3px;
}
.val-card:hover .vc-bar {
  transform: scaleX(1);
}
@media (max-width: 900px) {
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .val-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------- */
/* mission section */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mv-orbit-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.mv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 40px rgba(36, 85, 232, 0.2),
    0 0 0 6px rgba(36, 85, 232, 0.06);
}
.mv-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ab-ms);
  height: var(--ab-ms);
  border-radius: 50%;
  border: 1.5px dashed;
  transform: translate(-50%, -50%);
  animation: scw var(--ab-sp) linear infinite;
}
.mv-od {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}
.mv-od-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.mv-od-chip i {
  font-size: 1.2rem;
  color: #fff;
}
.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.mv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ab-white);
  border: 1.5px solid var(--ab-line);
  border-left: 3px solid;
  border-radius: var(--ab-rxl);
  padding: 22px;
  box-shadow: var(--ab-sh);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(36, 85, 232, 0.12);
}
.mv-card-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-card-ico i {
  font-size: 1.5rem;
}
.mv-card span {
  font-family: var(--ab-fh);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--ab-ink);
}
.mv-card p {
  color: var(--ab-sub);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 940px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .mv-orbit-wrap {
    height: 360px;
  }
}
@media (max-width: 560px) {
  .mv-orbit-wrap {
    height: 280px;
  }
}
/* --------------------------------------------- */

/* JOURNEY TIMELINE */
.tl-wrap {
  position: relative;
  margin-top: 70px;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    #2455e8 8%,
    #0ea5e9 50%,
    #2455e8 92%,
    transparent
  );
}
.tl-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 60px;
  gap: 0 20px;
}
.tl-card {
  background: var(--ab-white);
  border: 1.5px solid var(--ab-line);
  border-radius: var(--ab-rxl);
  padding: 26px;
  box-shadow: var(--ab-sh);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.tl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(36, 85, 232, 0.1);
}
.tl-left {
  text-align: right;
}
.tl-right {
  text-align: left;
}
.tlc-year {
  font-family: var(--ab-fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 7px;
}
.tl-card h4 {
  font-family: var(--ab-fh);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 7px;
  color: var(--ab-ink);
}
.tl-card p {
  color: var(--ab-sub);
  font-size: 0.88rem;
  line-height: 1.7;
}
.tl-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}
.tl-di {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(36, 85, 232, 0.2);
  flex-shrink: 0;
}
.tl-di i {
  font-size: 1.2rem;
  color: #fff;
}
.tl-rip {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 14px;
  background: rgba(36, 85, 232, 0.12);
  animation: ripout 2.5s ease-out infinite;
}
/* odd = left */
.tl-row:nth-child(odd) .tl-card {
  grid-column: 1;
}
.tl-row:nth-child(even) .tl-card {
  grid-column: 3;
}
@media (max-width: 768px) {
  .tl-line {
    left: 22px;
  }
  .tl-row {
    grid-template-columns: 48px 1fr;
  }
  .tl-row:nth-child(odd) .tl-card,
  .tl-row:nth-child(even) .tl-card {
    grid-column: 2;
    text-align: left;
  }
  .tl-dot {
    grid-column: 1;
    grid-row: 1;
    padding-top: 10px;
  }
  .tl-row > div:empty {
    display: none;
  }
}
/* --------------------------------- */
/* CULTURE & LIFE */
.cul-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cul-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.cul-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ab-white);
  border: 1.5px solid var(--ab-line);
  border-radius: var(--ab-rxl);
  padding: 20px;
  box-shadow: var(--ab-sh);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cul-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(36, 85, 232, 0.08);
}
.cul-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cul-ico i {
  font-size: 1.5rem;
  color: #fff;
}
.cul-item span {
  font-family: var(--ab-fh);
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 4px;
  color: var(--ab-ink);
}
.cul-item p {
  color: var(--ab-sub);
  font-size: 0.84rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.cul-mosaic {
  position: relative;
  display: flex;
  gap: 12px;
  height: 420px;
  align-items: stretch;
}
.mos-main {
  flex-shrink: 0;
  width: 180px;
  border-radius: var(--ab-rxx);
  overflow: hidden;
  box-shadow: var(--ab-sh);
}
.mos-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mos-main:hover img {
  transform: scale(1.04);
}
.mos-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.mos-sm {
  flex: 1;
  border-radius: var(--ab-rxl);
  overflow: hidden;
  box-shadow: var(--ab-sh);
}
.mos-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mos-sm:hover img {
  transform: scale(1.05);
}
.mos-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--ab-white);
  border: 1.5px solid var(--ab-line);
  border-radius: var(--ab-rxl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 36px rgba(36, 85, 232, 0.14);
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 940px) {
  .cul-layout {
    grid-template-columns: 1fr;
  }
  .cul-mosaic {
    display: none;
  }
}
.founder-sec-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.founder-sec-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 567px) {
  .founder-sec-bg {
    width: 100% !important;
  }
  .founder-sec-btn-wrapper {
    flex-direction: column;
  }
  .founder-sec-btn-wrapper button {
    width: 100%;
  }
}
.icon {
  color: var(--primary-color);
  font-size: calc(1.3rem + 0.6vw);
}
