@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800;9..144,900&family=DM+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paddock: #142B1A;
  --deep-earth: #0D1F12;
  --parchment: #F4EFE4;
  --parchment-warm: #EBE4D5;
  --white: #FFFFFF;
  --cream-text: #F0EBE0;
  --sage-muted: #8BAF91;
  --straw-label: #C68B24;
  --earth-text: #1C2618;
  --olive-muted: #4A5940;
  --straw: #C68B24;
  --straw-hover: #A8720F;
  --straw-deep: #8B5C0F;
  --fence: #2A4032;
  --wire: #D4CCB8;

  --section-py: clamp(4rem, 8vw, 7rem);
  --container: 1200px;
  --card-gap: 1.5rem;
  --form-gap: 1.25rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--earth-text);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}

.ovm-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.ovm-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ovm-section--dark .ovm-eyebrow,
.ovm-hero .ovm-eyebrow { color: var(--straw-label); }
.ovm-section--light .ovm-eyebrow,
.ovm-section--parchment .ovm-eyebrow { color: var(--straw-deep); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ovm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 220ms ease-out, color 220ms ease-out, border-color 220ms ease-out, transform 220ms ease-out;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.ovm-btn:hover { transform: translateY(-2px); }

.ovm-btn--primary {
  background: var(--straw);
  color: var(--deep-earth);
  border-color: var(--straw);
  font-size: 1.125rem;
  font-weight: 700;
}
.ovm-btn--primary:hover { background: var(--straw-hover); border-color: var(--straw-hover); }

.ovm-btn--ghost-dark {
  background: transparent;
  color: var(--cream-text);
  border-color: var(--cream-text);
}
.ovm-btn--ghost-dark:hover { background: var(--fence); }

.ovm-btn--ghost-light {
  background: transparent;
  color: var(--earth-text);
  border-color: var(--wire);
}
.ovm-btn--ghost-light:hover { background: var(--parchment-warm); }

.ovm-btn--outline-light {
  background: transparent;
  color: var(--earth-text);
  border-color: var(--earth-text);
  border-width: 1.5px;
}
.ovm-btn--outline-light:hover { background: var(--parchment-warm); }

.ovm-btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}


.ovm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paddock);
  border-bottom: 1px solid var(--fence);
  transition: box-shadow 220ms ease-out;
}
.ovm-nav--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.ovm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.ovm-nav__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.ovm-nav__logo img { height: 34px; width: auto; }

.ovm-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.ovm-nav__links a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--cream-text);
  text-decoration: none;
  border-radius: 4px;
  transition: color 180ms ease-out, background 180ms ease-out;
}
.ovm-nav__links a:hover { color: #fff; background: var(--fence); }

.ovm-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ovm-nav__login {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--sage-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 180ms ease-out;
}
.ovm-nav__login:hover { color: var(--cream-text); }

.ovm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.ovm-hamburger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream-text);
  border-radius: 2px;
  transition: transform 220ms ease-out, opacity 180ms ease-out;
}
.ovm-hamburger[aria-expanded="true"] .ovm-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ovm-hamburger[aria-expanded="true"] .ovm-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.ovm-hamburger[aria-expanded="true"] .ovm-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ovm-nav__mobile {
  display: none;
  background: var(--paddock);
  border-top: 1px solid var(--fence);
  padding: 1rem 0 1.5rem;
}
.ovm-nav__mobile.ovm-nav__mobile--open { display: block; }
.ovm-nav__mobile-links {
  list-style: none;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.ovm-nav__mobile-links li + li { margin-top: 0.25rem; }
.ovm-nav__mobile-links a {
  display: block;
  padding: 0.6rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream-text);
  text-decoration: none;
  border-bottom: 1px solid var(--fence);
}
.ovm-nav__mobile-cta {
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main { padding-top: 68px; }

.ovm-page--dark-top main { padding-top: 0; }
.ovm-page--dark-top .ovm-nav { background: var(--paddock); }


.ovm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--paddock);
  overflow: hidden;
}
.ovm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ovm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ovm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,31,18,0.82) 0%,
    rgba(20,43,26,0.72) 45%,
    rgba(20,43,26,0.45) 100%
  );
}
.ovm-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 7rem);
}
.ovm-hero__inner {
  max-width: 700px;
}
.ovm-hero__h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream-text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.ovm-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: #d8d1c5;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  max-width: 580px;
}
.ovm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}


.ovm-section--dark {
  background: var(--paddock);
  padding-block: var(--section-py);
}
.ovm-section--dark-deep {
  background: var(--deep-earth);
  padding-block: var(--section-py);
}
.ovm-section--light {
  background: var(--parchment);
  padding-block: var(--section-py);
}
.ovm-section--parchment-warm {
  background: var(--parchment-warm);
  padding-block: var(--section-py);
}
.ovm-section--white {
  background: var(--white);
  padding-block: var(--section-py);
}

.ovm-section__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}
.ovm-section--dark .ovm-section__headline,
.ovm-section--dark-deep .ovm-section__headline { color: var(--cream-text); }
.ovm-section--light .ovm-section__headline,
.ovm-section--parchment-warm .ovm-section__headline,
.ovm-section--white .ovm-section__headline { color: var(--earth-text); }

.ovm-section__subhead {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.ovm-section--dark .ovm-section__subhead,
.ovm-section--dark-deep .ovm-section__subhead { color: var(--sage-muted); }
.ovm-section--light .ovm-section__subhead,
.ovm-section--parchment-warm .ovm-section__subhead,
.ovm-section--white .ovm-section__subhead { color: var(--olive-muted); }


.ovm-problem-strip {
  background: var(--paddock);
  border-top: 1px solid var(--fence);
  border-bottom: 1px solid var(--fence);
  padding: 3rem 0;
}
.ovm-problem-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.ovm-problem-strip__item {
  padding: 1.5rem 1.25rem;
  border-left: 2px solid var(--straw-label);
}
.ovm-problem-strip__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--straw-label);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.ovm-problem-strip__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--sage-muted);
  line-height: 1.55;
}


.ovm-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ovm-what__text { }
.ovm-what__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--earth-text);
  margin-bottom: 1.25rem;
}
.ovm-what__body {
  font-size: 1.0625rem;
  color: var(--olive-muted);
  line-height: 1.75;
}
.ovm-what__body p + p { margin-top: 1rem; }
.ovm-what__img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--parchment-warm);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ovm-what__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.ovm-features__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.ovm-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--card-gap);
}
.ovm-feature-card {
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-feature-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(20,43,26,0.10); }
.ovm-feature-card--wide {
  grid-column: 1 / -1;
}
.ovm-feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--straw-deep);
}
.ovm-feature-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.75rem;
}
.ovm-feature-card__body {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.7;
}


.ovm-proof {
  background: var(--paddock);
  padding-block: var(--section-py);
}
.ovm-proof__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ovm-proof__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--cream-text);
}
.ovm-proof__sub {
  font-size: 1.0625rem;
  color: var(--sage-muted);
  margin-top: 0.75rem;
}
.ovm-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--fence);
  padding-top: 3rem;
}
.ovm-proof__metric {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--fence);
}
.ovm-proof__metric:last-child { border-right: none; }
.ovm-proof__metric-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  color: var(--straw-label);
  line-height: 1.05;
}
.ovm-proof__metric-label {
  font-size: 0.9375rem;
  color: var(--sage-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.ovm-proof__metric-detail {
  font-size: 0.8125rem;
  color: var(--fence);
  margin-top: 0.35rem;
}
.ovm-proof__metric-detail { color: #7A9E83; }


.ovm-testimonials__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.ovm-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-gap);
}
.ovm-testimonial-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-testimonial-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(20,43,26,0.08); }
.ovm-testimonial-card__quote {
  font-size: 1.0625rem;
  color: var(--earth-text);
  line-height: 1.75;
  font-style: italic;
}
.ovm-testimonial-card__quote::before { content: '\201C'; }
.ovm-testimonial-card__quote::after { content: '\201D'; }
.ovm-testimonial-card__attribution {
  border-top: 1px solid var(--wire);
  padding-top: 1rem;
  margin-top: auto;
}
.ovm-testimonial-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--earth-text);
}
.ovm-testimonial-card__role {
  font-size: 0.875rem;
  color: var(--olive-muted);
  margin-top: 0.2rem;
}


.ovm-pricing-preview__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.ovm-pricing-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-bottom: 2.5rem;
}
.ovm-pricing-mini-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-pricing-mini-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(20,43,26,0.08); }
.ovm-pricing-mini-card__tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--straw-deep);
  margin-bottom: 0.4rem;
}
.ovm-pricing-mini-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--earth-text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ovm-pricing-mini-card__cycle {
  font-size: 0.8125rem;
  color: var(--olive-muted);
  margin-bottom: 0.75rem;
}
.ovm-pricing-mini-card__cows {
  font-size: 0.875rem;
  color: var(--olive-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.ovm-pricing-mini-card__feature {
  font-size: 0.875rem;
  color: var(--olive-muted);
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid var(--wire);
}
.ovm-pricing-preview__trial-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--olive-muted);
  margin-bottom: 1.5rem;
}
.ovm-pricing-preview__trial-note strong { color: var(--earth-text); }
.ovm-pricing-preview__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


.ovm-footer {
  background: var(--deep-earth);
  padding-block: 4rem 2rem;
}
.ovm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--fence);
}
.ovm-footer__links-col { }
.ovm-footer__brand-col .ovm-footer__logo {
  display: block;
  margin-bottom: 1rem;
}
.ovm-footer__brand-col .ovm-footer__logo img { height: 32px; width: auto; }
.ovm-footer__descriptor {
  font-size: 0.9375rem;
  color: var(--sage-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.ovm-footer__contact address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--sage-muted);
  line-height: 1.9;
}
.ovm-footer__contact a {
  color: var(--sage-muted);
  text-decoration: none;
  transition: color 180ms ease-out;
}
.ovm-footer__contact a:hover { color: var(--cream-text); }
.ovm-footer__col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-text);
  margin-bottom: 1.25rem;
}
.ovm-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ovm-footer__links a {
  font-size: 0.9375rem;
  color: var(--sage-muted);
  text-decoration: none;
  transition: color 180ms ease-out;
}
.ovm-footer__links a:hover { color: var(--cream-text); }
.ovm-footer__bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ovm-footer__copyright {
  font-size: 0.8125rem;
  color: #7A9E83;
}
.ovm-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ovm-footer__legal-links a {
  font-size: 0.8125rem;
  color: #7A9E83;
  text-decoration: none;
  transition: color 180ms ease-out;
}
.ovm-footer__legal-links a:hover { color: var(--sage-muted); }


.ovm-subhero {
  padding: calc(68px + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.ovm-subhero--dark {
  background: var(--paddock);
  overflow: hidden;
}
.ovm-subhero--light {
  background: var(--parchment);
}
.ovm-subhero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ovm-subhero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ovm-subhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,31,18,0.80) 0%, rgba(20,43,26,0.60) 100%);
}
.ovm-subhero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.ovm-subhero__text { max-width: 680px; }
.ovm-subhero__h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ovm-subhero--dark .ovm-subhero__h1 { color: var(--cream-text); }
.ovm-subhero--light .ovm-subhero__h1 { color: var(--earth-text); }
.ovm-subhero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
}
.ovm-subhero--dark .ovm-subhero__sub { color: var(--sage-muted); }
.ovm-subhero--light .ovm-subhero__sub { color: var(--olive-muted); }
.ovm-subhero__ornament { flex-shrink: 0; }

.ovm-subhero__metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ovm-subhero__metric-chip {
  background: rgba(198,139,36,0.15);
  border: 1px solid rgba(198,139,36,0.35);
  border-radius: 6px;
  padding: 0.85rem 1.25rem;
  min-width: 180px;
}
.ovm-subhero__metric-chip-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  color: var(--straw-label);
  font-weight: 400;
  line-height: 1.1;
}
.ovm-subhero__metric-chip-label {
  font-size: 0.8125rem;
  color: var(--sage-muted);
  margin-top: 0.2rem;
}


.ovm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.ovm-two-col--wide {
  grid-template-columns: 3fr 2fr;
}
.ovm-two-col--reverse { direction: rtl; }
.ovm-two-col--reverse > * { direction: ltr; }

.ovm-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2rem;
}

.ovm-card--parchment {
  background: var(--parchment-warm);
  border-color: var(--wire);
}

.ovm-card--dark {
  background: var(--paddock);
  border-color: var(--fence);
}
.ovm-card--dark h3,
.ovm-card--dark .ovm-card__title { color: var(--cream-text); }
.ovm-card--dark p,
.ovm-card--dark .ovm-card__body { color: var(--sage-muted); }

.ovm-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.75rem;
}
.ovm-card__body {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.7;
}


.ovm-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ovm-pillar-card {
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2rem;
}
.ovm-pillar-card__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--straw-deep);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ovm-pillar-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.75rem;
}
.ovm-pillar-card__body {
  font-size: 0.9375rem;
  color: var(--olive-muted);
  line-height: 1.7;
}


.ovm-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.ovm-data-table th {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--olive-muted);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--wire);
}
.ovm-data-table td {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--earth-text);
  border-bottom: 1px solid var(--wire);
  vertical-align: top;
  line-height: 1.55;
}
.ovm-data-table tr:last-child td { border-bottom: none; }


.ovm-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  counter-reset: step-counter;
}
.ovm-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--wire);
}
.ovm-step:last-child { border-bottom: none; }
.ovm-step__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--straw-deep);
  line-height: 1;
  opacity: 0.45;
  text-align: center;
}
.ovm-step__content {}
.ovm-step__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.75rem;
}
.ovm-step__body {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.7;
}

.ovm-dashboard-mock {
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.ovm-dashboard-mock__header {
  background: var(--paddock);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ovm-dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fence);
}
.ovm-dashboard-mock__dot:first-child { background: #3d5e48; }
.ovm-dashboard-mock__title {
  font-size: 0.8125rem;
  color: var(--sage-muted);
  margin-left: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}
.ovm-dashboard-mock__body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.ovm-dashboard-panel {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 6px;
  padding: 1.25rem;
}
.ovm-dashboard-panel__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--olive-muted);
  margin-bottom: 0.6rem;
}
.ovm-dashboard-panel__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.625rem;
  color: var(--earth-text);
  line-height: 1.1;
}
.ovm-dashboard-panel__value--straw { color: var(--straw-deep); }
.ovm-dashboard-panel__sub {
  font-size: 0.8125rem;
  color: var(--olive-muted);
  margin-top: 0.25rem;
}

.ovm-alert-mock {
  background: var(--paddock);
  border: 1px solid var(--fence);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 360px;
  margin: 0 auto;
}
.ovm-alert-mock__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--fence);
}
.ovm-alert-mock__icon {
  width: 36px;
  height: 36px;
  background: var(--straw);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ovm-alert-mock__app { font-size: 0.8125rem; color: var(--sage-muted); font-family: 'DM Sans', sans-serif; }
.ovm-alert-mock__time { font-size: 0.75rem; color: var(--sage-muted); margin-left: auto; }
.ovm-alert-mock__title { font-size: 0.9375rem; font-weight: 500; color: var(--cream-text); margin-bottom: 0.4rem; }
.ovm-alert-mock__body { font-size: 0.875rem; color: var(--sage-muted); line-height: 1.6; }
.ovm-alert-mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
}
.ovm-alert-mock__tag {
  display: inline-block;
  background: rgba(198,139,36,0.2);
  border: 1px solid rgba(198,139,36,0.4);
  color: var(--straw-label);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}


.ovm-metrics-breakdown {
  margin-top: 3rem;
}
.ovm-metric-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--wire);
  align-items: start;
}
.ovm-metric-row:last-child { border-bottom: none; }
.ovm-metric-row__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  color: var(--straw-deep);
  line-height: 1.1;
}
.ovm-metric-row__unit {
  font-size: 0.875rem;
  color: var(--olive-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}
.ovm-metric-row__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.6rem;
}
.ovm-metric-row__body {
  font-size: 0.9375rem;
  color: var(--olive-muted);
  line-height: 1.7;
}

.ovm-bar-chart {
  margin-top: 1.5rem;
}
.ovm-bar-chart__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ovm-bar-chart__label {
  font-size: 0.8125rem;
  color: var(--olive-muted);
  min-width: 90px;
  text-align: right;
}
.ovm-bar-chart__track {
  flex: 1;
  height: 10px;
  background: var(--wire);
  border-radius: 5px;
  overflow: hidden;
}
.ovm-bar-chart__fill {
  height: 100%;
  background: var(--straw-deep);
  border-radius: 5px;
  transition: width 800ms ease-out;
}
.ovm-bar-chart__fill--after { background: var(--paddock); }
.ovm-bar-chart__val {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--earth-text);
  min-width: 36px;
}


.ovm-case-study {
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.ovm-case-study:last-child { margin-bottom: 0; }
.ovm-case-study__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--wire);
}
.ovm-case-study__farm { }
.ovm-case-study__farm-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.3rem;
}
.ovm-case-study__farm-detail {
  font-size: 0.875rem;
  color: var(--olive-muted);
}
.ovm-case-study__badge {
  flex-shrink: 0;
  background: var(--paddock);
  color: var(--straw-label);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.ovm-case-study__body {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.75;
}
.ovm-case-study__body p + p { margin-top: 1rem; }
.ovm-case-study__stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wire);
  flex-wrap: wrap;
}
.ovm-case-study__stat {}
.ovm-case-study__stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.625rem;
  color: var(--straw-deep);
  line-height: 1.1;
}
.ovm-case-study__stat-label {
  font-size: 0.8125rem;
  color: var(--olive-muted);
  margin-top: 0.2rem;
}


.ovm-methodology {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.ovm-methodology__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 1rem;
}
.ovm-methodology__body {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.75;
}
.ovm-methodology__body p + p { margin-top: 0.875rem; }


.ovm-pricing-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.ovm-pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 6px;
  margin-top: 2rem;
  overflow: hidden;
}
.ovm-pricing-toggle__btn {
  padding: 0.6rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--olive-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out;
}
.ovm-pricing-toggle__btn--active {
  background: var(--paddock);
  color: var(--cream-text);
  font-weight: 500;
}
.ovm-pricing-toggle__badge {
  font-size: 0.75rem;
  background: var(--straw);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
}

.ovm-pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  align-items: start;
}
.ovm-pricing-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-pricing-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(20,43,26,0.10); }
.ovm-pricing-card--featured {
  background: var(--paddock);
  border-color: var(--straw);
  box-shadow: 0 0 0 2px var(--straw);
}
.ovm-pricing-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.ovm-pricing-card__tag--featured {
  background: rgba(198,139,36,0.2);
  color: var(--straw-label);
  border: 1px solid rgba(198,139,36,0.4);
}
.ovm-pricing-card__tag--default {
  background: var(--parchment-warm);
  color: var(--olive-muted);
  border: 1px solid var(--wire);
}
.ovm-pricing-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.ovm-pricing-card .ovm-pricing-card__name,
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__name { color: var(--earth-text); }
.ovm-pricing-card--featured .ovm-pricing-card__name { color: var(--cream-text); }
.ovm-pricing-card__herd {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__herd { color: var(--olive-muted); border-color: var(--wire); }
.ovm-pricing-card--featured .ovm-pricing-card__herd { color: var(--sage-muted); border-color: var(--fence); }
.ovm-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.ovm-pricing-card__currency {
  font-size: 1.125rem;
  font-weight: 500;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__currency { color: var(--olive-muted); }
.ovm-pricing-card--featured .ovm-pricing-card__currency { color: var(--sage-muted); }
.ovm-pricing-card__amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__amount { color: var(--earth-text); }
.ovm-pricing-card--featured .ovm-pricing-card__amount { color: var(--cream-text); }
.ovm-pricing-card__period {
  font-size: 0.875rem;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__period { color: var(--olive-muted); }
.ovm-pricing-card--featured .ovm-pricing-card__period { color: var(--sage-muted); }
.ovm-pricing-card__annual {
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__annual { color: var(--olive-muted); }
.ovm-pricing-card--featured .ovm-pricing-card__annual { color: var(--sage-muted); }
.ovm-pricing-card__annual span { color: var(--straw-deep); font-weight: 500; }
.ovm-pricing-card--featured .ovm-pricing-card__annual span { color: var(--straw-label); }
.ovm-pricing-card__cta { display: block; width: 100%; text-align: center; margin-bottom: 1.75rem; }
.ovm-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ovm-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.ovm-pricing-card:not(.ovm-pricing-card--featured) .ovm-pricing-card__features li { color: var(--olive-muted); }
.ovm-pricing-card--featured .ovm-pricing-card__features li { color: var(--sage-muted); }
.ovm-pricing-card__features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238B5C0F' d='M13.5 3.5l-7 7-3-3-1 1 4 4 8-8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.ovm-pricing-card--featured .ovm-pricing-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23C68B24' d='M13.5 3.5l-7 7-3-3-1 1 4 4 8-8z'/%3E%3C/svg%3E");
}

.ovm-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  overflow: hidden;
}
.ovm-comparison-table th {
  background: var(--parchment);
  padding: 1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--earth-text);
  text-align: center;
  border-bottom: 2px solid var(--wire);
}
.ovm-comparison-table th:first-child { text-align: left; }
.ovm-comparison-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--earth-text);
  border-bottom: 1px solid var(--wire);
  text-align: center;
  vertical-align: middle;
}
.ovm-comparison-table td:first-child {
  text-align: left;
  color: var(--olive-muted);
  font-weight: 400;
}
.ovm-comparison-table tr:last-child td { border-bottom: none; }
.ovm-comparison-table .check { color: var(--straw-deep); font-size: 1.1rem; }
.ovm-comparison-table .dash { color: var(--wire); }
.ovm-comparison-table__head-featured { background: var(--paddock) !important; color: var(--cream-text) !important; }

.ovm-faq { margin-top: 3rem; }
.ovm-faq__item {
  border-bottom: 1px solid var(--wire);
}
.ovm-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.375rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--earth-text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 180ms ease-out;
}
.ovm-faq__question:hover { color: var(--straw-deep); }
.ovm-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--olive-muted);
  transition: transform 220ms ease-out;
}
.ovm-faq__item--open .ovm-faq__icon { transform: rotate(45deg); }
.ovm-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease-out;
}
.ovm-faq__item--open .ovm-faq__answer { max-height: 400px; }
.ovm-faq__answer-inner {
  padding-bottom: 1.375rem;
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.75;
}


.ovm-team-card {
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-team-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(20,43,26,0.09); }
.ovm-team-card__portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--wire);
  background: var(--parchment);
}
.ovm-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ovm-team-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 0.2rem;
}
.ovm-team-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--straw-deep);
  margin-bottom: 0.75rem;
}
.ovm-team-card__bio {
  font-size: 0.9rem;
  color: var(--olive-muted);
  line-height: 1.65;
}
.ovm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  margin-top: 3rem;
}


.ovm-approach-principles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.ovm-principle {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--fence);
  border-radius: 8px;
}
.ovm-principle__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--straw-label);
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.ovm-principle__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--cream-text);
  margin-bottom: 0.5rem;
}
.ovm-principle__body {
  font-size: 0.9375rem;
  color: var(--sage-muted);
  line-height: 1.7;
}


.ovm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.ovm-form { display: flex; flex-direction: column; gap: var(--form-gap); }
.ovm-field { display: flex; flex-direction: column; gap: 0.45rem; }
.ovm-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--earth-text);
}
.ovm-field input,
.ovm-field select,
.ovm-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--earth-text);
  background: var(--white);
  border: 1.5px solid var(--wire);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
  appearance: none;
  -webkit-appearance: none;
}
.ovm-field input:focus,
.ovm-field select:focus,
.ovm-field textarea:focus {
  outline: none;
  border-color: var(--straw-deep);
  box-shadow: 0 0 0 3px rgba(139,92,15,0.15);
}
.ovm-field textarea { resize: vertical; min-height: 120px; }
.ovm-contact-info {
  padding: 2rem;
  background: var(--parchment-warm);
  border: 1px solid var(--wire);
  border-radius: 8px;
}
.ovm-contact-info__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 1.25rem;
}
.ovm-contact-info address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--olive-muted);
  line-height: 2;
}
.ovm-contact-info a {
  color: var(--straw-deep);
  text-decoration: none;
  transition: color 180ms ease-out;
}
.ovm-contact-info a:hover { color: var(--earth-text); }
.ovm-contact-info__response {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wire);
  font-size: 0.875rem;
  color: var(--olive-muted);
}


.ovm-blog-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.ovm-featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
  text-decoration: none;
  color: inherit;
}
.ovm-featured-article:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(20,43,26,0.10); }
.ovm-featured-article__cover {
  overflow: hidden;
  min-height: 320px;
}
.ovm-featured-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 4/3;
}
.ovm-featured-article__content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ovm-featured-article__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--straw-deep);
  margin-bottom: 1rem;
}
.ovm-featured-article__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--earth-text);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.ovm-featured-article__excerpt {
  font-size: 1rem;
  color: var(--olive-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.ovm-featured-article__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--olive-muted);
  margin-top: auto;
}

.ovm-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-top: 3rem;
}
.ovm-article-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.ovm-article-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(20,43,26,0.09); }
.ovm-article-card__cover {
  overflow: hidden;
  background: var(--parchment-warm);
}
.ovm-article-card__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.ovm-article-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.ovm-article-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--earth-text);
  line-height: 1.3;
}
.ovm-article-card__title a { color: inherit; text-decoration: none; }
.ovm-article-card__excerpt {
  font-size: 0.9rem;
  color: var(--olive-muted);
  line-height: 1.65;
  flex: 1;
}
.ovm-article-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--olive-muted);
  margin-top: auto;
  border-top: 1px solid var(--wire);
  padding-top: 0.875rem;
}
.ovm-article-card__author { font-weight: 500; color: var(--olive-muted); }

.ovm-blog-cta {
  background: var(--paddock);
  padding-block: var(--section-py);
  text-align: center;
}
.ovm-blog-cta__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--cream-text);
  margin-bottom: 0.75rem;
}
.ovm-blog-cta__sub {
  font-size: 1.0625rem;
  color: var(--sage-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-inline: auto;
}
.ovm-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--fence);
}
.ovm-newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--earth-text);
  background: var(--parchment);
  border: none;
  outline: none;
}
.ovm-newsletter-form input::placeholder { color: var(--olive-muted); }
.ovm-newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--straw);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 180ms ease-out;
}
.ovm-newsletter-form button:hover { background: var(--straw-hover); }


.ovm-article-header {
  background: var(--parchment);
  padding: calc(68px + 3.5rem) 0 3rem;
}
.ovm-article-header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.ovm-article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--olive-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ovm-article-header__back {
  color: var(--straw-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 180ms ease-out;
}
.ovm-article-header__back:hover { color: var(--earth-text); }
.ovm-article-header__h1 {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--earth-text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ovm-article-header__excerpt {
  font-size: 1.125rem;
  color: var(--olive-muted);
  line-height: 1.7;
  max-width: 720px;
}
.ovm-article-cover {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-top: 2.5rem;
}
.ovm-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}
.ovm-article-body-wrap {
  background: var(--white);
  padding-block: 3.5rem;
}
.ovm-blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  font-size: 1.0625rem;
  color: var(--earth-text);
  line-height: 1.8;
}
.ovm-blog-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--earth-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.ovm-blog-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.ovm-blog-content p { margin-bottom: 1.25rem; color: var(--earth-text); }
.ovm-blog-content ul,
.ovm-blog-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}
.ovm-blog-content ul { list-style: disc; }
.ovm-blog-content ol { list-style: decimal; }
.ovm-blog-content li { margin-bottom: 0.5rem; color: var(--earth-text); }
.ovm-blog-content blockquote {
  border-left: 3px solid var(--straw-deep);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--olive-muted);
}
.ovm-blog-content a {
  color: var(--straw-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 180ms ease-out;
}
.ovm-blog-content a:hover { color: var(--earth-text); }
.ovm-related-articles {
  background: var(--parchment);
  padding-block: var(--section-py);
}
.ovm-related-articles__headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-bottom: 2rem;
}


.ovm-auth-page {
  min-height: 100vh;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}
.ovm-auth-card {
  background: var(--white);
  border: 1px solid var(--wire);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(20,43,26,0.10);
}
.ovm-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.ovm-auth-card__logo img { height: 36px; width: auto; }
.ovm-auth-card__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--earth-text);
  text-align: center;
  margin-bottom: 0.35rem;
}
.ovm-auth-card__sub {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--olive-muted);
  margin-bottom: 2rem;
}
.ovm-auth-card__form { display: flex; flex-direction: column; gap: var(--form-gap); }
.ovm-auth-card__forgot {
  text-align: right;
  margin-top: -0.5rem;
}
.ovm-auth-card__forgot a {
  font-size: 0.875rem;
  color: var(--straw-deep);
  text-decoration: none;
  transition: color 180ms ease-out;
}
.ovm-auth-card__forgot a:hover { color: var(--earth-text); }
.ovm-auth-card__submit { width: 100%; justify-content: center; margin-top: 0.25rem; }
.ovm-auth-card__links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--olive-muted);
}
.ovm-auth-card__links a {
  color: var(--straw-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 180ms ease-out;
}
.ovm-auth-card__links a:hover { color: var(--earth-text); }
.ovm-auth-card__fine-print {
  text-align: center;
  font-size: 0.8rem;
  color: var(--olive-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.ovm-auth-card__fine-print a { color: var(--olive-muted); text-decoration: underline; text-underline-offset: 2px; }
.ovm-auth-card__fine-print a:hover { color: var(--earth-text); }
.ovm-auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--olive-muted);
}
.ovm-auth-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--straw-deep);
}
.ovm-auth-check a { color: var(--straw-deep); text-decoration: underline; }


.ovm-legal-header {
  background: var(--parchment);
  padding: calc(68px + 3rem) 0 2.5rem;
}
.ovm-legal-header__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.ovm-legal-header__h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--earth-text);
  margin-bottom: 0.5rem;
}
.ovm-legal-header__updated {
  font-size: 0.875rem;
  color: var(--olive-muted);
}
.ovm-legal-content {
  background: var(--white);
  padding-block: 3.5rem;
}
.ovm-legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  font-size: 1rem;
  color: var(--earth-text);
  line-height: 1.8;
}
.ovm-legal-content__inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--earth-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.ovm-legal-content__inner h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--earth-text);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.ovm-legal-content__inner p { margin-bottom: 1rem; }
.ovm-legal-content__inner ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.ovm-legal-content__inner li { margin-bottom: 0.4rem; }
.ovm-legal-content__inner a { color: var(--straw-deep); text-decoration: underline; }


.ovm-cta-band {
  background: var(--paddock);
  padding-block: var(--section-py);
  text-align: center;
}
.ovm-cta-band__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--cream-text);
  margin-bottom: 0.75rem;
}
.ovm-cta-band__sub {
  font-size: 1.0625rem;
  color: var(--sage-muted);
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-inline: auto;
}
.ovm-cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


.ovm-section-header {
  margin-bottom: 3.5rem;
}
.ovm-section-header--center { text-align: center; }
.ovm-section-header--center .ovm-section__subhead { max-width: 580px; margin-inline: auto; }


.ovm-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.ovm-fade-up--visible {
  opacity: 1;
  transform: none;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--deep-earth);
  border-top: 1px solid var(--fence);
  padding: 1.25rem 0;
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--sage-muted);
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--straw-label);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 180ms ease-out, color 180ms ease-out;
  text-decoration: none;
}
.cookie-banner__btn--accept {
  background: var(--straw);
  color: var(--deep-earth);
  border-color: var(--straw);
  font-weight: 600;
}
.cookie-banner__btn--accept:hover { background: var(--straw-hover); border-color: var(--straw-hover); }
.cookie-banner__btn--dismiss {
  background: transparent;
  color: var(--sage-muted);
  border-color: var(--fence);
}
.cookie-banner__btn--dismiss:hover { color: var(--cream-text); border-color: var(--sage-muted); }


@media (max-width: 1024px) {
  .ovm-what__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ovm-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ovm-pricing-tiers__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .ovm-pillars__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .ovm-nav__links,
  .ovm-nav__cta { display: none; }
  .ovm-hamburger { display: flex; }
  .ovm-features__grid {
    grid-template-columns: 1fr;
  }
  .ovm-feature-card--wide { grid-column: 1; }
  .ovm-testimonials__grid { grid-template-columns: 1fr; }
  .ovm-pricing-preview__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .ovm-proof__grid { grid-template-columns: 1fr; }
  .ovm-proof__metric { border-right: none; border-bottom: 1px solid var(--fence); }
  .ovm-proof__metric:last-child { border-bottom: none; }
  .ovm-problem-strip__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .ovm-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ovm-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .ovm-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ovm-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .ovm-two-col--reverse { direction: ltr; }
  .ovm-subhero__content { grid-template-columns: 1fr; gap: 2rem; }
  .ovm-subhero__ornament { display: none; }
  .ovm-featured-article { grid-template-columns: 1fr; }
  .ovm-articles-grid { grid-template-columns: 1fr 1fr; }
  .ovm-case-study__header { flex-direction: column; gap: 1rem; }
  .ovm-metric-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .ovm-pillars__grid { grid-template-columns: 1fr; }
  .ovm-pricing-tiers__grid { max-width: 100%; }
}

@media (max-width: 560px) {
  .ovm-hero__h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .ovm-team-grid { grid-template-columns: 1fr 1fr; }
  .ovm-articles-grid { grid-template-columns: 1fr; }
  .ovm-auth-card { padding: 2rem 1.5rem; }
  .ovm-comparison-table { font-size: 0.8125rem; }
  .ovm-comparison-table th,
  .ovm-comparison-table td { padding: 0.75rem 0.65rem; }
  .ovm-newsletter-form { flex-direction: column; border-radius: 0; overflow: visible; border: none; gap: 0.75rem; }
  .ovm-newsletter-form input,
  .ovm-newsletter-form button {
    border-radius: 6px;
    border: 1px solid var(--fence);
    width: 100%;
  }
  .ovm-newsletter-form button { border: none; }
  .ovm-dashboard-mock__body { grid-template-columns: 1fr; }
}

@media print {
  .ovm-nav, .ovm-hamburger, .cookie-banner { display: none; }
  body { background: white; color: #111; }
}
