/* ============================================================
   FIN PILOT — About Page (Luxury · Unique · Non-template)
   ============================================================ */

/* ---- Shared ---- */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--duration-slower) var(--ease-out),
    transform var(--duration-slower) var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 90ms; }
.fade-up-delay-2 { transition-delay: 180ms; }
.fade-up-delay-3 { transition-delay: 270ms; }
.fade-up-delay-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.btn--hero-primary {
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1FB6A6 0%, #30D5C8 100%);
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  box-shadow:
    0 8px 32px rgba(31, 182, 166, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn--hero-primary:hover {
  box-shadow: 0 12px 40px rgba(48, 213, 200, 0.55), 0 0 32px var(--color-teal-glow);
  transform: translateY(-2px);
}

.btn--hero-ghost {
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(48, 213, 200, 0.5);
  transform: translateY(-2px);
}

/* ============================================================
   1. HERO BANNER — cinematic asymmetric stage
   ============================================================ */

.ahero {
  --ah-px: 0px;
  --ah-py: 0px;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #071528;
  color: #fff;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-24);
}

.ahero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(18, 58, 111, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(31, 182, 166, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(12, 42, 82, 0.95) 0%, transparent 55%),
    linear-gradient(165deg, #061221 0%, #0C2A52 42%, #0A3D4A 100%);
}

.ahero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: ah-drift 18s var(--ease-in-out) infinite alternate;
}

.ahero__blob--1 {
  width: min(55vw, 560px);
  height: min(55vw, 560px);
  top: -12%;
  left: -8%;
  background: rgba(31, 182, 166, 0.45);
}

.ahero__blob--2 {
  width: min(45vw, 480px);
  height: min(45vw, 480px);
  top: 10%;
  right: -10%;
  background: rgba(48, 213, 200, 0.28);
  animation-delay: -4s;
}

.ahero__blob--3 {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  bottom: 5%;
  left: 25%;
  background: rgba(18, 58, 111, 0.7);
  animation-delay: -8s;
}

.ahero__blob--4 {
  width: min(30vw, 320px);
  height: min(30vw, 320px);
  top: 45%;
  right: 30%;
  background: rgba(26, 74, 133, 0.55);
  animation-delay: -2s;
}

@keyframes ah-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, -30px) scale(1.08); }
}

.ahero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ahero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, #000 15%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.ahero__beam {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 22%;
  width: 2px;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(48, 213, 200, 0.55), transparent);
  opacity: 0.65;
  pointer-events: none;
  animation: ah-beam 6s var(--ease-in-out) infinite;
}

@keyframes ah-beam {
  0%, 100% { opacity: 0.35; transform: scaleY(0.9); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

.ahero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .ahero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.ahero__eyebrow {
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.ahero__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2rem, 1.35rem + 2.6vw, 3.35rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.ahero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #7EEDE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ahero__lede {
  margin-bottom: var(--space-8);
  max-width: 34rem;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
}

.ahero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.ahero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  max-width: max-content;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ahero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ahero__trust-value {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #fff;
}

.ahero__trust-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
}

.ahero__trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero stage */

.ahero__stage {
  position: relative;
  min-height: clamp(340px, 48vw, 480px);
  display: grid;
  place-items: center;
}

.ahero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(48, 213, 200, 0.18);
  pointer-events: none;
}

.ahero__orbit--outer {
  width: min(92%, 440px);
  aspect-ratio: 1;
  animation: ah-spin 48s linear infinite;
}

.ahero__orbit--outer::before,
.ahero__orbit--outer::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30D5C8;
  box-shadow: 0 0 16px rgba(48, 213, 200, 0.8);
}

.ahero__orbit--outer::before { top: 8%; left: 50%; }
.ahero__orbit--outer::after { bottom: 12%; right: 10%; background: #1FB6A6; }

.ahero__orbit--inner {
  width: min(68%, 300px);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  animation: ah-spin 32s linear infinite reverse;
}

@keyframes ah-spin {
  to { transform: rotate(360deg); }
}

.ahero__core {
  position: relative;
  z-index: 2;
  width: min(78%, 340px);
  transform: translate(var(--px, 0), var(--py, 0));
}

.ahero__core-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.28);
  filter: blur(40px);
  animation: ah-pulse 4s var(--ease-in-out) infinite;
}

@keyframes ah-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.ahero__core-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.ahero-float {
  position: absolute;
  z-index: 3;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(8, 24, 48, 0.72);
  border: 1px solid rgba(48, 213, 200, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  transform: translate(var(--px, 0), var(--py, 0));
  animation: ah-float 7s var(--ease-in-out) infinite;
}

.ahero-float__label {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ahero-float__value {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #30D5C8;
}

.ahero-float--a { top: 8%; left: 0; animation-delay: 0s; }
.ahero-float--b { top: 18%; right: 0; animation-delay: -1.5s; }
.ahero-float--c { bottom: 22%; left: 4%; animation-delay: -3s; }
.ahero-float--d { bottom: 12%; right: 2%; animation-delay: -4.5s; }

@keyframes ah-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.ahero-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: ah-enter 0.9s var(--ease-out) forwards;
}

.ahero-enter--d1 { animation-delay: 0.12s; }
.ahero-enter--d2 { animation-delay: 0.24s; }
.ahero-enter--d3 { animation-delay: 0.36s; }
.ahero-enter--d4 { animation-delay: 0.48s; }

@keyframes ah-enter {
  to { opacity: 1; transform: translateY(0); }
}

.ahero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.ahero__wave svg {
  display: block;
  width: 100%;
  height: clamp(60px, 10vw, 110px);
}

.ahero__wave-back { fill: rgba(245, 248, 252, 0.4); }
.ahero__wave-front { fill: var(--color-soft-gray); }

@media (max-width: 991px) {
  .ahero__stage { order: -1; min-height: 300px; }
  .ahero-float--a { left: 2%; }
  .ahero-float--c { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ahero__blob,
  .ahero__orbit--outer,
  .ahero__orbit--inner,
  .ahero__core-glow,
  .ahero-float,
  .ahero__beam,
  .ahero-enter {
    animation: none !important;
  }
  .ahero-enter { opacity: 1; transform: none; }
}

/* ============================================================
   2. COMPANY STORY — split: copy left · gallery right
   ============================================================ */

.astory {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-soft-gray);
}

.astory__watermark {
  position: absolute;
  top: -0.05em;
  right: -0.02em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(9rem, 18vw, 18rem);
  font-weight: var(--fw-bold);
  line-height: 0.8;
  color: rgba(18, 58, 111, 0.045);
  pointer-events: none;
  user-select: none;
}

.astory__aura {
  position: absolute;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  bottom: -8%;
  left: -6%;
  border-radius: 50%;
  background: rgba(31, 182, 166, 0.1);
  filter: blur(80px);
  z-index: 0;
}

.astory__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 992px) {
  .astory__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(2.5rem, 4vw, 4rem);
    align-items: center;
  }
}

.astory__chapter {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.astory__eyebrow {
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.astory__title {
  margin-bottom: var(--space-6);
  font-size: clamp(1.85rem, 1.25rem + 2vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy-deep);
}

.astory__title em {
  font-style: normal;
  color: var(--color-teal);
}

.astory__lead {
  margin-bottom: var(--space-5);
  max-width: none;
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-relaxed);
  color: var(--color-navy-deep);
}

.astory__narrative p {
  margin-bottom: var(--space-4);
  max-width: none;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.astory__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.astory__seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 182, 166, 0.45);
  background:
    radial-gradient(circle at 35% 30%, rgba(48, 213, 200, 0.18), transparent 60%),
    var(--color-white);
  box-shadow: var(--shadow-md);
}

.astory__seal-year {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-navy);
}

.astory__seal-text {
  margin-top: var(--space-1);
  font-size: 0.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-teal);
}

.astory__pill-rail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.astory__pill-rail li {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(31, 182, 166, 0.3);
  background: rgba(31, 182, 166, 0.08);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

.astory__gallery {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  max-height: min(460px, 60vh);
  isolation: isolate;
}

.astory__shot {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.astory__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--duration-slow) var(--ease-out);
}

.astory__shot:hover img {
  transform: scale(1.03);
}

.astory__shot--primary {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-shadow: var(--shadow-lg);
}

.astory__shot--primary figcaption {
  position: absolute;
  left: 0;
  right: 40%;
  bottom: 0;
  z-index: 2;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(transparent, rgba(6, 18, 33, 0.78));
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: #fff;
}

/* Small vault card layered on top of the main photo */
.astory__shot--secondary {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 16%;
  width: 148px;
  height: 110px;
  min-height: 0;
  margin: 0;
  align-self: auto;
  box-shadow:
    0 14px 32px rgba(18, 58, 111, 0.28),
    0 0 0 3px rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
}

.astory__float-note {
  position: absolute;
  bottom: 5%;
  right: 4%;
  z-index: 4;
  max-width: 10.5rem;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(48, 213, 200, 0.35);
  box-shadow: var(--shadow-md);
}

.astory__float-note span {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-teal);
}

.astory__float-note strong {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-navy-deep);
}

@media (max-width: 991px) {
  .astory__gallery {
    max-width: 340px;
    max-height: 420px;
  }

  .astory__shot--secondary {
    width: 132px;
    height: 98px;
  }
}

@media (max-width: 767px) {
  .astory__gallery {
    max-width: 300px;
    max-height: 380px;
  }

  .astory__shot--secondary {
    right: 5%;
    bottom: 15%;
    width: 120px;
    height: 90px;
  }

  .astory__float-note {
    right: 3%;
    bottom: 4%;
    max-width: 9.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .astory__shot:hover img { transform: none; }
}

/* ============================================================
   3. MISSION
   ============================================================ */

.amission {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem);
  background: linear-gradient(135deg, #061221 0%, #0C2A52 50%, #0A3D4A 100%);
  color: #fff;
}

.amission__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.amission__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .amission__inner {
    grid-template-columns: 0.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

.amission__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.amission__index {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: var(--fw-bold);
  line-height: 0.85;
  color: rgba(48, 213, 200, 0.2);
}

.amission__title {
  margin-bottom: var(--space-5);
  font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.amission__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #9AF0E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.amission__text {
  margin-bottom: var(--space-8);
  max-width: 36rem;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.72);
}

.amission__points {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 576px) {
  .amission__points {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
}

.amission__points li {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.amission__points strong {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-teal-bright);
}

.amission__points span {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   4. VISION — premium stage
   ============================================================ */

.avision {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(31, 182, 166, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(18, 58, 111, 0.06) 0%, transparent 50%),
    var(--color-white);
}

.avision__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(18, 58, 111, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 58, 111, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.avision__bg-type {
  position: absolute;
  top: 42%;
  left: 8%;
  z-index: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(18, 58, 111, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.avision__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.avision__orb--1 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  top: -5%;
  right: -8%;
  background: rgba(48, 213, 200, 0.16);
}

.avision__orb--2 {
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  bottom: -8%;
  left: -6%;
  background: rgba(18, 58, 111, 0.1);
}

.avision__orb--3 {
  width: min(240px, 30vw);
  height: min(240px, 30vw);
  top: 40%;
  left: 40%;
  background: rgba(31, 182, 166, 0.08);
}

.avision__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.25rem, 4.5vw, 3.75rem);
  align-items: center;
}

@media (min-width: 992px) {
  .avision__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.avision__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.avision__eyebrow {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.avision__index {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  background: linear-gradient(135deg, rgba(31, 182, 166, 0.35), rgba(18, 58, 111, 0.12));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.avision__title {
  margin: 0 0 var(--space-5);
  font-size: clamp(1.85rem, 1.3rem + 1.9vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy-deep);
  text-wrap: balance;
}

.avision__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--color-teal) 0%, #30D5C8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.avision__lede {
  margin: 0 0 var(--space-6);
  max-width: 32rem;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.avision__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.avision__signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  background: rgba(31, 182, 166, 0.08);
  border: 1px solid rgba(31, 182, 166, 0.18);
}

.avision__signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FB6A6, #30D5C8);
  box-shadow: 0 0 10px rgba(48, 213, 200, 0.55);
}

/* Right stage: media + glass panel */

.avision__stage {
  position: relative;
  display: grid;
  gap: 0;
}

.avision__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(180px, 24vw, 240px);
  box-shadow: var(--shadow-md);
}

.avision__media img {
  display: block;
  width: 100%;
  height: clamp(180px, 24vw, 240px);
  object-fit: cover;
  object-position: center;
}

.avision__media-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 33, 0.1) 0%, rgba(6, 18, 33, 0.45) 100%),
    linear-gradient(90deg, rgba(18, 58, 111, 0.15), transparent 50%);
  pointer-events: none;
}

.avision__panel {
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
  margin-inline: clamp(0.75rem, 2vw, 1.25rem);
}

.avision__panel-glow {
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.2);
  filter: blur(36px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.avision__panel-border {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-xl) + 1px);
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgba(48, 213, 200, 0.7),
    rgba(18, 58, 111, 0.15),
    rgba(48, 213, 200, 0.45)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.avision__panel-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.avision__panel-label {
  margin: 0 0 0.65rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.avision__text {
  margin: 0 0 var(--space-6);
  max-width: none;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.avision__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.avision__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.85rem 0.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, var(--color-soft-gray) 100%);
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.avision__stats li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 182, 166, 0.28);
}

.avision__stat-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.2rem;
  border-radius: 8px;
  color: var(--color-teal);
  background: rgba(31, 182, 166, 0.12);
}

.avision__stat-icon svg {
  width: 15px;
  height: 15px;
}

.avision__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.1;
}

.avision__stats span {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

@media (max-width: 575px) {
  .avision__stats {
    grid-template-columns: 1fr;
  }

  .avision__stats li {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .avision__stat-icon {
    margin-bottom: 0;
  }

  .avision__stats strong {
    margin-right: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .avision__stats li:hover {
    transform: none;
  }
}

/* ============================================================
   5. VALUES — glass cards · brand theme
   ============================================================ */

.avalues {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--color-soft-gray);
}

.avalues__aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.avalues__aura--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -10%;
  right: -8%;
  background: rgba(48, 213, 200, 0.14);
}

.avalues__aura--2 {
  width: min(340px, 45vw);
  height: min(340px, 45vw);
  bottom: -8%;
  left: -8%;
  background: rgba(18, 58, 111, 0.1);
}

.avalues__inner {
  position: relative;
  z-index: 1;
}

.avalues__intro {
  max-width: 34rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.avalues__eyebrow {
  margin: 0 0 0.55rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.avalues__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 1.25rem + 2vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy-deep);
}

.avalues__title span {
  background: linear-gradient(120deg, var(--color-navy) 8%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.avalues__lede {
  margin: 0;
  max-width: 32rem;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.avalues__strip {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .avalues__strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }
}

.avalue {
  position: relative;
  isolation: isolate;
  height: 100%;
}

.avalue__glow {
  position: absolute;
  inset: 22% 15%;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.2);
  filter: blur(28px);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.avalue__border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgba(48, 213, 200, 0.65),
    rgba(18, 58, 111, 0.18),
    rgba(48, 213, 200, 0.4)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.avalue__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 17.5rem;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.avalue:hover .avalue__panel {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.avalue:hover .avalue__glow,
.avalue:hover .avalue__border {
  opacity: 1;
}

.avalue__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.avalue__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #123A6F 0%, #1FB6A6 100%);
  box-shadow: 0 10px 24px rgba(18, 58, 111, 0.22);
  transition: transform var(--duration-base) var(--ease-spring);
}

.avalue:hover .avalue__icon {
  transform: scale(1.06);
}

.avalue__icon svg {
  width: 22px;
  height: 22px;
}

.avalue__num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  color: rgba(18, 58, 111, 0.28);
  transition: color var(--duration-fast) var(--ease-out);
}

.avalue:hover .avalue__num {
  color: var(--color-teal);
}

.avalue__name {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.avalue__text {
  margin: 0 0 1.15rem;
  flex: 1;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.avalue__tag {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  color: var(--color-navy);
  background: rgba(31, 182, 166, 0.1);
  border: 1px solid rgba(31, 182, 166, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .avalue:hover .avalue__panel,
  .avalue:hover .avalue__icon {
    transform: none;
  }
}

/* ============================================================
   6. LEADERSHIP
   ============================================================ */

.alead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--color-white);
}

.alead__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 45% 40% at 0% 30%, rgba(31, 182, 166, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, rgba(18, 58, 111, 0.06), transparent 50%);
  pointer-events: none;
}

.alead__inner {
  position: relative;
  z-index: 1;
}

.alead__intro {
  max-width: 34rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.alead__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.alead__title {
  margin-bottom: var(--space-4);
  font-size: clamp(1.85rem, 1.25rem + 2vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy-deep);
}

.alead__title em {
  font-style: normal;
  color: var(--color-teal);
}

.alead__lede {
  max-width: none;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.alead-hero {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-5);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(12, 42, 82, 0.98), rgba(10, 61, 74, 0.96));
  color: #fff;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.alead-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.2);
  filter: blur(50px);
  pointer-events: none;
}

@media (min-width: 900px) {
  .alead-hero {
    grid-template-columns: auto 1fr minmax(12rem, 0.7fr);
    align-items: center;
  }
}

.alead-hero__portrait {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  flex-shrink: 0;
}

.alead-hero__mono {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #1A4A85, #0C2A52);
  border: 2px solid rgba(48, 213, 200, 0.55);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: #30D5C8;
  box-shadow: 0 0 40px rgba(48, 213, 200, 0.25);
}

.alead-hero__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(48, 213, 200, 0.35);
  animation: ah-spin 24s linear infinite;
}

.alead-hero__role {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.alead-hero__name {
  margin-bottom: var(--space-3);
  font-size: clamp(1.4rem, 1.15rem + 0.9vw, 1.85rem);
  font-weight: var(--fw-bold);
  color: #fff;
}

.alead-hero__bio {
  margin-bottom: var(--space-4);
  max-width: 34rem;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
}

.alead-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0;
  list-style: none;
}

.alead-hero__tags li {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.85);
}

.alead-hero__quote {
  margin: 0;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(48, 213, 200, 0.25);
  position: relative;
  z-index: 1;
}

.alead-hero__quote p {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.9);
}

.alead__row {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .alead__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.alead-card {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--color-soft-gray);
  border: 1px solid var(--color-border-soft);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.alead-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 182, 166, 0.35);
}

.alead-card__mono {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: var(--space-4);
  border-radius: 50%;
  background: var(--gradient-brand);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: #fff;
}

.alead-card__role {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-teal);
}

.alead-card__name {
  margin-bottom: var(--space-3);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-deep);
}

.alead-card__bio {
  max-width: none;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .alead-hero__ring { animation: none; }
  .alead-card:hover { transform: none; }
}

/* ============================================================
   7. TIMELINE — fixed zigzag grid
   ============================================================ */

.atime {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--color-soft-gray-muted);
}

.atime__intro {
  max-width: 28rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.atime__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.atime__title {
  font-size: clamp(1.85rem, 1.25rem + 2vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy-deep);
}

.atime__title span {
  color: var(--color-teal);
}

.atime__rail {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.atime__spine {
  position: absolute;
  left: 0.85rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: rgba(18, 58, 111, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  z-index: 0;
}

@media (min-width: 768px) {
  .atime__spine {
    left: 50%;
    margin-left: -1px;
  }
}

.atime__spine-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #1FB6A6, #123A6F);
  transition: height 1.2s var(--ease-out);
}

.atime__rail.is-drawn .atime__spine-fill {
  height: 100%;
}

.atime__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.atime-stop {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: var(--space-4);
  align-items: start;
}

.atime-stop__spacer {
  display: none;
}

.atime-stop__node {
  grid-column: 1;
  grid-row: 1;
  width: 1rem;
  height: 1rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-teal);
  box-shadow: 0 0 0 5px rgba(48, 213, 200, 0.18);
  justify-self: center;
}

.atime-stop__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.atime-stop__year {
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-teal);
}

.atime-stop__title {
  margin-bottom: var(--space-2);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-deep);
}

.atime-stop__text {
  max-width: 34ch;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .atime-stop {
    grid-template-columns: 1fr 2rem 1fr;
    gap: var(--space-5);
  }

  .atime-stop__spacer {
    display: block;
  }

  .atime-stop--left .atime-stop__body {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .atime-stop--left .atime-stop__node {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0.55rem;
  }

  .atime-stop--left .atime-stop__spacer {
    grid-column: 3;
    grid-row: 1;
  }

  .atime-stop--left .atime-stop__text {
    margin-left: auto;
  }

  .atime-stop--right .atime-stop__spacer {
    grid-column: 1;
    grid-row: 1;
  }

  .atime-stop--right .atime-stop__node {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0.55rem;
  }

  .atime-stop--right .atime-stop__body {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
  }
}

/* ============================================================
   8. ACHIEVEMENTS — redesigned metric strip
   ============================================================ */

.achieve-board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: #071528;
  color: #fff;
}

.achieve-board__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(48, 213, 200, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 90%, rgba(31, 182, 166, 0.14), transparent 50%),
    linear-gradient(165deg, #061221, #0C2A52 55%, #0A3D4A);
  pointer-events: none;
}

.achieve-board__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.achieve-board__glow--1 {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  top: -8%;
  right: -6%;
  background: rgba(48, 213, 200, 0.18);
}

.achieve-board__glow--2 {
  width: min(280px, 36vw);
  height: min(280px, 36vw);
  bottom: -10%;
  left: -5%;
  background: rgba(18, 58, 111, 0.45);
}

.achieve-board__inner {
  position: relative;
  z-index: 2;
}

.achieve-board__intro {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.achieve-board__eyebrow {
  margin: 0 0 0.5rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.achieve-board__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.achieve-board__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #7EEDE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.achieve-board__lede {
  margin: 0;
  max-width: 32rem;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.62);
}

/* Equal metric cards */
.achieve-board__metrics {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.85rem;
}

@media (min-width: 900px) {
  .achieve-board__metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.ametric {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.ametric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(48, 213, 200, 0.55), transparent);
  opacity: 0.7;
}

.ametric:hover {
  transform: translateY(-3px);
  border-color: rgba(48, 213, 200, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(48, 213, 200, 0.1);
}

.ametric__icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  color: #30D5C8;
  background: rgba(48, 213, 200, 0.12);
  border: 1px solid rgba(48, 213, 200, 0.28);
}

.ametric__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.ametric__value {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.ametric__prefix {
  color: #30D5C8;
  font-size: 0.72em;
  margin-right: 0.04em;
}

.ametric__label {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ametric__hint {
  margin: 0;
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.ametric--rate {
  justify-content: center;
}

.ametric__rate {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
}

.ametric__ring {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.ametric__ring svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ametric__ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.ametric__ring-fill {
  fill: none;
  stroke: #30D5C8;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 226.2;
  stroke-dashoffset: 226.2;
  transition: stroke-dashoffset 1.4s var(--ease-out);
}

.ametric__ring-fill.is-drawn {
  stroke-dashoffset: calc(226.2 * (1 - var(--ring-progress, 0.98)));
}

.ametric__ring-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

.ametric__rate-copy {
  min-width: 0;
}

.ametric__rate-copy .ametric__label {
  margin-bottom: 0.3rem;
}

.ametric__rate-copy .ametric__hint {
  padding-top: 0;
}

/* Partners bar */
.apartners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(31, 182, 166, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(48, 213, 200, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.apartners__left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.apartners__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 0.9vw, 2.1rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.apartners__label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.apartners__hint {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
}

.apartners__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apartners__brands li {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(48, 213, 200, 0.24);
  background: rgba(48, 213, 200, 0.1);
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.apartners__brands li:hover {
  background: rgba(48, 213, 200, 0.2);
  border-color: rgba(48, 213, 200, 0.5);
}

@media (max-width: 575px) {
  .ametric--rate {
    grid-column: 1 / -1;
  }

  .apartners {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ametric:hover {
    transform: none;
  }

  .ametric__ring-fill {
    transition: none;
  }
}

/* ============================================================
   9. CTA
   ============================================================ */

.acta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(480px, 70vh, 620px);
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  color: #fff;
}

.acta__illus {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.acta__illus-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(6, 18, 33, 0.92) 0%,
      rgba(12, 42, 82, 0.78) 42%,
      rgba(10, 61, 74, 0.45) 100%
    );
  pointer-events: none;
}

.acta__glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.acta__glow--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 10%;
  right: 8%;
  background: rgba(48, 213, 200, 0.45);
  animation: ah-pulse 5s var(--ease-in-out) infinite;
}

.acta__glow--2 {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  bottom: 15%;
  left: 10%;
  background: rgba(31, 182, 166, 0.28);
  animation: ah-pulse 7s var(--ease-in-out) infinite;
  animation-delay: -2.5s;
}

.acta__inner {
  position: relative;
  z-index: 3;
}

.acta__content {
  max-width: 38rem;
}

.acta__eyebrow {
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.acta__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.25rem, 1.5rem + 2.8vw, 3.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.acta__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #7EEDE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.acta__lede {
  margin-bottom: var(--space-8);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
}

.acta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.acta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.acta__btn--primary {
  background: linear-gradient(135deg, #1FB6A6, #30D5C8);
  color: var(--color-navy-deep);
  box-shadow: 0 8px 32px rgba(31, 182, 166, 0.4);
}

.acta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(48, 213, 200, 0.55);
}

.acta__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.acta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(48, 213, 200, 0.5);
  transform: translateY(-2px);
}

.acta__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  padding: 0;
  list-style: none;
}

.acta__trust li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.acta__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal-bright);
}

@media (prefers-reduced-motion: reduce) {
  .acta__glow--1,
  .acta__glow--2 {
    animation: none !important;
  }
  .acta__btn--primary:hover,
  .acta__btn--ghost:hover {
    transform: none;
  }
}
