:root {
    --bg: #07121b;
    --bg-soft: #0b1723;
    --panel: rgba(10, 24, 35, 0.78);
    --panel-strong: rgba(12, 28, 39, 0.92);
    --line: rgba(138, 182, 209, 0.16);
    --text: #edf4fb;
    --muted: #98afc2;
    --teal: #28d4ca;
    --teal-deep: #0d9ea6;
    --amber: #ff9754;
    --white-soft: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: min(1180px, calc(100vw - 36px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Aptos", "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(40, 212, 202, 0.18), transparent 30%),
        radial-gradient(circle at left 12%, rgba(255, 151, 84, 0.12), transparent 24%),
        linear-gradient(180deg, #07121b 0%, #081520 45%, #091621 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
    line-height: 1.78;
}

ul {
    margin: 0;
    padding-left: 18px;
}

h1,
h2,
h3,
.metric-number,
.brand-mark {
    font-family: "Bahnschrift", "Trebuchet MS", "Microsoft YaHei", sans-serif;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.36rem;
    margin-bottom: 12px;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow,
.tag,
.metric-label,
.metric-unit,
.meta-label,
.anchor-link {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 30;
    padding-top: 12px;
}

.header-shell {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 20, 30, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #081117;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--amber));
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.site-nav a {
    color: var(--muted);
    transition: color 0.24s ease, background 0.24s ease;
    padding: 10px 12px;
    border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-current {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--white-soft);
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--teal), #12b7ba);
    color: #081117;
    border-color: transparent;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--white-soft);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.page-main {
    padding-bottom: 80px;
}

.hero-home,
.page-hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: center;
    padding: 92px 0 34px;
}

.hero-copy,
.hero-art,
.section-card,
.metric-card,
.content-card,
.timeline-card,
.cta-band,
.preview-card,
.table-card,
.contact-card,
.info-strip {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 16px;
}

.lead {
    margin-top: 18px;
    max-width: 62ch;
    color: #d4e0ea;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 24px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.hero-pills li,
.tag {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-art {
    position: relative;
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(40, 212, 202, 0.16), rgba(255, 151, 84, 0.08));
    filter: blur(14px);
}

.figure-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel-strong);
    box-shadow: var(--shadow);
}

.figure-caption {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.95rem;
}

.metrics-grid,
.cards-3,
.cards-4,
.company-metrics,
.timeline-grid,
.contact-grid,
.preview-grid {
    display: grid;
    gap: 18px;
}

.metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
}

.metric-card,
.section-card,
.content-card,
.preview-card,
.table-card,
.contact-card,
.timeline-card,
.info-strip {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.metric-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0 4px;
}

.metric-label {
    display: inline-block;
}

.metric-unit {
    display: block;
    margin-top: 4px;
}

.section {
    padding: 86px 0 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading p {
    max-width: 70ch;
    color: #d1deea;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-list,
.meta-list {
    display: grid;
    gap: 12px;
    color: #d8e5ef;
}

.feature-list li,
.meta-list li {
    line-height: 1.72;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.quote-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 24, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.quote-card p + p {
    margin-top: 18px;
}

.anchor-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.anchor-link {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.preview-card img,
.content-card img {
    margin-top: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.mini-title {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}

.table-card th,
.table-card td {
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.table-card th {
    color: #dfeaf4;
    font-weight: 600;
}

.table-card td {
    color: var(--muted);
}

.company-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-metrics .content-card {
    min-height: 180px;
}

.timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
    border-top: 2px solid rgba(40, 212, 202, 0.65);
}

.timeline-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-band {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-top: 30px;
    padding: 30px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at right top, rgba(255, 151, 84, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(40, 212, 202, 0.14), rgba(8, 18, 27, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.cta-band p {
    color: #d8e3ed;
}

.cta-band .button {
    justify-self: start;
    margin-top: 12px;
}

.contact-note {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    min-height: 136px;
    resize: vertical;
}

.form-status,
.form-summary {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #dce7f1;
    white-space: pre-wrap;
}

.site-footer {
    margin-top: 90px;
    padding: 34px 0 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 24px;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.footer-meta {
    color: var(--muted);
}

.footer-meta p + p,
.footer-links a + a {
    margin-top: 10px;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

.center-stage {
    min-height: 64vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 120px 0 40px;
}

.center-card {
    max-width: 720px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background: var(--panel-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.center-card p {
    margin-top: 16px;
    color: #d6e3ed;
}

@media (max-width: 1080px) {
    .hero-home,
    .page-hero,
    .split-layout,
    .cta-band,
    .footer-grid,
    .contact-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid,
    .cards-4,
    .cards-3,
    .timeline-grid,
    .company-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header {
        position: static;
    }

    .header-shell {
        flex-wrap: wrap;
        border-radius: 26px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin: 10px 0 0;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
    }
}

@media (max-width: 720px) {
    :root {
        --container: min(100vw - 24px, 1180px);
    }

    h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .metrics-grid,
    .cards-4,
    .cards-3,
    .timeline-grid,
    .company-metrics,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 72px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bar {
        flex-direction: column;
    }
}

/* Homepage industrial presentation */
.brand-logo-mark {
    overflow: hidden;
    background: #0b1a27;
}

.brand-logo-mark img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

body[data-page="index"] {
    background: #f4f7f9;
    color: #16212b;
}

body[data-page="index"] .site-header {
    position: sticky;
    top: 0;
    padding-top: 12px;
}

body[data-page="index"] .header-shell {
    border-radius: 8px;
    background: rgba(11, 26, 39, 0.94);
}

body[data-page="index"] .button,
body[data-page="index"] .header-cta {
    border-radius: 6px;
}

.home-main {
    overflow: hidden;
}

.home-hero {
    position: relative;
    margin-top: -84px;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6, 19, 31, 0.96) 0%, rgba(6, 19, 31, 0.88) 34%, rgba(6, 19, 31, 0.28) 66%, rgba(6, 19, 31, 0.06) 100%),
        url("../images/home-hero-main-fade.jpg") center / cover no-repeat,
        #07121b;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #135d7c, #d8a85e, #f4f7f9);
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
    align-items: center;
}

.home-hero-copy {
    max-width: 780px;
    padding-top: 86px;
}

.home-hero-copy h1 {
    font-size: clamp(2.9rem, 5.5vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.home-hero-copy .lead {
    max-width: 710px;
    color: #dce7ef;
}

.home-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

.home-hero-points li {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    color: #dce7ef;
    background: rgba(255, 255, 255, 0.04);
}

.home-section {
    padding: 92px 0;
    background: #f4f7f9;
}

.home-section:nth-of-type(2n + 1) {
    background: #fff;
}

.home-split,
.home-tech-grid,
.home-value-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
    align-items: start;
}

.home-section-title h2,
.home-section-heading h2,
.home-tech-copy h2,
.home-cta h2 {
    color: #122333;
    font-size: clamp(2rem, 3.9vw, 3.6rem);
    letter-spacing: 0;
}

.no-wrap-heading {
    white-space: nowrap;
}

.home-section-heading {
    max-width: 860px;
    margin-bottom: 32px;
}

.home-section-heading p,
.home-intro-copy p,
.home-tech-copy p,
.home-value-list p,
.home-rd-card p,
.product-card p,
.route-card p {
    color: #536675;
}

.home-card-grid {
    display: grid;
    gap: 18px;
}

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

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

.home-intro-copy {
    display: grid;
    gap: 18px;
    padding-left: 28px;
    border-left: 3px solid #d8a85e;
}

.home-overview-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.home-overview-metrics div {
    padding: 18px;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    background: #fff;
}

.home-overview-metrics span {
    display: block;
    color: #6b7d8c;
    font-size: 0.84rem;
    margin-bottom: 8px;
}

.home-overview-metrics strong {
    color: #122333;
    font-size: 1.7rem;
}

.product-showcase {
    display: grid;
    gap: 18px;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    align-items: center;
    padding: 20px;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 46, 61, 0.08);
}

.product-card-featured {
    background: linear-gradient(180deg, #fbfdfe, #eef5f7);
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    background: #e8eef2;
}

.product-card h3,
.route-card h3,
.home-rd-card h3,
.home-value-list h3 {
    color: #122333;
    letter-spacing: 0;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
}

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

.product-specs div {
    padding: 12px;
    border-left: 3px solid #135d7c;
    background: #eef5f7;
}

.product-specs dt {
    color: #6b7d8c;
    font-size: 0.82rem;
}

.product-specs dd {
    margin: 5px 0 0;
    color: #122333;
    font-weight: 800;
}

.product-note {
    margin-top: 12px;
    padding: 12px 14px;
    border-left: 3px solid #d8a85e;
    background: #f5f7f9;
}

.route-section {
    background: #0b1a27;
}

.route-section h2,
.route-section .home-section-heading p {
    color: #fff;
}

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

.route-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.route-card h3,
.route-card p,
.route-card li {
    color: #e8f0f6;
}

.route-card-highlight {
    background: linear-gradient(180deg, rgba(19, 93, 124, 0.68), rgba(8, 25, 38, 0.96));
}

.route-card ul,
.home-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.home-feature-list {
    padding: 0;
    list-style: none;
}

.home-feature-list li {
    padding: 16px 18px;
    border-left: 3px solid #135d7c;
    background: #fff;
    color: #536675;
    line-height: 1.72;
}

.home-tech {
    background: #eef3f6;
}

.home-tech-visual {
    overflow: hidden;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 46, 61, 0.08);
}

.home-tech-visual img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.home-tech-caption {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-top: 1px solid #dbe4ea;
}

.home-tech-caption span {
    color: #6b7d8c;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-rd-card,
.home-value-list article {
    padding: 24px;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 46, 61, 0.08);
}

.home-rd-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 6px;
    background: #e6edf1;
    color: #135d7c;
    font-weight: 800;
}

.home-value-list {
    display: grid;
    gap: 14px;
}

.home-cta {
    padding: 74px 0 0;
    background: #f4f7f9;
}

.home-cta-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(90deg, rgba(9, 28, 42, 0.96), rgba(19, 93, 124, 0.92));
}

.home-cta h2,
.home-cta p {
    color: #fff;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 1080px) {
    .home-hero-grid,
    .home-split,
    .home-tech-grid,
    .home-value-grid,
    .home-cta-shell,
    .product-card,
    .route-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-actions {
        justify-content: flex-start;
    }

    .home-card-grid-3,
    .home-card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    body[data-page="index"] .site-header {
        position: static;
        background: #0b1a27;
    }

    .home-hero {
        margin-top: 0;
        min-height: 640px;
        background:
            linear-gradient(180deg, rgba(6, 19, 31, 0.95), rgba(6, 19, 31, 0.5)),
            url("../images/home-hero-main-fade.jpg") center / cover no-repeat;
    }
}

@media (max-width: 720px) {
    .home-hero {
        min-height: 620px;
    }

    .home-section {
        padding: 68px 0;
    }

    .home-intro-copy {
        padding-left: 18px;
    }

    .home-overview-metrics,
    .home-card-grid-3,
    .home-card-grid-4,
    .product-specs,
    .product-specs.compact {
        grid-template-columns: 1fr;
    }

    .no-wrap-heading {
        white-space: nowrap;
    }
}

/* Minimal homepage reset: keep the previous layout, only replace needed assets/content */
body[data-page="index"] .home-hero {
    min-height: auto;
    display: block;
    margin-top: -84px;
    padding: 176px 0 74px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6, 20, 31, 0.96) 0%, rgba(10, 34, 51, 0.84) 44%, rgba(15, 57, 76, 0.18) 78%, rgba(15, 57, 76, 0.04) 100%),
        url("../images/home-hero-main-fade-nogrid.jpg") center / cover no-repeat,
        #0b1a27;
}

body[data-page="index"]::before {
    content: none;
}

body[data-page="index"] .home-hero::before {
    content: none;
}

body[data-page="index"] .home-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 42px;
}

body[data-page="index"] .home-hero-copy {
    max-width: none;
    padding-top: 0;
}

body[data-page="index"] .home-hero-visual {
    display: grid;
    gap: 14px;
}

body[data-page="index"] .home-hero-spacer {
    min-height: 360px;
}

body[data-page="index"] .home-machine-card {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

body[data-page="index"] .home-machine-image {
    min-height: 315px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
}

body[data-page="index"] .home-machine-image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    opacity: 0.96;
}

body[data-page="index"] .home-hero-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

body[data-page="index"] .home-hero-data div {
    padding: 18px;
}

body[data-page="index"] .home-hero-data div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-page="index"] .home-hero-data span {
    color: #9eb5c4;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body[data-page="index"] .home-hero-data strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 1.45rem;
}

body[data-page="index"] .home-solution-card {
    min-height: 320px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe4ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 46, 61, 0.08);
}

body[data-page="index"] .home-solution-featured {
    color: #fff;
    background: linear-gradient(180deg, #13384e, #0b1f30);
    border-color: #13384e;
}

body[data-page="index"] .home-solution-card h3 {
    color: #122333;
}

body[data-page="index"] .home-solution-card p {
    color: #536675;
}

body[data-page="index"] .home-solution-featured h3,
body[data-page="index"] .home-solution-featured p {
    color: #fff;
}

body[data-page="index"] .home-solution-image {
    height: 158px;
    margin: -6px -6px 18px;
    overflow: hidden;
    border-radius: 6px;
    background: #e8eef2;
}

body[data-page="index"] .home-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body[data-page="index"] .home-intro .home-split {
    grid-template-columns: 1fr;
    gap: 24px;
}

body[data-page="index"] .home-intro .home-intro-copy {
    max-width: 980px;
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 3px solid #d8a85e;
}

.product-mini-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.product-mini-list article {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.product-mini-list img {
    width: 128px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.product-mini-list strong {
    display: block;
    margin-bottom: 6px;
    color: #dfeaf4;
}

.product-mini-list p {
    color: var(--muted);
}

@media (max-width: 1080px) {
    body[data-page="index"] .home-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    body[data-page="index"] .home-hero {
        margin-top: 0;
        padding-top: 72px;
        background:
            linear-gradient(180deg, rgba(6, 20, 31, 0.96), rgba(15, 57, 76, 0.42)),
            url("../images/home-hero-main-fade-nogrid.jpg") center / cover no-repeat,
            #0b1a27;
    }
}

@media (max-width: 720px) {
    body[data-page="index"] .home-hero-data {
        grid-template-columns: 1fr;
    }

    body[data-page="index"] .home-hero-data div + div {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .product-mini-list article {
        grid-template-columns: 1fr;
    }

    .product-mini-list img {
        width: 100%;
        height: 180px;
    }
}

/* Full-width top navigation */
.site-header,
body[data-page="index"] .site-header {
    top: 0;
    padding-top: 0;
    background: #131b2d;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-shell,
body[data-page="index"] .header-shell {
    min-height: 58px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.88);
    border-radius: 0;
}

.site-nav a:hover,
.site-nav a.is-current {
    color: #fff;
    background: transparent;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 30px;
    padding: 5px 10px;
    margin-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}

.language-switch:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.header-cta {
    display: none;
}

@media (max-width: 860px) {
    .site-header,
    body[data-page="index"] .site-header {
        position: sticky;
    }

    .header-shell,
    body[data-page="index"] .header-shell {
        padding: 0;
        flex-wrap: wrap;
    }

    .site-nav {
        padding-bottom: 12px;
    }

    .language-switch {
        margin-left: 0;
        margin-bottom: 12px;
    }
}

/* Homepage requested refinements */
.brand-copy strong,
body[data-page="index"] .brand-copy strong {
    color: #fff;
}

.brand-copy small,
body[data-page="index"] .brand-copy small {
    color: rgba(255, 255, 255, 0.68);
}

body[data-page="index"] .home-tech-grid {
    align-items: start;
}

body[data-page="index"] .home-tech-visual img {
    height: clamp(220px, 27vw, 300px);
    object-fit: contain;
    padding: 18px;
    background: #fff;
}

body[data-page="index"] .home-tech-caption {
    padding: 16px 18px;
}

body[data-page="index"] .home-value-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
    body[data-page="index"] .home-value-list {
        grid-template-columns: 1fr;
    }
}
