:root {
  --font-display: 'Klavika Basic', 'Klavika Basic Regular', Klavika, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-text: 'Theinhardt', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ab-black: #000000;
  --ab-text: #262626;
  --ab-text-muted: #666666;
  --ab-rule: #dcdcdc;
  --ab-blue: #1e9bd7;
  --ab-blue-accent: #007abb;
  --ab-white: #ffffff;

  --ab-max-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ab-white);
  color: var(--ab-text);
  font-family: var(--font-text);
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--ab-text);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  font-size: 19px;
  line-height: 1.5;
}

a {
  color: var(--ab-blue);
  text-decoration: none;
}

button {
  font: inherit;
}

/* =========================================================
   Header snapshot (static chrome — not interactive)
   ========================================================= */

.ab-chrome {
  font-family: var(--font-text);
}

.ab-utility {
  background: var(--ab-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

.ab-utility__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-utility__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ab-white);
  font-size: 13px;
}

.ab-flag {
  width: 18px;
  height: auto;
  border-radius: 1px;
}

.ab-utility__chevron {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.ab-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid var(--ab-rule);
}

.ab-nav__logo {
  height: 34px;
  width: auto;
}

.ab-nav__links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ab-text);
}

.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  font-size: 13px;
}

.ab-breadcrumb__link {
  color: var(--ab-blue);
}

.ab-breadcrumb__current {
  color: var(--ab-text-muted);
}

.ab-breadcrumb__sep {
  color: var(--ab-text-muted);
}

.ab-hero {
  background: var(--ab-black) url('assets/hero-bg.jpg') center / cover no-repeat;
  padding: 48px 40px 40px;
}

.ab-hero__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ab-hero h1 {
  font-size: 48px;
  line-height: 1.05;
  color: var(--ab-white);
  max-width: 640px;
}

.ab-hero__search {
  position: relative;
  flex: 1 1 320px;
  max-width: 420px;
}

.ab-hero__search input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ab-blue);
  color: var(--ab-white);
  font-size: 15px;
  padding: 10px 28px 10px 0;
  font-family: var(--font-text);
}

.ab-hero__search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.ab-hero__search svg {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.ab-hero__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.ab-hero__dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ab-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ab-hero__quote {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ab-quote__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ab-white);
  margin-bottom: 6px;
}

.ab-quote__value {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 700;
  color: var(--ab-white);
}

.ab-quote__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.ab-quote__stars {
  color: #f0a83c;
  font-size: 16px;
  letter-spacing: 2px;
}

.ab-quote__info {
  font-size: 11px;
}

.ab-hero__bookmark {
  margin-left: auto;
  border: 1px solid var(--ab-blue);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-tabnav {
  display: flex;
  gap: 40px;
  padding: 0 40px;
  border-bottom: 1px solid var(--ab-rule);
}

.ab-tabnav__tab {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ab-black);
  padding: 16px 0 12px;
  border-bottom: 4px solid transparent;
}

.ab-tabnav__tab--active {
  font-weight: 700;
  border-bottom-color: var(--ab-blue-accent);
}

/* =========================================================
   Overview content
   ========================================================= */

.ab-overview {
  max-width: var(--ab-max-width);
  margin: 0 auto;
  padding: 64px 40px 96px;
}

.ab-overview > section,
.ab-overview > header,
.ab-overview > .ab-disclosures {
  margin-bottom: 64px;
}

.ab-overview > section:last-child {
  margin-bottom: 0;
}

.ab-overview__intro h2 {
  font-size: 45px;
  line-height: 1.125;
  margin-bottom: 20px;
}

.ab-lede {
  font-size: 19px;
  line-height: 1.5;
  max-width: 900px;
}

/* About / Investment Approach columns */

.ab-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}

.ab-columns__col h3 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 20px;
}

.ab-columns__col li {
  margin-bottom: 12px;
}

.ab-columns__col li:last-child {
  margin-bottom: 0;
}

/* Why Invest */

.ab-why h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.ab-why__list {
  list-style: disc;
  padding-left: 20px;
}

.ab-why__list li {
  margin-bottom: 8px;
}

.ab-why__list li::marker {
  font-size: 16px;
}

.ab-why__list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ab-why__list p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ab-text);
}

/* Key Facts + Fees/Widget row */

.ab-facts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}

.ab-facts h2,
.ab-fees h2,
.ab-team h2 {
  font-size: 34px;
  margin-bottom: 28px;
}

.ab-fees h2 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.ab-fees__asof {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--ab-text-muted);
}

.ab-facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 28px;
  column-gap: 24px;
}

.ab-fact__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ab-text);
  margin-bottom: 8px;
}

.ab-fact__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ab-text);
}

.ab-fact__value--sm {
  font-size: 16px;
  line-height: 1.3;
}

.ab-fact__sub {
  font-size: 13px;
  color: var(--ab-text-muted);
  margin-top: 4px;
}

.ab-facts-row__aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ab-fees__fact {
  margin-bottom: 0;
}

/* Disclosures (full width, spans below the facts/fees row) */

.ab-disclosures {
  border-top: 1px solid var(--ab-rule);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-disclosures p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ab-text-muted);
}

/* Meet the Team */

.ab-team__card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  border: 1px solid var(--ab-rule);
}

.ab-team__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eeeeee;
}

.ab-team__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 48px;
  flex: 1;
}

.ab-team__name {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 800;
  color: var(--ab-blue);
  display: block;
  width: 100%;
}

.ab-team__title {
  font-size: 15px;
  color: var(--ab-text);
  margin-top: 4px;
  width: 100%;
}

.ab-team__stats {
  display: flex;
  gap: 48px;
  margin-top: 8px;
}

.ab-team__stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ab-text);
}

.ab-team__stat-value--sm {
  font-size: 16px;
  font-weight: 600;
}

.ab-team__stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ab-text-muted);
  margin-top: 4px;
}

/* =========================================================
   Fund Profile widget (ETF Global) — ported from AB_Widget_Demo,
   unboxed so it flows inline with the rest of the page.
   ========================================================= */

.abw-card {
  --abw-accent: #1c9bd7;
  --abw-standard: #2261ae;
  --abw-expanded: #f06526;

  font-family: var(--font-text);
  color: var(--ab-black);
  line-height: normal;
}

.abw-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.abw-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--ab-text);
}

.abw-asof {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--ab-text-muted);
}

.abw-tabs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.abw-tab {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ab-black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.abw-tab:not(.abw-tab--active):hover .abw-tab__underline {
  background: var(--ab-rule);
}

.abw-tab__underline {
  height: 3px;
  margin-top: 12px;
  background: transparent;
}

.abw-tab--active .abw-tab__underline {
  background: var(--abw-accent);
}

.abw-body {
  margin-top: 16px;
}

.abw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 45px;
  border-bottom: 1px solid var(--ab-rule);
}

.abw-row__label {
  font-size: 15px;
  font-weight: 700;
}

.abw-row--expanded .abw-row__label {
  color: var(--abw-expanded);
}

.abw-row__value {
  font-size: 15px;
  font-weight: 400;
  text-align: right;
}

.abw-row__count {
  font-weight: 700;
}

.abw-group {
  display: flex;
  align-items: stretch;
}

.abw-rail {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.abw-rail--standard {
  background: var(--abw-standard);
}

.abw-rail--expanded {
  background: var(--abw-expanded);
}

.abw-group__rows {
  flex: 1 1 auto;
  min-width: 0;
}

.abw-group .abw-row {
  padding-left: 12px;
}

.abw-status {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--ab-text-muted);
}

.abw-footer {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 16px;
}

.abw-footer__text {
  font-size: 13px;
}

.abw-footer__logo {
  display: block;
  height: 12px;
  width: auto;
  margin-bottom: 2px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .ab-nav__links,
  .ab-hero__quote {
    gap: 20px;
  }

  .ab-columns,
  .ab-facts-row {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 0;
  }
}

@media (max-width: 640px) {
  .ab-utility,
  .ab-nav,
  .ab-breadcrumb,
  .ab-hero,
  .ab-tabnav,
  .ab-overview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ab-nav__links {
    display: none;
  }

  .ab-facts__grid {
    grid-template-columns: 1fr;
  }

  .ab-team__card {
    flex-direction: column;
    align-items: flex-start;
  }
}
