<style>
/* ============================================================
   RECURRENT ADVISORS — HOMEPAGE REFRESH
   TRUE FULL-BLEED VERSION FOR SPACECRAFT
   ============================================================ */

#recurrent-home {
  --navy: #102f4a;
  --navy-deep: #0a2236;
  --navy-soft: #173c5b;
  --ink: #18242f;
  --muted: #69747d;
  --soft: #f4f5f4;
  --soft-blue: #eef3f6;
  --line: #d9dfe3;
  --white: #ffffff;

  position: relative;

  /* Break out of SpaceCraft's page-width container */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

#recurrent-home *,
#recurrent-home *::before,
#recurrent-home *::after {
  box-sizing: border-box;
}

#recurrent-home a {
  color: inherit;
  text-decoration: none;
}

#recurrent-home p,
#recurrent-home h1,
#recurrent-home h2,
#recurrent-home h3,
#recurrent-home h4 {
  margin-top: 0;
}

#recurrent-home .rh-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(40px, 5vw, 96px);
  padding-right: clamp(40px, 5vw, 96px);
}

#recurrent-home .rh-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

#recurrent-home .rh-kicker-light {
  color: rgba(255,255,255,.58);
}

#recurrent-home .rh-arrow {
  display: inline-block;
  margin-left: 7px;
  transition: transform .2s ease;
}

#recurrent-home a:hover .rh-arrow {
  transform: translateX(4px);
}


/* ============================================================
   HERO
   ============================================================ */

#recurrent-home .rh-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(10,34,54,.99) 0%,
      rgba(16,47,74,.98) 55%,
      rgba(16,47,74,.91) 100%
    );
  color: var(--white);
}

#recurrent-home .rh-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -14vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(255,255,255,.018),
    0 0 0 18vw rgba(255,255,255,.012);
  pointer-events: none;
}

#recurrent-home .rh-hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 90px;
  max-width: 1100px;
}

#recurrent-home .rh-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 31px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.63);
}

#recurrent-home .rh-hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.4);
}

#recurrent-home .rh-hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 7.2vw, 108px);
  line-height: .94;
  letter-spacing: -.05em;
  font-weight: 400;
}

#recurrent-home .rh-hero-dek {
  max-width: 790px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.76);
}

#recurrent-home .rh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#recurrent-home .rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.34);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

#recurrent-home .rh-btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

#recurrent-home .rh-btn-primary:hover {
  background: #eef2f4;
}

#recurrent-home .rh-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.62);
}


/* ============================================================
   PROOF BAR
   ============================================================ */

#recurrent-home .rh-proof {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

#recurrent-home .rh-proof-grid {
  display: grid;
  grid-template-columns: .8fr 1.35fr 1.35fr;
}

#recurrent-home .rh-proof-item {
  min-height: 124px;
  padding: 31px 40px 28px 0;
  border-right: 1px solid var(--line);
}

#recurrent-home .rh-proof-item + .rh-proof-item {
  padding-left: 40px;
}

#recurrent-home .rh-proof-item:last-child {
  border-right: 0;
}

#recurrent-home .rh-proof-value {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  color: var(--navy);
}

#recurrent-home .rh-proof-label {
  max-width: 500px;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================================
   INTRO
   ============================================================ */

#recurrent-home .rh-intro {
  padding: 118px 0 124px;
}

#recurrent-home .rh-intro-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(70px, 8vw, 150px);
  align-items: start;
}

#recurrent-home .rh-intro h2 {
  max-width: 850px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.037em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-intro-copy {
  max-width: 880px;
}

#recurrent-home .rh-intro-copy > p {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #40505d;
}

#recurrent-home .rh-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ============================================================
   INVESTMENT FOCUS AREAS
   ============================================================ */

#recurrent-home .rh-strategies {
  padding: 108px 0 118px;
  background: var(--soft);
}

#recurrent-home .rh-section-head {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(70px, 8vw, 150px);
  margin-bottom: 56px;
  align-items: end;
}

#recurrent-home .rh-section-head h2 {
  margin-bottom: 21px;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.037em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-section-head-copy {
  max-width: 730px;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.67;
  color: var(--muted);
}

#recurrent-home .rh-strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cdd5da;
}

#recurrent-home .rh-strategy-card {
  position: relative;
  min-height: 420px;
  padding: 50px 58px 48px 0;
  border-bottom: 1px solid #cdd5da;
}

#recurrent-home .rh-strategy-card + .rh-strategy-card {
  padding-left: 58px;
  border-left: 1px solid #cdd5da;
}

#recurrent-home .rh-card-index {
  margin-bottom: 72px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  color: #909aa2;
}

#recurrent-home .rh-strategy-card h3 {
  max-width: 580px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -.032em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-strategy-card p {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.65;
  color: #586773;
}

#recurrent-home .rh-strategy-link {
  position: absolute;
  bottom: 46px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}


/* ============================================================
   INVESTMENT VEHICLES
   ============================================================ */

#recurrent-home .rh-vehicles {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

#recurrent-home .rh-vehicle-grid {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr 1fr;
  align-items: stretch;
}

#recurrent-home .rh-vehicle-intro,
#recurrent-home .rh-vehicle {
  padding-top: 35px;
  padding-bottom: 35px;
}

#recurrent-home .rh-vehicle-intro {
  padding-right: 42px;
}

#recurrent-home .rh-vehicle {
  padding-left: 42px;
  padding-right: 42px;
  border-left: 1px solid var(--line);
}

#recurrent-home .rh-vehicle:last-child {
  padding-right: 0;
}

#recurrent-home .rh-vehicle-intro .rh-kicker {
  margin-bottom: 0;
}

#recurrent-home .rh-vehicle h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-vehicle p {
  max-width: 360px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}


/* ============================================================
   RESEARCH
   ============================================================ */

#recurrent-home .rh-research {
  padding: 118px 0 124px;
  background: var(--white);
}

#recurrent-home .rh-research-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 7vw, 130px);
  align-items: end;
  margin-bottom: 56px;
}

#recurrent-home .rh-research-head h2 {
  margin-bottom: 0;
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.043em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-research-intro {
  max-width: 620px;
  justify-self: end;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.68;
  color: var(--muted);
}

#recurrent-home .rh-feature {
  position: relative;
  display: grid;
  grid-template-columns: .42fr .58fr;
  min-height: 500px;
  margin-bottom: 20px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

#recurrent-home .rh-feature-art {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(145deg, #0a2236 0%, #173d5b 100%);
  overflow: hidden;
}

#recurrent-home .rh-feature-art::before,
#recurrent-home .rh-feature-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
}

#recurrent-home .rh-feature-art::before {
  width: 470px;
  height: 470px;
  left: -120px;
  bottom: -225px;
  box-shadow:
    0 0 0 65px rgba(255,255,255,.025),
    0 0 0 130px rgba(255,255,255,.018);
}

#recurrent-home .rh-feature-art::after {
  width: 250px;
  height: 250px;
  right: -70px;
  top: -70px;
}

#recurrent-home .rh-feature-art-label {
  position: absolute;
  left: 42px;
  top: 42px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

#recurrent-home .rh-feature-year {
  position: absolute;
  left: 42px;
  bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 8vw, 125px);
  line-height: .85;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.12);
}

#recurrent-home .rh-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px clamp(48px, 5vw, 90px);
}

#recurrent-home .rh-feature-copy .rh-kicker {
  color: rgba(255,255,255,.56);
}

#recurrent-home .rh-feature-copy h3 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.01;
  letter-spacing: -.037em;
  font-weight: 400;
}

#recurrent-home .rh-feature-copy p {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

#recurrent-home .rh-feature-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--white);
}

#recurrent-home .rh-research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#recurrent-home .rh-research-card {
  position: relative;
  min-height: 350px;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

#recurrent-home .rh-research-card:hover {
  transform: translateY(-3px);
  border-color: #bcc7ce;
  box-shadow: 0 15px 36px rgba(16,47,74,.07);
}

#recurrent-home .rh-research-card h3 {
  max-width: 650px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 2.9vw, 42px);
  line-height: 1.07;
  letter-spacing: -.027em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-research-card p {
  max-width: 640px;
  margin-bottom: 52px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

#recurrent-home .rh-research-card .rh-feature-link {
  position: absolute;
  left: 44px;
  bottom: 39px;
  color: var(--navy);
}

#recurrent-home .rh-research-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 37px;
}

#recurrent-home .rh-research-footer p {
  max-width: 700px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}


/* ============================================================
   HOW WE THINK
   ============================================================ */

#recurrent-home .rh-framework {
  padding: 114px 0 118px;
  background: var(--navy-deep);
  color: var(--white);
}

#recurrent-home .rh-framework-head {
  max-width: 930px;
  margin-bottom: 70px;
}

#recurrent-home .rh-framework-head h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 4.8vw, 69px);
  line-height: 1.01;
  letter-spacing: -.037em;
  font-weight: 400;
}

#recurrent-home .rh-framework-head p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
}

#recurrent-home .rh-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.17);
}

#recurrent-home .rh-framework-card {
  min-height: 270px;
  padding: 35px 42px 25px 0;
  border-right: 1px solid rgba(255,255,255,.17);
}

#recurrent-home .rh-framework-card + .rh-framework-card {
  padding-left: 42px;
}

#recurrent-home .rh-framework-card:last-child {
  border-right: 0;
}

#recurrent-home .rh-framework-num {
  margin-bottom: 48px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}

#recurrent-home .rh-framework-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 400;
}

#recurrent-home .rh-framework-card p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
}


/* ============================================================
   FIRM
   ============================================================ */

#recurrent-home .rh-firm {
  padding: 118px 0;
  background: var(--soft-blue);
}

#recurrent-home .rh-firm-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(70px, 8vw, 150px);
  align-items: start;
}

#recurrent-home .rh-firm h2 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.037em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-firm-copy {
  max-width: 820px;
}

#recurrent-home .rh-firm-copy > p {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.68;
  color: #4f606c;
}

#recurrent-home .rh-firm-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cbd5db;
}

#recurrent-home .rh-firm-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid #cbd5db;
  font-size: 13px;
  line-height: 1.5;
}

#recurrent-home .rh-firm-list strong {
  color: var(--navy);
}

#recurrent-home .rh-firm-list span {
  color: var(--muted);
}


/* ============================================================
   CLOSING CTA
   ============================================================ */

#recurrent-home .rh-close {
  padding: 112px 0 116px;
  background: var(--white);
  text-align: center;
}

#recurrent-home .rh-close-inner {
  max-width: 900px;
  margin: 0 auto;
}

#recurrent-home .rh-close h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.01;
  letter-spacing: -.042em;
  font-weight: 400;
  color: var(--navy);
}

#recurrent-home .rh-close p {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

#recurrent-home .rh-close-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

#recurrent-home .rh-close .rh-btn {
  border-color: var(--navy);
}

#recurrent-home .rh-close .rh-btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

#recurrent-home .rh-close .rh-btn-primary:hover {
  background: var(--navy-deep);
}

#recurrent-home .rh-close .rh-btn-secondary {
  color: var(--navy);
}

#recurrent-home .rh-close .rh-btn-secondary:hover {
  background: var(--soft);
}


/* ============================================================
   REVEAL
   ============================================================ */

#recurrent-home .rh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .6s ease,
    transform .6s ease;
}

#recurrent-home .rh-reveal.rh-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 980px) {

  #recurrent-home .rh-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  #recurrent-home .rh-hero {
    min-height: 610px;
  }

  #recurrent-home .rh-hero-inner {
    padding: 80px 0 74px;
  }

  #recurrent-home .rh-intro-grid,
  #recurrent-home .rh-section-head,
  #recurrent-home .rh-research-head,
  #recurrent-home .rh-firm-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #recurrent-home .rh-section-head {
    margin-bottom: 42px;
  }

  #recurrent-home .rh-research-intro {
    justify-self: start;
  }

  #recurrent-home .rh-proof-grid {
    grid-template-columns: .75fr 1.25fr 1.25fr;
  }

  #recurrent-home .rh-proof-item,
  #recurrent-home .rh-proof-item + .rh-proof-item {
    padding-left: 25px;
    padding-right: 25px;
  }

  #recurrent-home .rh-proof-item:first-child {
    padding-left: 0;
  }

  #recurrent-home .rh-vehicle-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  #recurrent-home .rh-vehicle-intro {
    grid-column: 1 / -1;
    padding: 28px 0 18px;
    border-bottom: 1px solid var(--line);
  }

  #recurrent-home .rh-vehicle {
    padding: 30px 28px;
  }

  #recurrent-home .rh-vehicle:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  #recurrent-home .rh-feature {
    grid-template-columns: .36fr .64fr;
  }

  #recurrent-home .rh-feature-copy {
    padding: 50px 42px;
  }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

  #recurrent-home {
    width: 100vw;
    max-width: 100vw;
  }

  #recurrent-home .rh-shell {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  #recurrent-home .rh-kicker {
    margin-bottom: 14px;
    font-size: 9.5px;
  }

  #recurrent-home .rh-hero {
    min-height: auto;
  }

  #recurrent-home .rh-hero::after {
    width: 110vw;
    height: 110vw;
    right: -58vw;
    top: -35vw;
  }

  #recurrent-home .rh-hero-inner {
    padding: 74px 0 68px;
  }

  #recurrent-home .rh-hero-eyebrow {
    margin-bottom: 24px;
    font-size: 9.5px;
  }

  #recurrent-home .rh-hero-eyebrow::before {
    width: 29px;
  }

  #recurrent-home .rh-hero h1 {
    margin-bottom: 23px;
    font-size: clamp(47px, 15vw, 68px);
    line-height: .97;
  }

  #recurrent-home .rh-hero-dek {
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.55;
  }

  #recurrent-home .rh-hero-actions,
  #recurrent-home .rh-close-actions {
    flex-direction: column;
  }

  #recurrent-home .rh-btn {
    width: 100%;
  }

  #recurrent-home .rh-proof-grid {
    grid-template-columns: 1fr;
  }

  #recurrent-home .rh-proof-item,
  #recurrent-home .rh-proof-item + .rh-proof-item,
  #recurrent-home .rh-proof-item:first-child {
    min-height: auto;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  #recurrent-home .rh-proof-item:last-child {
    border-bottom: 0;
  }

  #recurrent-home .rh-proof-value {
    font-size: 27px;
  }

  #recurrent-home .rh-intro,
  #recurrent-home .rh-strategies,
  #recurrent-home .rh-research,
  #recurrent-home .rh-framework,
  #recurrent-home .rh-firm,
  #recurrent-home .rh-close {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  #recurrent-home .rh-intro-grid,
  #recurrent-home .rh-section-head,
  #recurrent-home .rh-firm-grid {
    gap: 24px;
  }

  #recurrent-home .rh-intro h2,
  #recurrent-home .rh-section-head h2,
  #recurrent-home .rh-framework-head h2,
  #recurrent-home .rh-firm h2,
  #recurrent-home .rh-close h2 {
    font-size: 40px;
  }

  #recurrent-home .rh-intro-copy > p,
  #recurrent-home .rh-section-head-copy,
  #recurrent-home .rh-research-intro,
  #recurrent-home .rh-firm-copy > p,
  #recurrent-home .rh-close p {
    font-size: 16px;
  }

  #recurrent-home .rh-strategy-grid {
    grid-template-columns: 1fr;
  }

  #recurrent-home .rh-strategy-card,
  #recurrent-home .rh-strategy-card + .rh-strategy-card {
    min-height: 335px;
    padding: 34px 0 38px;
    border-left: 0;
  }

  #recurrent-home .rh-card-index {
    margin-bottom: 42px;
  }

  #recurrent-home .rh-strategy-card h3 {
    font-size: 34px;
  }

  #recurrent-home .rh-strategy-link {
    bottom: 36px;
  }

  #recurrent-home .rh-vehicle-grid {
    grid-template-columns: 1fr;
  }

  #recurrent-home .rh-vehicle-intro {
    grid-column: auto;
    padding: 27px 0 17px;
  }

  #recurrent-home .rh-vehicle,
  #recurrent-home .rh-vehicle:nth-child(2) {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  #recurrent-home .rh-vehicle:last-child {
    border-bottom: 0;
  }

  #recurrent-home .rh-research-head {
    gap: 23px;
    margin-bottom: 36px;
  }

  #recurrent-home .rh-research-head h2 {
    font-size: 47px;
  }

  #recurrent-home .rh-feature {
    display: block;
  }

  #recurrent-home .rh-feature-art {
    min-height: 215px;
  }

  #recurrent-home .rh-feature-art-label {
    left: 25px;
    top: 25px;
  }

  #recurrent-home .rh-feature-year {
    left: 25px;
    bottom: 23px;
    font-size: 72px;
  }

  #recurrent-home .rh-feature-copy {
    padding: 36px 26px 42px;
  }

  #recurrent-home .rh-feature-copy h3 {
    font-size: 38px;
  }

  #recurrent-home .rh-feature-copy p {
    font-size: 15px;
  }

  #recurrent-home .rh-research-grid {
    grid-template-columns: 1fr;
  }

  #recurrent-home .rh-research-card {
    min-height: 305px;
    padding: 31px 27px;
  }

  #recurrent-home .rh-research-card h3 {
    font-size: 31px;
  }

  #recurrent-home .rh-research-card .rh-feature-link {
    left: 27px;
    bottom: 30px;
  }

  #recurrent-home .rh-research-footer {
    display: block;
  }

  #recurrent-home .rh-research-footer .rh-text-link {
    margin-top: 21px;
  }

  #recurrent-home .rh-framework-head {
    margin-bottom: 42px;
  }

  #recurrent-home .rh-framework-grid {
    grid-template-columns: 1fr;
  }

  #recurrent-home .rh-framework-card,
  #recurrent-home .rh-framework-card + .rh-framework-card {
    min-height: auto;
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.17);
  }

  #recurrent-home .rh-framework-card:last-child {
    border-bottom: 0;
  }

  #recurrent-home .rh-framework-num {
    margin-bottom: 28px;
  }

  #recurrent-home .rh-firm-list li {
    display: block;
  }

  #recurrent-home .rh-firm-list strong,
  #recurrent-home .rh-firm-list span {
    display: block;
  }

  #recurrent-home .rh-firm-list strong {
    margin-bottom: 5px;
  }
}


@media (prefers-reduced-motion: reduce) {

  #recurrent-home .rh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #recurrent-home .rh-arrow,
  #recurrent-home .rh-research-card {
    transition: none;
  }
}
</style>