:root {
    /* Brand palette sampled from the Degan logo. */
    --ink: #132f39;
    --ink-soft: #526b73;
    --navy-950: #071a22;
    --navy-900: #0b2732;
    --navy-850: #103744;
    --navy-800: #164957;
    --teal-700: #185c73;
    --teal-600: #1e647d;
    --teal-500: #287e8f;
    --cyan-400: #318c9e;
    --cyan-300: #72c1cc;
    --mint-100: #e2eff2;
    --mint-50: #f0f6f7;
    --paper: #f7fafb;
    --white: #fff;
    --line: #d5e3e7;
    --line-dark: rgba(255, 255, 255, .14);
    --shadow: 0 30px 80px rgba(24, 92, 115, .14);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1280px;
    --header-height: 88px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
    -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
    margin-bottom: .55em;
    font-weight: 640;
    line-height: 1.06;
    letter-spacing: -.045em;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.75rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
}

p {
    margin-bottom: 1.2em;
}

figure {
    margin: 0;
}

::selection {
    color: var(--navy-950);
    background: var(--cyan-300);
}

:focus-visible {
    outline: 3px solid var(--cyan-400);
    outline-offset: 4px;
}

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

.section {
    position: relative;
    padding-block: clamp(88px, 11vw, 150px);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 18px;
    color: var(--navy-950);
    background: var(--cyan-300);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--teal-700);
    font-size: .78rem;
    font-weight: 760;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 2px;
    background: var(--cyan-400);
}

.eyebrow-light {
    color: var(--cyan-300);
}

.lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.5;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 720;
    line-height: 1.2;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.button span {
    font-size: 1.2em;
    transition: transform .25s var(--ease);
}

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

.button:hover span {
    transform: translate(2px, 2px);
}

.button-primary {
    color: var(--white);
    background: var(--teal-500);
}

.button-primary:hover {
    background: var(--teal-600);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .38);
    background: rgba(5, 24, 30, .26);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .75);
    background: rgba(5, 24, 30, .52);
}

.button-dark {
    color: var(--white);
    background: var(--navy-900);
}

.button-dark:hover {
    background: var(--teal-700);
}

.button-outline {
    color: var(--navy-900);
    border-color: rgba(7, 31, 40, .26);
    background: transparent;
}

.button-outline:hover {
    border-color: var(--navy-900);
    background: rgba(255, 255, 255, .42);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-weight: 720;
    text-decoration: none;
}

.text-link-light {
    color: var(--cyan-300);
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    transition: height .3s var(--ease), background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    height: 78px;
    background: rgba(4, 20, 25, .93);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.site-header.is-scrolled:not(.is-open) {
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    width: 116px;
    align-items: center;
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.4vw, 40px);
}

.primary-nav a {
    position: relative;
    padding-block: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.primary-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: var(--cyan-400);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--white);
}

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

.primary-nav .nav-cta {
    padding: 11px 20px;
    color: var(--white);
    background: var(--teal-500);
    border-radius: 100px;
}

.primary-nav .nav-cta:hover {
    color: var(--white);
    background: var(--teal-600);
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 12px;
    color: var(--white);
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle-label {
    font-size: .75rem;
    font-weight: 720;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.menu-toggle-lines {
    display: grid;
    width: 27px;
    height: 18px;
    align-content: space-between;
}

.menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .25s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    min-height: max(760px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero-media,
.hero-shade,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../images/hero-automation.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(3, 15, 19, .98) 0%, rgba(3, 17, 22, .92) 34%, rgba(4, 24, 30, .62) 62%, rgba(3, 15, 19, .16) 100%),
        linear-gradient(0deg, rgba(3, 15, 19, .9) 0%, transparent 38%, rgba(3, 15, 19, .22) 100%);
}

.hero-grid {
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-position: center;
    background-size: 86px 86px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: max(760px, 100svh);
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: end;
    gap: clamp(56px, 8vw, 120px);
    padding-top: calc(var(--header-height) + 82px);
    padding-bottom: 110px;
}

.hero-copy {
    max-width: 820px;
}

.hero h1 {
    max-width: 860px;
    margin-bottom: 30px;
    font-size: clamp(3rem, 6.2vw, 6rem);
    font-weight: 590;
    line-height: .98;
    letter-spacing: -.058em;
}

.hero h1 em {
    color: var(--cyan-300);
    font-style: normal;
    font-weight: 590;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
}

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

.hero-scope {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    background: rgba(3, 18, 23, .54);
    backdrop-filter: blur(18px);
}

.scope-kicker {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    font-weight: 720;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.scope-flow {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.scope-flow li {
    position: relative;
    display: flex;
    min-height: 49px;
    align-items: center;
    gap: 17px;
    padding-left: 5px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: .93rem;
    font-weight: 650;
}

.scope-flow li:last-child {
    color: var(--cyan-300);
}

.scope-flow span {
    color: rgba(255, 255, 255, .42);
    font-family: Consolas, monospace;
    font-size: .72rem;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll span {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
}

.hero-scroll span::after {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

/* Value strip */

.value-strip {
    color: var(--white);
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-grid > div {
    display: flex;
    min-height: 132px;
    align-items: center;
    gap: 22px;
    padding: 26px clamp(18px, 2.5vw, 36px);
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.value-grid > div:first-child {
    padding-left: 0;
}

.value-grid > div:last-child {
    border-right: 0;
}

.value-grid span {
    color: var(--cyan-400);
    font-family: Consolas, monospace;
    font-size: .72rem;
}

.value-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .95rem;
    font-weight: 620;
    line-height: 1.45;
}

/* System intro */

.system-intro {
    overflow: hidden;
    background: var(--white);
}

.system-intro::before {
    position: absolute;
    top: -280px;
    right: -250px;
    width: 600px;
    height: 600px;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
}

.intro-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    gap: clamp(60px, 10vw, 145px);
    align-items: end;
}

.section-heading h2 {
    max-width: 840px;
    margin-bottom: 0;
}

.intro-copy {
    padding-bottom: 7px;
    color: var(--ink-soft);
}

.intro-copy .lead {
    color: var(--ink);
}

.process-rail {
    position: relative;
    display: grid;
    margin-top: clamp(60px, 8vw, 110px);
    overflow: hidden;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
}

.process-node {
    position: relative;
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.process-node:last-child {
    border-right: 0;
}

.process-node span {
    position: absolute;
    top: 26px;
    left: 30px;
    color: var(--teal-600);
    font-family: Consolas, monospace;
    font-size: .72rem;
}

.process-node strong {
    margin-bottom: 4px;
    font-size: .98rem;
}

.process-node small {
    color: var(--ink-soft);
    font-size: .78rem;
}

.process-node::after {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: -7px;
    width: 13px;
    height: 13px;
    background: var(--white);
    border: 2px solid var(--teal-500);
    border-radius: 50%;
    content: "";
}

.process-node:last-child::after {
    display: none;
}

.process-node-accent {
    color: var(--white);
    background: var(--teal-700);
}

.process-node-accent span,
.process-node-accent small {
    color: var(--cyan-300);
}

/* Section headings */

.section-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 490px);
    align-items: end;
    gap: 60px;
    margin-bottom: clamp(50px, 7vw, 86px);
}

.section-top h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.section-top > p {
    margin-bottom: 7px;
    color: var(--ink-soft);
}

/* Solutions */

.solutions {
    background: var(--mint-50);
}

.solution-stack {
    display: grid;
    gap: 28px;
}

.solution-panel {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(8, 45, 53, .04);
}

.solution-copy {
    align-self: center;
    padding: clamp(38px, 5vw, 70px);
}

.solution-number {
    margin-bottom: 20px;
    color: var(--teal-600);
    font-family: Consolas, monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.solution-copy h3 {
    max-width: 610px;
}

.solution-copy > p:not(.solution-number),
.solution-card > p:not(.solution-number) {
    color: var(--ink-soft);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 34px;
}

.feature-tags span {
    padding: 7px 12px;
    color: var(--teal-700);
    background: var(--mint-100);
    border: 1px solid rgba(30, 100, 125, .08);
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 680;
    line-height: 1.35;
}

.benefit-block {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.benefit-block > p {
    margin-bottom: 13px;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.5;
}

.check-list li::before {
    position: absolute;
    top: .55em;
    left: 2px;
    width: 10px;
    height: 6px;
    border-bottom: 2px solid var(--teal-500);
    border-left: 2px solid var(--teal-500);
    content: "";
    transform: rotate(-45deg);
}

.check-list.compact {
    margin-top: 28px;
}

/* OEE dashboard */

.dashboard {
    min-width: 0;
    align-self: stretch;
    padding: clamp(26px, 3vw, 42px);
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(49, 140, 158, .14), transparent 36%),
        var(--navy-900);
}

.dashboard > figcaption {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .56);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dashboard > figcaption span {
    width: 7px;
    height: 7px;
    background: var(--cyan-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(49, 140, 158, .1);
}

.dashboard-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(4, 20, 25, .64);
    box-shadow: 0 35px 60px rgba(0, 0, 0, .26);
}

.dashboard-topbar {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    font-weight: 650;
}

.dashboard-brand,
.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-brand i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-400));
    clip-path: polygon(0 20%, 85% 0, 100% 76%, 20% 100%);
}

.dashboard-status span {
    width: 7px;
    height: 7px;
    background: #63d8a5;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 216, 165, .1);
}

.metric-grid {
    display: grid;
    grid-template-columns: 1.28fr repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.metric {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    padding: 17px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.metric:last-child {
    border-right: 0;
}

.metric small {
    overflow: hidden;
    color: rgba(255, 255, 255, .48);
    font-size: .67rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.metric strong {
    margin-block: 4px;
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    font-weight: 580;
    letter-spacing: -.05em;
}

.metric-main strong {
    color: var(--cyan-300);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.metric sup {
    margin-left: 2px;
    font-size: .44em;
    font-weight: 650;
}

.metric em {
    color: rgba(255, 255, 255, .36);
    font-size: .62rem;
    font-style: normal;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
}

.chart-card,
.loss-card {
    min-width: 0;
    padding: 19px;
}

.chart-card {
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: .69rem;
}

.card-title small {
    color: rgba(255, 255, 255, .34);
}

.bar-chart {
    position: relative;
    display: flex;
    height: 116px;
    align-items: end;
    justify-content: space-around;
    gap: 9px;
    padding: 17px 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.bar-chart::before,
.bar-chart::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .07);
    content: "";
}

.bar-chart::before {
    top: 42px;
}

.bar-chart::after {
    top: 78px;
}

.bar-chart .bar {
    position: relative;
    z-index: 1;
    width: 13%;
    max-width: 24px;
    background: rgba(40, 126, 143, .48);
    border-radius: 4px 4px 0 0;
}

.bar-chart .bar-1 { height: 58%; }
.bar-chart .bar-2 { height: 74%; }
.bar-chart .bar-3 { height: 64%; }
.bar-chart .bar-4 { height: 82%; }
.bar-chart .bar-5 { height: 70%; }
.bar-chart .bar-6 { height: 78%; }

.bar-chart .active {
    background: var(--cyan-400);
}

.bar-chart b {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 0;
    left: 0;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, .3);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding-top: 7px;
    color: rgba(255, 255, 255, .3);
    font-size: .54rem;
}

.loss-card ol {
    display: grid;
    gap: 14px;
    margin: 19px 0 0;
    padding: 0;
    list-style: none;
}

.loss-card li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: .62rem;
    line-height: 1.25;
}

.loss-card li b {
    color: var(--white);
}

.loss-card li::after {
    grid-column: 1 / -1;
    width: var(--loss-width, 75%);
    height: 4px;
    margin-top: -7px;
    background: linear-gradient(90deg, var(--teal-500), rgba(40, 126, 143, .12));
    border-radius: 5px;
    content: "";
}

.loss-card li:nth-child(2)::after { width: 58%; }
.loss-card li:nth-child(3)::after { width: 41%; }

.visual-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: .68rem;
    line-height: 1.45;
}

/* Traceability */

.solution-panel-srp {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
}

.trace-visual {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 640px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 66px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(49, 140, 158, .12), transparent 50%),
        var(--navy-900);
}

.trace-visual::before,
.trace-visual::after {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .07);
    content: "";
    transform: rotate(45deg);
}

.trace-visual::before {
    top: -130px;
    right: -30px;
}

.trace-visual::after {
    bottom: -160px;
    left: -40px;
}

.trace-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
    color: var(--white);
}

.trace-head span {
    color: var(--cyan-300);
    font-family: Consolas, monospace;
    font-size: .7rem;
    letter-spacing: .08em;
}

.trace-head b {
    font-size: .88rem;
    font-weight: 560;
}

.trace-line {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trace-line::before {
    position: absolute;
    top: 22px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(49, 140, 158, .28), var(--cyan-400), rgba(49, 140, 158, .28));
    content: "";
}

.trace-line > div {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.trace-line i {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    place-items: center;
    color: var(--navy-950);
    background: var(--cyan-400);
    border: 7px solid var(--navy-900);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(49, 140, 158, .32);
    font-family: Consolas, monospace;
    font-size: .58rem;
    font-style: normal;
}

.trace-line strong {
    font-size: .75rem;
    font-weight: 650;
}

.trace-line small {
    color: rgba(255, 255, 255, .36);
    font-size: .62rem;
}

.trace-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 80px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .48);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-family: Consolas, monospace;
    font-size: .62rem;
}

.trace-footer span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trace-footer i {
    width: 7px;
    height: 7px;
    background: #63d8a5;
    border-radius: 50%;
}

/* Machine */

.machine-figure {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 650px;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(30, 100, 125, .09), transparent 52%),
        #eef4f6;
}

.machine-figure::after {
    position: absolute;
    right: -120px;
    bottom: -230px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(30, 100, 125, .14);
    border-radius: 50%;
    content: "";
}

.machine-figure picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.machine-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.machine-figure figcaption {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: .69rem;
    line-height: 1.5;
}

.machine-tags {
    position: absolute;
    z-index: 3;
    top: 58px;
    left: 20px;
    display: grid;
    gap: 8px;
}

.machine-tags span {
    width: fit-content;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(7, 31, 40, .88);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(7, 31, 40, .13);
    font-size: .64rem;
    font-weight: 680;
    backdrop-filter: blur(8px);
}

/* Monitoring and integrations */

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

.solution-card {
    min-width: 0;
    padding: clamp(36px, 5vw, 66px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
}

.solution-card h3 {
    max-width: 580px;
}

.solution-card-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(49, 140, 158, .15), transparent 42%),
        var(--navy-900);
    border-color: transparent;
}

.solution-card-dark .solution-number {
    color: var(--cyan-300);
}

.solution-card-dark > p:not(.solution-number) {
    color: rgba(255, 255, 255, .62);
}

.parameter-visual {
    margin-top: 38px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
}

.parameter-top,
.parameter-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.parameter-top {
    color: var(--ink-soft);
    font-size: .69rem;
}

.parameter-top span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 680;
}

.parameter-top i {
    width: 7px;
    height: 7px;
    background: #63d8a5;
    border-radius: 50%;
}

.parameter-visual svg {
    width: 100%;
    margin-block: 16px 10px;
}

.parameter-visual .grid-lines path {
    fill: none;
    stroke: #dbe7e6;
    stroke-width: 1;
}

.parameter-visual .area {
    fill: url(#areaGradient);
}

.parameter-visual .line-a,
.parameter-visual .line-b,
.parameter-visual .line-c {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.parameter-visual .line-a { stroke: var(--cyan-400); }
.parameter-visual .line-b { stroke: var(--teal-600); }
.parameter-visual .line-c { stroke: #82969a; stroke-width: 2; }

.parameter-values {
    align-items: stretch;
    padding-top: 13px;
    border-top: 1px solid var(--line);
}

.parameter-values span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--ink-soft);
    font-size: .56rem;
}

.parameter-values i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.parameter-values i.cyan { background: var(--cyan-400); }
.parameter-values i.teal { background: var(--teal-600); }
.parameter-values i.gray { background: #82969a; }

.parameter-values b {
    width: 100%;
    padding-left: 12px;
    color: var(--ink);
    font-weight: 660;
}

.integration-map {
    position: relative;
    height: 330px;
    margin-top: 28px;
}

.integration-map > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.integration-map > svg path {
    fill: none;
    stroke: rgba(49, 140, 158, .3);
    stroke-dasharray: 6 6;
    stroke-width: 1.5;
}

.integration-core,
.integration-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    text-align: center;
}

.integration-core {
    top: 50%;
    left: 50%;
    width: 146px;
    height: 100px;
    padding: 15px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 19px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
    transform: translate(-50%, -50%);
}

.integration-core span {
    color: var(--cyan-300);
    font-family: Consolas, monospace;
    font-size: .63rem;
    letter-spacing: .12em;
}

.integration-core strong {
    font-size: .82rem;
    font-weight: 650;
}

.integration-node {
    width: 122px;
    min-height: 52px;
    padding: 10px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    font-size: .66rem;
    font-weight: 620;
    backdrop-filter: blur(10px);
}

.integration-map .node-1 { top: 4px; left: 2px; }
.integration-map .node-2 { top: 4px; right: 2px; }
.integration-map .node-3 { bottom: 4px; left: 2px; }
.integration-map .node-4 { right: 2px; bottom: 4px; }

.check-list-light li {
    color: rgba(255, 255, 255, .58);
}

.check-list-light li::before {
    border-color: var(--cyan-400);
}

/* BioBalance */

.biobalance {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(49, 140, 158, .15), transparent 29%),
        radial-gradient(circle at 96% 32%, rgba(30, 100, 125, .13), transparent 28%),
        linear-gradient(180deg, #eaf3f5 0%, #f7fafb 76%);
}

.biobalance::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 92, 115, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 92, 115, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.bio-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(24, 92, 115, .1);
    border-radius: 50%;
    pointer-events: none;
}

.bio-orbit-one {
    top: 70px;
    right: -240px;
    width: 720px;
    height: 720px;
    box-shadow: 0 0 0 85px rgba(24, 92, 115, .025), 0 0 0 170px rgba(24, 92, 115, .018);
}

.bio-orbit-two {
    bottom: 120px;
    left: -180px;
    width: 430px;
    height: 430px;
}

.biobalance-layout {
    display: grid;
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(56px, 7vw, 110px);
}

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

.biobalance-copy h2 {
    max-width: 720px;
    font-size: clamp(2.55rem, 4.6vw, 4.7rem);
}

.biobalance-copy > p:not(.eyebrow):not(.bio-wordmark) {
    max-width: 660px;
    color: var(--ink-soft);
}

.bio-wordmark {
    width: fit-content;
    margin-bottom: 28px;
    color: var(--teal-700);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 390;
    letter-spacing: -.055em;
    line-height: 1;
}

.bio-wordmark strong {
    font-weight: 790;
}

.bio-benefit-list {
    display: grid;
    gap: 0;
    margin: 38px 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(24, 92, 115, .17);
}

.bio-benefit-list li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
    gap: 24px;
    padding: 18px 0 18px 25px;
    border-bottom: 1px solid rgba(24, 92, 115, .17);
}

.bio-benefit-list li::before {
    position: absolute;
    top: 26px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--cyan-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(49, 140, 158, .15);
    content: "";
}

.bio-benefit-list strong {
    font-size: .86rem;
    line-height: 1.45;
}

.bio-benefit-list span {
    color: var(--ink-soft);
    font-size: .74rem;
    line-height: 1.55;
}

.bio-dashboard {
    position: relative;
    min-width: 0;
    padding: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(49, 140, 158, .15), transparent 36%),
        var(--navy-950);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    box-shadow: 0 42px 100px rgba(5, 34, 41, .24);
    transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);
}

.bio-dashboard::after {
    position: absolute;
    z-index: -1;
    right: 8%;
    bottom: -32px;
    left: 8%;
    height: 58px;
    background: rgba(7, 31, 40, .25);
    border-radius: 50%;
    filter: blur(28px);
    content: "";
}

.bio-dashboard > figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, .54);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.bio-dashboard > figcaption small {
    font: inherit;
    color: var(--cyan-300);
}

.bio-window {
    padding: 18px;
    color: var(--ink);
    background: #f5f8fa;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .8);
}

.bio-topbar,
.bio-app-name,
.bio-live,
.bio-card-head,
.bio-chart-legend,
.bio-quality-card > div:first-child,
.bio-feed-card > div:first-child {
    display: flex;
    align-items: center;
}

.bio-topbar {
    justify-content: space-between;
    gap: 18px;
    padding: 1px 2px 16px;
}

.bio-app-name {
    gap: 8px;
}

.bio-app-name > i {
    width: 11px;
    height: 11px;
    background: var(--teal-600);
    border-radius: 4px 50% 50%;
    transform: rotate(45deg);
}

.bio-app-name strong {
    color: var(--teal-700);
    font-size: .82rem;
    letter-spacing: -.035em;
}

.bio-app-name span,
.bio-live {
    color: #72858a;
    font-size: .5rem;
}

.bio-app-name span {
    padding-left: 8px;
    border-left: 1px solid #dce6e7;
}

.bio-live {
    gap: 6px;
    padding: 6px 9px;
    color: #166647;
    background: #e6f6ed;
    border: 1px solid #c8ead7;
    border-radius: 100px;
    font-weight: 700;
}

.bio-live i {
    width: 6px;
    height: 6px;
    background: #2ab774;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(42, 183, 116, .13);
}

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

.bio-kpis > div {
    position: relative;
    min-width: 0;
    min-height: 98px;
    padding: 13px 12px 15px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e0e8e9;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(21, 56, 64, .04);
}

.bio-kpis > div::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--teal-600);
    content: "";
}

.bio-kpis > div:nth-child(2)::after { background: var(--cyan-400); }
.bio-kpis > div:nth-child(3)::after { background: #10b981; }
.bio-kpis > div:nth-child(4)::after { background: #f59e0b; }

.bio-kpis span,
.bio-kpis em {
    display: block;
    overflow: hidden;
    color: #72858a;
    font-size: .46rem;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bio-kpis strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--navy-850);
    font-size: clamp(.8rem, 1.1vw, 1.08rem);
    line-height: 1;
    white-space: nowrap;
}

.bio-kpis strong small {
    color: #63787e;
    font-size: .47em;
    font-weight: 650;
}

.bio-kpis em {
    color: #4d8f72;
    font-style: normal;
}

.bio-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(145px, .58fr);
    gap: 8px;
    margin-top: 8px;
}

.bio-chart-card,
.bio-status-card,
.bio-quality-card,
.bio-feed-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid #e0e8e9;
    border-radius: 10px;
}

.bio-chart-card,
.bio-status-card {
    min-height: 260px;
    padding: 14px;
}

.bio-card-head {
    justify-content: space-between;
    gap: 12px;
    color: var(--navy-850);
    font-size: .58rem;
}

.bio-card-head span {
    color: #839499;
    font-size: .46rem;
    font-weight: 500;
}

.bio-chart-card svg {
    width: 100%;
    height: 176px;
    margin-top: 12px;
}

.bio-grid-lines path {
    fill: none;
    stroke: #e5edef;
    stroke-width: 1;
}

.bio-chart-area {
    fill: url(#bioArea);
}

.bio-line-production,
.bio-line-power {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bio-line-production {
    stroke: var(--teal-600);
    stroke-width: 4;
}

.bio-line-power {
    stroke: #f59e0b;
    stroke-dasharray: 5 6;
    stroke-width: 2.5;
}

.bio-chart-legend {
    gap: 13px;
    padding-top: 8px;
    color: #6e8186;
    border-top: 1px solid #edf1f2;
    font-size: .45rem;
}

.bio-chart-legend span:not(.bio-chart-range) {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bio-chart-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.bio-chart-legend i.production { background: var(--teal-600); }
.bio-chart-legend i.power { background: #f59e0b; }

.bio-chart-range {
    margin-left: auto;
}

.bio-status-card {
    display: flex;
    flex-direction: column;
}

.bio-status-item {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 9px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f2;
}

.bio-status-item:last-child {
    border-bottom: 0;
}

.bio-status-item > i {
    width: 8px;
    height: 8px;
    margin-top: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .1);
}

.bio-status-item > i.insight {
    background: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .11);
}

.bio-status-item strong,
.bio-status-item span {
    display: block;
    line-height: 1.35;
}

.bio-status-item strong {
    color: var(--navy-850);
    font-size: .5rem;
}

.bio-status-item span {
    margin-top: 3px;
    color: #75878c;
    font-size: .43rem;
}

.bio-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.bio-quality-card,
.bio-feed-card {
    min-height: 98px;
    padding: 13px 14px;
}

.bio-quality-card > div:first-child,
.bio-feed-card > div:first-child {
    justify-content: space-between;
    gap: 12px;
    color: #6e8186;
    font-size: .47rem;
}

.bio-quality-card strong,
.bio-feed-card strong {
    color: var(--navy-850);
    font-size: .53rem;
}

.bio-quality-track {
    height: 6px;
    margin: 14px 0 8px;
    overflow: hidden;
    background: #e6eeee;
    border-radius: 100px;
}

.bio-quality-track i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--teal-600), var(--cyan-400));
    border-radius: inherit;
}

.bio-quality-card small,
.bio-feed-card small {
    display: block;
    color: #809095;
    font-size: .42rem;
    line-height: 1.35;
}

.bio-feed-bars {
    display: grid;
    height: 6px;
    grid-template-columns: 36fr 27fr 22fr 15fr;
    gap: 2px;
    margin: 14px 0 8px;
    overflow: hidden;
    border-radius: 100px;
}

.bio-feed-bars i:nth-child(1) { background: var(--teal-600); }
.bio-feed-bars i:nth-child(2) { background: var(--cyan-400); }
.bio-feed-bars i:nth-child(3) { background: #f59e0b; }
.bio-feed-bars i:nth-child(4) { background: #789195; }

.bio-capabilities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(70px, 9vw, 120px);
    border-top: 1px solid rgba(24, 92, 115, .18);
    border-left: 1px solid rgba(24, 92, 115, .18);
}

.bio-capability {
    min-height: 285px;
    padding: clamp(28px, 3.5vw, 44px);
    background: rgba(255, 255, 255, .46);
    border-right: 1px solid rgba(24, 92, 115, .18);
    border-bottom: 1px solid rgba(24, 92, 115, .18);
    backdrop-filter: blur(10px);
}

.bio-capability > span {
    display: block;
    margin-bottom: 48px;
    color: var(--teal-600);
    font-family: Consolas, monospace;
    font-size: .72rem;
}

.bio-capability h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.bio-capability p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .82rem;
}

/* Benefits */

.benefits {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-850);
}

.benefits::before {
    position: absolute;
    top: -180px;
    left: -180px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 110px rgba(255, 255, 255, .018), 0 0 0 220px rgba(255, 255, 255, .012);
}

.benefits-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.benefits-heading {
    position: sticky;
    top: 130px;
}

.benefits-heading h2 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.benefits-heading > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .61);
}

.benefits-heading .text-link {
    margin-top: 20px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.benefit-card {
    min-height: 275px;
    padding: clamp(28px, 4vw, 46px);
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.benefit-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 50px;
    place-items: center;
    color: var(--cyan-300);
    background: rgba(49, 140, 158, .08);
    border: 1px solid rgba(49, 140, 158, .2);
    border-radius: 50%;
    font-family: Consolas, monospace;
    font-size: .65rem;
}

.benefit-card h3 {
    margin-bottom: 13px;
    font-size: 1.3rem;
    letter-spacing: -.025em;
}

.benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .86rem;
    line-height: 1.6;
}

/* Approach */

.approach {
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.approach-step {
    min-height: 330px;
    padding: clamp(28px, 4vw, 44px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.approach-step > span {
    display: block;
    margin-bottom: 90px;
    color: var(--teal-600);
    font-family: Consolas, monospace;
    font-size: .75rem;
}

.approach-step h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.approach-step p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .87rem;
    line-height: 1.6;
}

/* About */

.about {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.about-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
}

.about-copy > p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .6);
}

.about-copy .lead {
    color: rgba(255, 255, 255, .9) !important;
}

.about-principles {
    padding: 38px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
}

.about-principles > p {
    color: var(--cyan-300);
    font-size: .72rem;
    font-weight: 720;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-principles ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-principles li {
    display: grid;
    grid-template-columns: 42px 1fr;
    padding-block: 19px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-principles li > span {
    grid-row: 1 / 3;
    color: rgba(255, 255, 255, .35);
    font-family: Consolas, monospace;
    font-size: .66rem;
}

.about-principles strong {
    font-size: .9rem;
    font-weight: 660;
}

.about-principles small {
    color: rgba(255, 255, 255, .45);
    font-size: .73rem;
}

.about-decor {
    position: absolute;
    inset: 0;
    opacity: .34;
    pointer-events: none;
}

.about-decor i {
    position: absolute;
    display: block;
    background: linear-gradient(135deg, transparent, rgba(49, 140, 158, .16));
    clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.about-decor i:nth-child(1) {
    top: -180px;
    right: -80px;
    width: 480px;
    height: 520px;
}

.about-decor i:nth-child(2) {
    right: 20%;
    bottom: -210px;
    width: 350px;
    height: 420px;
    transform: rotate(38deg);
}

.about-decor i:nth-child(3) {
    bottom: -100px;
    left: -160px;
    width: 380px;
    height: 340px;
    transform: rotate(-18deg);
}

/* Contact */

.contact {
    overflow: hidden;
    background: var(--mint-100);
}

.contact::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 140, 158, .16), rgba(30, 100, 125, .05));
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
}

.contact-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .65fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
}

.contact-copy h2 {
    max-width: 820px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 730px;
    color: var(--ink-soft);
    font-size: 1.07rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.contact-card {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 4vw, 48px);
    color: var(--white);
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    font-style: normal;
}

.contact-card > div {
    display: grid;
    gap: 5px;
    padding-block: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.contact-card > div:first-child {
    padding-top: 0;
}

.contact-card span {
    color: rgba(255, 255, 255, .42);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-card a {
    width: fit-content;
    color: var(--cyan-300);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 660;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.contact-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.contact-card > small {
    display: block;
    margin-top: 23px;
    color: rgba(255, 255, 255, .37);
    font-size: .64rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Footer */

.site-footer {
    color: var(--white);
    background: var(--navy-950);
}

.footer-main {
    display: grid;
    min-height: 230px;
    grid-template-columns: .45fr .8fr 1fr;
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
    display: inline-flex;
    width: 170px;
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.footer-main > p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: .8rem;
    line-height: 1.6;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 28px;
}

.footer-main nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 650;
    text-decoration: none;
}

.footer-main nav a:hover {
    color: var(--cyan-300);
}

.footer-bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .34);
    font-size: .65rem;
}

/* Protected service entry pages */

.access-page {
    min-height: 100svh;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 8%, rgba(49, 140, 158, .28), transparent 34%),
        radial-gradient(circle at 92% 92%, rgba(40, 126, 143, .2), transparent 30%),
        var(--navy-950);
}

.access-page::before {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 76px 76px;
    content: "";
    mask-image: linear-gradient(135deg, #000, transparent 72%);
    pointer-events: none;
}

.access-shell {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(calc(100% - 48px), 1180px);
    min-height: 100svh;
    margin-inline: auto;
    flex-direction: column;
}

.access-topbar {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.access-brand {
    display: inline-flex;
    width: 118px;
}

.access-brand img {
    width: 100%;
    height: auto;
}

.access-badge,
.access-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .7rem;
    font-weight: 720;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.access-badge {
    padding: 9px 13px;
    color: var(--cyan-300);
    border: 1px solid rgba(114, 193, 204, .28);
    border-radius: 100px;
    background: rgba(49, 140, 158, .08);
}

.access-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    align-items: stretch;
    gap: clamp(38px, 7vw, 90px);
    margin-block: auto;
    padding-block: clamp(64px, 9vw, 118px);
}

.access-copy {
    align-self: center;
}

.access-copy h1 {
    max-width: 740px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 6.7vw, 6.4rem);
    font-weight: 590;
}

.access-copy h1 em {
    color: var(--cyan-300);
    font-style: normal;
}

.access-lead {
    max-width: 670px;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.access-note {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: .76rem;
}

.access-steps {
    align-self: center;
    padding: clamp(28px, 4vw, 46px);
    background: rgba(11, 39, 50, .74);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.access-status {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .62);
}

.access-status i {
    width: 8px;
    height: 8px;
    background: var(--cyan-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(49, 140, 158, .15);
}

.access-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.access-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.access-steps li > span {
    color: var(--cyan-300);
    font-family: Consolas, monospace;
    font-size: .68rem;
}

.access-steps strong {
    display: block;
    margin-bottom: 5px;
    font-size: .95rem;
}

.access-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    line-height: 1.55;
}

.access-footer {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .72rem;
}

.access-footer a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
}

.access-footer a:hover {
    color: var(--cyan-300);
}

/* Motion enhancement */

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.js .reveal-delay {
    transition-delay: .12s;
}

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

/* Responsive */

@media (max-width: 1120px) {
    .primary-nav {
        gap: clamp(14px, 1.7vw, 24px);
    }

    .primary-nav a {
        font-size: .8rem;
    }

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

    .solution-panel-srp .trace-visual {
        order: 2;
    }

    .trace-visual,
    .machine-figure {
        min-height: 560px;
    }

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

    .solution-card {
        display: grid;
        grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
        gap: 0 50px;
        align-items: start;
    }

    .solution-card .solution-number,
    .solution-card h3,
    .solution-card > p {
        grid-column: 1;
    }

    .solution-card .parameter-visual,
    .solution-card .integration-map {
        grid-column: 2;
        grid-row: 1 / 5;
        margin-top: 0;
    }

    .solution-card .check-list {
        grid-column: 1;
    }

    .biobalance-layout {
        grid-template-columns: 1fr;
    }

    .biobalance-copy {
        display: grid;
        grid-template-columns: minmax(0, .82fr) minmax(340px, 1.18fr);
        gap: 0 64px;
        align-items: start;
    }

    .biobalance-copy .eyebrow,
    .biobalance-copy .bio-wordmark,
    .biobalance-copy h2,
    .biobalance-copy > p:not(.eyebrow):not(.bio-wordmark),
    .biobalance-copy > .button {
        grid-column: 1;
    }

    .biobalance-copy .bio-benefit-list {
        grid-column: 2;
        grid-row: 1 / 7;
        margin-top: 0;
    }

    .bio-dashboard {
        width: min(100%, 900px);
        justify-self: center;
        transform: none;
    }

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

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 110px max(28px, 8vw) 60px;
        visibility: hidden;
        background:
            radial-gradient(circle at 100% 0%, rgba(49, 140, 158, .14), transparent 38%),
            var(--navy-950);
        opacity: 0;
        transform: translateY(-12px);
        transition: visibility .35s, opacity .35s ease, transform .35s var(--ease);
    }

    .primary-nav::before {
        position: absolute;
        right: -150px;
        bottom: -180px;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 50%;
        content: "";
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-size: clamp(1.5rem, 6vw, 2.4rem);
        font-weight: 540;
        letter-spacing: -.035em;
    }

    .primary-nav a:not(.nav-cta)::after {
        display: none;
    }

    .primary-nav .nav-cta {
        width: fit-content;
        margin-top: 28px;
        padding: 13px 22px;
        border: 0;
        font-size: 1rem;
        font-weight: 720;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-content: end;
        gap: 36px;
        padding-bottom: 100px;
    }

    .hero-scope {
        max-width: 700px;
    }

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

    .scope-flow li {
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 3px;
        padding: 10px 12px;
        border-top: 0;
        border-right: 1px solid rgba(255, 255, 255, .1);
        font-size: .78rem;
    }

    .scope-flow li:last-child {
        border-right: 0;
    }

    .hero-scroll {
        display: none;
    }

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

    .value-grid > div {
        min-height: 110px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .value-grid > div:first-child,
    .value-grid > div:nth-child(3) {
        padding-left: 0;
    }

    .value-grid > div:nth-child(2) {
        border-right: 0;
    }

    .intro-layout,
    .section-top,
    .benefits-layout,
    .about-layout,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .section-top {
        gap: 30px;
    }

    .process-rail {
        grid-template-columns: repeat(5, minmax(190px, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .process-node {
        scroll-snap-align: start;
    }

    .biobalance-copy {
        display: block;
    }

    .biobalance-copy .bio-benefit-list {
        margin-top: 38px;
    }

    .benefits-heading {
        position: static;
        max-width: 720px;
    }

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

    .about-layout {
        gap: 55px;
    }

    .about-principles {
        max-width: 700px;
    }

    .contact-panel {
        gap: 55px;
    }

    .contact-card {
        max-width: 650px;
    }

    .footer-main {
        grid-template-columns: .55fr 1fr;
        gap: 35px 70px;
        padding-block: 55px;
    }

    .footer-main nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .solution-card {
        display: block;
    }

    .solution-card .parameter-visual,
    .solution-card .integration-map {
        margin-top: 34px;
    }
}

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

    .section {
        padding-block: 86px;
    }

    .brand {
        width: 96px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-media {
        background-position: 67% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(3, 15, 19, .95), rgba(3, 17, 22, .68)),
            linear-gradient(0deg, rgba(3, 15, 19, .98) 0%, rgba(3, 15, 19, .48) 52%, rgba(3, 15, 19, .38) 100%);
    }

    .hero-inner {
        min-height: 820px;
        padding-top: 150px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.45rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-scope {
        display: none;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

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

    .value-grid > div,
    .value-grid > div:first-child,
    .value-grid > div:nth-child(3) {
        min-height: 88px;
        padding: 18px 0;
        border-right: 0;
    }

    .value-grid > div:last-child {
        border-bottom: 0;
    }

    .solution-panel,
    .solution-card,
    .about-principles,
    .contact-card {
        border-radius: 22px;
    }

    .solution-copy,
    .solution-card {
        padding: 32px 24px;
    }

    .solution-card {
        display: block;
    }

    .solution-card .parameter-visual,
    .solution-card .integration-map {
        margin-top: 34px;
    }

    .biobalance::before {
        background-size: 52px 52px;
    }

    .bio-benefit-list li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bio-dashboard {
        width: calc(100% + 8px);
        margin-left: -4px;
        padding: 16px 10px 10px;
        border-radius: 22px;
    }

    .bio-dashboard > figcaption {
        padding-inline: 5px;
    }

    .bio-window {
        padding: 10px;
    }

    .bio-app-name span {
        display: none;
    }

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

    .bio-kpis > div {
        min-height: 90px;
    }

    .bio-kpis span,
    .bio-kpis em {
        font-size: .51rem;
    }

    .bio-kpis strong {
        font-size: 1rem;
    }

    .bio-dashboard-grid,
    .bio-mini-grid {
        grid-template-columns: 1fr;
    }

    .bio-chart-card,
    .bio-status-card {
        min-height: auto;
    }

    .bio-chart-card svg {
        height: 150px;
    }

    .bio-card-head,
    .bio-quality-card > div:first-child,
    .bio-feed-card > div:first-child {
        font-size: .65rem;
    }

    .bio-card-head span,
    .bio-quality-card small,
    .bio-feed-card small,
    .bio-status-item span {
        font-size: .5rem;
    }

    .bio-status-item strong {
        font-size: .58rem;
    }

    .bio-capabilities {
        grid-template-columns: 1fr;
    }

    .bio-capability {
        min-height: 0;
        padding: 30px 24px;
    }

    .bio-capability > span {
        margin-bottom: 24px;
    }

    .dashboard {
        padding: 20px 12px;
    }

    .dashboard-topbar {
        flex-wrap: wrap;
    }

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

    .metric {
        min-height: 105px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .metric:nth-child(2) {
        border-right: 0;
    }

    .metric:nth-child(3),
    .metric:nth-child(4) {
        border-bottom: 0;
    }

    .dashboard-lower {
        grid-template-columns: 1fr;
    }

    .chart-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .trace-visual,
    .machine-figure {
        min-height: auto;
        padding: 32px 20px;
    }

    .trace-head {
        margin-bottom: 42px;
    }

    .trace-line {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trace-line::before {
        top: 20px;
        bottom: 20px;
        left: 22px;
        width: 1px;
        height: auto;
    }

    .trace-line > div {
        display: grid;
        min-height: 58px;
        grid-template-columns: 50px 1fr;
        align-items: center;
        justify-items: start;
        text-align: left;
    }

    .trace-line i {
        grid-row: 1 / 3;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
    }

    .trace-footer {
        margin-top: 42px;
    }

    .machine-tags {
        position: relative;
        top: auto;
        left: auto;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .machine-tags span {
        color: var(--teal-700);
        background: var(--white);
        border-color: var(--line);
    }

    .integration-map {
        height: 295px;
    }

    .integration-node {
        width: 104px;
        font-size: .59rem;
    }

    .benefit-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-icon {
        margin-bottom: 34px;
    }

    .approach-step {
        min-height: 260px;
    }

    .approach-step > span {
        margin-bottom: 60px;
    }

    .contact-actions .button {
        flex: 1 1 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main nav {
        grid-column: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        min-height: 100px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
    }
}

@media (max-width: 460px) {
    body {
        font-size: 16px;
    }

    .menu-toggle-label {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .eyebrow {
        font-size: .68rem;
    }

    .parameter-values {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .trace-head {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .trace-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .integration-core {
        width: 124px;
    }

    .integration-node {
        width: 93px;
        padding: 7px;
    }
}

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

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

@media print {
    .site-header,
    .hero-scroll,
    .menu-toggle,
    .hero-actions,
    .contact-actions {
        display: none !important;
    }

    .hero,
    .benefits,
    .about,
    .solution-card-dark,
    .dashboard,
    .trace-visual,
    .contact-card,
    .site-footer {
        color: #000 !important;
        background: #fff !important;
    }

    .section,
    .hero {
        min-height: 0;
        padding-block: 30px;
    }

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