:root {
  --ink: #17212b;
  --muted: #5c6875;
  --soft: #f4f7f8;
  --surface: #ffffff;
  --line: #dbe4e8;
  --teal: #086f6a;
  --teal-strong: #065a56;
  --blue: #2563b8;
  --green: #4e7d52;
  --gold: #c6902e;
  --coral: #b85f42;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(8, 111, 106, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7f8 58%, #e9f2f0 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
  animation: splash-fallback 1ms linear 3200ms forwards;
}

.site-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo-wrap {
  width: min(760px, 88vw);
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  transform: translateY(0);
  animation: splash-rise 680ms ease both;
}

.splash-logo {
  width: min(720px, 88vw);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(23, 33, 43, 0.14));
}

.splash-progress {
  width: min(280px, 64vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 111, 106, 0.12);
}

.splash-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold), var(--blue));
  animation: splash-progress 980ms ease-in-out infinite;
}

@keyframes splash-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splash-progress {
  0% {
    transform: translateX(-100%);
  }

  55% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes splash-fallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(219, 228, 232, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark,
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}

.brand-logo {
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(8, 111, 106, 0.14);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  background: #e8f3f2;
  color: var(--teal-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-home {
  background-image: url("../img/hero-agritech.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 31, 0.88), rgba(8, 27, 31, 0.58) 48%, rgba(8, 27, 31, 0.15)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 760px);
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding: 5rem 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8dded6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.13;
}

h1 {
  font-size: 3.9rem;
  max-width: 12ch;
}

h2 {
  font-size: 2.25rem;
  max-width: 18ch;
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.button-primary {
  background: var(--teal);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus {
  background: var(--teal-strong);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus {
  background: rgba(255, 255, 255, 0.16);
}

.button-secondary {
  color: var(--teal-strong);
  border-color: var(--line);
  background: #fff;
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--teal);
}

.domain-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
}

.hero-points li {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.section {
  padding: 5.5rem 0;
}

.section-intro {
  padding: 3.5rem 0;
}

.intro-grid,
.split-layout,
.comparison-grid,
.operations-layout,
.contact-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.intro-grid p,
.split-layout p,
.operations-layout p,
.cta-layout p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-top: 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 820px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(23, 33, 43, 0.07);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f5f8f8;
}

.product-card .product-logo-image {
  object-fit: contain;
  padding: 2rem;
}

.product-card-wide img {
  height: 280px;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card-body p {
  color: var(--muted);
}

.product-kicker {
  margin: 0 0 0.45rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  color: var(--teal-strong);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.section-band {
  background: var(--soft);
}

.capability-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability,
.value-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: #fff;
}

.capability-number {
  color: var(--gold);
  font-weight: 900;
}

.capability p,
.value-item p,
.route-list p {
  color: var(--muted);
}

.cta-section {
  background: #fdfbf7;
}

.cta-layout {
  align-items: center;
}

.cta-layout h2 {
  max-width: 780px;
}

.cta-layout .button {
  justify-self: end;
}

.page-hero {
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(244, 247, 248, 0.98), rgba(244, 247, 248, 0.86)),
    url("../img/hero-agritech.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: 3rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.prose p {
  margin: 0 0 1rem;
}

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

.operations-layout {
  align-items: center;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: #fff;
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #e8f3f2;
  color: var(--teal-strong);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
}

.product-detail-list {
  display: grid;
  gap: 2rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.product-detail:first-child {
  padding-top: 0;
}

.product-detail:last-child {
  border-bottom: 0;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.product-media-logo {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 2rem;
}

.product-media-logo img {
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

.product-detail-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.route-list {
  display: grid;
  gap: 0.85rem;
}

.route-list p {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.35rem;
}

.privacy-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.privacy-nav a:hover,
.privacy-nav a:focus {
  background: #e8f3f2;
  color: var(--teal-strong);
}

.privacy-copy {
  display: grid;
  gap: 2.5rem;
}

.privacy-copy h2 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.privacy-copy code {
  padding: 0.12rem 0.32rem;
  border-radius: 4px;
  background: var(--soft);
  color: var(--teal-strong);
  font-weight: 800;
}

.contact-summary {
  position: sticky;
  top: 104px;
}

.contact-summary p {
  color: var(--muted);
}

.contact-method {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-method a {
  color: var(--teal-strong);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8dd;
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(8, 111, 106, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
}

.consent-banner {
  position: fixed;
  z-index: 90;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(219, 228, 232, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.consent-copy {
  display: grid;
  gap: 0.35rem;
}

.consent-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.consent-copy p {
  margin: 0;
  color: var(--muted);
}

.consent-options {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.consent-options[hidden] {
  display: none;
}

.consent-toggle {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  font-weight: 700;
}

.consent-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.consent-toggle span {
  display: grid;
  gap: 0.1rem;
}

.consent-toggle small {
  color: var(--muted);
  font-weight: 500;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.consent-settings-button {
  position: fixed;
  z-index: 80;
  left: 1rem;
  bottom: 1rem;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.1);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.consent-settings-button:hover,
.consent-settings-button:focus {
  color: var(--teal-strong);
  border-color: var(--teal);
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  background: #111c24;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-brand .brand-text span,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 750;
}

.site-footer nav a:hover,
.site-footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-grid,
  .split-layout,
  .comparison-grid,
  .operations-layout,
  .contact-layout,
  .privacy-layout,
  .cta-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .capability-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-layout .button {
    justify-self: start;
  }

  .contact-summary {
    position: static;
  }

  .privacy-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 66vh;
  }

  .splash-logo-wrap {
    width: min(330px, 88vw);
  }

  .splash-logo {
    width: min(330px, 88vw);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 27, 31, 0.88), rgba(8, 27, 31, 0.62)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.22));
  }

  .hero-content {
    padding: 4rem 0;
  }

  h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .product-card img,
  .product-card-wide img,
  .product-media img {
    height: 220px;
  }

  .product-media-logo {
    min-height: 220px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-actions .button {
    flex: 1 1 150px;
  }
}

@media (max-width: 430px) {
  .brand-mark,
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-actions,
  .product-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo-wrap,
  .splash-progress span {
    animation: none;
    transition: none;
  }

  .site-splash {
    transition: none;
  }
}
