/* ======================================================
   HOME PAGE — PAGE-SPECIFIC OVERRIDES
   (No layout primitives, no components)
====================================================== */

.home {
  width: 100%;
}

/* ===============================
   HERO TWEAKS (HOME ONLY)
================================ */

/* Slightly taller hero on home */
.home .hero-fullwidth {
  height: 82vh;
}

/* Improve vertical rhythm */
.home .hero-title {
  margin-bottom: 0.6rem;
}

/* .home .hero-subtitle {
  margin-top: 0.6rem;
} */

/* ===============================
   PLATFORM CLAIM STRIP
================================ */

.platform-claim {
  text-align: center;
}

.platform-claim .claim {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
}

/* ===============================
   PLATFORM INTRO SECTION
================================ */

.platform-title {
  font-size: 2.1rem;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}

.platform-statement p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-primary);
}

/* ===============================
   CAPABILITIES SECTION
================================ */

.capabilities {
  padding-top: 5rem;
}

.capability {
  border-top: 2px solid rgba(15, 23, 42, 0.12);
  padding-top: 1.2rem;
}

/* ===============================
   EXECUTIVE FRAMEWORK (HOW WE WORK)
================================ */

.section-title-exec-framework {
  margin-left: 2rem;
}

.section-intro-how-we-work {
  margin-left: 2rem;
  /* max-width: 760px; */
}

/* ===============================
   INVESTMENT FOCUS SECTION
================================ */

.mandate-intro {
  max-width: 760px;
}

.mandate-footer {
  margin-top: 2rem;
}

/* ===============================
   AUTHORITY SECTION
================================ */

/* .section-authority .authority-title {
  max-width: 720px;
} */

.authority-header {
  margin-bottom: 4.5rem;
}

.authority-header .section-kicker {
  color: rgba(255,255,255,0.6);
}

/* ===============================
   SPACING REFINEMENTS
================================ */

.home section + section {
  margin-top: 0;
}

/* ===============================
   BANNER
================================ */

.announcement-bar {
  background: linear-gradient(90deg, #0B1D3C, #102A5C, #0B1D3C);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.announcement-bar a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  animation: slideInOnce 0.9s ease-out forwards;
  white-space: nowrap;
}

@keyframes slideInOnce {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
