/* ─────────────────────────────────────
   1. HERO
───────────────────────────────────── */
.hero-about {
  position: relative;
  min-height: fit-content;
  padding: 100px 40px 80px;
  overflow: hidden;
  background: #0d0d0b;
}

.hero-about-inner{
  display: flex;
  max-width: 1060px !important;
  justify-content: space-between;
  margin: 0 auto;
}

/* Animated globe canvas behind everything */
#globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

/* Noise grain overlay */
.hero-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.hero-about-content {
  position: inline-flex;
  z-index: 2;
  max-width: 900px;
}

.hero-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-about-tag span {
  width: 6px;
  height: 6px;
  background: var(--accent2);
  border-radius: 50%;
}

.hero-about h1 {
  font-family: 'Inter', sans-serif;
  /* font-size: clamp(3rem, 8vw, 7rem); */
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-about h1 em {
  font-style: italic;
  color: var(--accent2);
}

.hero-about-sub {
  margin-top: 28px;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-scroll {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 0.8s 0.35s ease both;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* stat chips top-right */
.hero-chips {
  position: inline-flex;
  top: 100px;
  /* right: 40px; */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: right;
  backdrop-filter: blur(8px);
}

.hero-chip-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}

.hero-chip-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────
   2. MISSION
───────────────────────────────────── */
.mission-section {
  margin-top: 50px;
  padding: 100px 40px;
  background: #fff;
}

.mission-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-header{
  align-items: start !important;
  text-align: left !important;
  margin-bottom: 25px !important;
}
.story-header .section-label{
  text-align: left !important;
}


.section-title{
  text-align: center !important;
}
.mission-quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.85em;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111;
}

.mission-quote em {
  color: var(--accent2);
  font-style: italic;
}

.mission-body {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
}

.mission-body p+p {
  margin-top: 14px;
}

/* Right: big number blocks */
.mission-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-block {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mission-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.mission-block:first-child {
  grid-column: 1 / -1;
  background: #111;
  color: #fff;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mission-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mission-block:first-child .mission-num {
  color: #fff;
}

.mission-block-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

.mission-block:first-child .mission-block-label {
  color: rgba(255, 255, 255, 0.5);
}

.mission-block-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   3. STORY — TIMELINE
───────────────────────────────────── */
.story-section {
  padding: 100px 40px;
  background: var(--bg);
}

.story-header {
  max-width: 1060px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.story-header p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.timeline {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.tl-item:nth-child(odd) {
  flex-direction: row;
}

.tl-item:nth-child(even) {
  flex-direction: row-reverse;
}

.tl-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}

.tl-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.tl-year {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 10px;
}

.tl-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tl-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.tl-dot-wrap {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  background: #111;
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px #111;
}

.tl-spacer {
  flex: 1;
}

/* ─────────────────────────────────────
   4. VALUES
───────────────────────────────────── */
.values-section {
  padding: 100px 40px;
  background: #111;
  overflow: hidden;
}

.values-header {
  max-width: 1060px;
  margin: 0 auto 60px;
  text-align: center;
}

.values-header h2 {
  color: #fff;
}

.values-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: background 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 195, 142, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  stroke: var(--accent2);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}



/* ─────────────────────────────────────
   6. CULTURE — MARQUEE
───────────────────────────────────── */
.culture-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.culture-label {
  text-align: center;
  margin-bottom: 40px;
}

.marquee-wrap {
  overflow: hidden;
  margin-bottom: 16px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 32s;
}

.marquee-item {
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────
   7. GLOBAL PRESENCE
───────────────────────────────────── */
.global-section {
  padding: 100px 40px;
  background: #fff;
}

.coverage-map{
  width: 100%;
}

.global-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.global-header {
  text-align: center;
  margin-bottom: 60px;
}

.global-header h2 {
  margin-bottom: 12px;
}

.global-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

.global-map-wrap {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.global-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.global-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}

.global-stat {
  background: #fff;
  padding: 28px 24px;
  text-align: center;
}

.global-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: #111;
  line-height: 1;
  margin-bottom: 6px;
}

.global-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}




/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: #111;
  padding: 50px 40px 32px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.footer-brand span {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 220px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1060px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── Scroll reveal utility ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-about {
    padding: 100px 24px 60px;
  }

  .hero-about h1{
    font-size: 36px;
  }

  .hero-chips {
    display: none;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .global-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .story-header p{
    text-align: left;
  }

  .timeline::before {
    left: 20px;
  }

  .tl-item,
  .tl-item:nth-child(even) {
    flex-direction: column;
    padding-left: 52px;
  }

  .tl-dot-wrap {
    position: absolute;
    left: 12px;
    top: 0;
  }

  .tl-item {
    position: relative;
  }

  .tl-spacer {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
}

/* ── Stagger & state extractions ── */
.mission-right.reveal { transition-delay: 0.15s; }
.tl-card--current { border: 2px solid #111; }
.tl-dot--current { background: #00c38e; box-shadow: 0 0 0 2px #00c38e; }
.values-grid .value-card:nth-child(2) { transition-delay: 0.1s; }
.values-grid .value-card:nth-child(3) { transition-delay: 0.2s; }
.values-grid .value-card:nth-child(4) { transition-delay: 0.3s; }
.values-grid .value-card:nth-child(5) { transition-delay: 0.4s; }
.values-grid .value-card:nth-child(6) { transition-delay: 0.5s; }
.marquee-wrap + .marquee-wrap { margin-top: 0; }
.marquee-track.reverse .marquee-dot { background: #111; }
.global-stats-row .global-stat:nth-child(2) { transition-delay: 0.1s; }
.global-stats-row .global-stat:nth-child(3) { transition-delay: 0.2s; }
.global-stats-row .global-stat:nth-child(4) { transition-delay: 0.3s; }