/* =====================================================================
   AXIA — HOME PAGE (home.css)  — hero + presentation viewer
   ===================================================================== */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(15,77,63,.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 18px;
}
.hero h1.display {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero h1.display em { font-style: italic; font-weight: 400; color: var(--brand); }
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 0 30px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  font-family: var(--ff-body); font-weight: 600; font-size: 0.98rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid var(--brand);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color: #fff; }

/* ---------- HERO CARD (fund metadata) ---------- */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) * 3);
  padding: 28px 30px;
  box-shadow: 0 10px 40px rgba(5,32,23,.07);
}
.hero-card h2 {
  font-family: var(--ff-body);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-muted); margin: 0 0 18px; font-weight: 600;
}
.hero-card dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 14px 16px; }
.hero-card dt { color: var(--ink-muted); font-size: 0.95rem; }
.hero-card dd { margin: 0; font-weight: 600; color: var(--brand-ink); text-align: right; }
.hero-card dd.pos { color: var(--pos); }

/* ---------- MARQUEE (brand-green strip) ---------- */
.marquee {
  margin-top: clamp(34px, 5vw, 56px);
  background: var(--brand);
  color: #EAF1ED;
  overflow: hidden;
  border-radius: var(--radius);
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--ff-display); font-style: italic; font-size: 1.15rem;
  animation: marquee 26s linear infinite;
}
.marquee-track span { padding-inline: 24px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
}

/* ---------- PRESENTATION (PDF viewer) ---------- */
.presentation { padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--rule); }
.presentation .section-head { margin-bottom: 26px; }
.presentation .eyebrow { margin-bottom: 10px; }
.presentation h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  max-width: 24ch;
}

.pdf-viewer {
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 40px rgba(5,32,23,.07);
}
.pdf-toolbar {
  background: var(--brand);
  color: #EAF1ED;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 14px 18px;
}
.pdf-toolbar .pdf-name { font-weight: 600; font-size: 0.95rem; }
.pdf-toolbar .pdf-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pdf-btn {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff; text-decoration: none;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  transition: background .2s var(--ease);
}
.pdf-btn:hover { background: rgba(255,255,255,.24); color: #fff; }

.pdf-frame { width: 100%; height: 640px; border: 0; display: block; background: #f4f2ec; }

.pdf-empty {
  padding: 56px 24px; text-align: center; color: var(--ink-muted);
  background: var(--bg-alt);
}


/* ---------- QUICK LINKS ---------- */
.quicklinks { padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--rule); }

.ql-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ql-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) * 3);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 28px rgba(5,32,23,.05);
}
.ql-card::before {
  content: "";
  width: 38px; height: 3px;
  background: var(--brand);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.ql-card-title { font-size: 1.35rem; margin: 0 0 10px; }
.ql-card-desc { color: var(--ink-muted); font-size: 0.96rem; margin: 0 0 18px; }

.ql-go {
  margin-top: auto;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ql-go:hover { color: var(--brand-deep); }

@media (max-width: 900px) { .ql-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ql-grid { grid-template-columns: 1fr; } }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* ---------- BLOG GRID (shared: home + /blog) ---------- */
.blogs { padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--rule); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card { display: flex; }
.blog-card-link {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  text-decoration: none;
  width: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card-link:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(5,32,23,.10); }

.blog-cover {
  display: block; height: 150px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-cover-ph {
  font-family: var(--ff-display); font-style: italic;
  color: rgba(255,255,255,.65); font-size: 1.6rem; letter-spacing: .1em;
}

.blog-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-date {
  font-size: 0.78rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--brand);
}
.blog-card-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 1.3rem; line-height: 1.15; color: var(--brand-ink);
  margin: 8px 0 8px;
}
.blog-card-excerpt { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 16px; }
.blog-go { margin-top: auto; color: var(--brand); font-weight: 600; font-size: 0.9rem; }

.blogs-all { text-align: center; margin-top: 28px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pdf-frame { height: 520px; }
}
@media (max-width: 720px) {
  .pdf-frame { height: 420px; }
  .hero-card dl { grid-template-columns: 1fr; gap: 6px 0; }
  .hero-card dd { text-align: left; }
  .hero-card dt { margin-top: 8px; }
}


/* hero now single column (fund snapshot card removed) */
.hero-grid--single { grid-template-columns: 1fr; max-width: 760px; }

/* ===== HERO single column (snapshot card removed) ===== */
.hero-grid--single { grid-template-columns: 1fr; max-width: 760px; }

/* ===== HERO intro bullet list ===== */
.hero .lede + ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.hero .lede + ul li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
/* green tick marker */
.hero .lede + ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 16px;
  border: solid var(--brand);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* keep the CTA row spaced below the list */
.hero .lede + ul + .cta-row { margin-top: 30px; }