/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — extends sports-page.css with ab-* additions
   ══════════════════════════════════════════════════════════ */

.ab-hero .sp-hero__glow--violet { opacity: 0.55; }
.ab-hero .sp-hero__glow--teal   { opacity: 0.35; width: 420px; height: 420px; }

/* Inline BD flag (replaces 🇧🇩 emoji that many Windows browsers don't render) */
.ab-bd-flag {
  display: inline-flex;
  vertical-align: -2px;
  width: 20px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.ab-bd-flag svg { width: 100%; height: 100%; display: block; }

/* ── Stats row — 6 stats, fully responsive ──────────────── */
.ab-hero__stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 22px 18px;
  max-width: 1040px;
}
/* Reset :nth-child overrides inherited from sp-hero__stats (built for 5 items) */
.ab-hero__stats li:nth-child(4),
.ab-hero__stats li:nth-child(5),
.ab-hero__stats li:nth-child(6) { grid-column: auto; }

/* Subtle vertical dividers between stats */
.ab-hero__stats li {
  position: relative;
  padding: 4px 10px;
}
.ab-hero__stats li + li::before {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%; left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* 3 cols × 2 rows — dividers flow with the grid */
@media (max-width: 1080px) {
  .ab-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 8px;
    padding: 22px 16px;
  }
  .ab-hero__stats li + li::before { display: none; }
  .ab-hero__stats li:not(:nth-child(3n + 1))::before {
    content: '';
    display: block;
    position: absolute;
    top: 15%; bottom: 15%; left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  }
}

/* 2 cols × 3 rows */
@media (max-width: 620px) {
  .ab-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 8px;
    padding: 20px 14px;
  }
  .ab-hero__stats li:not(:nth-child(3n + 1))::before { display: none; }
  .ab-hero__stats li:nth-child(even)::before {
    content: '';
    display: block;
    position: absolute;
    top: 15%; bottom: 15%; left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  }
  .ab-hero__stats .sp-hero__stat-num { font-size: 1.4rem; }
  .ab-hero__stats .sp-hero__stat-label { font-size: 0.62rem; }
}

/* Below 360: single column */
@media (max-width: 360px) {
  .ab-hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ab-hero__stats li::before,
  .ab-hero__stats li:nth-child(even)::before { display: none !important; }
  .ab-hero__stats li:not(:first-child) {
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.08);
  }
}

/* ══════════════════════════════════════════════════════════
   STORY
   ══════════════════════════════════════════════════════════ */
.ab-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .ab-story__grid { grid-template-columns: 1fr; gap: 40px; } }

.ab-story__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(108,99,255,0.25), transparent 65%);
  border-radius: 50%;
}
/* Keep the orbiting dots inside the viewport on narrow screens */
.ab-story__grid { overflow-x: clip; }
@media (max-width: 520px) {
  .ab-story__visual {
    max-width: min(320px, calc(100vw - 80px));
  }
  .ab-story__dot { width: 44px; height: 44px; font-size: 1.3rem; }
}
@media (max-width: 380px) {
  .ab-story__visual {
    max-width: calc(100vw - 100px);
  }
  .ab-story__dot { width: 38px; height: 38px; font-size: 1.15rem; }
}
.ab-story__year {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--sp-violet-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  position: relative;
  z-index: 3;
}
.ab-story__year-sub {
  font-size: 0.85rem;
  color: var(--sp-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
  z-index: 3;
}
.ab-story__orb {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,0.25);
  transform: translate(-50%, -50%);
  animation: ab-story-rotate 18s linear infinite;
}
.ab-story__orb--1 { width: 68%; height: 68%; border-color: rgba(245,197,24,0.3); }
.ab-story__orb--2 { width: 85%; height: 85%; border-color: rgba(108,99,255,0.25); animation-duration: 25s; animation-direction: reverse; }
.ab-story__orb--3 { width: 100%; height: 100%; border-color: rgba(38,217,168,0.2); animation-duration: 32s; }

@keyframes ab-story-rotate {
  0%   { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

.ab-story__dot {
  position: absolute;
  width: 56px; height: 56px;
  background: var(--sp-surface);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
}
.ab-story__dot--top    { top: 0%;    left: 50%; transform: translate(-50%, -50%); }
.ab-story__dot--right  { top: 50%;   right: 0%; transform: translate(50%, -50%); }
.ab-story__dot--bottom { bottom: 0%; left: 50%; transform: translate(-50%, 50%); }
.ab-story__dot--left   { top: 50%;   left: 0%;  transform: translate(-50%, -50%); }

.ab-story__text h2 {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 16px 0 18px;
}
.ab-story__text h2 span {
  background: linear-gradient(135deg, var(--sp-gold), var(--sp-gold-warm));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ab-story__text p {
  color: var(--sp-muted);
  line-height: 1.72;
  font-size: 1rem;
  margin: 0 0 14px;
}
.ab-story__text p strong { color: #fff; font-weight: 700; }
.ab-story__text p em { color: var(--sp-text); font-style: italic; }
.ab-story__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════ */
.ab-timeline {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.06), transparent 55%),
    var(--sp-bg);
}
.ab-timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Vertical line runs through the center of the dot column:
   year 110 + gap 18 + half of dot (28/2=14) = 142 → line at 141px for 2px width */
.ab-timeline__list::before {
  content: '';
  position: absolute;
  top: 20px; bottom: 20px;
  left: 141px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(245,197,24,0.45) 12%, rgba(245,197,24,0.45) 88%, transparent);
  z-index: 0;
}
@media (max-width: 700px) {
  /* Mobile: year col collapses; dot col starts at 0, center of 28px = 14 → line at 13px */
  .ab-timeline__list::before { left: 13px; }
}

.ab-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 28px 1fr;
  align-items: start;
  gap: 18px;
}
@media (max-width: 700px) {
  .ab-timeline__item { grid-template-columns: 28px 1fr; gap: 16px; }
  .ab-timeline__year {
    grid-column: 2 / 3;
    order: -1;
    font-size: 0.95rem !important;
    text-align: left !important;
    padding-top: 0 !important;
    margin-bottom: -6px;
  }
  .ab-timeline__dot { grid-row: 2; }
  .ab-timeline__card { grid-row: 2; }
}

.ab-timeline__year {
  font-family: var(--font-display, sans-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sp-gold);
  letter-spacing: -0.02em;
  text-align: right;
  line-height: 1.1;
  padding-top: 20px;
}

/* Solid dot with a glow ring — sits on top of the line */
.ab-timeline__dot {
  position: relative;
  z-index: 2;
  justify-self: center;
  margin-top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sp-gold);
  box-shadow:
    0 0 0 4px var(--sp-bg),
    0 0 0 6px rgba(245,197,24,0.35),
    0 0 18px rgba(245,197,24,0.55);
  flex-shrink: 0;
}
.ab-timeline__dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.ab-timeline__card {
  position: relative;
  padding: 22px 24px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.ab-timeline__card::before {
  content: '';
  position: absolute;
  top: 50%; left: -14px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--sp-surface);
  transform: translateY(-50%);
}
.ab-timeline__card::after {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.ab-timeline__card:hover {
  transform: translateX(4px);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.ab-timeline__card:hover::after { opacity: 1; }

.ab-timeline__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.3);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.ab-timeline__card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.ab-timeline__card p { font-size: 0.92rem; color: var(--sp-muted); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════
   VALUES (reuses sp-why__grid)
   ══════════════════════════════════════════════════════════ */
.ab-values__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .ab-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .ab-values__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════════ */
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .ab-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .ab-team__grid { grid-template-columns: 1fr; }
  /* Center card content on mobile for a cleaner scan */
  .ab-team__card { text-align: center; }
  .ab-team__card .ab-team__icon { margin-left: auto; margin-right: auto; }
  .ab-team__card .ab-team__count-row { justify-content: center; }
  .ab-team__card p { max-width: 320px; margin-left: auto; margin-right: auto; }
}

.ab-team__card {
  position: relative;
  padding: 24px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.ab-team__card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.ab-team__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.22), rgba(108,99,255,0.05));
  border: 1px solid rgba(108,99,255,0.3);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.ab-team__count-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.ab-team__count {
  font-family: var(--font-display, sans-serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, var(--sp-gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ab-team__role {
  font-family: var(--font-display, sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.ab-team__card p { font-size: 0.82rem; color: var(--sp-muted); line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════════════════════
   TRUST
   ══════════════════════════════════════════════════════════ */
.ab-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1000px) { .ab-trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ab-trust__grid { grid-template-columns: 1fr; } }

.ab-trust__card {
  position: relative;
  padding: 26px 22px;
  background:
    linear-gradient(180deg, rgba(38,217,168,0.05), rgba(38,217,168,0.01) 60%),
    var(--sp-surface);
  border: 1px solid rgba(38,217,168,0.18);
  border-radius: 16px;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.ab-trust__card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,217,168,0.6), transparent);
  opacity: 0.5;
}
.ab-trust__card:hover {
  transform: translateY(-4px);
  border-color: rgba(38,217,168,0.4);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.ab-trust__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(38,217,168,0.12);
  border: 1px solid rgba(38,217,168,0.3);
  color: var(--sp-teal);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.ab-trust__card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.ab-trust__card p { font-size: 0.88rem; color: var(--sp-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════
   PRESS
   ══════════════════════════════════════════════════════════ */
.ab-press__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .ab-press__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ab-press__grid { grid-template-columns: 1fr; } }

.ab-press__card {
  position: relative;
  margin: 0;
  padding: 24px 24px 22px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
}
.ab-press__card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 18px;
  font-family: var(--font-display, serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--sp-gold);
  opacity: 0.5;
  font-weight: 900;
}
.ab-press__card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.ab-press__card blockquote {
  font-family: var(--font-display, sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 8px 0 14px;
}
.ab-press__card figcaption {
  font-size: 0.78rem;
  color: var(--sp-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
