/* ============ DISCLOSURES PAGE ============ */
.disc-hero {
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--page-bg) 100%);
  color: var(--ink);
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
}

.disc-crumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.disc-crumbs a {
  color: var(--muted);
  font-weight: 500;
}

.disc-crumbs a:hover {
  color: var(--brand);
}

.crumb-sep {
  margin: 0 10px;
  color: var(--muted);
}

.crumb-current {
  color: var(--ink);
  font-weight: 600;
}

.disc-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}

.disc-body {
  background: var(--page-bg);
  padding: 40px 0 96px;
}

.disc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.disc-tab {
  background: none;
  border: 0;
  padding: 14px 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
}

.disc-tab:hover {
  color: var(--ink);
}

.disc-tab.is-active {
  color: var(--brand);
}

.disc-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
}

.disc-search {
  position: relative;
  max-width: 520px;
  margin: 0 0 28px;
}

.disc-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.disc-search input {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.disc-search input:focus {
  border-color: var(--brand);
  background: var(--page-bg);
}

.disc-panel {
  display: none;
}

.disc-panel.is-active {
  display: block;
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.disc-card {
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.disc-card:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(13, 90, 158, 0.104);
  transform: translateY(-2px);
}

.dc-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dc-icon svg {
  width: 22px;
  height: 22px;
}

.disc-card h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
}

.dc-btn {
  margin-top: auto;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.dc-btn:hover {
  background: var(--brand);
  color: #fff;
}

/* ============ NAV / TER regulatory pages ============ */
.disc-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 680px;
}

.rp-body {
  padding: clamp(48px, 7vw, 96px) 0;
}

.rp-info-bar {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.rp-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.rp-info-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.rp-section {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.rp-section-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
}

.rp-section-body {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 680px;
  line-height: 1.65;
}

.rp-link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  max-width: 560px;
}

.rp-link-card:hover {
  border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--brand) 10.4%, transparent);
}

.rp-link-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.rp-link-card-icon svg {
  width: 20px;
  height: 20px;
}

.rp-link-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rp-link-card-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.rp-link-card-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.rp-link-card-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}

.rp-link-card:hover .rp-link-card-arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.rp-note {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: color-mix(in srgb, var(--brand) 5%, var(--page-bg));
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  border-radius: 12px;
  margin-top: clamp(40px, 5vw, 64px);
}

.rp-note svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand);
  margin-top: 2px;
}

.rp-note p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.rp-note a {
  color: var(--brand);
  font-weight: 500;
}

/* ============ Partner "coming soon" overlay ============ */
.partner-soon {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: color-mix(in srgb, var(--page-bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.partner-soon.is-open {
  display: flex;
  animation: ps-fade 0.25s ease both;
}

@keyframes ps-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.partner-soon-card {
  max-width: 460px;
  width: 100%;
  padding: 40px 36px;
  border-radius: 20px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--ink) 28.6%, transparent);
  text-align: center;
  animation: ps-pop 0.28s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes ps-pop {
  from {
    transform: translateY(12px) scale(0.98);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.ps-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.partner-soon-card h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--ink);
}

.partner-soon-card p {
  color: var(--ink-2);
  margin: 0 0 24px;
}

.ps-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: clamp(52px, 7vw, 104px) 0 clamp(40px, 5vw, 80px);
  background:
    radial-gradient(60% 55% at 15% 20%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 60%),
    radial-gradient(55% 50% at 90% 90%, color-mix(in srgb, var(--brand) 6%, transparent), transparent 60%),
    var(--page-bg);
  border-bottom: 1px solid var(--line);
}

.about-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
}

.about-h1 em {
  font-style: italic;
  color: inherit;
}

.about-h1-center {
  text-align: center;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.15fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}

.about-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--ink) 13%, transparent);
  display: block;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-copy-block h2 {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.about-copy-block p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 16px;
}

.about-copy-block p:last-child {
  margin-bottom: 0;
}

.about-block {
  padding: clamp(48px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.about-block-alt {
  background: color-mix(in srgb, var(--ink) 4%, var(--page-bg));
}

/* Warm cream/gold gradient block (dark mode: subtle brand tint; light mode: sand + cream) */
.about-block-gold {
  background:
    radial-gradient(70% 55% at 90% 100%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 60%),
    radial-gradient(60% 50% at 10% 0%, color-mix(in srgb, var(--brand-2) 8%, transparent), transparent 60%),
    var(--cream);
}

[data-theme="light"] .about-block-gold {
  background:
    radial-gradient(70% 55% at 90% 100%, color-mix(in srgb, var(--sand) 55%, transparent), transparent 60%),
    radial-gradient(60% 50% at 10% 0%, color-mix(in srgb, var(--cream-2) 80%, transparent), transparent 60%),
    var(--cream);
}

/* Merged people section: Founders + Trustees + Team as one continuous block */
.people-block+.people-block,
.people-block:not(:first-child) {
  margin-top: clamp(20px, 2.5vw, 36px);
}

.people-block .section-head {
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

/* Subtle inline divider between the three groups - signals "same section" not "new section" */
.people-divider {
  max-width: 480px;
  margin: clamp(24px, 3vw, 44px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.about-block-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 40px;
  letter-spacing: -0.01em;
  text-align: center;
}

.about-block-h2 em {
  font-style: italic;
  color: inherit;
}

.about-block-p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Founders */
.founder-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.founder-card {
  text-align: center;
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--ink) 23.4%, transparent);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.founder-card p {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(32px, 4vw, 56px);
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 24px;
}

.value-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.4;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.value-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

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

  .founder-grid {
    gap: 40px;
  }
}

/* ============ FUNDS PAGE ============ */
.funds-hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(28px, 3.5vw, 56px);
  background: var(--page-bg);
  border-bottom: 1px solid var(--line);
}

.funds-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 16px;
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
  will-change: transform;
}

/* Zoom-in on hover - locked in without color shift. Applies to the whole title h1. */
.funds-hero:hover .funds-h1,
.funds-hero:focus-within .funds-h1 {
  transform: scale(1.04);
  color: var(--ink) !important;
}

/* Also cover the case where reveal engine has applied its own transform */
.funds-hero:hover .funds-h1.is-visible {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {

  .funds-hero:hover .funds-h1,
  .funds-hero:focus-within .funds-h1 {
    transform: none;
  }
}

.funds-lede {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 28px;
}

.funds-filter {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  border: 1px solid var(--line);
  gap: 4px;
}

.ff-opt {
  background: none;
  border: 0;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.ff-opt:hover {
  color: var(--ink);
}

.ff-opt.is-active {
  background: var(--brand);
  color: #fff;
}

.funds-body {
  padding: clamp(20px, 3vw, 48px) 0 clamp(60px, 6vw, 96px);
}

.fund-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fund-card {
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.fund-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.fund-card[hidden] {
  display: none;
}

.fund-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.fund-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.fund-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.fund-tagline {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin: 0;
}

.fund-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--premium-soft);
  color: var(--premium);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.fund-badge-new {
  background: var(--pos-soft);
  color: var(--pos);
}

/* Risk-o-meter */
.risko {
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--page-bg);
  border: 1px solid var(--line);
}

.risko-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.risko-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.risko-value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.risko-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      #1a8c5e 0%,
      #7fd9ad 20%,
      #f0c33c 40%,
      #f08a3c 60%,
      #e05a3c 80%,
      #c0392b 100%);
  margin-bottom: 8px;
  overflow: visible;
}

.risko-fill {
  display: none;
}

.risko-marker {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 3px solid var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--ink) 39%, transparent);
}

.risko-track[data-level="1"] .risko-marker {
  left: 8%;
}

.risko-track[data-level="2"] .risko-marker {
  left: 25%;
}

.risko-track[data-level="3"] .risko-marker {
  left: 42%;
}

.risko-track[data-level="4"] .risko-marker {
  left: 58%;
}

.risko-track[data-level="5"] .risko-marker {
  left: 75%;
}

.risko-track[data-level="6"] .risko-marker {
  left: 92%;
}

.risko-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Fund meta rows */
.fund-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.fm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}

.fm-row:last-child,
.fm-row:nth-last-child(2) {
  border-bottom: 0;
}

.fm-row span {
  color: var(--muted);
}

.fm-row b {
  color: var(--ink);
  font-weight: 600;
}

.fund-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.cta.cta-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.funds-disc {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

  .fund-meta {
    grid-template-columns: 1fr;
  }

  .fm-row:nth-last-child(2) {
    border-bottom: 1px dashed var(--line);
  }
}

/* ============ LEARN PAGE ============ */
.learn-hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(32px, 4vw, 64px);
  background:
    radial-gradient(60% 55% at 15% 20%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 60%),
    radial-gradient(55% 50% at 90% 90%, color-mix(in srgb, var(--brand) 6%, transparent), transparent 60%),
    var(--page-bg);
  border-bottom: 1px solid var(--line);
}

.learn-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 16px;
}

.learn-lede {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 28px;
}

.learn-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learn-jump a {
  padding: 8px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.learn-jump a:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
}

.learn-block {
  padding: clamp(44px, 5.5vw, 88px) 0;
  scroll-margin-top: 96px;
}

.learn-block-alt {
  background:
    radial-gradient(70% 55% at 90% 100%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 60%),
    radial-gradient(60% 50% at 10% 0%, color-mix(in srgb, var(--brand-2) 8%, transparent), transparent 60%),
    var(--cream);
}

[data-theme="light"] .learn-block-alt {
  background:
    radial-gradient(70% 55% at 90% 100%, color-mix(in srgb, var(--sand) 55%, transparent), transparent 60%),
    radial-gradient(60% 50% at 10% 0%, color-mix(in srgb, var(--cream-2) 80%, transparent), transparent 60%),
    var(--cream);
}

.learn-head {
  max-width: 720px;
  margin: 0 0 36px;
}

.learn-head h2 {
  margin: 6px 0 10px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.learn-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.learn-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.learn-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--brand) 4%, var(--page-bg));
}

.lc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.lc-icon svg {
  width: 22px;
  height: 22px;
}

.lc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.learn-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.learn-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.lc-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
}

.lc-link:hover {
  color: var(--brand-2);
}

/* Glossary */
.glossary-search {
  position: relative;
  max-width: 520px;
  margin: 0 0 28px;
}

.glossary-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.glossary-search input {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.glossary-search input:focus {
  border-color: var(--brand);
  background: var(--page-bg);
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gloss-item {
  padding: 20px 20px;
  border-radius: 12px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  transition: border-color .2s ease;
}

.gloss-item:hover {
  border-color: var(--brand);
}

.gloss-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brand);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.gloss-item p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page-bg);
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item[open] {
  border-color: var(--brand);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}


.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.faq-item a {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 900px) {

  .learn-grid,
  .learn-grid-3 {
    grid-template-columns: 1fr;
  }

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

/* ============ CONTACT FORM ============ */
.contact-quick {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-quick li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
}

.contact-quick li:last-child {
  border-bottom: 0;
}

.contact-quick span:first-child {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  padding-top: 2px;
}

.contact-quick a {
  color: var(--brand);
  font-weight: 600;
}

.contact-quick a:hover {
  color: var(--brand-2);
}

.contact-form {
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--ink) 18.2%, transparent);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field>span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cf-field>span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 3%, var(--page-bg));
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.cf-field textarea {
  resize: vertical;
  min-height: 100px;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--brand);
  background: var(--page-bg);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 23.4%, transparent);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--muted);
}

.cf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.cf-consent input {
  margin-top: 3px;
  accent-color: var(--brand);
}

.cf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cf-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.cf-status.is-ok {
  color: #1a8c5e;
  font-weight: 600;
}

.cf-status.is-err {
  color: #c0392b;
  font-weight: 600;
}

@media (max-width: 780px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ============ INVESTOR PERSONAS ============ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(32px, 4vw, 56px);
}

.persona-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.persona-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: none;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.persona-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.4;
}

.persona-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.persona-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 720px) {
  .persona-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============ TEAM GRID ============ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 20px);
  margin-top: 8px;
}

.team-grid>.team-card {
  flex: 0 1 clamp(200px, 18vw, 260px);
  max-width: clamp(200px, 18vw, 260px);
}

/* 2-column layout for founders */
.team-grid-2>.team-card {
  flex: 0 0 260px;
  max-width: 260px;
}

/* Hide grid entirely when empty (e.g. directors placeholder) */
.team-grid:empty {
  display: none;
}


.team-card {
  position: relative;
  border-radius: 18px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.team-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--brand) 18.2%, transparent);
}

.tc-photo {
  position: relative;
  aspect-ratio: 22 / 26;
  width: 100%;
  background:
    radial-gradient(60% 60% at 50% 40%, color-mix(in srgb, var(--brand) 22%, var(--page-bg)) 0%, transparent 70%),
    linear-gradient(160deg, var(--brand-soft) 0%, color-mix(in srgb, var(--brand) 8%, var(--page-bg)) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.tc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--page-bg) 55%, transparent) 100%);
  pointer-events: none;
  z-index: 3;
}

.tc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tc-initials {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--brand) 70%, var(--ink));
  opacity: 0.85;
  z-index: 1;
}

.tc-photo:has(.tc-image) .tc-initials {
  display: none;
}

.tc-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: space-between;
}

.tc-name {
  flex: 1;
  min-width: 0;
}

.tc-badge {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.tc-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.team-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tc-role {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* Card is a button - strip default styling */
button.team-card {
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

/* Dark overlay + "Know more" affordance on hover */
.tc-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: linear-gradient(180deg,
      color-mix(in srgb, #000 30%, transparent) 0%,
      color-mix(in srgb, #000 70%, transparent) 100%);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.team-card:hover .tc-overlay,
.team-card:focus-visible .tc-overlay {
  opacity: 1;
}

.tc-know {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(6px);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.team-card:hover .tc-know,
.team-card:focus-visible .tc-know {
  transform: translateY(0);
}

.tc-know span {
  transition: transform .25s ease;
}

.team-card:hover .tc-know span {
  transform: translateX(3px);
}

/* ============ TEAM DIALOG ============ */
.tc-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tc-dialog[hidden] {
  display: none;
}

.tc-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 70%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease;
}

.tc-dialog.is-open .tc-dialog-backdrop {
  opacity: 1;
}

.tc-dialog-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.52);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s ease;
}

.tc-dialog.is-open .tc-dialog-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tc-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--page-bg);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.tc-dialog-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

.tc-dialog-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 36px 44px 36px 36px;
  align-items: start;
}

.tc-dialog-portrait {
  position: relative;
  aspect-ratio: 22 / 26;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-soft), color-mix(in srgb, var(--brand) 10%, var(--page-bg)));
  display: grid;
  place-items: center;
}

.tc-dialog-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-dialog-initials {
  font-family: var(--serif);
  font-size: 3rem;
  color: color-mix(in srgb, var(--brand) 75%, var(--ink));
  opacity: 0.85;
}

.tc-dialog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.tc-dialog-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.tc-dialog-role {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.tc-dialog-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.tc-dialog-bio {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 6px 0 0;
}

.tc-dialog-section {
  margin-top: 4px;
}

.tc-dialog-section h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.tc-dialog-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tc-dialog-section li {
  color: var(--ink-2);
  font-size: 0.92rem;
  padding-left: 18px;
  position: relative;
}

.tc-dialog-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.7;
}


.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
}

@media (max-width: 640px) {
  .tc-dialog-body {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .tc-dialog-portrait {
    max-width: 200px;
    justify-self: start;
  }

  .tc-dialog-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 780px) {
  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ LEARN TEASER (mosaic + animation) ============ */
.learn-teaser {
  position: relative;
  overflow: hidden;
}

.learn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.learn-orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -140px;
  left: -120px;
}

.learn-orb-b {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--brand-2) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
}

/* Light mode: warm sand orbs to match the golden alternation */
[data-theme="light"] .learn-orb-a {
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.55;
}

[data-theme="light"] .learn-orb-b {
  background: radial-gradient(circle, var(--cream-2) 0%, transparent 70%);
  opacity: 0.7;
}

@keyframes orbFloatA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 40px) scale(1.1);
  }
}

@keyframes orbFloatB {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -30px) scale(1.08);
  }
}

.learn-teaser>.container {
  position: relative;
  z-index: 1;
}

.learn-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

/* Feature card: two thumbnails fill upper area, two captions sit at the bottom */
.lm-card.lm-feature.lm-feature-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  column-gap: 18px;
  row-gap: 14px;
  padding: 24px;
}

.lm-videos-tag {
  display: none;
}

.lm-feature-videos .lm-sheen {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.lm-videos-quad {
  display: contents;
}

.lm-vq-thumb {
  align-self: stretch;
  min-height: 0;
}

.lm-vq-thumb .lm-thumb {
  height: 100%;
  aspect-ratio: auto;
}

.lm-vq-caption {
  align-self: end;
}

.lm-vq-thumb {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease;
  align-self: end;
}

.lm-vq-thumb:hover {
  transform: translateY(-2px);
}

.lm-vq-thumb .lm-thumb {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.lm-vq-thumb .lm-thumb-play {
  width: 44px;
  height: 44px;
}

.lm-vq-thumb .lm-thumb-play svg {
  width: 18px;
  height: 18px;
}

.lm-vq-thumb .lm-thumb-badge {
  font-size: 0.62rem;
  padding: 3px 7px;
  bottom: 8px;
  right: 8px;
}

.lm-vq-thumb .lm-thumb-badge svg {
  width: 11px;
  height: 11px;
}

.lm-vq-caption {
  align-self: start;
  padding: 4px 4px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .2s ease;
}

.lm-vq-caption:hover {
  color: var(--brand);
}

@media (max-width: 640px) {
  .lm-card.lm-feature.lm-feature-videos {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .lm-videos-quad .lm-vq-thumb:nth-child(1) {
    order: 1;
  }

  .lm-videos-quad .lm-vq-caption:nth-child(3) {
    order: 2;
  }

  .lm-videos-quad .lm-vq-thumb:nth-child(2) {
    order: 3;
  }

  .lm-videos-quad .lm-vq-caption:nth-child(4) {
    order: 4;
  }
}

.lm-video-caption {
  margin: 0;
  padding: 0 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lm-video-item:hover .lm-video-caption {
  color: var(--brand);
}

.lm-card {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}

.lm-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--brand) 23.4%, transparent);
}

.lm-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 30%,
      color-mix(in srgb, var(--brand) 22%, transparent) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
  z-index: 0;
}

.lm-card:hover .lm-sheen {
  transform: translateX(100%);
}

.lm-card>* {
  position: relative;
  z-index: 1;
}

.lm-feature {
  grid-row: span 2;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  gap: 28px;
  background: linear-gradient(135deg,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--brand) 6%, var(--page-bg)) 100%);
}

.lm-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  align-self: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.39);
}

.lm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}

.lm-card:hover .lm-thumb img {
  transform: scale(1.05);
}

.lm-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.lm-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.52);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s ease;
}

.lm-thumb-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.lm-card:hover .lm-thumb-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff0000;
}

.lm-thumb-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lm-thumb-badge svg {
  width: 14px;
  height: 14px;
}

.lm-feature .lm-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lm-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.lm-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.lm-feature h3 {
  font-size: 1.9rem;
  line-height: 1.15;
}

.lm-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.lm-cta {
  margin-top: auto;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s ease;
}

.lm-card:hover .lm-cta {
  gap: 14px;
}

.lm-cta svg {
  width: 16px;
  height: 16px;
}

.lm-visual {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.lm-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lm-ring {
  transform-origin: 100px 100px;
}

.lm-dot {
  transform-origin: 100px 100px;
}

.lm-video {
  position: relative;
}

.lm-play {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--brand) 39%, transparent);
  z-index: 2;
}

.lm-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 71.5%, transparent);
  }

  70% {
    box-shadow: 0 0 0 18px color-mix(in srgb, var(--brand) 0%, transparent);
  }

  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 0%, transparent);
  }
}

/* Marquee ticker */
.learn-marquee {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.lmq-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: lmqScroll 32s linear infinite;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.lmq-track span {
  flex-shrink: 0;
}

.lmq-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes lmqScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .learn-orb-a,
  .learn-orb-b,
  .lm-ring,
  .lm-dot,
  .lm-play,
  .lmq-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .learn-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lm-feature {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .lm-feature h3 {
    font-size: 1.5rem;
  }
}

/* ============ FAQ SECTION (editorial numbered list) ============ */
.faq-section {
  position: relative;
}

.faq-list {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--ink) 5.2%, transparent);
  transition: border-color .25s ease, box-shadow .3s ease, transform .25s ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 13%, transparent);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--brand) 18.2%, transparent);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-num {
  display: none;
}

.faq-q {
  flex: 1;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color .2s ease;
}

.faq-item[open] .faq-q {
  color: var(--brand);
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), background .25s ease, color .25s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}

.faq-a {
  padding: 0 26px 24px;
  animation: faqSlide .35s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.faq-a p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 720px;
}

@keyframes faqSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.98rem;
  color: var(--ink-2);
}

.faq-cta a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.faq-cta a:hover {
  color: var(--brand-2);
  border-bottom-color: var(--brand-2);
}

.faq-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 44px 0 0;
}

.faq-cta-lead {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-a {
    animation: none;
  }

  .faq-icon {
    transition: background .25s ease, color .25s ease;
  }
}

@media (max-width: 640px) {
  .faq-item summary {
    gap: 14px;
    padding: 18px 20px;
  }

  .faq-q {
    font-size: 1rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
  }

  .faq-a {
    padding: 0 20px 20px;
  }
}

/* ============ LEARN – ATLANTIC MAGAZINE BENTO ============ */
.learn-mag {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  margin: 32px auto 0;
  max-width: 1400px;
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
}

.lm2-hero-title {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem) !important;
}

.lm2-entry-thumb {
  width: clamp(120px, 15vw, 180px) !important;
}

/* HERO (left) - dominant editorial card */
.lm2-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.lm2-hero-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--ink) 15.6%, transparent);
}

.lm2-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.lm2-hero:hover .lm2-hero-image img {
  transform: scale(1.03);
}

.lm2-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.52);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s ease;
}

.lm2-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.lm2-hero:hover .lm2-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff0000;
}

.lm2-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Tiny caps eyebrow - the "kicker" */
.lm2-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.lm2-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  transition: color .2s ease;
}

.lm2-hero:hover .lm2-hero-title {
  color: var(--brand);
}

.lm2-dek {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

.lm2-byline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* RAIL (right) - stacked editorial entries divided by hairlines */
.lm2-rail-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lm2-rail-progress {
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  margin-bottom: 20px;
  overflow: hidden;
}

.lm2-rail-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: 999px;
  transition: width linear;
}

.lm2-rail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lm2-rail-exit-up {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.lm2-rail-exit-down {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.lm2-rail-enter-up {
  animation: lm2SlideUp 0.4s ease forwards;
}

.lm2-rail-enter-down {
  animation: lm2SlideDown 0.4s ease forwards;
}

@keyframes lm2SlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lm2SlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lm2-rail-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.lm2-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lm2-nav-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.lm2-nav-btn svg {
  width: 14px;
  height: 14px;
}

.lm2-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: padding .25s ease;
}

.lm2-entry:hover {
  padding-left: 6px;
}

.lm2-entry:first-child {
  border-top: none;
  padding-top: 0;
}

.lm2-entry:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

/* Small thumbnail for entries that have one */
.lm2-entry-thumb {
  position: relative;
  width: 140px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  flex-shrink: 0;
}

.lm2-entry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lm2-entry:hover .lm2-entry-thumb img {
  transform: scale(1.05);
}

.lm2-entry-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.455);
}

.lm2-entry-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.lm2-entry-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

/* Entries without a thumbnail span the full row */
.lm2-entry-copy-wide {
  grid-column: 1 / -1;
}

.lm2-entry-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: color .2s ease;
}

.lm2-entry:hover .lm2-entry-title {
  color: var(--brand);
}

.lm2-entry-dek {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 55ch;
}

/* "Browse all" quiet link */
.learn-mag-more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.learn-mag-more a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--brand);
  transition: gap .25s ease, border-color .25s ease;
}

.learn-mag-more a:hover {
  gap: 14px;
  border-bottom-color: var(--brand-2);
}

.learn-mag-more svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .learn-mag {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lm2-entry-thumb {
    width: 110px;
  }
}

@media (max-width: 520px) {
  .lm2-entry-thumb {
    width: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .lm2-hero-image img,
  .lm2-play,
  .lm2-entry-thumb img,
  .lm2-hero-title,
  .lm2-entry-title {
    transition: none !important;
    transform: none !important;
  }
}

/* Big video card spans all three rows on the left */
.lb-video {
  grid-row: 1 / -1;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--brand) 6%, var(--page-bg)) 100%);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}

.lb-video:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--brand) 23.4%, transparent);
}

.lb-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.lb-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}

.lb-video:hover .lb-video-thumb img {
  transform: scale(1.04);
}

.lb-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.lb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.52);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s ease;
}

.lb-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.lb-video:hover .lb-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff0000;
}

.lb-yt-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lb-yt-badge svg {
  width: 14px;
  height: 14px;
}

.lb-video-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lb-tag {
  display: inline-flex;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 15%, transparent);
}

.lb-tag-featured {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.lb-video-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: color .25s ease;
}

.lb-video:hover .lb-video-body h3 {
  color: var(--brand);
}

.lb-video-body p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.lb-cta {
  margin-top: auto;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s ease;
}

.lb-video:hover .lb-cta {
  gap: 14px;
}

.lb-cta svg {
  width: 16px;
  height: 16px;
}

/* Article rows on the right */
.lb-article {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--page-bg);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.lb-article:hover {
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--brand) 15.6%, transparent);
}

.lb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.lb-icon svg {
  width: 22px;
  height: 22px;
}

.lb-article:hover .lb-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05);
}

.lb-article-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lb-article-body .lb-tag {
  padding: 3px 8px;
  font-size: 0.62rem;
  margin-bottom: 2px;
}

.lb-article-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: color .25s ease;
}

.lb-article:hover .lb-article-body h3 {
  color: var(--brand);
}

.lb-article-body p {
  color: var(--ink-2);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.lb-arrow {
  color: var(--muted);
  transition: color .25s ease, transform .25s ease;
}

.lb-arrow svg {
  width: 20px;
  height: 20px;
}

.lb-article:hover .lb-arrow {
  color: var(--brand);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .learn-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .lb-video {
    grid-row: auto;
  }

  .lb-video-body h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 520px) {
  .lb-article {
    grid-template-columns: 40px 1fr 20px;
    gap: 14px;
    padding: 16px 18px;
  }

  .lb-icon {
    width: 40px;
    height: 40px;
  }

  .lb-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .lb-video,
  .lb-article,
  .lb-icon,
  .lb-play,
  .lb-arrow {
    transition: none !important;
    transform: none !important;
  }
}

/* ============ FUND SUMMARY CARDS (explore list) ============ */
.funds-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  margin: 32px 0 40px;
  align-items: stretch;
  justify-items: stretch;
}

@media (max-width: 720px) {
  .funds-cards {
    grid-template-columns: 1fr;
  }
}

.fund-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-areas:
    "head    metrics"
    "pillars metrics"
    "view    metrics";
  column-gap: clamp(20px, 2.4vw, 32px);
  row-gap: 16px;
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  width: 100%;
  box-shadow:
    0 10px 26px color-mix(in srgb, var(--ink) 10.4%, transparent),
    0 2px 6px color-mix(in srgb, var(--ink) 7.8%, transparent);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s ease;
  isolation: isolate;
  transform-origin: center;
  align-content: start;
}

.fund-summary-card .fc-head {
  grid-area: head;
}

.fund-summary-card .fc-pillars {
  grid-area: pillars;
}

.fund-summary-card .fc-metrics {
  grid-area: metrics;
  align-self: stretch;
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid var(--line);
  padding: 0 0 0 clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.fund-summary-card .fc-view-details {
  grid-area: view;
  align-self: end;
  justify-self: start;
  margin-top: 0;
  /* Override the flex-era `margin-top: auto` - irrelevant in grid */
}

/* Arrow badge was designed for a wide-format card. Hide it in the horizontal
   two-column layout - the metrics rail already signals "there's more here",
   and the arrow crowds the name in a narrow left column. */
.fund-summary-card:not(.is-coming-soon) .fc-arrow {
  display: none;
}

/* Cap name font-size in the tighter 2-per-row column so it doesn't overflow. */
.fund-summary-card .fc-name {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}

.fund-summary-card .fc-tag {
  margin-bottom: 8px;
}

/* On mobile, revert to vertical stack - horizontal doesn't fit narrow screens */
@media (max-width: 720px) {
  .fund-summary-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .fund-summary-card .fc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }
}

/* Coming-soon: single column, no metrics rail */
.fund-summary-card.is-coming-soon {
  grid-template-columns: 1fr;
  grid-template-areas:
    "badge"
    "head"
    "copy";
  row-gap: 14px;
}

.fund-summary-card.is-coming-soon .fc-soon-badge {
  grid-area: badge;
}

.fund-summary-card.is-coming-soon .fc-head {
  grid-area: head;
}

.fund-summary-card.is-coming-soon .fc-soon-copy {
  grid-area: copy;
}

.fund-summary-card:hover,
.fund-summary-card.is-visible:hover,
[data-reveal].fund-summary-card:hover,
[data-reveal].fund-summary-card.is-visible:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 24px 48px color-mix(in srgb, var(--ink) 23.4%, transparent),
    0 8px 18px color-mix(in srgb, var(--brand) 15.6%, transparent);
  z-index: 2;
}

.fund-summary-card.is-coming-soon,
.fund-summary-card.is-coming-soon:hover {
  cursor: default;
  transform: none !important;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-style: dashed;
  border-color: color-mix(in srgb, var(--line) 100%, transparent);
  box-shadow: none;
}

.fund-summary-card.is-coming-soon .fc-name,
.fund-summary-card.is-coming-soon .fc-tag,
.fund-summary-card.is-coming-soon .fc-suffix {
  color: var(--muted);
}

.fc-soon-badge {
  justify-self: start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
}

.fc-soon-copy {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 4px 0 0 0;
}

@media (prefers-reduced-motion: reduce) {

  .fund-summary-card:hover,
  [data-reveal].fund-summary-card:hover,
  [data-reveal].fund-summary-card.is-visible:hover {
    transform: none !important;
  }
}

.fc-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.fc-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 4px;
  transition: color .25s ease;
}

/* Name color change on hover removed. */

.fc-suffix {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.fc-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.fc-arrow svg {
  width: 18px;
  height: 18px;
}

.fund-summary-card:hover .fc-arrow {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(-45deg);
}

.fc-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fc-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--brand) 15%, transparent);
}

.fc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fc-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-metric-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fc-metric-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.fc-metric-value.is-positive {
  color: var(--pos);
}

.fc-metric-value.is-warn {
  color: var(--warn);
}

.fc-metric-value.is-negative {
  color: var(--neg);
}

.fc-view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: gap .25s ease;
}

.fc-view-details svg {
  width: 14px;
  height: 14px;
}

.fund-summary-card:hover .fc-view-details {
  gap: 14px;
}

/* Breadcrumb on detail page */
.fd-breadcrumb-section {
  padding: clamp(20px, 2vw, 32px) 0 0;
}

.fd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.fd-breadcrumb a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.fd-breadcrumb a:hover {
  color: var(--brand-2);
}

.fd-breadcrumb span:last-child {
  color: var(--ink);
  font-weight: 500;
}

/* ============ FUND DETAIL PAGE ============ */
.fd-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--ink) 7.8%, transparent);
  margin: 16px 0 32px;
}

.fd-summary+.fd-summary {
  margin-top: 48px;
}

.fd-summary-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.fd-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 10px 0 4px;
}

.fd-suffix {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.fd-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 320px;
}

.fd-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
}

.fd-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.fd-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fd-metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.fd-metric-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.fd-metric-value.is-positive {
  color: var(--pos);
}

.fd-metric-value.is-warn {
  color: var(--warn);
}

.fd-metric-value.is-negative {
  color: var(--neg);
}

.fd-metric-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.fd-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Luxury fund CTAs - pill-shaped, layered gradient, subtle shimmer */
.fd-actions .cta {
  position: relative;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--brand-2) 90%, var(--brand)) 0%,
      var(--brand) 45%,
      color-mix(in srgb, var(--brand) 88%, #000) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 10px 26px color-mix(in srgb, var(--brand) 41.6%, transparent),
    0 3px 8px color-mix(in srgb, var(--brand) 28.6%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(0, 0, 0, 0.195);
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s ease;
  isolation: isolate;
}

.fd-actions .cta::before {
  display: none !important;
}

.fd-actions .cta::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -30%;
  width: 40%;
  height: 300%;
  background: linear-gradient(115deg,
      transparent 30%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 70%);
  animation: ctaShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.fd-actions .cta>* {
  position: relative;
  z-index: 1;
}

.fd-actions .cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px color-mix(in srgb, var(--brand) 57.2%, transparent),
    0 6px 14px color-mix(in srgb, var(--brand) 39%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(0, 0, 0, 0.195);
}

.fd-actions .cta:active {
  transform: translateY(0);
}

/* Ghost variant - Invest Lumpsum: elegant outlined pill, gold accent */
.fd-actions .cta-ghost {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  box-shadow:
    0 4px 14px color-mix(in srgb, var(--brand) 18.2%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.fd-actions .cta-ghost::after {
  background: linear-gradient(115deg,
      transparent 30%,
      color-mix(in srgb, var(--brand) 15%, transparent) 50%,
      transparent 70%);
}

.fd-actions .cta-ghost:hover {
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  color: var(--brand);
  border-color: var(--brand);
  box-shadow:
    0 10px 24px color-mix(in srgb, var(--brand) 28.6%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* Light mode: ghost gets a subtle sand tint to feel warm */
[data-theme="light"] .fd-actions .cta-ghost {
  background: color-mix(in srgb, var(--sand) 20%, transparent);
}

[data-theme="light"] .fd-actions .cta-ghost:hover {
  background: color-mix(in srgb, var(--sand) 35%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .fd-actions .cta::after {
    animation: none;
    display: none;
  }

  .fd-actions .cta:hover {
    transform: none;
  }
}

/* Expandable sections */
.fd-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.fd-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 28px 30px 30px;
}

.fd-block-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.fd-content {
  padding: 0;
}

.fd-lead {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
}

.fd-note {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.fd-note-inline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 16px 0 0;
}

.fd-note-inline a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.fd-note-inline a:hover {
  border-bottom-color: var(--brand);
}

.fd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fd-two-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}

.fd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}

.fd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}

.fd-kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}

.fd-kv>div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fd-kv>div:nth-last-child(-n+2) {
  border-bottom: none;
}

.fd-kv>div:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.fd-kv>div:nth-child(even) {
  padding-left: 24px;
}

.fd-kv dt {
  color: var(--ink-2);
  font-size: 0.92rem;
  margin: 0;
}

.fd-kv dd {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  margin: 0;
  text-align: right;
}

.fd-docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.fd-doc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--page-bg);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.fd-doc:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
  transform: translateY(-2px);
}

.fd-doc svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand);
}

/* Responsive */
@media (max-width: 780px) {
  .fd-summary-head {
    grid-template-columns: 1fr;
  }

  .fd-pillars {
    justify-content: flex-start;
    max-width: none;
  }

  .fd-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fd-kv {
    grid-template-columns: 1fr;
  }

  .fd-kv>div:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .fd-kv>div:nth-child(even) {
    padding-left: 0;
  }

  .fd-kv>div:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .fd-kv>div:last-child {
    border-bottom: none;
  }

  .fd-block {
    padding: 22px 20px 24px;
  }

  .fd-block-title {
    font-size: 1.15rem;
  }
}

/* ============ LIGHT MODE: strip blue gradient backgrounds from key sections ============ */
[data-theme="light"] .section-manifesto {
  background:
    radial-gradient(70% 55% at 15% 20%, color-mix(in srgb, var(--sand) 40%, transparent), transparent 60%),
    radial-gradient(60% 50% at 90% 90%, color-mix(in srgb, var(--cream-2) 60%, transparent), transparent 60%),
    var(--cream);
}

[data-theme="light"] .about-hero {
  background: var(--page-bg);
}

[data-theme="light"] .learn-hero {
  background: var(--page-bg);
}


/* ============ Warm cream/gold gradient band behind hero titles ============ */
.title-gold-band {
  position: relative;
  isolation: isolate;
  padding: 2px 14px 2px 10px;
  display: block;
  width: fit-content;
}

.title-gold-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 4px;
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--sand) 55%, transparent) 0%,
      color-mix(in srgb, var(--cream-2) 68%, transparent) 55%,
      transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(.2, .7, .3, 1) .25s;
  opacity: 1;
}

.is-visible .title-gold-band::before,
.title-gold-band.is-visible::before {
  transform: scaleX(1);
}

/* Dark mode: warmer brand-tint highlight band */
:root .title-gold-band::before,
[data-theme="dark"] .title-gold-band::before {
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--brand) 30%, transparent) 0%,
      color-mix(in srgb, var(--brand-2) 20%, transparent) 55%,
      transparent 100%);
  opacity: 0.9;
}

[data-theme="light"] .title-gold-band::before {
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--sand) 65%, transparent) 0%,
      color-mix(in srgb, var(--cream-2) 80%, transparent) 55%,
      transparent 100%);
  opacity: 1;
}

/* Suppress the highlight band on already-colored (cream / gold / blue / dark) sections */
.section-cream .title-gold-band,
.section-blue .title-gold-band,
.section-manifesto .title-gold-band,
.about-block-gold .title-gold-band,
.people-section .title-gold-band,
.learn-block-alt .title-gold-band,
.learn-teaser .title-gold-band {
  padding: 0;
  width: auto;
}

.section-cream .title-gold-band::before,
.section-blue .title-gold-band::before,
.section-manifesto .title-gold-band::before,
.about-block-gold .title-gold-band::before,
.people-section .title-gold-band::before,
.learn-block-alt .title-gold-band::before,
.learn-teaser .title-gold-band::before {
  display: none !important;
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .title-gold-band::before {
    transform: scaleX(1);
    transition: none;
  }
}

/* ============ Plain-text link with arrow (underline-on-hover) ============ */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .25s ease, border-color .25s ease, color .2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 12px;
  color: var(--brand-2);
  border-bottom-color: currentColor;
}

.text-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.text-link:hover svg {
  transform: translateX(2px);
}

/* ============ SKELETON LOADING ============ */
.skel {
  position: relative;
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--ink) 8%, transparent) 0%,
      color-mix(in srgb, var(--ink) 14%, transparent) 50%,
      color-mix(in srgb, var(--ink) 8%, transparent) 100%);
  background-size: 200% 100%;
  animation: skelShine 1.6s ease-in-out infinite;
  border-radius: 6px;
  color: transparent !important;
  user-select: none;
  overflow: hidden;
}

[data-theme="light"] .skel {
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--ink) 6%, transparent) 0%,
      color-mix(in srgb, var(--ink) 14%, transparent) 50%,
      color-mix(in srgb, var(--ink) 6%, transparent) 100%);
  background-size: 200% 100%;
}

@keyframes skelShine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Skeleton for a fund summary card (matches the real card shape) */
.fund-skel {
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow:
    0 10px 26px color-mix(in srgb, var(--ink) 10.4%, transparent),
    0 2px 6px color-mix(in srgb, var(--ink) 7.8%, transparent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.fund-skel .fs-tag {
  height: 14px;
  width: 200px;
}

.fund-skel .fs-title {
  height: 32px;
  width: 70%;
}

.fund-skel .fs-suffix {
  height: 14px;
  width: 40%;
}

.fund-skel .fs-pills {
  display: flex;
  gap: 6px;
}

.fund-skel .fs-pill {
  height: 24px;
  width: 90px;
  border-radius: 999px;
}

.fund-skel .fs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fund-skel .fs-metric {
  height: 40px;
}

.fund-skel .fs-cta {
  height: 18px;
  width: 160px;
}

/* Skeleton for the Learn magazine hero card */
.learn-mag-skel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  margin: 32px auto 0;
  max-width: 1400px;
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line);
}

.learn-mag-skel .lms-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learn-mag-skel .lms-hero-image {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

.learn-mag-skel .lms-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.learn-mag-skel .lms-kicker {
  height: 12px;
  width: 140px;
}

.learn-mag-skel .lms-title {
  height: 40px;
  width: 80%;
}

.learn-mag-skel .lms-dek {
  height: 16px;
  width: 90%;
}

.learn-mag-skel .lms-dek-2 {
  height: 16px;
  width: 70%;
}

.learn-mag-skel .lms-byline {
  height: 12px;
  width: 180px;
}

.learn-mag-skel .lms-rail {
  display: flex;
  flex-direction: column;
}

.learn-mag-skel .lms-entry {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.learn-mag-skel .lms-entry:first-child {
  border-top: none;
  padding-top: 0;
}

.learn-mag-skel .lms-entry-thumb {
  width: 140px;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

.learn-mag-skel .lms-entry-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.learn-mag-skel .lms-entry-title {
  height: 20px;
  width: 85%;
}

.learn-mag-skel .lms-entry-meta {
  height: 12px;
  width: 60%;
}

@media (max-width: 900px) {
  .learn-mag-skel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .learn-mag-skel .lms-entry-thumb {
    width: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skel {
    animation: none;
  }
}

/* ============ YouTube video dialog ============ */
.yt-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.yt-dialog[hidden] {
  display: none;
}

.yt-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 78%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease;
}

.yt-dialog.is-open .yt-dialog-backdrop {
  opacity: 1;
}

.yt-dialog-panel {
  position: relative;
  width: min(1100px, 100%);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s ease;
}

.yt-dialog.is-open .yt-dialog-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.yt-dialog-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.2));
  background: var(--page-bg, #fff);
  color: var(--ink, #111);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.yt-dialog-close:hover {
  background: var(--brand, #c00);
  border-color: var(--brand, #c00);
  color: #fff;
  transform: rotate(90deg);
}

.yt-dialog-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.yt-dialog-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .yt-dialog {
    padding: 16px;
  }

  .yt-dialog-close {
    top: 8px;
    right: 8px;
  }
}

/* ============ Learn article dialog ============ */
.learn-card[data-article] {
  cursor: pointer;
}

.la-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.la-dialog[hidden] {
  display: none;
}

.la-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 70%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease;
}

.la-dialog.is-open .la-dialog-backdrop {
  opacity: 1;
}

.la-dialog-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--page-bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.52);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .25s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.la-dialog-panel::-webkit-scrollbar {
  width: 6px;
}

.la-dialog-panel::-webkit-scrollbar-track {
  background: transparent;
}

.la-dialog-panel::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 999px;
}

.la-dialog-panel::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.la-dialog-scroll {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.la-dialog-scroll::-webkit-scrollbar {
  width: 6px;
}

.la-dialog-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.la-dialog-scroll::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 999px;
}

.la-dialog-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.la-dialog.is-open .la-dialog-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.la-dialog-topbar {
  display: flex;
  justify-content: flex-end;
  padding: 14px 14px 0;
  flex-shrink: 0;
}

.la-dialog-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--page-bg);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.la-dialog-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

.la-dialog-body {
  padding: 40px 44px 40px 44px;
}

.la-dialog-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft, color-mix(in srgb, var(--brand) 10%, transparent));
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.la-dialog-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: var(--ink);
}

.la-dialog-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  margin: 0 0 24px 0;
}

.la-dialog-content h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 24px 0 8px 0;
  color: var(--ink);
}

.la-dialog-content p,
.la-dialog-content li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--ink) 85%, transparent);
}

.la-dialog-content p {
  margin: 0 0 12px 0;
}

.la-dialog-content ul,
.la-dialog-content ol {
  margin: 0 0 12px 0;
  padding-left: 20px;
}

.la-dialog-content li {
  margin-bottom: 6px;
}

.la-dialog-content .la-note {
  margin-top: 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, transparent);
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  border-radius: 6px;
}

@media (max-width: 640px) {
  .la-dialog {
    padding: 12px;
  }

  .la-dialog-body {
    padding: 28px 20px 28px 20px;
  }

  .la-dialog-close {
    top: 8px;
    right: 8px;
  }
}

/* ============ Header: liquid-glass pill + no hover animations ============ */

/* Nav links: subtle frosted pill on hover and current page.
   Overrides the sliding underline treatment defined earlier. */
.site-header .primary-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.site-header .primary-nav a::after {
  content: none;
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a[aria-current="page"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  border-color: color-mix(in srgb, var(--ink) 12%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 23.4%, transparent),
    0 4px 14px color-mix(in srgb, #000 28.6%, transparent);
}

.site-header .primary-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
}

[data-theme="light"] .site-header .primary-nav a:hover,
[data-theme="light"] .site-header .primary-nav a[aria-current="page"] {
  background: color-mix(in srgb, #fff 65%, transparent);
  border-color: color-mix(in srgb, var(--ink) 18%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1.0),
    0 6px 16px color-mix(in srgb, #000 28.6%, transparent),
    0 2px 6px color-mix(in srgb, #000 18.2%, transparent);
}

/* Theme toggle: same glass pill treatment, no scale/shadow bloom */
.theme-toggle {
  transition: none;
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  border-color: color-mix(in srgb, var(--ink) 18%, transparent);
  color: var(--brand);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 23.4%, transparent),
    0 4px 14px color-mix(in srgb, #000 28.6%, transparent);
}

[data-theme="light"] .theme-toggle:hover {
  background: color-mix(in srgb, #fff 70%, transparent);
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1.0),
    0 6px 16px color-mix(in srgb, #000 28.6%, transparent),
    0 2px 6px color-mix(in srgb, #000 18.2%, transparent);
}

/* Header CTA: keep the pill styling, drop all motion/animation */
.hdr-shell .cta-header,
.hdr-shell .cta-header .chdr-label,
.hdr-shell .cta-header .chdr-arrow {
  transition: none;
}

.hdr-shell .cta-header::after {
  content: none !important;
  animation: none !important;
  display: none !important;
}

.hdr-shell .cta.cta-header:hover {
  transform: none;
  box-shadow:
    0 6px 18px color-mix(in srgb, var(--brand) 44.2%, transparent),
    0 2px 6px color-mix(in srgb, var(--brand) 32.5%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(0, 0, 0, 0.195);
}

.hdr-shell .cta-header:hover .chdr-label,
.hdr-shell .cta-header:active .chdr-label {
  transform: none;
}

.hdr-shell .cta-header .chdr-arrow,
.hdr-shell .cta-header:hover .chdr-arrow {
  width: 22px;
  opacity: 1;
  transform: none;
}

/* ============ Cursor spotlight on cards ============ */
.learn-card,
.fund-card,
.team-card,
.persona-card,
.lm-card,
.lm2-entry,
.lm2-hero,
.tc-dialog-panel,
.la-dialog-panel {
  position: relative;
  isolation: isolate;
  --spot-alpha: 0;
}

.learn-card::before,
.fund-card::before,
.team-card::before,
.persona-card::before,
.lm-card::before,
.lm2-entry::before,
.lm2-hero::before,
.tc-dialog-panel::before,
.la-dialog-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  /* Dark mode: brand-blue glow - richer at the core, seamless bleed to edge.
     Reads as a soft blue spotlight on tinted glass, identity-consistent. */
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
      color-mix(in srgb, var(--brand-2) 24%, transparent) 0%,
      color-mix(in srgb, var(--brand) 12%, transparent) 30%,
      color-mix(in srgb, var(--brand) 4%, transparent) 55%,
      transparent 75%);
  opacity: var(--spot-alpha, 0);
  transition: opacity .28s ease;
  mix-blend-mode: plus-lighter;
}

/* Light mode: softer, warmer brand-blue spotlight (plus-lighter can wash white cards) */
[data-theme="light"] .learn-card::before,
[data-theme="light"] .fund-card::before,
[data-theme="light"] .team-card::before,
[data-theme="light"] .persona-card::before,
[data-theme="light"] .lm-card::before,
[data-theme="light"] .lm2-entry::before,
[data-theme="light"] .lm2-hero::before,
[data-theme="light"] .tc-dialog-panel::before,
[data-theme="light"] .la-dialog-panel::before {
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%),
      color-mix(in srgb, var(--brand) 12%, transparent) 0%,
      color-mix(in srgb, var(--brand) 4%, transparent) 40%,
      transparent 70%);
  mix-blend-mode: multiply;
}

/* Ensure card content sits above the spotlight overlay */
.learn-card>*,
.fund-card>*,
.team-card>*,
.persona-card>*,
.lm-card>*,
.lm2-entry>*,
.lm2-hero>*,
.tc-dialog-panel>*,
.la-dialog-panel>* {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {

  .learn-card::before,
  .fund-card::before,
  .team-card::before,
  .persona-card::before,
  .lm-card::before,
  .lm2-entry::before,
  .lm2-hero::before,
  .tc-dialog-panel::before,
  .la-dialog-panel::before {
    display: none;
  }
}

}

/* ==========================================================
   Fund detail - tabs + ISID-derived rich sections
   ========================================================== */

/* Sub-heads inside blocks */
.fd-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  margin: 26px 0 10px;
  font-weight: 600;
}

/* Style / process cards */
.fd-styles,
.fd-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 8px;
}

.fd-style,
.fd-step {
  padding: 16px 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ink) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}

.fd-style h4,
.fd-step h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.fd-style p,
.fd-step p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: 0.94rem;
  line-height: 1.55;
}

.fd-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fd-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Tables */
.fd-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  margin: 8px 0;
}

.fd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.fd-table th,
.fd-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  vertical-align: top;
}

.fd-table thead th {
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.fd-table tbody tr:last-child td {
  border-bottom: none;
}

.fd-table tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--ink) 2%, transparent);
}

/* Illustrations */
.fd-ill {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  background: color-mix(in srgb, var(--ink) 2%, transparent);
  margin-bottom: 14px;
}

.fd-ill h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.fd-ill-setup {
  margin: 0 0 10px;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
}

.fd-ill-scen {
  margin: 0 0 8px 20px;
  padding: 0;
}

.fd-ill-scen li {
  margin: 4px 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Scenario groups */
.fd-scen {
  margin-top: 18px;
}

.fd-scen h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

/* Collapsible risks */
.fd-risks {
  display: grid;
  gap: 8px;
}

.fd-risk {
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--ink) 2%, transparent);
}

.fd-risk>summary {
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}

.fd-risk>summary::-webkit-details-marker {
  display: none;
}

.fd-risk>summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.fd-risk[open]>summary::after {
  content: "–";
}

.fd-risk>p {
  margin: 0;
  padding: 0 16px 14px;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Entity/contact cards */
.fd-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.fd-card {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  background: color-mix(in srgb, var(--ink) 2%, transparent);
}

.fd-card h4 {
  margin: 0 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
}

.fd-card p {
  margin: 4px 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.fd-card a {
  color: var(--brand);
  text-decoration: none;
}

.fd-card a:hover {
  text-decoration: underline;
}

/* ========== FUND DETAIL: TIMELINE NAV ========== */
.fd-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-top: 24px;
}

.fd-nav-wrap {
  position: sticky;
  top: calc(clamp(76px, 9vw, 112px) + 16px);
  align-self: start;
  padding: 22px 18px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--page-bg) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 20px 44px color-mix(in srgb, var(--ink) 18.2%, transparent),
    0 1px 2px color-mix(in srgb, var(--ink) 13%, transparent),
    inset 0 1px 0 color-mix(in srgb, #fff 13%, transparent);
  overflow: hidden;
  animation: fdNavCardIn .6s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes fdNavCardIn {
  from {
    opacity: 0;
    transform: translateX(-18px) scale(.98);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

/* Stagger each nav item in after the card fades in */
.fd-nav-item {
  opacity: 0;
  animation: fdNavItemIn .45s cubic-bezier(.2, .7, .3, 1) forwards;
}

.fd-nav-item:nth-of-type(1) {
  animation-delay: .18s;
}

.fd-nav-item:nth-of-type(2) {
  animation-delay: .24s;
}

.fd-nav-item:nth-of-type(3) {
  animation-delay: .30s;
}

.fd-nav-item:nth-of-type(4) {
  animation-delay: .36s;
}

.fd-nav-item:nth-of-type(5) {
  animation-delay: .42s;
}

.fd-nav-item:nth-of-type(6) {
  animation-delay: .48s;
}

.fd-nav-item:nth-of-type(7) {
  animation-delay: .54s;
}

@keyframes fdNavItemIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Soft radial highlight for the liquid-glass feel */
.fd-nav-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 60% at 0% 0%, color-mix(in srgb, #fff 10%, transparent) 0%, transparent 60%),
    radial-gradient(120% 60% at 100% 100%, color-mix(in srgb, var(--brand) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.fd-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
  z-index: 1;
}

/* vertical spine */
.fd-nav-line {
  position: absolute;
  left: 17px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

/* brand-color progress overlay - height set via JS */
.fd-nav-progress {
  position: absolute;
  left: 17px;
  top: 34px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg,
      var(--brand) 0%,
      color-mix(in srgb, var(--brand) 55%, transparent) 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px color-mix(in srgb, var(--brand) 52%, transparent);
  transition: height .45s cubic-bezier(.2, .7, .3, 1);
  pointer-events: none;
  z-index: 1;
}

.fd-nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 16px 14px 16px 0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--ink-2);
  cursor: pointer;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.fd-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 2px solid color-mix(in srgb, var(--ink) 22%, transparent);
  justify-self: center;
  transition: background .25s ease, border-color .25s ease, box-shadow .3s ease, transform .25s ease, width .25s ease, height .25s ease;
  z-index: 2;
}

.fd-nav-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
  min-width: 0;
}

.fd-nav-idx {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--ink) 38%, transparent);
  transition: color .2s ease;
}

.fd-nav-label {
  font-size: 0.94rem;
  font-weight: 500;
  transition: color .2s ease, font-weight .2s ease;
}

.fd-nav-item:hover {
  background: color-mix(in srgb, var(--ink) 4%, transparent);
}

.fd-nav-item:hover .fd-nav-dot {
  border-color: color-mix(in srgb, var(--brand) 55%, transparent);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
}

.fd-nav-item:hover .fd-nav-label {
  color: var(--ink);
}

.fd-nav-item.is-active .fd-nav-dot {
  width: 14px;
  height: 14px;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--brand) 20.8%, transparent),
    0 4px 12px color-mix(in srgb, var(--brand) 45.5%, transparent);
}

.fd-nav-item.is-active .fd-nav-idx {
  color: var(--brand);
}

.fd-nav-item.is-active .fd-nav-label {
  color: var(--brand);
  font-weight: 600;
}

[data-theme="dark"] .fd-nav-item.is-active .fd-nav-label,
:root:not([data-theme="light"]) .fd-nav-item.is-active .fd-nav-label {
  color: #fff;
}

[data-theme="dark"] .fd-nav-item.is-active .fd-nav-idx,
:root:not([data-theme="light"]) .fd-nav-item.is-active .fd-nav-idx {
  color: color-mix(in srgb, var(--brand) 85%, #fff 15%);
}

/* Panels */
.fd-panels {
  min-width: 0;
  position: relative;
}

.fd-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity .32s cubic-bezier(.2, .7, .3, 1),
    transform .38s cubic-bezier(.2, .7, .3, 1),
    filter .32s cubic-bezier(.2, .7, .3, 1);
}

.fd-panel[hidden] {
  display: none;
}

/* Outro: fading + gently rising away */
.fd-panel.is-leaving {
  opacity: 0;
  transform: translateY(-10px) scale(.995);
  filter: blur(4px);
  pointer-events: none;
}

/* Intro start state (removed on next frame to transition in) */
.fd-panel.is-entering {
  opacity: 0;
  transform: translateY(14px) scale(.995);
  filter: blur(4px);
}

/* ========== ASSET ALLOCATION BARS ========== */
.fd-alloc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.fd-alloc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fd-alloc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.92rem;
}

.fd-alloc-label {
  color: var(--ink);
  font-weight: 500;
}

.fd-alloc-value {
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
}

.fd-alloc-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  overflow: hidden;
}

.fd-alloc-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--brand) 60%, transparent),
      var(--brand));
}

/* ========== EXIT LOAD STAGE CARDS ========== */
.fd-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.fd-stage {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
}

.fd-stage-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-stage-icon svg {
  width: 22px;
  height: 22px;
}

.fd-stage-when {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  font-weight: 600;
}

.fd-stage-pct {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2px 0 4px;
  line-height: 1;
}

.fd-stage-rule {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  line-height: 1.5;
  margin: 0;
}

/* ========== TER COST CARDS ========== */
.fd-ter-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.fd-ter-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--ink) 3%, transparent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fd-ter-card.is-featured {
  border-color: color-mix(in srgb, var(--brand) 40%, transparent);
  background: color-mix(in srgb, var(--brand) 6%, transparent);
}

.fd-ter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.fd-ter-plan {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.fd-ter-badge {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  font-weight: 600;
}

.fd-ter-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-ter-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.88rem;
  padding: 4px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--ink) 10%, transparent);
}

.fd-ter-row:last-child {
  border-bottom: none;
}

.fd-ter-k {
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.fd-ter-v {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.fd-ter-row.is-highlight {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  border-bottom: none;
}

.fd-ter-row.is-highlight .fd-ter-k {
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.fd-ter-row.is-highlight .fd-ter-v {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 500;
}

/* ========== AS-OF TIMESTAMP CHIP ========== */
.fd-asof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.fd-asof svg {
  width: 14px;
  height: 14px;
  opacity: .75;
}

/* ========== LEGEND CALLOUT (above scenario tables etc) ========== */
.fd-legend {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand) 6%, transparent);
  border-left: 3px solid var(--brand);
  margin: 8px 0 14px;
}

.fd-legend-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fd-legend p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  line-height: 1.5;
}

/* ========== SIGNATURE BLOCK ========== */
.fd-sign {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  max-width: 420px;
}

.fd-sign-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 15%, transparent);
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-sign-body {
  min-width: 0;
}

.fd-sign-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.fd-sign-title {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  margin-top: 2px;
}

.fd-sign-meta {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.fd-sign-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
  color: color-mix(in srgb, var(--ink) 35%, transparent);
}

/* ========== CUT-OFF TIME BADGE ========== */
.fd-time-tag {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 0.88em;
}

/* ========== ELIGIBILITY CHECK / CROSS ========== */
.fd-eligibility {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-eligibility li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.fd-mark {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.fd-mark.is-ok {
  color: #16a34a;
}

.fd-mark.is-no {
  color: #dc2626;
}

[data-theme="dark"] .fd-mark.is-ok,
:root:not([data-theme="light"]) .fd-mark.is-ok {
  color: #4ade80;
}

[data-theme="dark"] .fd-mark.is-no,
:root:not([data-theme="light"]) .fd-mark.is-no {
  color: #f87171;
}

/* ========== RESPONSIVE: collapse timeline to top on narrow ========== */
@media (max-width: 820px) {
  .fd-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .fd-nav-wrap {
    position: sticky;
    top: calc(clamp(76px, 9vw, 112px) + 8px);
    z-index: 20;
    background: linear-gradient(to bottom,
        color-mix(in srgb, var(--page-bg) 92%, transparent) 0%,
        color-mix(in srgb, var(--page-bg) 70%, transparent) 70%,
        transparent 100%);
    padding-bottom: 10px;
  }

  .fd-nav {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
    padding: 6px 2px;
  }

  .fd-nav::-webkit-scrollbar {
    display: none;
  }

  .fd-nav-line,
  .fd-nav-progress {
    display: none;
  }

  .fd-nav-item {
    grid-template-columns: auto;
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ink) 6%, transparent);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fd-nav-dot {
    display: none;
  }

  .fd-nav-idx {
    display: none;
  }

  .fd-nav-label {
    font-size: 0.85rem;
  }

  .fd-nav-item.is-active {
    background: color-mix(in srgb, var(--brand) 15%, transparent);
  }
}

/* ========== EXPLORE FUNDS: PREPARING-FOR-LAUNCH PLACEHOLDER ========== */
.fund-placeholder-card {
  position: relative;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 24px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.fund-placeholder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 100% 0%, color-mix(in srgb, var(--brand) 12%, transparent) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 100%, color-mix(in srgb, var(--brand) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.fpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fpc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 32.5%, transparent);
  animation: fpcPulse 1.8s ease-in-out infinite;
}

@keyframes fpcPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(.85);
  }
}

.fpc-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 720px;
}

.fpc-lede {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 620px;
}

.fpc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== PARTNER PAGE ========== */
.partner-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(24px, 3vw, 40px);
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--brand) 6%, var(--page-bg)) 0%,
      var(--page-bg) 100%);
  text-align: center;
}

.partner-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ink);
  margin: 12px auto 20px;
  max-width: 900px;
  line-height: 1.1;
  white-space: nowrap;
}

.partner-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.partner-services {
  padding: clamp(48px, 6vw, 96px) 0;
}

.partner-services-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.partner-services-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin: 0 0 14px;
}

.partner-services-head h2 em {
  color: var(--brand);
  font-style: italic;
}

.partner-services-head p {
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Partner service cards */
.partner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  width: 100%;
  min-height: 180px;
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.partner-card:hover {
  background: color-mix(in srgb, var(--brand) 7%, transparent);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  transform: translateY(-3px);
  box-shadow: 0 10px 32px color-mix(in srgb, var(--brand) 15.6%, transparent);
}

.partner-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.partner-card-icon svg {
  width: 22px;
  height: 22px;
}

.partner-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.partner-card-sub {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--ink) 50%, transparent);
  margin-top: 4px;
}

.partner-card {
  position: relative;
}

.partner-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 16px;
  color: color-mix(in srgb, var(--brand) 50%, transparent);
  transition: transform .22s ease, color .22s ease;
}

.partner-card:hover .partner-card-arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

@media (max-width: 860px) {
  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-cards {
    grid-template-columns: 1fr;
  }
}

/* Partner service dialog overlay */
.partner-dialog-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, #000 62%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  padding: 20px;
}

.partner-dialog-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.pd-modal {
  position: relative;
  background: var(--page-bg);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: 22px;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px);
  max-width: 960px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--brand) 30%, transparent) transparent;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--brand) 16%, rgba(0, 0, 0, 0.65));
  transform: translateY(16px) scale(.98);
  transition: transform .32s cubic-bezier(.2, .7, .3, 1);
}

.partner-dialog-overlay.is-open .pd-modal {
  transform: none;
}

.pd-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}

.pd-close:hover {
  background: color-mix(in srgb, var(--ink) 16%, transparent);
}

.pd-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}

.pd-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}

.pd-body p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  line-height: 1.65;
  margin: 0 0 16px;
}

.pd-body a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--brand) 50%, transparent);
}

.pd-body a:hover {
  border-bottom-color: var(--brand);
}

.pd-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0 24px;
}

@media (max-width: 560px) {
  .pd-docs-grid {
    grid-template-columns: 1fr;
  }
}

.pd-docs-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 10px;
}

.pd-docs-col ul {
  padding-left: 18px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
}

.pd-docs-col ul li {
  margin-bottom: 6px;
}

.pd-foot {
  font-size: 0.88rem;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--brand) 6%, transparent);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  margin: 4px 0 20px;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
}

.pd-btn-ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
}

.pd-btn-ghost:hover {
  background: color-mix(in srgb, var(--ink) 6%, transparent) !important;
}

/* Partner modal (shared shell for Offline Empanelment + Forms) */
.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.partner-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.partner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 65%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.partner-modal-panel {
  position: relative;
  background: var(--page-bg);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--line));
  border-radius: 20px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--brand) 30%, transparent) transparent;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  transform: translateY(16px) scale(.98);
  transition: transform .32s cubic-bezier(.2, .7, .3, 1);
}

.partner-modal.is-open .partner-modal-panel {
  transform: none;
}

.partner-modal-close {
  position: sticky;
  top: 14px;
  float: right;
  margin: 14px 14px 0 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease;
}

.partner-modal-close:hover {
  background: color-mix(in srgb, var(--ink) 20%, transparent);
}

.partner-modal-body {
  padding: 8px clamp(28px, 4vw, 56px) clamp(32px, 4vw, 56px);
  color: color-mix(in srgb, var(--ink) 80%, transparent);
  font-size: 0.95rem;
  line-height: 1.65;
}

.partner-modal-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}

.partner-modal-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.2;
}

.partner-modal-body p {
  margin: 0 0 14px;
}

.partner-modal-body a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--brand) 50%, transparent);
}

.partner-modal-body a:hover {
  border-bottom-color: var(--brand);
}

.pmb-sub {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 26px 0 10px;
}

.pmb-steps,
.pmb-list,
.pmb-forms {
  padding-left: 22px;
  margin: 0 0 18px;
}

.pmb-steps li,
.pmb-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.pmb-foot {
  padding: 14px 16px;
  background: color-mix(in srgb, var(--brand) 6%, transparent);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  margin: 20px 0 24px;
  font-size: 0.9rem;
}

.pmb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pmb-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.pmb-actions a:first-child {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.pmb-actions a:first-child:hover {
  background: color-mix(in srgb, var(--brand) 85%, #000);
  border-color: color-mix(in srgb, var(--brand) 85%, #000);
}

.pmb-actions a:not(:first-child) {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pmb-actions a:not(:first-child):hover {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
}

.pmb-forms {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.pmb-forms a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease;
}

.pmb-forms a:hover {
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
  color: var(--ink);
}

.pmb-forms svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Partner contact form */
.partner-contact {
  padding: clamp(48px, 6vw, 96px) 0;
  background: linear-gradient(180deg,
      var(--page-bg) 0%,
      color-mix(in srgb, var(--brand) 6%, var(--page-bg)) 100%);
}

.partner-contact-head {
  text-align: center;
  margin-bottom: 32px;
}

.partner-contact-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  margin: 0;
}

.partner-contact-head h2 em {
  color: var(--brand);
  font-style: italic;
}

.partner-contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.partner-contact-card h3 {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink);
  margin: 0 0 32px;
}

.partner-contact-card h3 em {
  color: var(--brand);
  font-style: italic;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-field span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.pf-field input,
.pf-field textarea {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--page-bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color .2s ease, background .2s ease;
}

.pf-field input:focus,
.pf-field textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--brand) 70%, transparent);
  background: var(--page-bg);
}

.pf-field input::placeholder,
.pf-field textarea::placeholder {
  color: var(--muted);
}

.pf-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.pf-status {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .pf-row {
    grid-template-columns: 1fr;
  }
}

/* ========== TWO-TIER SITE FOOTER (canonical, all pages) ========== */
.site-footer-two-tier {
  background: #0a1628;
  border-top: 1px solid color-mix(in srgb, #fff 8%, transparent);
  color: var(--ink-2);
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  padding: 0;
  overflow: visible;
}

.site-footer-two-tier .container {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.sft-upper {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding: 64px 0 0;
  align-items: start;
}

.sft-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.sft-brand-col .footer-brand {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sft-brand-col .brand-logo {
  height: 96px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.sft-brand-col .footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sft-brand-col .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background .2s ease, transform .2s ease;
}

.sft-brand-col .footer-social a:hover {
  background: color-mix(in srgb, var(--brand) 30%, transparent);
  transform: translateY(-2px);
}

.sft-brand-col .footer-social img {
  filter: brightness(0) invert(1);
  opacity: .85;
}

.sft-copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 8px 0 0;
  width: 100%;
}

.sft-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
  padding-top: 4px;
}

.sft-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.sft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sft-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s ease;
}

.sft-col a:hover {
  color: var(--brand);
}

.sft-lower {
  padding: 48px 0 0;
}

.sft-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(28px, 3vw, 52px);
  margin-top: 0;
  margin-bottom: 48px;
}

.sft-info-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}

.sft-info-col p {
  margin: 0 0 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.sft-info-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--brand) 40%, transparent);
  transition: color .2s ease, border-color .2s ease;
}

.sft-info-col a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.sft-info-col strong {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.sft-info-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 2px;
}

.sft-disclaimer {
  padding: 32px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.sft-disclaimer p {
  margin: 0 auto;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
}

.sft-disclaimer strong {
  color: var(--brand);
}

@media (max-width: 820px) {
  .sft-upper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sft-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-h1 {
    white-space: normal;
  }
}

/* ========== EXPLORE FUNDS: COMING-SOON OVERLAY ========== */
.funds-coming-soon-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, #000 60%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  padding: 20px;
}

.funds-coming-soon-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.funds-coming-soon-modal {
  position: relative;
  background: var(--page-bg);
  border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--line));
  border-radius: 22px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--brand) 18%, rgba(0, 0, 0, 0.65));
  transform: translateY(16px) scale(.98);
  transition: transform .32s cubic-bezier(.2, .7, .3, 1);
  text-align: center;
}

.funds-coming-soon-overlay.is-open .funds-coming-soon-modal {
  transform: translateY(0) scale(1);
}

.fcs-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color .2s ease;
}

.fcs-close:hover {
  color: var(--ink);
}

.fcs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 15%, transparent);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.funds-coming-soon-modal h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.25;
}

.funds-coming-soon-modal p {
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  line-height: 1.6;
  margin: 0 0 24px;
}

.fcs-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== ARTICLE-STYLE HERO IMAGE (learn-mag on home) ========== */
.lm2-hero-image-article {
  position: relative;
  overflow: hidden;
}

.lm2-hero-image-article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      color-mix(in srgb, var(--ink) 12%, transparent) 100%);
  pointer-events: none;
}

/* ========== FUNDS COMING SOON MODAL ========== */
.funds-coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.funds-coming-soon-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.funds-coming-soon-modal {
  position: relative;
  max-width: 480px;
  width: 90%;
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.455);
  transform: translateY(20px) scale(0.97);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}

.funds-coming-soon-overlay.is-visible .funds-coming-soon-modal {
  transform: translateY(0) scale(1);
}

.fcs-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}

.fcs-close:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.fcs-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  margin-bottom: 20px;
}

.funds-coming-soon-modal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

.funds-coming-soon-modal p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.fcs-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ======================================================
   PARTNER PAGE - NEW SECTIONS
   ====================================================== */


.partner-h1 {
  white-space: nowrap;
}

/* Why empanel section */
.partner-why {
  padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 8vw, 120px);
}

.partner-why-head {
  text-align: center;
  margin-bottom: 56px;
}

.partner-why-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

.partner-why-head p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 640px;
  margin: 16px auto 0;
}

.partner-why-head h2 em {
  font-style: italic;
  color: var(--brand-2);
}

.partner-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-why-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pwc-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--brand-2);
}

.pwc-icon svg {
  width: 100%;
  height: 100%;
}

.partner-why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

.partner-why-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

/* Empanel CTA row */
.partner-empanel-cta {
  padding: 0 0 clamp(64px, 8vw, 120px);
  text-align: center;
}

/* Quick Access */
.partner-quick-access {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--cream);
}

.pqa-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--ink);
  text-align: center;
  margin: 0 0 48px;
}

.pqa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.pqa-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pqa-card-icon {
  width: 48px;
  height: 48px;
  color: var(--brand-2);
  margin-bottom: 20px;
}

.pqa-card-icon svg {
  width: 100%;
  height: 100%;
}

.pqa-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}

.pqa-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 28px;
  flex: 1;
}

.pqa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.pqa-btn:hover {
  background: var(--brand);
  color: #fff;
}

/* Account Statement Form Section */
.partner-stmt-form {
  padding: 0 0 clamp(64px, 8vw, 100px);
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.partner-stmt-form[aria-hidden="true"] {
  display: none;
}

.psf-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}

.psf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.psf-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0;
}

.psf-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.psf-close:hover {
  color: var(--ink);
}

.psf-close svg {
  width: 20px;
  height: 20px;
}

.psf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.psf-field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.psf-field input,
.psf-field select {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.psf-field input::placeholder {
  color: var(--muted);
}

.psf-field input:focus,
.psf-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 14%, transparent);
}

.psf-intro {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 24px;
}

.psf-body > .psf-field {
  margin-bottom: 24px;
}

.psf-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.psf-toggle-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.psf-toggle-btns {
  display: flex;
  gap: 8px;
}

.psf-tab {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.psf-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.psf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.psf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.psf-status {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .partner-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pqa-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

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

  .psf-inner {
    padding: 28px 20px;
  }

  .psf-row {
    grid-template-columns: 1fr;
  }

  .psf-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
