/* ============================================
   ARICA — About / Our Journey Page
   ============================================ */

.about-page {
  --ab-navy: #010728;
  --ab-blue: #1378f3;
  --ab-ink: #0f284f;
  --ab-muted: #5a6f8c;
  --ab-line: rgba(15, 40, 80, 0.1);
  --ab-ease: cubic-bezier(0.22, 1, 0.36, 1);
  overflow-x: hidden;
}

/* ---- Hero ---- */
.ab-hero {
  position: relative;
  overflow: hidden;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #010728;
}

.ab-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ab-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 7, 40, 0.72) 0%,
    rgba(1, 7, 40, 0.45) 42%,
    rgba(1, 7, 40, 0.12) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.ab-hero__bg-sheen {
  position: absolute;
  inset: -25%;
  background: linear-gradient(120deg,
    rgba(19, 120, 243, 0) 0%,
    rgba(19, 120, 243, 0.35) 35%,
    rgba(140, 205, 255, 0.28) 50%,
    rgba(19, 120, 243, 0) 65%);
  background-size: 250% 250%;
  animation: abSheenShift 11s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ab-hero__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ab-hero__bubbles span {
  position: absolute;
  bottom: -10%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(150, 205, 255, 0.18) 60%, rgba(150, 205, 255, 0) 76%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 6px 1px rgba(110, 190, 255, 0.55), 0 0 16px 4px rgba(19, 120, 243, 0.35);
  filter: drop-shadow(0 0 4px rgba(140, 205, 255, 0.5));
  opacity: 0;
  animation: abBubbleRise linear infinite;
}

.ab-hero__bubbles span:nth-child(1)  { left: 6%;  width: 9px;  height: 9px;  --drift: 22px;  animation-duration: 8.5s;  animation-delay: 0s; }
.ab-hero__bubbles span:nth-child(2)  { left: 16%; width: 14px; height: 14px; --drift: -18px; animation-duration: 11s;   animation-delay: 1.2s; }
.ab-hero__bubbles span:nth-child(3)  { left: 27%; width: 7px;  height: 7px;  --drift: 12px;  animation-duration: 7.5s;  animation-delay: 2.6s; }
.ab-hero__bubbles span:nth-child(4)  { left: 40%; width: 12px; height: 12px; --drift: -20px; animation-duration: 10s;   animation-delay: 0.6s; }
.ab-hero__bubbles span:nth-child(5)  { left: 52%; width: 8px;  height: 8px;  --drift: 16px;  animation-duration: 9s;    animation-delay: 3.4s; }
.ab-hero__bubbles span:nth-child(6)  { left: 63%; width: 15px; height: 15px; --drift: -14px; animation-duration: 12.5s; animation-delay: 1.8s; }
.ab-hero__bubbles span:nth-child(7)  { left: 74%; width: 6px;  height: 6px;  --drift: 10px;  animation-duration: 7s;    animation-delay: 4.2s; }
.ab-hero__bubbles span:nth-child(8)  { left: 84%; width: 11px; height: 11px; --drift: -22px; animation-duration: 10.5s; animation-delay: 2.2s; }
.ab-hero__bubbles span:nth-child(9)  { left: 92%; width: 9px;  height: 9px;  --drift: 18px;  animation-duration: 8s;    animation-delay: 0.9s; }
.ab-hero__bubbles span:nth-child(10) { left: 97%; width: 13px; height: 13px; --drift: -16px; animation-duration: 11.5s; animation-delay: 3.8s; }

@keyframes abSheenShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes abBubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  12% { opacity: 0.6; }
  55% { opacity: 0.35; }
  100% {
    transform: translateY(-320px) translateX(var(--drift, 16px)) scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-hero__bg-sheen,
  .ab-hero__bubbles span {
    animation: none;
  }

  .ab-hero__bubbles {
    display: none;
  }
}

.ab-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(280px, 38vw, 420px);
  padding: calc(var(--header-h, 80px) + 1.5rem) 0 2.25rem;
}

.ab-hero__text {
  color: #fff;
}

.ab-hero__brand {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.ab-hero__heading {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.ab-hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  max-width: 34rem;
}

/* ---- Breadcrumb ---- */
.ab-breadcrumb {
  background: #f7f9fc;
  border-bottom: 1px solid var(--ab-line);
  padding: 0.65rem 0;
}

.ab-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.ab-breadcrumb__list a {
  color: var(--ab-blue);
  text-decoration: none;
  font-weight: 500;
}

.ab-breadcrumb__list a:hover {
  text-decoration: underline;
}

.ab-breadcrumb__sep {
  color: var(--ab-muted);
}

.ab-breadcrumb__current {
  color: var(--ab-ink);
  font-weight: 600;
}

/* ---- Journey ---- */
.ab-journey {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.ab-journey__inner {
  max-width: 800px;
}

.ab-journey__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ab-ink);
  margin: 0.5rem 0 1.25rem;
}

.ab-journey__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ab-muted);
  margin: 0 0 1.15rem;
}

.ab-journey__copy strong {
  color: var(--ab-ink);
  font-weight: 700;
}

.ab-journey__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ab-line);
}

.ab-journey__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ab-journey__meta-item strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ab-blue);
}

.ab-journey__meta-item span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ab-ink);
  line-height: 1.4;
}

/* ---- Mission / Vision ---- */
.ab-purpose {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f4f7fb;
  overflow: hidden;
}

.ab-purpose__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ab-purpose__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.ab-purpose__orb--1 {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -40px;
  background: rgba(19, 120, 243, 0.12);
}

.ab-purpose__orb--2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: -50px;
  background: rgba(1, 7, 40, 0.06);
}

.ab-purpose__header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.ab-purpose__heading {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ab-ink);
  margin: 0.5rem 0 0;
}

.ab-purpose__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.ab-panel {
  background: #fff;
  border: 1px solid var(--ab-line);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 14px 40px rgba(10, 37, 96, 0.06);
}

.ab-panel--accent {
  background: linear-gradient(160deg, #010728 0%, #0a2560 55%, #0d3d8a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 50px rgba(1, 7, 40, 0.28);
}

.ab-panel__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-blue);
  margin-bottom: 0.85rem;
}

.ab-panel--accent .ab-panel__tag {
  color: rgba(255, 255, 255, 0.7);
}

.ab-panel__title {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ab-ink);
  margin: 0 0 1.15rem;
}

.ab-panel--accent .ab-panel__title {
  color: #fff;
}

.ab-panel__copy p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ab-muted);
  margin: 0 0 0.95rem;
}

.ab-panel__copy p:last-child {
  margin-bottom: 0;
}

.ab-panel--accent .ab-panel__copy p {
  color: rgba(255, 255, 255, 0.86);
}

.ab-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ab-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s var(--ab-ease), background 0.3s;
}

.ab-panel__cta svg {
  width: 16px;
  height: 16px;
}

.ab-panel__cta:hover {
  transform: translateY(-2px);
  background: #e8f2ff;
}

/* ---- CTA ---- */
.ab-cta {
  background: linear-gradient(135deg, #010728 0%, #0a2560 50%, #1378f3 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.ab-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ab-cta__title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.4rem;
}

.ab-cta__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ab-hero__inner {
    min-height: clamp(240px, 48vw, 340px);
    padding: calc(var(--header-h, 72px) + 1.5rem) 0 2rem;
  }

  .ab-hero__bg-img {
    object-position: 70% center;
  }

  .ab-purpose__grid {
    grid-template-columns: 1fr;
  }

  .ab-journey__meta {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 600px) {
  .ab-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
