/* Arifund site theme — aligns with Oakstone mockup (May 2026) */

.theme-arifund-mockup {
  scroll-behavior: smooth;
}

.theme-arifund-mockup #spinner.show {
  display: none !important;
}

*,
.theme-arifund-mockup * {
  box-sizing: border-box;
}

.theme-arifund-mockup {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.theme-arifund-mockup img {
  max-width: 100%;
  display: block;
}

:root {
  --navy: #1a2b4a;
  --navy-mid: #2e4a7a;
  --navy-dark: #0f1e35;
  --navy-foot: #0c1724;
  --gold: #c9942a;
  --gold-light: rgba(201, 148, 42, 0.12);
  --gold-mid: rgba(201, 148, 42, 0.25);
  --white: #ffffff;
  --off-white: #f7f8fa;
  --border: #e2e6ed;
  --text: #1a2b4a;
  --text-muted: #5a6a82;
  --text-light: #8a9ab4;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

@keyframes arifund-hero-ring-outer {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.85;
  }
  45% {
    transform: translate3d(-14px, 14px, 0);
    opacity: 1;
  }
  72% {
    transform: translate3d(12px, -8px, 0);
    opacity: 0.75;
  }
}

@keyframes arifund-hero-ring-inner {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(14px, -14px, 0);
    opacity: 1;
  }
}

@keyframes arifund-gold-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes arifund-dot-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.88;
  }
}

@keyframes arifund-arrow-float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes arifund-logo-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes arifund-accent-glimmer {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
    filter: brightness(1);
  }
  50% {
    text-shadow: 0 0 32px rgba(201, 148, 42, 0.22);
    filter: brightness(1.06);
  }
}

.arifund-site-header .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.theme-arifund-mockup .arifund-site-footer .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-mock .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-mock .section-pad {
  padding: 72px 0;
}

.home-mock .section-pad-sm {
  padding: 48px 0;
}

.home-mock .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.home-mock .eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: arifund-dot-soft 3.2s ease-in-out infinite;
}

.home-mock .eyebrow span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.home-mock .section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.home-mock .section-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.theme-arifund-mockup .btn-primary:not(.bootstrap-legacy),
.home-mock .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  text-decoration: none;
}

.theme-arifund-mockup .btn-primary:not(.bootstrap-legacy):hover,
.home-mock .btn-primary:hover {
  background: #b07d1e;
  color: var(--white);
}

.home-mock .btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.home-mock .btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.home-mock .btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid var(--navy);
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.home-mock .btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* Top bar */
.theme-arifund-mockup .topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-arifund-mockup .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.theme-arifund-mockup .topbar span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.theme-arifund-mockup .topbar-inner a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  margin-left: 20px;
  text-decoration: none;
}

.theme-arifund-mockup .topbar-inner a:first-of-type {
  margin-left: 0;
}

.theme-arifund-mockup .topbar-inner a:hover {
  color: var(--gold);
}

/* Nav */
.theme-arifund-mockup nav.main-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.theme-arifund-mockup .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
  flex-wrap: wrap;
}

.theme-arifund-mockup .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.theme-arifund-mockup .nav-logo-mark {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: arifund-logo-drift 5.2s ease-in-out infinite;
}

.theme-arifund-mockup .nav-logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
}

.theme-arifund-mockup .nav-logo-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.theme-arifund-mockup .nav-logo-sub {
  color: var(--gold);
  font-size: 10px;
  display: block;
  letter-spacing: 0.3px;
  margin-top: 1px;
}

.theme-arifund-mockup .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-arifund-mockup .nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}

.theme-arifund-mockup .nav-links a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.theme-arifund-mockup .nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.theme-arifund-mockup .nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.theme-arifund-mockup .nav-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.theme-arifund-mockup .nav-contact-managed {
  text-decoration: none;
  transition: color 0.2s;
}

.theme-arifund-mockup .nav-contact-managed:hover {
  color: rgba(255, 255, 255, 0.85);
}

.theme-arifund-mockup .nav-cta {
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  text-decoration: none;
}

.theme-arifund-mockup .nav-cta:hover {
  background: #b07d1e;
  color: var(--white);
}

.theme-arifund-mockup .nav-burger {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-arifund-mockup .nav-burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.theme-arifund-mockup .nav-burger .ti {
  font-size: 22px;
}

.theme-arifund-mockup .nav-collapsible {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

/* Hero */
.home-mock #news-section {
  scroll-margin-top: 80px;
}

.home-mock .hero {
  background: var(--navy);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.home-mock .hero::before {
  content: "";
  position: absolute;
  right: 80px;
  top: 40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201, 148, 42, 0.12);
  pointer-events: none;
  animation: arifund-hero-ring-outer 18s ease-in-out infinite;
}

.home-mock .hero::after {
  content: "";
  position: absolute;
  right: 130px;
  top: 90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201, 148, 42, 0.08);
  pointer-events: none;
  animation: arifund-hero-ring-inner 14s ease-in-out infinite alternate;
}

.home-mock .hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.home-mock .hero h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.home-mock .hero h1 em {
  color: var(--gold);
  font-style: normal;
  animation: arifund-accent-glimmer 12s ease-in-out infinite;
}

.home-mock .hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.home-mock .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.home-mock .hero-meta {
  padding-top: 28px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home-mock .hero-meta-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-mock .hero-meta-value {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
}

.home-mock .hero-meta-value a.hero-oak-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.home-mock .hero-meta-value a.hero-oak-link:hover {
  color: var(--gold);
  border-bottom-color: rgba(201, 148, 42, 0.7);
}

.home-mock .hero-meta-value a.hero-oak-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
  color: rgba(255, 255, 255, 0.15);
}

/* Stats */
.home-mock .stats-strip {
  background:
    linear-gradient(
      120deg,
      var(--gold) 0%,
      #daa33b 37%,
      var(--gold) 65%,
      #d49932 85%,
      var(--gold) 100%
    );
  background-size: 260% 100%;
  animation: arifund-gold-flow 24s linear infinite;
}

.home-mock .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-mock .stat-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.home-mock .stat-item:last-child {
  border-right: none;
}

.home-mock .stat-num {
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  display: block;
}

.home-mock .stat-num-counter {
  font-variant-numeric: tabular-nums;
}

.home-mock .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  margin-top: 3px;
}

/* Ventures */
.home-mock .ventures-section {
  background: var(--white);
}

.home-mock .ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.home-mock .ventures-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-mock .venture-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.home-mock .venture-card::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 148, 42, 0.06);
}

.home-mock .venture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  color: inherit;
}

.home-mock .venture-card.featured {
  border: 1.5px solid var(--gold);
  background: var(--navy-mid);
}

.home-mock .venture-badge-new {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
}

.home-mock .venture-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 148, 42, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-mock .venture-icon i {
  color: var(--gold);
  font-size: 20px;
}

.home-mock .venture-name {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.home-mock .venture-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.home-mock .venture-tag {
  display: inline-block;
  background: rgba(201, 148, 42, 0.12);
  color: var(--gold);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
}

.home-mock .venture-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  transition: color 0.2s;
}

.home-mock .venture-card:hover .venture-link {
  color: var(--gold);
}

.home-mock .ventures-cta {
  text-align: center;
  margin-top: 32px;
}

/* Why */
.home-mock .why-section {
  background: var(--off-white);
}

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

.home-mock .why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  padding: 28px 24px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.home-mock .why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 148, 42, 0.45);
  box-shadow: 0 16px 36px rgba(26, 43, 74, 0.08);
}

.home-mock .why-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-mock .why-icon i {
  color: var(--gold);
  font-size: 22px;
}

.home-mock .why-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.home-mock .why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Structure */
.home-mock .structure-section {
  background: var(--navy);
}

.home-mock .structure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-mock .structure-text .eyebrow span {
  color: var(--gold);
}

.home-mock .structure-text h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
}

.home-mock .structure-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.home-mock .structure-diagram {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.home-mock .str-row {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.home-mock .str-box {
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  min-width: 140px;
}

.home-mock .str-box.gold {
  background: var(--gold-mid);
  border-color: var(--gold);
}

.home-mock .str-box-label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 500;
}

.home-mock .str-box-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

.home-mock .str-arrow {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  margin-bottom: 8px;
}

.home-mock .str-arrow .ti {
  display: inline-block;
  animation: arifund-arrow-float 2.4s ease-in-out infinite;
}

.home-mock .structure-diagram > .str-arrow ~ .str-arrow .ti {
  animation-delay: -1.1s;
}

.home-mock .str-row-multi {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-mock .str-box-sm {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
}

.home-mock a.str-box-sm {
  display: block;
}

.home-mock .str-box-sm-name {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

/* Manager */
.home-mock .manager-section {
  background: var(--navy-dark);
}

.home-mock .manager-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}

.home-mock .manager-badge {
  flex-shrink: 0;
  text-align: center;
}

.home-mock .manager-initials {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto 12px;
}

.home-mock .manager-badge-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.home-mock .manager-badge-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  margin-top: 3px;
}

.home-mock .manager-text h3 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 8px;
}

.home-mock .manager-text h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
}

.home-mock .manager-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 24px;
}

.home-mock .manager-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.home-mock .mgr-stat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.home-mock .mgr-stat-num {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.home-mock .mgr-stat-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  margin-top: 2px;
}

/* Audience */
.home-mock .invest-section {
  background: var(--white);
}

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

.home-mock .aud-card {
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  padding: 28px 24px;
  background: var(--white);
  transition:
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    box-shadow 0.35s ease;
}

.home-mock .aud-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(26, 43, 74, 0.1);
}

.home-mock .aud-icon {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}

.home-mock .aud-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.home-mock .aud-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.home-mock .aud-link {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.home-mock .aud-link:hover {
  text-decoration: underline;
}

.home-mock .aud-link i {
  font-size: 14px;
}

/* Pipeline */
.home-mock .pipeline-section {
  background: var(--off-white);
}

.home-mock .pipeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-mock .pipe-step {
  padding: 24px 18px;
  background: var(--white);
  border-right: 0.5px solid var(--border);
}

.home-mock .pipe-step:last-child {
  border-right: none;
}

.home-mock .pipe-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.home-mock .pipe-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.home-mock .pipe-step-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-mock .pipe-num-accent {
  background: var(--gold);
}

/* News */
.home-mock .news-section {
  background: var(--white);
}

.home-mock .news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.home-mock .news-card {
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.home-mock .news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 148, 42, 0.45);
  box-shadow: 0 14px 32px rgba(26, 43, 74, 0.1);
}

.home-mock .news-img {
  height: 140px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-mock .news-img--mid {
  background: var(--navy-mid);
}

.home-mock .news-img--gold {
  background: var(--gold);
}

.home-mock .news-img-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.home-mock .news-img--gold .news-img-label {
  color: rgba(255, 255, 255, 0.55);
}

.home-mock .news-body {
  padding: 20px;
}

.home-mock .news-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.home-mock .news-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.home-mock .news-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.home-mock .news-meta {
  font-size: 11px;
  color: var(--text-light);
}

/* CTA */
.home-mock .cta-banner {
  background: var(--navy-dark);
  padding: 72px 0;
  text-align: center;
}

.home-mock .cta-banner h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
}

.home-mock .cta-banner h2 em {
  color: var(--gold);
  font-style: normal;
}

.home-mock .cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 32px;
}

.home-mock .cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer mockup */
.theme-arifund-mockup .arifund-site-footer {
  background: var(--navy-foot);
}

.theme-arifund-mockup .arifund-site-footer .footer-main {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.theme-arifund-mockup .arifund-site-footer .footer-brand-name {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.theme-arifund-mockup .arifund-site-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}

.theme-arifund-mockup .arifund-site-footer .footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-arifund-mockup .arifund-site-footer .footer-logo-mark {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-arifund-mockup .arifund-site-footer .footer-logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 69px;
  object-fit: contain;
}

.theme-arifund-mockup .arifund-site-footer .footer-col h4 {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.theme-arifund-mockup .arifund-site-footer .footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin-bottom: 8px;
  transition: color 0.15s;
  text-decoration: none;
}

.theme-arifund-mockup .arifund-site-footer .footer-col a:hover {
  color: var(--white);
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom > p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  margin: 0;
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom .managed-by-inline {
  color: inherit;
  text-decoration: none;
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom .managed-by-inline:hover {
  color: rgba(255, 255, 255, 0.5);
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom a.soft {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.theme-arifund-mockup .arifund-site-footer .footer-bottom a.soft:hover {
  color: rgba(255, 255, 255, 0.45);
}

.theme-arifund-mockup .arifund-site-footer .footer-socials {
  display: flex;
  gap: 10px;
}

.theme-arifund-mockup .arifund-site-footer .social-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition:
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
}

.theme-arifund-mockup .arifund-site-footer .social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.theme-arifund-mockup .arifund-site-footer .social-btn i {
  font-size: 14px;
}

.theme-arifund-mockup .back-to-top {
  background-color: var(--gold) !important;
  border: none !important;
}

.theme-arifund-mockup .back-to-top:hover {
  background-color: #b07d1e !important;
}

/* ── Inner pages (developer brief) ───────────────────────── */
.inner-mock {
  background: var(--white);
}

.inner-hero-strip {
  background: var(--navy);
  padding: 48px 0 40px;
}

.inner-hero-strip h1 {
  color: var(--white);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  margin: 0;
}

.inner-hero-strip .inner-eyebrow span {
  color: var(--gold);
}

.inner-hero-strip .inner-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.inner-hero-strip .inner-eyebrow .eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: arifund-dot-soft 3.6s ease-in-out infinite;
  animation-delay: -0.9s;
}

.inner-hero-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
  margin: 14px 0 0;
}

.inner-content.section-pad-sm {
  padding-bottom: 48px;
}

.inner-prose {
  max-width: 720px;
}

.inner-prose p,
.inner-prose li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.inner-prose ul {
  margin: 12px 0 20px;
  padding-left: 1.25rem;
}

.inner-prose h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 36px 0 12px;
}

.inner-prose h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin: 26px 0 8px;
}

.inner-about-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 720px;
}

.inner-about-links a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.2s;
}

.inner-about-links a:hover {
  border-color: var(--gold);
}

.inner-about-links strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.inner-about-links span {
  font-size: 13px;
  color: var(--text-muted);
}

.inner-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.inner-mock .leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}

.inner-mock .leadership-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
  transition:
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    box-shadow 0.35s ease;
}

.inner-mock .leadership-card:hover {
  border-color: rgba(201, 148, 42, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 43, 74, 0.11);
}

.inner-mock .leadership-card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.inner-mock .leadership-card__media--gold {
  background: linear-gradient(145deg, #8a5a10 0%, var(--gold) 55%, #e0b458 100%);
}

.inner-mock .leadership-card__media--navy {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #2a4a7a 100%);
}

.inner-mock .leadership-card__media--mid {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.inner-mock .leadership-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 30, 53, 0.35) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.inner-mock .leadership-card__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 0;
}

.inner-mock .leadership-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
}

.inner-mock .leadership-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.04) 28px,
      rgba(255, 255, 255, 0.04) 29px
    );
  pointer-events: none;
}

.inner-mock .leadership-card__initials {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  backdrop-filter: blur(4px);
}

.inner-mock .leadership-card__photo-hint {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.inner-mock .leadership-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  border-left: 0.5px solid var(--border);
  min-width: 0;
}

.inner-mock .leadership-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.inner-mock .leadership-card__role {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 14px;
  padding-bottom: 14px;
  line-height: 1.5;
  border-bottom: 0.5px solid var(--border);
}

.inner-mock .leadership-card__bio {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.inner-mock .leadership-advisers {
  margin-top: 16px;
}

.inner-aud-card {
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  padding: 24px;
  transition:
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    box-shadow 0.35s ease;
}

.inner-aud-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(26, 43, 74, 0.09);
}

.inner-aud-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
}

.inner-aud-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.inner-aud-card a {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
}

.inner-aud-card--linked {
  text-decoration: none;
  color: inherit;
  display: block;
}

.inner-aud-card--linked:hover h3 {
  color: var(--gold);
}

.inner-aud-card__cta {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.str-box-sm--jit-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.str-box-sm--jit-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.str-box-sm--jit-link:hover .str-box-sm-name {
  color: var(--gold);
}

.vert-section {
  padding: 72px 0;
  background: var(--off-white);
}

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

.vert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.35, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.vert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 148, 42, 0.45);
  box-shadow: 0 16px 36px rgba(26, 43, 74, 0.08);
}

.vert-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin: 10px 0 8px;
}

.vert-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.vert-card span {
  font-size: 12px;
  color: var(--gold);
}

.vert-card span a {
  color: var(--gold);
  text-decoration: none;
}

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

.vert-card p a {
  color: var(--gold);
  font-weight: 500;
}

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

/* Venture template */
.inner-venture-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.inner-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-capital-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 8px;
  margin: 20px 0 24px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.about-capital-flow__node {
  color: var(--navy-mid);
}

.about-capital-flow__hint {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
}

.about-capital-flow__sep {
  color: var(--gold);
  font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
  .about-capital-flow > .about-capital-flow__sep:nth-child(2) {
    animation: arifundFlowPulse 2.8s ease-in-out infinite;
    animation-delay: 0s;
  }

  .about-capital-flow > .about-capital-flow__sep:nth-child(4) {
    animation: arifundFlowPulse 2.8s ease-in-out infinite;
    animation-delay: 0.25s;
  }

  .about-capital-flow > .about-capital-flow__sep:nth-child(6) {
    animation: arifundFlowPulse 2.8s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  .about-capital-flow > .about-capital-flow__sep:nth-child(8) {
    animation: arifundFlowPulse 2.8s ease-in-out infinite;
    animation-delay: 0.75s;
  }
}

@keyframes arifundFlowPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateX(0);
  }
  45% {
    opacity: 1;
    transform: translateX(2px);
  }
}

.inner-prose .inner-note {
  margin-top: -4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-light);
  font-style: italic;
}

.inner-facts {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--off-white);
}

.inner-facts h3 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.inner-facts dl {
  margin: 0;
}

.inner-facts dt {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
}

.inner-facts dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.inner-facts dt:first-of-type {
  margin-top: 0;
}

.inner-prose .hospitality-ext-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.inner-prose .hospitality-ext-link:hover {
  text-decoration: underline;
}

.form-mock label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-mock .req {
  color: var(--gold);
}

.form-mock input,
.form-mock select,
.form-mock textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.form-mock .form-actions {
  margin-top: 8px;
}

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

.form-flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.form-flash--ok {
  background: rgba(46, 74, 122, 0.08);
  border: 1px solid var(--navy-mid);
  color: var(--navy);
}

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

  .inner-grid-cards {
    grid-template-columns: 1fr;
  }

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

  .inner-two-col {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .theme-arifund-mockup .nav-burger {
    display: flex;
  }

  .theme-arifund-mockup .nav-collapsible {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 0 8px;
  }

  .theme-arifund-mockup .nav-collapsible.is-open {
    display: flex;
  }

  .theme-arifund-mockup .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .theme-arifund-mockup .nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
  }

  .theme-arifund-mockup .nav-cta {
    text-align: center;
    display: block;
  }

  .arifund-site-header .container,
  .home-mock .container {
    padding: 0 20px;
  }

  .home-mock .hero h1 {
    font-size: 32px;
  }

  .home-mock .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-mock .ventures-grid,
  .home-mock .ventures-grid-bottom {
    grid-template-columns: 1fr;
  }

  .home-mock .why-grid,
  .home-mock .audience-grid {
    grid-template-columns: 1fr;
  }

  .home-mock .structure-inner,
  .home-mock .manager-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }

  .home-mock .pipeline-steps {
    grid-template-columns: 1fr 1fr;
  }

  .home-mock .news-grid {
    grid-template-columns: 1fr;
  }

  .theme-arifund-mockup .arifund-site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .home-mock .hero::before,
  .home-mock .hero::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-mock .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-mock .pipeline-steps {
    grid-template-columns: 1fr;
  }

  .theme-arifund-mockup .arifund-site-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .home-mock .hero h1 {
    font-size: 26px;
  }

  .home-mock .stat-item {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-arifund-mockup {
    scroll-behavior: auto;
  }

  .theme-arifund-mockup .nav-logo-mark,
  .home-mock .eyebrow-dot,
  .inner-hero-strip .inner-eyebrow .eyebrow-dot {
    animation: none !important;
  }

  .home-mock .hero h1 em {
    animation: none !important;
    filter: none !important;
    text-shadow: none !important;
  }

  .home-mock .hero::before,
  .home-mock .hero::after {
    animation: none !important;
  }

  .home-mock .stats-strip {
    animation: none !important;
    background: var(--gold);
  }

  .home-mock .str-arrow .ti {
    animation: none !important;
  }

  .home-mock .venture-card,
  .home-mock .why-card,
  .home-mock .aud-card,
  .home-mock .news-card,
  .inner-aud-card,
  .vert-card {
    transition-duration: 0.01ms !important;
    transition-property: opacity;
  }

  .home-mock .venture-card:hover,
  .home-mock .why-card:hover,
  .home-mock .aud-card:hover,
  .home-mock .news-card:hover,
  .inner-aud-card:hover,
  .inner-mock .leadership-card:hover,
  .vert-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 720px) {
  .inner-mock .leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .inner-mock .leadership-card {
    grid-template-columns: 1fr;
  }

  .inner-mock .leadership-card__body {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

  .inner-mock .leadership-card__media {
    min-height: 200px;
    max-height: 220px;
  }

  .inner-mock .leadership-card__img {
    min-height: 200px;
    max-height: 220px;
  }
}
