:root {
    --lime: #92cd27;
    --lime-bright: #a8df3b;
    --lime-soft: #eff8dd;
    --lime-pale: #f6f9ea;
    --forest: #173e2d;
    --forest-deep: #0e2d21;
    --ink: #18322a;
    --muted: #64736d;
    --white: #ffffff;
    --cream: #fafbf5;
    --line: #e5eade;
    --shadow: 0 28px 70px rgba(24, 50, 42, 0.12);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

main section[id] {
    scroll-margin-top: 74px;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

svg {
    display: block;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--forest);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #70a912;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -0.045em;
    line-height: 1.08;
}

h2 {
    max-width: 790px;
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4.2vw, 4.15rem);
    font-weight: 750;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button svg,
.text-link svg,
.site-footer__bottom svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.25s ease;
}

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

.button:hover svg,
.text-link:hover svg {
    transform: translateX(3px);
}

.button:focus-visible,
.nav-link:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(146, 205, 39, 0.42);
    outline-offset: 4px;
}

.button--small {
    min-height: 44px;
    padding: 12px 19px;
    font-size: 0.78rem;
}

.button--primary {
    color: var(--forest-deep);
    background: var(--lime);
    box-shadow: 0 12px 26px rgba(112, 169, 18, 0.22);
}

.button--primary:hover {
    background: var(--lime-bright);
    box-shadow: 0 15px 34px rgba(112, 169, 18, 0.3);
}

.button--ghost {
    border-color: rgba(24, 50, 42, 0.25);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(12px);
}

.button--ghost:hover {
    border-color: var(--forest);
    background: var(--white);
}

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

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

.button--outline-light:hover {
    color: var(--forest-deep);
    background: var(--white);
}

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

.button--ghost-dark {
    border-color: rgba(14, 45, 33, 0.35);
    color: var(--forest-deep);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5d9309;
    font-size: 0.9rem;
    font-weight: 800;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 88px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    height: 74px;
    border-color: rgba(24, 50, 42, 0.08);
    box-shadow: 0 10px 40px rgba(14, 45, 33, 0.08);
}

.nav-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 1px;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.brand-copy small {
    color: #6f8d7e;
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 9px 13px;
    color: #596a63;
    font-size: 0.78rem;
    font-weight: 750;
}

.nav-link::after {
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background: var(--lime);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
}

.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: var(--lime-soft);
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--forest);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 780px;
    padding-top: 88px;
    overflow: hidden;
    background: #d9ebf3;
}

.hero__image {
    position: absolute;
    inset: 88px 0 0;
    background-image:
        linear-gradient(90deg, rgba(248, 250, 245, 0.98) 0%, rgba(248, 250, 245, 0.91) 23%, rgba(248, 250, 245, 0.37) 51%, rgba(248, 250, 245, 0.02) 74%),
        linear-gradient(0deg, rgba(14, 45, 33, 0.18) 0%, transparent 32%),
        url("hero-smart-orchard-iot.webp");
    background-position: center;
    background-size: cover;
}

.hero__image::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 30px;
    background:
        radial-gradient(16px 10px at 8px 0, transparent 97%, var(--cream) 100%) 0 0 / 32px 22px repeat-x;
    content: "";
}

.hero__content {
    position: relative;
    display: flex;
    min-height: 692px;
    align-items: center;
}

.hero__copy {
    width: min(660px, 62%);
    padding: 78px 0 122px;
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 24px;
    color: #172f28;
    font-size: clamp(3.3rem, 5.8vw, 5.9rem);
    font-weight: 760;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    color: #699f15;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero h1 em::after {
    position: absolute;
    right: 4px;
    bottom: -5px;
    left: 4px;
    height: 9px;
    border-top: 2px solid var(--lime);
    border-radius: 50%;
    content: "";
    transform: rotate(-2deg);
}

.hero__copy > p {
    max-width: 590px;
    margin-bottom: 32px;
    color: #546760;
    font-size: 1.06rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__support {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.hero__support > span {
    max-width: 82px;
    color: #708079;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero__support-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__support-logos img:first-child {
    width: 74px;
    max-height: 32px;
    object-fit: contain;
}

.hero__support-logos img:nth-child(2) {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hero__support-logos img:nth-child(3) {
    width: 92px;
    max-height: 34px;
    object-fit: contain;
}

.hero__insight {
    position: absolute;
    bottom: 58px;
    left: 44%;
    display: flex;
    width: 340px;
    min-height: 110px;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px rgba(14, 45, 33, 0.16);
    backdrop-filter: blur(16px);
}

.hero__insight > img {
    width: 80px;
    height: 86px;
    border-radius: 11px;
    object-fit: cover;
    object-position: center 15%;
}

.hero__insight > div {
    display: grid;
    gap: 5px;
}

.hero__insight strong {
    max-width: 175px;
    font-size: 0.92rem;
    line-height: 1.25;
}

.hero__insight small {
    color: var(--muted);
    font-size: 0.67rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4d7e09;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(146, 205, 39, 0.16);
}

.hero__metric {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(14, 45, 33, 0.35);
}

.hero__metric strong {
    font-size: 3.2rem;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.hero__metric span {
    padding-bottom: 2px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
}

.section--about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.about-copy > p {
    max-width: 570px;
    margin-bottom: 28px;
    color: var(--muted);
}

.about-visual {
    position: relative;
    min-height: 510px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(246, 249, 234, 0.9)),
        radial-gradient(circle at 80% 20%, rgba(146, 205, 39, 0.34), transparent 35%);
    box-shadow: inset 0 0 0 1px rgba(24, 50, 42, 0.06);
}

.about-visual__orb {
    position: absolute;
    top: 72px;
    right: 55px;
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(92, 147, 9, 0.38);
    border-radius: 50%;
}

.about-visual__orb::before,
.about-visual__orb::after {
    position: absolute;
    border: 1px solid rgba(146, 205, 39, 0.28);
    border-radius: 50%;
    content: "";
}

.about-visual__orb::before {
    inset: 34px;
}

.about-visual__orb::after {
    inset: 72px;
    background: rgba(146, 205, 39, 0.11);
}

.phone-mockup {
    position: absolute;
    z-index: 2;
    bottom: -32px;
    left: 50%;
    width: 250px;
    height: 500px;
    padding: 9px;
    overflow: hidden;
    border: 7px solid #16241f;
    border-radius: 38px;
    background: #16241f;
    box-shadow: 0 30px 70px rgba(14, 45, 33, 0.28);
    transform: translateX(-50%) rotate(2deg);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center bottom;
}

.phone-mockup__speaker {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 50%;
    width: 68px;
    height: 18px;
    border-radius: 12px;
    background: #16241f;
    transform: translateX(-50%);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 195px;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.87);
    box-shadow: 0 18px 40px rgba(24, 50, 42, 0.12);
    backdrop-filter: blur(12px);
}

.floating-note--top {
    top: 84px;
    left: 25px;
}

.floating-note--bottom {
    right: 20px;
    bottom: 56px;
}

.floating-note > span:last-child {
    display: grid;
    gap: 2px;
}

.floating-note strong {
    font-size: 0.76rem;
    line-height: 1.2;
}

.floating-note small {
    color: var(--muted);
    font-size: 0.62rem;
}

.floating-note__icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    color: #659a11;
    background: var(--lime-soft);
}

.floating-note__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.signal-bars {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 9px;
    border-radius: 10px;
    background: var(--lime-soft);
}

.signal-bars i {
    width: 4px;
    border-radius: 3px;
    background: #6b9e18;
}

.signal-bars i:nth-child(1) {
    height: 6px;
}

.signal-bars i:nth-child(2) {
    height: 11px;
}

.signal-bars i:nth-child(3) {
    height: 16px;
}

.capability-strip {
    display: grid;
    margin-top: 100px;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
}

.capability-strip article {
    display: grid;
    gap: 6px;
    padding: 32px 6%;
    text-align: center;
}

.capability-strip article + article {
    border-left: 1px solid var(--line);
}

.capability-strip strong {
    color: #6ca10f;
    font-size: clamp(1.65rem, 2.8vw, 2.55rem);
    letter-spacing: -0.06em;
}

.capability-strip span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.purpose {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.purpose__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(14, 45, 33, 0.84), rgba(14, 45, 33, 0.95)),
        url("hero-smart-orchard-iot.webp");
    background-position: center 64%;
    background-size: cover;
    filter: saturate(0.78);
}

.purpose__backdrop::after {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.purpose__inner {
    position: relative;
}

.section-heading {
    margin-bottom: 62px;
}

.section-heading > p {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading--center {
    display: grid;
    justify-items: center;
    text-align: center;
}

.section-heading--center > p {
    margin-inline: auto;
}

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

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.66);
}

.purpose-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.purpose-flow::before {
    position: absolute;
    top: 64px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 223, 59, 0.7), transparent);
    content: "";
}

.purpose-step {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 0 18px;
    text-align: center;
}

.purpose-step > span {
    margin-bottom: 14px;
    color: var(--lime-bright);
    font-family: Georgia, serif;
    font-size: 0.72rem;
    font-style: italic;
}

.purpose-step > svg,
.purpose-step > img {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--lime-bright);
    background: rgba(14, 45, 33, 0.92);
    fill: none;
    object-fit: contain;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.purpose-step > img {
    padding: 8px;
    background: var(--lime-soft);
}

.purpose-step h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.purpose-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.77rem;
    line-height: 1.6;
}

.section--solutions {
    background: var(--white);
}

.solution-grid {
    display: grid;
    align-items: start;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.solution-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:nth-child(2),
.solution-card:nth-child(4) {
    margin-top: 52px;
}

.solution-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.solution-card__media {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: var(--lime-pale);
}

.solution-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.solution-card:hover .solution-card__media img {
    transform: scale(1.04);
}

.solution-card__media--screen img {
    object-position: center 16%;
}

.solution-card__media--dashboard img {
    object-position: top left;
}

.solution-card__number {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--forest-deep);
    background: var(--lime-bright);
    font-size: 0.68rem;
    font-weight: 900;
}

.solution-card__body {
    padding: 24px 22px 26px;
}

.solution-card__body > span {
    color: #6d9f1b;
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-card h3 {
    min-height: 48px;
    margin: 8px 0 12px;
    font-size: 1.18rem;
    line-height: 1.24;
}

.solution-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.field-cta {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.field-cta__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(14, 45, 33, 0.96) 0%, rgba(14, 45, 33, 0.8) 48%, rgba(14, 45, 33, 0.58) 100%),
        url("hero-smart-orchard-iot.webp");
    background-position: center 72%;
    background-size: cover;
}

.field-cta__inner {
    position: relative;
    display: grid;
    min-height: 470px;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1.1fr 0.9fr;
}

.field-cta h2 {
    max-width: 650px;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.field-cta__copy > p {
    max-width: 610px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.field-cta__actions {
    display: grid;
    gap: 30px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-cloud span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.field-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section--showcase {
    overflow: hidden;
    background: var(--cream);
}

.showcase-gallery {
    display: grid;
    align-items: center;
    padding: 30px 10px 45px;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}

.showcase-shot {
    position: relative;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(24, 50, 42, 0.1);
    transition: transform 0.3s ease;
}

.showcase-shot:hover {
    z-index: 3;
    transform: translateY(-8px) rotate(0deg) !important;
}

.showcase-shot img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 22%;
}

.showcase-shot figcaption {
    padding: 11px 4px 4px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 750;
    text-align: center;
}

.showcase-shot--one {
    transform: translateY(22px) rotate(-5deg);
}

.showcase-shot--two {
    transform: translateY(-6px) rotate(2deg);
}

.showcase-shot--center {
    z-index: 2;
    transform: translateY(-20px);
}

.showcase-shot--four {
    transform: translateY(-4px) rotate(-2deg);
}

.showcase-shot--five {
    transform: translateY(22px) rotate(5deg);
}

.section--access {
    background: var(--white);
}

.access-grid {
    display: grid;
    align-items: stretch;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-card {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.access-card__content {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 54px 0 54px 48px;
}

.access-card__label {
    color: #6b9e18;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.access-card h3 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.access-card p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.86rem;
}

.access-card ul {
    display: grid;
    margin: 0 0 30px;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.access-card li {
    position: relative;
    padding-left: 25px;
    color: #496058;
    font-size: 0.76rem;
}

.access-card li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: var(--forest-deep);
    background: var(--lime);
    content: "✓";
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 15px;
    text-align: center;
}

.access-card--mobile {
    border: 1px solid #e4ead8;
    background:
        radial-gradient(circle at 80% 22%, rgba(146, 205, 39, 0.24), transparent 27%),
        var(--lime-pale);
}

.access-card__device {
    position: absolute;
    right: -58px;
    bottom: -100px;
    width: 300px;
    height: 590px;
    padding: 9px;
    border: 7px solid #14241e;
    border-radius: 40px;
    background: #14241e;
    box-shadow: 0 30px 60px rgba(14, 45, 33, 0.25);
    transform: rotate(-4deg);
}

.access-card__device img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    object-position: center bottom;
}

.access-card--dashboard {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(146, 205, 39, 0.28), transparent 30%),
        var(--forest-deep);
}

.access-card--dashboard .access-card__label {
    color: var(--lime-bright);
}

.access-card--dashboard p,
.access-card--dashboard li {
    color: rgba(255, 255, 255, 0.65);
}

.access-card__dashboard {
    position: absolute;
    right: -180px;
    bottom: -115px;
    width: 470px;
    height: 390px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px 16px 0 0;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: rotate(-4deg);
}

.access-card__dashboard img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: top left;
}

.section--faq {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    align-items: start;
    gap: clamp(60px, 8vw, 120px);
    grid-template-columns: 0.78fr 1.22fr;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro > p {
    max-width: 450px;
    color: var(--muted);
}

.faq-illustration {
    position: relative;
    display: grid;
    width: 270px;
    height: 210px;
    margin-top: 34px;
    place-items: center;
}

.faq-illustration::before {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--lime-soft);
    content: "";
}

.faq-illustration img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 14px 24px rgba(24, 50, 42, 0.18));
}

.faq-leaf {
    position: absolute;
    z-index: 1;
    width: 70px;
    height: 105px;
    border-radius: 100% 0 100% 0;
    background: var(--lime);
}

.faq-leaf--one {
    top: 16px;
    right: 4px;
    transform: rotate(25deg);
}

.faq-leaf--two {
    bottom: 10px;
    left: 6px;
    background: #4c8d37;
    transform: rotate(-8deg);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
    border-color: rgba(146, 205, 39, 0.48);
    box-shadow: 0 15px 35px rgba(24, 50, 42, 0.07);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--lime-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--forest);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
    margin: -4px 62px 22px 24px;
    color: var(--muted);
    font-size: 0.82rem;
}

.start-section {
    padding: 0 0 98px;
    background: var(--cream);
}

.start-panel {
    position: relative;
    display: grid;
    min-height: 430px;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--lime);
    grid-template-columns: 1.05fr 0.95fr;
}

.start-panel__texture {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background-image:
        linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.25) 38%, rgba(255, 255, 255, 0.25) 39%, transparent 39%),
        radial-gradient(rgba(14, 45, 33, 0.35) 1px, transparent 1px);
    background-size: 120px 120px, 22px 22px;
    mask-image: linear-gradient(90deg, black, transparent 76%);
}

.start-panel__copy {
    position: relative;
    z-index: 2;
    padding: 70px;
}

.start-panel .eyebrow {
    color: var(--forest-deep);
}

.start-panel h2 {
    max-width: 670px;
    font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.start-panel__copy > p {
    max-width: 590px;
    color: rgba(14, 45, 33, 0.76);
}

.start-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.start-panel__visual {
    position: relative;
    align-self: stretch;
}

.start-phone {
    position: absolute;
    z-index: 2;
    top: 70px;
    left: 50%;
    width: 246px;
    height: 500px;
    padding: 8px;
    overflow: hidden;
    border: 7px solid var(--forest-deep);
    border-radius: 38px;
    background: var(--forest-deep);
    box-shadow: 0 35px 65px rgba(14, 45, 33, 0.28);
    transform: translateX(-50%) rotate(5deg);
}

.start-phone img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center bottom;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(14, 45, 33, 0.26);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit--one {
    width: 360px;
    height: 360px;
}

.orbit--two {
    width: 470px;
    height: 470px;
}

.partner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px 24px 0;
}

.partner-row > span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-row > div {
    display: flex;
    align-items: center;
    gap: 38px;
}

.partner-row img {
    max-width: 110px;
    max-height: 52px;
    object-fit: contain;
    filter: saturate(0.72);
}

.partner-row img:nth-child(2) {
    width: 50px;
}

.partner-row img:nth-child(3) {
    width: 105px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-deep);
}

.site-footer__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(14, 45, 33, 0.97), rgba(14, 45, 33, 0.88)),
        url("hero-smart-orchard-iot.webp");
    background-position: center 72%;
    background-size: cover;
}

.site-footer__inner {
    position: relative;
    padding: 82px 0 28px;
}

.site-footer__top {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr auto;
}

.brand--footer .brand-copy small {
    color: var(--lime-bright);
}

.footer-brand > p {
    max-width: 470px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.85rem;
}

.footer-links {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 8px;
    color: var(--lime-bright);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.47);
    font-size: 0.7rem;
}

.site-footer__bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__bottom svg {
    width: 15px;
    height: 15px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.solution-grid .reveal:nth-child(2),
.purpose-flow .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.solution-grid .reveal:nth-child(3),
.purpose-flow .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.solution-grid .reveal:nth-child(4),
.purpose-flow .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.purpose-flow .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

@media (max-width: 1100px) {
    .primary-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 9px;
    }

    .hero__copy {
        width: 66%;
    }

    .hero__insight {
        left: 38%;
    }

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

    .solution-card:nth-child(2),
    .solution-card:nth-child(4) {
        margin-top: 32px;
    }

    .access-card__content {
        width: 64%;
        padding-left: 38px;
    }

    .access-card__device {
        right: -100px;
    }

    .access-card__dashboard {
        right: -240px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 88px 0;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .nav-cta {
        margin-left: auto;
    }

    .primary-nav {
        position: fixed;
        top: 74px;
        right: 18px;
        left: 18px;
        display: grid;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-open .primary-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 16px;
        border-radius: 10px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.is-active {
        background: var(--lime-soft);
    }

    .nav-open .nav-toggle > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .nav-toggle > span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .nav-toggle > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        min-height: 830px;
    }

    .hero__image {
        background-image:
            linear-gradient(90deg, rgba(248, 250, 245, 0.98) 0%, rgba(248, 250, 245, 0.88) 39%, rgba(248, 250, 245, 0.16) 78%),
            linear-gradient(0deg, rgba(14, 45, 33, 0.36) 0%, transparent 36%),
            url("hero-smart-orchard-iot.webp");
        background-position: 58% center;
    }

    .hero__content {
        min-height: 742px;
    }

    .hero__copy {
        width: 77%;
        padding-top: 38px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 8.7vw, 5.2rem);
    }

    .hero__insight {
        bottom: 54px;
        left: 0;
    }

    .hero__metric {
        right: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        max-width: 680px;
    }

    .about-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .purpose-flow {
        gap: 34px 12px;
        grid-template-columns: repeat(3, 1fr);
    }

    .purpose-flow::before {
        display: none;
    }

    .field-cta__inner {
        padding: 80px 0;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .showcase-gallery {
        width: calc(100vw - 18px);
        margin-left: calc((100vw - min(calc(100vw - 36px), var(--container))) / -2);
        padding: 34px 18px 46px;
        overflow-x: auto;
        grid-template-columns: repeat(5, 220px);
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .showcase-shot {
        scroll-snap-align: center;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .access-card__content {
        width: 60%;
        padding-left: 52px;
    }

    .access-card__device {
        right: -20px;
    }

    .access-card__dashboard {
        right: -80px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }

    .faq-illustration {
        display: none;
    }

    .start-panel {
        grid-template-columns: 1fr;
    }

    .start-panel__copy {
        width: 68%;
        min-height: 570px;
        padding: 70px 0 70px 56px;
    }

    .start-panel__visual {
        position: absolute;
        inset: 0 0 0 62%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .site-header,
    .site-header.is-scrolled {
        height: 72px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand-copy strong {
        font-size: 0.98rem;
    }

    .brand-copy small {
        font-size: 0.53rem;
    }

    .nav-cta {
        display: none;
    }

    .primary-nav {
        top: 70px;
    }

    .hero {
        min-height: 850px;
        padding-top: 72px;
    }

    .hero__image {
        inset: 72px 0 0;
        background-image:
            linear-gradient(180deg, rgba(248, 250, 245, 0.95) 0%, rgba(248, 250, 245, 0.82) 44%, rgba(14, 45, 33, 0.22) 100%),
            url("hero-smart-orchard-iot.webp");
        background-position: 63% center;
    }

    .hero__content {
        display: block;
        min-height: 778px;
    }

    .hero__copy {
        width: 100%;
        padding: 68px 0 0;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 13vw, 4.2rem);
    }

    .hero__copy > p {
        font-size: 0.94rem;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__support {
        margin-top: 24px;
    }

    .hero__insight {
        right: 14px;
        bottom: 50px;
        left: 14px;
        width: auto;
        min-height: 92px;
    }

    .hero__insight > img {
        width: 66px;
        height: 68px;
    }

    .hero__metric {
        display: none;
    }

    h2 {
        font-size: clamp(2.1rem, 10.5vw, 3.2rem);
    }

    .about-grid {
        gap: 54px;
    }

    .about-visual {
        min-height: 480px;
    }

    .phone-mockup {
        width: 220px;
        height: 450px;
    }

    .floating-note {
        min-width: 170px;
        padding: 10px;
    }

    .floating-note--top {
        top: 24px;
        left: 5px;
    }

    .floating-note--bottom {
        right: 3px;
        bottom: 28px;
    }

    .capability-strip {
        margin-top: 78px;
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-strip article:nth-child(3),
    .capability-strip article:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .capability-strip article:nth-child(3) {
        border-left: 0;
    }

    .purpose {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .purpose-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .purpose-step {
        padding-inline: 8px;
    }

    .purpose-step--brand {
        grid-column: span 2;
        padding-inline: 25%;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card:nth-child(2),
    .solution-card:nth-child(4) {
        margin-top: 0;
    }

    .solution-card__media {
        height: 330px;
    }

    .field-cta__inner {
        padding: 70px 0;
    }

    .field-cta__buttons {
        display: grid;
    }

    .showcase-gallery {
        margin-left: -14px;
        grid-template-columns: repeat(5, 190px);
    }

    .showcase-shot img {
        height: 320px;
    }

    .access-card {
        min-height: 760px;
    }

    .access-card__content {
        width: 100%;
        padding: 38px 28px;
    }

    .access-card__device {
        right: 50%;
        bottom: -260px;
        width: 260px;
        height: 520px;
        transform: translateX(50%) rotate(-3deg);
    }

    .access-card__dashboard {
        right: -10%;
        bottom: -75px;
        width: 120%;
        height: 320px;
        transform: rotate(-2deg);
    }

    .faq-list summary {
        padding: 19px;
        font-size: 0.86rem;
    }

    .faq-list details p {
        margin: -2px 54px 20px 19px;
    }

    .start-section {
        padding-bottom: 70px;
    }

    .start-panel {
        min-height: 780px;
    }

    .start-panel__copy {
        width: 100%;
        min-height: 0;
        padding: 48px 28px;
        align-self: start;
    }

    .start-panel__actions {
        display: grid;
    }

    .start-panel__visual {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        height: 330px;
    }

    .start-phone {
        top: 22px;
        width: 210px;
        height: 420px;
    }

    .orbit--one {
        width: 300px;
        height: 300px;
    }

    .orbit--two {
        width: 390px;
        height: 390px;
    }

    .partner-row {
        align-items: flex-start;
        padding-inline: 4px;
        flex-direction: column;
    }

    .partner-row > div {
        width: 100%;
        justify-content: space-between;
        gap: 18px;
    }

    .partner-row img {
        max-width: 90px;
        max-height: 45px;
    }

    .site-footer__inner {
        padding-top: 64px;
    }

    .site-footer__top {
        gap: 52px;
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 36px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        margin-top: 52px;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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