:root {
    --brand-900: #0c2234;
    --brand-800: #173b58;
    --brand-700: #295499;
    --brand-600: #386581;
    --brand-500: #3979b8;
    --brand-400: #4aa6d8;
    --aqua: #52d6d0;
    --ink: #10293d;
    --muted: #607486;
    --line: #dbe5eb;
    --surface: #f4f8fa;
    --surface-blue: #eef5f8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(12, 34, 52, .12);
    --gradient: linear-gradient(135deg, #386581 0%, #295499 100%);
    --gradient-bright: linear-gradient(135deg, #4aa6d8 0%, #295499 62%, #386581 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--white);
    font-family: Aptos, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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

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

.page-shell {
    min-height: 70vh;
    animation: page-enter .55s cubic-bezier(.22, 1, .36, 1) both;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aqua), var(--brand-500));
    box-shadow: 0 0 15px rgba(82, 214, 208, .8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 82px;
    border-bottom: 1px solid rgba(219, 229, 235, .78);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px) saturate(140%);
    transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 40px rgba(12, 34, 52, .09);
}

.nav-shell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 7px 22px rgba(41, 84, 153, .22);
}

.brand span {
    display: block;
}

.brand b {
    display: block;
    color: var(--brand-900);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -.45px;
}

.brand small {
    display: block;
    margin-top: 6px;
    color: #718494;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: 1.45px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav > a {
    position: relative;
    color: #344f62;
    font-size: 13px;
    font-weight: 670;
    transition: color .2s ease;
}

.nav-index,
.nav-arrow {
    display: none;
}

.nav-cta-arrow {
    font-style: normal;
    transition: transform .2s ease;
}

.nav-cta:hover .nav-cta-arrow {
    transform: translateX(4px);
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--brand-700);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 17px;
    border-radius: 10px;
    color: var(--white) !important;
    background: var(--gradient);
    box-shadow: 0 9px 25px rgba(41, 84, 153, .22);
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(41, 84, 153, .3);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    gap: 5px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 4px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.eyebrow i {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 7px rgba(82, 214, 208, .13);
    animation: signal-pulse 2.1s ease-in-out infinite;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(115deg, #f4f8fa 0%, #fff 58%, #edf5fa 100%);
}

.hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(56, 101, 129, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 101, 129, .11) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero-aurora,
.contact-aurora {
    position: absolute;
    z-index: -2;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 166, 216, .26), rgba(41, 84, 153, .08) 42%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    animation: aurora-drift 10s ease-in-out infinite alternate;
}

.hero .hero-aurora {
    top: -180px;
    right: -130px;
}

.hero-layout {
    min-height: 655px;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 76px;
    padding-block: 82px 98px;
}

.hero-copy h1,
.inner-hero h1,
.contact-copy h1 {
    margin: 24px 0 26px;
    color: var(--brand-900);
    font-size: clamp(50px, 5.4vw, 78px);
    font-weight: 740;
    line-height: .98;
    letter-spacing: -4.3px;
}

.hero-copy h1 em,
.inner-hero h1 em,
.contact-copy h1 em {
    color: transparent;
    background: var(--gradient-bright);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-copy > p,
.inner-hero-grid > div > p,
.contact-copy > p {
    max-width: 650px;
    margin: 0;
    color: #506779;
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 35px 0 30px;
}

.button {
    position: relative;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -45%;
    width: 28%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease, opacity .25s ease;
}

.button:hover::after {
    left: 120%;
    opacity: 1;
}

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

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

.button-primary {
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 13px 32px rgba(41, 84, 153, .25);
}

.button-primary:hover {
    box-shadow: 0 18px 38px rgba(41, 84, 153, .34);
}

.button-ghost {
    color: var(--brand-800);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
}

.button-white {
    flex: 0 0 auto;
    color: var(--brand-700);
    background: var(--white);
    box-shadow: 0 13px 32px rgba(12, 34, 52, .16);
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #577084;
    font-size: 12px;
}

.trust-row span::first-letter {
    color: var(--brand-500);
}

.hero-dashboard {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(202, 218, 227, .88);
    border-radius: 20px;
    background: rgba(255, 255, 255, .89);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transform: perspective(1200px) rotateY(-2.5deg) rotateX(1.2deg);
    transition: transform .25s ease;
}

.hero-dashboard::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 18px -20px -22px 20px;
    border: 1px solid rgba(57, 121, 184, .16);
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(74, 166, 216, .14), rgba(41, 84, 153, .08));
}

.dashboard-glow {
    position: absolute;
    top: 35%;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(82, 214, 208, .1);
    filter: blur(35px);
    pointer-events: none;
}

.dashboard-head,
.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-head small {
    display: block;
    margin-bottom: 4px;
    color: #80909d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.dashboard-head b {
    color: var(--brand-900);
    font-size: 17px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 100px;
    color: #18725f;
    background: #e7f8f4;
    font-size: 10px;
    font-weight: 750;
}

.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ec6a5;
    animation: signal-pulse 1.7s ease-in-out infinite;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-block: 21px 12px;
}

.kpi-row article {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fafb;
}

.kpi-row article:first-child {
    border-color: rgba(74, 166, 216, .24);
    background: linear-gradient(135deg, rgba(74, 166, 216, .09), rgba(82, 214, 208, .07));
}

.kpi-row small,
.kpi-row span {
    display: block;
    color: #778997;
    font-size: 9px;
}

.kpi-row strong {
    display: block;
    margin-block: 5px 2px;
    color: var(--brand-900);
    font-size: 25px;
}

.kpi-row .positive {
    color: #22806a;
}

.production-chart {
    padding: 14px 14px 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.chart-title b {
    font-size: 11px;
}

.chart-title span {
    color: #82919c;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.chart-bars {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 14px;
    border-bottom: 1px solid var(--line);
}

.chart-bars i {
    width: 100%;
    height: var(--bar);
    display: block;
    border-radius: 5px 5px 0 0;
    background: #d4e1e8;
    transform-origin: bottom;
    animation: chart-rise 1s cubic-bezier(.22, 1, .36, 1) both;
}

.chart-bars i:nth-child(2) { animation-delay: .08s; }
.chart-bars i:nth-child(3) { animation-delay: .16s; }
.chart-bars i:nth-child(4) { animation-delay: .24s; }
.chart-bars i:nth-child(5) { animation-delay: .32s; }
.chart-bars i:nth-child(6) { animation-delay: .4s; }
.chart-bars i:nth-child(7) { animation-delay: .48s; }

.chart-bars i.active {
    background: var(--gradient);
    box-shadow: 0 0 18px rgba(57, 121, 184, .22);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding-top: 7px;
    color: #8796a0;
    font-size: 8px;
}

.mini-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.mini-flow > div {
    min-width: 0;
    flex: 1;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
}

.mini-flow > i {
    padding-inline: 5px;
    color: #92a0aa;
    font-style: normal;
}

.mini-flow span,
.mini-flow b {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-flow span {
    color: #8797a2;
    font-size: 8px;
}

.mini-flow b {
    margin-top: 4px;
    font-size: 9px;
}

.mini-flow .active {
    border-color: rgba(57, 121, 184, .3);
    background: rgba(57, 121, 184, .07);
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    color: var(--white);
    background: var(--brand-900);
    box-shadow: 0 18px 50px rgba(12, 34, 52, .18);
}

.hero-stats > div {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats > div:last-child {
    border: 0;
}

.hero-stats strong {
    font-size: 26px;
}

.hero-stats span {
    margin-top: 4px;
    color: #a6b8c6;
    font-size: 11px;
}

.section {
    padding-block: 110px;
}

.section-title {
    max-width: 660px;
}

.section-title h2,
.section-intro h2,
.outcome-copy h2,
.story-grid h2,
.cta-band h2 {
    margin: 14px 0 0;
    color: var(--brand-900);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 730;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.section-title > p {
    max-width: 610px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.section-title.centered {
    margin-inline: auto;
    text-align: center;
}

.section-intro {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 50px;
}

.section-intro > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.solution-card {
    position: relative;
    min-height: 342px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, box-shadow .3s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(145deg, rgba(74, 166, 216, .1), transparent 45%);
    transition: opacity .3s ease;
}

.solution-card:hover {
    z-index: 2;
    border-color: rgba(57, 121, 184, .32);
    transform: translateY(-9px);
    box-shadow: 0 24px 58px rgba(12, 34, 52, .11);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    position: relative;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 12px;
    color: var(--white);
    background: var(--gradient);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 10px 26px rgba(41, 84, 153, .2);
    transition: transform .35s ease;
}

.solution-card:hover .solution-icon {
    transform: rotate(-6deg) scale(1.07);
}

.solution-card small {
    color: #8a9aa6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.solution-card h3 {
    margin: 9px 0 14px;
    color: var(--brand-900);
    font-size: 20px;
    line-height: 1.2;
}

.solution-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.solution-card > b {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: var(--brand-500);
    font-size: 12px;
}

.solution-card > b i {
    font-style: normal;
    transition: transform .2s ease;
}

.solution-card:hover > b i {
    transform: translateX(5px);
}

.dark-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-900);
}

.dark-orbit {
    position: absolute;
    top: -360px;
    left: -300px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(82, 214, 208, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 100px rgba(74, 166, 216, .03),
        0 0 0 210px rgba(74, 166, 216, .02);
    animation: orbit-spin 24s linear infinite;
}

.outcomes-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.outcome-copy h2 {
    color: var(--white);
}

.outcome-copy h2 em {
    color: var(--aqua);
    font-style: normal;
}

.outcome-copy > p {
    max-width: 480px;
    margin: 26px 0 34px;
    color: #a5b8c7;
    line-height: 1.75;
}

.outcome-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding-block: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.outcome-list article > span {
    padding-top: 5px;
    color: var(--aqua);
    font-family: Consolas, monospace;
    font-size: 11px;
}

.outcome-list h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.outcome-list p {
    margin: 0;
    color: #97acbb;
    font-size: 13px;
    line-height: 1.7;
}

.modules-section {
    overflow: hidden;
    background: var(--surface);
}

.module-marquee {
    width: 100%;
    overflow: hidden;
    margin-block: 48px 62px;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.module-track {
    width: max-content;
    display: flex;
    animation: marquee 34s linear infinite;
}

.module-track span {
    min-width: 150px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
    color: var(--brand-800);
    font-size: 12px;
    font-weight: 740;
    text-align: center;
}

.module-marquee:hover .module-track {
    animation-play-state: paused;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
}

.industry-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.industry-card:last-child {
    border: 0;
}

.industry-card span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.industry-card b {
    margin-top: auto;
    color: var(--brand-900);
    font-size: 16px;
}

.industry-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cta-section {
    padding-block: 100px;
    background: var(--white);
}

.cta-band {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 56px 60px;
    border-radius: 20px;
    color: var(--white);
    background: var(--gradient-bright);
    box-shadow: 0 25px 70px rgba(41, 84, 153, .22);
}

.cta-band::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -80px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255, 255, 255, .04), 0 0 0 130px rgba(255, 255, 255, .03);
    animation: orbit-spin 22s linear infinite;
}

.cta-band .eyebrow {
    color: #d8ffff;
}

.cta-band h2 {
    color: var(--white);
    font-size: 41px;
}

.cta-band p {
    max-width: 680px;
    margin: 17px 0 0;
    color: #e0eef6;
    line-height: 1.65;
}

.inner-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-900);
}

.inner-hero .hero-aurora {
    top: -240px;
    right: -80px;
}

.inner-hero-grid {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr .68fr;
    align-items: center;
    gap: 70px;
    padding-block: 95px;
}

.inner-hero h1 {
    color: var(--white);
}

.inner-hero-grid > div > p {
    margin-bottom: 34px;
    color: #b5c5d1;
}

.inner-signal {
    position: relative;
    width: min(380px, 90vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-inline: auto;
}

.signal-ring {
    position: absolute;
    border: 1px solid rgba(82, 214, 208, .27);
    border-radius: 50%;
}

.ring-one { inset: 0; animation: ring-breathe 4s ease-in-out infinite; }
.ring-two { inset: 17%; animation: ring-breathe 4s .5s ease-in-out infinite; }
.ring-three { inset: 34%; animation: ring-breathe 4s 1s ease-in-out infinite; }

.signal-core {
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, rgba(74, 166, 216, .9), rgba(41, 84, 153, .9));
    box-shadow: 0 0 60px rgba(74, 166, 216, .35);
    font-size: 17px;
    font-weight: 850;
    letter-spacing: 1px;
    animation: float 4.2s ease-in-out infinite;
}

.proof-strip {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.proof-strip .container {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 55px;
    align-items: start;
    padding-block: 42px;
}

.proof-strip span {
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.proof-strip p {
    max-width: 850px;
    margin: 0;
    color: #3e586b;
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 50px;
    border: 1px solid var(--line);
    background: var(--line);
}

.feature-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 34px;
    background: var(--white);
    transition: background .25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(57, 121, 184, .14);
    border-radius: 50%;
    transition: transform .35s ease;
}

.feature-card:hover {
    background: #f9fcfd;
}

.feature-card:hover::after {
    transform: scale(1.35);
}

.feature-card > span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.feature-line {
    width: 28px;
    height: 2px;
    margin-top: 25px;
    background: var(--gradient);
    transition: width .3s ease;
}

.feature-card:hover .feature-line {
    width: 54px;
}

.feature-card h3 {
    margin: 28px 0 12px;
    color: var(--brand-900);
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.process-section {
    background: var(--surface);
}

.process-section .section-title {
    display: grid;
    grid-template-columns: 1fr;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 48px;
    border: 1px solid var(--line);
    background: var(--white);
}

.process-flow > div {
    position: relative;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px 21px;
    border-right: 1px solid var(--line);
}

.process-flow > div:last-child {
    border: 0;
}

.process-flow span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.process-flow b {
    color: var(--brand-900);
    font-size: 13px;
}

.process-flow i {
    position: absolute;
    z-index: 2;
    top: calc(50% - 11px);
    right: -11px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    font-size: 10px;
    font-style: normal;
    box-shadow: 0 5px 12px rgba(41, 84, 153, .2);
}

.about-hero-grid {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: center;
    gap: 75px;
}

.about-logo-stage {
    position: relative;
    display: grid;
    place-items: center;
}

.about-logo-stage img {
    position: relative;
    z-index: 2;
    width: 280px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .25));
    animation: float 4.8s ease-in-out infinite;
}

.about-ring {
    position: absolute;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(82, 214, 208, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(74, 166, 216, .05);
    animation: ring-breathe 5s ease-in-out infinite;
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.story-copy p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

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

.timeline > div {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.timeline > div:last-child { border: 0; }
.timeline strong { color: var(--brand-700); font-size: 28px; }
.timeline span { margin-top: 7px; color: var(--muted); font-size: 12px; }
.values-section { background: var(--surface); }

.contact-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(120deg, #f0f6f8, #fff);
}

.contact-aurora {
    top: -150px;
    left: -200px;
}

.contact-grid {
    min-height: 740px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 90px;
    padding-block: 90px;
}

.contact-benefits {
    margin-top: 42px;
}

.contact-benefits > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
}

.contact-benefits span {
    padding-top: 3px;
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.contact-benefits p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.contact-benefits b {
    color: var(--brand-900);
}

.contact-card {
    padding: 39px;
    border: 1px solid rgba(205, 220, 228, .88);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.form-head > span {
    color: var(--brand-500);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.form-head h2 {
    margin: 8px 0 6px;
    color: var(--brand-900);
    font-size: 26px;
    letter-spacing: -.8px;
}

.form-head p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 13px;
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-card label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #486173;
    font-size: 11px;
    font-weight: 740;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fafcfd;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: var(--brand-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 166, 216, .12);
}

.contact-card textarea {
    resize: vertical;
}

.form-status {
    min-height: 17px;
    margin: 0;
    color: #2a786a;
    font-size: 11px;
}

.contact-strip {
    color: var(--white);
    background: var(--gradient);
}

.contact-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-strip .container > div {
    padding: 28px 30px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.contact-strip .container > div:last-child { border: 0; }
.contact-strip small { display: block; margin-bottom: 6px; color: #c9eff2; font-size: 8px; font-weight: 850; letter-spacing: 1.5px; }
.contact-strip b, .contact-strip a { font-size: 13px; font-weight: 750; }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 68px 0 25px;
    color: #9fb3c2;
    background: #071a29;
}

.footer-orbit {
    position: absolute;
    right: -240px;
    bottom: -440px;
    width: 690px;
    height: 690px;
    border: 1px solid rgba(82, 214, 208, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(74, 166, 216, .025), 0 0 0 190px rgba(74, 166, 216, .02);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.65fr .85fr .75fr 1fr;
    gap: 60px;
    padding-bottom: 52px;
}

.brand-light b { color: var(--white); }
.brand-light small { color: #90a6b5; }

.footer-brand > p {
    max-width: 370px;
    margin: 20px 0 14px;
    font-size: 13px;
    line-height: 1.75;
}

.footer-tagline {
    color: var(--aqua);
    font-size: 11px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links > b {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 13px;
}

.footer-links a,
.footer-links p {
    margin: 0;
    color: #94aaba;
    font-size: 12px;
    line-height: 1.7;
    transition: color .2s ease, transform .2s ease;
}

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

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
    letter-spacing: .4px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 7px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 100px;
    color: var(--white);
    background: #168a6d;
    box-shadow: 0 12px 34px rgba(10, 70, 55, .28);
    font-size: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(10, 70, 55, .36);
}

.floating-whatsapp > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #168a6d;
    background: var(--white);
    font-weight: 900;
}

.not-found {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--surface);
}

.not-found h1 {
    max-width: 700px;
    margin: 15px auto;
    color: var(--brand-900);
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.not-found p {
    margin-bottom: 28px;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
}

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

.solution-grid .reveal:nth-child(2),
.feature-grid .reveal:nth-child(2),
.industry-grid .reveal:nth-child(2) { transition-delay: .08s; }
.solution-grid .reveal:nth-child(3),
.feature-grid .reveal:nth-child(3),
.industry-grid .reveal:nth-child(3) { transition-delay: .16s; }
.solution-grid .reveal:nth-child(4),
.feature-grid .reveal:nth-child(4),
.industry-grid .reveal:nth-child(4) { transition-delay: .24s; }
.feature-grid .reveal:nth-child(5) { transition-delay: .32s; }
.feature-grid .reveal:nth-child(6) { transition-delay: .4s; }

@keyframes page-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

@keyframes signal-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.72); opacity: .55; }
}

@keyframes aurora-drift {
    from { transform: translate3d(-30px, 10px, 0) scale(.96); }
    to { transform: translate3d(50px, -30px, 0) scale(1.08); }
}

@keyframes chart-rise {
    from { transform: scaleY(0); opacity: .3; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes ring-breathe {
    0%, 100% { transform: scale(.96); opacity: .55; }
    50% { transform: scale(1.03); opacity: 1; }
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* Corporate website */
.company-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 22%, rgba(82, 214, 208, .13), transparent 28%),
        linear-gradient(115deg, #f4f8fa 0%, #fff 58%, #edf5fa 100%);
}

.company-hero .hero-aurora {
    top: -190px;
    right: -120px;
}

.company-hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
    padding-block: 76px 110px;
}

.ecosystem {
    position: relative;
    width: min(520px, 43vw);
    aspect-ratio: 1;
    margin-inline: auto;
}

.ecosystem::before {
    content: "";
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 214, 208, .2), rgba(74, 166, 216, .08) 46%, transparent 70%);
    filter: blur(7px);
}

.ecosystem-ring {
    position: absolute;
    border: 1px solid rgba(57, 121, 184, .2);
    border-radius: 50%;
}

.ecosystem-ring::before,
.ecosystem-ring::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 3px 14px rgba(41, 84, 153, .28);
}

.ring-a {
    inset: 7%;
    animation: ecosystem-spin 28s linear infinite;
}

.ring-a::before { top: 15%; left: 10%; }
.ring-a::after { right: 3%; bottom: 29%; }

.ring-b {
    inset: 24%;
    border-style: dashed;
    animation: ecosystem-spin 21s linear infinite reverse;
}

.ring-b::before { top: -5px; left: 50%; }
.ring-b::after { right: 8%; bottom: 10%; }

.ecosystem-core {
    position: absolute;
    z-index: 3;
    inset: 36%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 18px 60px rgba(12, 34, 52, .18), 0 0 0 18px rgba(74, 166, 216, .07);
    animation: core-breathe 4s ease-in-out infinite;
}

.ecosystem-core img {
    width: 74%;
    border-radius: 50%;
}

.ecosystem-node {
    position: absolute;
    z-index: 4;
    min-width: 112px;
    display: flex;
    flex-direction: column;
    padding: 13px 16px;
    border: 1px solid rgba(205, 220, 228, .88);
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 35px rgba(12, 34, 52, .11);
    backdrop-filter: blur(10px);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    animation: node-float 4s ease-in-out infinite;
}

.ecosystem-node:hover {
    border-color: var(--brand-400);
    box-shadow: 0 18px 44px rgba(41, 84, 153, .18);
}

.ecosystem-node span {
    color: var(--brand-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
}

.ecosystem-node b {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.node-erp { top: 2%; left: 34%; }
.node-legal { top: 23%; right: -1%; animation-delay: -.8s; }
.node-ai { right: 2%; bottom: 17%; animation-delay: -1.6s; }
.node-wms { bottom: 0; left: 34%; animation-delay: -2.4s; }
.node-pos { bottom: 17%; left: 1%; animation-delay: -3.2s; }
.node-mes { top: 23%; left: -2%; animation-delay: -4s; }

.company-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    margin-top: -68px;
    border-radius: 14px 14px 0 0;
    color: var(--white);
    background: rgba(12, 34, 52, .97);
    box-shadow: 0 -10px 45px rgba(12, 34, 52, .12);
}

.company-stats > div {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.company-stats > div:last-child { border: 0; }
.company-stats strong { font-size: 26px; }
.company-stats span { margin-top: 4px; color: #a6b8c6; font-size: 11px; }

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

.flagship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flagship-card {
    position: relative;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 55px rgba(12, 34, 52, .06);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.flagship-card::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(57, 121, 184, .15);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(74, 166, 216, .035), 0 0 0 108px rgba(74, 166, 216, .025);
    transition: transform .5s ease;
}

.flagship-card:hover {
    border-color: rgba(57, 121, 184, .35);
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(12, 34, 52, .12);
}

.flagship-card:hover::after { transform: scale(1.1) rotate(15deg); }

.product-number {
    color: #81929f;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.6px;
}

.flagship-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-block: 35px 26px;
    border-radius: 17px;
    color: var(--white);
    background: var(--gradient-bright);
    box-shadow: 0 14px 32px rgba(41, 84, 153, .23);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .5px;
}

.flagship-legal .flagship-icon { background: linear-gradient(135deg, #173b58, #386581 64%, #52d6d0); }

.flagship-card h3 {
    margin: 0 0 14px;
    color: var(--brand-900);
    font-size: 31px;
    letter-spacing: -1.2px;
}

.flagship-card p {
    max-width: 510px;
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.flagship-card ul {
    display: grid;
    gap: 9px;
    margin: 25px 0 30px;
    padding: 0;
    color: #486173;
    font-size: 12px;
    list-style: none;
}

.flagship-card li::before { content: "—"; margin-right: 9px; color: var(--aqua); }
.flagship-card > b { position: relative; z-index: 2; margin-top: auto; color: var(--brand-700); font-size: 13px; }
.flagship-card > b i { display: inline-block; margin-left: 7px; font-style: normal; transition: transform .2s ease; }
.flagship-card:hover > b i { transform: translateX(5px); }

.company-solutions-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.company-orbit {
    position: absolute;
    top: -340px;
    right: -300px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(57, 121, 184, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(74, 166, 216, .025), 0 0 0 200px rgba(74, 166, 216, .02);
}

.compact-product-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 52px;
}

.compact-product {
    min-height: 225px;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.compact-product:hover {
    border-color: rgba(57, 121, 184, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(12, 34, 52, .09);
}

.compact-product > span {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding-inline: 9px;
    border-radius: 10px;
    color: var(--white);
    background: var(--gradient);
    font-size: 10px;
    font-weight: 900;
}

.compact-product h3 { margin: 26px 0 9px; color: var(--brand-900); font-size: 18px; }
.compact-product p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.story-preview-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.story-preview-grid h2 {
    margin: 16px 0 24px;
    color: var(--white);
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.story-preview-grid h2 em { color: var(--aqua); font-style: normal; }
.story-preview-grid p { max-width: 540px; margin: 0 0 32px; color: #a5b8c7; line-height: 1.75; }

.story-years {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    align-items: center;
}

.story-years div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.story-years strong { color: var(--aqua); font-size: 24px; }
.story-years span { margin-top: 7px; color: #a9bbc8; font-size: 11px; line-height: 1.5; }
.story-years i { height: 1px; background: linear-gradient(90deg, rgba(82, 214, 208, .2), var(--aqua), rgba(82, 214, 208, .2)); }

.reach-section { overflow: hidden; }

.country-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 46px;
}

.country-cloud span {
    padding: 14px 21px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: #476174;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(12, 34, 52, .04);
    font-size: 12px;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease, border-color .2s ease;
}

.country-cloud span:hover { color: var(--brand-700); border-color: var(--brand-400); transform: translateY(-3px); }

.dealer-section {
    padding-block: 35px 100px;
    background: var(--white);
}

.dealer-band {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 50px 55px;
    border-radius: 18px;
    color: var(--white);
    background: var(--gradient);
}

.dealer-band::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -190px;
    right: -50px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255, 255, 255, .04), 0 0 0 130px rgba(255, 255, 255, .03);
}

.dealer-band .eyebrow { color: #d8ffff; }
.dealer-band h2 { margin: 8px 0 7px; font-size: 35px; letter-spacing: -1.4px; }
.dealer-band p { max-width: 680px; margin: 0; color: #dcebf3; }

.solutions-hero-grid,
.articles-hero-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: center;
    gap: 90px;
    padding-block: 90px;
}

.solutions-hero-grid > div:first-child > p,
.articles-hero-grid > div:first-child > p { color: #b5c5d1; }

.solution-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.solution-index span {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    color: #b9c9d4;
    background: rgba(255, 255, 255, .035);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.solutions-catalogue { background: var(--surface); }
.solutions-catalogue .container { display: grid; gap: 13px; }

.catalogue-card {
    display: grid;
    grid-template-columns: 65px 1fr 90px;
    align-items: center;
    gap: 24px;
    min-height: 190px;
    padding: 30px 34px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.catalogue-card:hover {
    border-color: rgba(57, 121, 184, .35);
    transform: translateX(5px);
    box-shadow: 0 18px 45px rgba(12, 34, 52, .08);
}

.catalogue-card.featured { min-height: 240px; background: linear-gradient(120deg, #fff, #f2f8fb); }
.catalogue-no { color: var(--brand-500); font-family: Consolas, monospace; font-size: 12px; }
.catalogue-card > div:nth-child(2) > span { color: #81929f; font-size: 8px; font-weight: 850; letter-spacing: 1.5px; }
.catalogue-card h2 { margin: 8px 0 11px; color: var(--brand-900); font-size: 27px; letter-spacing: -1px; }
.catalogue-card p { max-width: 800px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.catalogue-card a { display: inline-block; margin-top: 17px; color: var(--brand-700); font-size: 12px; font-weight: 800; }
.catalogue-card a i { margin-left: 7px; font-style: normal; }
.catalogue-card > b { color: rgba(41, 84, 153, .12); font-size: 31px; text-align: right; }

.product-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(115deg, #f4f8fa, #fff 60%, #eaf4f8);
}

.product-hero .hero-aurora { top: -190px; right: -120px; }

.product-hero-grid {
    min-height: 660px;
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    align-items: center;
    gap: 75px;
    padding-block: 85px;
}

.product-hero h1 {
    margin: 23px 0 25px;
    color: var(--brand-900);
    font-size: clamp(48px, 5vw, 72px);
    line-height: .99;
    letter-spacing: -3.6px;
}

.product-hero h1 em {
    color: transparent;
    background: var(--gradient-bright);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.product-hero-grid > div:first-child > p { max-width: 610px; margin: 0; color: #506779; font-size: 17px; line-height: 1.72; }

.product-visual {
    position: relative;
    padding: 45px 15px;
    perspective: 1000px;
}

.product-window {
    --tilt-x: 1.5deg;
    --tilt-y: -4deg;
    --glow-x: 50%;
    --glow-y: 35%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191, 210, 220, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 32px 85px rgba(12, 34, 52, .18);
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform .18s ease-out, box-shadow .3s ease;
    animation: mockup-reveal .9s cubic-bezier(.22, 1, .36, 1) both;
}

.app-mockup {
    isolation: isolate;
}

.product-window::after {
    content: "";
    position: absolute;
    z-index: 30;
    inset: 0;
    opacity: .35;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, .7), transparent 26%);
    pointer-events: none;
    transition: opacity .25s ease;
}

.product-window:hover {
    box-shadow: 0 38px 95px rgba(12, 34, 52, .22);
}

.mockup-topbar {
    position: relative;
    z-index: 2;
    height: 43px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-inline: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 250, 251, .96);
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c2d2dc; }
.mockup-dots i:first-child { background: var(--aqua); box-shadow: 0 0 0 4px rgba(82, 214, 208, .1); }
.mockup-topbar > span { margin-left: 9px; color: #7a8f9d; font-size: 7px; font-weight: 900; letter-spacing: 1.3px; }
.mockup-topbar > b { display: flex; align-items: center; gap: 5px; margin-left: auto; color: #4f7389; font-size: 7px; letter-spacing: .8px; }
.mockup-topbar > b i { width: 6px; height: 6px; border-radius: 50%; background: #25c6a5; box-shadow: 0 0 0 4px rgba(37, 198, 165, .1); animation: mockup-pulse 2s ease-in-out infinite; }

.mockup-shell {
    position: relative;
    z-index: 2;
    min-height: 405px;
    display: grid;
    grid-template-columns: 96px 1fr;
}

.mockup-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px 10px;
    color: #8ca2b2;
    background: linear-gradient(180deg, var(--brand-900), #0a1d2d);
}

.mockup-nav-mark {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    margin: 0 0 12px 4px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 9px;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-400), var(--brand-700));
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    font-size: 10px;
    font-weight: 900;
}

.mockup-nav > span {
    min-height: 34px;
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 7px;
}

.mockup-nav > span i { color: #7f96a7; font-style: normal; font-size: 10px; text-align: center; }
.mockup-nav > span b { font-weight: 700; }
.mockup-nav > span.active { color: var(--white); background: rgba(255, 255, 255, .09); }
.mockup-nav > span.active i { color: var(--aqua); }

.mockup-workspace {
    min-width: 0;
    padding: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(82, 214, 208, .055), transparent 32%),
        #f7fafb;
}

.mockup-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mockup-heading > div { min-width: 0; display: flex; flex-direction: column; }
.mockup-heading small { color: #8295a3; font-size: 6px; font-weight: 850; letter-spacing: 1px; }
.mockup-heading strong { margin-top: 3px; overflow: hidden; color: var(--brand-900); font-size: 13px; letter-spacing: -.25px; text-overflow: ellipsis; white-space: nowrap; }
.mockup-sync { flex: 0 0 auto; display: flex; align-items: center; gap: 5px; padding: 6px 8px; border: 1px solid #dbe8ed; border-radius: 100px; color: #527084; background: var(--white); font-size: 6px; font-weight: 800; }
.mockup-sync i { width: 5px; height: 5px; border-radius: 50%; background: #25c6a5; box-shadow: 0 0 0 3px rgba(37, 198, 165, .1); }

.mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.mockup-kpis article {
    min-width: 0;
    padding: 11px;
    border: 1px solid #e0e9ee;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 6px 18px rgba(12, 34, 52, .035);
    animation: mockup-card-in .6s cubic-bezier(.22, 1, .36, 1) both;
}

.mockup-kpis article:nth-child(2) { animation-delay: .08s; }
.mockup-kpis article:nth-child(3) { animation-delay: .16s; }
.mockup-kpis small { display: block; overflow: hidden; color: #8597a4; font-size: 5.5px; font-weight: 850; letter-spacing: .7px; text-overflow: ellipsis; white-space: nowrap; }
.mockup-kpis strong { display: block; margin: 5px 0 2px; color: var(--brand-900); font-size: 17px; line-height: 1; letter-spacing: -.5px; }
.mockup-kpis span { display: block; overflow: hidden; color: #718795; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.mockup-kpis .positive { color: #199578; }

.mockup-main-grid {
    display: grid;
    grid-template-columns: 1.13fr .87fr;
    gap: 9px;
    margin-top: 10px;
}

.mockup-panel {
    min-width: 0;
    min-height: 177px;
    padding: 11px;
    border: 1px solid #e0e9ee;
    border-radius: 10px;
    background: rgba(255, 255, 255, .93);
}

.mockup-panel-head { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.mockup-panel-head > div { min-width: 0; display: flex; flex-direction: column; }
.mockup-panel-head small { color: #8497a4; font-size: 5.5px; font-weight: 850; letter-spacing: .7px; }
.mockup-panel-head b { margin-top: 2px; overflow: hidden; color: var(--brand-900); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.mockup-panel-head > span { flex: 0 0 auto; color: var(--brand-500); font-size: 5.5px; font-weight: 800; }

.mockup-chart {
    height: 124px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 6px;
    padding: 13px 4px 0;
    border-bottom: 1px solid #e3ebef;
}

.mockup-chart > div { flex: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: end; gap: 5px; }
.mockup-chart i { width: min(18px, 75%); height: var(--bar); border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, #b7d9e7, #5a8fb3); transform-origin: bottom; animation: mockup-bar-rise .75s cubic-bezier(.22, 1, .36, 1) both; }
.mockup-chart > div:nth-child(2) i { animation-delay: .06s; }
.mockup-chart > div:nth-child(3) i { animation-delay: .12s; }
.mockup-chart > div:nth-child(4) i { animation-delay: .18s; }
.mockup-chart > div:nth-child(5) i { animation-delay: .24s; }
.mockup-chart > div:nth-child(6) i { animation-delay: .3s; }
.mockup-chart > div:nth-child(7) i { animation-delay: .36s; }
.mockup-chart i.active { background: linear-gradient(180deg, var(--aqua), var(--brand-500)); box-shadow: 0 4px 12px rgba(57, 121, 184, .2); }
.mockup-chart small { color: #8a9ca8; font-size: 5.5px; }

.work-order { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 12px; }
.work-order > span { min-width: 0; display: grid; grid-template-columns: 23px 1fr; column-gap: 6px; align-items: center; }
.work-order > span > i { grid-row: 1 / 3; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 6px; color: var(--brand-700); background: #edf4f7; font-size: 5px; font-style: normal; font-weight: 850; }
.work-order b, .work-order small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.work-order b { color: var(--brand-900); font-size: 6.5px; }
.work-order small { color: #8395a2; font-size: 5px; }
.work-order > em { color: var(--brand-500); font-size: 6px; font-style: normal; font-weight: 850; }
.order-progress { height: 3px; overflow: hidden; margin: 5px 0 0 29px; border-radius: 4px; background: #e8eff2; }
.order-progress i { width: var(--progress); height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--aqua), var(--brand-500)); animation: mockup-progress 1s ease both; }

.mockup-activity {
    min-height: 38px;
    display: grid;
    grid-template-columns: 7px 1fr 18px;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    padding: 7px 10px;
    border: 1px solid #e0e9ee;
    border-radius: 9px;
    background: rgba(255, 255, 255, .93);
    animation: mockup-row-in .75s .4s ease both;
}

.mockup-activity > i { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(82, 214, 208, .11); }
.mockup-activity > span { min-width: 0; display: flex; flex-direction: column; }
.mockup-activity b, .mockup-activity small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-activity b { color: var(--brand-900); font-size: 6.5px; }
.mockup-activity small { margin-top: 2px; color: #8194a1; font-size: 5px; }
.mockup-activity em { color: var(--brand-500); font-size: 10px; font-style: normal; text-align: right; }

.legal-mockup .mockup-nav-mark { background: linear-gradient(145deg, #52d6d0, #386581); }
.legal-kpis article:nth-child(2) { border-color: rgba(82, 214, 208, .36); background: linear-gradient(145deg, #fff, #f1fbfa); }
.legal-main-grid { grid-template-columns: 1.3fr .7fr; }
.matter-panel { padding-bottom: 7px; }
.matter-row { min-height: 34px; display: grid; grid-template-columns: 1.25fr .75fr .62fr; align-items: center; gap: 5px; border-bottom: 1px solid #edf2f4; color: #687f8f; font-size: 5.5px; }
.matter-row:last-child { border-bottom: 0; }
.matter-header { min-height: 24px; color: #91a0aa; font-size: 5px; font-weight: 850; letter-spacing: .5px; }
.matter-row > span:first-child:not(:only-child) { min-width: 0; display: grid; grid-template-columns: 22px 1fr; column-gap: 5px; align-items: center; }
.matter-row > span > i { grid-row: 1 / 3; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 6px; color: var(--brand-700); background: #edf4f7; font-size: 5px; font-style: normal; font-weight: 850; }
.matter-row b, .matter-row small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.matter-row b { color: var(--brand-900); font-size: 5.7px; }
.matter-row small { color: #8a9aa5; font-size: 4.8px; }
.matter-row em { justify-self: start; padding: 4px 5px; border-radius: 100px; color: #2b6c8d; background: #eaf4f8; font-size: 4.8px; font-style: normal; white-space: nowrap; }
.matter-row em.review { color: #8a6b2f; background: #faf4e4; }
.matter-row em.complete { color: #237863; background: #e7f7f2; }

.trust-panel { display: flex; flex-direction: column; }
.trust-ring { width: 83px; height: 83px; display: grid; place-items: center; margin: 16px auto 10px; border-radius: 50%; background: conic-gradient(var(--aqua) 0 94%, #e5eef1 94% 100%); box-shadow: inset 0 0 0 1px rgba(57, 121, 184, .08); animation: trust-ring-in 1s ease both; }
.trust-ring::before { content: ""; grid-area: 1 / 1; width: 65px; height: 65px; border-radius: 50%; background: var(--white); box-shadow: 0 5px 18px rgba(12, 34, 52, .08); }
.trust-ring > div { position: relative; grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center; }
.trust-ring strong { color: var(--brand-900); font-size: 13px; }
.trust-ring small { color: #8497a4; font-size: 5px; font-weight: 850; letter-spacing: .6px; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: auto; }
.trust-stats span { padding: 6px; border-radius: 6px; background: #f2f7f9; }
.trust-stats small { display: block; color: #8a9ba6; font-size: 4.8px; }
.trust-stats b { display: block; margin-top: 2px; color: var(--brand-900); font-size: 6px; }

.product-float-card {
    position: absolute;
    z-index: 5;
    min-width: 150px;
    padding: 15px 17px;
    border: 1px solid rgba(204, 220, 229, .85);
    border-radius: 11px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 15px 38px rgba(12, 34, 52, .13);
    animation: node-float 4.4s ease-in-out infinite;
}

.product-float-card small { display: block; color: var(--brand-500); font-size: 7px; font-weight: 900; letter-spacing: 1.3px; }
.product-float-card b { display: block; margin-top: 4px; color: var(--brand-900); font-size: 12px; }
.card-top { top: 12px; right: -12px; }
.card-bottom { bottom: 9px; left: -18px; animation-delay: -2.2s; }

.product-outcomes { background: var(--surface); }

.outcome-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.outcome-pill {
    min-height: 115px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.outcome-pill span { color: var(--brand-500); font-family: Consolas, monospace; font-size: 10px; }
.outcome-pill b { color: var(--brand-900); font-size: 13px; line-height: 1.45; }

.leadership-section { padding-top: 20px; }

.leadership-card {
    display: grid;
    grid-template-columns: 130px 1fr .8fr;
    align-items: center;
    gap: 45px;
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(120deg, #fff, #f3f8fa);
}

.leader-monogram {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient-bright);
    box-shadow: 0 18px 42px rgba(41, 84, 153, .22);
    font-size: 30px;
    font-weight: 850;
}

.leadership-card h2 { margin: 8px 0 0; color: var(--brand-900); font-size: 32px; letter-spacing: -1.2px; }
.leadership-card b { color: var(--brand-500); font-size: 12px; }
.leadership-card p { max-width: 580px; margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.leadership-card blockquote { margin: 0; padding: 25px; border-left: 2px solid var(--aqua); color: var(--brand-800); font-size: 18px; font-weight: 650; line-height: 1.55; }

.article-signal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    transform: rotate(-3deg);
}

.article-signal span {
    min-height: 105px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: var(--aqua);
    background: rgba(255, 255, 255, .04);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;
}

.articles-section { background: var(--surface); }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.article-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.article-card:hover { border-color: rgba(57, 121, 184, .35); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(12, 34, 52, .09); }
.article-featured { grid-column: span 2; min-height: 365px; background: linear-gradient(120deg, var(--brand-900), #173b58); }
.article-card > span { color: var(--brand-500); font-size: 8px; font-weight: 850; letter-spacing: 1.5px; }
.article-card h2, .article-card h3 { max-width: 700px; margin: 17px 0 16px; color: var(--brand-900); line-height: 1.15; }
.article-card h2 { font-size: 39px; letter-spacing: -1.7px; }
.article-card h3 { font-size: 23px; letter-spacing: -.7px; }
.article-card p { max-width: 750px; margin: 0; color: var(--muted); line-height: 1.72; }
.article-card a { margin-top: auto; padding-top: 28px; color: var(--brand-700); font-size: 12px; font-weight: 800; }
.article-card a i { margin-left: 8px; font-style: normal; }
.article-featured > span, .article-featured a { color: var(--aqua); }
.article-featured h2 { color: var(--white); }
.article-featured p { color: #a9bdca; }

.company-contact .contact-grid { min-height: 780px; }
.corporate-contact-strip a { font-size: 15px; }
.location-section { background: var(--surface); }

.location-card {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 80px;
    overflow: hidden;
    padding: 55px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.location-card h2 { margin: 12px 0 14px; color: var(--brand-900); font-size: 38px; letter-spacing: -1.5px; }
.location-card p { margin: 0; color: var(--muted); line-height: 1.75; }

.location-lines {
    position: relative;
    min-height: 180px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    color: var(--white);
    background: var(--gradient);
}

.location-lines i {
    position: absolute;
    width: 280px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.location-lines i:nth-child(2) { transform: rotate(25deg) scale(.78); }
.location-lines i:nth-child(3) { transform: rotate(78deg) scale(.55); }
.location-lines span { position: relative; font-family: Consolas, monospace; font-size: 11px; line-height: 1.6; text-align: center; }

@keyframes ecosystem-spin {
    to { transform: rotate(360deg); }
}

@keyframes core-breathe {
    0%, 100% { transform: scale(.98); box-shadow: 0 18px 60px rgba(12, 34, 52, .18), 0 0 0 18px rgba(74, 166, 216, .07); }
    50% { transform: scale(1.04); box-shadow: 0 21px 66px rgba(12, 34, 52, .2), 0 0 0 27px rgba(74, 166, 216, .045); }
}

@keyframes node-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}

@keyframes mockup-reveal {
    from { opacity: 0; clip-path: inset(0 100% 0 0 round 18px); }
    to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); }
}

@keyframes mockup-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .48; transform: scale(.74); }
}

@keyframes mockup-card-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mockup-bar-rise {
    from { opacity: .25; transform: scaleY(0); }
    to { opacity: 1; transform: scaleY(1); }
}

@keyframes mockup-progress {
    from { width: 0; }
}

@keyframes mockup-row-in {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes trust-ring-in {
    from { opacity: 0; transform: rotate(-70deg) scale(.72); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes window-rise {
    from { opacity: 0; transform: translateY(28px) rotateY(-4deg) rotateX(1.5deg); }
    to { opacity: 1; transform: translateY(0) rotateY(-4deg) rotateX(1.5deg); }
}

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .main-nav > a { font-size: 12px; }
    .hero-layout { gap: 45px; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-card { min-height: 300px; }
    .company-hero-grid { gap: 35px; }
    .ecosystem { width: min(460px, 45vw); }
    .compact-product-grid { grid-template-columns: 1fr 1fr; }
    .story-preview-grid { gap: 55px; }
    .story-years { grid-template-columns: 1fr; gap: 10px; }
    .story-years i { width: 1px; height: 18px; margin-inline: auto; }
    .story-years div { min-height: 105px; }
    .product-hero-grid { gap: 42px; }
}

@media (max-width: 920px) {
    .site-header,
    .site-header.is-scrolled {
        height: 72px;
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .menu-toggle {
        z-index: 125;
        display: grid;
        border-color: rgba(196, 213, 223, .88);
        border-radius: 13px;
        box-shadow: 0 8px 24px rgba(12, 34, 52, .07);
    }

    .menu-toggle.is-open {
        color: var(--brand-700);
        border-color: rgba(57, 121, 184, .25);
        background: #f5f9fc;
    }

    .menu-backdrop,
    .menu-backdrop.is-open {
        display: none !important;
    }

    .main-nav {
        position: fixed;
        z-index: 120;
        inset: 72px 0 0;
        width: 100%;
        height: calc(100dvh - 72px);
        max-height: calc(100dvh - 72px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background:
            radial-gradient(circle at 100% 0%, rgba(82, 214, 208, .11), transparent 34%),
            linear-gradient(180deg, #fff 0%, #f7fafc 100%);
        box-shadow: inset 0 12px 30px rgba(12, 34, 52, .035);
        backdrop-filter: none;
        transform: translateY(-18px);
        transform-origin: top;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, visibility .32s;
    }

    .main-nav::before {
        content: "EXPLORE TCORP";
        display: block;
        padding: 2px 5px 10px;
        color: var(--brand-500);
        font-size: 9px;
        font-weight: 850;
        letter-spacing: 1.7px;
    }

    .main-nav.is-open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav > a {
        min-height: 61px;
        display: grid;
        grid-template-columns: 34px 1fr 24px;
        align-items: center;
        gap: 11px;
        padding: 0 14px;
        border: 1px solid transparent;
        border-radius: 13px;
        background: rgba(244, 248, 250, .72);
        color: var(--brand-800);
        font-size: 15px;
        font-weight: 720;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .main-nav > a:hover,
    .main-nav > a.active:not(.nav-cta) {
        color: var(--brand-700);
        border-color: rgba(57, 121, 184, .17);
        background: linear-gradient(120deg, rgba(74, 166, 216, .11), rgba(82, 214, 208, .07));
        transform: translateX(3px);
    }

    .main-nav > a::after { display: none; }

    .nav-index {
        display: block;
        color: #8395a3;
        font-family: Consolas, monospace;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .7px;
    }

    .nav-label { line-height: 1.25; }

    .nav-arrow {
        display: block;
        justify-self: end;
        color: var(--brand-400);
        font-style: normal;
        transition: transform .2s ease;
    }

    .main-nav > a:hover .nav-arrow,
    .main-nav > a.active .nav-arrow {
        transform: translateX(3px);
    }

    .nav-cta {
        min-height: 58px !important;
        grid-template-columns: 1fr auto !important;
        justify-content: center;
        margin-top: 8px;
        padding-inline: 19px !important;
        border: 0 !important;
        border-radius: 13px !important;
        background: var(--gradient-bright) !important;
    }

    .nav-cta:hover { transform: translateY(-2px) !important; }
    .nav-cta-arrow { display: block; font-style: normal; }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-block: 65px 90px;
    }

    .hero-copy { max-width: 730px; }
    .hero-dashboard { width: min(680px, 100%); transform: none; }
    .section-intro { grid-template-columns: 1fr; gap: 18px; }
    .outcomes-grid { grid-template-columns: 1fr; gap: 55px; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .industry-card:nth-child(2) { border-right: 0; }
    .industry-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cta-band { align-items: flex-start; flex-direction: column; }
    .inner-hero-grid { grid-template-columns: 1fr; gap: 15px; }
    .inner-signal { width: 300px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .process-flow { grid-template-columns: 1fr; }
    .process-flow > div { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--line); }
    .process-flow i { top: auto; right: auto; bottom: -11px; left: calc(50% - 11px); transform: rotate(90deg); }
    .about-hero-grid { grid-template-columns: 1fr; padding-block: 80px; }
    .about-logo-stage { padding-block: 15px 55px; }
    .about-logo-stage img { width: 230px; }
    .about-ring { width: 300px; height: 300px; }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .timeline > div:nth-child(2) { border-right: 0; }
    .timeline > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .contact-grid { grid-template-columns: 1fr; gap: 58px; }
    .contact-copy { max-width: 700px; }
    .contact-card { max-width: 700px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-links:last-child { grid-column: 2 / 4; }
    .company-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding-block: 72px 120px; }
    .ecosystem { width: min(510px, 83vw); }
    .company-stats { margin-top: -72px; }
    .flagship-grid { grid-template-columns: 1fr; }
    .story-preview-grid { grid-template-columns: 1fr; }
    .solutions-hero-grid,
    .articles-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding-block: 80px; }
    .solution-index { max-width: 650px; }
    .product-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding-block: 75px; }
    .product-visual { width: min(720px, 100%); }
    .outcome-pill-grid { grid-template-columns: 1fr 1fr; }
    .leadership-card { grid-template-columns: 120px 1fr; }
    .leadership-card blockquote { grid-column: 1 / 3; }
    .location-card { grid-template-columns: 1fr; gap: 35px; }
    .dealer-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
    html { scroll-padding-top: 72px; }
    .container { width: min(100% - 28px, 1180px); }
    .brand img { width: 42px; height: 42px; }
    .brand b { font-size: 18px; }
    .brand small { font-size: 6px; letter-spacing: 1.15px; }

    .hero-layout { min-height: auto; padding-block: 55px 70px; }
    .hero-copy h1,
    .inner-hero h1,
    .contact-copy h1 {
        margin-block: 21px 22px;
        font-size: clamp(45px, 13.2vw, 62px);
        letter-spacing: -2.9px;
    }

    .hero-copy > p,
    .inner-hero-grid > div > p,
    .contact-copy > p { font-size: 16px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .trust-row { flex-direction: column; gap: 9px; }
    .hero-dashboard { padding: 16px; border-radius: 16px; }
    .hero-dashboard::before { inset: 12px -10px -12px 10px; }
    .kpi-row strong { font-size: 22px; }
    .mini-flow { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; border-radius: 13px 13px 0 0; }
    .hero-stats > div { min-height: 92px; padding: 18px; }
    .hero-stats > div:nth-child(2) { border-right: 0; }
    .hero-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .hero-stats strong { font-size: 22px; }

    .section { padding-block: 78px; }
    .section-title h2,
    .section-intro h2,
    .outcome-copy h2,
    .story-grid h2,
    .cta-band h2 {
        font-size: 37px;
        letter-spacing: -1.8px;
    }

    .solution-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 285px; }
    .module-marquee { margin-bottom: 45px; }
    .industry-grid { grid-template-columns: 1fr; }
    .industry-card,
    .industry-card:nth-child(2) { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
    .industry-card:last-child { border-bottom: 0; }
    .cta-section { padding-block: 72px; }
    .cta-band { gap: 30px; padding: 38px 25px; border-radius: 15px; }
    .cta-band .button { width: 100%; }
    .inner-hero-grid { min-height: auto; padding-block: 72px; }
    .inner-signal { width: 240px; margin-top: 25px; }
    .signal-core { width: 88px; height: 88px; font-size: 13px; }
    .proof-strip .container { grid-template-columns: 1fr; gap: 13px; padding-block: 32px; }
    .proof-strip p { font-size: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 225px; padding: 29px; }
    .about-logo-stage img { width: 185px; }
    .about-ring { width: 245px; height: 245px; }
    .timeline { grid-template-columns: 1fr; }
    .timeline > div,
    .timeline > div:nth-child(2) { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
    .timeline > div:last-child { border-bottom: 0; }
    .contact-grid { min-height: auto; padding-block: 70px; }
    .contact-card { padding: 27px 22px; }
    .field-row { grid-template-columns: 1fr; }
    .contact-strip .container { grid-template-columns: 1fr; }
    .contact-strip .container > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
    .contact-strip .container > div:last-child { border-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-links:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; padding: 8px; justify-content: center; }
    .floating-whatsapp b { display: none; }
    .floating-whatsapp > span { width: 36px; height: 36px; }
    .company-hero-grid { padding-block: 55px 118px; }
    .ecosystem { width: min(420px, 94vw); margin-top: 15px; }
    .ecosystem-node { min-width: 84px; padding: 9px 11px; }
    .ecosystem-node span { font-size: 10px; }
    .ecosystem-node b { font-size: 7px; }
    .company-stats { grid-template-columns: 1fr 1fr; border-radius: 12px 12px 0 0; }
    .company-stats > div { min-height: 92px; padding: 17px; }
    .company-stats > div:nth-child(2) { border-right: 0; }
    .company-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .company-stats strong { font-size: 21px; }
    .company-stats span { font-size: 9px; }
    .flagship-card { min-height: 450px; padding: 29px 25px; }
    .flagship-card h3 { font-size: 27px; }
    .compact-product-grid { grid-template-columns: 1fr; }
    .compact-product { min-height: 190px; }
    .story-years div { min-height: 92px; }
    .country-cloud { gap: 8px; }
    .country-cloud span { padding: 11px 15px; font-size: 10px; }
    .dealer-section { padding-bottom: 70px; }
    .dealer-band { padding: 37px 25px; }
    .dealer-band h2 { font-size: 31px; }
    .solution-index { grid-template-columns: 1fr; }
    .catalogue-card { grid-template-columns: 38px 1fr; gap: 15px; padding: 25px 21px; }
    .catalogue-card > b { display: none; }
    .catalogue-card h2 { font-size: 23px; }
    .product-hero h1 { font-size: clamp(44px, 12.5vw, 60px); letter-spacing: -2.7px; }
    .product-visual { padding: 35px 0; }
    .product-window { animation: none; transform: none; }
    .mockup-shell { min-height: 380px; grid-template-columns: 54px 1fr; }
    .mockup-nav { gap: 6px; padding: 14px 7px; }
    .mockup-nav-mark { margin-inline: auto; }
    .mockup-nav > span { grid-template-columns: 1fr; padding: 0; text-align: center; }
    .mockup-nav > span b { display: none; }
    .mockup-workspace { padding: 14px; }
    .mockup-heading strong { font-size: 11px; }
    .mockup-kpis { gap: 6px; margin-top: 11px; }
    .mockup-kpis article { padding: 9px 8px; }
    .mockup-kpis strong { font-size: 14px; }
    .mockup-main-grid,
    .legal-main-grid { grid-template-columns: 1fr; }
    .orders-panel,
    .trust-panel { display: none; }
    .mockup-panel { min-height: 170px; }
    .mockup-activity { margin-top: 7px; }
    .window-content { min-height: 260px; grid-template-columns: 55px 1fr; }
    .window-sidebar { padding: 21px 12px; }
    .window-sidebar i { width: 27px; }
    .window-main { padding: 18px; }
    .window-kpis span { height: 44px; }
    .window-chart { height: 98px; }
    .product-float-card { min-width: 120px; padding: 11px 13px; }
    .card-top { right: -4px; }
    .card-bottom { left: -4px; }
    .outcome-pill-grid { grid-template-columns: 1fr; }
    .outcome-pill { min-height: 95px; }
    .leadership-card { grid-template-columns: 1fr; gap: 25px; padding: 29px 24px; }
    .leader-monogram { width: 95px; height: 95px; }
    .leadership-card blockquote { grid-column: auto; }
    .articles-grid { grid-template-columns: 1fr; }
    .article-featured { grid-column: auto; }
    .article-card { min-height: 285px; padding: 26px; }
    .article-card h2 { font-size: 31px; }
    .article-signal span { min-height: 80px; }
    .location-card { padding: 29px 24px; }
    .location-card h2 { font-size: 32px; }
    .location-lines { min-height: 145px; }
}

@media (max-width: 390px) {
    .brand { gap: 9px; }
    .brand b { font-size: 16px; }
    .brand small { font-size: 5.5px; letter-spacing: .85px; }
    .hero-copy h1,
    .inner-hero h1,
    .contact-copy h1 { font-size: 43px; }
    .dashboard-head b { font-size: 15px; }
    .kpi-row { grid-template-columns: 1fr; }
    .production-chart { display: none; }
    .hero-stats span { font-size: 10px; }
    .ecosystem { width: 100%; }
    .ecosystem-node { min-width: 76px; }
    .node-erp { left: 37%; }
    .node-wms { left: 35%; }
    .product-float-card { display: none; }
    .mockup-topbar > span { max-width: 145px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .mockup-shell { grid-template-columns: 46px 1fr; }
    .mockup-nav { padding-inline: 5px; }
    .mockup-nav-mark { width: 29px; height: 29px; }
    .mockup-workspace { padding: 11px; }
    .mockup-heading > div small { display: none; }
    .mockup-sync { padding: 5px 7px; }
    .mockup-kpis { grid-template-columns: 1fr 1fr; }
    .mockup-kpis article:nth-child(3) { display: none; }
    .mockup-panel { padding: 9px; }
    .matter-row { grid-template-columns: 1.2fr .72fr; }
    .matter-row > :nth-child(3) { display: none; }
    .window-main { padding: 13px; }
}

@media (hover: none) {
    .solution-card:hover,
    .button:hover,
    .nav-cta:hover,
    .floating-whatsapp:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
