/* ── Hero grid ── */
.abt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding-top: 64px; /* clear fixed nav (h-16 on mobile) */
}
@media (min-width: 640px) {
  .abt-hero { padding-top: 80px; } /* h-20 on sm+ */
}
@media (max-width: 767px) {
  .abt-hero { grid-template-columns: 1fr; min-height: auto; }
  .abt-hero > div:first-child  { min-height: 55vmax; }
  .abt-hero > div:last-child   { min-height: 42vmax; }
}
.abt-hero-left {
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
}
.abt-hero-title {
  font-family: var(--font-headline);
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .abt-hero-title { font-size: var(--fs-display-lg); }
}
.abt-hero-desc {
  color: var(--color-on-primary-container);
  font-size: var(--fs-body-lg);
  max-width: 28rem;
}
.abt-hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: #0B2D5E;
  padding: clamp(2rem, 5vw, 5rem);
}
.abt-ghost-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 800;
  color: white;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.abt-stat-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 5vw, 2.5rem);
}
.abt-stat-card p:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.abt-stat-card p:last-child {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Story 2-col ── */
.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .abt-story-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.abt-milestone {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
.abt-milestone-year {
  flex-shrink: 0;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: var(--fs-label-md);
  font-family: var(--font-headline);
  white-space: nowrap;
  margin-top: 2px;
}
.abt-milestone-line {
  flex-shrink: 0;
  width: 16px;
  height: 1px;
  background: var(--color-outline-variant);
  margin-top: 12px;
  display: none;
}
@media (min-width: 640px) { .abt-milestone-line { display: block; } }
.abt-milestone-event {
  color: var(--color-on-surface-variant);
  font-size: var(--fs-body-sm);
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.abt-stat-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0px 10px 30px rgba(11, 31, 58, 0.05);
}
@media (min-width: 640px) { .abt-stat-box { padding: 28px; } }
.abt-stat-box--tertiary { border-left-color: var(--color-on-tertiary-container); }
.abt-stat-box-value {
  font-family: var(--font-headline);
  font-size: var(--fs-display-lg-mobile);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 4px;
}
@media (min-width: 640px) { .abt-stat-box-value { margin-bottom: 8px; } }
.abt-stat-box-value--tertiary { color: var(--color-on-tertiary-container); }
.abt-stat-box-label {
  color: var(--color-on-surface-variant);
  font-size: var(--fs-label-md);
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* ── Founders grid ── */
.abt-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .abt-founders-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.founder-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.founder-left.abt-vis,
.founder-right.abt-vis { opacity: 1; transform: translateX(0); }

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.founder-card:hover {
  border-color: rgba(0, 119, 255, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.founder-photo-wrap {
  position: relative;
  height: clamp(200px, 22vw, 280px);
  overflow: hidden;
}
.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.founder-card:hover .founder-photo-img { transform: scale(1.04); }
.founder-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: #0B1F3A;
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: white;
}

.founder-info { padding: 1.25rem 1.5rem 1.5rem; }
.founder-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
}
.founder-name {
  font-family: var(--font-headline);
  font-size: var(--fs-headline-sm);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}
.founder-underline {
  display: block;
  height: 2px;
  background: #0077FF;
  margin-top: 4px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.founder-card:hover .founder-underline { clip-path: inset(0 0% 0 0); }
.founder-title {
  color: var(--color-secondary);
  font-size: var(--fs-label-md);
  font-family: var(--font-headline);
  margin-top: 6px;
}
.founder-linkedin {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.founder-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.founder-chip {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.founder-bio {
  color: var(--color-on-primary-container);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(196, 198, 206, 0.3);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.1);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid rgba(0, 119, 255, 0.18);
  background: #0B1F3A;
  margin-bottom: 1.125rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.team-card:hover .team-avatar {
  border-color: #0077FF;
  box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.08);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.team-avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
}

.team-name {
  font-family: var(--font-headline);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.team-title {
  color: var(--color-secondary);
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 16px; }
.team-chip {
  padding: 3px 10px;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid rgba(0, 119, 255, 0.18);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0077FF;
  white-space: nowrap;
}
.team-linkedin {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(0, 119, 255, 0.07);
  border: 1px solid rgba(0, 119, 255, 0.18);
  color: #0077FF;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.team-linkedin .material-symbols-outlined { font-size: 13px; }

.team-section {
  background-image:
    repeating-linear-gradient(0deg, rgba(11,31,58,0.03) 0, rgba(11,31,58,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(11,31,58,0.03) 0, rgba(11,31,58,0.03) 1px, transparent 1px, transparent 40px);
}

/* ── Offices ── */
.abt-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.abt-office-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(196, 198, 206, 0.3);
}
.abt-office-head {
  background: #0B1F3A;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.abt-office-flag { font-size: 28px; }
.abt-office-city {
  font-family: var(--font-headline);
  font-size: var(--fs-headline-sm);
  color: #fff;
}
.abt-office-country {
  color: var(--color-on-primary-container);
  font-size: var(--fs-body-sm);
}
.abt-office-body {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.abt-office-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.abt-office-row .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 1px;
}
.abt-office-row p, .abt-office-row a {
  color: var(--color-on-surface-variant);
  font-size: var(--fs-body-sm);
  text-decoration: none;
}

/* ── Values grid ── */
.abt-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 639px) {
  .abt-values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.value-card {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.value-card.abt-vis { opacity: 1; transform: scale(1); }
.value-icon {
  display: block;
  color: var(--color-secondary);
  font-size: 40px;
  font-variation-settings: 'FILL' 1;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-headline);
  font-size: var(--fs-headline-sm);
  color: #fff;
  margin-bottom: 8px;
}
.value-body {
  color: var(--color-on-primary-container);
  font-size: var(--fs-body-sm);
}
