/* ===== AT A GLANCE ===== */
.at-a-glance {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 3rem 2rem;
  background: #444444;
  color: #fff;
  text-align: center;
}
.glance-item {
  flex: 0 1 160px;
}
.glance-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
}
.glance-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-top: 0.25rem;
}

/* ===== STORY BLOCKS (alternating image/text) ===== */
.story-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-grid--reverse {
  direction: rtl;
}
.story-grid--reverse > * {
  direction: ltr;
}
.story-img-placeholder,
.story-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #ccc;
  border-radius: 10px;
  object-fit: cover;
}
.story-grid--reverse .story-img-placeholder,
.story-grid--reverse .story-img {
  aspect-ratio: 4/3;
}
.story-text h2 {
  margin-bottom: 1rem;
}
.story-text p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===== GROWTH BAND ===== */
.growth-band {
  max-width: 100%;
  padding: 4rem 2rem;
  background: #fff;
}
.growth-inner {
  max-width: 960px;
  margin: 0 auto;
}
.growth-inner h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.growth-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.growth-col p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== HIGHLIGHT STRIP ===== */
.highlight-strip {
  max-width: 100%;
  background: #444;
  color: #fff;
  padding: 0 2rem;
}
.highlight-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.highlight-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.highlight-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== COMMUNITY ===== */
.community-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.community-text h2 { margin-bottom: 1rem; }
.community-text p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.community-img-placeholder,
.community-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ccc;
  border-radius: 10px;
  object-fit: cover;
}

/* ===== TIMELINE ===== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.timeline h2 { text-align: center; margin-bottom: 2.5rem; }
.timeline-track {
  position: relative;
  padding-left: 2.5rem;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #888;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ddd;
}
.timeline-year {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.25rem;
}
.timeline-item p {
  color: #444;
  font-size: 0.92rem;
  margin: 0.15rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story-grid,
  .story-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .growth-columns { grid-template-columns: 1fr; }
  .highlight-strip-inner { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .highlight-item:last-child { border-bottom: none; }
  .community-grid { grid-template-columns: 1fr; }
  .at-a-glance { gap: 1.5rem; }
  .glance-number { font-size: 2rem; }
}

/* ===== TIMELINE FLOAT-UP ON SCROLL ===== */
.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.timeline-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item { opacity: 1; transform: none; transition: none; }
}
