:root {
    --ink: #173126;
    --muted: #637268;
    --line: #dfe7e1;
    --soft: #f3f7f1;
    --soft-2: #eef4f6;
    --green: #1d7a4b;
    --green-2: #43a36f;
    --gold: #c28b23;
    --white: #fff;
    --shadow: 0 20px 50px rgba(29, 66, 48, .14);
    --anchor-offset: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #fbfcfa;
    line-height: 1.68;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 5vw, 72px);
    background: rgba(251, 252, 250, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(223, 231, 225, .75);
}

.site-header.solid {
    background: rgba(255, 255, 255, .96);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--ink);
    min-width: 0;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 15px;
    color: #2d4d3d;
}

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

.site-nav a.is-active,
.site-nav a[aria-current="true"] {
    color: var(--green);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 9px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: clamp(24px, 5vw, 72px);
    padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px) 50px;
    align-items: center;
    overflow: hidden;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

.hero-text {
    margin: 24px 0 0;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(29, 122, 75, .2);
}

.btn-primary:hover {
    background: #176940;
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .7);
    color: var(--ink);
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    color: #fff;
    background: rgba(16, 48, 34, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

.hero-slide-caption strong {
    display: block;
    font-size: 20px;
}

.hero-slide-caption span {
    display: block;
    margin-top: 4px;
    opacity: .86;
}

.hero-slide-caption a {
    display: inline-block;
    margin-top: 10px;
    color: #d9f7e6;
    font-weight: 700;
}

.hero-dots {
    position: absolute;
    right: 24px;
    top: 24px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 28px;
    height: 4px;
    border-radius: 99px;
    border: 0;
    background: rgba(255, 255, 255, .58);
    padding: 0;
    cursor: pointer;
}

.hero-dots button.is-active {
    background: #fff;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0 clamp(18px, 5vw, 72px);
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.stats-band div {
    background: #fff;
    padding: 26px;
}

.stats-band strong {
    display: block;
    color: var(--green);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.stats-band span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

.stats-band p {
    margin: 6px 0 0;
    color: var(--muted);
}

.section {
    padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.muted {
    background: var(--soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2,
.feature-copy h2,
.about h2,
.contact-info h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
}

.section-head p:not(.eyebrow),
.feature-copy p,
.about-content p,
.contact-info p {
    color: var(--muted);
    font-size: 17px;
}

.row-head {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
}

.text-link {
    color: var(--green);
    font-weight: 700;
}

.news-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(18, 129, 84, .22);
    border-radius: 8px;
    background: rgba(18, 129, 84, .08);
    color: var(--green);
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.news-all-link:hover,
.news-all-link:focus-visible {
    border-color: rgba(18, 129, 84, .34);
    background: var(--green);
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(23, 49, 38, .06);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card div {
    padding: 22px;
}

.service-card span,
.article-card span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.service-card h3,
.solution-grid h3,
.article-card h3 {
    margin: 8px 0 10px;
    font-size: 21px;
    line-height: 1.3;
}

.service-card p,
.solution-grid p,
.article-card p {
    margin: 0;
    color: var(--muted);
}

.feature-band {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    padding: clamp(64px, 8vw, 100px) clamp(18px, 5vw, 72px);
    background: #173126;
    color: #fff;
}

.feature-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

.feature-copy p {
    color: rgba(255, 255, 255, .74);
}

.feature-copy ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.feature-copy li {
    padding-left: 22px;
    position: relative;
    color: rgba(255, 255, 255, .88);
}

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

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.solution-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    min-height: 190px;
}

.about {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
}

.process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.process-list span {
    background: var(--soft-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 14px;
    color: #305342;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.article-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.article-card a {
    display: block;
    height: 100%;
    padding-bottom: 20px;
}

.article-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    margin-bottom: 18px;
}

.article-card span,
.article-card h3,
.article-card p {
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
}

.empty-text {
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(24px, 5vw, 70px);
    padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
    background: var(--soft-2);
}

.contact-info dl {
    margin: 26px 0;
    display: grid;
    gap: 14px;
}

.contact-info dt {
    color: var(--muted);
    font-size: 13px;
}

.contact-info dd {
    margin: 2px 0 0;
    font-weight: 700;
}

.qr {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.consult-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(20px, 4vw, 34px);
    box-shadow: 0 12px 30px rgba(23, 49, 38, .08);
    display: grid;
    gap: 16px;
}

.consult-form-title {
    display: none;
}

.consult-form label {
    display: grid;
    gap: 7px;
    color: #315342;
    font-weight: 700;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.consult-form textarea {
    resize: vertical;
}

.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-feedback {
    margin: 0;
    color: var(--green);
    font-weight: 700;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 30px clamp(18px, 5vw, 72px);
    background: #10251b;
    color: rgba(255, 255, 255, .84);
}

.site-footer strong {
    color: #fff;
}

.site-footer p {
    margin: 6px 0 0;
}

.page-main,
.article-main {
    padding-top: 0;
}

.page-hero {
    padding: 74px clamp(18px, 5vw, 72px) 42px;
    background: linear-gradient(180deg, #f3f7f1, #fbfcfa);
}

.page-hero.compact {
    min-height: 260px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-tabs a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 14px;
    background: #fff;
    color: #385747;
}

.category-tabs a.is-active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

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

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.page-link,
.page-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: #385747;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.page-link.is-active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.page-link.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.page-total {
    color: var(--muted);
    font-weight: 600;
}

.article-detail {
    max-width: 920px;
    margin: 0 auto;
    padding: 74px 18px 30px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.article-meta a {
    color: var(--green);
    font-weight: 700;
}

.article-detail h1 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.16;
}

.article-summary {
    color: var(--muted);
    font-size: 18px;
}

.article-cover {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    margin: 28px 0;
}

.article-content {
    color: #263d32;
    font-size: 17px;
    overflow-wrap: anywhere;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 18px auto;
}

.article-content p {
    margin: 0 0 1em;
}

.related-section {
    padding-top: 42px;
}

@media (max-width: 980px) {
    :root {
        --anchor-offset: 80px;
    }

    .site-header {
        gap: 10px;
    }

    .site-nav {
        position: static;
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        overflow-x: auto;
        overflow-y: hidden;
        background: transparent;
        border-bottom: 0;
        padding: 0;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

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

    .site-nav a {
        flex: 0 0 auto;
        width: auto;
        min-height: 36px;
        padding: 7px 8px;
        border-radius: 8px;
        color: #315342;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.25;
    }

    .site-nav a.is-active,
    .site-nav a[aria-current="true"] {
        background: rgba(18, 129, 84, .1);
        color: var(--green);
        box-shadow: inset 0 0 0 1px rgba(18, 129, 84, .18);
    }

    .nav-toggle {
        display: none;
    }

    .hero,
    .feature-band,
    .about,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        min-height: 420px;
    }

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

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

@media (max-width: 640px) {
    .site-header {
        height: 64px;
        gap: 8px;
        padding: 0 8px;
    }

    .brand {
        display: none;
    }

    .site-nav {
        display: grid;
        flex: 1 1 100%;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: 100%;
        top: auto;
        gap: 4px;
        overflow: visible;
    }

    .site-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 34px;
        padding: 6px 2px;
        font-size: 12px;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .hero-media {
        min-height: 330px;
    }

    .stats-band,
    .service-grid,
    .solution-grid,
    .article-grid,
    .page-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        margin: 0 16px;
    }

    .section,
    .feature-band,
    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .row-head,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
    }

    .news-head>div {
        min-width: 0;
    }

    .news-all-link {
        flex: 0 0 auto;
        min-height: 38px;
        margin-bottom: 3px;
        padding: 0 12px;
        font-size: 14px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

:root {
    --ink: #10251b;
    --muted: #5f7068;
    --line: #dce8e1;
    --soft: #f3f9f2;
    --soft-2: #eef8f6;
    --green: #128154;
    --green-2: #31b676;
    --cyan: #0ea7a5;
    --lime: #b7df50;
    --gold: #d99b27;
    --white: #fff;
    --shadow: 0 24px 70px rgba(22, 70, 49, .16);
}

body {
    background:
        linear-gradient(180deg, rgba(241, 249, 241, .94), rgba(255, 255, 250, .98) 42%, rgba(239, 248, 246, .96)),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .045) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .04) 0 1px, transparent 1px 92px);
}

.site-header {
    height: 78px;
    background: rgba(247, 253, 248, .78);
    border-bottom-color: rgba(17, 82, 57, .12);
    box-shadow: 0 12px 34px rgba(15, 55, 38, .06);
}

.site-header.solid {
    background: rgba(255, 255, 255, .9);
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(18, 129, 84, .14);
}

.brand span {
    font-size: 16px;
    letter-spacing: 0;
}

.site-nav {
    gap: 8px;
    color: #284c3d;
}

.site-nav a {
    border-radius: 8px;
    padding: 9px 12px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover {
    background: rgba(18, 129, 84, .1);
    color: var(--green);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 78px);
    grid-template-columns: minmax(430px, .98fr) minmax(380px, 1.02fr);
    gap: clamp(24px, 4vw, 58px);
    padding-top: clamp(58px, 8vw, 106px);
    padding-bottom: clamp(72px, 9vw, 118px);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.hero::before {
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .72) 0 38%, rgba(232, 248, 239, .62) 38% 68%, rgba(224, 247, 247, .52) 68%),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .07) 0 1px, transparent 1px 76px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .06) 0 1px, transparent 1px 76px);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero::after {
    right: 0;
    bottom: 0;
    width: min(48vw, 680px);
    height: min(36vw, 520px);
    background:
        linear-gradient(135deg, transparent 0 18%, rgba(18, 129, 84, .12) 18% 19%, transparent 19% 38%, rgba(14, 167, 165, .12) 38% 39%, transparent 39% 100%);
    opacity: .72;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1,
.page-hero h1 {
    color: #0c251a;
    max-width: 820px;
    text-wrap: balance;
}

.hero-copy h1 {
    font-size: clamp(38px, 5.2vw, 66px);
}

.hero-copy h1 {
    margin-top: 16px;
}

.eyebrow {
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero-badges,
.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.contact-tags span {
    border: 1px solid rgba(18, 129, 84, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    color: #255343;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(18, 129, 84, .08);
}

.hero-text {
    color: #526d62;
    font-size: clamp(18px, 2vw, 22px);
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #128154, #16a873 58%, #0ea7a5);
    box-shadow: 0 16px 34px rgba(18, 129, 84, .28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f744b, #119a69 58%, #0a918f);
}

.btn-ghost {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(18, 129, 84, .2);
    color: #183a2c;
    box-shadow: 0 12px 26px rgba(18, 80, 54, .08);
}

.btn-ghost:hover {
    border-color: rgba(14, 167, 165, .5);
    color: var(--green);
    transform: translateY(-1px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
    max-width: 680px;
}

.hero-metrics div {
    min-height: 98px;
    padding: 18px;
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 18px 40px rgba(18, 70, 48, .08);
}

.hero-metrics strong {
    display: block;
    color: var(--green);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: 10px;
    color: #5a6e65;
    font-size: 14px;
    font-weight: 700;
}

.hero-media-wrap {
    position: relative;
    min-height: 570px;
}

.hero-media {
    position: absolute;
    inset: 0 0 34px 0;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 8px;
    background: #0f2c22;
    box-shadow: 0 30px 90px rgba(15, 73, 50, .25);
}

.hero-media::before,
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-media::before {
    background:
        linear-gradient(180deg, rgba(10, 35, 26, .08), rgba(10, 35, 26, .32)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 7px);
    mix-blend-mode: screen;
    opacity: .36;
}

.hero-media::after {
    background: linear-gradient(90deg, rgba(183, 223, 80, .08), transparent 35% 65%, rgba(14, 167, 165, .1));
}

.hero-slide-caption {
    z-index: 5;
    left: 24px;
    right: auto;
    top: 24px;
    bottom: auto;
    width: min(82%, 430px);
    background: rgba(9, 36, 26, .76);
    border-color: rgba(184, 255, 221, .18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.hero-slide-caption strong {
    font-size: 22px;
}

.hero-slide-caption span {
    color: rgba(240, 255, 248, .8);
}

.hero-slide-caption a {
    color: #bff7db;
}

.hero-dots {
    z-index: 6;
    right: 24px;
    top: 24px;
}

.hero-dots button {
    height: 5px;
    background: rgba(255, 255, 255, .5);
}

.hero-dots button.is-active {
    background: var(--lime);
}

.hero-console {
    position: absolute;
    z-index: 7;
    right: clamp(16px, 4vw, 54px);
    bottom: 0;
    width: min(82%, 410px);
    border: 1px solid rgba(191, 247, 219, .28);
    border-radius: 8px;
    padding: 18px;
    color: #eafff4;
    background: rgba(7, 35, 26, .82);
    box-shadow: 0 22px 60px rgba(4, 25, 18, .34);
    backdrop-filter: blur(18px);
}

.console-head,
.console-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.console-head span {
    color: rgba(234, 255, 244, .72);
    font-size: 13px;
    text-transform: uppercase;
}

.console-head strong {
    border-radius: 8px;
    background: rgba(183, 223, 80, .16);
    color: var(--lime);
    padding: 5px 8px;
    font-size: 12px;
}

.console-grid {
    margin-top: 16px;
}

.console-grid div {
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, .14);
    padding-left: 12px;
}

.console-grid span,
.console-grid strong {
    display: block;
}

.console-grid span {
    color: rgba(234, 255, 244, .62);
    font-size: 12px;
}

.console-grid strong {
    margin-top: 4px;
    font-size: 18px;
}

.console-line {
    height: 7px;
    margin-top: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
}

.console-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lime), var(--cyan));
    animation: consolePulse 2.8s ease-in-out infinite;
}

.stats-band {
    position: relative;
    z-index: 3;
    margin-top: -38px;
    border-color: rgba(18, 129, 84, .14);
    background: rgba(18, 129, 84, .14);
    box-shadow: 0 20px 55px rgba(18, 70, 49, .12);
}

.stats-band div {
    background: rgba(255, 255, 255, .88);
    padding: 30px;
}

.stats-band strong {
    color: var(--green);
}

.stats-band p {
    color: #607469;
}

.section {
    position: relative;
}

.section-head h2,
.feature-copy h2,
.about h2,
.contact-info h2 {
    color: #0c251a;
    text-wrap: balance;
}

.section-head p:not(.eyebrow),
.feature-copy p,
.about-content p,
.contact-info p {
    color: #5b7066;
}

.ai-flow {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
    color: #eafff4;
    background:
        linear-gradient(135deg, rgba(11, 41, 30, .98), rgba(12, 68, 52, .96) 58%, rgba(10, 73, 72, .94)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .08) 0 1px, transparent 1px 88px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .08) 0 1px, transparent 1px 88px);
}

.ai-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 38%, rgba(183, 223, 80, .08) 38% 39%, transparent 39% 58%, rgba(14, 167, 165, .08) 58% 59%, transparent 59%);
    pointer-events: none;
}

.ai-flow .section-head {
    position: relative;
    max-width: 820px;
}

.ai-flow .section-head h2,
.ai-flow .section-head p:not(.eyebrow) {
    color: inherit;
}

.ai-flow .section-head p:not(.eyebrow) {
    color: rgba(234, 255, 244, .72);
}

.flow-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.flow-grid article {
    min-height: 230px;
    border: 1px solid rgba(210, 255, 232, .16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, .07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
}

.flow-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(183, 223, 80, .4);
    border-radius: 8px;
    color: var(--lime);
    font-weight: 800;
}

.flow-grid h3 {
    margin: 28px 0 10px;
    font-size: 22px;
}

.flow-grid p {
    margin: 0;
    color: rgba(234, 255, 244, .7);
}

.service-grid {
    counter-reset: service;
}

.service-card,
.article-card,
.solution-grid article,
.consult-form {
    border-color: rgba(18, 129, 84, .14);
    box-shadow: 0 18px 42px rgba(17, 66, 45, .08);
}

.service-card,
.article-card,
.solution-grid article {
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.article-card:hover,
.solution-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 167, 165, .32);
    box-shadow: 0 26px 58px rgba(17, 66, 45, .13);
}

.service-card::before {
    counter-increment: service;
    content: "0" counter(service);
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 8px;
    background: rgba(6, 35, 25, .48);
    color: #eafff4;
    padding: 6px 10px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.service-card img,
.article-card img {
    filter: saturate(1.08) contrast(1.02);
    transition: transform .35s ease;
}

.service-card:hover img,
.article-card:hover img {
    transform: scale(1.035);
}

.service-card div {
    position: relative;
    background:
        linear-gradient(180deg, #fff, rgba(247, 252, 249, .96)),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .05) 0 1px, transparent 1px 42px);
}

.service-card span,
.article-card span {
    color: var(--cyan);
}

.feature-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #0d261c, #143a2b 48%, #0b3e43),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .08) 0 1px, transparent 1px 80px);
}

.feature-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 0 48%, rgba(183, 223, 80, .08) 48% 49%, transparent 49% 100%);
}

.feature-band>* {
    position: relative;
    z-index: 1;
}

.feature-band .eyebrow,
.feature-copy h2,
.feature-copy p,
.feature-copy li {
    color: #eafff4;
}

.feature-copy p {
    color: rgba(234, 255, 244, .72);
}

.feature-copy li {
    color: rgba(234, 255, 244, .88);
}

.feature-image {
    position: relative;
}

.feature-image img {
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.sensor-stack {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 9px;
    width: min(78%, 260px);
    color: #eafff4;
}

.sensor-stack span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(210, 255, 232, .2);
    border-radius: 8px;
    background: rgba(7, 35, 26, .72);
    padding: 10px 12px;
    backdrop-filter: blur(12px);
}

.sensor-stack strong {
    color: var(--lime);
}

.feature-copy li::before {
    border-radius: 2px;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.muted {
    background:
        linear-gradient(180deg, #f0f8f1, #f8fbf8),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .055) 0 1px, transparent 1px 82px);
}

.solution-grid article::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--green-2), var(--cyan));
    margin-bottom: 22px;
}

.about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(245, 251, 247, .9)),
        repeating-linear-gradient(90deg, rgba(14, 167, 165, .04) 0 1px, transparent 1px 84px);
}

.process-list span {
    background: rgba(255, 255, 255, .82);
    border-color: rgba(18, 129, 84, .14);
    box-shadow: 0 12px 28px rgba(18, 70, 49, .07);
}

.article-card {
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
}

.article-card a {
    overflow: hidden;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 38, 28, .98), rgba(15, 73, 54, .94) 54%, rgba(14, 83, 84, .92)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .07) 0 1px, transparent 1px 88px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .07) 0 1px, transparent 1px 88px);
    color: #eafff4;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, .06) 0 12%, transparent 12% 70%, rgba(183, 223, 80, .06) 70% 71%, transparent 71%);
}

.contact-section>* {
    position: relative;
    z-index: 1;
}

.contact-info h2,
.contact-info p,
.contact-info dd {
    color: #eafff4;
}

.contact-info dt {
    color: rgba(234, 255, 244, .58);
}

.contact-tags {
    margin-top: 22px;
}

.contact-tags span {
    border-color: rgba(210, 255, 232, .2);
    background: rgba(255, 255, 255, .08);
    color: #eafff4;
    box-shadow: none;
}

.consult-form {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.consult-form input,
.consult-form textarea {
    border-color: rgba(18, 129, 84, .18);
    background: rgba(255, 255, 255, .86);
}

.consult-form input:focus,
.consult-form textarea:focus {
    outline: 2px solid rgba(14, 167, 165, .16);
    border-color: rgba(14, 167, 165, .58);
}

.site-footer {
    background: #081c14;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(241, 249, 241, .98), rgba(235, 249, 247, .98)),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .06) 0 1px, transparent 1px 84px);
}

.category-tabs a {
    box-shadow: 0 10px 24px rgba(18, 70, 49, .06);
}

.category-tabs a.is-active {
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.article-detail {
    padding-top: 92px;
}

.article-cover,
.article-content img {
    box-shadow: 0 18px 48px rgba(17, 66, 45, .1);
}

@keyframes consolePulse {

    0%,
    100% {
        opacity: .78;
        transform: translateX(-2%);
    }

    50% {
        opacity: 1;
        transform: translateX(2%);
    }
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: minmax(390px, 1fr) minmax(340px, .95fr);
    }

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

@media (max-width: 980px) {
    .site-header {
        height: 72px;
    }

    .site-nav {
        top: 72px;
        background: rgba(255, 255, 255, .96);
        padding: 14px 18px 18px;
    }

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

    .hero-media-wrap {
        min-height: 520px;
    }

    .hero-media {
        bottom: 42px;
    }

    .stats-band {
        margin-top: 0;
    }
}

@media (max-width: 720px) {

    .hero-metrics,
    .flow-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .hero-media-wrap {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .hero-media {
        position: relative;
        inset: auto;
        min-height: 360px;
    }

    .hero-console {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    .hero-slide-caption {
        left: 14px;
        right: 14px;
        top: 14px;
        bottom: auto;
        width: auto;
    }

    .sensor-stack {
        position: static;
        width: 100%;
        margin-top: 12px;
    }
}

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

    .site-nav {
        top: 64px;
    }

    .hero {
        padding-top: 34px;
        padding-bottom: 52px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 35px;
    }

    .hero-badges span,
    .contact-tags span {
        padding: 7px 10px;
    }

    .hero-metrics div,
    .stats-band div,
    .flow-grid article,
    .solution-grid article {
        padding: 20px;
    }

    .hero-media {
        min-height: 320px;
    }

    .console-grid {
        align-items: stretch;
    }

    .console-grid div {
        padding-left: 9px;
    }
}

.hero-badges {
    max-width: 720px;
}

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

.console-feed {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.console-feed p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(234, 255, 244, .74);
    font-size: 13px;
}

.console-feed span {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--lime);
    box-shadow: 0 0 14px rgba(183, 223, 80, .7);
}

.ai-flow-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: end;
}

.flow-lab {
    position: relative;
    border: 1px solid rgba(210, 255, 232, .18);
    border-radius: 8px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 34px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 24px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.flow-lab::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 66px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 223, 80, .72), transparent);
}

.flow-lab-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(234, 255, 244, .72);
    font-size: 13px;
    text-transform: uppercase;
}

.flow-lab-head strong {
    border-radius: 8px;
    background: rgba(183, 223, 80, .16);
    color: var(--lime);
    padding: 5px 9px;
}

.flow-lab-screen {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 18px;
}

.flow-lab-screen div {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 14px;
    background: rgba(8, 32, 24, .52);
}

.flow-lab-screen span,
.flow-lab-screen strong {
    display: block;
}

.flow-lab-screen span {
    color: rgba(234, 255, 244, .58);
    font-size: 12px;
}

.flow-lab-screen strong {
    margin-top: 5px;
    color: #fff;
    font-size: 17px;
}

.flow-lab p {
    margin: 0;
    color: rgba(234, 255, 244, .68);
}

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

.flow-grid article {
    min-height: 248px;
}

.intelligence-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(239, 248, 246, .92)),
        repeating-linear-gradient(90deg, rgba(14, 167, 165, .05) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(18, 129, 84, .045) 0 1px, transparent 1px 84px);
}

.intelligence-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 0 28%, rgba(18, 129, 84, .08) 28% 29%, transparent 29% 66%, rgba(14, 167, 165, .08) 66% 67%, transparent 67%);
}

.intelligence-section>* {
    position: relative;
    z-index: 1;
}

.intelligence-copy h2,
.platform-section h2,
.delivery-section h2 {
    margin: 0;
    color: #0c251a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
    text-wrap: balance;
}

.intelligence-copy p {
    margin: 22px 0 0;
    color: #5b7066;
    font-size: 17px;
}

.intelligence-points,
.insight-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.intelligence-points {
    margin-top: 28px;
}

.intelligence-points span,
.insight-strip span,
.insight-strip a {
    border: 1px solid rgba(18, 129, 84, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    color: #234c3c;
    padding: 9px 12px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(18, 70, 49, .07);
}

.ops-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ops-board article {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 52px rgba(17, 66, 45, .1);
}

.ops-board article::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-2), var(--cyan), var(--lime));
}

.ops-board article::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -24px;
    width: 130px;
    height: 90px;
    border: 1px solid rgba(14, 167, 165, .18);
    transform: skewX(-18deg);
}

.ops-board span,
.ops-board strong,
.ops-board p {
    position: relative;
    z-index: 1;
    display: block;
}

.ops-board span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.ops-board strong {
    margin-top: 18px;
    color: #0c251a;
    font-size: 22px;
    line-height: 1.25;
}

.ops-board p {
    margin: 12px 0 0;
    color: #607469;
}

.trace-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 4px;
}

.trace-metrics div {
    border: 1px solid rgba(210, 255, 232, .18);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .07);
}

.trace-metrics strong,
.trace-metrics span {
    display: block;
}

.trace-metrics strong {
    color: #fff;
}

.trace-metrics span {
    margin-top: 4px;
    color: rgba(234, 255, 244, .68);
    font-size: 13px;
}

.solution-grid article span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.platform-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, #fbfdfa, #eef8f6),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .05) 0 1px, transparent 1px 84px);
}

.platform-section .row-head>p {
    max-width: 520px;
    margin: 0;
    color: #5b7066;
    font-size: 17px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pillar-grid article {
    position: relative;
    min-height: 260px;
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 44px rgba(17, 66, 45, .08);
}

.pillar-grid article::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--green-2), transparent);
}

.pillar-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #0d2d20;
    color: var(--lime);
    font-weight: 800;
}

.pillar-grid h3 {
    margin: 28px 0 10px;
    color: #0c251a;
    font-size: 22px;
}

.pillar-grid p {
    margin: 0;
    color: #607469;
}

.about {
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
}

.about-intro {
    position: sticky;
    top: 104px;
}

.about-kpis {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.about-kpis div {
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(17, 66, 45, .08);
}

.about-kpis strong,
.about-kpis span {
    display: block;
}

.about-kpis strong {
    color: var(--green);
    font-size: 24px;
    line-height: 1;
}

.about-kpis span {
    margin-top: 8px;
    color: #607469;
    font-weight: 700;
}

.about-lead {
    margin-top: 0;
    padding: 22px;
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 38px rgba(17, 66, 45, .07);
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.about-highlight-grid article {
    border: 1px solid rgba(18, 129, 84, .14);
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(17, 66, 45, .07);
}

.about-highlight-grid h3 {
    margin: 0 0 10px;
    color: #0c251a;
    font-size: 20px;
}

.about-highlight-grid p {
    margin: 0;
    color: #607469;
}

.delivery-section {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
    color: #eafff4;
    background:
        linear-gradient(135deg, rgba(8, 28, 20, .98), rgba(12, 64, 48, .96) 54%, rgba(13, 72, 72, .92)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .07) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .07) 0 1px, transparent 1px 84px);
}

.delivery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, .07) 18% 19%, transparent 19% 58%, rgba(183, 223, 80, .08) 58% 59%, transparent 59%);
}

.delivery-section>* {
    position: relative;
    z-index: 1;
}

.delivery-section h2,
.delivery-section .section-head p:not(.eyebrow) {
    color: #eafff4;
}

.delivery-section .section-head p:not(.eyebrow) {
    color: rgba(234, 255, 244, .72);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.delivery-grid article {
    min-height: 230px;
    border: 1px solid rgba(210, 255, 232, .16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, .07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
}

.delivery-grid span {
    display: inline-flex;
    border: 1px solid rgba(183, 223, 80, .4);
    border-radius: 8px;
    color: var(--lime);
    padding: 6px 10px;
    font-weight: 800;
}

.delivery-grid h3 {
    margin: 28px 0 10px;
    color: #fff;
    font-size: 22px;
}

.delivery-grid p {
    margin: 0;
    color: rgba(234, 255, 244, .7);
}

.insight-strip {
    margin: -10px 0 28px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.insight-strip::-webkit-scrollbar {
    display: none;
}

.insight-strip a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.insight-strip a:hover,
.insight-strip a:focus-visible,
.insight-strip a.is-active {
    border-color: rgba(18, 129, 84, .38);
    background: rgba(18, 129, 84, .12);
    color: var(--green);
    outline: none;
}

.insight-strip a.is-loading {
    opacity: .68;
    pointer-events: none;
}

.article-grid.is-updating {
    opacity: .58;
}

.contact-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.contact-promise-grid div {
    border: 1px solid rgba(210, 255, 232, .16);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .08);
}

.contact-promise-grid strong,
.contact-promise-grid span {
    display: block;
}

.contact-promise-grid strong {
    color: var(--lime);
    font-size: 22px;
    line-height: 1;
}

.contact-promise-grid span {
    margin-top: 8px;
    color: rgba(234, 255, 244, .74);
    font-weight: 700;
}

@media (max-width: 1180px) {

    .hero-metrics,
    .flow-grid,
    .pillar-grid,
    .delivery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intelligence-section,
    .ai-flow-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-intro {
        position: static;
    }

    .about-intro,
    .about-content {
        min-width: 0;
    }

    .ops-board,
    .about-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intelligence-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .hero-metrics,
    .flow-grid,
    .ops-board,
    .trace-metrics,
    .pillar-grid,
    .about-highlight-grid,
    .delivery-grid,
    .contact-promise-grid {
        grid-template-columns: 1fr;
    }

    .flow-lab-screen {
        grid-template-columns: 1fr;
    }

    .intelligence-section,
    .delivery-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* 2026-05-15 rich visual refinement */
.hero-metrics {
    gap: 10px;
    margin-top: 26px;
}

.hero-metrics div {
    min-height: 78px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-metrics strong {
    flex: 0 0 auto;
    font-size: clamp(24px, 2.5vw, 30px);
}

.hero-metrics .metric-label {
    flex: 0 0 auto;
    display: grid;
    justify-items: center;
    margin-top: 0;
    font-size: 12px;
    line-height: 1.28;
    text-align: center;
    white-space: normal;
}

.hero-metrics .metric-label em {
    display: block;
    font-style: normal;
    white-space: nowrap;
}

.hero-media-wrap::before,
.hero-media-wrap::after {
    content: "";
    position: absolute;
    z-index: 8;
    pointer-events: none;
}

.hero-media-wrap::before {
    left: -18px;
    top: 42px;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(14, 167, 165, .34);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.hero-media-wrap::after {
    right: -12px;
    top: 118px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 223, 80, .86));
    box-shadow: 0 28px 0 rgba(14, 167, 165, .38), -42px 56px 0 rgba(18, 129, 84, .24);
}

.intelligence-section::after,
.platform-section::after,
.about::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(14, 167, 165, .12);
    transform: skewX(-18deg);
}

.intelligence-section::after {
    right: clamp(18px, 7vw, 120px);
    top: 74px;
    width: 180px;
    height: 46px;
}

.platform-section::after {
    left: clamp(18px, 6vw, 100px);
    bottom: 64px;
    width: 220px;
    height: 64px;
}

.about {
    overflow: hidden;
}

.about::after {
    right: clamp(18px, 5vw, 80px);
    top: 62px;
    width: 140px;
    height: 42px;
}

.ops-board article,
.pillar-grid article,
.about-highlight-grid article,
.delivery-grid article {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ops-board article:hover,
.pillar-grid article:hover,
.about-highlight-grid article:hover,
.delivery-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 167, 165, .32);
}

.pillar-grid article:nth-child(even) {
    margin-top: 26px;
}

@media (max-width: 1180px) {
    .pillar-grid article:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    .hero-metrics div {
        min-height: 70px;
    }

    .hero-media-wrap::before,
    .hero-media-wrap::after,
    .intelligence-section::after,
    .platform-section::after,
    .about::after {
        display: none;
    }
}

/* Final layout override: six-card sections use balanced rows. */
.pillar-grid,
.delivery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid article:nth-child(even) {
    margin-top: 0;
}

@media (max-width: 1180px) {

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

@media (max-width: 720px) {

    .pillar-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

.stats-band strong {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.solution-grid {
    counter-reset: solution;
}

.solution-grid article {
    overflow: hidden;
    min-height: 260px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 252, 249, .9)),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .045) 0 1px, transparent 1px 36px);
}

.solution-grid article::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    height: 4px;
    margin: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--green-2), var(--cyan), var(--lime));
}

.solution-grid article::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -22px;
    width: 130px;
    height: 92px;
    border: 1px solid rgba(14, 167, 165, .2);
    transform: skewX(-18deg);
    transition: transform .35s ease, border-color .35s ease;
}

.solution-grid article:hover::after {
    border-color: rgba(183, 223, 80, .44);
    transform: translate(-10px, -8px) skewX(-18deg);
}

.solution-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.solution-grid article .solution-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0;
    border: 1px solid rgba(14, 167, 165, .3);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(13, 45, 32, .96), rgba(12, 80, 74, .9)),
        radial-gradient(circle at 30% 20%, rgba(183, 223, 80, .34), transparent 42%);
    color: #eafff4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 14px 30px rgba(14, 167, 165, .14);
    transition: transform .28s ease, box-shadow .28s ease;
}

.solution-grid article .solution-icon::before,
.solution-grid article .solution-icon::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.solution-grid article .solution-icon::before {
    inset: 9px;
    border: 1px solid rgba(210, 255, 232, .18);
    border-radius: 5px;
}

.solution-grid article .solution-icon::after {
    left: 10px;
    right: 10px;
    bottom: 11px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: .78;
}

.solution-grid article:hover .solution-icon {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 20px 44px rgba(14, 167, 165, .2);
}

.solution-grid article .solution-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(18, 129, 84, .16);
    border-radius: 8px;
    color: rgba(12, 37, 26, .48);
    font-size: 13px;
    font-weight: 900;
}

.solution-grid article .solution-subtitle {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 40px;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.solution-grid article h3,
.solution-grid article p {
    position: relative;
    z-index: 1;
}

.flow-lab,
.delivery-grid article {
    position: relative;
}

.hero-console,
.flow-lab,
.delivery-grid article {
    overflow: hidden;
}

.hero-console::after,
.flow-lab::after,
.delivery-grid article::after {
    content: "";
    position: absolute;
    left: -30%;
    right: -30%;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 223, 80, .78), transparent);
    animation: scanSweep 4.8s ease-in-out infinite;
    pointer-events: none;
}

.delivery-grid article::after {
    top: auto;
    bottom: 0;
    opacity: .55;
}

.reveal-on-scroll {
    opacity: 1;
    transform: translateY(14px);
    transition: transform .46s ease, box-shadow .24s ease, border-color .24s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
    transform: translateY(0);
}

@keyframes scanSweep {

    0%,
    100% {
        transform: translateX(-18%);
        opacity: .25;
    }

    50% {
        transform: translateX(18%);
        opacity: .9;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-console::after,
    .flow-lab::after,
    .delivery-grid article::after {
        animation: none;
    }

    .reveal-on-scroll,
    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
    }
}

:root {
    --tag-icon-ai: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='3'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M1 9h3M1 15h3M20 9h3M20 15h3'/%3E%3C/svg%3E");
    --tag-icon-trace: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='18' cy='18' r='3'/%3E%3Cpath d='M9 6h4a5 5 0 0 1 0 10h-2'/%3E%3C/svg%3E");
    --tag-icon-auto: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7'/%3E%3Cpath d='M3 12A9 9 0 0 1 18 5.3'/%3E%3Cpath d='M18 2v4h-4'/%3E%3Cpath d='M6 22v-4h4'/%3E%3C/svg%3E");
    --tag-icon-data: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V9'/%3E%3Cpath d='M10 19V5'/%3E%3Cpath d='M16 19v-7'/%3E%3Cpath d='M22 19H2'/%3E%3C/svg%3E");
    --tag-icon-asset: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8' cy='10' r='1.5'/%3E%3Cpath d='m21 16-5-5L5 19'/%3E%3C/svg%3E");
    --tag-icon-user: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    --tag-icon-agri: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V12'/%3E%3Cpath d='M12 12C8 12 5 9 5 5c4 0 7 3 7 7Z'/%3E%3Cpath d='M12 12c4 0 7-3 7-7-4 0-7 3-7 7Z'/%3E%3C/svg%3E");
    --tag-icon-site: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M8 14h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
    --tag-icon-camera: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 4 16 7h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3l1.5-3h5Z'/%3E%3Ccircle cx='12' cy='13' r='3'/%3E%3C/svg%3E");
    --stat-icon-data: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='14' cy='7' rx='9' ry='4'/%3E%3Cpath d='M5 7v7c0 2.2 4 4 9 4s9-1.8 9-4V7'/%3E%3Cpath d='M5 14v7c0 2.2 4 4 9 4s9-1.8 9-4v-7'/%3E%3C/svg%3E");
    --stat-icon-scene: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m10 4 8 3 6-2v17l-6 2-8-3-6 2V6l6-2Z'/%3E%3Cpath d='M10 4v17M18 7v17'/%3E%3Cpath d='M7 10h3M18 13h4M12 17h4'/%3E%3C/svg%3E");
    --stat-icon-lead: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6h18v12H10l-5 4V6Z'/%3E%3Cpath d='M10 11h8M10 15h5'/%3E%3Ccircle cx='21' cy='21' r='3'/%3E%3Cpath d='M21 18v-3M18 21h-3'/%3E%3C/svg%3E");
    --stat-icon-trace: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='8' r='3'/%3E%3Ccircle cx='21' cy='8' r='3'/%3E%3Ccircle cx='14' cy='21' r='3'/%3E%3Cpath d='M10 8h8M8.5 10.5l4 8M19.5 10.5l-4 8'/%3E%3C/svg%3E");
    --stat-icon-response: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='14' cy='14' r='10'/%3E%3Cpath d='M14 8v6l4 3'/%3E%3Cpath d='m5 5 3 3M23 5l-3 3'/%3E%3Cpath d='M11 24h6'/%3E%3C/svg%3E");
    --stat-icon-reuse: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6h10l4 4v12H9V6Z'/%3E%3Cpath d='M19 6v5h5'/%3E%3Cpath d='M5 10v12h4'/%3E%3Cpath d='M13 16h7M13 20h5'/%3E%3Cpath d='m12 10 2 2 3-4'/%3E%3C/svg%3E");
    --contact-icon-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.31 1.85.53 2.81.66A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
    --contact-icon-mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
    --contact-icon-map: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.hero-badges span[data-icon],
.contact-tags span[data-icon],
.footer-chips span[data-icon] {
    --tag-icon: var(--tag-icon-ai);
    --tag-icon-fg: linear-gradient(135deg, var(--green), var(--cyan));
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badges span[data-icon="溯"],
.contact-tags span[data-icon="溯"],
.footer-chips span[data-icon="溯"] {
    --tag-icon: var(--tag-icon-trace);
}

.hero-badges span[data-icon="营"],
.contact-tags span[data-icon="营"],
.footer-chips span[data-icon="营"] {
    --tag-icon: var(--tag-icon-auto);
}

.hero-badges span[data-icon="数"],
.contact-tags span[data-icon="数"],
.footer-chips span[data-icon="数"] {
    --tag-icon: var(--tag-icon-data);
}

.hero-badges span[data-icon="材"],
.contact-tags span[data-icon="材"],
.footer-chips span[data-icon="材"] {
    --tag-icon: var(--tag-icon-asset);
}

.hero-badges span[data-icon="客"],
.contact-tags span[data-icon="客"],
.footer-chips span[data-icon="客"] {
    --tag-icon: var(--tag-icon-user);
}

.contact-tags span[data-icon="农"] {
    --tag-icon: var(--tag-icon-agri);
}

.contact-tags span[data-icon="站"] {
    --tag-icon: var(--tag-icon-site);
}

.contact-tags span[data-icon="影"] {
    --tag-icon: var(--tag-icon-camera);
}

.hero-badges span[data-icon]::before,
.contact-tags span[data-icon]::before,
.footer-chips span[data-icon]::before {
    content: "";
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: var(--tag-icon-fg);
    -webkit-mask: var(--tag-icon) center / contain no-repeat;
    mask: var(--tag-icon) center / contain no-repeat;
    filter: drop-shadow(0 6px 10px rgba(14, 167, 165, .18));
}

.contact-tags span[data-icon]::before,
.footer-chips span[data-icon]::before {
    --tag-icon-fg: linear-gradient(135deg, var(--lime), #8be6d5);
    filter: drop-shadow(0 8px 12px rgba(183, 223, 80, .12));
}

.stats-band {
    gap: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(18, 129, 84, .2), rgba(14, 167, 165, .18));
    border-color: rgba(18, 129, 84, .22);
    box-shadow: 0 24px 70px rgba(12, 61, 43, .16);
}

.stats-band .stat-card {
    --stat-icon: var(--stat-icon-data);
    position: relative;
    min-height: 196px;
    padding: 30px 30px 28px;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(243, 251, 247, .9)),
        radial-gradient(circle at 88% 14%, rgba(14, 167, 165, .18), transparent 34%);
    border-right: 1px solid rgba(18, 129, 84, .18);
    border-bottom: 1px solid rgba(18, 129, 84, .18);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.stats-band .stat-card::before,
.stats-band .stat-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.stats-band .stat-card::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 129, 84, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 129, 84, .055) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, .75), transparent 70%);
}

.stats-band .stat-card::after {
    right: 20px;
    top: 20px;
    width: 74px;
    height: 74px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(18, 129, 84, .1), rgba(14, 167, 165, .08));
    border: 1px solid rgba(18, 129, 84, .12);
    transform: rotate(8deg);
}

.stats-band .stat-card:hover {
    transform: translateY(-3px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 252, 247, .94)),
        radial-gradient(circle at 88% 14%, rgba(14, 167, 165, .26), transparent 36%);
    box-shadow: inset 0 0 0 1px rgba(14, 167, 165, .2), 0 18px 40px rgba(11, 85, 58, .12);
}

.stats-band .stat-card[data-stat-icon="scene"] {
    --stat-icon: var(--stat-icon-scene);
}

.stats-band .stat-card[data-stat-icon="lead"] {
    --stat-icon: var(--stat-icon-lead);
}

.stats-band .stat-card[data-stat-icon="trace"] {
    --stat-icon: var(--stat-icon-trace);
}

.stats-band .stat-card[data-stat-icon="response"] {
    --stat-icon: var(--stat-icon-response);
}

.stats-band .stat-card[data-stat-icon="reuse"] {
    --stat-icon: var(--stat-icon-reuse);
}

.stats-band .stat-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(18, 129, 84, .12), rgba(14, 167, 165, .13));
    border: 1px solid rgba(18, 129, 84, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 24px rgba(18, 90, 62, .1);
}

.stats-band .stat-icon::before {
    content: "";
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-mask: var(--stat-icon) center / contain no-repeat;
    mask: var(--stat-icon) center / contain no-repeat;
}

.stats-band .stat-card strong {
    position: relative;
    z-index: 1;
    margin-top: 0;
    color: var(--green);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.18;
    font-weight: 900;
}

.stats-band .stat-card span {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: #112a20;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
    font-weight: 800;
}

.stats-band .stat-card p {
    position: relative;
    z-index: 1;
    max-width: 360px;
    margin-top: 12px;
    color: #607469;
    font-size: 16px;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .stats-band .stat-card {
        min-height: 176px;
        padding: 24px;
    }

    .stats-band .stat-icon {
        margin-bottom: 14px;
    }
}

:root {
    --panel-icon-sensor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 18a9 9 0 0 1 18 0'/%3E%3Cpath d='M9 18a5 5 0 0 1 10 0'/%3E%3Cpath d='M14 18v5'/%3E%3Ccircle cx='14' cy='8' r='3'/%3E%3Cpath d='M6 23h16'/%3E%3C/svg%3E");
    --panel-icon-model: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='20' height='16' rx='2'/%3E%3Cpath d='M8 10h5M8 14h12M8 18h8'/%3E%3Cpath d='M19 5v16'/%3E%3C/svg%3E");
    --panel-icon-brain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 5a4 4 0 0 0-4 4v1a4 4 0 0 0 0 8v1a4 4 0 0 0 7 2.6V5.4A4 4 0 0 0 10 5Z'/%3E%3Cpath d='M18 5a4 4 0 0 1 4 4v1a4 4 0 0 1 0 8v1a4 4 0 0 1-7 2.6V5.4A4 4 0 0 1 18 5Z'/%3E%3Cpath d='M9 12h4M15 12h4M10 18h3M15 18h3'/%3E%3C/svg%3E");
    --panel-icon-workflow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='7' height='7' rx='2'/%3E%3Crect x='17' y='5' width='7' height='7' rx='2'/%3E%3Crect x='10.5' y='18' width='7' height='7' rx='2'/%3E%3Cpath d='M11 8.5h6M20.5 12v3a3 3 0 0 1-3 3H14M7.5 12v3a3 3 0 0 0 3 3H14'/%3E%3C/svg%3E");
    --panel-icon-dashboard: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='20' height='18' rx='3'/%3E%3Cpath d='M8 18v-5M14 18V9M20 18v-8M7 19h14'/%3E%3C/svg%3E");
    --panel-icon-refresh: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 14a9 9 0 0 1-15.2 6.5'/%3E%3Cpath d='M5 14A9 9 0 0 1 20.2 7.5'/%3E%3Cpath d='M20 3v5h-5M8 25v-5h5'/%3E%3C/svg%3E");
    --panel-icon-farm: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h20'/%3E%3Cpath d='M7 22V10l7-5 7 5v12'/%3E%3Cpath d='M11 22v-7h6v7'/%3E%3Cpath d='M5 15h3M20 15h3'/%3E%3C/svg%3E");
    --panel-icon-media: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='6' width='20' height='16' rx='2'/%3E%3Ccircle cx='10' cy='12' r='2'/%3E%3Cpath d='m5 21 6-6 4 4 3-3 5 5'/%3E%3C/svg%3E");
    --panel-icon-customer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='9' r='4'/%3E%3Cpath d='M4 23a6 6 0 0 1 12 0'/%3E%3Cpath d='M18 8h6M18 13h4M18 18h5'/%3E%3C/svg%3E");
    --panel-icon-analytics: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 23h20'/%3E%3Cpath d='M7 19v-6M14 19V7M21 19v-9'/%3E%3Cpath d='m7 12 7-5 7 3'/%3E%3C/svg%3E");
    --panel-icon-qr: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='7' height='7'/%3E%3Crect x='17' y='4' width='7' height='7'/%3E%3Crect x='4' y='17' width='7' height='7'/%3E%3Cpath d='M17 17h3v3h4M17 24h2M22 17h2M14 4v4M14 12h4M14 17v7'/%3E%3C/svg%3E");
    --panel-icon-review: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h16v20H6z'/%3E%3Cpath d='M10 9h8M10 14h8M10 19h5'/%3E%3Cpath d='m18 20 2 2 4-5'/%3E%3C/svg%3E");
    --panel-icon-database: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='14' cy='7' rx='9' ry='4'/%3E%3Cpath d='M5 7v7c0 2.2 4 4 9 4s9-1.8 9-4V7'/%3E%3Cpath d='M5 14v7c0 2.2 4 4 9 4s9-1.8 9-4v-7'/%3E%3C/svg%3E");
    --panel-icon-app: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='20' height='18' rx='3'/%3E%3Cpath d='M4 11h20M10 16h4M17 16h3M10 20h8'/%3E%3C/svg%3E");
    --panel-icon-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3 23 7v7c0 6-4 10-9 12-5-2-9-6-9-12V7l9-4Z'/%3E%3Cpath d='m10 14 3 3 6-7'/%3E%3C/svg%3E");
    --panel-icon-code: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m10 9-5 5 5 5M18 9l5 5-5 5M15 6l-2 16'/%3E%3C/svg%3E");
    --panel-icon-service: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12a6 6 0 0 1 12 0v4'/%3E%3Cpath d='M6 15h4v6H6zM18 15h4v6h-4z'/%3E%3Cpath d='M20 21a6 6 0 0 1-6 4h-2'/%3E%3C/svg%3E");
    --panel-icon-brand: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3 17 10l7 1-5 5 1 8-6-4-6 4 1-8-5-5 7-1 3-7Z'/%3E%3C/svg%3E");
    --panel-icon-config: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h14M22 8h2M4 20h2M10 20h14M8 5v6M20 5v6M8 17v6'/%3E%3C/svg%3E");
    --panel-icon-share: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='14' r='3'/%3E%3Ccircle cx='21' cy='7' r='3'/%3E%3Ccircle cx='21' cy='21' r='3'/%3E%3Cpath d='m10.7 12.7 7.6-4.4M10.7 15.3l7.6 4.4'/%3E%3C/svg%3E");
    --panel-icon-survey: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4h12v20H8z'/%3E%3Cpath d='M11 9h6M11 14h6M11 19h4'/%3E%3Cpath d='M6 7h2M20 7h2'/%3E%3C/svg%3E");
    --panel-icon-design: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21l5-1 13-13-4-4L5 16l-1 5Z'/%3E%3Cpath d='m15 6 4 4'/%3E%3Cpath d='M4 24h20'/%3E%3C/svg%3E");
    --panel-icon-build: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22h16M8 22V10l6-5 6 5v12'/%3E%3Cpath d='M11 22v-7h6v7M10 11h8'/%3E%3C/svg%3E");
    --panel-icon-operate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='14' cy='14' r='9'/%3E%3Cpath d='M14 5v5M14 18v5M5 14h5M18 14h5'/%3E%3Ccircle cx='14' cy='14' r='3'/%3E%3C/svg%3E");
    --panel-icon-train: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8 14 4l10 4-10 4L4 8Z'/%3E%3Cpath d='M8 11v6c0 2 3 4 6 4s6-2 6-4v-6'/%3E%3Cpath d='M24 8v7'/%3E%3C/svg%3E");
    --panel-icon-growth: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h20'/%3E%3Cpath d='M7 18l5-5 4 3 6-8'/%3E%3Cpath d='M18 8h4v4'/%3E%3Cpath d='M9 22v-4M14 22v-8M19 22v-6'/%3E%3C/svg%3E");
}

[data-flow-icon],
[data-ops-icon],
[data-trace-icon],
[data-pillar-icon],
[data-about-icon],
[data-delivery-icon] {
    --panel-icon: var(--panel-icon-sensor);
}

[data-flow-icon="model"] {
    --panel-icon: var(--panel-icon-model);
}

[data-flow-icon="brain"],
[data-pillar-icon="brain"] {
    --panel-icon: var(--panel-icon-brain);
}

[data-flow-icon="workflow"],
[data-pillar-icon="workflow"] {
    --panel-icon: var(--panel-icon-workflow);
}

[data-flow-icon="dashboard"] {
    --panel-icon: var(--panel-icon-dashboard);
}

[data-flow-icon="refresh"],
[data-trace-icon="refresh"] {
    --panel-icon: var(--panel-icon-refresh);
}

[data-ops-icon="farm"],
[data-about-icon="farm"] {
    --panel-icon: var(--panel-icon-farm);
}

[data-ops-icon="media"],
[data-trace-icon="media"],
[data-about-icon="media"] {
    --panel-icon: var(--panel-icon-media);
}

[data-ops-icon="customer"] {
    --panel-icon: var(--panel-icon-customer);
}

[data-ops-icon="analytics"],
[data-trace-icon="analytics"],
[data-about-icon="analytics"] {
    --panel-icon: var(--panel-icon-analytics);
}

[data-ops-icon="qr"],
[data-trace-icon="qr"] {
    --panel-icon: var(--panel-icon-qr);
}

[data-ops-icon="review"] {
    --panel-icon: var(--panel-icon-review);
}

[data-pillar-icon="database"] {
    --panel-icon: var(--panel-icon-database);
}

[data-pillar-icon="app"] {
    --panel-icon: var(--panel-icon-app);
}

[data-pillar-icon="media"] {
    --panel-icon: var(--panel-icon-media);
}

[data-pillar-icon="shield"] {
    --panel-icon: var(--panel-icon-shield);
}

[data-about-icon="code"] {
    --panel-icon: var(--panel-icon-code);
}

[data-about-icon="service"] {
    --panel-icon: var(--panel-icon-service);
}

[data-about-icon="brand"] {
    --panel-icon: var(--panel-icon-brand);
}

[data-trace-icon="config"] {
    --panel-icon: var(--panel-icon-config);
}

[data-trace-icon="share"] {
    --panel-icon: var(--panel-icon-share);
}

[data-delivery-icon="survey"] {
    --panel-icon: var(--panel-icon-survey);
}

[data-delivery-icon="design"] {
    --panel-icon: var(--panel-icon-design);
}

[data-delivery-icon="build"] {
    --panel-icon: var(--panel-icon-build);
}

[data-delivery-icon="operate"] {
    --panel-icon: var(--panel-icon-operate);
}

[data-delivery-icon="train"] {
    --panel-icon: var(--panel-icon-train);
}

[data-delivery-icon="growth"] {
    --panel-icon: var(--panel-icon-growth);
}

.flow-icon,
.ops-icon,
.trace-icon,
.pillar-icon,
.about-icon,
.delivery-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-style: normal;
    vertical-align: middle;
}

.flow-icon::before,
.ops-icon::before,
.trace-icon::before,
.pillar-icon::before,
.about-icon::before,
.delivery-icon::before {
    content: "";
    width: 26px;
    height: 26px;
    background: var(--panel-icon-fg, linear-gradient(135deg, var(--green), var(--cyan)));
    -webkit-mask: var(--panel-icon) center / contain no-repeat;
    mask: var(--panel-icon) center / contain no-repeat;
}

.flow-grid article,
.delivery-grid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.flow-grid article>*,
.delivery-grid article>* {
    position: relative;
    z-index: 1;
}

.flow-grid article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .045) 0 1px, transparent 1px 30px);
}

.flow-grid article::before,
.delivery-grid article::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -32px;
    top: 22px;
    width: 120px;
    height: 76px;
    border: 1px solid rgba(183, 223, 80, .18);
    border-radius: 8px;
    transform: skewX(-18deg);
    pointer-events: none;
}

.flow-icon,
.delivery-icon {
    --panel-icon-fg: linear-gradient(135deg, var(--lime), var(--cyan));
    margin-right: 10px;
    border: 1px solid rgba(210, 255, 232, .18);
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 26px rgba(0, 0, 0, .14);
}

.flow-grid article>span,
.delivery-grid article>span {
    position: relative;
    z-index: 1;
    vertical-align: middle;
}

.flow-grid h3,
.delivery-grid h3 {
    margin-top: 24px;
}

.ops-board article,
.pillar-grid article,
.about-highlight-grid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(243, 251, 247, .86)),
        repeating-linear-gradient(90deg, rgba(18, 129, 84, .04) 0 1px, transparent 1px 34px);
}

.ops-board article::before,
.pillar-grid article::before,
.about-highlight-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(14, 167, 165, .1), transparent 32%, transparent 68%, rgba(18, 129, 84, .08));
    opacity: .72;
    z-index: 0;
}

.ops-icon,
.pillar-icon,
.about-icon {
    margin-bottom: 18px;
    border: 1px solid rgba(18, 129, 84, .16);
    background: linear-gradient(135deg, rgba(18, 129, 84, .12), rgba(14, 167, 165, .12));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 26px rgba(18, 90, 62, .1);
}

.ops-board span,
.ops-board strong,
.ops-board p,
.pillar-grid span,
.pillar-grid h3,
.pillar-grid p,
.about-highlight-grid h3,
.about-highlight-grid p {
    position: relative;
    z-index: 1;
}

.ops-board article::after {
    z-index: 0;
}

.pillar-grid article::after {
    z-index: 1;
}

.pillar-grid span {
    position: absolute;
    right: 22px;
    top: 22px;
    background: rgba(13, 45, 32, .94);
}

.pillar-grid h3 {
    margin-top: 18px;
}

.about-highlight-grid article {
    min-height: 200px;
}

.about-highlight-grid h3 {
    margin-top: 0;
}

.trace-metrics div {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .05) 0 1px, transparent 1px 28px);
}

.trace-icon {
    --panel-icon-fg: linear-gradient(135deg, var(--lime), #8be6d5);
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border: 1px solid rgba(210, 255, 232, .16);
    background: rgba(255, 255, 255, .08);
}

.trace-icon::before {
    width: 22px;
    height: 22px;
}

.delivery-grid article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .045)),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .045) 0 1px, transparent 1px 32px);
}

@media (max-width: 720px) {

    .flow-icon,
    .ops-icon,
    .pillar-icon,
    .about-icon,
    .delivery-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .flow-grid h3,
    .delivery-grid h3 {
        margin-top: 20px;
    }

    .about-highlight-grid article {
        min-height: auto;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0 clamp(18px, 5vw, 72px) 24px;
    background:
        linear-gradient(135deg, #061911, #0d3324 52%, #07373a),
        repeating-linear-gradient(90deg, rgba(183, 223, 80, .07) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(14, 167, 165, .07) 0 1px, transparent 1px 84px);
    color: rgba(234, 255, 244, .78);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, .06) 18% 19%, transparent 19% 62%, rgba(183, 223, 80, .08) 62% 63%, transparent 63%);
}

.site-footer>* {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .72fr));
    gap: clamp(24px, 4vw, 54px);
    padding: 46px 0 34px;
    border-bottom: 1px solid rgba(210, 255, 232, .16);
}

.footer-brand {
    max-width: 560px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, .94);
    padding: 3px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(234, 255, 244, .72);
}

.footer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.footer-chips span {
    border: 1px solid rgba(210, 255, 232, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #eafff4;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 800;
}

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

.footer-links strong,
.footer-contact strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}

.footer-links a {
    color: rgba(234, 255, 244, .72);
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: var(--lime);
    transform: translateX(3px);
}

.footer-quick a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 27px;
    padding: 2px 0 2px 16px;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.footer-quick a:nth-of-type(2) {
    transition-delay: .025s;
}

.footer-quick a:nth-of-type(3) {
    transition-delay: .05s;
}

.footer-quick a:nth-of-type(4) {
    transition-delay: .075s;
}

.footer-quick a::before,
.footer-quick a::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.footer-quick a::before {
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(210, 255, 232, .24);
    box-shadow: 0 0 0 4px rgba(210, 255, 232, .04);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.footer-quick a::after {
    left: 16px;
    right: 0;
    bottom: 1px;
    height: 1px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--lime), var(--cyan));
    opacity: .4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease, opacity .22s ease;
}

.footer-quick:hover a,
.footer-quick:focus-within a {
    opacity: .62;
    transform: translateX(2px);
}

.footer-quick a:hover,
.footer-quick a:focus-visible {
    color: var(--lime);
    opacity: 1;
    transform: translateX(6px);
    outline: none;
}

.footer-quick a:hover::before,
.footer-quick a:focus-visible::before {
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(183, 223, 80, .12), 0 0 16px rgba(183, 223, 80, .36);
    transform: scale(1.15);
}

.footer-quick a:hover::after,
.footer-quick a:focus-visible::after {
    opacity: .74;
    transform: scaleX(1);
}

.footer-scenarios a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding-left: 14px;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-scenarios a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    border-radius: 99px;
    background: rgba(210, 255, 232, .26);
    transform: translateY(-50%);
    transition: width .22s ease, background .22s ease, box-shadow .22s ease;
}

.footer-scenarios a:hover,
.footer-scenarios a:focus-visible {
    padding-left: 24px;
    transform: none;
}

.footer-scenarios a:hover::before,
.footer-scenarios a:focus-visible::before {
    width: 17px;
    background: linear-gradient(90deg, var(--lime), var(--cyan));
    box-shadow: 0 0 16px rgba(183, 223, 80, .28);
}

.footer-contact p {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 2px 10px;
    align-items: start;
    margin: 0;
    min-width: 0;
    color: rgba(234, 255, 244, .82);
}

.footer-contact p[data-contact-icon]::before {
    --contact-icon: var(--contact-icon-phone);
    content: "";
    grid-row: 1 / span 2;
    width: 21px;
    height: 21px;
    margin-top: 3px;
    background: linear-gradient(135deg, var(--lime), #8be6d5);
    -webkit-mask: var(--contact-icon) center / contain no-repeat;
    mask: var(--contact-icon) center / contain no-repeat;
    filter: drop-shadow(0 8px 12px rgba(183, 223, 80, .16));
}

.footer-contact p[data-contact-icon="mail"]::before {
    --contact-icon: var(--contact-icon-mail);
}

.footer-contact p[data-contact-icon="map"]::before {
    --contact-icon: var(--contact-icon-map);
}

.footer-contact span {
    grid-column: 2;
    color: rgba(234, 255, 244, .52);
    font-size: 12px;
    font-weight: 800;
}

.footer-contact b {
    grid-column: 2;
    color: rgba(234, 255, 244, .84);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-contact-action {
    position: relative;
    display: inline;
    max-width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    overflow-wrap: anywhere;
    transition: color .18s ease;
}

.footer-contact-action:hover,
.footer-contact-action:focus-visible {
    color: var(--lime);
    outline: none;
}

.footer-contact-action[data-copy-status]::after {
    content: attr(data-copy-status);
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(183, 223, 80, .14);
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.footer-qr {
    display: none;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 24px;
    padding-top: 20px;
    color: rgba(234, 255, 244, .58);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {

    .hero-badges span[data-icon]::before,
    .contact-tags span[data-icon]::before,
    .footer-chips span[data-icon]::before {
        flex-basis: 18px;
        width: 18px;
        height: 18px;
    }

    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 36px 0 26px;
    }

    .footer-chips,
    .footer-links,
    .footer-contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-chips {
        margin-top: 18px;
    }

    .footer-chips span,
    .footer-quick a,
    .footer-scenarios a {
        width: 100%;
        min-height: 42px;
        border: 1px solid rgba(210, 255, 232, .16);
        border-radius: 8px;
        background: rgba(255, 255, 255, .08);
    }

    .footer-chips span {
        justify-content: center;
        padding: 8px 6px;
        font-size: 13px;
        white-space: nowrap;
    }

    .footer-links strong,
    .footer-contact strong {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .footer-quick a {
        padding: 8px 10px 8px 28px;
    }

    .footer-quick a::before {
        left: 12px;
    }

    .footer-quick a::after {
        left: 28px;
        right: 10px;
        bottom: 8px;
    }

    .footer-scenarios a {
        min-height: 42px;
        padding: 8px 10px 8px 24px;
    }

    .footer-scenarios a::before {
        left: 10px;
    }

    .footer-contact p,
    .footer-qr {
        min-height: 104px;
        margin: 0;
        padding: 12px;
        border: 1px solid rgba(210, 255, 232, .16);
        border-radius: 8px;
        background: rgba(255, 255, 255, .08);
    }

    .footer-contact p {
        grid-template-columns: 21px minmax(0, 1fr);
        gap: 3px 8px;
    }

    .footer-contact p[data-contact-icon]::before {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .footer-contact span {
        font-size: 11px;
    }

    .footer-contact b {
        grid-column: 1 / -1;
        font-size: 13px;
        line-height: 1.42;
    }

    .footer-qr {
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 8px;
    }

    .footer-qr img {
        width: min(100%, 86px);
        aspect-ratio: 1;
        object-fit: cover;
        padding: 4px;
        border: 1px solid rgba(210, 255, 232, .42);
        border-radius: 8px;
        background: #fff;
    }

    .footer-qr figcaption {
        color: rgba(234, 255, 244, .7);
        font-size: 12px;
        font-weight: 800;
    }

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

.hero,
.stats-band,
.ai-flow,
.section,
.intelligence-section,
.feature-band,
.platform-section,
.about,
.delivery-section,
.contact-section {
    scroll-margin-top: var(--anchor-offset);
}

.stats-band {
    margin-bottom: clamp(18px, 4vw, 34px);
}

@media (max-width: 720px) {
    .ai-flow {
        padding: 48px 16px 56px;
    }

    .ai-flow-layout {
        gap: 18px;
        align-items: stretch;
    }

    .ai-flow .section-head {
        margin-bottom: 0;
    }

    .ai-flow .section-head h2 {
        font-size: 31px;
        line-height: 1.12;
    }

    .ai-flow .section-head p:not(.eyebrow) {
        margin: 12px 0 0;
        font-size: 15px;
        line-height: 1.6;
    }

    .flow-lab {
        padding: 14px;
    }

    .flow-lab::before {
        left: 14px;
        right: 14px;
        top: 50px;
    }

    .flow-lab-head {
        font-size: 12px;
    }

    .flow-lab-head strong {
        padding: 4px 8px;
    }

    .flow-lab-screen {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0 10px;
    }

    .flow-lab-screen div {
        padding: 11px;
    }

    .flow-lab-screen strong {
        font-size: 15px;
    }

    .flow-lab p {
        font-size: 13px;
        line-height: 1.55;
    }

    .flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .flow-grid article {
        min-height: auto;
        padding: 14px;
    }

    .flow-grid article::before {
        right: -52px;
        top: 16px;
    }

    .flow-icon {
        width: 36px;
        height: 36px;
        margin-right: 6px;
        margin-bottom: 10px;
    }

    .flow-icon::before {
        width: 21px;
        height: 21px;
    }

    .flow-grid article>span {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .flow-grid h3 {
        margin: 8px 0 6px;
        font-size: 17px;
        line-height: 1.25;
    }

    .flow-grid p {
        font-size: 13px;
        line-height: 1.48;
    }

    .stats-band,
    .service-grid,
    .ops-board,
    .trace-metrics,
    .solution-grid,
    .pillar-grid,
    .about-highlight-grid,
    .delivery-grid,
    .article-grid,
    .contact-promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-tags {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .contact-tags span[data-icon] {
        justify-content: center;
        min-height: 44px;
        padding: 8px 6px;
        gap: 5px;
        font-size: 12px;
        line-height: 1.25;
        text-align: center;
        white-space: nowrap;
    }

    .contact-tags span[data-icon]::before {
        flex-basis: 17px;
        width: 17px;
        height: 17px;
    }

    .contact-promise-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .contact-info {
        display: contents;
    }

    .contact-info .eyebrow {
        order: 1;
    }

    .contact-info h2 {
        order: 2;
    }

    .contact-info>p:not(.eyebrow) {
        order: 3;
    }

    .contact-tags {
        order: 4;
    }

    .contact-promise-grid {
        order: 5;
    }

    .consult-form {
        order: 6;
    }

    .contact-info dl,
    .contact-info .qr {
        display: none;
    }

    .consult-form-title {
        display: block;
        margin: 0 0 2px;
        color: var(--ink);
        font-size: 22px;
        line-height: 1.25;
    }

    .stats-band .stat-card,
    .ops-board article,
    .solution-grid article,
    .pillar-grid article,
    .about-highlight-grid article,
    .delivery-grid article {
        min-height: auto;
        padding: 14px;
    }

    .stats-band .stat-card {
        padding: 16px 14px;
    }

    .stats-band .stat-icon,
    .ops-icon,
    .pillar-icon,
    .about-icon,
    .delivery-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .stats-band .stat-icon::before,
    .ops-icon::before,
    .pillar-icon::before,
    .about-icon::before,
    .delivery-icon::before {
        width: 21px;
        height: 21px;
    }

    .stats-band .stat-card strong {
        font-size: 24px;
    }

    .stats-band .stat-card span,
    .service-card span,
    .article-card span,
    .solution-grid article .solution-subtitle,
    .ops-board span {
        font-size: 12px;
        line-height: 1.35;
    }

    .service-card img,
    .article-card img {
        height: 112px;
    }

    .service-card div {
        padding: 14px;
    }

    .article-card a {
        padding-bottom: 14px;
    }

    .article-card img {
        margin-bottom: 12px;
    }

    .article-card span,
    .article-card h3,
    .article-card p {
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-card h3,
    .solution-grid h3,
    .article-card h3,
    .ops-board strong,
    .pillar-grid h3,
    .about-highlight-grid h3,
    .delivery-grid h3 {
        font-size: 17px;
        line-height: 1.25;
    }

    .service-card h3,
    .solution-grid h3,
    .article-card h3,
    .about-highlight-grid h3 {
        margin: 6px 0 8px;
    }

    .ops-board strong,
    .pillar-grid h3,
    .delivery-grid h3 {
        margin-top: 8px;
    }

    .service-card p,
    .solution-grid p,
    .article-card p,
    .ops-board p,
    .pillar-grid p,
    .about-highlight-grid p,
    .delivery-grid p,
    .stats-band .stat-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        font-size: 13px;
        line-height: 1.5;
    }

    .solution-card-head {
        margin-bottom: 12px;
    }

    .solution-grid article .solution-icon {
        width: 42px;
        height: 42px;
        font-size: 11px;
    }

    .solution-grid article .solution-index,
    .pillar-grid span {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .solution-grid article .solution-subtitle {
        min-height: 0;
        margin-bottom: 8px;
    }

    .trace-metrics {
        margin-top: 18px;
    }

    .trace-metrics div {
        min-height: auto;
        padding: 12px;
    }

    .contact-promise-grid div {
        padding: 12px 8px;
    }

    .contact-promise-grid strong {
        font-size: 19px;
    }

    .contact-promise-grid span {
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .insight-strip {
        margin-top: -4px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .insight-strip a {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .feature-image {
        min-height: 360px;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        background: #062d21;
        border: 1px solid rgba(210, 255, 232, .18);
        border-bottom: 0;
        box-shadow: none;
    }

    .feature-band {
        gap: 0;
    }

    .feature-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .72;
    }

    .feature-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(5, 34, 25, .12), rgba(5, 34, 25, .82));
        pointer-events: none;
    }

    .sensor-stack {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1;
        width: auto;
        margin-top: 0;
        gap: 8px;
    }

    .sensor-stack span {
        min-height: 54px;
        padding: 9px 11px;
        background: rgba(5, 31, 23, .72);
    }

    .feature-copy {
        margin-top: 0;
        padding: 20px 16px 18px;
        border: 1px solid rgba(210, 255, 232, .18);
        border-top: 0;
        border-radius: 0 0 8px 8px;
        background:
            linear-gradient(180deg, rgba(4, 34, 25, .96), rgba(8, 56, 42, .9)),
            repeating-linear-gradient(90deg, rgba(210, 255, 232, .045) 0 1px, transparent 1px 42px);
        box-shadow: 0 24px 62px rgba(0, 0, 0, .22);
    }

    .feature-copy .eyebrow {
        margin-bottom: 12px;
    }

    .feature-copy h2 {
        font-size: 31px;
        line-height: 1.12;
    }

    .feature-copy p {
        margin: 14px 0 0;
        font-size: 15px;
        line-height: 1.62;
    }

    .feature-copy ul {
        margin-top: 14px;
        gap: 8px;
    }

    .feature-copy li {
        font-size: 13px;
        line-height: 1.5;
    }

    .intelligence-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .intelligence-points span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 8px 6px;
        text-align: center;
        font-size: 13px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .about-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .about-kpis div {
        min-height: 86px;
        padding: 12px 8px;
    }

    .about-kpis strong {
        font-size: 22px;
    }

    .about-kpis span {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-width: none;
    }

    .hero-metrics div {
        min-height: 58px;
        padding: 12px 10px;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .hero-metrics strong {
        font-size: 28px;
    }

    .hero-metrics .metric-label {
        display: block;
        min-width: 0;
        color: #4f665c;
        font-size: 12px;
        line-height: 1.25;
        text-align: left;
        white-space: nowrap;
    }

    .hero-metrics .metric-label em {
        display: inline;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    :root {
        --anchor-offset: 112px;
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        height: auto;
        min-height: 104px;
        gap: 8px;
        padding: 8px 10px 10px;
    }

    .brand {
        display: flex;
        width: 100%;
        gap: 8px;
    }

    .brand img {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .brand span {
        display: block;
        min-width: 0;
        overflow: hidden;
        color: var(--ink);
        font-size: 15px;
        font-weight: 900;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: 100%;
        gap: 4px;
        overflow: visible;
        padding: 0;
        background: transparent;
    }

    .site-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 34px;
        padding: 6px 2px;
        font-size: 12px;
        text-align: center;
    }

    .site-nav a:hover,
    .site-nav a:focus,
    .site-nav a:focus-visible {
        background: transparent;
        color: #315342;
        box-shadow: none;
        outline: none;
        transform: none;
    }

    .site-nav a.is-active,
    .site-nav a[aria-current="true"] {
        background: rgba(18, 129, 84, .1);
        color: var(--green);
        box-shadow: inset 0 0 0 1px rgba(18, 129, 84, .18);
    }
}