:root {
  --leaf-dark: #1F3F2B;
  --leaf-mid: #2C5E3E;
  --earth-brown: #8B5A2B;
  --sage-light: #E9F0E8;
  --sage-pale: #F4F7F4;
  --vy-white: #FAFCFA;
  --accent-lime: #7CB342;
  --text-main: #222222;
  --text-muted: #555555;
  --font-stack: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-stack);
  color: var(--text-main);
  background-color: var(--vy-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Masthead (Header) */
.vy-masthead {
  position: sticky;
  top: 0;
  background-color: rgba(250, 252, 250, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sage-light);
  z-index: 1000;
  padding: 1rem 0;
}

.vy-masthead-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vy-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--leaf-dark);
  letter-spacing: -0.5px;
}

.vy-nav-cluster {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vy-nav-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--leaf-dark);
}

.vy-nav-item:hover {
  color: var(--accent-lime);
}

.vy-ghost-link {
  opacity: 0.6;
}

.vy-primary-trigger {
  background-color: var(--leaf-dark);
  color: var(--vy-white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
}

.vy-primary-trigger:hover {
  background-color: var(--leaf-mid);
}

/* General Canvas & Sections */
.vy-canvas > section, 
.vy-canvas > article, 
.vy-canvas > aside, 
.vy-canvas > div {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.vy-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--leaf-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.vy-center-text {
  text-align: center;
}

/* Hero Split */
.vy-landing-split {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.vy-split-text {
  flex: 1;
}

.vy-headline-display {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--leaf-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.vy-subtext-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.vy-action-btn {
  display: inline-block;
  background-color: var(--accent-lime);
  color: var(--leaf-dark);
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.vy-action-btn:hover {
  background-color: var(--leaf-dark);
  color: var(--vy-white);
  transform: translateY(-2px);
}

.vy-trust-badges {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.vy-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--sage-light);
  color: var(--leaf-mid);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.vy-split-visual {
  flex: 1;
  position: relative;
}

.vy-split-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--sage-light);
  z-index: -1;
  border-radius: 8px;
}

.vy-cover-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(31, 63, 43, 0.1);
  height: 450px;
}

/* About (Deep Roots) */
.vy-deep-roots {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5rem;
  background-color: var(--sage-pale);
  padding: 7rem 2rem !important;
  max-width: 100% !important;
}

.vy-roots-content {
  flex: 1.2;
  max-width: 600px;
}

.vy-roots-img-wrap {
  flex: 0.8;
  margin-left: max(2rem, calc((100vw - 1280px) / 2));
}

.vy-paragraph-dense {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.vy-inline-link {
  color: var(--earth-brown);
  text-decoration: underline;
  text-decoration-color: rgba(139, 90, 43, 0.3);
  font-weight: 600;
}

.vy-inline-link:hover {
  text-decoration-color: var(--earth-brown);
}

.vy-metrics-row {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--sage-light);
  padding-top: 2rem;
}

.vy-metric-box {
  display: flex;
  flex-direction: column;
}

.vy-metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-lime);
  line-height: 1;
}

.vy-metric-symbol {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--leaf-dark);
  vertical-align: super;
}

.vy-metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--leaf-mid);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Solutions */
.vy-agri-solutions-wrap {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.vy-solutions-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.vy-subtext-muted {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.vy-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(200px, auto);
}

.vy-solution-card {
  background: var(--vy-white);
  border: 1px solid var(--sage-light);
  padding: 2.5rem;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.vy-solution-card:hover {
  box-shadow: 0 15px 35px rgba(31, 63, 43, 0.08);
}

.vy-card-tall {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vy-card-tall .vy-card-img {
  height: 250px;
  border-radius: 8px 8px 0 0;
}

.vy-card-tall .vy-card-heading,
.vy-card-tall .vy-card-body {
  padding: 0 2.5rem;
}

.vy-card-tall .vy-card-heading {
  margin-top: 2rem;
}

.vy-card-tall .vy-card-body {
  margin-bottom: 2.5rem;
}

.vy-card-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.vy-card-wide .vy-card-img {
  width: 40%;
  height: 100%;
}

.vy-card-wide .vy-card-heading,
.vy-card-wide .vy-card-body {
  padding: 0 2.5rem;
  width: 60%;
}

.vy-card-wide .vy-card-heading {
  margin-bottom: 1rem;
}

.vy-card-heading {
  font-size: 1.4rem;
  color: var(--leaf-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.vy-card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.vy-tiny-disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: 3rem;
  text-align: right;
}

/* Feedback */
.vy-grower-feedback {
  background-color: var(--leaf-dark);
  color: var(--vy-white);
  padding: 6rem 2rem !important;
  max-width: 100% !important;
}

.vy-grower-feedback .vy-section-title {
  color: var(--vy-white);
}

.vy-feedback-scroller {
  display: flex;
  gap: 2rem;
  max-width: 1280px;
  margin: 4rem auto 0;
}

.vy-feedback-item {
  flex: 1;
  background-color: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.vy-feedback-offset {
  transform: translateY(2rem);
}

.vy-quote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--sage-light);
}

.vy-grower-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vy-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.vy-grower-details {
  display: flex;
  flex-direction: column;
}

.vy-grower-name {
  font-weight: 800;
  font-size: 1rem;
}

.vy-grower-farm {
  font-size: 0.85rem;
  color: var(--accent-lime);
}

/* Connect */
.vy-connect-hub {
  padding: 8rem 2rem !important;
}

.vy-connect-layout {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.vy-connect-info {
  flex: 1;
}

.vy-micro-details {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sage-light);
}

.vy-micro-details li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.vy-micro-details strong {
  color: var(--leaf-dark);
}

.vy-form-envelope {
  flex: 1;
  background: var(--sage-pale);
  padding: 3rem;
  border-radius: 8px;
}

.vy-input-group {
  margin-bottom: 1.5rem;
}

.vy-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--leaf-dark);
  margin-bottom: 0.5rem;
}

.vy-input-group input,
.vy-input-group textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-stack);
  font-size: 1rem;
  background: var(--vy-white);
}

.vy-input-group input:focus,
.vy-input-group textarea:focus {
  outline: none;
  border-color: var(--accent-lime);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.2);
}

.vy-submit-btn {
  width: 100%;
  background-color: var(--leaf-dark);
  color: var(--vy-white);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vy-submit-btn:hover {
  background-color: var(--leaf-mid);
}

/* Footer */
.vy-site-base {
  background-color: #112217;
  color: var(--sage-light);
  padding: 5rem 2rem 2rem;
}

.vy-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.vy-footer-brand {
  color: var(--vy-white);
  margin-bottom: 1rem;
}

.vy-footer-desc {
  color: rgba(233, 240, 232, 0.6);
  max-width: 300px;
}

.vy-footer-heading {
  color: var(--vy-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vy-footer-col p {
  margin-bottom: 0.5rem;
  color: rgba(233, 240, 232, 0.7);
  font-size: 0.95rem;
}

.vy-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vy-footer-nav a {
  color: rgba(233, 240, 232, 0.7);
  font-size: 0.95rem;
}

.vy-footer-nav a:hover {
  color: var(--accent-lime);
}

.vy-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(233, 240, 232, 0.5);
}

/* Responsive Leakage & Adaptations */
@media (max-width: 1024px) {
  .vy-landing-split, .vy-deep-roots, .vy-connect-layout {
    flex-direction: column;
    gap: 3rem;
  }
  .vy-roots-img-wrap {
    margin-left: 0;
    width: 100%;
  }
  .vy-solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vy-card-wide {
    grid-column: span 2;
    flex-direction: column;
  }
  .vy-card-wide .vy-card-img {
    width: 100%;
    height: 250px;
  }
  .vy-card-wide .vy-card-heading,
  .vy-card-wide .vy-card-body {
    width: 100%;
    padding: 2rem;
  }
  .vy-feedback-scroller {
    flex-direction: column;
  }
  .vy-feedback-offset {
    transform: none;
  }
}

@media (max-width: 768px) {
  .vy-nav-cluster {
    display: none;
  }
  .vy-solutions-grid {
    grid-template-columns: 1fr;
  }
  .vy-card-tall, .vy-card-wide {
    grid-column: span 1;
  }
  .vy-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vy-headline-display {
    font-size: 2.5rem;
  }
  .vy-section-title {
    font-size: 2rem;
  }
}
