:root {
    --site-ink: #14212f;
    --site-muted: #607184;
    --site-line: #d9e2ea;
    --site-soft: #f3f7fa;
    --site-panel: #ffffff;
    --site-cyan: #0f8f9d;
    --site-green: #168760;
    --site-amber: #d58a18;
    --site-red: #c75143;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #f6f8fb;
    color: var(--site-ink);
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

#main {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(217, 226, 234, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.site-header__inner,
.site-hero,
.site-section,
.site-page-hero,
.site-product-board,
.product-hero,
.product-feature-block,
.product-scenario,
.product-specs,
.product-final-cta,
.download-grid,
.site-note-band,
.service-hero,
.service-route-section,
.service-process,
.service-capabilities,
.site-footer__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 76px;
}

.site-brand,
.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-ink);
}

.site-brand__logo {
    display: block;
    width: 152px;
    max-width: 38vw;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

.site-footer__brand-mark {
    display: block;
    width: 28px;
    height: 36px;
    object-fit: contain;
}

.site-brand__mark,
.site-footer__brand-badge {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: #112539;
    color: #fff;
    font-weight: 900;
}

.site-brand__text strong,
.site-brand__text small {
    display: block;
    line-height: 1.1;
}

.site-brand__text strong {
    font-size: 17px;
}

.site-brand__text small {
    margin-top: 4px;
    color: var(--site-muted);
    font-size: 12px;
}

.site-nav,
.site-nav__drop-head,
.site-header__actions,
.site-actions,
.product-subnav,
.site-hero__chips,
.product-hero__tags {
    display: flex;
    align-items: center;
}

.site-nav {
    justify-content: center;
    gap: 8px;
}

.site-nav__link,
.site-header__ghost,
.site-header__cta,
.site-button,
.product-subnav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 9px 13px;
    color: var(--site-ink);
    font-weight: 700;
    white-space: nowrap;
}

.site-nav__link {
    color: #33465a;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: #eaf4f6;
    color: var(--site-cyan);
}

.site-nav__dropdown {
    display: flex;
    min-height: 76px;
    align-items: center;
    position: relative;
}

.site-nav__dropdown::after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: min(820px, 90vw);
    height: 24px;
    transform: translateX(-50%);
    z-index: 1;
}

.site-nav__drop-head {
    position: relative;
    z-index: 2;
}

.site-nav__drop-button {
    display: none;
    width: 30px;
    height: 30px;
    margin-left: -8px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.site-nav__drop-button::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 8px auto 0;
    border-right: 2px solid #53677b;
    border-bottom: 2px solid #53677b;
    transform: rotate(45deg);
}

.site-nav__menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 60;
    display: grid;
    width: 430px;
    padding: 12px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(20, 33, 47, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav__dropdown:hover .site-nav__menu,
.site-nav__dropdown.is-hover .site-nav__menu,
.site-nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav__menu a {
    display: grid;
    gap: 4px;
    border-radius: 8px;
    padding: 12px;
    color: var(--site-ink);
}

.site-nav__menu a:hover {
    background: var(--site-soft);
}

.site-nav__menu span {
    font-weight: 800;
}

.site-nav__menu small {
    color: var(--site-muted);
}

.site-nav__menu-all {
    border-top: 1px solid var(--site-line);
    color: var(--site-cyan) !important;
}

.site-header__actions {
    justify-content: flex-end;
    gap: 10px;
}

.site-header__ghost,
.site-button {
    border: 1px solid var(--site-line);
    background: #fff;
}

.site-header__cta,
.site-button--primary {
    border: 1px solid #112539;
    background: #112539;
    color: #fff;
}

.site-header__cta:hover,
.site-button--primary:hover {
    color: #fff;
}

.site-button:hover,
.site-header__ghost:hover {
    border-color: var(--site-cyan);
    color: var(--site-cyan);
}

.site-button--light {
    border-color: rgba(255, 255, 255, 0.56);
    background: #fff;
    color: #112539;
}

.site-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

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

.site-kicker,
.site-tag,
.download-card span,
.service-hero__panel > span {
    color: var(--site-cyan);
    font-size: 13px;
    font-weight: 900;
}

.site-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
    align-items: center;
    min-height: 650px;
    padding: 70px 0;
}

.site-hero h1,
.site-page-hero h1,
.product-hero h1,
.service-hero h1 {
    margin: 0;
    color: var(--site-ink);
    font-size: 58px;
    line-height: 1.08;
    font-weight: 900;
}

.site-hero__lead,
.site-page-hero p,
.product-hero__copy > p,
.service-hero p,
.site-section__head p,
.product-feature-block__head p,
.site-home-band p {
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.78;
}

.site-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.site-hero__visual {
    position: relative;
    min-height: 510px;
}

.site-device {
    position: absolute;
    inset: 18px 0 0 0;
    overflow: hidden;
    border: 1px solid #b8c5d1;
    border-radius: 8px;
    background: #101f2e;
    box-shadow: 0 34px 80px rgba(20, 33, 47, 0.26);
}

.site-device__bar {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.site-device__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--site-red);
}

.site-device__bar span:nth-child(2) {
    background: var(--site-amber);
}

.site-device__bar span:nth-child(3) {
    background: var(--site-green);
}

.site-device__screen {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.site-device__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.site-device__status strong {
    font-size: 28px;
}

.site-device__status span {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(22, 135, 96, 0.22);
    color: #8be1bf;
    font-weight: 800;
}

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

.site-device__grid span {
    min-height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    color: #dbe7f2;
    font-weight: 800;
}

.site-device__signal {
    height: 72px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(15, 143, 157, 0.38), rgba(22, 135, 96, 0.28)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
}

.site-hero__chips {
    position: absolute;
    right: 24px;
    bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.site-hero__chips span {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-ink);
    font-weight: 800;
}

.site-section {
    padding: 76px 0;
}

.site-section--tight {
    padding-top: 28px;
}

.site-section__head,
.site-product-category__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.site-section__head h2,
.site-home-band h2,
.product-feature-block h2,
.product-scenario h2,
.product-specs h2,
.product-final-cta h2,
.service-route-section h2,
.service-process h2,
.site-note-band h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 900;
}

.site-section__head a {
    color: var(--site-cyan);
    font-weight: 800;
}

.site-product-grid,
.site-route-grid,
.product-feature-grid,
.service-route-grid,
.service-capabilities,
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.site-product-card,
.site-route-grid a,
.product-feature-grid article,
.service-route-grid article,
.service-capabilities article,
.download-card {
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.site-product-card a,
.site-route-grid a {
    display: block;
    height: 100%;
    color: var(--site-ink);
}

.site-product-card__media,
.site-product-row__media {
    display: grid;
    min-height: 190px;
    place-items: center;
    background: #e8eef3;
}

.site-product-card__media img,
.site-product-row__media img,
.product-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-product-card__media--generated,
.site-product-row__media--generated {
    background:
        linear-gradient(135deg, #eef5f6, #f8faf2),
        repeating-linear-gradient(45deg, rgba(20,33,47,0.07) 0 1px, transparent 1px 14px);
}

.site-product-card__media span,
.site-product-row__media span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 8px;
    background: #112539;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}

.site-product-card__body {
    padding: 18px;
}

.site-tag {
    display: inline-flex;
    margin-right: 6px;
    border-radius: 999px;
    padding: 5px 9px;
    background: #e7f5f6;
}

.site-tag--accent {
    background: #fff3df;
    color: var(--site-amber);
}

.site-product-card h3,
.site-product-row h3,
.site-route-grid h3,
.product-feature-grid h3,
.service-route-grid h3,
.download-card h2 {
    margin: 14px 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.site-product-card p,
.site-route-grid p,
.site-product-row p,
.product-feature-grid p,
.product-scenario p,
.service-route-grid p,
.service-capabilities p,
.download-card p,
.product-final-cta p,
.site-note-band p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.72;
}

.site-home-band,
.site-note-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 24px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto;
    border-radius: 8px;
    padding: 34px;
    background: #112539;
    color: #fff;
}

.site-home-band p,
.site-note-band p {
    color: #d4e1ec;
}

.site-home-band__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-home-band__list span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #eaf6f8;
    font-weight: 800;
}

.site-route-grid a {
    padding: 24px;
}

.site-route-grid span,
.product-feature-grid span,
.service-route-grid span {
    color: var(--site-amber);
    font-weight: 900;
}

.site-page-hero {
    padding: 92px 0 50px;
}

.site-page-hero p {
    max-width: 760px;
}

.site-product-board {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    padding: 32px 0 80px;
}

.site-product-board__side {
    position: sticky;
    top: 96px;
    align-self: start;
    display: grid;
    gap: 8px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
}

.site-product-board__side span {
    margin-bottom: 6px;
    color: var(--site-muted);
    font-weight: 900;
}

.site-product-board__side a {
    border-radius: 8px;
    padding: 10px;
    color: var(--site-ink);
    font-weight: 800;
}

.site-product-board__side a:hover {
    background: var(--site-soft);
    color: var(--site-cyan);
}

.site-product-category + .site-product-category {
    margin-top: 34px;
}

.site-product-category__head {
    margin-bottom: 14px;
}

.site-product-category__head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.site-product-category__head span {
    color: var(--site-muted);
}

.site-product-list {
    display: grid;
    gap: 14px;
}

.site-product-row a {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 14px;
    color: var(--site-ink);
}

.site-product-row__media {
    min-height: 142px;
    border-radius: 8px;
}

.site-product-row__content > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-product-row__content h3 {
    margin: 0;
}

.site-product-row__content span {
    border-radius: 999px;
    padding: 5px 9px;
    background: #fff3df;
    color: var(--site-amber);
    font-size: 12px;
    font-weight: 900;
}

.site-product-row ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.site-product-row li {
    border-radius: 999px;
    padding: 6px 9px;
    background: var(--site-soft);
    color: #43586b;
    font-size: 13px;
    font-weight: 800;
}

.site-product-row strong {
    color: var(--site-cyan);
}

.product-subnav {
    position: sticky;
    top: 76px;
    z-index: 35;
    min-height: 58px;
    justify-content: center;
    gap: 18px;
    border-bottom: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.product-subnav strong {
    margin-right: 16px;
    font-size: 18px;
}

.product-subnav a {
    color: #41566a;
}

.product-subnav__cta {
    background: #112539;
    color: #fff !important;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: center;
    min-height: 720px;
    padding: 70px 0;
}

.product-hero__tags {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.product-hero__tags span {
    border: 1px solid var(--site-line);
    border-radius: 999px;
    padding: 8px 11px;
    background: #fff;
    color: #405568;
    font-weight: 800;
}

.product-hero__visual {
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    background: #dde7ef;
}

.product-render {
    display: grid;
    height: 520px;
    place-items: center;
    background:
        linear-gradient(145deg, #f4f8f9 0%, #dce9ef 45%, #f6f1e5 100%),
        repeating-linear-gradient(90deg, rgba(20, 33, 47, 0.05) 0 1px, transparent 1px 18px);
}

.product-render__body {
    position: relative;
    width: 64%;
    min-width: 290px;
    height: 340px;
    border: 1px solid #9fb1c1;
    border-radius: 8px;
    background: #112539;
    box-shadow: 0 30px 70px rgba(20, 33, 47, 0.25);
}

.product-render__light {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #78e0bd;
    box-shadow: 0 0 18px rgba(120, 224, 189, 0.74);
}

.product-render__screen {
    position: absolute;
    inset: 56px 36px 42px;
    display: grid;
    align-content: center;
    gap: 12px;
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.product-render__screen strong {
    font-size: 30px;
}

.product-render__screen span {
    color: #a8d7de;
    font-weight: 800;
}

.product-render__screen div {
    height: 72px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(15, 143, 157, 0.5), rgba(213, 138, 24, 0.38));
}

.product-render__dock {
    width: 54%;
    height: 18px;
    margin-top: -58px;
    border-radius: 999px;
    background: rgba(20, 33, 47, 0.2);
}

.product-feature-block,
.product-scenario,
.product-specs,
.product-final-cta {
    padding: 76px 0;
}

.product-feature-block__head {
    max-width: 760px;
    margin-bottom: 30px;
}

.product-feature-grid article,
.service-route-grid article,
.service-capabilities article,
.download-card {
    padding: 24px;
}

.product-scenario {
    display: grid;
    grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
    gap: 42px;
}

.product-scenario__cards {
    display: grid;
    gap: 14px;
}

.product-scenario__cards article {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    padding: 22px;
    background: #fff;
}

.product-scenario__cards h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.product-specs__head {
    margin-bottom: 24px;
}

.product-specs__table {
    display: grid;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.product-specs__table div {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    border-bottom: 1px solid var(--site-line);
}

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

.product-specs__table dt,
.product-specs__table dd {
    margin: 0;
    padding: 18px;
}

.product-specs__table dt {
    background: var(--site-soft);
    font-weight: 900;
}

.product-final-cta {
    margin-bottom: 60px;
    border-radius: 8px;
    padding: 42px;
    background: #fff;
}

.site-edit-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    border-radius: 8px;
    padding: 10px 14px;
    background: var(--site-amber);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(20, 33, 47, 0.18);
}

.download-grid {
    padding: 42px 0 76px;
}

.download-card {
    display: grid;
    gap: 20px;
}

.download-card dl,
.service-hero__panel dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.download-card dl div,
.service-hero__panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--site-line);
    padding-top: 10px;
}

.download-card dt,
.download-card dd,
.service-hero__panel dt,
.service-hero__panel dd {
    margin: 0;
}

.download-card dt,
.service-hero__panel dt {
    color: var(--site-muted);
}

.download-hero,
.download-picker,
.download-featured,
.download-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.download-hero {
    padding: 82px 0 38px;
}

.download-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: #7a8a98;
    font-weight: 800;
}

.download-breadcrumb a {
    color: #536677;
}

.download-breadcrumb a:hover {
    color: var(--site-cyan);
}

.download-hero h1 {
    margin: 0;
    color: var(--site-ink);
    font-size: 58px;
    line-height: 1.08;
    font-weight: 950;
}

.download-hero p:last-child {
    max-width: 820px;
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.8;
}

.download-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 28px;
}

.download-picker__panel,
.download-picker__aside {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.download-picker__panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
}

.download-picker__panel > span,
.download-picker__aside strong,
.download-card__meta span,
.download-featured__copy > span {
    color: var(--site-cyan);
    font-size: 13px;
    font-weight: 900;
}

.download-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-filter button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    border: 1px solid #d8e5e3;
    border-radius: 999px;
    padding: 8px 14px;
    background: #f7fbfa;
    color: #324755;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.download-filter button small {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: #e7f4f1;
    color: #0b8f70;
    font-size: 12px;
}

.download-filter button.is-active {
    border-color: #0f221f;
    background: #0f221f;
    color: #fff;
}

.download-filter button.is-active small {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.download-picker__aside {
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(15, 143, 157, 0.10), rgba(213, 138, 24, 0.12)),
        #ffffff;
}

.download-picker__aside p {
    margin: 8px 0 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.download-featured {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 54px;
    border: 1px solid #d8e5e3;
    border-radius: 8px;
    padding: 22px;
    background:
        linear-gradient(135deg, #f6fbfa 0%, #ffffff 48%, #fff8ea 100%);
}

.download-featured__media {
    display: grid;
    min-height: 330px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #eef7f5, #f8faf2),
        repeating-linear-gradient(45deg, rgba(20, 33, 47, 0.06) 0 1px, transparent 1px 18px);
}

.download-featured__media img {
    display: block;
    width: min(86%, 520px);
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(20, 33, 47, 0.17));
}

.download-featured__media span,
.download-card__media span {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 8px;
    background: #0f221f;
    color: #fff;
    font-size: 40px;
    font-weight: 950;
}

.download-featured__copy h2 {
    margin: 12px 0 12px;
    color: var(--site-ink);
    font-size: 40px;
    line-height: 1.16;
    font-weight: 950;
}

.download-featured__copy p {
    margin: 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.8;
}

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

.download-featured__copy dl div {
    border-top: 1px solid #d8e5e3;
    padding-top: 12px;
}

.download-featured__copy dt,
.download-featured__copy dd {
    margin: 0;
}

.download-featured__copy dt {
    color: var(--site-muted);
    font-size: 13px;
}

.download-featured__copy dd {
    margin-top: 4px;
    color: var(--site-ink);
    font-weight: 900;
}

.download-section {
    padding: 8px 0 76px;
}

.download-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 24px;
    align-items: end;
    margin-bottom: 22px;
}

.download-section__head .site-kicker {
    grid-column: 1 / -1;
    margin: 0;
}

.download-section__head h2 {
    margin: 0;
    color: var(--site-ink);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 950;
}

.download-section__head span {
    color: var(--site-muted);
    font-weight: 900;
}

.download-section .download-grid {
    padding: 0;
}

.download-card {
    gap: 0;
    padding: 0;
}

.download-card[hidden] {
    display: none;
}

.download-card__media {
    display: grid;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, #edf7f4, #f7f9ef),
        repeating-linear-gradient(45deg, rgba(20, 33, 47, 0.05) 0 1px, transparent 1px 16px);
}

.download-card__media img {
    display: block;
    width: 86%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(20, 33, 47, 0.14));
}

.download-card__body {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 22px;
}

.download-card__meta {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.download-card__meta em {
    border-radius: 999px;
    padding: 5px 9px;
    background: #fff4df;
    color: var(--site-amber);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.download-card h3 {
    margin: 14px 0 10px;
    color: var(--site-ink);
    font-size: 23px;
    line-height: 1.28;
    font-weight: 950;
}

.download-card p {
    min-height: 76px;
}

.download-card dl {
    margin: 18px 0 22px;
}

.download-card dl div {
    align-items: baseline;
}

.download-card dd {
    color: #263c4b;
    text-align: right;
    font-weight: 800;
}

.download-card .site-button {
    width: fit-content;
    margin-top: auto;
}

.download-empty {
    margin: 22px 0 0;
    border: 1px dashed #cddbd8;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    color: var(--site-muted);
    text-align: center;
    font-weight: 800;
}

.site-note-band {
    grid-template-columns: minmax(0, 1fr) auto;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
    padding: 86px 0 56px;
}

.service-hero__panel {
    border: 1px solid var(--site-line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.service-hero__panel dl {
    margin-top: 16px;
}

.service-route-section {
    padding: 40px 0 74px;
}

.service-route-grid article a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--site-cyan);
    font-weight: 900;
}

.service-process {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
    gap: 38px;
    padding: 70px 0;
}

.service-process ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-process li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.service-process li span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: #e7f5f6;
    color: var(--site-cyan);
    font-weight: 900;
}

.service-process p {
    margin: 0;
    color: var(--site-muted);
}

.service-capabilities {
    padding: 0 0 84px;
}

.service-capabilities strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    min-height: 426px;
    margin-top: 68px;
    border-top: 0;
    border-radius: 24px 24px 0 0;
    background: #272b31;
    color: #ffffff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(560px, 1fr);
    gap: 70px;
    width: min(1760px, calc(100% - 112px));
    min-height: 260px;
    padding: 88px 0 58px;
    align-items: stretch;
}

.site-footer__lead,
.site-footer__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-footer__lead {
    justify-content: space-between;
    gap: 70px;
}

.site-footer__brand {
    gap: 14px;
    color: #fff;
}

.site-footer__brand:hover {
    color: #fff;
}

.site-footer__brand-mark {
    width: 40px;
    height: 46px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.site-footer__brand-name {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-footer__subscribe {
    width: min(365px, 100%);
}

.site-footer__subscribe label {
    display: block;
    margin-bottom: 26px;
    color: #0d6cff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.site-footer__subscribe-field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__subscribe-field input {
    min-width: 0;
    flex: 1;
    height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.site-footer__subscribe-field input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.site-footer__subscribe-field button {
    width: 44px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.site-footer__content {
    align-items: flex-end;
    justify-content: flex-end;
    gap: 42px;
}

.site-footer__legal a:hover {
    color: #4f8dff;
}

.site-footer__community {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 28px;
    margin-right: 102px;
}

.site-footer__qrcodes {
    display: flex;
    gap: 22px;
}

.site-footer__qr {
    margin: 0;
    color: #fff;
    text-align: center;
}

.site-footer__qr img {
    display: block;
    width: 82px;
    height: 82px;
    border: 4px solid #f6f7f8;
    background: #fff;
    object-fit: cover;
}

.site-footer__qr figcaption {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.site-footer__meta {
    color: rgba(255, 255, 255, 0.68);
    text-align: right;
}

.site-footer__meta p {
    max-width: none;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__meta p a {
    color: inherit;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px 24px;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 700;
}

.site-footer__legal span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 3px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.78);
    color: #20242a;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.site-footer__float {
    position: absolute;
    top: 128px;
    right: 26px;
    z-index: 2;
    display: grid;
    gap: 16px;
}

.site-footer__float-link {
    display: inline-grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    font-size: 24px;
    font-weight: 800;
}

.site-footer__float-link--service {
    background: #0d6cff;
    color: #fff;
}

.site-footer__float-link--top {
    background: #fff;
    color: #20242a;
}

@media (max-width: 1100px) {
    .site-footer {
        min-height: auto;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        width: min(100% - 48px, 1180px);
        gap: 52px;
        padding: 76px 0 66px;
    }

    .site-footer__lead {
        gap: 48px;
    }

    .site-footer__content,
    .site-footer__meta {
        align-items: flex-start;
        text-align: left;
    }

    .site-footer__community,
    .site-footer__legal {
        justify-content: flex-start;
    }

    .site-footer__community {
        margin-right: 0;
    }

    .site-footer__float {
        top: 76px;
        right: 24px;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .site-brand__logo {
        width: 132px;
        max-width: 54vw;
    }

    .site-nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav,
    .site-header__actions {
        grid-column: 1 / -1;
        display: none;
        justify-content: start;
    }

    .site-nav.is-open {
        display: grid;
        gap: 8px;
        width: 100%;
        padding-bottom: 16px;
    }

    .site-header__actions {
        display: none;
    }

    .site-nav__drop-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: space-between;
        width: 100%;
    }

    .site-nav__drop-button {
        display: block;
    }

    .site-nav__dropdown {
        display: block;
        min-height: 0;
    }

    .site-nav__dropdown::after {
        display: none;
    }

    .site-nav__link,
    .site-header__ghost,
    .site-header__cta {
        justify-content: flex-start;
        width: 100%;
    }

    .site-nav__menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .site-nav__menu.is-open {
        display: grid;
    }

    .site-nav__menu a {
        min-width: 0;
    }

    .site-hero,
    .product-hero,
    .service-hero,
    .product-scenario,
    .service-process,
    .site-product-board {
        grid-template-columns: 1fr;
    }

    .download-picker,
    .download-featured {
        grid-template-columns: 1fr;
    }

    .download-picker__panel {
        grid-template-columns: 1fr;
    }

    .download-featured__copy dl {
        grid-template-columns: 1fr;
    }

    .site-hero,
    .product-hero {
        min-height: auto;
    }

    .site-hero__visual,
    .product-hero__visual {
        min-height: 420px;
    }

    .site-product-grid,
    .site-route-grid,
    .product-feature-grid,
    .service-route-grid,
    .service-capabilities,
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-product-board__side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-home-band,
    .site-note-band {
        grid-template-columns: 1fr;
    }

    .product-subnav {
        overflow-x: auto;
        justify-content: start;
        padding: 0 20px;
    }
}

@media (max-width: 680px) {
    .site-header__inner,
    .site-hero,
    .site-section,
    .site-page-hero,
    .site-product-board,
    .product-hero,
    .product-feature-block,
    .product-scenario,
    .product-specs,
    .product-final-cta,
    .download-grid,
    .site-note-band,
    .service-hero,
    .service-route-section,
    .service-process,
    .service-capabilities,
    .site-footer__inner {
        width: min(100% - 28px, 1180px);
    }

    .download-hero,
    .download-picker,
    .download-featured,
    .download-section {
        width: min(100% - 28px, 1180px);
    }

    .download-hero {
        padding-top: 54px;
    }

    .download-hero h1 {
        font-size: 40px;
    }

    .download-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .download-filter button {
        flex: 0 0 auto;
    }

    .download-featured {
        padding: 16px;
    }

    .download-featured__media {
        min-height: 240px;
    }

    .download-featured__copy h2 {
        font-size: 30px;
    }

    .download-section__head {
        grid-template-columns: 1fr;
    }

    .download-card__body {
        min-height: auto;
    }

    .site-hero h1,
    .site-page-hero h1,
    .product-hero h1,
    .service-hero h1 {
        font-size: 40px;
    }

    .site-section__head,
    .site-product-category__head,
    .site-footer__inner,
    .site-footer__meta {
        display: grid;
        gap: 14px;
    }

    .site-product-grid,
    .site-route-grid,
    .product-feature-grid,
    .service-route-grid,
    .service-capabilities,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .site-product-row a {
        grid-template-columns: 1fr;
    }

    .site-product-row strong {
        justify-self: start;
    }

    .site-footer {
        margin-top: 44px;
        border-radius: 18px 18px 0 0;
    }

    .site-footer__inner {
        width: min(100% - 28px, 1180px);
        padding: 48px 0 46px;
        gap: 38px;
    }

    .site-footer__brand {
        gap: 10px;
    }

    .site-footer__brand-mark {
        width: 34px;
        height: 40px;
    }

    .site-footer__brand-name {
        font-size: 23px;
        white-space: normal;
    }

    .site-footer__subscribe label {
        margin-bottom: 18px;
    }

    .site-footer__community {
        display: grid;
        gap: 24px;
    }

    .site-footer__qrcodes {
        flex-wrap: wrap;
        gap: 18px;
    }

    .site-footer__qr img {
        width: 76px;
        height: 76px;
    }

    .site-footer__meta p {
        margin-bottom: 14px;
    }

    .site-footer__legal {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    .site-footer__float {
        position: static;
        display: flex;
        width: min(100% - 28px, 1180px);
        margin: 0 auto 34px;
    }

    .site-footer__float-link {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .product-specs__table div {
        grid-template-columns: 1fr;
    }

    .product-subnav strong {
        display: none;
    }
}

/* Product-site visual upgrade. Keep this section after the legacy marketing rules so
   production can move toward a hardware-led homepage without disturbing older pages. */
.site-marketing-body {
    background: #f7f9f8;
}

.site-header {
    border-bottom-color: rgba(214, 224, 225, 0.72);
    background: rgba(255, 255, 255, 0.86);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(20, 33, 47, 0.08);
}

.site-brand__mark,
.site-footer__brand-badge {
    background: #12232d;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: #edf7f4;
    color: #0b8f70;
}

.site-header__cta,
.site-button--primary {
    border-color: #0f221f;
    background: #0f221f;
}

.site-button {
    border-radius: 999px;
    padding: 10px 18px;
}

.site-nav__menu.site-nav__mega {
    left: 50%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(760px, calc(100vw - 48px));
    gap: 12px;
    padding: 16px;
}

.site-nav__mega section {
    display: grid;
    gap: 6px;
}

.site-nav__mega strong {
    padding: 8px 10px 4px;
    color: #778694;
    font-size: 13px;
}

.site-nav__mega-aside {
    border-left: 1px solid var(--site-line);
    padding-left: 12px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 76px);
    border-bottom: 1px solid #e4ecec;
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 248, 0.95) 44%, rgba(233, 243, 241, 0.96) 100%),
        linear-gradient(180deg, #ffffff, #eff6f4);
}

.home-hero__inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
    width: min(1280px, calc(100% - 48px));
    min-height: calc(100svh - 170px);
    margin: 0 auto;
    align-items: center;
    gap: 28px;
}

.home-hero__copy {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.home-hero h1 {
    margin: 8px 0 0;
    color: #111b20;
    font-size: clamp(78px, 10vw, 150px);
    line-height: 0.9;
    font-weight: 950;
}

.home-hero__headline {
    max-width: 640px;
    margin: 24px 0 0;
    color: #17252a;
    font-size: clamp(26px, 3vw, 45px);
    line-height: 1.18;
    font-weight: 900;
}

.home-hero__lead {
    max-width: 560px;
    margin: 20px 0 0;
    color: #607076;
    font-size: 17px;
    line-height: 1.8;
}

.home-hero__visual {
    position: relative;
    align-self: stretch;
    min-height: 560px;
}

.home-hero__visual img {
    position: absolute;
    right: -110px;
    top: 50%;
    width: min(980px, 68vw);
    max-width: none;
    transform: translateY(-50%);
    filter: drop-shadow(0 36px 60px rgba(20, 33, 47, 0.18));
}

.home-hero__quick {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 34px;
    border-top: 1px solid #dce7e6;
}

.home-hero__quick a {
    display: grid;
    gap: 6px;
    min-height: 86px;
    align-content: center;
    border-right: 1px solid #dce7e6;
    padding: 16px 22px;
    color: #15242a;
}

.home-hero__quick a:first-child {
    border-left: 1px solid #dce7e6;
}

.home-hero__quick span,
.home-product-tile p,
.home-scene span,
.home-capability__list span {
    color: #0b8f70;
    font-size: 13px;
    font-weight: 900;
}

.home-hero__quick strong {
    font-size: 18px;
    line-height: 1.35;
}

.home-discovery,
.home-product-showcase,
.home-capability,
.home-service-strip {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.home-discovery {
    padding: 92px 0 64px;
}

.home-discovery__head {
    max-width: 780px;
    margin-bottom: 34px;
}

.home-discovery h2,
.home-product-showcase h2,
.home-capability h2,
.home-service-strip h2 {
    margin: 0;
    color: #121d22;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 950;
}

.home-discovery__grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 18px;
}

.home-scene {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 8px;
    padding: 34px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #dce7e6;
}

.home-scene--wide {
    grid-row: span 2;
    min-height: 680px;
    background: #eef6f4;
}

.home-scene--dark {
    background: #142229;
    color: #fff;
}

.home-scene h3 {
    max-width: 560px;
    margin: 12px 0 0;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.16;
    font-weight: 950;
}

.home-scene p {
    max-width: 520px;
    margin: 14px 0 0;
    color: #607076;
    font-size: 16px;
    line-height: 1.72;
}

.home-scene--dark p {
    color: #b9c9cf;
}

.home-scene img {
    position: absolute;
    right: -86px;
    bottom: -84px;
    width: min(760px, 72%);
}

.home-product-showcase {
    padding: 54px 0 82px;
}

.home-product-showcase .site-section__head {
    margin-bottom: 28px;
}

.home-product-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 18px;
}

.home-product-tile {
    display: grid;
    min-height: 430px;
    color: #15242a;
    background: #fff;
    box-shadow: inset 0 0 0 1px #dce7e6;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-product-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(20, 33, 47, 0.12);
}

.home-product-tile__media {
    display: grid;
    min-height: 235px;
    place-items: center;
    background: #eef5f3;
}

.home-product-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-tile__media--generated span {
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    border-radius: 20px;
    background: #132329;
    color: #fff;
    font-size: 38px;
    font-weight: 950;
}

.home-product-tile > div:last-child {
    padding: 24px;
}

.home-product-tile h3 {
    margin: 8px 0 10px;
    font-size: 25px;
    font-weight: 950;
}

.home-product-tile small {
    display: block;
    color: #617279;
    font-size: 15px;
    line-height: 1.65;
}

.home-capability {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
    border-top: 1px solid #dce7e6;
    padding: 86px 0;
}

.home-capability__intro {
    position: sticky;
    top: 116px;
}

.home-capability__intro p {
    max-width: 520px;
    color: #607076;
    line-height: 1.76;
}

.home-capability__list {
    display: grid;
    gap: 0;
    border-top: 1px solid #dce7e6;
}

.home-capability__list article {
    display: grid;
    grid-template-columns: 72px minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 22px;
    align-items: start;
    border-bottom: 1px solid #dce7e6;
    padding: 28px 0;
}

.home-capability__list h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 950;
}

.home-capability__list p {
    margin: 0;
    color: #607076;
    line-height: 1.72;
}

.home-service-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 84px;
    border-radius: 8px;
    padding: 42px;
    background: #12232d;
    color: #fff;
}

.home-service-strip h2 {
    color: #fff;
}

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

.home-service-strip__actions a {
    min-height: 156px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.home-service-strip__actions h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 950;
}

.home-service-strip__actions p {
    margin: 0;
    color: #bed0d5;
    line-height: 1.62;
}

.product-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.product-filter-bar a {
    border: 1px solid #dce7e6;
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    color: #22333a;
    font-weight: 800;
}

.product-filter-bar a:hover {
    border-color: #0b8f70;
    color: #0b8f70;
}

.site-page-hero--products {
    min-height: 360px;
    border-bottom: 1px solid #dce7e6;
}

.site-product-row {
    border-color: #dce7e6;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-product-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(20, 33, 47, 0.1);
}

.product-hero__visual {
    background: #eef6f4;
}

.product-hero__visual img {
    object-fit: contain;
}

.site-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: #6d7d84;
    font-size: 14px;
    font-weight: 800;
}

.site-breadcrumb a {
    color: #22333a;
}

.site-breadcrumb a:hover {
    color: #0b8f70;
}

.download-hero,
.download-picker,
.download-items {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.download-hero {
    padding: 76px 0 42px;
}

.download-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
    gap: 46px;
    align-items: stretch;
}

.download-hero__copy {
    display: grid;
    align-content: center;
    min-height: 420px;
}

.download-hero h1 {
    margin: 8px 0 0;
    color: #111b20;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 950;
}

.download-hero__copy > p:not(.site-kicker) {
    max-width: 680px;
    margin: 20px 0 0;
    color: #607076;
    font-size: 17px;
    line-height: 1.82;
}

.download-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.download-hero__featured {
    display: grid;
    grid-template-rows: minmax(280px, 1fr) auto;
    overflow: hidden;
    border: 1px solid #dce7e6;
    border-radius: 8px;
    background: #fff;
    color: #15242a;
    box-shadow: 0 28px 70px rgba(20, 33, 47, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-hero__featured:hover {
    color: #15242a;
    transform: translateY(-4px);
    box-shadow: 0 34px 78px rgba(20, 33, 47, 0.14);
}

.download-hero__featured figure,
.download-item__media {
    display: grid;
    margin: 0;
    place-items: center;
    background:
        linear-gradient(145deg, #eef6f4, #ffffff 58%, #f7f0e4),
        repeating-linear-gradient(90deg, rgba(20, 33, 47, 0.05) 0 1px, transparent 1px 18px);
}

.download-hero__featured img,
.download-item__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-hero__featured figure > span,
.download-item__media span {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border-radius: 8px;
    background: #132329;
    color: #fff;
    font-size: 38px;
    font-weight: 950;
}

.download-hero__featured > div {
    display: grid;
    gap: 8px;
    padding: 24px;
}

.download-hero__featured small,
.download-item__meta span {
    color: #0b8f70;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.download-hero__featured strong {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 950;
}

.download-hero__featured em,
.download-item__body > strong {
    color: #d58a18;
    font-style: normal;
    font-weight: 900;
}

.download-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
    gap: 28px;
    align-items: center;
    border-top: 1px solid #dce7e6;
    border-bottom: 1px solid #dce7e6;
    padding: 26px 0;
}

.download-picker > div {
    display: grid;
    gap: 14px;
}

.download-picker > div > span {
    color: #607076;
    font-size: 14px;
    font-weight: 900;
}

.download-picker__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-picker__tabs button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    border: 1px solid #dce7e6;
    border-radius: 999px;
    padding: 9px 15px;
    background: #fff;
    color: #22333a;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.download-picker__tabs button:hover,
.download-picker__tabs button.is-active {
    border-color: #0b8f70;
    background: #edf7f4;
    color: #0b8f70;
}

.download-picker__tabs small {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: #f0f4f3;
    color: #607076;
    font-size: 12px;
}

.download-picker p {
    margin: 0;
    color: #607076;
    line-height: 1.72;
}

.download-items {
    padding: 58px 0 78px;
}

.download-items__head {
    margin-bottom: 24px;
}

.download-items__head h2 {
    margin: 8px 0 0;
    color: #121d22;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 950;
}

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

.download-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #dce7e6;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.download-item:hover {
    border-color: rgba(11, 143, 112, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(20, 33, 47, 0.11);
}

.download-item[hidden] {
    display: none;
}

.download-item > a:first-child {
    display: grid;
    height: 100%;
    color: #15242a;
}

.download-item > a:first-child:hover {
    color: #15242a;
}

.download-item__media {
    aspect-ratio: 16 / 10;
}

.download-item__media img {
    object-fit: cover;
}

.download-item__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.download-item__meta {
    display: flex;
    min-height: 26px;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.download-item__meta small {
    border-radius: 999px;
    padding: 4px 8px;
    background: #fff3df;
    color: #b66f0e;
    font-size: 12px;
    font-weight: 900;
}

.download-item h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.28;
    font-weight: 950;
}

.download-item p {
    margin: 0;
    color: #607076;
    line-height: 1.7;
}

.download-item dl {
    display: grid;
    gap: 8px;
    margin: 2px 0 0;
}

.download-item dl div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    border-top: 1px solid #edf2f1;
    padding-top: 8px;
}

.download-item dt,
.download-item dd {
    margin: 0;
    min-width: 0;
    line-height: 1.5;
}

.download-item dt {
    color: #778694;
    font-weight: 900;
}

.download-item dd {
    color: #293a40;
    overflow-wrap: anywhere;
}

.download-item__edit {
    position: absolute;
    right: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(19, 35, 41, 0.86);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.download-item__edit:hover {
    color: #fff;
}

.download-empty {
    display: none;
    margin: 18px 0 0;
    border: 1px dashed #cbd9d8;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    color: #607076;
    font-weight: 800;
}

.download-empty.is-visible {
    display: block;
}

html.site-js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

html.site-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-nav__menu.site-nav__mega {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .site-nav__mega-aside {
        border-left: 0;
        border-top: 1px solid var(--site-line);
        padding-left: 0;
        padding-top: 10px;
    }

    .home-hero__inner,
    .home-discovery__grid,
    .home-capability,
    .home-service-strip,
    .download-hero__layout,
    .download-picker {
        grid-template-columns: 1fr;
    }

    .home-hero__inner {
        min-height: auto;
        padding-top: 36px;
    }

    .home-hero__visual {
        min-height: 420px;
        order: -1;
    }

    .home-hero__visual img {
        right: 50%;
        width: min(880px, 110vw);
        transform: translate(50%, -50%);
    }

    .home-hero__quick,
    .home-product-rail,
    .home-service-strip__actions,
    .download-items__grid {
        grid-template-columns: 1fr;
    }

    .download-hero__copy {
        min-height: auto;
    }

    .download-hero__featured {
        grid-template-rows: minmax(240px, 1fr) auto;
    }

    .home-scene--wide {
        min-height: 560px;
    }

    .home-capability__intro {
        position: static;
    }
}

@media (max-width: 680px) {
    .home-hero__inner,
    .home-hero__quick,
    .home-discovery,
    .home-product-showcase,
    .home-capability,
    .home-service-strip,
    .download-hero,
    .download-picker,
    .download-items {
        width: min(100% - 28px, 1180px);
    }

    .home-hero {
        min-height: auto;
    }

    .download-hero {
        padding-top: 48px;
    }

    .download-hero h1 {
        font-size: 44px;
    }

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

    .download-picker__tabs button {
        justify-content: space-between;
        width: 100%;
    }

    .download-items__head h2 {
        font-size: 30px;
    }

    .home-hero h1 {
        font-size: clamp(62px, 18vw, 86px);
    }

    .home-hero__headline,
    .home-discovery h2,
    .home-product-showcase h2,
    .home-capability h2,
    .home-service-strip h2 {
        font-size: 32px;
    }

    .home-hero__visual {
        min-height: 310px;
    }

    .home-hero__quick {
        margin-bottom: 18px;
    }

    .home-hero__quick a {
        border-left: 1px solid #dce7e6;
        min-height: 78px;
    }

    .home-discovery {
        padding-top: 56px;
    }

    .home-scene {
        min-height: 300px;
        padding: 24px;
    }

    .home-scene--wide {
        min-height: 470px;
    }

    .home-scene img {
        right: -150px;
        width: 118%;
    }

    .home-product-tile {
        min-height: 360px;
    }

    .home-capability__list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-service-strip {
        padding: 28px 20px;
    }
}

/* UGNAS-inspired second pass: dark product banners, searchable product matrix,
   and support-center entry grid. Visual assets are generated locally for duize. */
.site-ugnas-like {
    background: #f4f6f8;
    color: #101820;
}

.site-ugnas-like .site-header {
    background: rgba(255, 255, 255, 0.9);
}

.ug-hero,
.ug-service-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: min(1500px, calc(100% - 32px));
    margin: 18px auto 0;
    border-radius: 8px;
    background-color: #080c12;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.ug-hero::before,
.ug-service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.ug-hero--home {
    min-height: min(760px, calc(100svh - 104px));
}

.ug-hero--home::before {
    background-image: url("/static/images/duizeaio-home-banner.png");
}

.ug-hero--products {
    min-height: 520px;
    margin-bottom: 78px;
}

.ug-hero--products::before {
    background-image: url("/static/images/duize-products-banner.png");
}

.ug-service-hero {
    min-height: 500px;
    margin-bottom: 86px;
}

.ug-service-hero::before {
    background-image: url("/static/images/duize-service-banner.png");
}

.ug-hero__shade,
.ug-service-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 72% 46%, rgba(32, 154, 142, 0.2), transparent 36%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.16) 100%);
}

.ug-hero--products,
.ug-service-hero {
    overflow: visible;
}

.ug-hero__content,
.ug-service-hero__content {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
    padding: 92px 0;
}

.ug-hero__content {
    max-width: 720px;
    margin-left: max(36px, calc((100% - 1180px) / 2));
}

.ug-hero__content--center {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ug-service-hero__content {
    display: grid;
    min-height: 380px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.ug-eyebrow {
    margin: 0 0 12px;
    color: #48d3bd;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0;
}

.ug-hero h1,
.ug-service-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 84px);
    line-height: 1.05;
    font-weight: 950;
}

.ug-hero p:not(.ug-eyebrow),
.ug-service-hero p:not(.ug-eyebrow) {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.72;
}

.ug-hero__content--center p:not(.ug-eyebrow),
.ug-service-hero__content p:not(.ug-eyebrow) {
    margin-left: auto;
    margin-right: auto;
}

.ug-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

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

.site-button--dark-ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.ug-hero__notes {
    position: absolute;
    right: 38px;
    bottom: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ug-hero__notes span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.ug-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.ug-hero__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.ug-hero__dots .is-active {
    width: 22px;
    border-radius: 999px;
    background: #fff;
}

.ug-shortcuts,
.ug-discover,
.ug-product-strip,
.ug-advantage,
.ug-service-band,
.ug-product-filter,
.ug-product-catalog,
.ug-service-entry,
.ug-question-section,
.ug-service-process {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.ug-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    background: #fff;
}

.ug-shortcuts a {
    display: grid;
    gap: 5px;
    min-height: 94px;
    align-content: center;
    border-right: 1px solid #dfe6ea;
    padding: 18px 24px;
    color: #15222c;
}

.ug-shortcuts a:last-child {
    border-right: 0;
}

.ug-shortcuts span,
.ug-product-mini small,
.ug-product-card__meta span,
.ug-product-card__meta em,
.ug-scene-card span,
.ug-advantage-grid span,
.ug-service-grid span,
.ug-service-context > span {
    color: #0b8f70;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
}

.ug-shortcuts strong {
    font-size: 18px;
    line-height: 1.3;
}

.ug-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

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

.ug-section-head h2,
.ug-service-band h2,
.ug-question-panel h2,
.ug-service-process h2 {
    margin: 0;
    color: #101820;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 950;
}

.ug-section-head a,
.ug-section-head > span {
    color: #0b8f70;
    font-weight: 900;
}

.ug-discover {
    padding: 96px 0 62px;
}

.ug-scene-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.ug-scene-tabs a {
    border: 1px solid #d9e2e5;
    border-radius: 999px;
    padding: 9px 16px;
    background: #fff;
    color: #293944;
    font-weight: 850;
}

.ug-scene-tabs a:hover {
    border-color: #0b8f70;
    color: #0b8f70;
}

.ug-scene-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 18px;
}

.ug-scene-card {
    min-height: 280px;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
}

.ug-scene-card--feature {
    grid-row: span 2;
    min-height: 580px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 247, 245, 0.95)),
        url("/static/images/duizeaio-product-hero.png") right -80px bottom -100px / min(760px, 86%) no-repeat;
}

.ug-scene-card--dark {
    background: #101b22;
    color: #fff;
}

.ug-scene-card h3 {
    max-width: 560px;
    margin: 12px 0 12px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.16;
    font-weight: 950;
}

.ug-scene-card p {
    max-width: 520px;
    margin: 0;
    color: #62717a;
    line-height: 1.72;
}

.ug-scene-card--dark p {
    color: #b8c8cf;
}

.ug-product-strip {
    padding: 54px 0 84px;
}

.ug-product-rail,
.ug-product-grid,
.ug-service-grid,
.ug-advantage-grid {
    display: grid;
    gap: 18px;
}

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

.ug-product-mini,
.ug-product-card {
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    background: #fff;
    color: #14212f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ug-product-mini {
    display: grid;
    overflow: hidden;
}

.ug-product-mini:hover,
.ug-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(16, 24, 32, 0.12);
}

.ug-product-mini__media,
.ug-product-card__media {
    display: grid;
    min-height: 230px;
    place-items: center;
    overflow: hidden;
    background: #eef4f5;
}

.ug-product-mini__media img,
.ug-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ug-product-mini__media--empty,
.ug-product-card__media--empty {
    background:
        linear-gradient(135deg, #eef6f5, #f8fbf4),
        repeating-linear-gradient(45deg, rgba(20, 33, 47, 0.07) 0 1px, transparent 1px 14px);
}

.ug-product-mini__media--empty span,
.ug-product-card__media--empty span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 8px;
    background: #111d26;
    color: #fff;
    font-size: 34px;
    font-weight: 950;
}

.ug-product-mini > div:last-child,
.ug-product-card__body {
    padding: 22px;
}

.ug-product-mini h3,
.ug-product-card h3,
.ug-service-grid h3 {
    margin: 8px 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 950;
}

.ug-product-mini p,
.ug-product-card p,
.ug-service-grid p,
.ug-advantage-grid p,
.ug-question-list span,
.ug-service-process p {
    margin: 0;
    color: #62717a;
    line-height: 1.7;
}

.ug-advantage {
    padding: 80px 0;
    border-top: 1px solid #dfe6ea;
}

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

.ug-advantage-grid article {
    min-height: 210px;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.ug-advantage-grid h3 {
    margin: 18px 0 10px;
    font-size: 22px;
    font-weight: 950;
}

.ug-service-band {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 86px;
    border-radius: 8px;
    padding: 42px;
    background: #111d26;
    color: #fff;
}

.ug-service-band h2 {
    color: #fff;
}

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

.ug-service-band__links a {
    display: grid;
    gap: 12px;
    min-height: 150px;
    align-content: start;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.ug-service-band__links span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.62;
}

.ug-search-card,
.ug-service-search {
    position: absolute;
    left: 50%;
    bottom: -42px;
    width: min(820px, calc(100% - 54px));
    border: 1px solid rgba(223, 230, 234, 0.82);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
    transform: translateX(-50%);
}

.ug-search-card label,
.ug-service-search label {
    display: block;
    margin: 0 0 8px;
    color: #5c6b76;
    font-size: 13px;
    font-weight: 900;
}

.ug-search-card div,
.ug-service-search div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.ug-search-card input,
.ug-service-search input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d9e2e5;
    border-radius: 8px;
    padding: 0 14px;
    color: #14212f;
    font-size: 15px;
}

.ug-search-card button,
.ug-service-search button {
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    padding: 0 22px;
    background: #111d26;
    color: #fff;
    font-weight: 900;
}

.ug-product-filter {
    display: grid;
    gap: 0;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.ug-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #edf1f3;
    padding: 17px 20px;
}

.ug-filter-row:last-child {
    border-bottom: 0;
}

.ug-filter-row strong {
    min-width: 82px;
    color: #15242d;
}

.ug-filter-row button {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    background: transparent;
    color: #52636f;
    font-weight: 850;
    cursor: pointer;
}

.ug-filter-row button:hover,
.ug-filter-row button.is-active {
    background: #e9f7f3;
    color: #0b8f70;
}

.ug-product-catalog {
    padding: 34px 0 86px;
}

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

.ug-product-card {
    overflow: hidden;
}

.ug-product-card a {
    display: grid;
    height: 100%;
    color: inherit;
}

.ug-product-card__meta {
    display: flex;
    min-height: 26px;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.ug-product-card__meta em {
    border-radius: 999px;
    padding: 4px 8px;
    background: #fff3dc;
    color: #c47a13;
}

.ug-product-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.ug-product-card li {
    border-radius: 999px;
    padding: 6px 9px;
    background: #f0f4f5;
    color: #42535e;
    font-size: 13px;
    font-weight: 850;
}

.ug-product-card strong {
    display: inline-flex;
    margin-top: 18px;
    color: #0b8f70;
}

.ug-product-empty {
    margin: 24px 0 0;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    color: #62717a;
}

.ug-service-entry {
    padding: 4px 0 72px;
}

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

.ug-service-grid a {
    min-height: 250px;
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    padding: 26px;
    background: #fff;
    color: #14212f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ug-service-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(16, 24, 32, 0.12);
}

.ug-service-grid strong {
    display: inline-flex;
    margin-top: 20px;
    color: #0b8f70;
}

.ug-question-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    padding: 0 0 76px;
}

.ug-question-panel,
.ug-service-context,
.ug-service-process {
    border: 1px solid #dfe6ea;
    border-radius: 8px;
    background: #fff;
}

.ug-question-panel {
    padding: 34px;
}

.ug-question-list {
    display: grid;
    margin-top: 26px;
    border-top: 1px solid #edf1f3;
}

.ug-question-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #edf1f3;
    padding: 18px 0;
    color: #14212f;
}

.ug-question-list strong {
    font-size: 18px;
}

.ug-service-context {
    align-self: start;
    padding: 24px;
}

.ug-service-context dl {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.ug-service-context dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #edf1f3;
    padding-top: 12px;
}

.ug-service-context dt,
.ug-service-context dd {
    margin: 0;
}

.ug-service-context dt {
    color: #62717a;
}

.ug-service-process {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
    gap: 36px;
    margin-bottom: 86px;
    padding: 34px;
}

.ug-service-process ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ug-service-process li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    border: 1px solid #edf1f3;
    border-radius: 8px;
    padding: 16px;
    background: #fafcfc;
}

.ug-service-process li span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: #e9f7f3;
    color: #0b8f70;
    font-weight: 950;
}

@media (max-width: 1100px) {
    .ug-product-rail,
    .ug-product-grid,
    .ug-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .ug-hero--home,
    .ug-hero--products,
    .ug-service-hero {
        min-height: 560px;
    }

    .ug-hero__content {
        margin-left: auto;
        padding-top: 76px;
    }

    .ug-shortcuts,
    .ug-scene-grid,
    .ug-service-band,
    .ug-question-section,
    .ug-service-process {
        grid-template-columns: 1fr;
    }

    .ug-shortcuts a {
        border-right: 0;
        border-bottom: 1px solid #dfe6ea;
    }

    .ug-shortcuts a:last-child {
        border-bottom: 0;
    }

    .ug-scene-card--feature {
        min-height: 470px;
    }

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

    .ug-service-band__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .ug-hero,
    .ug-service-hero {
        width: min(100% - 20px, 1500px);
        margin-top: 10px;
    }

    .ug-hero--home,
    .ug-hero--products,
    .ug-service-hero {
        min-height: 520px;
    }

    .ug-hero__content,
    .ug-service-hero__content {
        width: min(100% - 32px, 1180px);
        padding: 58px 0 118px;
    }

    .ug-hero h1,
    .ug-service-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .ug-hero p:not(.ug-eyebrow),
    .ug-service-hero p:not(.ug-eyebrow) {
        font-size: 16px;
    }

    .ug-actions,
    .ug-search-card div,
    .ug-service-search div,
    .ug-section-head,
    .ug-question-list a {
        grid-template-columns: 1fr;
    }

    .ug-actions {
        display: grid;
    }

    .ug-hero__notes {
        right: 16px;
        bottom: 58px;
        left: 16px;
    }

    .ug-hero__dots {
        bottom: 24px;
    }

    .ug-search-card,
    .ug-service-search {
        bottom: -70px;
        width: min(100% - 28px, 820px);
    }

    .ug-hero--products,
    .ug-service-hero {
        margin-bottom: 118px;
    }

    .ug-shortcuts,
    .ug-discover,
    .ug-product-strip,
    .ug-advantage,
    .ug-service-band,
    .ug-product-filter,
    .ug-product-catalog,
    .ug-service-entry,
    .ug-question-section,
    .ug-service-process {
        width: min(100% - 28px, 1180px);
    }

    .ug-discover {
        padding-top: 64px;
    }

    .ug-product-rail,
    .ug-product-grid,
    .ug-service-grid,
    .ug-advantage-grid {
        grid-template-columns: 1fr;
    }

    .ug-scene-card,
    .ug-question-panel,
    .ug-service-context,
    .ug-service-process,
    .ug-service-band {
        padding: 24px;
    }

    .ug-scene-card--feature {
        min-height: 430px;
        background-position: right -120px bottom -94px;
        background-size: 118%;
    }

    .ug-section-head h2,
    .ug-service-band h2,
    .ug-question-panel h2,
    .ug-service-process h2 {
        font-size: 32px;
    }
}

.template-site-home .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 80;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(0, 3, 8, 0.78), rgba(0, 3, 8, 0));
    box-shadow: none;
}

.template-site-home .site-header:not(.is-scrolled) .site-brand,
.template-site-home .site-header:not(.is-scrolled) .site-nav__link,
.template-site-home .site-header:not(.is-scrolled) .site-header__ghost,
.template-site-home .site-header:not(.is-scrolled) .site-brand__text small {
    color: #fff;
}

.template-site-home .site-header:not(.is-scrolled) .site-brand__mark {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.template-site-home .site-header:not(.is-scrolled) .site-nav__link:hover,
.template-site-home .site-header:not(.is-scrolled) .site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #6be7d1;
}

.template-site-home .site-header:not(.is-scrolled) .site-header__ghost {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.template-site-home .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
}

.duize-stage {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100svh;
    background: #02050a;
    color: #fff;
}

.duize-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 76% 18%, rgba(198, 223, 255, 0.46), transparent 22%),
        radial-gradient(circle at 48% 82%, rgba(20, 220, 190, 0.2), transparent 26%),
        linear-gradient(180deg, #02050a 0%, #07131b 62%, #02050a 100%);
}

.duize-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 74px),
        linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58));
    opacity: 0.72;
}

.duize-stage__slides {
    position: absolute;
    inset: 0;
}

.duize-stage__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
    align-items: center;
    width: 100%;
    padding: 120px max(38px, calc((100vw - 1360px) / 2)) 150px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.65s ease, transform 0.85s ease;
}

.duize-stage__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.duize-stage__slide--aio {
    background:
        radial-gradient(circle at 72% 54%, rgba(117, 189, 255, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.36) 54%, rgba(0, 0, 0, 0.16) 100%);
}

.duize-stage__slide--test {
    background:
        radial-gradient(circle at 76% 28%, rgba(42, 228, 202, 0.24), transparent 24%),
        linear-gradient(112deg, rgba(0, 0, 0, 0.9), rgba(5, 24, 32, 0.72), rgba(2, 5, 10, 0.42));
}

.duize-stage__slide--service {
    background:
        radial-gradient(circle at 72% 48%, rgba(63, 126, 255, 0.24), transparent 28%),
        radial-gradient(circle at 44% 78%, rgba(18, 214, 170, 0.18), transparent 24%),
        linear-gradient(112deg, rgba(0, 0, 0, 0.9), rgba(10, 17, 34, 0.66), rgba(2, 5, 10, 0.38));
}

.duize-stage__copy {
    position: relative;
    z-index: 4;
    max-width: 650px;
}

.duize-stage__eyebrow {
    margin: 0 0 18px;
    color: #63ead5;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 950;
}

.duize-stage h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 112px);
    line-height: 0.98;
    font-weight: 950;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
}

.duize-stage h1 span {
    display: inline-block;
    background: linear-gradient(180deg, #fff 18%, #dbf8ff 58%, #61d8ca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.72;
}

.duize-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.duize-stage__showcase {
    position: relative;
    z-index: 3;
    min-height: 520px;
}

.duize-stage__beam {
    position: absolute;
    top: -120px;
    right: -160px;
    width: 720px;
    height: 280px;
    background: linear-gradient(105deg, transparent, rgba(224, 240, 255, 0.68), transparent);
    filter: blur(10px);
    opacity: 0.76;
    transform: rotate(-13deg);
}

.duize-stage__platform {
    position: absolute;
    right: 0;
    bottom: 38px;
    left: 0;
    height: 120px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(132, 236, 228, 0.22), rgba(8, 18, 24, 0.9) 58%, transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.28), 0 32px 70px rgba(0, 0, 0, 0.64);
}

.duize-device {
    position: absolute;
    bottom: 112px;
    display: block;
    border: 1px solid rgba(230, 242, 255, 0.46);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 10% 88%, rgba(255, 255, 255, 0.16)),
        linear-gradient(135deg, #b8c5d4 0%, #313b49 42%, #0f1720 100%);
    box-shadow: 0 32px 66px rgba(0, 0, 0, 0.56), inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.duize-device::before {
    content: "";
    position: absolute;
    inset: 18px 16px 48px;
    border-radius: 6px;
    background:
        repeating-linear-gradient(90deg, #e9f3ff 0 34px, #0c1219 34px 44px, #111923 44px 52px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
    box-shadow: inset 0 0 0 3px #0e151e;
}

.duize-device::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #23dbb9;
    box-shadow: -56px 0 0 rgba(255, 255, 255, 0.34), -34px 0 0 rgba(255, 255, 255, 0.34), -78px 0 0 rgba(255, 255, 255, 0.34);
}

.duize-device--xl {
    left: 5%;
    width: 300px;
    height: 162px;
}

.duize-device--sm {
    left: 36%;
    bottom: 126px;
    width: 132px;
    height: 182px;
}

.duize-device--md {
    left: 52%;
    width: 220px;
    height: 168px;
}

.duize-device--wide {
    right: 4%;
    bottom: 116px;
    width: 360px;
    height: 188px;
}

.duize-device--tower {
    right: 18%;
    bottom: 320px;
    width: 128px;
    height: 160px;
    opacity: 0.78;
}

.duize-test-panel {
    position: absolute;
    display: block;
    border: 1px solid rgba(129, 236, 222, 0.26);
    border-radius: 8px;
    background: rgba(8, 18, 25, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.duize-test-panel--main {
    right: 6%;
    bottom: 94px;
    width: min(650px, 70vw);
    height: 380px;
}

.duize-test-panel--main::before {
    content: "";
    position: absolute;
    inset: 30px;
    background:
        linear-gradient(90deg, rgba(97, 232, 212, 0.9) 0 26%, transparent 26% 100%) 0 0 / 100% 10px,
        repeating-linear-gradient(180deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 72px);
}

.duize-test-panel--trace {
    right: 30%;
    bottom: 420px;
    width: 340px;
    height: 150px;
}

.duize-test-panel--metric {
    right: 2%;
    bottom: 430px;
    width: 260px;
    height: 190px;
}

.duize-service-node,
.duize-orbit {
    position: absolute;
    display: grid;
    place-items: center;
}

.duize-orbit {
    right: 8%;
    bottom: 76px;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(110, 230, 213, 0.2);
    border-radius: 50%;
}

.duize-orbit--two {
    right: 16%;
    bottom: 166px;
    width: 410px;
    height: 410px;
    border-color: rgba(95, 143, 255, 0.22);
}

.duize-service-node {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 950;
    backdrop-filter: blur(16px);
}

.duize-service-node--core {
    right: calc(8% + 210px);
    bottom: 294px;
    width: 170px;
    height: 170px;
    background: rgba(36, 221, 188, 0.22);
}

.duize-service-node--one,
.duize-service-node--two,
.duize-service-node--three,
.duize-service-node--four {
    width: 96px;
    height: 96px;
}

.duize-service-node--one {
    right: calc(8% + 506px);
    bottom: 330px;
}

.duize-service-node--two {
    right: calc(8% + 310px);
    bottom: 560px;
}

.duize-service-node--three {
    right: calc(8% + 20px);
    bottom: 350px;
}

.duize-service-node--four {
    right: calc(8% + 292px);
    bottom: 86px;
}

.duize-stage__controls {
    position: absolute;
    left: 50%;
    bottom: 36px;
    z-index: 6;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.duize-stage__controls button {
    display: grid;
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(16px);
}

.duize-stage__controls button span {
    color: #67ead6;
    font-size: 12px;
}

.duize-stage__controls button.is-active {
    border-color: rgba(255, 255, 255, 0.66);
    background: #fff;
    color: #101820;
}

.duize-stage__quick {
    position: absolute;
    right: max(28px, calc((100vw - 1360px) / 2));
    bottom: 142px;
    z-index: 6;
    display: flex;
    gap: 10px;
}

.duize-stage__quick a {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.26);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(16px);
}

.duize-belief {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(520px, 1.08fr);
    gap: 54px;
    align-items: center;
    width: min(1420px, calc(100% - 56px));
    margin: 0 auto;
    padding: 84px 0;
}

.duize-belief__copy h2 {
    max-width: 680px;
    margin: 0;
    color: #111b22;
    font-size: clamp(36px, 4vw, 62px);
    line-height: 1.18;
    font-weight: 950;
}

.duize-belief__copy p:not(.ug-eyebrow) {
    max-width: 680px;
    margin: 24px 0 0;
    color: #303d47;
    font-size: 18px;
    line-height: 1.9;
}

.duize-belief__copy .site-button {
    margin-top: 34px;
}

.duize-belief__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(115deg, rgba(17, 27, 35, 0.22), rgba(17, 27, 35, 0)),
        linear-gradient(90deg, #1f1712 0%, #6c3b25 58%, #151b22 100%);
    box-shadow: 0 30px 90px rgba(16, 24, 32, 0.18);
}

.duize-belief__room {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px) bottom / 100% 36% no-repeat,
        radial-gradient(circle at 28% 28%, rgba(255, 229, 190, 0.34), transparent 24%),
        radial-gradient(circle at 76% 52%, rgba(255,255,255,0.22), transparent 26%);
    opacity: 0.88;
}

.duize-belief__phone {
    position: absolute;
    left: 28%;
    bottom: 92px;
    width: 150px;
    height: 286px;
    border: 9px solid #121820;
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 12%, #0d1118 0 22px, transparent 23px),
        linear-gradient(180deg, #eef8ff, #b4f0e4);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
    transform: rotate(-18deg);
}

.duize-belief__box {
    position: absolute;
    right: 12%;
    bottom: 118px;
    width: 270px;
    height: 190px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.16), transparent 22%),
        linear-gradient(135deg, #b7c4d4, #27303c 58%, #101820);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

.duize-belief__box::before {
    content: "";
    position: absolute;
    inset: 24px 22px 56px;
    border-radius: 8px;
    background: repeating-linear-gradient(90deg, #eaf4ff 0 34px, #0c1219 34px 48px);
    box-shadow: inset 0 0 0 3px #101820;
}

.duize-belief__play {
    position: absolute;
    right: 44px;
    bottom: 42px;
    width: 74px;
    height: 74px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.duize-belief__play::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 27px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid #fff;
}

.template-site-home .ug-advantage {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 96px max(28px, calc((100vw - 1420px) / 2));
    border-top: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22)),
        radial-gradient(circle at 78% 36%, rgba(100, 135, 255, 0.2), transparent 24%),
        #070b10;
}

.template-site-home .ug-advantage .ug-section-head h2 {
    color: #fff;
}

.template-site-home .ug-advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
}

.template-site-home .ug-advantage-grid article {
    min-height: 230px;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    color: #fff;
    backdrop-filter: blur(16px);
}

.template-site-home .ug-advantage-grid h3 {
    color: #fff;
}

.template-site-home .ug-advantage-grid p {
    color: rgba(255, 255, 255, 0.74);
}

@media (prefers-reduced-motion: no-preference) {
    .duize-stage__slide.is-active .duize-stage__copy {
        animation: duizeStageCopy 0.8s ease both;
    }

    .duize-stage__slide.is-active .duize-stage__showcase {
        animation: duizeStageShowcase 1s ease both;
    }
}

@keyframes duizeStageCopy {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes duizeStageShowcase {
    from {
        opacity: 0;
        transform: translateX(36px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .duize-stage__slide {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .duize-stage__copy {
        max-width: 760px;
    }

    .duize-stage__showcase {
        min-height: 360px;
    }

    .duize-device--tower {
        display: none;
    }

    .duize-belief,
    .template-site-home .ug-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .template-site-home .site-header {
        background: rgba(255, 255, 255, 0.94);
    }

    .template-site-home .site-header:not(.is-scrolled) .site-brand,
    .template-site-home .site-header:not(.is-scrolled) .site-nav__link,
    .template-site-home .site-header:not(.is-scrolled) .site-header__ghost,
    .template-site-home .site-header:not(.is-scrolled) .site-brand__text small {
        color: #14212f;
    }

    .template-site-home .site-header:not(.is-scrolled) .site-brand__mark {
        background: #12232d;
    }

    .duize-stage {
        min-height: 780px;
        padding-top: 76px;
    }

    .duize-stage__slide {
        display: block;
        padding: 42px 22px 180px;
    }

    .duize-stage h1 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .duize-stage__copy > p:not(.duize-stage__eyebrow) {
        font-size: 16px;
    }

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

    .duize-stage__showcase {
        min-height: 320px;
        margin-top: 26px;
    }

    .duize-device--xl {
        left: 0;
        width: 210px;
        height: 132px;
    }

    .duize-device--sm {
        left: 42%;
        width: 100px;
        height: 138px;
    }

    .duize-device--md {
        display: none;
    }

    .duize-device--wide {
        right: -20px;
        width: 220px;
        height: 142px;
    }

    .duize-test-panel--main {
        right: 0;
        width: 100%;
        height: 260px;
    }

    .duize-test-panel--trace,
    .duize-test-panel--metric {
        display: none;
    }

    .duize-orbit {
        right: -80px;
        bottom: 0;
        width: 360px;
        height: 360px;
    }

    .duize-orbit--two {
        right: -10px;
        bottom: 70px;
        width: 220px;
        height: 220px;
    }

    .duize-service-node--core {
        right: 86px;
        bottom: 132px;
        width: 120px;
        height: 120px;
    }

    .duize-service-node--one,
    .duize-service-node--two,
    .duize-service-node--three,
    .duize-service-node--four {
        width: 72px;
        height: 72px;
        font-size: 13px;
    }

    .duize-service-node--one {
        right: 238px;
        bottom: 180px;
    }

    .duize-service-node--two {
        right: 122px;
        bottom: 296px;
    }

    .duize-service-node--three {
        right: 12px;
        bottom: 180px;
    }

    .duize-service-node--four {
        right: 128px;
        bottom: 18px;
    }

    .duize-stage__quick {
        right: 18px;
        bottom: 100px;
        left: 18px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
    }

    .duize-stage__quick a {
        min-width: 0;
        padding: 9px 8px;
        text-align: center;
    }

    .duize-stage__controls {
        right: 18px;
        bottom: 24px;
        left: 18px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        transform: none;
    }

    .duize-stage__controls button {
        min-width: 0;
        padding: 10px 8px;
    }

    .duize-belief {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 1420px);
        padding: 64px 0;
    }

    .duize-belief__media {
        min-height: 420px;
        border-radius: 18px;
    }

    .duize-belief__box {
        right: 6%;
        width: 210px;
        height: 150px;
    }

    .duize-belief__phone {
        left: 14%;
        width: 120px;
        height: 226px;
    }

    .template-site-home .ug-advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage calm display pass: remove large-screen click clutter, flatten the
   hardware visual, and let carousel motion carry the first screen. */
.template-site-home .duize-stage {
    min-height: clamp(620px, calc(100svh - 92px), 720px);
    background: #f9fafb;
}

.template-site-home .duize-stage::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.74)),
        linear-gradient(180deg, #fff 0%, #f2f4f7 100%);
}

.template-site-home .duize-stage__slide {
    grid-template-columns: minmax(330px, 0.64fr) minmax(560px, 1.36fr);
    padding-top: 88px;
    padding-bottom: 86px;
}

.template-site-home .duize-stage__copy {
    max-width: 440px;
}

.template-site-home .duize-stage__eyebrow {
    margin-bottom: 12px;
    color: #9aa2ad;
    font-size: 12px;
    font-weight: 420;
}

.template-site-home .duize-stage h1 {
    max-width: 520px;
    font-size: clamp(30px, 3.25vw, 46px);
    line-height: 1.2;
    font-weight: 420;
    letter-spacing: 0;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 500px;
    margin-top: 18px;
    color: #747d88;
    font-size: 13px;
    line-height: 1.78;
    font-weight: 400;
}

.template-site-home .duize-stage__actions,
.template-site-home .duize-stage__quick {
    display: none;
}

.template-site-home .duize-stage__showcase {
    min-height: 470px;
}

.template-site-home .duize-stage__platform {
    background: radial-gradient(ellipse at center, rgba(32, 36, 42, 0.08), rgba(32, 36, 42, 0.015) 62%, transparent 72%);
}

.template-site-home .duize-device {
    border-color: #d7dde5;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent 12% 88%, rgba(255, 255, 255, 0.24)),
        linear-gradient(135deg, #f7f8fa 0%, #b5bec9 50%, #626d7a 100%);
    box-shadow: 0 18px 44px rgba(32, 36, 42, 0.08), inset 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.template-site-home .duize-test-panel {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 46px rgba(32, 36, 42, 0.08);
}

.template-site-home .duize-orbit,
.template-site-home .duize-service-node {
    box-shadow: none;
}

.template-site-home .duize-stage__controls {
    bottom: 32px;
    gap: 9px;
}

.template-site-home .duize-stage__controls button {
    position: relative;
    min-width: 0;
    width: 9px;
    height: 9px;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #cfd5dd;
    color: transparent;
    font-size: 0;
    box-shadow: none;
}

.template-site-home .duize-stage__controls button span {
    display: none;
}

.template-site-home .duize-stage__controls button.is-active {
    width: 38px;
    background: #20242a;
}

.template-site-home .duize-stage__controls button.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.42);
    transform-origin: left center;
    animation: duizeHomeProgress 4.8s linear;
}

@keyframes duizeHomeProgress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 1180px) {
    .template-site-home .duize-stage {
        min-height: 680px;
    }

    .template-site-home .duize-stage__slide {
        padding-bottom: 96px;
    }

    .template-site-home .duize-stage__quick {
        display: none;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-stage {
        min-height: 760px;
    }

    .template-site-home .duize-stage__slide {
        padding: 42px 22px 92px;
    }

    .template-site-home .duize-stage h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .template-site-home .duize-stage__controls {
        bottom: 28px;
    }
}

/* True final homepage hierarchy override. Keep this at EOF so the home page
   reads like a quiet product catalog instead of a heavy hero article. */
.template-site-home .duize-stage h1 {
    max-width: 500px;
    font-size: clamp(28px, 2.82vw, 40px);
    line-height: 1.22;
    font-weight: 400;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 490px;
    font-size: 12.5px;
    line-height: 1.82;
}

.template-site-home .duize-belief {
    width: min(1280px, calc(100% - 56px));
    grid-template-columns: minmax(320px, 0.44fr) minmax(560px, 0.56fr);
    gap: 54px;
    padding: 72px 0 62px;
}

.template-site-home .duize-belief__copy {
    align-self: center;
}

.template-site-home .duize-belief__copy h2,
.template-site-home .ug-discover .ug-section-head h2,
.template-site-home .ug-product-strip .ug-section-head h2 {
    max-width: 720px;
    color: #242930;
    font-size: clamp(20px, 1.55vw, 25px);
    line-height: 1.46;
    font-weight: 400;
    letter-spacing: 0;
}

.template-site-home .duize-belief__copy p:not(.ug-eyebrow),
.template-site-home .ug-discover .ug-section-head p:not(.ug-eyebrow),
.template-site-home .ug-product-strip .ug-section-head p:not(.ug-eyebrow) {
    color: #737d89;
    font-size: 13px;
    line-height: 1.78;
    font-weight: 400;
}

.template-site-home .duize-belief__copy .site-button,
.template-site-home .ug-product-strip .ug-section-head a {
    min-height: 34px;
    border-color: #d9dee5;
    border-radius: 8px;
    padding: 7px 13px;
    color: #3b4652;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .duize-belief__media {
    min-height: 420px;
}

.template-site-home .ug-discover {
    width: min(1280px, calc(100% - 56px));
    padding: 66px 0 44px;
}

.template-site-home .ug-discover .ug-section-head--center {
    max-width: 740px;
    margin-bottom: 26px;
}

.template-site-home .ug-scene-tabs {
    margin-bottom: 22px;
}

.template-site-home .ug-scene-tabs a {
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .ug-scene-card {
    min-height: 238px;
    padding: 26px;
}

.template-site-home .ug-scene-card--feature {
    min-height: 496px;
}

.template-site-home .ug-scene-card h3 {
    max-width: 520px;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.3;
    font-weight: 420;
}

.template-site-home .ug-scene-card p {
    color: #727c88;
    font-size: 13px;
    line-height: 1.7;
}

.template-site-home .ug-product-strip {
    width: min(1280px, calc(100% - 56px));
    padding: 52px 0 78px;
}

.template-site-home .ug-product-strip .ug-section-head {
    align-items: center;
    margin-bottom: 26px;
}

.template-site-home .ug-product-rail {
    gap: 18px;
}

.template-site-home .ug-product-mini {
    min-height: 382px;
}

.template-site-home .ug-product-mini__media {
    min-height: 226px;
}

.template-site-home .ug-product-mini > div:last-child {
    padding: 22px;
}

.template-site-home .ug-product-mini h3 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 440;
}

.template-site-home .ug-product-mini p {
    font-size: 13px;
    line-height: 1.68;
}

.template-site-home .ug-advantage .ug-section-head h2,
.template-site-home .ug-service-band h2 {
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.42;
    font-weight: 420;
}

@media (max-width: 1180px) {
    .template-site-home .duize-belief {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-belief,
    .template-site-home .ug-discover,
    .template-site-home .ug-product-strip {
        width: min(100% - 28px, 1280px);
    }

    .template-site-home .duize-stage h1 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .template-site-home .duize-belief {
        padding: 52px 0 46px;
    }

    .template-site-home .duize-belief__copy h2,
    .template-site-home .ug-discover .ug-section-head h2,
    .template-site-home .ug-product-strip .ug-section-head h2 {
        font-size: 22px;
        line-height: 1.42;
        font-weight: 400;
    }

    .template-site-home .duize-belief__media {
        min-height: 320px;
    }
}

/* Homepage simplification pass: remove repeated entry buttons and keep type
   modest across the hero and feature areas. */
.template-site-home .duize-stage {
    min-height: clamp(620px, calc(100svh - 92px), 720px);
}

.template-site-home .duize-stage__slide {
    padding-top: 88px;
    padding-bottom: 86px;
}

.template-site-home .duize-stage__copy {
    max-width: 440px;
}

.template-site-home .duize-stage__eyebrow {
    font-size: 12px;
    font-weight: 430;
}

.template-site-home .duize-stage h1 {
    max-width: 430px;
    font-size: clamp(26px, 2.35vw, 34px);
    line-height: 1.24;
    font-weight: 390;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 420px;
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.82;
}

.template-site-home .duize-stage__actions,
.template-site-home .duize-stage__quick,
.template-site-home .duize-stage__controls,
.template-site-home .ug-service-band {
    display: none;
}

.template-site-home .duize-belief__copy h2,
.template-site-home .ug-product-strip .ug-section-head h2,
.template-site-home .ug-advantage .ug-section-head h2 {
    font-size: clamp(20px, 1.45vw, 24px);
    line-height: 1.46;
    font-weight: 400;
}

.template-site-home .duize-ai-advantages__eyebrow {
    font-size: clamp(20px, 1.6vw, 26px);
    font-weight: 520;
}

.template-site-home .duize-ai-advantages h2 {
    font-size: clamp(24px, 2.35vw, 38px);
    line-height: 1.22;
    font-weight: 390;
}

.template-site-home .duize-ai-advantages__copy > p:not(.duize-ai-advantages__eyebrow) {
    max-width: 560px;
    font-size: 13.5px;
}

@media (max-width: 760px) {
    .template-site-home .duize-stage {
        min-height: 620px;
    }

    .template-site-home .duize-stage__slide {
        padding: 38px 22px 58px;
    }

    .template-site-home .duize-stage h1 {
        font-size: clamp(25px, 7.2vw, 33px);
    }

    .template-site-home .duize-ai-advantages h2 {
        font-size: clamp(24px, 7vw, 32px);
    }
}

.template-site-home .duize-ai-advantages {
    width: min(1500px, calc(100% - 56px));
    margin: 78px auto 92px;
    color: #fff;
}

.template-site-home .duize-ai-advantages__scene {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(5, 9, 13, 0.93) 0%, rgba(5, 9, 13, 0.68) 38%, rgba(5, 9, 13, 0.18) 68%, rgba(5, 9, 13, 0.74) 100%),
        linear-gradient(180deg, rgba(5, 9, 13, 0.18), rgba(5, 9, 13, 0.8)),
        url("../images/duizeaio-home-banner.png") center / cover no-repeat,
        #0a0f14;
    box-shadow: 0 28px 82px rgba(15, 24, 33, 0.18);
}

.template-site-home .duize-ai-advantages__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    opacity: 0.28;
}

.template-site-home .duize-ai-advantages__copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    width: min(620px, 48%);
    min-height: 440px;
    padding: 74px 0 0 78px;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.template-site-home .duize-ai-advantages__copy.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.template-site-home .duize-ai-advantages__eyebrow {
    margin: 0 0 74px;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.2;
    font-weight: 520;
}

.template-site-home .duize-ai-advantages__index {
    margin-bottom: 12px;
    color: #31d4b2;
    font-size: 18px;
    font-weight: 560;
}

.template-site-home .duize-ai-advantages h2 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.35vw, 38px);
    line-height: 1.22;
    font-weight: 390;
    letter-spacing: 0;
}

.template-site-home .duize-ai-advantages__copy > p:not(.duize-ai-advantages__eyebrow) {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13.5px;
    line-height: 1.78;
    font-weight: 400;
}

.template-site-home .duize-ai-advantages__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.template-site-home .duize-ai-advantages__tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}

.template-site-home .duize-ai-advantages__visual {
    position: absolute;
    right: 70px;
    bottom: 168px;
    width: min(670px, 48vw);
    height: 360px;
}

.template-site-home .duize-ai-advantages__screen {
    position: absolute;
    top: 16px;
    right: 92px;
    width: 500px;
    height: 218px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(130deg, rgba(45, 56, 66, 0.92), rgba(16, 22, 29, 0.9)),
        linear-gradient(90deg, rgba(49, 212, 178, 0.22), transparent);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.38);
}

.template-site-home .duize-ai-advantages__screen::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(49, 212, 178, 0.9) 0 28%, transparent 28% 100%),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 22px);
    opacity: 0.52;
}

.template-site-home .duize-ai-advantages__desk {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 620px;
    height: 76px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
    filter: blur(1px);
}

.template-site-home .duize-ai-advantages__device {
    position: absolute;
    right: 26px;
    bottom: 74px;
    width: 230px;
    height: 178px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 18% 24%, transparent 24% 42%, rgba(255, 255, 255, 0.12) 42% 48%, transparent 48% 66%, rgba(255, 255, 255, 0.12) 66% 72%, transparent 72%),
        linear-gradient(145deg, #29333e, #aeb7c1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.template-site-home .duize-ai-advantages__device--small {
    right: 230px;
    bottom: 44px;
    width: 168px;
    height: 132px;
    opacity: 0.92;
}

.template-site-home .duize-ai-advantages__status {
    position: absolute;
    display: inline-flex;
    min-width: 74px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49, 212, 178, 0.32);
    border-radius: 999px;
    background: rgba(7, 14, 20, 0.72);
    color: #dffdf7;
    font-size: 13px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.template-site-home .duize-ai-advantages__status--one {
    right: 320px;
    top: 222px;
}

.template-site-home .duize-ai-advantages__status--two {
    right: 124px;
    top: 44px;
}

.template-site-home .duize-ai-advantages__tabs {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(6, minmax(126px, 1fr));
    gap: 22px;
    margin: -156px 66px 0;
}

.template-site-home .duize-ai-advantages__tabs button {
    display: grid;
    min-height: 154px;
    align-content: center;
    justify-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 20px 14px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    backdrop-filter: blur(18px);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.template-site-home .duize-ai-advantages__tabs button:hover,
.template-site-home .duize-ai-advantages__tabs button:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    outline: 0;
}

.template-site-home .duize-ai-advantages__tabs button.is-active {
    border-color: #16a7ff;
    background: #1478ff;
    color: #fff;
    box-shadow: 0 22px 50px rgba(20, 120, 255, 0.28);
}

.template-site-home .duize-ai-advantages__tabs i {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 12px;
    font-style: normal;
    font-size: 15px;
    font-weight: 560;
}

.template-site-home .duize-ai-advantages__tabs span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1180px) {
    .template-site-home .duize-ai-advantages__scene {
        min-height: 740px;
    }

    .template-site-home .duize-ai-advantages__copy {
        width: min(640px, 80%);
    }

    .template-site-home .duize-ai-advantages__visual {
        right: 34px;
        bottom: 188px;
        width: 58vw;
        opacity: 0.78;
    }

    .template-site-home .duize-ai-advantages__tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: -152px 34px 0;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-ai-advantages {
        width: min(100% - 28px, 1500px);
        margin: 54px auto 64px;
    }

    .template-site-home .duize-ai-advantages__scene {
        min-height: 520px;
    }

    .template-site-home .duize-ai-advantages__copy {
        width: auto;
        min-height: 480px;
        padding: 34px 24px 0;
    }

    .template-site-home .duize-ai-advantages h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .template-site-home .duize-ai-advantages__eyebrow {
        margin-bottom: 54px;
    }

    .template-site-home .duize-ai-advantages__visual {
        display: none;
    }

    .template-site-home .duize-ai-advantages__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin: 12px 0 0;
    }

    .template-site-home .duize-ai-advantages__tabs button {
        min-height: 118px;
        border-color: #dfe4ea;
        background: #2a3036;
        color: #fff;
        gap: 10px;
        padding: 14px 10px;
        backdrop-filter: none;
    }

    .template-site-home .duize-ai-advantages__tabs i {
        width: 38px;
        height: 38px;
    }
}

/* Final homepage content hierarchy: keep the lower home sections closer to
   Synology-style product pages, with lighter headings and calmer density. */
.template-site-home .duize-stage h1 {
    max-width: 500px;
    font-size: clamp(28px, 2.82vw, 40px);
    line-height: 1.22;
    font-weight: 400;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 490px;
    font-size: 12.5px;
    line-height: 1.82;
}

.template-site-home .duize-belief {
    width: min(1280px, calc(100% - 56px));
    grid-template-columns: minmax(320px, 0.44fr) minmax(560px, 0.56fr);
    gap: 54px;
    padding: 72px 0 62px;
}

.template-site-home .duize-belief__copy {
    align-self: center;
}

.template-site-home .duize-belief__copy h2,
.template-site-home .ug-discover .ug-section-head h2,
.template-site-home .ug-product-strip .ug-section-head h2 {
    max-width: 720px;
    color: #242930;
    font-size: clamp(20px, 1.55vw, 25px);
    line-height: 1.46;
    font-weight: 400;
    letter-spacing: 0;
}

.template-site-home .duize-belief__copy p:not(.ug-eyebrow),
.template-site-home .ug-discover .ug-section-head p:not(.ug-eyebrow),
.template-site-home .ug-product-strip .ug-section-head p:not(.ug-eyebrow) {
    color: #737d89;
    font-size: 13px;
    line-height: 1.78;
    font-weight: 400;
}

.template-site-home .duize-belief__copy .site-button,
.template-site-home .ug-product-strip .ug-section-head a {
    min-height: 34px;
    border-color: #d9dee5;
    border-radius: 8px;
    padding: 7px 13px;
    color: #3b4652;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .duize-belief__media {
    min-height: 420px;
}

.template-site-home .ug-discover {
    width: min(1280px, calc(100% - 56px));
    padding: 66px 0 44px;
}

.template-site-home .ug-discover .ug-section-head--center {
    max-width: 740px;
    margin-bottom: 26px;
}

.template-site-home .ug-scene-tabs {
    margin-bottom: 22px;
}

.template-site-home .ug-scene-tabs a {
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .ug-scene-card {
    min-height: 238px;
    padding: 26px;
}

.template-site-home .ug-scene-card--feature {
    min-height: 496px;
}

.template-site-home .ug-scene-card h3 {
    max-width: 520px;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.3;
    font-weight: 420;
}

.template-site-home .ug-scene-card p {
    color: #727c88;
    font-size: 13px;
    line-height: 1.7;
}

.template-site-home .ug-product-strip {
    width: min(1280px, calc(100% - 56px));
    padding: 52px 0 78px;
}

.template-site-home .ug-product-strip .ug-section-head {
    align-items: center;
    margin-bottom: 26px;
}

.template-site-home .ug-product-rail {
    gap: 18px;
}

.template-site-home .ug-product-mini {
    min-height: 382px;
}

.template-site-home .ug-product-mini__media {
    min-height: 226px;
}

.template-site-home .ug-product-mini > div:last-child {
    padding: 22px;
}

.template-site-home .ug-product-mini h3 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 440;
}

.template-site-home .ug-advantage .ug-section-head h2,
.template-site-home .ug-service-band h2 {
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.42;
    font-weight: 420;
}

.template-site-home .ug-product-mini p {
    font-size: 13px;
    line-height: 1.68;
}

@media (max-width: 1180px) {
    .template-site-home .duize-belief {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-belief,
    .template-site-home .ug-discover,
    .template-site-home .ug-product-strip {
        width: min(100% - 28px, 1280px);
    }

    .template-site-home .duize-belief {
        padding: 52px 0 46px;
    }

    .template-site-home .duize-belief__copy h2,
    .template-site-home .ug-discover .ug-section-head h2,
    .template-site-home .ug-product-strip .ug-section-head h2 {
        font-size: 22px;
        line-height: 1.42;
        font-weight: 400;
    }

    .template-site-home .duize-belief__media {
        min-height: 320px;
    }
}

/* Download center: backend-managed catalog. */
.template-download-center #main {
    background: #f5f7fa;
}

.template-download-center .download-hero,
.template-download-center .download-picker,
.template-download-center .download-featured,
.template-download-center .download-section {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.template-download-center .download-hero {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    border-radius: 8px;
    padding: 66px 56px 72px;
    background-image:
        linear-gradient(90deg, rgba(12, 25, 39, 0.86) 0%, rgba(12, 25, 39, 0.66) 50%, rgba(12, 25, 39, 0.24) 100%),
        url("/static/images/duize-products-banner.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}

.template-download-center .download-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.template-download-center .download-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.template-download-center .download-hero .site-kicker {
    color: #70d8ce;
}

.template-download-center .download-hero h1 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 900;
}

.template-download-center .download-hero > p:not(.site-kicker) {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.85;
}

.template-download-center .download-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    margin-top: 24px;
}

.template-download-center .download-picker__panel,
.template-download-center .download-picker__aside {
    border: 1px solid #e0e7ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 33, 47, 0.08);
}

.template-download-center .download-picker__panel {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.template-download-center .download-picker__panel > span,
.template-download-center .download-picker__aside strong {
    color: #14212f;
    font-weight: 900;
}

.template-download-center .download-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.template-download-center .download-filter button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    border: 1px solid #d8e1e9;
    border-radius: 8px;
    padding: 8px 13px;
    background: #f9fbfc;
    color: #435164;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.template-download-center .download-filter button small {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: #e9eef3;
    color: #617082;
    font-size: 12px;
}

.template-download-center .download-filter button.is-active {
    border-color: #112539;
    background: #112539;
    color: #fff;
}

.template-download-center .download-filter button.is-active small {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.template-download-center .download-picker__aside {
    padding: 22px;
}

.template-download-center .download-picker__aside p {
    margin: 10px 0 0;
    color: #607184;
    font-size: 14px;
    line-height: 1.7;
}

.template-download-center .download-featured {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    overflow: hidden;
    margin-top: 26px;
    border: 1px solid #dce5ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(20, 33, 47, 0.1);
}

.template-download-center .download-featured__media {
    display: grid;
    min-height: 330px;
    place-items: center;
    background: #eaf0f5;
}

.template-download-center .download-featured__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.template-download-center .download-featured__media span,
.template-download-center .download-card__media span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 8px;
    background: #112539;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
}

.template-download-center .download-featured__copy {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 42px;
}

.template-download-center .download-featured__copy > span,
.template-download-center .download-card__meta span {
    color: #0f8f9d;
    font-size: 13px;
    font-weight: 900;
}

.template-download-center .download-featured h2 {
    margin: 0;
    color: #14212f;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.template-download-center .download-featured p,
.template-download-center .download-card p,
.template-download-center .download-empty {
    margin: 0;
    color: #607184;
    line-height: 1.74;
}

.template-download-center .download-featured dl,
.template-download-center .download-card dl {
    display: grid;
    gap: 10px;
    margin: 4px 0 0;
}

.template-download-center .download-featured dl div,
.template-download-center .download-card dl div {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid #e3eaf0;
    padding-top: 10px;
}

.template-download-center .download-featured dt,
.template-download-center .download-featured dd,
.template-download-center .download-card dt,
.template-download-center .download-card dd {
    margin: 0;
    min-width: 0;
}

.template-download-center .download-featured dt,
.template-download-center .download-card dt {
    color: #7a8999;
}

.template-download-center .download-featured dd,
.template-download-center .download-card dd {
    color: #263547;
    font-weight: 800;
}

.template-download-center .download-section {
    padding: 54px 0 18px;
}

.template-download-center .download-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 20px;
    align-items: end;
    margin-bottom: 20px;
}

.template-download-center .download-section__head .site-kicker,
.template-download-center .download-section__head h2 {
    grid-column: 1;
}

.template-download-center .download-section__head h2 {
    margin: 0;
    color: #14212f;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.template-download-center .download-section__head > span {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: #607184;
    font-size: 14px;
    font-weight: 800;
}

.template-download-center .download-grid {
    width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.template-download-center .download-card {
    display: grid;
    min-height: 100%;
    border: 1px solid #dde6ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 33, 47, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.template-download-center .download-card:hover {
    border-color: rgba(15, 143, 157, 0.5);
    box-shadow: 0 26px 60px rgba(20, 33, 47, 0.11);
    transform: translateY(-2px);
}

.template-download-center .download-card__media {
    display: grid;
    min-height: 190px;
    place-items: center;
    background: #edf2f6;
}

.template-download-center .download-card__media img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: contain;
    padding: 18px;
}

.template-download-center .download-card__body {
    display: grid;
    gap: 13px;
    padding: 22px;
}

.template-download-center .download-card__meta {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.template-download-center .download-card__meta em {
    border-radius: 999px;
    padding: 4px 8px;
    background: #eef5f6;
    color: #607184;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.template-download-center .download-card h3 {
    margin: 0;
    color: #14212f;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 900;
}

.template-download-center .download-card .site-button {
    justify-self: start;
    margin-top: 2px;
}

.template-download-center .download-empty {
    border: 1px dashed #c9d6df;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    text-align: center;
}

@media (max-width: 980px) {
    .template-download-center .download-picker,
    .template-download-center .download-featured {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .template-download-center .download-hero,
    .template-download-center .download-picker,
    .template-download-center .download-featured,
    .template-download-center .download-section {
        width: min(100% - 28px, 1180px);
    }

    .template-download-center .download-hero {
        margin-top: 18px;
        padding: 42px 24px 48px;
    }

    .template-download-center .download-breadcrumb {
        margin-bottom: 28px;
    }

    .template-download-center .download-hero h1 {
        font-size: 40px;
    }

    .template-download-center .download-hero > p:not(.site-kicker) {
        font-size: 15px;
    }

    .template-download-center .download-section__head {
        grid-template-columns: 1fr;
    }

    .template-download-center .download-section__head .site-kicker,
    .template-download-center .download-section__head h2,
    .template-download-center .download-section__head > span {
        grid-column: auto;
        grid-row: auto;
    }

    .template-download-center .download-grid {
        grid-template-columns: 1fr;
    }

    .template-download-center .download-featured__copy {
        padding: 28px 22px;
    }

    .template-download-center .download-featured h2,
    .template-download-center .download-section__head h2 {
        font-size: 28px;
    }
}

/* Synology-style homepage hierarchy: quieter section headlines, more product
   catalog rhythm, and less editorial weight below the first screen. */
.template-site-home .duize-belief {
    width: min(1280px, calc(100% - 56px));
    grid-template-columns: minmax(320px, 0.42fr) minmax(560px, 0.58fr);
    gap: 54px;
    padding: 72px 0 62px;
}

.template-site-home .duize-belief__copy {
    align-self: center;
}

.template-site-home .duize-belief__copy h2,
.template-site-home .ug-discover .ug-section-head h2,
.template-site-home .ug-product-strip .ug-section-head h2 {
    max-width: 720px;
    color: #242930;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.36;
    font-weight: 420;
    letter-spacing: 0;
}

.template-site-home .duize-belief__copy p:not(.ug-eyebrow),
.template-site-home .ug-discover .ug-section-head p:not(.ug-eyebrow),
.template-site-home .ug-product-strip .ug-section-head p:not(.ug-eyebrow) {
    color: #737d89;
    font-size: 13px;
    line-height: 1.78;
}

.template-site-home .duize-belief__copy .site-button {
    min-height: 36px;
    border-color: #d9dee5;
    border-radius: 8px;
    padding: 8px 14px;
    color: #3b4652;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .duize-belief__media {
    min-height: 420px;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 249, 0.72)),
        linear-gradient(90deg, #fafbfc 0%, #edf1f5 58%, #f7f8fa 100%);
}

.template-site-home .ug-discover {
    width: min(1280px, calc(100% - 56px));
    padding: 68px 0 46px;
}

.template-site-home .ug-discover .ug-section-head--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 28px;
}

.template-site-home .ug-scene-tabs {
    margin-bottom: 22px;
}

.template-site-home .ug-scene-tabs a {
    border-color: #e0e5eb;
    padding: 7px 13px;
    color: #5d6773;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .ug-scene-card {
    min-height: 244px;
    padding: 26px;
}

.template-site-home .ug-scene-card--feature {
    min-height: 510px;
}

.template-site-home .ug-scene-card h3 {
    max-width: 520px;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.28;
    font-weight: 430;
}

.template-site-home .ug-scene-card p {
    color: #727c88;
    font-size: 13px;
}

.template-site-home .ug-product-strip {
    width: min(1280px, calc(100% - 56px));
    padding: 52px 0 78px;
}

.template-site-home .ug-product-strip .ug-section-head {
    align-items: center;
    margin-bottom: 26px;
}

.template-site-home .ug-product-strip .ug-section-head a {
    border: 1px solid #d9dee5;
    border-radius: 8px;
    padding: 8px 14px;
    color: #3b4652;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .ug-product-rail {
    gap: 18px;
}

.template-site-home .ug-product-mini {
    min-height: 380px;
}

.template-site-home .ug-product-mini__media {
    min-height: 225px;
}

.template-site-home .ug-product-mini h3 {
    font-size: 18px;
    font-weight: 460;
}

.template-site-home .ug-product-mini p {
    font-size: 13px;
    line-height: 1.68;
}

@media (max-width: 1180px) {
    .template-site-home .duize-belief {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-belief,
    .template-site-home .ug-discover,
    .template-site-home .ug-product-strip {
        width: min(100% - 28px, 1280px);
    }

    .template-site-home .duize-belief__copy h2,
    .template-site-home .ug-discover .ug-section-head h2,
    .template-site-home .ug-product-strip .ug-section-head h2 {
        font-size: 24px;
    }
}

/* Product detail third pass: ZSpace-like product storytelling with a duize
   white-gray industrial surface. Applies only to generated product templates. */
.product-detail-zspace {
    --detail-ink: #171b20;
    --detail-muted: #69727d;
    --detail-line: #dfe4ea;
    --detail-soft: #f5f6f8;
    --detail-panel: #ffffff;
    background: #f5f6f8;
}

.product-detail-zspace a,
.product-detail-zspace a:hover,
.product-detail-zspace a:focus {
    text-decoration: none;
}

.product-detail-zspace .product-subnav--dark {
    top: 0;
    min-height: 62px;
    border-bottom: 0;
    background: rgba(9, 10, 12, 0.96);
    color: #fff;
    box-shadow: none;
}

.product-detail-zspace .product-subnav--dark strong {
    color: #fff;
    font-size: 16px;
    font-weight: 560;
}

.product-detail-zspace .product-subnav--dark a {
    min-height: 38px;
    border-radius: 0;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
}

.product-detail-zspace .product-subnav--dark a:hover,
.product-detail-zspace .product-subnav--dark a:focus {
    color: #fff;
}

.product-detail-zspace .product-subnav--dark .product-subnav__cta {
    border-radius: 8px;
    background: #fff;
    color: #111418 !important;
}

.product-detail-zspace .product-hero--showcase,
.product-detail-zspace .product-overview-band,
.product-detail-zspace .product-specs,
.product-detail-zspace .product-feature-block,
.product-detail-zspace .product-scenario,
.product-detail-zspace .product-final-cta {
    width: min(1500px, calc(100% - 56px));
}

.product-detail-zspace .product-hero--showcase {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(390px, 0.72fr) minmax(560px, 1.28fr);
    min-height: 780px;
    margin: 0 auto;
    border-bottom: 1px solid var(--detail-line);
    padding: 86px max(42px, calc((100vw - 1360px) / 2)) 80px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 251, 0.9) 54%, rgba(234, 237, 242, 0.82) 100%),
        linear-gradient(180deg, #ffffff, #eef1f5);
}

.product-detail-zspace .product-hero--showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(23, 27, 32, 0.045) 0 1px, transparent 1px 96px),
        linear-gradient(180deg, rgba(23, 27, 32, 0.035) 0 1px, transparent 1px 96px);
    opacity: 0.38;
}

.product-detail-zspace .product-hero__copy {
    position: relative;
    z-index: 2;
}

.product-detail-zspace .site-kicker {
    margin: 0 0 14px;
    color: #8a93a3;
    font-size: 13px;
    font-weight: 500;
}

.product-detail-zspace .product-hero h1 {
    max-width: 640px;
    color: var(--detail-ink);
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.08;
    font-weight: 520;
    word-break: keep-all;
}

.product-detail-zspace .product-hero__copy > p {
    max-width: 600px;
    color: var(--detail-muted);
    font-size: 15px;
    line-height: 1.82;
}

.product-detail-zspace .product-hero__tags span {
    border-color: var(--detail-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: #3e4752;
    font-size: 13px;
    font-weight: 500;
}

.product-detail-zspace .product-hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 590px;
    place-items: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.product-detail-zspace .product-hero__visual img {
    width: min(860px, 100%);
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 34px 58px rgba(23, 27, 32, 0.16));
}

.product-detail-zspace .product-render {
    width: min(720px, 100%);
    height: 560px;
    border: 1px solid var(--detail-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 239, 244, 0.84)),
        repeating-linear-gradient(90deg, rgba(23, 27, 32, 0.04) 0 1px, transparent 1px 28px);
}

.product-detail-zspace .product-render__body {
    border-color: #c8d0d9;
    background: linear-gradient(145deg, #f7f8fa, #222831);
    box-shadow: 0 28px 64px rgba(23, 27, 32, 0.16);
}

.product-detail-zspace .site-button,
.product-detail-zspace .site-button--primary {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.product-detail-zspace .site-button--primary {
    border-color: #171b20;
    background: #171b20;
}

.product-detail-zspace .product-overview-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin: 0 auto;
    border: 1px solid var(--detail-line);
    border-top: 0;
    background: #fff;
}

.product-detail-zspace .product-overview-band article {
    display: grid;
    min-height: 116px;
    align-content: center;
    gap: 8px;
    border-right: 1px solid var(--detail-line);
    padding: 22px 26px;
}

.product-detail-zspace .product-overview-band article:last-child {
    border-right: 0;
}

.product-detail-zspace .product-overview-band span,
.product-detail-zspace .product-story__copy span,
.product-detail-zspace .product-scenario__cards span {
    color: #8a93a3;
    font-size: 12px;
    font-weight: 500;
}

.product-detail-zspace .product-overview-band strong {
    color: var(--detail-ink);
    font-size: 18px;
    font-weight: 560;
}

.product-detail-zspace .product-specs--top,
.product-detail-zspace .product-feature-block--story,
.product-detail-zspace .product-scenario--cards {
    padding: 96px 0 0;
}

.product-detail-zspace .product-specs__head,
.product-detail-zspace .product-feature-block__head {
    max-width: 820px;
    margin-bottom: 34px;
}

.product-detail-zspace .product-feature-block h2,
.product-detail-zspace .product-scenario h2,
.product-detail-zspace .product-specs h2,
.product-detail-zspace .product-final-cta h2 {
    color: var(--detail-ink);
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.18;
    font-weight: 540;
}

.product-detail-zspace .product-feature-block__head p,
.product-detail-zspace .product-scenario p,
.product-detail-zspace .product-specs dd,
.product-detail-zspace .product-final-cta p {
    color: var(--detail-muted);
    font-size: 14px;
    line-height: 1.76;
}

.product-detail-zspace .product-specs__table {
    border-color: var(--detail-line);
    border-radius: 8px;
    box-shadow: none;
}

.product-detail-zspace .product-specs__table div {
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
    border-bottom-color: var(--detail-line);
}

.product-detail-zspace .product-specs__table dt {
    background: #f0f2f5;
    color: #2c333a;
    font-weight: 560;
}

.product-detail-zspace .product-story-list {
    display: grid;
    gap: 18px;
}

.product-detail-zspace .product-story {
    display: grid;
    grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
    gap: 42px;
    align-items: center;
    min-height: 440px;
    border: 1px solid var(--detail-line);
    border-radius: 8px;
    padding: 46px;
    background: #fff;
}

.product-detail-zspace .product-story.is-reverse {
    grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
}

.product-detail-zspace .product-story.is-reverse .product-story__copy {
    order: 2;
}

.product-detail-zspace .product-story__copy h3 {
    margin: 12px 0 14px;
    color: var(--detail-ink);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.16;
    font-weight: 540;
}

.product-detail-zspace .product-story__copy p {
    max-width: 560px;
    color: var(--detail-muted);
    font-size: 15px;
    line-height: 1.8;
}

.product-detail-zspace .product-story__visual {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #f8f9fb 0%, #edf0f4 58%, #ffffff 100%),
        repeating-linear-gradient(90deg, rgba(23, 27, 32, 0.04) 0 1px, transparent 1px 32px);
}

.product-detail-zspace .product-story__visual i,
.product-detail-zspace .product-story__visual b,
.product-detail-zspace .product-story__visual em {
    position: absolute;
    display: block;
    border: 1px solid #cdd4dd;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(23, 27, 32, 0.1);
}

.product-detail-zspace .product-story__visual i {
    right: 14%;
    bottom: 18%;
    width: 46%;
    height: 54%;
    background: linear-gradient(150deg, #ffffff, #a6adb8 62%, #313741);
}

.product-detail-zspace .product-story__visual b {
    left: 12%;
    top: 18%;
    width: 42%;
    height: 34%;
}

.product-detail-zspace .product-story__visual em {
    left: 24%;
    bottom: 18%;
    width: 36%;
    height: 20%;
}

.product-detail-zspace .product-scenario--cards {
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
}

.product-detail-zspace .product-scenario__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-detail-zspace .product-scenario__cards article {
    min-height: 240px;
    border-color: var(--detail-line);
    padding: 26px;
    box-shadow: none;
}

.product-detail-zspace .product-scenario__cards h3 {
    margin-top: 18px;
    color: var(--detail-ink);
    font-size: 22px;
    font-weight: 560;
}

.product-detail-zspace .product-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 96px auto 88px;
    border: 1px solid var(--detail-line);
    border-radius: 8px;
    padding: 42px;
    background: #fff;
    box-shadow: none;
}

.product-detail-zspace .site-edit-link {
    background: #171b20;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1120px) {
    .product-detail-zspace .product-hero--showcase,
    .product-detail-zspace .product-story,
    .product-detail-zspace .product-story.is-reverse,
    .product-detail-zspace .product-scenario--cards,
    .product-detail-zspace .product-final-cta {
        grid-template-columns: 1fr;
    }

    .product-detail-zspace .product-story.is-reverse .product-story__copy {
        order: 0;
    }

    .product-detail-zspace .product-overview-band,
    .product-detail-zspace .product-scenario__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .product-detail-zspace .product-hero--showcase,
    .product-detail-zspace .product-overview-band,
    .product-detail-zspace .product-specs,
    .product-detail-zspace .product-feature-block,
    .product-detail-zspace .product-scenario,
    .product-detail-zspace .product-final-cta {
        width: min(100% - 28px, 1500px);
    }

    .product-detail-zspace .product-subnav--dark {
        top: 72px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 14px;
    }

    .product-detail-zspace .product-hero--showcase {
        min-height: auto;
        padding: 46px 22px 38px;
    }

    .product-detail-zspace .product-hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .product-detail-zspace .product-hero__visual {
        min-height: 360px;
    }

    .product-detail-zspace .product-overview-band,
    .product-detail-zspace .product-scenario__cards {
        grid-template-columns: 1fr;
    }

    .product-detail-zspace .product-overview-band article,
    .product-detail-zspace .product-overview-band article:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--detail-line);
    }

    .product-detail-zspace .product-overview-band article:last-child {
        border-bottom: 0;
    }

    .product-detail-zspace .product-story,
    .product-detail-zspace .product-final-cta {
        padding: 26px;
    }

    .product-detail-zspace .product-specs__table div {
        grid-template-columns: 1fr;
    }
}

/* White-gray refinement for the zhouduize.cn marketing homepage.
   Mirrors UGN's broad panels and service-card rhythm while keeping typography lighter. */
.site-ugnas-like {
    --site-ink: #20242a;
    --site-muted: #6c7480;
    --site-line: #e1e5ea;
    --site-soft: #f5f6f8;
    --site-panel: #ffffff;
    --site-accent: #2f6fed;
    background: #f5f6f8;
}

.site-ugnas-like a,
.site-ugnas-like a:hover,
.site-ugnas-like a:focus {
    text-decoration: none;
}

.site-ugnas-like .site-header__inner,
.site-ugnas-like .ug-shortcuts,
.site-ugnas-like .ug-discover,
.site-ugnas-like .ug-product-strip,
.site-ugnas-like .ug-advantage,
.site-ugnas-like .ug-service-band,
.site-ugnas-like .ug-product-filter,
.site-ugnas-like .ug-product-catalog,
.site-ugnas-like .ug-service-entry,
.site-ugnas-like .ug-question-section,
.site-ugnas-like .ug-service-process {
    width: min(1320px, calc(100% - 56px));
}

.site-ugnas-like .site-footer__inner {
    width: min(1760px, calc(100% - 112px));
}

.site-ugnas-like .site-brand__mark,
.site-ugnas-like .site-footer__brand-badge {
    background: #20242a;
    border-radius: 8px;
}

.site-ugnas-like .site-nav__link,
.site-ugnas-like .site-header__ghost,
.site-ugnas-like .site-header__cta,
.site-ugnas-like .site-button,
.site-ugnas-like .product-subnav a {
    font-size: 14px;
    font-weight: 500;
}

.site-ugnas-like .site-nav__link:hover,
.site-ugnas-like .site-nav__link.is-active {
    background: #eef1f5;
    color: #20242a;
}

.site-ugnas-like .site-header__cta,
.site-ugnas-like .site-button--primary {
    border-color: #20242a;
    background: #20242a;
}

.site-ugnas-like .ug-eyebrow,
.site-ugnas-like .ug-shortcuts span,
.site-ugnas-like .ug-product-mini small,
.site-ugnas-like .ug-product-card__meta span,
.site-ugnas-like .ug-product-card__meta em,
.site-ugnas-like .ug-scene-card span,
.site-ugnas-like .ug-advantage-grid span,
.site-ugnas-like .ug-service-grid span,
.site-ugnas-like .ug-service-context > span {
    color: #8a93a3;
    font-size: 12px;
    font-weight: 500;
}

.site-ugnas-like .ug-section-head h2,
.site-ugnas-like .ug-service-band h2,
.site-ugnas-like .ug-question-panel h2,
.site-ugnas-like .ug-service-process h2,
.site-ugnas-like .duize-belief__copy h2 {
    color: #20242a;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.26;
    font-weight: 520;
}

.site-ugnas-like .ug-section-head {
    margin-bottom: 34px;
}

.site-ugnas-like .ug-product-mini h3,
.site-ugnas-like .ug-product-card h3,
.site-ugnas-like .ug-service-grid h3,
.site-ugnas-like .ug-advantage-grid h3 {
    color: #20242a;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 560;
}

.site-ugnas-like .ug-product-mini p,
.site-ugnas-like .ug-product-card p,
.site-ugnas-like .ug-service-grid p,
.site-ugnas-like .ug-advantage-grid p,
.site-ugnas-like .ug-question-list span,
.site-ugnas-like .ug-service-process p,
.site-ugnas-like .duize-belief__copy p:not(.ug-eyebrow) {
    color: #6c7480;
    font-size: 14px;
    line-height: 1.72;
}

.template-site-home .site-header,
.template-site-home .site-header:not(.is-scrolled),
.template-site-home .site-header.is-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(225, 229, 234, 0.86);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.template-site-home .site-header:not(.is-scrolled) .site-brand,
.template-site-home .site-header:not(.is-scrolled) .site-nav__link,
.template-site-home .site-header:not(.is-scrolled) .site-header__ghost,
.template-site-home .site-header:not(.is-scrolled) .site-brand__text small {
    color: #20242a;
}

.template-site-home .site-header:not(.is-scrolled) .site-brand__mark {
    background: #20242a;
    border-color: #20242a;
    color: #fff;
}

.template-site-home .site-header:not(.is-scrolled) .site-nav__link:hover,
.template-site-home .site-header:not(.is-scrolled) .site-nav__link.is-active {
    background: #eef1f5;
    color: #20242a;
}

.template-site-home .site-header:not(.is-scrolled) .site-header__ghost {
    border-color: #d9dee5;
    background: #fff;
}

.template-site-home .site-header__inner {
    min-height: 72px;
}

.template-site-home .site-brand__text strong {
    font-size: 16px;
    font-weight: 600;
}

.template-site-home .site-brand__text small {
    font-size: 11px;
    font-weight: 400;
}

.template-site-home .duize-stage {
    width: min(1500px, calc(100% - 32px));
    min-height: 760px;
    margin: 88px auto 0;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    background: #f8f9fb;
    color: #20242a;
}

.template-site-home .duize-stage::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 246, 248, 0.72)),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.template-site-home .duize-stage::after {
    background: linear-gradient(90deg, rgba(32, 36, 42, 0.05) 0 1px, transparent 1px 96px);
    opacity: 0.32;
}

.template-site-home .duize-stage__slide {
    grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
    padding: 96px max(44px, calc((100vw - 1360px) / 2)) 188px;
}

.template-site-home .duize-stage__slide--aio,
.template-site-home .duize-stage__slide--test,
.template-site-home .duize-stage__slide--service {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 251, 0.9) 54%, rgba(238, 241, 245, 0.72) 100%);
}

.template-site-home .duize-stage__copy {
    max-width: 600px;
}

.template-site-home .duize-stage__eyebrow {
    margin-bottom: 14px;
    color: #8a93a3;
    font-size: 13px;
    font-weight: 500;
}

.template-site-home .duize-stage h1 {
    color: #20242a;
    font-size: clamp(36px, 4.1vw, 58px);
    line-height: 1.14;
    font-weight: 520;
    text-shadow: none;
}

.template-site-home .duize-stage h1 span {
    background: none;
    color: #20242a;
    -webkit-text-fill-color: currentColor;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 560px;
    margin-top: 20px;
    color: #6c7480;
    font-size: 14px;
    line-height: 1.78;
}

.template-site-home .duize-stage__actions {
    gap: 12px;
    margin-top: 30px;
}

.template-site-home .duize-stage .site-button--light {
    border-color: #20242a;
    background: #20242a;
    color: #fff;
}

.template-site-home .duize-stage .site-button--dark-ghost {
    border-color: #d8dde4;
    background: #fff;
    color: #20242a;
}

.template-site-home .duize-stage__showcase {
    min-height: 500px;
}

.template-site-home .duize-stage__beam {
    opacity: 0;
}

.template-site-home .duize-stage__platform {
    height: 90px;
    background: radial-gradient(ellipse at center, rgba(32, 36, 42, 0.12), rgba(32, 36, 42, 0.02) 62%, transparent 72%);
    box-shadow: none;
}

.template-site-home .duize-device {
    border-color: #d3d9e1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 10% 88%, rgba(255, 255, 255, 0.2)),
        linear-gradient(135deg, #f1f3f6 0%, #9aa4b1 44%, #4b5563 100%);
    box-shadow: 0 26px 70px rgba(32, 36, 42, 0.12), inset 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.template-site-home .duize-device::before {
    background:
        repeating-linear-gradient(90deg, #f7f8fa 0 34px, #252a31 34px 44px, #333a44 44px 52px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
}

.template-site-home .duize-device::after {
    background: #6c7480;
    box-shadow: -56px 0 0 rgba(255, 255, 255, 0.7), -34px 0 0 rgba(255, 255, 255, 0.7), -78px 0 0 rgba(255, 255, 255, 0.7);
}

.template-site-home .duize-test-panel {
    background: rgba(255, 255, 255, 0.84);
    border-color: #d7dde5;
    box-shadow: 0 26px 70px rgba(32, 36, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.template-site-home .duize-test-panel--main::before {
    background:
        linear-gradient(90deg, rgba(32, 36, 42, 0.55) 0 26%, transparent 26% 100%) 0 0 / 100% 10px,
        repeating-linear-gradient(180deg, rgba(32, 36, 42, 0.08) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(32, 36, 42, 0.07) 0 1px, transparent 1px 72px);
}

.template-site-home .duize-orbit {
    border-color: #d9dee5;
}

.template-site-home .duize-service-node {
    color: #20242a;
    background: rgba(255, 255, 255, 0.84);
    border-color: #d8dde4;
    font-weight: 560;
}

.template-site-home .duize-service-node--core {
    background: #ffffff;
}

.template-site-home .duize-stage__controls {
    bottom: 132px;
}

.template-site-home .duize-stage__controls button {
    min-width: 132px;
    padding: 9px 16px;
    color: #6c7480;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.72);
    border-color: #dce1e8;
    backdrop-filter: blur(14px);
}

.template-site-home .duize-stage__controls button span {
    color: #8a93a3;
    font-size: 11px;
}

.template-site-home .duize-stage__controls button.is-active {
    background: #20242a;
    border-color: #20242a;
    color: #fff;
}

.template-site-home .duize-stage__quick {
    right: max(34px, calc((100vw - 1360px) / 2));
    bottom: 34px;
    left: max(34px, calc((100vw - 1360px) / 2));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.template-site-home .duize-stage__quick a {
    display: grid;
    min-height: 104px;
    align-content: center;
    gap: 7px;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #20242a;
    text-align: center;
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.template-site-home .duize-stage__quick strong {
    color: #20242a;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 560;
}

.template-site-home .duize-stage__quick span {
    color: #7a838f;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
}

.template-site-home .duize-belief {
    width: min(1500px, calc(100% - 56px));
    grid-template-columns: minmax(360px, 0.82fr) minmax(640px, 1.18fr);
    gap: 64px;
    padding: 96px 0 84px;
}

.template-site-home .duize-belief__media {
    min-height: 540px;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.82), rgba(245, 246, 248, 0.68)),
        linear-gradient(90deg, #f8f9fb 0%, #eceff3 58%, #f7f8fa 100%);
    box-shadow: none;
}

.template-site-home .duize-belief__room {
    opacity: 0.45;
}

.template-site-home .duize-belief__phone,
.template-site-home .duize-belief__box {
    box-shadow: 0 22px 56px rgba(32, 36, 42, 0.14);
}

.template-site-home .duize-belief__play {
    border-color: #fff;
    background: rgba(32, 36, 42, 0.08);
}

.template-site-home .duize-belief__play::before {
    border-left-color: #20242a;
}

.template-site-home .ug-discover {
    width: min(1320px, calc(100% - 56px));
    padding: 78px 0 58px;
}

.template-site-home .ug-scene-card {
    border-color: #e1e5ea;
    box-shadow: none;
}

.template-site-home .ug-scene-card h3 {
    font-size: clamp(22px, 2.1vw, 32px);
    font-weight: 520;
}

.template-site-home .ug-scene-card--dark {
    background: #20242a;
}

.template-site-home .ug-product-strip {
    width: min(1500px, calc(100% - 56px));
    padding: 64px 0 92px;
}

.template-site-home .ug-product-rail {
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 24px;
}

.site-ugnas-like .ug-product-mini,
.site-ugnas-like .ug-product-card,
.site-ugnas-like .ug-service-grid a,
.site-ugnas-like .ug-advantage-grid article,
.site-ugnas-like .ug-question-panel,
.site-ugnas-like .ug-service-context,
.site-ugnas-like .ug-service-process {
    border-color: #e1e5ea;
    box-shadow: none;
}

.site-ugnas-like .ug-product-mini:hover,
.site-ugnas-like .ug-product-card:hover,
.site-ugnas-like .ug-service-grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(32, 36, 42, 0.08);
}

.template-site-home .ug-product-mini {
    min-height: 430px;
}

.template-site-home .ug-product-mini__media {
    min-height: 270px;
}

.template-site-home .ug-product-mini > div:last-child,
.site-ugnas-like .ug-product-card__body {
    padding: 26px;
}

.template-site-home .ug-advantage {
    width: 100%;
    padding: 88px max(28px, calc((100vw - 1320px) / 2));
    background: #f5f6f8;
    color: #20242a;
}

.template-site-home .ug-advantage .ug-section-head h2,
.template-site-home .ug-advantage-grid h3 {
    color: #20242a;
}

.template-site-home .ug-advantage-grid {
    gap: 20px;
    margin-top: 36px;
}

.template-site-home .ug-advantage-grid article {
    min-height: 220px;
    border-color: #e1e5ea;
    background: #fff;
    color: #20242a;
    backdrop-filter: none;
}

.template-site-home .ug-advantage-grid p {
    color: #6c7480;
}

.template-site-home .ug-service-band {
    width: min(1320px, calc(100% - 56px));
    margin-bottom: 88px;
    border: 1px solid #e1e5ea;
    background: #fff;
    color: #20242a;
}

.template-site-home .ug-service-band h2 {
    color: #20242a;
}

.template-site-home .ug-service-band__links a {
    min-height: 168px;
    border-color: #e1e5ea;
    background: #f8f9fb;
    color: #20242a;
}

.template-site-home .ug-service-band__links span {
    color: #6c7480;
}

.site-ugnas-like .ug-product-filter {
    width: min(1320px, calc(100% - 56px));
    padding: 18px 26px;
    border-radius: 8px;
}

.site-ugnas-like .ug-filter-row {
    padding: 18px 0;
}

.site-ugnas-like .ug-filter-row strong,
.site-ugnas-like .ug-filter-row button {
    font-size: 14px;
    font-weight: 500;
}

.site-ugnas-like .ug-filter-row button:hover,
.site-ugnas-like .ug-filter-row button.is-active {
    background: #eef1f5;
    color: #20242a;
}

.site-ugnas-like .ug-product-catalog,
.site-ugnas-like .ug-service-entry {
    width: min(1320px, calc(100% - 56px));
}

.site-ugnas-like .ug-product-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 24px;
}

.site-ugnas-like .ug-product-card__media {
    min-height: 280px;
}

.site-ugnas-like .ug-service-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 24px;
}

.site-ugnas-like .ug-service-grid a {
    min-height: 286px;
    padding: 32px;
}

.site-ugnas-like .ug-hero h1,
.site-ugnas-like .ug-service-hero h1 {
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.16;
    font-weight: 520;
}

.site-ugnas-like .ug-hero p:not(.ug-eyebrow),
.site-ugnas-like .ug-service-hero p:not(.ug-eyebrow) {
    font-size: 15px;
    line-height: 1.78;
}

.site-ugnas-like .ug-search-card,
.site-ugnas-like .ug-service-search {
    box-shadow: 0 18px 48px rgba(32, 36, 42, 0.1);
}

.site-ugnas-like .ug-search-card button,
.site-ugnas-like .ug-service-search button {
    background: #20242a;
    font-weight: 520;
}

.site-ugnas-like .ug-question-list strong {
    font-size: 16px;
    font-weight: 520;
}

@media (max-width: 1180px) {
    .site-ugnas-like .site-header__inner,
    .site-ugnas-like .ug-shortcuts,
    .site-ugnas-like .ug-discover,
    .site-ugnas-like .ug-product-strip,
    .site-ugnas-like .ug-advantage,
    .site-ugnas-like .ug-service-band,
    .site-ugnas-like .ug-product-filter,
    .site-ugnas-like .ug-product-catalog,
    .site-ugnas-like .ug-service-entry,
    .site-ugnas-like .ug-question-section,
    .site-ugnas-like .ug-service-process,
    .template-site-home .duize-belief {
        width: min(100% - 36px, 1320px);
    }

    .site-ugnas-like .site-footer__inner {
        width: min(100% - 48px, 1180px);
    }

    .template-site-home .duize-stage__slide,
    .template-site-home .duize-belief {
        grid-template-columns: 1fr;
    }

    .template-site-home .duize-stage {
        min-height: 980px;
    }

    .template-site-home .duize-stage__showcase {
        min-height: 360px;
    }

    .template-site-home .duize-stage__quick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-ugnas-like .ug-product-grid,
    .site-ugnas-like .ug-product-rail,
    .site-ugnas-like .ug-service-grid,
    .template-site-home .ug-product-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-ugnas-like .site-header__inner,
    .site-ugnas-like .ug-shortcuts,
    .site-ugnas-like .ug-discover,
    .site-ugnas-like .ug-product-strip,
    .site-ugnas-like .ug-advantage,
    .site-ugnas-like .ug-service-band,
    .site-ugnas-like .ug-product-filter,
    .site-ugnas-like .ug-product-catalog,
    .site-ugnas-like .ug-service-entry,
    .site-ugnas-like .ug-question-section,
    .site-ugnas-like .ug-service-process,
    .template-site-home .duize-belief {
        width: min(100% - 28px, 1320px);
    }

    .site-ugnas-like .site-footer__inner {
        width: min(100% - 28px, 1180px);
    }

    .template-site-home .duize-stage {
        width: min(100% - 20px, 1500px);
        min-height: 900px;
        margin-top: 80px;
    }

    .template-site-home .duize-stage__slide {
        padding: 44px 22px 220px;
    }

    .template-site-home .duize-stage h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .template-site-home .duize-stage__quick {
        right: 16px;
        bottom: 24px;
        left: 16px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .template-site-home .duize-stage__quick a {
        min-height: 74px;
    }

    .template-site-home .duize-stage__controls {
        bottom: 292px;
    }

    .site-ugnas-like .ug-product-grid,
    .site-ugnas-like .ug-product-rail,
    .site-ugnas-like .ug-service-grid,
    .template-site-home .ug-product-rail,
    .template-site-home .ug-service-band,
    .template-site-home .ug-service-band__links {
        grid-template-columns: 1fr;
    }

    .site-ugnas-like .ug-section-head h2,
    .site-ugnas-like .ug-service-band h2,
    .site-ugnas-like .ug-question-panel h2,
    .site-ugnas-like .ug-service-process h2,
    .site-ugnas-like .duize-belief__copy h2 {
        font-size: 26px;
    }
}

/* Final homepage display polish. This must stay last because previous homepage
   passes intentionally layer over one another in this file. */
.template-site-home .duize-stage {
    min-height: clamp(760px, calc(100svh - 92px), 840px);
    background: #f9fafb;
}

.template-site-home .duize-stage::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.74)),
        linear-gradient(180deg, #fff 0%, #f2f4f7 100%);
}

.template-site-home .duize-stage__slide {
    grid-template-columns: minmax(330px, 0.64fr) minmax(560px, 1.36fr);
    padding-top: 104px;
    padding-bottom: 106px;
}

.template-site-home .duize-stage__copy {
    max-width: 520px;
}

.template-site-home .duize-stage__eyebrow {
    margin-bottom: 12px;
    color: #9aa2ad;
    font-size: 12px;
    font-weight: 420;
}

.template-site-home .duize-stage h1 {
    max-width: 430px;
    color: #20242a;
    font-size: clamp(26px, 2.35vw, 34px);
    line-height: 1.24;
    font-weight: 390;
    letter-spacing: 0;
}

.template-site-home .duize-stage__copy > p:not(.duize-stage__eyebrow) {
    max-width: 420px;
    margin-top: 16px;
    color: #747d88;
    font-size: 12.5px;
    line-height: 1.82;
    font-weight: 400;
}

.template-site-home .duize-stage__actions,
.template-site-home .duize-stage__quick,
.template-site-home .duize-stage__controls,
.template-site-home .ug-service-band {
    display: none;
}

.template-site-home .duize-stage__showcase {
    min-height: 470px;
}

.template-site-home .duize-stage__platform {
    background: radial-gradient(ellipse at center, rgba(32, 36, 42, 0.08), rgba(32, 36, 42, 0.015) 62%, transparent 72%);
}

.template-site-home .duize-device {
    border-color: #d7dde5;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent 12% 88%, rgba(255, 255, 255, 0.24)),
        linear-gradient(135deg, #f7f8fa 0%, #b5bec9 50%, #626d7a 100%);
    box-shadow: 0 18px 44px rgba(32, 36, 42, 0.08), inset 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.template-site-home .duize-test-panel {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 46px rgba(32, 36, 42, 0.08);
}

.template-site-home .duize-orbit,
.template-site-home .duize-service-node {
    box-shadow: none;
}

.template-site-home .duize-stage__controls {
    bottom: 32px;
    gap: 9px;
}

.template-site-home .duize-stage__controls button {
    position: relative;
    min-width: 0;
    width: 9px;
    height: 9px;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #cfd5dd;
    color: transparent;
    font-size: 0;
    box-shadow: none;
}

.template-site-home .duize-stage__controls button span {
    display: none;
}

.template-site-home .duize-stage__controls button.is-active {
    width: 38px;
    background: #20242a;
}

.template-site-home .duize-stage__controls button.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.42);
    transform-origin: left center;
    animation: duizeHomeProgress 4.8s linear;
}

.template-site-home .duize-belief {
    width: min(1280px, calc(100% - 56px));
    grid-template-columns: minmax(320px, 0.44fr) minmax(560px, 0.56fr);
    gap: 54px;
    padding: 72px 0 62px;
}

.template-site-home .duize-belief__copy {
    align-self: center;
}

.template-site-home .duize-belief__copy h2,
.template-site-home .ug-discover .ug-section-head h2,
.template-site-home .ug-product-strip .ug-section-head h2 {
    max-width: 720px;
    color: #242930;
    font-size: clamp(20px, 1.55vw, 25px);
    line-height: 1.46;
    font-weight: 400;
    letter-spacing: 0;
}

.template-site-home .duize-belief__copy p:not(.ug-eyebrow),
.template-site-home .ug-discover .ug-section-head p:not(.ug-eyebrow),
.template-site-home .ug-product-strip .ug-section-head p:not(.ug-eyebrow) {
    color: #737d89;
    font-size: 13px;
    line-height: 1.78;
    font-weight: 400;
}

.template-site-home .duize-belief__copy .site-button,
.template-site-home .ug-product-strip .ug-section-head a {
    min-height: 34px;
    border-color: #d9dee5;
    border-radius: 8px;
    padding: 7px 13px;
    color: #3b4652;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .duize-belief__media {
    min-height: 420px;
}

.template-site-home .ug-discover {
    width: min(1280px, calc(100% - 56px));
    padding: 66px 0 44px;
}

.template-site-home .ug-discover .ug-section-head--center {
    max-width: 740px;
    margin-bottom: 26px;
}

.template-site-home .ug-scene-tabs {
    margin-bottom: 22px;
}

.template-site-home .ug-scene-tabs a {
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 420;
}

.template-site-home .ug-scene-card {
    min-height: 238px;
    padding: 26px;
}

.template-site-home .ug-scene-card--feature {
    min-height: 496px;
}

.template-site-home .ug-scene-card h3 {
    max-width: 520px;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.3;
    font-weight: 420;
}

.template-site-home .ug-scene-card p {
    color: #727c88;
    font-size: 13px;
    line-height: 1.7;
}

.template-site-home .ug-product-strip {
    width: min(1280px, calc(100% - 56px));
    padding: 52px 0 78px;
}

.template-site-home .ug-product-strip .ug-section-head {
    align-items: center;
    margin-bottom: 26px;
}

.template-site-home .ug-product-rail {
    gap: 18px;
}

.template-site-home .ug-product-mini {
    min-height: 382px;
}

.template-site-home .ug-product-mini__media {
    min-height: 226px;
}

.template-site-home .ug-product-mini > div:last-child {
    padding: 22px;
}

.template-site-home .ug-product-mini h3 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 440;
}

.template-site-home .ug-product-mini p {
    font-size: 13px;
    line-height: 1.68;
}

.template-site-home .ug-advantage .ug-section-head h2,
.template-site-home .ug-service-band h2 {
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.42;
    font-weight: 420;
}

@media (max-width: 1180px) {
    .template-site-home .duize-stage {
        min-height: 680px;
    }

    .template-site-home .duize-stage__slide,
    .template-site-home .duize-belief {
        grid-template-columns: 1fr;
    }

    .template-site-home .duize-stage__slide {
        padding-bottom: 96px;
    }
}

@media (max-width: 760px) {
    .template-site-home .duize-stage {
        min-height: 620px;
    }

    .template-site-home .duize-stage__slide {
        padding: 38px 22px 58px;
    }

    .template-site-home .duize-stage h1 {
        font-size: clamp(25px, 7.2vw, 33px);
    }

    .template-site-home .duize-stage__controls {
        bottom: 28px;
    }

    .template-site-home .duize-belief,
    .template-site-home .ug-discover,
    .template-site-home .ug-product-strip {
        width: min(100% - 28px, 1280px);
    }

    .template-site-home .duize-belief {
        padding: 52px 0 46px;
    }

    .template-site-home .duize-belief__copy h2,
    .template-site-home .ug-discover .ug-section-head h2,
    .template-site-home .ug-product-strip .ug-section-head h2 {
        font-size: 22px;
        line-height: 1.42;
        font-weight: 400;
    }

    .template-site-home .duize-belief__media {
        min-height: 320px;
    }
}
