:root {
  --bg: #f6f4ee;
  --bg-soft: #ece9df;
  --surface: #ffffff;
  --surface-soft: #f9f8f4;
  --ink: #102033;
  --ink-soft: #4a5667;
  --brand: #0f273e;
  --brand-2: #1e5b7a;
  --accent: #f08341;
  --accent-2: #ffb36f;
  --mint: #2ba4a5;
  --line: rgba(16, 32, 51, 0.12);
  --line-strong: rgba(16, 32, 51, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 12px 28px rgba(16, 32, 51, 0.08);
  --shadow-md: 0 26px 60px rgba(16, 32, 51, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 600px at 92% -10%, rgba(43, 164, 165, 0.12), transparent 60%),
    radial-gradient(1000px 520px at -10% 10%, rgba(240, 131, 65, 0.14), transparent 62%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  padding-top: 84px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.25;
}

p,
li,
label,
input,
select,
textarea,
small {
  color: var(--ink-soft);
}

a {
  color: var(--brand-2);
}

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

.wrapper {
  min-height: calc(100vh - 84px);
}

.content {
  display: flex;
  flex-direction: column;
}

.section > .container {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.display-kicker {
  align-items: center;
  color: var(--brand);
  display: inline-flex;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.11em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.display-kicker::before {
  background: linear-gradient(90deg, var(--accent), var(--mint));
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 34px;
}

.display-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(120deg, rgba(30, 91, 122, 0.25), rgba(240, 131, 65, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 0.8rem;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3.4rem);
  position: relative;
}

.page-hero::after {
  background: radial-gradient(circle at 20% 20%, rgba(43, 164, 165, 0.22), transparent 46%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.94fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 66ch;
}

.hero-copy .lead {
  color: #253244;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.65;
  margin-bottom: 0.15rem;
}

.hero-copy .brand-stat-grid {
  margin-top: 1.3rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-side {
  margin-left: auto;
  max-width: 430px;
  width: 100%;
}

.hero-visual {
  align-items: center;
  background: linear-gradient(145deg, #0f273e, #1b3e5f);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  display: grid;
  min-height: 280px;
  overflow: hidden;
  padding: 0.4rem;
}

.hero-visual img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

.hero-side .hero-visual {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.hero-side .hero-visual img {
  height: 100%;
  object-fit: cover;
}

.hero-cta-side {
  margin-top: 0.95rem;
}

.brand-stat-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.brand-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
}

.brand-stat-head {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.brand-stat-icon {
  border-radius: 12px;
  display: block;
  height: 30px;
  width: 30px;
}

.brand-stat b {
  color: var(--brand);
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.brand-stat span {
  color: #43576b;
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.16rem;
}

.panel,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: clamp(1rem, 2vw, 1.6rem);
}

.card {
  overflow: hidden;
}

.card-title {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.card-text {
  color: var(--ink-soft);
}

.track-grid,
.venture-grid,
.value-grid,
.insight-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.track-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venture-grid,
.value-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-grid {
  grid-template-columns: minmax(0, 1fr);
}

.track-card,
.venture-card,
.value-card,
.feature-card,
.insight-card,
.waitlist-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.track-card h3,
.venture-card h3,
.value-card h3,
.feature-card h3,
.waitlist-card h3 {
  margin-bottom: 0.2rem;
}

.track-card h3 {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}

.advisory-card-icon {
  border-radius: 14px;
  display: block;
  height: 64px;
  width: 64px;
}

.track-card-icon {
  border-radius: 14px;
  display: block;
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
}

.track-card ul,
.venture-card ul,
.value-card ul,
.feature-card ul {
  margin: 0;
  padding-left: 1rem;
}

.track-card li,
.venture-card li,
.value-card li,
.feature-card li {
  color: #415265;
  font-size: 0.96rem;
  margin-bottom: 0.35rem;
}

.card-media {
  background: linear-gradient(135deg, #0f273e, #1e5b7a);
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  background: rgba(16, 32, 51, 0.08);
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 999px;
  color: #314457;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.28rem 0.64rem;
  text-transform: uppercase;
}

.section-title-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.section-title-row p {
  margin-bottom: 0;
  max-width: 70ch;
}

.timeline-strip {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 1.3rem 0 1.1rem;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.56rem 0.52rem;
  text-align: center;
}

.framework-stage {
  margin-bottom: 1.2rem;
}

.framework-stage .quote {
  color: #27425c;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.framework-stage .stage-tag {
  background: rgba(240, 131, 65, 0.15);
  border: 1px solid rgba(240, 131, 65, 0.34);
  border-radius: 999px;
  color: #8b4b1f;
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.62rem;
  text-transform: uppercase;
}

.framework-stage .stage-columns {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
}

.framework-stage .stage-copy,
.framework-stage .stage-image {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.framework-stage .stage-image {
  align-items: center;
  display: flex;
}

.framework-stage .stage-image img {
  border-radius: 10px;
  width: 100%;
}

.framework-stage p:last-child {
  margin-bottom: 0;
}

.epilogue {
  background: linear-gradient(135deg, #0f273e, #173e5d);
  border-radius: var(--radius-lg);
  color: rgba(244, 247, 252, 0.9);
  margin-top: 1.6rem;
  padding: clamp(1.4rem, 3vw, 2.6rem);
}

.epilogue h2,
.epilogue h3,
.epilogue p,
.epilogue li,
.epilogue small,
.epilogue figcaption {
  color: inherit;
}

.epilogue figure {
  margin-bottom: 1rem;
}

.epilogue img {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 100%;
}

.insight-card {
  flex-direction: row;
  gap: 1rem;
}

.insight-thumb {
  border-radius: 10px;
  flex: 0 0 100px;
  height: 100px;
  object-fit: cover;
  width: 100px;
}

.insight-meta {
  color: #5f6e7f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-timeline {
  background: linear-gradient(135deg, #0f273e, #173e5d);
  border-radius: var(--radius-md);
  color: #eef3fb;
  padding: 1.3rem;
}

.about-timeline h4,
.about-timeline p,
.about-timeline li {
  color: inherit;
}

.timeline-item {
  border-left: 2px solid rgba(240, 131, 65, 0.8);
  margin-bottom: 1rem;
  padding-left: 0.9rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.waitlist-layout {
  align-items: flex-start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.form-label {
  color: #314457;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.form-control,
.form-select,
textarea,
select,
input[type="text"],
input[type="password"],
input[type="email"] {
  background: var(--surface-soft);
  border: 1px solid rgba(16, 32, 51, 0.2);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
  padding: 0.62rem 0.75rem;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
select:focus,
input:focus {
  border-color: rgba(43, 164, 165, 0.95);
  box-shadow: 0 0 0 0.22rem rgba(43, 164, 165, 0.18);
}

.btn {
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.64rem 1.18rem;
  position: relative;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn-primary,
.btn-brand {
  background: linear-gradient(135deg, #1a5f85 0%, #1e9c9f 55%, #f08a48 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 24px rgba(20, 79, 110, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #f8fbff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #206f98 0%, #22afb1 55%, #f59d63 100%);
  box-shadow: 0 14px 30px rgba(20, 79, 110, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-primary:active,
.btn-brand:active {
  transform: translateY(0);
}

.btn-outline-primary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 32, 51, 0.24);
  box-shadow: 0 6px 18px rgba(16, 32, 51, 0.08);
  color: #193147;
}

.btn-outline-primary:hover,
.btn-ghost:hover {
  background: linear-gradient(135deg, #1f6c94 0%, #1f8891 100%);
  border-color: rgba(31, 108, 148, 0.6);
  box-shadow: 0 10px 24px rgba(20, 79, 110, 0.24);
  color: #f8fbff;
  transform: translateY(-1px);
}

.btn-link {
  color: #225476;
}

.btn-link:hover {
  color: #153752;
}

.btn:focus-visible {
  box-shadow: 0 0 0 0.22rem rgba(43, 164, 165, 0.24);
  outline: none;
}

/* Override older .section a styles so CTA text color stays intentional */
.section a.btn,
.section a.btn:visited {
  text-decoration: none !important;
}

.section a.btn-primary,
.section a.btn-primary:visited,
.section a.btn-brand,
.section a.btn-brand:visited {
  color: #f8fbff !important;
}

.section a.btn-primary:hover,
.section a.btn-brand:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.section a.btn-outline-primary,
.section a.btn-outline-primary:visited,
.section a.btn-ghost,
.section a.btn-ghost:visited {
  color: #193147 !important;
}

.section a.btn-outline-primary:hover,
.section a.btn-ghost:hover {
  color: #f8fbff !important;
  text-decoration: none !important;
}

.navbar {
  backdrop-filter: blur(14px);
  background: rgba(9, 17, 26, 0.84) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.72rem 0;
}

.navbar-brand img {
  border-radius: 0 !important;
  height: 41px;
  width: auto;
}

.nav-link-with-icon {
  align-items: center;
  display: inline-flex;
  gap: 0.44rem;
}

.nav-link-icon {
  border-radius: 0 !important;
  display: block;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(245, 248, 254, 0.86);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.78rem;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding-inline: 0.95rem !important;
}

.navbar #loginOrWelcome .profile_link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Sora", sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.38rem 0.7rem;
  text-transform: uppercase;
}

.navbar #loginOrWelcome .profile_link:hover {
  color: #ffffff;
}

.dropdown-menu {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.main_heading {
  border: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-variant: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  padding: 0;
}

.country_badge,
.cpo_badge {
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.62rem;
}

.country_badge {
  background: rgba(43, 164, 165, 0.16);
  color: #0d5558;
}

.cpo_badge {
  background: rgba(240, 131, 65, 0.18);
  color: #8b4b1f;
}

.card_nohover:hover {
  transform: none;
}

.footer {
  background: linear-gradient(135deg, #09111a, #112538);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 248, 254, 0.86);
  margin-top: auto;
  padding: 1.1rem 0;
}

.footer a {
  color: rgba(245, 248, 254, 0.92);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

blockquote {
  border-left: 3px solid rgba(240, 131, 65, 0.85);
  color: #27425c;
  margin: 1rem 0;
  padding-left: 0.9rem;
}

img {
  border-radius: 10px;
}

.pagination .page-link {
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.2);
  color: var(--ink);
}

.pagination .page-item.active .page-link {
  background: var(--brand);
  border-color: var(--brand);
}

/* Ventures (The Farm) page polish while keeping original story copy */
.page-the_farm .farm-top-hero {
  margin-top: 0.8rem;
}

.page-the_farm .farm-top-hero .hero-visual {
  min-height: 320px;
}

.page-the_farm .farm-top-hero .hero-visual img {
  height: 100%;
  object-fit: cover;
}

.page-the_farm .farm-venture-grid {
  margin-bottom: 2.4rem !important;
}

.page-the_farm .farm-venture-grid .venture-card .btn {
  margin-top: auto;
}

.page-the_farm .farm-venture-grid .card-media {
  border-radius: 14px;
  min-height: 190px;
}

.page-the_farm .farm-subheading {
  align-items: center;
  display: flex;
  gap: 0.72rem;
  margin-bottom: 1.5rem;
}

.page-the_farm .farm-journey {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  max-width: 540px;
}

.page-the_farm .farm-journey-node {
  align-items: center;
  background: rgba(16, 32, 51, 0.06);
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 999px;
  color: #3a4d61;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  height: 1.9rem;
  justify-content: center;
  letter-spacing: 0.04em;
  min-width: 1.9rem;
  padding-inline: 0.22rem;
}

.page-the_farm .farm-journey-line {
  background: rgba(16, 32, 51, 0.16);
  border-radius: 999px;
  flex: 1 1 auto;
  height: 2px;
  min-width: 18px;
}

.page-the_farm .farm-journey-node.is-complete {
  background: rgba(43, 164, 165, 0.2);
  border-color: rgba(43, 164, 165, 0.45);
  color: #0d6264;
}

.page-the_farm .farm-journey-node.is-current {
  background: #f08341;
  border-color: #e06f2d;
  box-shadow: 0 6px 14px rgba(240, 131, 65, 0.3);
  color: #ffffff;
}

.page-the_farm .farm-journey-line.is-complete {
  background: linear-gradient(90deg, rgba(43, 164, 165, 0.95), rgba(30, 91, 122, 0.95));
}

.page-the_farm .farm-step-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 1.2rem;
}

.page-the_farm .farm-step-quote {
  margin-top: 0;
}

.page-the_farm .farm-subheading-story {
  color: #c07600;
}

.page-the_farm .farm-subheading-business {
  color: #061c27;
}

.page-the_farm .farm-subheading-incremental {
  color: #174d6b;
}

.page-the_farm .farm-subheading-icon {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

.page-the_farm #section1,
.page-the_farm #section2,
.page-the_farm #section3,
.page-the_farm #section4,
.page-the_farm #section5 {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 1.7rem auto 0 !important;
  max-width: 1240px;
  overflow: hidden;
  padding: 4rem 0 !important;
  position: relative;
}

.page-the_farm #section1,
.page-the_farm #section3,
.page-the_farm #section5 {
  background:
    linear-gradient(136deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(112deg, rgba(30, 91, 122, 0.24), rgba(43, 164, 165, 0.18), rgba(240, 131, 65, 0.12)) !important;
}

.page-the_farm #section2,
.page-the_farm #section4 {
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
    linear-gradient(115deg, rgba(240, 131, 65, 0.2), rgba(30, 91, 122, 0.2), rgba(43, 164, 165, 0.14)) !important;
}

.page-the_farm #section1::after,
.page-the_farm #section2::after,
.page-the_farm #section3::after,
.page-the_farm #section4::after,
.page-the_farm #section5::after {
  background:
    radial-gradient(860px 320px at 95% -8%, rgba(255, 255, 255, 0.34), transparent 62%),
    radial-gradient(640px 280px at -8% 104%, rgba(43, 164, 165, 0.16), transparent 64%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-the_farm #section1 > .container,
.page-the_farm #section2 > .container,
.page-the_farm #section3 > .container,
.page-the_farm #section4 > .container,
.page-the_farm #section5 > .container {
  position: relative;
  z-index: 1;
}

.page-the_farm #section6 {
  border-radius: var(--radius-lg);
  margin: 2rem auto 0 !important;
  max-width: 1240px;
  overflow: hidden;
}

.page-the_farm #section6 img {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.page-the_farm #section1 .container,
.page-the_farm #section2 .container,
.page-the_farm #section3 .container,
.page-the_farm #section4 .container,
.page-the_farm #section5 .container,
.page-the_farm #section6 .container {
  max-width: 1120px;
}

.page-the_farm #section1 img,
.page-the_farm #section2 img,
.page-the_farm #section3 img,
.page-the_farm #section4 img,
.page-the_farm #section5 img {
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 16px !important;
  box-shadow: var(--shadow-sm) !important;
}

.page-the_farm #section1 blockquote,
.page-the_farm #section2 blockquote,
.page-the_farm #section3 blockquote,
.page-the_farm #section4 blockquote,
.page-the_farm #section5 blockquote {
  border-left: 4px solid var(--accent) !important;
  color: #1f4058 !important;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
  font-style: normal !important;
  margin: 1.4rem 0 !important;
  padding-left: 1.1rem !important;
}

.page-the_farm #section1 > .container > .row.align-items-center.mb-5 > .col-md-8 > div:first-child,
.page-the_farm #section2 > .container > .row.align-items-center.mb-5 > .col-md-8 > div:first-child,
.page-the_farm #section3 > .container > .row.align-items-center.mb-5 > .col-md-8 > div:first-child,
.page-the_farm #section4 > .container > .row.align-items-center.mb-5 > .col-md-8 > div:first-child,
.page-the_farm #section5 > .container > .row.align-items-center.mb-5 > .col-md-8 > div:first-child,
.page-the_farm #section6 .row.mb-5 .col > div:first-child {
  background: rgba(240, 131, 65, 0.16) !important;
  border: 1px solid rgba(240, 131, 65, 0.35);
  color: #8b4b1f !important;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.04em;
}

@media (max-width: 1199.98px) {
  .timeline-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 76px;
  }

  .section > .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-grid,
  .track-grid,
  .venture-grid,
  .value-grid,
  .feature-grid,
  .waitlist-layout,
  .framework-stage .stage-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .navbar-collapse {
    background: rgba(9, 17, 26, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    margin-top: 0.85rem;
    padding: 0.65rem 0.55rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 0.82rem;
  }

  .insight-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-thumb {
    height: 160px;
    width: 100%;
  }

  .page-the_farm #section1,
  .page-the_farm #section2,
  .page-the_farm #section3,
  .page-the_farm #section4,
  .page-the_farm #section5 {
    margin-top: 1.2rem !important;
  }
}

@media (max-width: 767.98px) {
  .timeline-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-the_farm .farm-journey {
    gap: 0.25rem;
  }

  .page-the_farm .farm-subheading-icon {
    height: 30px;
    width: 30px;
  }

  .page-the_farm .farm-journey-node {
    font-size: 0.6rem;
    height: 1.65rem;
    min-width: 1.65rem;
  }

  .page-the_farm .farm-journey-line {
    min-width: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
