/* Inner-page pieces: hero band, sticky anchor bar, benefits/features lists.
   DESIGN-REFERENCE.md §3.3, §9.2, §9.3, §1 (serif headings on inner pages). */

.inner-hero {
  color: #FFFFFF;
  padding: 56px 0 48px;
  /* Same layered treatment as the homepage carousel -- dot texture + soft
     glow + diagonal gradient -- so every dark band on the site is consistent. */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.10), transparent 45%),
    linear-gradient(160deg, #0F172A 0%, #16213A 55%, #0F172A 100%);
  background-size: 28px 28px, auto, auto;
}

.inner-hero__breadcrumb {
  font-size: 14px;
  color: #94A3B8;
  margin: 0 0 20px;
}

.inner-hero__breadcrumb a {
  color: #94A3B8;
  text-decoration: none;
}

.inner-hero__breadcrumb a:hover {
  color: var(--accent-primary);
}

.inner-hero__heading {
  font-family: var(--font-serif);
  font-size: var(--text-h1-inner-size);
  font-weight: var(--text-h1-inner-weight);
  line-height: var(--text-h1-inner-leading);
  margin: 0;
  max-width: 720px;
}

.inner-hero__lede {
  font-size: 18px;
  line-height: 1.5;
  color: #CBD5E1;
  max-width: 640px;
  margin: 0;
}

/* ---- sticky anchor-link bar ---- */

.anchor-bar {
  background: var(--surface-white);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 130px; /* sits below the two-bar site header (60px + ~70px) */
  z-index: 50;
}

.anchor-bar__row {
  display: flex;
  gap: 32px;
  overflow-x: auto;
}

.anchor-bar a {
  display: block;
  padding: 16px 0;
  color: var(--text-color-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.anchor-bar a:hover {
  color: var(--text-color);
  border-bottom-color: var(--accent-primary);
}

/* ---- inner-page section headings (serif h2) ---- */

.inner-section {
  padding: 72px 0;
  scroll-margin-top: 150px; /* so #anchors land below the sticky bars, not under them */
}

.inner-section h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2-inner-size);
  font-weight: var(--text-h2-inner-weight);
  line-height: var(--text-h2-inner-leading);
  margin: 0;
}

.inner-section p.section-lede {
  margin-top: 24px;
}

/* ---- benefits / features lists ---- */

.check-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.check-list strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--text-color);
}

.check-list span {
  color: var(--text-color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.benefit-blocks {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefit-blocks h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-color);
}

.benefit-blocks p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color-muted);
  margin: 0;
}

.feature-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-list li {
  background: var(--surface-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

/* ---- tag grid (About: "Who We Serve") ---- */

.tag-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tag-grid li {
  background: var(--surface-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

/* ---- timeline (About: "Our Story") ---- */

.timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
}

.timeline__year {
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 15px;
}

.timeline__desc {
  color: var(--text-color-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 599px) {
  .anchor-bar {
    top: 60px; /* mobile header collapses to just the topbar (nav hides behind hamburger) */
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .feature-list,
  .benefit-blocks {
    grid-template-columns: 1fr;
  }

  .inner-section {
    padding: 48px 0;
  }
}
