:root {
  color-scheme: light;
  --ink: #11241b;
  --muted: #607167;
  --paper: #f3f8f1;
  --paper-strong: #fbfff8;
  --mist: #e5f0e6;
  --line: rgba(17, 36, 27, 0.13);
  --forest: #0d3d2b;
  --leaf: #178a4a;
  --river: #126f78;
  --harvest: #d8a73b;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(16, 49, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(16, 32, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 24, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 70%, transparent);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
  padding: 0 56px;
  background: rgba(243, 248, 241, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 14px 34px rgba(16, 32, 24, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  overflow: hidden;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  color: rgba(16, 32, 24, 0.76);
}

.site-nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--forest);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(15, 63, 46, 0.22);
  border-radius: 999px;
  color: var(--forest);
  font-weight: 700;
  line-height: 1.12;
}

.nav-cta span {
  color: rgba(17, 36, 27, 0.55);
  font-size: 11px;
  font-weight: 800;
}

.nav-cta strong {
  font-size: 15px;
}

.nav-cta:hover {
  background: var(--forest);
  color: var(--white);
}

.nav-cta:hover span {
  color: rgba(255, 255, 255, 0.66);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  background: var(--forest);
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 16, 0.82) 0%, rgba(8, 22, 16, 0.68) 34%, rgba(8, 22, 16, 0.2) 67%, rgba(8, 22, 16, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 22, 16, 0.48), rgba(8, 22, 16, 0.02) 48%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  padding: 108px 0 130px;
  margin-left: 8vw;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow.dark,
.section-kicker {
  color: var(--river);
}

.hero h1,
.hero-lede,
.section h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.05;
  font-weight: 900;
}

.hero h1 {
  font-size: 76px;
}

.hero-lede {
  margin-top: 18px;
  font-size: 38px;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--forest);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary.light {
  background: var(--paper-strong);
  color: var(--forest);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: 7vw;
  bottom: 46px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(560px, calc(100% - 48px));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  overflow: hidden;
}

.hero-panel div {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.metric,
.label {
  display: block;
}

.metric {
  color: var(--white);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
  scroll-margin-top: 92px;
}

.intro {
  padding-top: 96px;
  padding-bottom: 72px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: start;
  text-wrap: balance;
}

.section h2 {
  font-size: 46px;
}

.intro-grid p,
.section-head p,
.market-copy p,
.trust-content p,
.garden-map figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-strip {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.72fr 0.84fr;
  margin-top: 42px;
  gap: 1px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-strip > div {
  min-height: 132px;
  padding: 22px;
  background: var(--paper);
}

.service-brand {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
}

.service-brand picture {
  display: block;
  width: 84px;
  overflow: hidden;
}

.service-brand img {
  width: 84px;
  max-width: none;
}

.service-brand strong,
.service-brand span,
.service-item span,
.service-item strong,
.service-item a {
  display: block;
}

.service-brand strong {
  font-size: 22px;
  line-height: 1.1;
}

.service-brand span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.service-item span {
  margin-bottom: 14px;
  color: var(--river);
  font-size: 13px;
  font-weight: 800;
}

.service-item strong,
.service-item a {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.service-downloads {
  display: grid;
  align-content: center;
  gap: 10px;
}

.service-downloads a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(23, 138, 74, 0.24);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(23, 138, 74, 0.08);
  font-weight: 800;
}

.section-head {
  display: block;
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head.compact {
  max-width: 860px;
}

.section-head h2 {
  max-width: 720px;
}

.section-head > p:last-child {
  max-width: 680px;
  margin-top: 18px;
}

.app-showcase {
  display: grid;
  gap: 30px;
}

.screen-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(156px, 1fr));
  gap: 18px;
  align-items: end;
  padding: 18px 0 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow-x: auto;
  background: transparent;
  box-shadow: none;
  scrollbar-width: thin;
}

.screens-heading {
  padding-top: 14px;
}

.screens-heading h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.screens-heading p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 65ch;
}

.screen-card {
  min-width: 0;
  margin: 0;
}

.screen-card picture {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 44px rgba(16, 32, 24, 0.16);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 750 / 1624;
  object-fit: cover;
}

.screen-card figcaption {
  margin-top: 12px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.feature-card {
  min-height: 196px;
  padding: 26px 24px 28px 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:first-child {
  grid-column: span 2;
  padding-left: 0;
}

.feature-card + .feature-card {
  padding-left: 24px;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(31, 138, 76, 0.12);
  color: var(--forest);
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.module-copy {
  display: grid;
  gap: 12px;
  padding: 4px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.module-copy p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.module-copy p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--forest);
}

.module-copy strong {
  color: var(--ink);
}

.garden {
  padding-top: 72px;
}

.company-intro {
  margin: -8px 0 54px;
  padding: 24px 28px;
  border-left: 4px solid var(--leaf);
  background: rgba(23, 138, 74, 0.04);
  border-radius: 0 8px 8px 0;
}

.company-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.garden-display-head {
  margin-top: 12px;
}

.garden-map {
  margin: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.garden-map img {
  width: 100%;
  aspect-ratio: 1857 / 847;
  object-fit: cover;
}

.garden-map figcaption {
  padding: 14px 20px;
  margin-top: 14px;
  background: var(--mist);
  border-radius: 6px;
  font-size: 15px;
}

.market {
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  gap: 44px;
  align-items: center;
}

.market-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.market-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.market-copy h2 {
  margin-bottom: 22px;
}

.market-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.market-points span {
  display: block;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  text-align: center;
}

.trust {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.trust-content {
  display: grid;
  gap: 34px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.trust-list div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-list div:nth-child(2n) {
  border-right: 0;
}

.trust-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-list dt {
  margin-bottom: 10px;
  color: var(--river);
  font-weight: 700;
}

.trust-list dd {
  margin: 0;
  color: var(--ink);
}

.final-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 76px 72px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 61, 43, 0.98), rgba(18, 111, 120, 0.9)),
    var(--forest);
  overflow: hidden;
}

.final-inner {
  max-width: none;
}

.final-cta h2 {
  font-size: clamp(36px, 3.2vw, 46px);
  white-space: nowrap;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #2f3732;
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 34px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand span {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.34fr 1fr;
  gap: 28px;
  padding: 34px 0 30px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: background 200ms ease, border-color 200ms ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 2px;
  transition: color 200ms ease;
}

.contact-card:hover .contact-icon {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
}

.contact-card strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-legal a:hover,
.contact-card:hover strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger, 0) * 1ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-lede {
    font-size: 32px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .market,
  .trust,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .screen-gallery {
    grid-template-columns: repeat(6, minmax(136px, 1fr));
  }

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

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

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

  .feature-card:first-child {
    grid-column: span 1;
  }

  .feature-card:nth-child(3n) {
    border-right: 0;
  }

  .feature-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    height: 68px;
    padding: 0 18px;
    overflow: hidden;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 80px 0 188px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lede {
    max-width: 12em;
    font-size: 26px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    display: block;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .metric {
    font-size: 24px;
  }

  .section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .intro {
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .service-strip {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .screens-heading {
    grid-template-columns: 1fr;
  }

  .market-points,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .screen-gallery {
    grid-template-columns: repeat(6, minmax(132px, 1fr));
    margin-left: -18px;
    margin-right: -18px;
    padding: 18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .screen-card picture {
    border-radius: 22px;
  }

  .feature-list,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:first-child {
    grid-column: span 1;
  }

  .feature-card,
  .feature-card + .feature-card {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .feature-card:first-child {
    border-top: 0;
  }

  .trust-list div,
  .trust-list div:nth-child(2n),
  .trust-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-list div:last-child {
    border-bottom: 0;
  }

  .company-intro {
    margin-bottom: 34px;
    padding: 22px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .feature-card span {
    margin-bottom: 24px;
  }

  .market {
    gap: 28px;
  }

  .trust {
    gap: 28px;
  }

  .final-cta {
    width: calc(100% - 36px);
    margin-bottom: 44px;
    padding: 42px 24px;
  }

  .final-cta h2 {
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    width: calc(100% - 36px);
    padding: 40px 0 28px;
  }

  .footer-brand {
    display: grid;
    padding-bottom: 22px;
  }

  .footer-contact-grid {
    padding: 22px 0;
  }

  .contact-card {
    padding: 18px 14px;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .site-nav a,
  .nav-cta,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
