:root {
    --ink: #0a2633;
    --ink-2: #173b49;
    --muted: #607985;
    --navy: #071b27;
    --navy-2: #0b3341;
    --navy-3: #105264;
    --surface: #f4f8f7;
    --surface-2: #eaf3f1;
    --surface-blue: #e9f6fb;
    --white: #ffffff;
    --aqua: #46d6c6;
    --aqua-dark: #159b92;
    --sky: #65c9ff;
    --lime: #d8ff8a;
    --warm: #ffb55c;
    --coral: #ff7c75;
    --green: #70d6a6;
    --line: rgba(10, 38, 51, 0.12);
    --line-dark: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 12px 34px rgba(15, 57, 72, 0.08);
    --shadow-md: 0 24px 70px rgba(5, 35, 49, 0.13);
    --shadow-lg: 0 36px 110px rgba(3, 28, 40, 0.22);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --sans: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--surface);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

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

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: inherit;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 6.2vw, 6.8rem);
    font-weight: 720;
}

h2 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.25rem, 4.25vw, 4.65rem);
    font-weight: 700;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.22rem, 2vw, 1.7rem);
    font-weight: 690;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    padding-left: 1.25rem;
}

::selection {
    color: var(--navy);
    background: var(--aqua);
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 15px;
    color: var(--navy);
    background: var(--lime);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}

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

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    line-height: 1.64;
}

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

.text-center {
    text-align: center;
}

.section {
    padding: clamp(78px, 8vw, 126px) 0;
}

.section-sm {
    padding: 58px 0;
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.15rem;
    color: var(--aqua-dark);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

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

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 52px;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-header-modern h2 {
    max-width: 780px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    color: var(--white);
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 730;
    line-height: 1.15;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    background: var(--navy-2);
    border-color: var(--navy-2);
    box-shadow: 0 14px 28px rgba(4, 36, 49, 0.16);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-accent {
    color: var(--navy);
    background: var(--lime);
    border-color: var(--lime);
}

.button-accent:hover {
    color: var(--navy);
    background: #e6ffad;
    border-color: #e6ffad;
}

.button-secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.button-secondary:hover {
    color: var(--ink);
    background: var(--surface-blue);
    border-color: rgba(10, 38, 51, 0.18);
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

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

.button-light {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.button-light:hover {
    color: var(--navy);
    background: var(--lime);
    border-color: var(--lime);
}

.button-small {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 4px solid rgba(70, 214, 198, 0.33);
    outline-offset: 3px;
}

.link-arrow,
.bento-link,
.knowledge-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--aqua-dark);
    font-weight: 750;
}

.link-arrow:hover,
.bento-link:hover,
.knowledge-link:hover {
    gap: 13px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.91);
    border-bottom: 1px solid rgba(10, 38, 51, 0.08);
    backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand img {
    width: 46px;
    height: 46px;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 790;
    letter-spacing: -0.025em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.primary-nav > a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    color: #31515f;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 680;
    white-space: nowrap;
    transition: color 0.16s ease, background 0.16s ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
    color: var(--ink);
    background: var(--surface-2);
}

.primary-nav > .nav-cta {
    margin-left: 8px;
    padding-inline: 18px;
    color: var(--white);
    background: var(--navy);
}

.primary-nav > .nav-cta:hover,
.primary-nav > .nav-cta.is-active {
    color: var(--navy);
    background: var(--lime);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    background: var(--navy);
    border: 0;
    border-radius: 14px;
}

.nav-toggle span:not(.sr-only) {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.nav-toggle span:nth-child(2) {
    transform: translateY(-4px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Home hero */
.climate-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 14% 18%, rgba(70, 214, 198, 0.18), transparent 30%),
        radial-gradient(circle at 78% 6%, rgba(101, 201, 255, 0.19), transparent 28%),
        radial-gradient(circle at 90% 82%, rgba(255, 181, 92, 0.13), transparent 28%),
        linear-gradient(140deg, #061a25 0%, #092c3a 47%, #0a4350 100%);
}

.climate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
}

.climate-hero-aurora {
    position: absolute;
    top: -340px;
    right: -280px;
    width: 880px;
    height: 880px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(70, 214, 198, 0.035),
        0 0 0 180px rgba(101, 201, 255, 0.025),
        0 0 0 270px rgba(255, 255, 255, 0.014);
}

.climate-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(40px, 5vw, 78px);
    align-items: center;
    min-height: 745px;
    padding-top: clamp(62px, 7vw, 96px);
    padding-bottom: clamp(66px, 7vw, 96px);
}

.climate-hero-copy h1 {
    max-width: 720px;
    margin-bottom: 1.35rem;
    font-size: clamp(3.4rem, 6.4vw, 6.85rem);
    letter-spacing: -0.065em;
}

.climate-hero-copy h1 span {
    display: block;
    color: var(--lime);
}

.climate-hero-copy .lead {
    max-width: 690px;
    margin-bottom: 2rem;
    color: rgba(236, 255, 249, 0.72);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 1.4rem;
    padding: 7px 12px;
    color: #d6fbf5;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 740;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-kicker-dot {
    width: 7px;
    height: 7px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(70, 214, 198, 0.12);
}

.hero-actions {
    margin-bottom: 2.3rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 610px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof > div {
    display: flex;
    min-width: 150px;
    align-items: baseline;
    gap: 9px;
    padding: 18px 28px 0 0;
}

.hero-proof strong {
    color: var(--aqua);
    font-size: 1.4rem;
    line-height: 1;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 640;
}

.climate-lens {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    background: rgba(3, 24, 34, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.climate-lens::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lens-toolbar {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    color: rgba(255, 255, 255, 0.54);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.lens-toolbar span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.lens-toolbar i {
    width: 8px;
    height: 8px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(70, 214, 198, 0.8);
}

.lens-stage {
    position: relative;
    min-height: 505px;
}

.lens-visual {
    width: 100%;
    height: 505px;
}

.orbit-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1;
    stroke-dasharray: 5 9;
    transform-origin: 360px 312px;
}

.orbit-line-1 {
    animation: spin 48s linear infinite;
}

.orbit-line-2 {
    animation: spin-reverse 38s linear infinite;
}

.heat-ring,
.water-ring {
    stroke-dasharray: 420 180;
    animation: ring-flow 11s linear infinite;
}

.water-ring {
    animation-duration: 14s;
    animation-direction: reverse;
}

.project-node {
    transform-origin: 360px 312px;
    animation: node-pulse 5s ease-in-out infinite;
}

.hazard-node {
    transform-box: fill-box;
    transform-origin: center;
    animation: hazard-float 5.5s ease-in-out infinite;
}

.hazard-rain {
    animation-delay: -1.4s;
}

.hazard-wind {
    animation-delay: -2.7s;
}

.hazard-terrain {
    animation-delay: -4s;
}

.lens-label {
    position: absolute;
    display: grid;
    grid-template-columns: 8px auto;
    column-gap: 8px;
    min-width: 118px;
    padding: 9px 11px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(8, 39, 50, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.lens-label span {
    grid-row: 1 / span 2;
    width: 7px;
    height: 7px;
    margin-top: 5px;
    background: var(--aqua);
    border-radius: 50%;
}

.lens-label strong {
    font-size: 0.74rem;
    line-height: 1.15;
}

.lens-label small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.59rem;
    line-height: 1.25;
}

.lens-label-heat {
    top: 80px;
    left: 18px;
}

.lens-label-heat span {
    background: var(--warm);
}

.lens-label-rain {
    top: 103px;
    right: 18px;
}

.lens-label-rain span {
    background: var(--sky);
}

.lens-label-wind {
    right: 17px;
    bottom: 49px;
}

.lens-label-terrain {
    bottom: 55px;
    left: 18px;
}

.lens-label-terrain span {
    background: var(--green);
}

.lens-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 77px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lens-footer > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    column-gap: 10px;
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.lens-footer > div:last-child {
    border-right: 0;
}

.lens-footer span {
    grid-row: 1 / span 2;
    color: var(--aqua);
    font-size: 0.7rem;
    font-weight: 800;
}

.lens-footer strong {
    font-size: 0.78rem;
}

.lens-footer small {
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.64rem;
}

.hero-paths {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -2px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 60px rgba(2, 25, 35, 0.16);
}

.hero-paths > a {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    min-height: 104px;
    align-content: center;
    padding: 20px 24px;
    color: var(--ink);
    border-right: 1px solid var(--line);
    transition: background 0.18s ease;
}

.hero-paths > a:first-child {
    border-radius: 24px 0 0 0;
}

.hero-paths > a:last-child {
    border-right: 0;
    border-radius: 0 24px 0 0;
}

.hero-paths > a:hover {
    background: var(--lime);
}

.hero-paths span {
    grid-row: 1 / span 2;
    color: var(--aqua-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

.hero-paths strong {
    font-size: 0.92rem;
}

.hero-paths small {
    color: var(--muted);
    font-size: 0.7rem;
}

.hero-paths i {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 1.1rem;
    font-style: normal;
}

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

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

@keyframes ring-flow {
    to { stroke-dashoffset: -600; }
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.035); }
}

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

/* Home tools */
.tool-suite {
    position: relative;
    background: var(--surface);
}

.tool-bento {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr 0.82fr;
    grid-template-rows: minmax(285px, auto) minmax(265px, auto);
    gap: 18px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bento-card:hover {
    border-color: rgba(18, 117, 121, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.bento-card h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.bento-card p {
    max-width: 570px;
    margin-bottom: 1.2rem;
    color: var(--muted);
}

.bento-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-bottom: 1rem;
    padding: 6px 10px;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.1);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bento-link {
    color: var(--ink);
    font-size: 0.88rem;
}

.bento-link i {
    font-style: normal;
}

.bento-evaluator {
    grid-row: 1 / span 2;
    justify-content: space-between;
    min-height: 568px;
    padding: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 8%, rgba(101, 201, 255, 0.23), transparent 32%),
        linear-gradient(150deg, #0a3443 0%, #08222e 58%, #071b27 100%);
    border-color: transparent;
}

.bento-evaluator::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.bento-evaluator .bento-tag {
    color: var(--lime);
    background: rgba(216, 255, 138, 0.1);
}

.bento-evaluator h3 {
    color: var(--white);
    font-size: clamp(2.1rem, 3.2vw, 3.25rem);
}

.bento-evaluator p {
    color: rgba(255, 255, 255, 0.66);
}

.bento-evaluator .bento-link {
    color: var(--lime);
}

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

.mini-evaluator {
    position: relative;
    z-index: 2;
    margin-top: 35px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(12px);
}

.mini-evaluator-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 720;
}

.mini-evaluator-head i {
    width: 8px;
    height: 8px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(70, 214, 198, 0.8);
}

.mini-score {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
}

.mini-score-ring {
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    align-content: center;
    background: conic-gradient(var(--aqua) 0 72%, rgba(255, 255, 255, 0.1) 72% 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 0 10px #0e3441;
}

.mini-score-ring strong {
    font-size: 1.8rem;
    line-height: 1;
}

.mini-score-ring small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
}

.mini-bars {
    display: grid;
    gap: 11px;
}

.mini-bars span {
    overflow: hidden;
    height: 7px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
}

.mini-bars i {
    display: block;
    width: var(--value);
    height: 100%;
    background: linear-gradient(90deg, var(--aqua), var(--sky));
    border-radius: inherit;
}

.mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mini-pills span {
    padding: 5px 9px;
    color: rgba(255, 255, 255, 0.67);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    font-size: 0.64rem;
}

.bento-proofing {
    justify-content: flex-start;
    background: linear-gradient(145deg, #f3fff9 0%, #e7f8f3 100%);
}

.bento-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: auto;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.13);
    border-radius: 19px;
}

.bento-icon svg {
    width: 34px;
}

.bento-risks {
    justify-content: flex-start;
    color: var(--white);
    background: linear-gradient(145deg, #173f50, #0a2734);
    border-color: transparent;
}

.bento-risks .bento-tag {
    color: var(--warm);
    background: rgba(255, 181, 92, 0.1);
}

.bento-risks h3 {
    color: var(--white);
}

.bento-risks p {
    color: rgba(255, 255, 255, 0.62);
}

.bento-risks .bento-link {
    color: var(--aqua);
}

.bento-risk-orbit {
    position: relative;
    width: 118px;
    height: 118px;
    margin-bottom: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.bento-risk-orbit::before {
    content: "";
    position: absolute;
    inset: 23px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.bento-risk-orbit i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(70, 214, 198, 0.1);
    transform: translate(-50%, -50%);
}

.risk-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--warm);
    border: 2px solid #173f50;
    border-radius: 50%;
}

.risk-dot-a { top: 6px; left: 52px; }
.risk-dot-b { top: 48px; right: 2px; background: var(--sky); }
.risk-dot-c { bottom: 5px; left: 54px; background: var(--green); }
.risk-dot-d { top: 50px; left: 2px; background: var(--coral); }

.bento-resources {
    grid-column: 2 / span 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.8fr;
    gap: 30px;
    align-items: end;
    background: linear-gradient(145deg, #fff8ed 0%, #fff 70%);
}

.resource-stack {
    position: relative;
    display: grid;
    min-height: 185px;
    align-content: end;
}

.resource-stack span {
    position: relative;
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    color: var(--ink-2);
    background: var(--white);
    border: 1px solid rgba(10, 38, 51, 0.12);
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(20, 55, 68, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
}

.resource-stack span:nth-child(1) {
    z-index: 3;
    transform: translateY(26px) rotate(-1.6deg);
}

.resource-stack span:nth-child(2) {
    z-index: 2;
    transform: translateY(13px) rotate(1.2deg);
}

.resource-stack span:nth-child(3) {
    z-index: 1;
    transform: rotate(-0.6deg);
}

.resource-stack i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--aqua-dark);
    background: var(--surface-2);
    border-radius: 9px;
    font-size: 0.64rem;
    font-style: normal;
}

/* Risk logic */
.risk-logic-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 10%, rgba(70, 214, 198, 0.14), transparent 30%),
        linear-gradient(135deg, #061a25, #0a3342 60%, #0b4350);
}

.risk-logic-section::before,
.risk-logic-section::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.risk-logic-section::before {
    top: -270px;
    right: -120px;
    width: 650px;
    height: 650px;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.risk-logic-section::after {
    bottom: -260px;
    left: -180px;
    width: 520px;
    height: 520px;
}

.risk-logic-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
}

.risk-logic-copy h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.risk-logic-copy p {
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

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

.risk-flow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--lime);
    border: 13px solid #0a3342;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.risk-flow-item {
    position: relative;
    min-height: 242px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.risk-flow-item > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.7rem;
    font-weight: 800;
}

.risk-flow-item h3 {
    margin-top: 21px;
    color: var(--white);
    font-size: 1.35rem;
}

.risk-flow-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.87rem;
}

.risk-flow-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--aqua);
    background: rgba(70, 214, 198, 0.1);
    border-radius: 16px;
}

.risk-flow-icon svg {
    width: 30px;
}

.risk-flow-1 .risk-flow-icon { color: var(--warm); background: rgba(255, 181, 92, 0.1); }
.risk-flow-2 .risk-flow-icon { color: var(--sky); background: rgba(101, 201, 255, 0.1); }
.risk-flow-3 .risk-flow-icon { color: var(--green); background: rgba(112, 214, 166, 0.1); }
.risk-flow-4 .risk-flow-icon { color: var(--lime); background: rgba(216, 255, 138, 0.1); }

/* Hazards */
.hazards-section {
    background: var(--white);
}

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

.hazard-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 28px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hazard-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.045;
}

.hazard-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.hazard-card > span {
    position: absolute;
    top: 29px;
    right: 29px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 800;
}

.hazard-card h3 {
    margin-top: 30px;
    font-size: 1.45rem;
}

.hazard-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.89rem;
}

.hazard-card > i {
    position: absolute;
    right: 28px;
    bottom: 25px;
    font-style: normal;
}

.hazard-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.11);
    border-radius: 17px;
}

.hazard-icon svg {
    width: 32px;
}

.hazard-card-heat { background: linear-gradient(145deg, #fff9ed, #fff); }
.hazard-card-heat .hazard-icon { color: #cc7b22; background: rgba(255, 181, 92, 0.16); }
.hazard-card-rain { background: linear-gradient(145deg, #edf9ff, #fff); }
.hazard-card-rain .hazard-icon { color: #2287b5; background: rgba(101, 201, 255, 0.16); }
.hazard-card-drought { background: linear-gradient(145deg, #f8f3e7, #fff); }
.hazard-card-drought .hazard-icon { color: #9d7b31; background: rgba(181, 150, 84, 0.14); }
.hazard-card-wind { background: linear-gradient(145deg, #eefbf8, #fff); }
.hazard-card-wind .hazard-icon { color: #198c84; background: rgba(70, 214, 198, 0.14); }
.hazard-card-fire { background: linear-gradient(145deg, #fff1ef, #fff); }
.hazard-card-fire .hazard-icon { color: #cc514a; background: rgba(255, 124, 117, 0.15); }
.hazard-card-ground { background: linear-gradient(145deg, #f1faed, #fff); }
.hazard-card-ground .hazard-icon { color: #4f9560; background: rgba(112, 214, 166, 0.14); }

/* UAT visual */
.uat-climate-section {
    background: var(--surface-2);
}

.uat-climate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(50px, 7vw, 90px);
    align-items: center;
}

.uat-climate-visual {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.uat-map-head {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.uat-climate-visual > svg {
    width: 100%;
}

.uat-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--line);
}

.uat-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 680;
}

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

.legend-heat { background: var(--warm); }
.legend-water { background: var(--sky); }
.legend-land { background: var(--green); }
.legend-fire { background: var(--coral); }

.uat-climate-copy h2 {
    font-size: clamp(2.4rem, 4.3vw, 4.6rem);
}

.uat-climate-copy > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.check-list-modern {
    margin: 28px 0 34px;
}

/* Knowledge */
.knowledge-section {
    background: var(--white);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 15px;
}

.knowledge-card {
    position: relative;
    display: flex;
    min-height: 315px;
    flex-direction: column;
    padding: 27px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.knowledge-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.knowledge-card-main {
    color: var(--white);
    background:
        radial-gradient(circle at 95% 2%, rgba(101, 201, 255, 0.25), transparent 34%),
        linear-gradient(150deg, #0b3e4c, #071b27);
    border-color: transparent;
}

.knowledge-card h3 {
    margin-top: 18px;
    font-size: 1.5rem;
}

.knowledge-card-main h3 {
    color: var(--white);
    font-size: 2rem;
}

.knowledge-card p {
    color: var(--muted);
    font-size: 0.88rem;
}

.knowledge-card-main p {
    color: rgba(255, 255, 255, 0.62);
}

.knowledge-type {
    display: inline-flex;
    width: fit-content;
    padding: 6px 9px;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.1);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.knowledge-card-main .knowledge-type {
    color: var(--lime);
    background: rgba(216, 255, 138, 0.1);
}

.knowledge-link {
    margin-top: auto;
    color: var(--ink);
    font-size: 0.82rem;
}

.knowledge-card-main .knowledge-link {
    color: var(--aqua);
}

/* Subpage hero */
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 8%, rgba(101, 201, 255, 0.2), transparent 28%),
        radial-gradient(circle at 14% 90%, rgba(70, 214, 198, 0.12), transparent 31%),
        linear-gradient(138deg, #061a25 0%, #0a3342 60%, #0b4653 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.014), 0 0 0 210px rgba(255, 255, 255, 0.009);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 88%);
}

.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: end;
    min-height: 430px;
    padding-top: clamp(62px, 7vw, 90px);
    padding-bottom: clamp(62px, 7vw, 86px);
}

.page-hero h1 {
    max-width: 930px;
    margin-bottom: 1.3rem;
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 800px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.08rem;
}

.page-hero .eyebrow {
    color: var(--lime);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 1.55rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
}

.breadcrumbs a:hover {
    color: var(--aqua);
}

.page-hero-aside {
    position: relative;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    backdrop-filter: blur(14px);
}

.page-hero-aside::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 9px;
    height: 9px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(70, 214, 198, 0.09);
}

.page-hero-aside strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-hero-aside p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

/* Common layouts */
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(44px, 7vw, 92px);
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-main > h2 {
    margin-top: 3.4rem;
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.content-main > h2:first-child,
.content-main > .eyebrow + h2 {
    margin-top: 0;
}

.content-main > h3 {
    margin-top: 2.25rem;
    font-size: 1.42rem;
}

.content-main > p,
.content-main > ul,
.content-main > ol {
    color: var(--ink-2);
    font-size: 1.01rem;
}

.sticky-aside {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 14px;
}

.aside-card,
.contact-aside-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.aside-card:first-child {
    background: linear-gradient(145deg, #e9fbf6, #fff);
}

.aside-card h3,
.contact-aside-card h3 {
    font-size: 1.2rem;
}

.aside-card p,
.aside-card li,
.contact-aside-card p,
.contact-aside-card li {
    color: var(--muted);
    font-size: 0.88rem;
}

.aside-card ul,
.contact-aside-card ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.notice {
    position: relative;
    margin-bottom: 28px;
    padding: 21px 22px 21px 54px;
    color: var(--ink-2);
    background: #fff9eb;
    border: 1px solid rgba(224, 160, 51, 0.24);
    border-radius: 17px;
}

.notice::before {
    content: "i";
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: #8a5a0c;
    background: rgba(255, 181, 92, 0.24);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 850;
}

.notice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.notice-info {
    background: #eaf8fc;
    border-color: rgba(57, 157, 194, 0.2);
}

.notice-info::before {
    color: #176986;
    background: rgba(101, 201, 255, 0.2);
}

.notice-success {
    background: #edf9f2;
    border-color: rgba(43, 155, 100, 0.2);
}

.notice-success::before {
    content: "✓";
    color: #187348;
    background: rgba(112, 214, 166, 0.2);
}

.notice-error {
    background: #fff0ef;
    border-color: rgba(196, 62, 54, 0.2);
}

.notice-error::before {
    content: "!";
    color: #a03631;
    background: rgba(255, 124, 117, 0.2);
}

.info-card-grid,
.feature-grid,
.metric-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.info-card,
.feature-card,
.metric-card,
.process-step {
    position: relative;
    min-height: 210px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 19px;
    box-shadow: var(--shadow-sm);
}

.info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0 40px;
}

.info-card {
    min-height: 190px;
}

.info-card h3,
.feature-card h3 {
    margin-top: 28px;
    font-size: 1.3rem;
}

.info-card p,
.feature-card p,
.metric-card span,
.process-step p {
    color: var(--muted);
    font-size: 0.9rem;
}

.info-index,
.card-number,
.process-number {
    position: absolute;
    top: 23px;
    right: 23px;
    color: var(--aqua-dark);
    font-size: 0.67rem;
    font-weight: 820;
    letter-spacing: 0.08em;
}

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

.feature-card {
    display: flex;
    min-height: 255px;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card .link-arrow {
    margin-top: auto;
    font-size: 0.83rem;
}

.metric-grid {
    margin-top: 40px;
}

.metric-card {
    display: grid;
    min-height: 155px;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
}

.metric-card strong {
    color: var(--aqua-dark);
    font-size: 2rem;
    line-height: 1;
}

.metric-card span {
    color: var(--ink-2);
}

.process-grid {
    counter-reset: step;
}

.process-step {
    min-height: 215px;
    padding-top: 76px;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 25px;
    width: 34px;
    height: 2px;
    background: var(--aqua);
}

.process-step h3 {
    font-size: 1.35rem;
}

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

.check-list li {
    position: relative;
    padding: 13px 14px 13px 42px;
    color: var(--ink-2);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 13px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 13px;
    left: 15px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.12);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 850;
}

.table-wrap,
.result-table-wrap {
    overflow-x: auto;
    margin: 28px 0 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.data-table,
.result-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.data-table th,
.data-table td,
.result-table th,
.result-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.data-table th,
.result-table th {
    color: var(--muted);
    background: var(--surface-2);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.data-table td,
.result-table td {
    color: var(--ink-2);
    font-size: 0.88rem;
}

.data-table tbody tr:last-child td,
.result-table tbody tr:last-child td {
    border-bottom: 0;
}

.timeline {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 30px 0 42px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 31px;
    bottom: 31px;
    left: 28px;
    width: 2px;
    background: linear-gradient(var(--aqua), var(--sky));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
}

.timeline-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--navy);
    background: var(--white);
    border: 2px solid var(--aqua);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(23, 119, 119, 0.12);
    font-size: 0.68rem;
    font-weight: 850;
}

.timeline-content {
    padding: 17px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.timeline-content h3 {
    margin-bottom: 0.38rem;
    font-size: 1.18rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.faq-list {
    display: grid;
    gap: 10px;
    margin: 26px 0;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.faq-item summary {
    position: relative;
    padding: 18px 52px 18px 20px;
    font-weight: 730;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--aqua-dark);
    font-size: 1.4rem;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Resources */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.resource-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 19px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.resource-source {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 25px;
    padding: 6px 9px;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.1);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.resource-card h3 {
    font-size: 1.45rem;
}

.resource-card p {
    color: var(--muted);
    font-size: 0.88rem;
}

.resource-card .link-arrow {
    margin-top: auto;
    font-size: 0.82rem;
}

.source-ledger,
.uat-ledger {
    display: grid;
    gap: 13px;
}

/* Glossary */
.glossary-list {
    display: grid;
    gap: 12px;
}

.glossary-item {
    display: grid;
    grid-template-columns: minmax(180px, 0.38fr) 1fr;
    gap: 40px;
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 17px;
}

.glossary-item h2 {
    margin: 0;
    font-size: 1.35rem;
}

.glossary-item p {
    margin: 0;
    color: var(--muted);
}

/* Evaluator */
.evaluator-section {
    background: var(--surface-2);
}

.evaluator-shell {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.evaluator-sidebar {
    position: sticky;
    top: 101px;
    overflow: hidden;
    padding: 27px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(101, 201, 255, 0.2), transparent 35%),
        linear-gradient(155deg, #0a3948, #071b27);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.evaluator-sidebar::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.02), 0 0 0 76px rgba(255, 255, 255, 0.014);
}

.evaluator-sidebar > div {
    position: relative;
    z-index: 2;
}

.evaluator-sidebar h2 {
    margin-bottom: 0.7rem;
    color: var(--white);
    font-size: 1.65rem;
}

.evaluator-sidebar p {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.83rem;
}

.step-nav {
    display: grid;
    gap: 9px;
    margin-top: 30px;
}

.step-nav-item {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 13px;
    color: rgba(255, 255, 255, 0.44);
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.step-nav-item span:first-child {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    font-size: 0.62rem;
}

.step-nav-item.is-active,
.step-nav-item.is-current {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-nav-item.is-active span:first-child,
.step-nav-item.is-current span:first-child {
    color: var(--navy);
    background: var(--lime);
}

.evaluator-card {
    min-width: 0;
    padding: clamp(28px, 4vw, 48px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.evaluator-progress {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 42px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
}

.evaluator-progress strong {
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.progress-track {
    overflow: hidden;
    height: 8px;
    background: var(--surface-2);
    border-radius: 999px;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua-dark), var(--sky));
    border-radius: inherit;
    transition: width 0.25s ease;
}

.form-step-header {
    margin-bottom: 30px;
}

.form-step-header h2 {
    max-width: 780px;
    margin-bottom: 0.7rem;
    font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.form-step-header p {
    max-width: 760px;
    color: var(--muted);
}

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

.form-group {
    display: grid;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label,
.form-label {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 750;
}

.input,
.select,
.textarea {
    width: 100%;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid rgba(10, 38, 51, 0.15);
    border-radius: 13px;
    outline: 0;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.input,
.select {
    min-height: 52px;
    padding: 0 15px;
}

.select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.textarea {
    min-height: 150px;
    padding: 14px 15px;
    resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
    background: var(--white);
    border-color: var(--aqua-dark);
    box-shadow: 0 0 0 4px rgba(70, 214, 198, 0.12);
}

.form-hint {
    color: var(--muted);
    font-size: 0.72rem;
}

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

.option-card,
.check-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.option-card input,
.check-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.option-card-content,
.check-option > span {
    display: grid;
    min-height: 108px;
    align-content: center;
    gap: 5px;
    padding: 19px 20px 19px 51px;
    background: var(--surface);
    border: 1px solid rgba(10, 38, 51, 0.12);
    border-radius: 16px;
    transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.option-card-content::before,
.check-option > span::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 2px solid rgba(10, 38, 51, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px var(--white);
}

.check-option > span::before {
    border-radius: 6px;
}

.option-card:hover .option-card-content,
.check-option:hover > span {
    background: #f9fcfb;
    border-color: rgba(21, 155, 146, 0.35);
    transform: translateY(-2px);
}

.option-card input:checked + .option-card-content,
.check-option input:checked + span {
    background: #effbf7;
    border-color: var(--aqua-dark);
    box-shadow: 0 9px 24px rgba(31, 140, 134, 0.1);
}

.option-card input:checked + .option-card-content::before,
.check-option input:checked + span::before {
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
    box-shadow: inset 0 0 0 4px var(--white);
}

.check-option input:checked + span::after {
    content: "✓";
    position: absolute;
    top: 20px;
    left: 24px;
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 900;
}

.option-card-content strong,
.check-option strong {
    font-size: 0.94rem;
}

.option-card-content small,
.check-option span {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.45;
}

.check-option > span {
    min-height: 102px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.form-actions > .form-hint {
    margin-right: auto;
}

.evaluation-result {
    display: none;
}

.evaluation-result.is-visible {
    display: block;
}

.result-header {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.result-header h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.result-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 9px 13px;
    color: var(--ink);
    background: var(--surface-2);
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.result-status.is-low {
    color: #176344;
    background: #e7f8ef;
}

.result-status.is-medium {
    color: #84520c;
    background: #fff2d8;
}

.result-status.is-high {
    color: #943c35;
    background: #ffe8e6;
}

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

.result-summary-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.result-summary-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-summary-card strong {
    font-size: 0.95rem;
}

.risk-badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
}

.risk-badge.low {
    color: #176344;
    background: #e6f7ee;
}

.risk-badge.medium {
    color: #84520c;
    background: #fff2d8;
}

.risk-badge.high {
    color: #943c35;
    background: #ffe8e6;
}

.result-recommendations {
    margin-top: 28px;
    padding: 25px;
    background: linear-gradient(145deg, #effbf7, #f9fffd);
    border: 1px solid rgba(21, 155, 146, 0.16);
    border-radius: 17px;
}

.result-recommendations h3 {
    font-size: 1.25rem;
}

.result-recommendations ul {
    display: grid;
    gap: 9px;
    margin-bottom: 0;
    color: var(--ink-2);
}

.result-disclaimer {
    margin-top: 24px;
    padding: 17px 18px;
    color: var(--muted);
    background: var(--surface);
    border-radius: 13px;
    font-size: 0.78rem;
}

/* Legacy visual classes retained for internal pages */
.evaluator-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    gap: 55px;
    align-items: center;
}

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

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.contact-card {
    padding: clamp(28px, 4.3vw, 52px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-aside {
    display: grid;
    gap: 14px;
}

.contact-aside-card:first-child {
    color: var(--white);
    background: linear-gradient(145deg, #0a3b49, #071b27);
    border-color: transparent;
}

.contact-aside-card:first-child h3 {
    color: var(--white);
}

.contact-aside-card:first-child p,
.contact-aside-card:first-child li {
    color: rgba(255, 255, 255, 0.62);
}

.consent-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 15px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 13px;
}

.consent-row input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--aqua-dark);
}

.consent-row label {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Error */
.error-page {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding: 90px 0;
    text-align: center;
}

.error-code {
    color: var(--aqua-dark);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

/* Footer */
.footer-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 20%, rgba(70, 214, 198, 0.15), transparent 27%),
        radial-gradient(circle at 92% 70%, rgba(101, 201, 255, 0.14), transparent 27%),
        linear-gradient(135deg, #082a38, #071b27 72%);
}

.footer-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 265px;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    min-height: 350px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.footer-cta-visual {
    position: relative;
    width: 160px;
    height: 160px;
}

.footer-cta-visual .orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.footer-cta-visual .orbit-b {
    inset: 23px;
    border-style: dashed;
    animation: spin 30s linear infinite;
}

.footer-cta-visual .orbit-c {
    inset: 49px;
    border-color: rgba(216, 255, 138, 0.35);
}

.footer-cta-visual i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    background: var(--lime);
    border: 9px solid #0c303d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.footer-cta-copy-main h2 {
    max-width: 780px;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(2.3rem, 4.2vw, 4.4rem);
}

.footer-cta-copy-main p {
    max-width: 750px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-cta-actions {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.text-link-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.text-link-light:hover {
    color: var(--aqua);
}

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: #04131c;
}

.footer-masthead {
    display: grid;
    grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
    gap: 70px;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand-footer .brand-copy strong {
    color: var(--white);
}

.brand-footer .brand-copy small {
    color: rgba(255, 255, 255, 0.42);
}

.footer-masthead > p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 1.1fr;
    gap: 70px;
    padding-top: 42px;
    padding-bottom: 46px;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column-index {
    margin-bottom: 10px;
    color: var(--aqua);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-ogaus p {
    max-width: 450px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.84rem;
}

.footer-external {
    color: var(--lime) !important;
    font-weight: 780;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-bottom > div {
    display: flex;
    gap: 18px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.73rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

.cookie-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    width: min(calc(100% - 40px), 680px);
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(4, 28, 40, 0.22);
}

.cookie-panel strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.cookie-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

/* Additional retained components */
.concept-section,
.hazard-matrix-section,
.uat-section,
.sources-editorial {
    background: var(--surface);
}

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

.concept-panel,
.hazard-matrix,
.source-ledger,
.uat-ledger {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.concept-panel-blue {
    background: #eaf7fc;
}

.concept-panel-orange {
    background: #fff5e8;
}

.concept-code {
    color: var(--aqua-dark);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.hazard-matrix-head,
.hazard-matrix-row {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr 1.25fr;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.hazard-matrix-head {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hazard-matrix-row:last-child {
    border-bottom: 0;
}

.status-pill {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    color: var(--aqua-dark);
    background: rgba(70, 214, 198, 0.12);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1180px) {
    .primary-nav > a {
        padding-inline: 9px;
        font-size: 0.8rem;
    }

    .primary-nav > .nav-cta {
        padding-inline: 14px;
    }

    .climate-hero-grid {
        grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
        gap: 35px;
    }

    .lens-label {
        display: none;
    }

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

    .knowledge-card-main {
        grid-row: span 2;
    }
}

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

    .nav-toggle {
        position: relative;
        display: grid;
        z-index: 1002;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: grid;
        align-content: center;
        gap: 8px;
        padding: 90px 28px 32px;
        background: rgba(5, 27, 38, 0.97);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

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

    .primary-nav > a,
    .primary-nav > .nav-cta {
        width: min(100%, 480px);
        min-height: 54px;
        justify-content: center;
        margin: 0 auto;
        color: var(--white);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .primary-nav > a:hover,
    .primary-nav > a.is-active {
        color: var(--navy);
        background: var(--aqua);
    }

    .primary-nav > .nav-cta {
        margin-top: 12px;
        color: var(--navy);
        background: var(--lime);
    }

    .climate-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .climate-hero-copy {
        max-width: 790px;
    }

    .climate-lens {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .hero-paths {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 24px 24px 0 0;
    }

    .hero-paths > a:nth-child(2) {
        border-right: 0;
    }

    .hero-paths > a:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .hero-paths > a:last-child {
        border-radius: 0;
    }

    .tool-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .bento-evaluator {
        grid-row: span 2;
    }

    .bento-resources {
        grid-column: 1 / -1;
    }

    .risk-logic-grid,
    .uat-climate-grid {
        grid-template-columns: 1fr;
    }

    .risk-logic-copy {
        max-width: 820px;
    }

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

    .page-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .page-hero-aside {
        max-width: 620px;
    }

    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .sticky-aside {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .evaluator-shell {
        grid-template-columns: 1fr;
    }

    .evaluator-sidebar {
        position: static;
    }

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

    .step-nav-item {
        grid-template-columns: 28px 1fr;
    }

    .footer-cta-inner {
        grid-template-columns: 120px 1fr;
    }

    .footer-cta-visual {
        width: 120px;
        height: 120px;
    }

    .footer-cta-actions {
        grid-column: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .container,
    .narrow {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy small {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 19px;
        margin-bottom: 34px;
    }

    .climate-hero-grid {
        padding-top: 58px;
        padding-bottom: 48px;
    }

    .climate-hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

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

    .hero-proof > div {
        display: grid;
        min-width: 0;
        gap: 5px;
        padding-right: 10px;
    }

    .climate-lens {
        min-height: 0;
        border-radius: 24px;
    }

    .lens-stage {
        min-height: 390px;
    }

    .lens-visual {
        height: 390px;
    }

    .lens-footer {
        min-height: 70px;
    }

    .lens-footer > div {
        padding-inline: 11px;
        column-gap: 7px;
    }

    .lens-footer small {
        display: none;
    }

    .hero-paths {
        grid-template-columns: 1fr;
        border-radius: 20px 20px 0 0;
    }

    .hero-paths > a {
        min-height: 86px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0 !important;
    }

    .hero-paths > a:first-child {
        border-radius: 20px 20px 0 0 !important;
    }

    .hero-paths > a:last-child {
        border-bottom: 0;
    }

    .tool-bento {
        grid-template-columns: 1fr;
    }

    .bento-evaluator,
    .bento-resources {
        grid-row: auto;
        grid-column: auto;
    }

    .bento-evaluator {
        min-height: 590px;
        padding: 28px;
    }

    .bento-resources {
        grid-template-columns: 1fr;
    }

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

    .risk-flow::before {
        display: none;
    }

    .risk-flow-item {
        min-height: 210px;
    }

    .hazard-cards,
    .knowledge-grid,
    .info-card-grid,
    .feature-grid,
    .metric-grid,
    .process-grid,
    .resource-grid,
    .concept-split,
    .uat-intro {
        grid-template-columns: 1fr;
    }

    .knowledge-card-main {
        grid-row: auto;
    }

    .uat-climate-grid {
        gap: 40px;
    }

    .page-hero-grid {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .page-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.4rem);
    }

    .sticky-aside {
        grid-template-columns: 1fr;
    }

    .glossary-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .evaluator-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .evaluator-progress {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .option-grid,
    .checkbox-grid,
    .form-grid,
    .result-summary-grid {
        grid-template-columns: 1fr;
    }

    .option-card-content,
    .check-option > span {
        min-height: 94px;
    }

    .result-header {
        display: grid;
    }

    .evaluator-promo {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 26px 18px;
    }

    .footer-cta-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .footer-cta-visual {
        width: 100px;
        height: 100px;
    }

    .footer-cta-actions {
        grid-column: auto;
    }

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

    .footer-masthead {
        padding-top: 42px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }

    .cookie-panel {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-end;
    }

    .hazard-matrix-head {
        display: none;
    }

    .hazard-matrix-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
}

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

    .brand-copy strong {
        font-size: 0.83rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .button-row {
        align-items: stretch;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-proof {
        gap: 10px;
    }

    .hero-proof > div {
        padding-right: 0;
    }

    .hero-proof span {
        font-size: 0.63rem;
    }

    .lens-toolbar span:last-child {
        display: none;
    }

    .lens-stage {
        min-height: 320px;
    }

    .lens-visual {
        height: 320px;
    }

    .lens-footer strong {
        font-size: 0.68rem;
    }

    .bento-card,
    .hazard-card,
    .knowledge-card {
        padding: 23px;
    }

    .step-nav {
        grid-template-columns: 1fr;
    }

    .step-nav-item {
        min-height: 48px;
    }

    .form-actions {
        display: grid;
    }

    .form-actions .button {
        width: 100%;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .footer-cta,
    .site-footer,
    .cookie-panel,
    .no-print,
    .evaluator-sidebar,
    .page-hero {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section,
    .evaluator-section {
        padding: 0;
        background: #fff;
    }

    .container,
    .narrow,
    .evaluator-shell {
        width: 100%;
        display: block;
    }

    .evaluator-card {
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .evaluation-result {
        display: block !important;
    }

    .result-table-wrap {
        overflow: visible;
        border: 1px solid #999;
        box-shadow: none;
    }

    .result-table {
        min-width: 0;
        font-size: 10pt;
    }
}

.form-step {
    min-width: 0;
}

.risk-preview {
    padding: 25px;
    color: var(--white);
    background: linear-gradient(145deg, #0a3b49, #071b27);
    border-radius: 19px;
    box-shadow: var(--shadow-md);
}

.risk-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.risk-preview-head strong {
    font-size: 1.05rem;
}

.risk-bars {
    display: grid;
    gap: 15px;
}

.risk-bar-row {
    display: grid;
    grid-template-columns: 120px 1fr 70px;
    gap: 13px;
    align-items: center;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
}

.risk-track {
    overflow: hidden;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.risk-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua), var(--sky));
    border-radius: inherit;
}

.risk-label {
    color: var(--lime);
    font-weight: 750;
    text-align: right;
}

@media (max-width: 560px) {
    .risk-bar-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .risk-label {
        text-align: left;
    }
}

.form-step-header h2:focus {
    outline: none;
}
/* V4.1.0 BASE — CLIMATE PROJECT WORKSPACE                                         */
/* ========================================================================== */

.climate-os {
    --os-bg: #08121f;
    --os-bg-2: #0d1928;
    --os-panel: #111f2f;
    --os-panel-2: #17283a;
    --os-line: rgba(188, 216, 231, 0.14);
    --os-line-strong: rgba(188, 216, 231, 0.28);
    --os-text: #edf7fa;
    --os-muted: #9db2c0;
    --os-aqua: #6fe4ce;
    --os-blue: #5ab8ff;
    --os-heat: #ff806b;
    --os-warm: #ffbf5d;
    --os-violet: #c69cff;
    --os-paper: #f3f6f4;
    --os-paper-2: #e7eeeb;
    --os-ink: #101d26;
    --os-rail: 86px;
    --os-top: 62px;
    color: var(--os-ink);
    background: var(--os-paper);
    overflow-x: hidden;
}

.climate-os h1,
.climate-os h2,
.climate-os h3,
.climate-os h4 {
    letter-spacing: -0.045em;
}

.climate-os .container {
    width: min(calc(100% - 72px), 1320px);
}

.climate-os .site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 auto 0 0;
    width: var(--os-rail);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13px 0 15px;
    color: var(--os-text);
    background: rgba(6, 15, 26, 0.96);
    border-right: 1px solid var(--os-line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.climate-os .site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(111, 228, 206, 0.08), transparent 18%),
        radial-gradient(circle at 50% 88%, rgba(90, 184, 255, 0.12), transparent 28%);
}

.climate-os .rail-brand {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--os-line);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.035);
}

.climate-os .rail-brand img {
    width: 46px;
    height: 46px;
}

.climate-os .rail-brand .brand-copy {
    display: none;
}

.climate-os .primary-nav {
    position: relative;
    z-index: 3;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 9px;
}

.climate-os .primary-nav > a {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #8196a5;
    border: 1px solid transparent;
    border-radius: 17px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.climate-os .primary-nav > a::before {
    content: "";
    position: absolute;
    left: -17px;
    width: 4px;
    height: 0;
    border-radius: 0 4px 4px 0;
    background: var(--os-aqua);
    box-shadow: 0 0 14px rgba(111, 228, 206, 0.65);
    transition: height 0.22s ease;
}

.climate-os .primary-nav > a:hover,
.climate-os .primary-nav > a.is-active {
    color: var(--os-text);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--os-line);
    transform: translateY(-1px);
}

.climate-os .primary-nav > a.is-active::before {
    height: 28px;
}

.climate-os .primary-nav svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.climate-os .primary-nav .nav-cta {
    margin-top: 8px;
    color: #06121d;
    background: var(--os-aqua);
    border-color: var(--os-aqua);
}

.climate-os .primary-nav .nav-cta:hover,
.climate-os .primary-nav .nav-cta.is-active {
    color: #06121d;
    background: #91f5df;
}

.climate-os .nav-label {
    position: absolute;
    left: 66px;
    top: 50%;
    z-index: 30;
    width: max-content;
    max-width: 220px;
    padding: 8px 11px;
    color: var(--os-text);
    background: #162536;
    border: 1px solid var(--os-line-strong);
    border-radius: 9px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-7px, -50%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.climate-os .primary-nav > a:hover .nav-label,
.climate-os .primary-nav > a:focus-visible .nav-label {
    opacity: 1;
    transform: translate(0, -50%);
}

.climate-os .rail-ogaus {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--os-muted);
    border-top: 1px solid var(--os-line);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.climate-os .rail-ogaus span {
    display: none;
}

.climate-os .nav-toggle {
    display: none;
}

.climate-os .command-bar {
    position: fixed;
    z-index: 950;
    top: 0;
    right: 0;
    left: var(--os-rail);
    height: var(--os-top);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 28px;
    color: var(--os-text);
    background: rgba(8, 18, 31, 0.88);
    border-bottom: 1px solid var(--os-line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.climate-os .command-brand,
.climate-os .command-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.climate-os .command-brand span {
    color: #dce8ed;
    font-size: 0.88rem;
    font-weight: 760;
}

.climate-os .command-brand i {
    color: #607889;
    font-style: normal;
}

.climate-os .command-brand strong {
    color: var(--os-muted);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.climate-os .command-meta {
    gap: 22px;
}

.climate-os .system-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--os-muted);
    font-size: 0.72rem;
    font-weight: 680;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.climate-os .system-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 0 5px rgba(111, 228, 206, 0.1), 0 0 16px rgba(111, 228, 206, 0.6);
}

.climate-os .command-meta > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--os-text);
    font-size: 0.8rem;
    font-weight: 740;
}

.climate-os main,
.climate-os .technical-handoff,
.climate-os .site-footer {
    margin-left: var(--os-rail);
}

.climate-os main {
    padding-top: var(--os-top);
}

/* Intro and climate workspace */
.climate-os .os-intro {
    position: relative;
    min-height: 100vh;
    padding: 82px 0 52px;
    color: var(--os-text);
    background: var(--os-bg);
    overflow: hidden;
}

.climate-os .os-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 13%, rgba(90, 184, 255, 0.16), transparent 28%),
        radial-gradient(circle at 18% 2%, rgba(111, 228, 206, 0.12), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 46px 46px, 46px 46px;
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.climate-os .os-backdrop::before,
.climate-os .os-backdrop::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(111, 228, 206, 0.12);
    border-radius: 50%;
}

.climate-os .os-backdrop::before {
    width: 560px;
    height: 560px;
    right: -210px;
    top: -160px;
    box-shadow: 0 0 0 70px rgba(90, 184, 255, 0.025), 0 0 0 150px rgba(90, 184, 255, 0.018);
}

.climate-os .os-backdrop::after {
    width: 360px;
    height: 360px;
    left: 4%;
    bottom: -220px;
    box-shadow: 0 0 0 55px rgba(111, 228, 206, 0.022), 0 0 0 120px rgba(111, 228, 206, 0.014);
}

.climate-os .os-intro-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    align-items: end;
    gap: 68px;
    margin-bottom: 42px;
}

.climate-os .os-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--os-muted);
    font-size: 0.71rem;
    font-weight: 760;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.climate-os .os-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 0 5px rgba(111, 228, 206, 0.11);
}

.climate-os .os-intro h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.8rem, 7vw, 7.8rem);
    font-weight: 720;
    line-height: 0.91;
}

.climate-os .os-intro h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(100deg, var(--os-aqua), #7dc4ff 58%, #b99fff);
    -webkit-background-clip: text;
    background-clip: text;
}

.climate-os .os-intro-copy {
    max-width: 470px;
    padding-bottom: 8px;
}

.climate-os .os-intro-copy p {
    margin-bottom: 24px;
    color: #b5c6d1;
    font-size: 1.08rem;
    line-height: 1.7;
}

.climate-os .os-intro-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.climate-os .button-signal {
    color: #06131e;
    background: var(--os-aqua);
    border-color: var(--os-aqua);
    border-radius: 13px;
    box-shadow: 0 15px 38px rgba(111, 228, 206, 0.16);
}

.climate-os .button-signal:hover {
    color: #06131e;
    background: #8cf2df;
    border-color: #8cf2df;
    transform: translateY(-2px);
}

.climate-os .os-text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #d2e0e7;
    background: transparent;
    border: 0;
    font-size: 0.86rem;
    font-weight: 700;
}

.climate-os .climate-workspace {
    position: relative;
    z-index: 3;
    padding: 0;
    background: #0d1a29;
    border: 1px solid rgba(166, 201, 218, 0.22);
    border-radius: 26px;
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    --layer: var(--os-heat);
}

.climate-os .climate-workspace[data-layer="water"] { --layer: var(--os-blue); }
.climate-os .climate-workspace[data-layer="drought"] { --layer: var(--os-warm); }
.climate-os .climate-workspace[data-layer="wind"] { --layer: var(--os-aqua); }
.climate-os .climate-workspace[data-layer="ground"] { --layer: var(--os-violet); }

.climate-os .workspace-toolbar {
    height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 130px;
    align-items: center;
    gap: 26px;
    padding: 0 25px;
    color: var(--os-text);
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--os-line);
}

.climate-os .workspace-project {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 14px;
    align-items: center;
}

.climate-os .workspace-project .workspace-live {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--os-aqua);
    background: rgba(111, 228, 206, 0.07);
    border: 1px solid rgba(111, 228, 206, 0.2);
    border-radius: 10px;
    font-size: 0.62rem;
    font-weight: 780;
    letter-spacing: 0.1em;
}

.climate-os .workspace-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 10px var(--os-aqua);
}

.climate-os .workspace-project strong {
    align-self: end;
    font-size: 0.9rem;
    line-height: 1.2;
}

.climate-os .workspace-project small {
    align-self: start;
    color: #7f96a6;
    font-size: 0.69rem;
}

.climate-os .workspace-scenario {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid var(--os-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.climate-os .workspace-scenario > span {
    padding: 0 9px;
    color: #71899a;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.climate-os .workspace-scenario button {
    min-width: 56px;
    height: 34px;
    color: #8198a8;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-size: 0.71rem;
    font-weight: 780;
}

.climate-os .workspace-scenario button:hover,
.climate-os .workspace-scenario button.is-active {
    color: #07121f;
    background: var(--layer);
}

.climate-os .workspace-reference {
    padding-left: 20px;
    border-left: 1px solid var(--os-line);
}

.climate-os .workspace-reference span,
.climate-os .workspace-reference strong {
    display: block;
}

.climate-os .workspace-reference span {
    color: #6e8798;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.climate-os .workspace-reference strong {
    color: #bed0d9;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.climate-os .workspace-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 328px;
    min-height: 620px;
}

.climate-os .climate-map {
    position: relative;
    min-width: 0;
    min-height: 620px;
    background: #091421;
    border-right: 1px solid var(--os-line);
    overflow: hidden;
}

.climate-os .climate-map::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 12, 20, 0.48), transparent 17%, transparent 83%, rgba(5, 12, 20, 0.26)),
        linear-gradient(180deg, rgba(5, 12, 20, 0.28), transparent 20%, transparent 78%, rgba(5, 12, 20, 0.38));
}

.climate-os .project-twin {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.climate-os .climate-layer {
    opacity: 0;
    transition: opacity 0.48s ease;
}

.climate-os .climate-workspace[data-layer="heat"] .layer-heat,
.climate-os .climate-workspace[data-layer="water"] .layer-water,
.climate-os .climate-workspace[data-layer="drought"] .layer-drought,
.climate-os .climate-workspace[data-layer="wind"] .layer-wind,
.climate-os .climate-workspace[data-layer="ground"] .layer-ground {
    opacity: 1;
}

.climate-os .pulse-marker circle:first-child {
    fill: var(--layer);
    filter: drop-shadow(0 0 8px var(--layer));
}

.climate-os .pulse-ring {
    fill: none;
    stroke: var(--layer);
    stroke-width: 2;
    animation: workspace-pulse 2.1s ease-out infinite;
}

@keyframes workspace-pulse {
    0% { opacity: 0.9; transform: scale(0.45); }
    75%, 100% { opacity: 0; transform: scale(1.6); }
}

.climate-os .map-coordinate,
.climate-os .map-scale,
.climate-os .map-overlay,
.climate-os .map-marker-label {
    position: absolute;
    z-index: 5;
}

.climate-os .map-coordinate {
    color: rgba(212, 229, 237, 0.44);
    font-size: 0.61rem;
    font-weight: 650;
    letter-spacing: 0.1em;
}

.climate-os .map-coordinate-a { left: 18px; bottom: 20px; }
.climate-os .map-coordinate-b { right: 18px; bottom: 20px; }

.climate-os .map-scale {
    left: 50%;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #7f97a7;
    font-size: 0.6rem;
    transform: translateX(-50%);
}

.climate-os .map-scale span {
    width: 64px;
    height: 5px;
    border: solid #7992a3;
    border-width: 0 1px 1px;
}

.climate-os .map-overlay {
    padding: 10px 13px;
    color: var(--os-text);
    background: rgba(9, 21, 33, 0.82);
    border: 1px solid rgba(190, 218, 230, 0.18);
    border-radius: 10px;
    backdrop-filter: blur(12px);
}

.climate-os .map-overlay span,
.climate-os .map-marker-label small {
    display: block;
    margin-bottom: 2px;
    color: #71899a;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.climate-os .map-overlay strong,
.climate-os .map-marker-label strong {
    display: block;
    font-size: 0.76rem;
    line-height: 1.25;
}

.climate-os .map-overlay-title { left: 20px; top: 20px; }
.climate-os .map-overlay-title strong { color: var(--layer); }
.climate-os .map-overlay-site { right: 20px; top: 20px; }

.climate-os .map-marker-label {
    left: 55%;
    top: 39%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--os-text);
    background: rgba(9, 21, 33, 0.88);
    border: 1px solid color-mix(in srgb, var(--layer) 45%, transparent);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.climate-os .map-marker-label > span {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--layer);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--layer) 16%, transparent), 0 0 18px var(--layer);
}

.climate-os .workspace-inspector {
    display: flex;
    flex-direction: column;
    padding: 22px;
    color: var(--os-text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%),
        #101d2c;
}

.climate-os .inspector-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: #8097a7;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.climate-os .inspector-head i {
    padding: 4px 7px;
    color: var(--layer);
    background: color-mix(in srgb, var(--layer) 9%, transparent);
    border: 1px solid color-mix(in srgb, var(--layer) 24%, transparent);
    border-radius: 6px;
    font-style: normal;
}

.climate-os .risk-gauge {
    position: relative;
    height: 150px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
}

.climate-os .risk-gauge svg {
    position: absolute;
    width: 210px;
    overflow: visible;
}

.climate-os .gauge-track,
.climate-os .gauge-value {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}

.climate-os .gauge-track { stroke: rgba(255, 255, 255, 0.08); }
.climate-os .gauge-value {
    stroke: var(--layer);
    stroke-dasharray: 72 100;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--layer) 65%, transparent));
    transition: stroke-dasharray 0.4s ease;
}

.climate-os .risk-gauge > div {
    position: relative;
    top: 22px;
    text-align: center;
}

.climate-os .risk-gauge strong {
    font-size: 2.7rem;
    line-height: 1;
}

.climate-os .risk-gauge span {
    color: #7f96a6;
    font-size: 0.8rem;
}

.climate-os .risk-gauge small {
    display: block;
    margin-top: 5px;
    color: var(--layer);
    font-size: 0.65rem;
    font-weight: 840;
    letter-spacing: 0.13em;
}

.climate-os .inspector-summary {
    min-height: 74px;
    margin: 0 0 15px;
    color: #b7c6cf;
    font-size: 0.79rem;
    line-height: 1.55;
}

.climate-os .inspector-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 15px;
    border: 1px solid var(--os-line);
    border-radius: 12px;
    overflow: hidden;
}

.climate-os .inspector-metrics > div {
    padding: 10px 8px;
    border-right: 1px solid var(--os-line);
}

.climate-os .inspector-metrics > div:last-child { border-right: 0; }

.climate-os .inspector-metrics span,
.climate-os .inspector-action > span,
.climate-os .project-mode > span {
    display: block;
    color: #6f8798;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.climate-os .inspector-metrics strong {
    display: block;
    margin-top: 3px;
    color: #e5f1f4;
    font-size: 0.7rem;
}

.climate-os .inspector-action {
    margin-bottom: 15px;
    padding: 12px 13px;
    background: color-mix(in srgb, var(--layer) 7%, transparent);
    border-left: 3px solid var(--layer);
    border-radius: 2px 9px 9px 2px;
}

.climate-os .inspector-action p {
    margin: 5px 0 0;
    color: #d4e2e8;
    font-size: 0.72rem;
    line-height: 1.45;
}

.climate-os .project-mode {
    margin-top: auto;
    margin-bottom: 15px;
}

.climate-os .project-mode > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 7px;
}

.climate-os .project-mode button {
    min-width: 0;
    height: 34px;
    padding: 0 7px;
    color: #8399a8;
    background: transparent;
    border: 1px solid var(--os-line);
    border-radius: 8px;
    font-size: 0.62rem;
    font-weight: 720;
}

.climate-os .project-mode button:hover,
.climate-os .project-mode button.is-active {
    color: #07121f;
    background: #d9e5eb;
    border-color: #d9e5eb;
}

.climate-os .inspector-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    color: #07121f;
    background: var(--os-aqua);
    border-radius: 11px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.climate-os .inspector-cta:hover {
    color: #07121f;
    background: #8bf2df;
    transform: translateY(-2px);
}

.climate-os .inspector-cta span {
    display: grid;
}

.climate-os .inspector-cta small {
    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.climate-os .inspector-cta strong {
    font-size: 0.74rem;
}

.climate-os .inspector-cta i {
    font-size: 1.35rem;
    font-style: normal;
}

.climate-os .layer-dock {
    display: grid;
    grid-template-columns: 76px repeat(5, 1fr);
    gap: 0;
    min-height: 88px;
    color: var(--os-text);
    background: #091421;
    border-top: 1px solid var(--os-line);
}

.climate-os .dock-label {
    display: grid;
    place-items: center;
    color: #61798a;
    border-right: 1px solid var(--os-line);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.climate-os .layer-dock button {
    position: relative;
    display: grid;
    grid-template-columns: 12px 1fr;
    align-content: center;
    column-gap: 10px;
    padding: 12px 16px;
    color: #8298a7;
    text-align: left;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--os-line);
    transition: color 0.18s ease, background 0.18s ease;
}

.climate-os .layer-dock button:last-child { border-right: 0; }

.climate-os .layer-dock button::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.climate-os .layer-dock button:hover,
.climate-os .layer-dock button.is-active {
    color: var(--layer-button-color, var(--os-aqua));
    background: rgba(255, 255, 255, 0.025);
}

.climate-os .layer-dock button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.climate-os .layer-dock button > i {
    grid-row: 1 / 3;
    align-self: center;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--layer-button-color, var(--os-aqua));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--layer-button-color, var(--os-aqua)) 11%, transparent);
}

.climate-os .layer-dock button span {
    color: currentColor;
    font-size: 0.74rem;
    font-weight: 760;
}

.climate-os .layer-dock button small {
    color: #61798a;
    font-size: 0.59rem;
}

.climate-os .layer-heat-button { --layer-button-color: var(--os-heat); }
.climate-os .layer-water-button { --layer-button-color: var(--os-blue); }
.climate-os .layer-drought-button { --layer-button-color: var(--os-warm); }
.climate-os .layer-wind-button { --layer-button-color: var(--os-aqua); }
.climate-os .layer-ground-button { --layer-button-color: var(--os-violet); }

.climate-os .workspace-footnote {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 25px;
    padding-top: 19px;
    color: #71899a;
}

.climate-os .workspace-footnote > span {
    color: #7f97a7;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.climate-os .workspace-footnote p {
    margin: 0;
    font-size: 0.68rem;
}

.climate-os .workspace-footnote a {
    color: #c5d5dd;
    font-size: 0.69rem;
    font-weight: 700;
}

/* Decision system */
.climate-os .decision-system {
    position: relative;
    padding: 124px 0 92px;
    color: var(--os-ink);
    background: var(--os-paper);
}

.climate-os .decision-system::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(15, 35, 45, 0.04) 50%, transparent 50.1%),
        radial-gradient(circle at 86% 18%, rgba(90, 184, 255, 0.12), transparent 22%);
}

.climate-os .decision-header {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 0.48fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 78px;
}

.climate-os .system-index {
    align-self: start;
    padding-top: 12px;
    color: #55707c;
    font-size: 0.65rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.climate-os .system-index-light { color: #7e99a8; }

.climate-os .decision-header h2,
.climate-os .sector-console-header h2,
.climate-os .resource-console-copy h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5.7rem);
    line-height: 0.98;
}

.climate-os .decision-header p,
.climate-os .sector-console-header p {
    margin: 0;
    color: #5c7079;
    font-size: 1rem;
    line-height: 1.65;
}

.climate-os .decision-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    border-top: 1px solid #cfd9d6;
    border-bottom: 1px solid #cfd9d6;
}

.climate-os .decision-line {
    position: absolute;
    top: 47px;
    right: 11%;
    left: 11%;
    height: 1px;
    background: #a9bab5;
}

.climate-os .decision-line span {
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 0 6px rgba(111, 228, 206, 0.15);
    animation: decision-scan 5s linear infinite;
}

@keyframes decision-scan {
    from { left: 0; }
    to { left: 100%; }
}

.climate-os .decision-track article {
    position: relative;
    min-height: 310px;
    padding: 88px 30px 38px;
    border-right: 1px solid #cfd9d6;
}

.climate-os .decision-track article:last-child { border-right: 0; }

.climate-os .decision-number {
    position: absolute;
    z-index: 2;
    top: 26px;
    left: 30px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #0b1720;
    background: var(--os-paper);
    border: 1px solid #8da39d;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 820;
}

.climate-os .decision-track article:nth-child(3) .decision-number { background: #d7fff7; border-color: #6fe4ce; }
.climate-os .decision-track article:nth-child(4) .decision-number { background: #dceeff; border-color: #8ac9ff; }
.climate-os .decision-track article:nth-child(5) .decision-number { background: #fff0d8; border-color: #ffbf5d; }

.climate-os .decision-track small {
    color: #64808b;
    font-size: 0.58rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.climate-os .decision-track h3 {
    margin: 12px 0 18px;
    font-size: clamp(1.35rem, 2.1vw, 2.1rem);
}

.climate-os .decision-track p {
    margin: 0;
    color: #5e7078;
    font-size: 0.91rem;
    line-height: 1.62;
}

.climate-os .decision-command {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: #5a6c74;
    font-size: 0.82rem;
}

.climate-os .decision-command a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #0c2028;
    font-weight: 780;
}

/* Resilience compare */
.climate-os .resilience-twin {
    position: relative;
    padding: 112px 0;
    color: var(--os-text);
    background:
        radial-gradient(circle at 87% 25%, rgba(111, 228, 206, 0.12), transparent 30%),
        radial-gradient(circle at 7% 88%, rgba(90, 184, 255, 0.11), transparent 25%),
        var(--os-bg);
}

.climate-os .resilience-twin::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, #000 40%, #000 80%, transparent);
}

.climate-os .resilience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
    gap: 72px;
    align-items: center;
}

.climate-os .resilience-copy h2 {
    margin: 20px 0 24px;
    font-size: clamp(3rem, 5.2vw, 6rem);
    line-height: 0.95;
}

.climate-os .resilience-copy > p {
    max-width: 510px;
    color: #a9bdc8;
    font-size: 1.04rem;
    line-height: 1.7;
}

.climate-os .resilience-notes {
    margin: 32px 0 34px;
    border-top: 1px solid var(--os-line);
}

.climate-os .resilience-notes > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--os-line);
}

.climate-os .resilience-notes span {
    color: var(--os-aqua);
    font-size: 0.65rem;
    font-weight: 820;
}

.climate-os .resilience-notes p {
    margin: 0;
    color: #bccbd3;
    font-size: 0.83rem;
}

.climate-os .compare-module {
    background: #0c1724;
    border: 1px solid var(--os-line-strong);
    border-radius: 24px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.climate-os .compare-topbar {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: #8da3b1;
    border-bottom: 1px solid var(--os-line);
    font-size: 0.62rem;
    font-weight: 780;
    letter-spacing: 0.08em;
}

.climate-os .compare-topbar div {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: lowercase;
    letter-spacing: 0;
}

.climate-os .compare-topbar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--os-aqua);
}

.climate-os .compare-viewport {
    position: relative;
    aspect-ratio: 1.38 / 1;
    min-height: 430px;
    overflow: hidden;
}

.climate-os .compare-scene {
    position: absolute;
    inset: 0;
}

.climate-os .compare-scene svg {
    width: 100%;
    height: 100%;
}

.climate-os .compare-after {
    width: 58%;
    overflow: hidden;
}

.climate-os .compare-after svg {
    width: calc(100% / var(--compare-ratio, .58));
    max-width: none;
}

.climate-os .compare-label {
    position: absolute;
    top: 18px;
    padding: 7px 9px;
    border-radius: 7px;
    font-size: 0.58rem;
    font-weight: 820;
    letter-spacing: 0.11em;
}

.climate-os .compare-label-left {
    left: 18px;
    color: #ffd2ca;
    background: rgba(255, 128, 107, 0.13);
    border: 1px solid rgba(255, 128, 107, 0.3);
}

.climate-os .compare-label-right {
    left: 18px;
    color: #bbffe9;
    background: rgba(111, 228, 206, 0.13);
    border: 1px solid rgba(111, 228, 206, 0.3);
}

.climate-os .compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 58%;
    width: 2px;
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    transform: translateX(-1px);
}

.climate-os .compare-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5faf8;
    border: 6px solid rgba(9, 19, 30, 0.75);
    transform: translate(-50%, -50%);
}

.climate-os .compare-divider span::before,
.climate-os .compare-divider span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border: solid #182633;
    border-width: 0 0 2px 2px;
}

.climate-os .compare-divider span::before { left: 7px; transform: translateY(-50%) rotate(45deg); }
.climate-os .compare-divider span::after { right: 7px; transform: translateY(-50%) rotate(225deg); }

.climate-os .compare-control {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: #758d9d;
    border-top: 1px solid var(--os-line);
    font-size: 0.6rem;
}

.climate-os .compare-control input {
    width: 100%;
    height: 4px;
    appearance: none;
    background: linear-gradient(90deg, var(--os-aqua) 58%, rgba(255,255,255,.12) 58%);
    border-radius: 3px;
    outline: none;
}

.climate-os .compare-control input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    appearance: none;
    background: #fff;
    border: 4px solid var(--os-aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(111, 228, 206, 0.12);
}

.climate-os .compare-control input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 4px solid var(--os-aqua);
    border-radius: 50%;
}

/* Sector console */
.climate-os .sector-console {
    padding: 124px 0;
    color: var(--os-ink);
    background:
        linear-gradient(180deg, rgba(90, 184, 255, 0.08), transparent 26%),
        var(--os-paper);
}

.climate-os .sector-console-header {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) minmax(300px, 0.5fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 56px;
}

.climate-os .sector-interface {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 610px;
    padding: 0;
    background: #fff;
    border: 1px solid #d4dfdc;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(21, 45, 55, 0.1);
    overflow: hidden;
}

.climate-os .sector-nav {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: #e9efed;
    border-right: 1px solid #d4dfdc;
}

.climate-os .sector-nav button {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    min-height: 78px;
    padding: 0 15px;
    color: #657780;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ced9d6;
    font-size: 0.82rem;
    font-weight: 720;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.climate-os .sector-nav button span {
    color: #8da09f;
    font-size: 0.61rem;
    font-weight: 840;
}

.climate-os .sector-nav button::after {
    content: "";
    position: absolute;
    right: 12px;
    width: 7px;
    height: 7px;
    border: solid currentColor;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    opacity: 0;
}

.climate-os .sector-nav button:hover,
.climate-os .sector-nav button.is-active {
    color: #0a2028;
    background: #fff;
    border-radius: 13px;
    transform: translateX(3px);
}

.climate-os .sector-nav button.is-active::after { opacity: 1; }

.climate-os .sector-screen {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 1.05fr);
    gap: 46px;
    align-items: center;
    padding: 42px;
}

.climate-os .sector-visual {
    position: relative;
    aspect-ratio: 1.1 / 1;
}

.climate-os .sector-visual::after {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(111, 228, 206, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(90, 184, 255, 0.025), 0 0 0 80px rgba(90, 184, 255, 0.018);
    pointer-events: none;
}

.climate-os .sector-graphic {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.climate-os .sector-graphic.is-active { opacity: 1; }

.climate-os .sector-code {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 8px;
    color: #16675c;
    background: #e1faf5;
    border-radius: 6px;
    font-size: 0.59rem;
    font-weight: 840;
    letter-spacing: 0.1em;
}

.climate-os .sector-data h3 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.3vw, 3.8rem);
    line-height: 1;
}

.climate-os .sector-data > p {
    color: #60727a;
    font-size: 0.96rem;
    line-height: 1.65;
}

.climate-os .sector-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 22px 0;
    border-top: 1px solid #d6e0dd;
    border-bottom: 1px solid #d6e0dd;
}

.climate-os .sector-columns small {
    color: #758a90;
    font-size: 0.58rem;
    font-weight: 840;
    letter-spacing: 0.12em;
}

.climate-os .sector-columns ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.climate-os .sector-columns li {
    position: relative;
    padding-left: 17px;
    color: #4f626b;
    font-size: 0.78rem;
}

.climate-os .sector-columns li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--os-aqua);
}

.climate-os .sector-data > a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #102831;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Resource console */
.climate-os .resource-console {
    padding: 112px 0;
    color: var(--os-text);
    background:
        radial-gradient(circle at 18% 20%, rgba(90, 184, 255, 0.1), transparent 28%),
        #0c1724;
}

.climate-os .resource-console-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.68fr) minmax(560px, 1.32fr);
    gap: 90px;
    align-items: center;
}

.climate-os .resource-console-copy h2 {
    margin: 18px 0 23px;
}

.climate-os .resource-console-copy p {
    max-width: 470px;
    margin-bottom: 30px;
    color: #a6bac5;
    font-size: 1rem;
    line-height: 1.7;
}

.climate-os .resource-register {
    border-top: 1px solid var(--os-line-strong);
}

.climate-os .resource-register a {
    display: grid;
    grid-template-columns: 66px 1fr minmax(150px, 0.58fr) 28px;
    align-items: center;
    gap: 20px;
    min-height: 92px;
    padding: 0 14px;
    color: var(--os-text);
    border-bottom: 1px solid var(--os-line-strong);
    transition: background 0.18s ease, padding 0.18s ease;
}

.climate-os .resource-register a:hover {
    color: var(--os-text);
    padding-left: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.climate-os .resource-register span {
    color: var(--os-aqua);
    font-size: 0.62rem;
    font-weight: 840;
    letter-spacing: 0.1em;
}

.climate-os .resource-register strong {
    font-size: 1rem;
}

.climate-os .resource-register small {
    color: #78909f;
    font-size: 0.74rem;
}

.climate-os .resource-register i {
    color: var(--os-aqua);
    font-size: 1.2rem;
    font-style: normal;
}

/* Technical handoff and footer */
.climate-os .technical-handoff {
    position: relative;
    padding: 76px 0;
    color: #06141c;
    background: var(--os-aqua);
    overflow: hidden;
}

.climate-os .handoff-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.33;
}

.climate-os .handoff-scan::before,
.climate-os .handoff-scan::after,
.climate-os .handoff-scan span {
    content: "";
    position: absolute;
    border: 1px solid rgba(4, 26, 32, 0.34);
    border-radius: 50%;
}

.climate-os .handoff-scan::before { width: 340px; height: 340px; right: -90px; top: -145px; }
.climate-os .handoff-scan::after { width: 240px; height: 240px; right: -40px; top: -95px; }
.climate-os .handoff-scan span:nth-child(1) { width: 140px; height: 140px; right: 10px; top: -45px; }
.climate-os .handoff-scan span:nth-child(2) { width: 520px; height: 2px; left: 8%; top: 50%; border-radius: 0; border-width: 1px 0 0; transform: rotate(-8deg); }
.climate-os .handoff-scan span:nth-child(3) { width: 9px; height: 9px; left: 31%; top: 44%; background: #06141c; border: 0; box-shadow: 0 0 0 10px rgba(6,20,28,.08); }

.climate-os .handoff-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 250px;
    gap: 48px;
    align-items: center;
}

.climate-os .handoff-code {
    align-self: start;
    padding-top: 9px;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.climate-os .handoff-grid h2 {
    max-width: 850px;
    margin-bottom: 15px;
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 0.98;
}

.climate-os .handoff-grid p {
    max-width: 760px;
    margin: 0;
    color: rgba(6, 20, 28, 0.72);
    font-size: 0.92rem;
}

.climate-os .handoff-actions {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.climate-os .technical-handoff .button-light {
    color: var(--os-text);
    background: var(--os-bg);
    border-color: var(--os-bg);
    border-radius: 12px;
}

.climate-os .handoff-link {
    font-size: 0.74rem;
    font-weight: 800;
}

.climate-os .site-footer {
    padding: 24px 0 16px;
    color: #a4b7c2;
    background: #060e18;
}

.climate-os .footer-system {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 34px;
    align-items: center;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--os-line);
}

.climate-os .footer-identity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.climate-os .footer-identity img { width: 34px; height: 34px; }
.climate-os .footer-identity span { display: grid; }
.climate-os .footer-identity strong { color: #e6f0f4; font-size: 0.8rem; }
.climate-os .footer-identity small { color: #657d8d; font-size: 0.59rem; }

.climate-os .footer-system nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.climate-os .footer-system nav a,
.climate-os .footer-ogaus-link {
    color: #8198a7;
    font-size: 0.69rem;
    font-weight: 700;
}

.climate-os .footer-system nav a:hover,
.climate-os .footer-ogaus-link:hover { color: var(--os-aqua); }

.climate-os .footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    color: #516a7a;
    font-size: 0.61rem;
}

.climate-os .footer-legal p { margin: 0; }
.climate-os .footer-legal div { display: flex; gap: 18px; }

.climate-os .cookie-panel {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(430px, calc(100% - 48px));
    padding: 16px;
    color: var(--os-text);
    background: rgba(11, 24, 38, 0.96);
    border: 1px solid var(--os-line-strong);
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0,0,0,.38);
    backdrop-filter: blur(18px);
}

.climate-os .cookie-panel p { color: #91a6b3; }

/* Inner pages — same workspace language, no classic blog shell */
.climate-os:not(.page-home) {
    background: #edf2f0;
}

.climate-os:not(.page-home) main {
    min-height: 70vh;
    background: #edf2f0;
}

.climate-os .page-hero {
    position: relative;
    padding: 92px 0 78px;
    color: var(--os-text);
    background:
        radial-gradient(circle at 84% 26%, rgba(90,184,255,.13), transparent 25%),
        radial-gradient(circle at 18% 15%, rgba(111,228,206,.1), transparent 24%),
        var(--os-bg);
    overflow: hidden;
}

.climate-os .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.climate-os .page-hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, .5fr);
    gap: 70px;
}

.climate-os .page-hero h1 {
    max-width: 860px;
    font-size: clamp(3.3rem, 6vw, 7rem);
    line-height: .93;
}

.climate-os .page-hero .lead,
.climate-os .page-hero p {
    color: #a8bdc7;
}

.climate-os .page-hero .eyebrow {
    color: var(--os-aqua);
}

.climate-os .page-hero .breadcrumbs {
    color: #7890a0;
}

.climate-os .page-hero-aside,
.climate-os .aside-card,
.climate-os .contact-aside-card,
.climate-os .info-card,
.climate-os .feature-card,
.climate-os .metric-card,
.climate-os .resource-card,
.climate-os .process-step {
    border-radius: 14px;
}

.climate-os .page-hero-aside {
    color: var(--os-text);
    background: rgba(255,255,255,.045);
    border: 1px solid var(--os-line-strong);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.climate-os .page-hero-aside p,
.climate-os .page-hero-aside li { color: #a9bdc7; }

.climate-os .section {
    padding: clamp(72px, 7.5vw, 118px) 0;
}

.climate-os .section-surface {
    background: #e5edeb;
}

.climate-os .section-dark {
    background: var(--os-bg);
}

.climate-os .content-grid,
.climate-os .contact-layout,
.climate-os .evaluator-shell {
    gap: 38px;
}

.climate-os .content-main,
.climate-os .contact-card,
.climate-os .evaluator-card {
    background: #fff;
    border: 1px solid #d2dedb;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(18, 42, 51, .08);
}

.climate-os .content-main {
    padding: clamp(28px, 4vw, 58px);
}

.climate-os .aside-card,
.climate-os .contact-aside-card,
.climate-os .feature-card,
.climate-os .metric-card,
.climate-os .resource-card,
.climate-os .info-card,
.climate-os .process-step {
    background: #fff;
    border: 1px solid #d2dedb;
    box-shadow: none;
}

.climate-os .button {
    border-radius: 11px;
}

.climate-os .button:not(.button-signal):not(.button-light):not(.button-secondary):not(.button-ghost):not(.button-accent) {
    background: #0d1e2b;
    border-color: #0d1e2b;
}

.climate-os .button-secondary {
    color: #172831;
    background: #fff;
    border-color: #bdcbc7;
}

.climate-os .input,
.climate-os .select,
.climate-os .textarea {
    border-radius: 10px;
    border-color: #c8d5d2;
    background: #f7faf9;
}

.climate-os .input:focus,
.climate-os .select:focus,
.climate-os .textarea:focus {
    border-color: #3eb9a6;
    box-shadow: 0 0 0 4px rgba(111,228,206,.14);
}

.climate-os .evaluator-sidebar {
    border-radius: 18px;
    background: var(--os-bg);
    border: 1px solid #1a3244;
    box-shadow: 0 22px 60px rgba(7,18,31,.18);
}

.climate-os .evaluator-sidebar,
.climate-os .evaluator-sidebar p,
.climate-os .evaluator-sidebar small { color: #a5bac5; }

.climate-os .step-nav-item.is-active,
.climate-os .progress-fill {
    background: var(--os-aqua);
}

.climate-os .option-card,
.climate-os .check-option {
    border-radius: 12px;
}

.climate-os .option-card:has(input:checked),
.climate-os .check-option:has(input:checked) {
    border-color: #47bba9;
    background: #e9fbf7;
}

.climate-os .result-header,
.climate-os .evaluation-result {
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 1180px) {
    .climate-os {
        --os-rail: 76px;
    }

    .climate-os .container {
        width: min(calc(100% - 48px), 1240px);
    }

    .climate-os .os-intro-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .climate-os .os-intro-copy {
        max-width: 760px;
    }

    .climate-os .workspace-main {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .climate-os .resilience-grid,
    .climate-os .resource-console-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .climate-os .resilience-copy {
        max-width: 780px;
    }

    .climate-os .sector-interface {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .climate-os .sector-screen {
        grid-template-columns: 1fr;
    }

    .climate-os .sector-visual {
        max-width: 500px;
        margin-inline: auto;
    }

    .climate-os .handoff-grid {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .climate-os .handoff-actions {
        grid-column: 2;
    }
}

@media (max-width: 980px) {
    .climate-os {
        --os-rail: 0px;
        --os-top: 72px;
    }

    .climate-os .site-header {
        inset: 0 0 auto 0;
        width: 100%;
        height: 72px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--os-line);
    }

    .climate-os .rail-brand {
        width: auto;
        height: auto;
        display: flex;
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .climate-os .rail-brand img { width: 40px; height: 40px; }

    .climate-os .rail-brand .brand-copy {
        display: grid;
    }

    .climate-os .rail-brand .brand-copy strong {
        color: var(--os-text);
        font-size: 0.86rem;
    }

    .climate-os .rail-brand .brand-copy small {
        color: #71899a;
        font-size: 0.58rem;
    }

    .climate-os .nav-toggle {
        position: relative;
        z-index: 1003;
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        padding: 0;
        background: rgba(255,255,255,.06);
        border: 1px solid var(--os-line);
        border-radius: 14px;
    }

    .climate-os .nav-toggle span:not(.sr-only) {
        position: absolute;
        width: 20px;
        height: 2px;
        background: #e7f0f4;
        border-radius: 2px;
        transition: transform .2s ease;
    }

    .climate-os .nav-toggle span:nth-child(2) { transform: translateY(-4px); }
    .climate-os .nav-toggle span:nth-child(3) { transform: translateY(4px); }
    .climate-os .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
    .climate-os .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

    .climate-os .primary-nav {
        position: fixed;
        inset: 72px 0 0;
        z-index: 1001;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 26px 20px 40px;
        background: rgba(6, 15, 26, .985);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        overflow-y: auto;
    }

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

    .climate-os .primary-nav > a {
        width: 100%;
        height: 58px;
        grid-template-columns: 42px 1fr;
        justify-content: start;
        padding: 0 14px;
        border-color: var(--os-line);
    }

    .climate-os .primary-nav > a::before {
        left: -1px;
    }

    .climate-os .nav-label {
        position: static;
        display: block;
        padding: 0;
        color: inherit;
        background: transparent;
        border: 0;
        font-size: 0.84rem;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .climate-os .primary-nav > a:hover .nav-label,
    .climate-os .primary-nav > a:focus-visible .nav-label {
        transform: none;
    }

    .climate-os .rail-ogaus { display: none; }
    .climate-os .command-bar { display: none; }
    .climate-os main { padding-top: 72px; }
    .climate-os main,
    .climate-os .technical-handoff,
    .climate-os .site-footer { margin-left: 0; }

    .climate-os .workspace-toolbar {
        grid-template-columns: 1fr auto;
    }

    .climate-os .workspace-reference { display: none; }

    .climate-os .workspace-main {
        grid-template-columns: 1fr;
    }

    .climate-os .climate-map {
        min-height: 560px;
        border-right: 0;
        border-bottom: 1px solid var(--os-line);
    }

    .climate-os .workspace-inspector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 22px;
    }

    .climate-os .inspector-head,
    .climate-os .risk-gauge,
    .climate-os .inspector-summary {
        grid-column: 1;
    }

    .climate-os .inspector-metrics,
    .climate-os .inspector-action,
    .climate-os .project-mode,
    .climate-os .inspector-cta {
        grid-column: 2;
    }

    .climate-os .inspector-metrics { grid-row: 1 / 2; margin-bottom: 0; }
    .climate-os .inspector-action { grid-row: 2 / 3; margin-bottom: 0; }
    .climate-os .project-mode { grid-row: 3 / 4; margin: 0; }
    .climate-os .inspector-cta { grid-row: 4 / 5; }

    .climate-os .decision-header,
    .climate-os .sector-console-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .climate-os .decision-track {
        grid-template-columns: 1fr 1fr;
    }

    .climate-os .decision-track article:nth-child(2) { border-bottom: 1px solid #cfd9d6; }
    .climate-os .decision-track article:nth-child(3) { border-right: 0; border-bottom: 1px solid #cfd9d6; }
    .climate-os .decision-line { display: none; }

    .climate-os .sector-interface {
        grid-template-columns: 1fr;
    }

    .climate-os .sector-nav {
        display: grid;
        grid-template-columns: repeat(5, minmax(160px, 1fr));
        border-right: 0;
        border-bottom: 1px solid #d4dfdc;
        overflow-x: auto;
    }

    .climate-os .sector-nav button {
        border-right: 1px solid #ced9d6;
        border-bottom: 0;
    }

    .climate-os .sector-nav button:hover,
    .climate-os .sector-nav button.is-active {
        transform: translateY(-2px);
    }

    .climate-os .footer-system {
        grid-template-columns: 1fr max-content;
    }

    .climate-os .footer-system nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .climate-os .container,
    .climate-os .narrow {
        width: min(calc(100% - 30px), 1320px);
    }

    .climate-os .os-intro {
        padding: 54px 0 34px;
    }

    .climate-os .os-intro h1 {
        font-size: clamp(3.1rem, 16vw, 5.2rem);
    }

    .climate-os .os-intro-copy p {
        font-size: 0.98rem;
    }

    .climate-os .climate-workspace {
        width: calc(100% - 14px);
        border-radius: 18px;
    }

    .climate-os .workspace-toolbar {
        height: auto;
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 15px;
    }

    .climate-os .workspace-project {
        grid-template-columns: 1fr;
    }

    .climate-os .workspace-project .workspace-live {
        grid-row: auto;
        width: max-content;
        margin-bottom: 3px;
    }

    .climate-os .workspace-scenario {
        justify-self: stretch;
    }

    .climate-os .workspace-scenario > span { margin-right: auto; }

    .climate-os .climate-map {
        min-height: 430px;
    }

    .climate-os .project-twin {
        width: 145%;
        max-width: none;
        left: -22%;
    }

    .climate-os .map-overlay-site,
    .climate-os .map-coordinate,
    .climate-os .map-scale { display: none; }

    .climate-os .map-marker-label {
        left: auto;
        right: 14px;
        top: 42%;
    }

    .climate-os .workspace-inspector {
        display: flex;
        padding: 17px;
    }

    .climate-os .risk-gauge { height: 135px; }
    .climate-os .inspector-summary { min-height: auto; }

    .climate-os .layer-dock {
        grid-template-columns: repeat(5, minmax(92px, 1fr));
        overflow-x: auto;
    }

    .climate-os .dock-label { display: none; }

    .climate-os .layer-dock button {
        min-width: 105px;
        padding: 12px 10px;
    }

    .climate-os .layer-dock button small { display: none; }

    .climate-os .workspace-footnote {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .climate-os .decision-system,
    .climate-os .resilience-twin,
    .climate-os .sector-console,
    .climate-os .resource-console {
        padding: 82px 0;
    }

    .climate-os .decision-header h2,
    .climate-os .sector-console-header h2,
    .climate-os .resource-console-copy h2,
    .climate-os .resilience-copy h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
    }

    .climate-os .decision-track {
        grid-template-columns: 1fr;
    }

    .climate-os .decision-track article {
        min-height: 240px;
        border-right: 0;
        border-bottom: 1px solid #cfd9d6;
    }

    .climate-os .decision-track article:last-child { border-bottom: 0; }

    .climate-os .decision-command {
        align-items: flex-start;
        flex-direction: column;
    }

    .climate-os .resilience-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .climate-os .compare-viewport {
        min-height: 330px;
    }

    .climate-os .compare-scene svg {
        width: auto;
        max-width: none;
        height: 100%;
        transform: translateX(-10%);
    }

    .climate-os .sector-interface {
        border-radius: 18px;
    }

    .climate-os .sector-screen {
        padding: 22px;
    }

    .climate-os .sector-columns {
        grid-template-columns: 1fr;
    }

    .climate-os .resource-console-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .climate-os .resource-register a {
        grid-template-columns: 48px 1fr 24px;
        gap: 12px;
        min-height: 82px;
    }

    .climate-os .resource-register small { display: none; }

    .climate-os .handoff-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .climate-os .handoff-actions { grid-column: auto; }

    .climate-os .footer-system,
    .climate-os .footer-legal {
        grid-template-columns: 1fr;
        display: grid;
    }

    .climate-os .footer-system nav {
        grid-column: auto;
        grid-row: auto;
        gap: 12px 18px;
    }

    .climate-os .footer-ogaus-link { justify-self: start; }
    .climate-os .footer-legal { gap: 9px; }

    .climate-os .page-hero {
        padding: 70px 0 58px;
    }

    .climate-os .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .climate-os .page-hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .climate-os *,
    .climate-os *::before,
    .climate-os *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================================================== */
/* V4.2.0 — PROFESSIONAL DOCUMENTATION DESK                                  */
/* ========================================================================== */

.climate-os .professional-services {
    position: relative;
    padding: 116px 0;
    background:
        radial-gradient(circle at 88% 0, rgba(90, 184, 255, .14), transparent 28%),
        linear-gradient(180deg, #eaf1ef 0%, #f3f6f4 100%);
    border-top: 1px solid #cfdbd7;
    border-bottom: 1px solid #cfdbd7;
    overflow: hidden;
}

.climate-os .professional-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(16, 29, 38, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 29, 38, .045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.climate-os .professional-services-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 44px;
}

.climate-os .professional-services-head h2 {
    max-width: 900px;
    margin: 18px 0 20px;
    font-size: clamp(3.2rem, 5.6vw, 6.6rem);
}

.climate-os .professional-services-head p {
    max-width: 740px;
    margin: 0;
    color: #50656e;
    font-size: 1.08rem;
}

.climate-os .commercial-status {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px 24px;
    color: var(--os-text);
    background: var(--os-bg);
    border: 1px solid rgba(16, 29, 38, .14);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(8, 18, 31, .15);
}

.climate-os .commercial-status i {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--os-warm);
    box-shadow: 0 0 0 6px rgba(255, 191, 93, .11), 0 0 18px rgba(255, 191, 93, .55);
}

.climate-os .commercial-status span {
    display: grid;
    gap: 4px;
    color: var(--os-muted);
    font-size: .78rem;
    line-height: 1.45;
}

.climate-os .commercial-status strong {
    color: var(--os-text);
    font-size: .92rem;
    letter-spacing: .02em;
}

.climate-os .professional-services-console {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .62fr);
    background: var(--os-bg);
    border: 1px solid rgba(16, 29, 38, .22);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 38px 100px rgba(8, 18, 31, .2);
}

.climate-os .professional-service-register {
    min-width: 0;
}

.climate-os .professional-service-register > a {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 94px 28px;
    align-items: center;
    gap: 22px;
    min-height: 154px;
    padding: 24px 30px;
    color: var(--os-text);
    border-bottom: 1px solid var(--os-line);
    transition: background .2s ease, transform .2s ease;
}

.climate-os .professional-service-register > a:last-child {
    border-bottom: 0;
}

.climate-os .professional-service-register > a:hover {
    background: rgba(111, 228, 206, .075);
}

.climate-os .service-code {
    color: var(--os-aqua);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.climate-os .professional-service-register h3 {
    margin: 0 0 8px;
    color: var(--os-text);
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.climate-os .professional-service-register p {
    max-width: 760px;
    margin: 0;
    color: #9eb3c0;
    font-size: .92rem;
    line-height: 1.55;
}

.climate-os .professional-service-register small {
    justify-self: end;
    color: #6f8797;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.climate-os .professional-service-register > a > i {
    color: var(--os-aqua);
    font-size: 1.45rem;
    font-style: normal;
    transition: transform .2s ease;
}

.climate-os .professional-service-register > a:hover > i {
    transform: translateX(5px);
}

.climate-os .professional-service-brief {
    display: flex;
    flex-direction: column;
    padding: 38px;
    color: #06151b;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .55), transparent 32%),
        linear-gradient(145deg, #6fe4ce, #92e7bf 62%, #d8ff8a);
}

.climate-os .professional-service-brief > span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 44px;
    padding: 7px 9px;
    color: #10333a;
    background: rgba(255, 255, 255, .36);
    border: 1px solid rgba(6, 21, 27, .13);
    border-radius: 7px;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.climate-os .professional-service-brief h3 {
    max-width: 390px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3vw, 3.25rem);
}

.climate-os .professional-service-brief > p {
    margin-bottom: 28px;
    color: #24464a;
}

.climate-os .professional-service-brief ol {
    display: grid;
    gap: 0;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(6, 21, 27, .17);
}

.climate-os .professional-service-brief li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(6, 21, 27, .17);
    font-size: .82rem;
    line-height: 1.4;
}

.climate-os .professional-service-brief li b {
    font-size: .67rem;
    letter-spacing: .08em;
}

.climate-os .professional-service-brief .button {
    margin-top: auto;
    color: var(--os-text);
    background: var(--os-bg);
    border-color: var(--os-bg);
}

.climate-os .brief-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 16px;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Dedicated services page */
.climate-os .services-hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    padding: 112px 0 96px;
    color: var(--os-text);
    background:
        radial-gradient(circle at 76% 30%, rgba(111, 228, 206, .14), transparent 30%),
        radial-gradient(circle at 30% 0, rgba(90, 184, 255, .14), transparent 28%),
        var(--os-bg);
    overflow: hidden;
}

.climate-os .services-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(188, 216, 231, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 216, 231, .055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(100deg, #000, rgba(0,0,0,.35) 70%, transparent);
}

.climate-os .services-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -260px;
    top: -180px;
    border: 1px solid rgba(111, 228, 206, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(111, 228, 206, .025), 0 0 0 180px rgba(90, 184, 255, .018);
}

.climate-os .services-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
    align-items: center;
    gap: 86px;
}

.climate-os .breadcrumbs-dark,
.climate-os .breadcrumbs-dark a {
    color: #8ba2b1;
}

.climate-os .services-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 22px;
    color: var(--os-aqua);
    font-size: .69rem;
    font-weight: 820;
    letter-spacing: .14em;
}

.climate-os .services-live i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--os-warm);
    box-shadow: 0 0 0 6px rgba(255,191,93,.1), 0 0 16px rgba(255,191,93,.5);
}

.climate-os .services-hero h1 {
    max-width: 930px;
    margin-bottom: 24px;
    font-size: clamp(4rem, 7vw, 8.2rem);
    line-height: .92;
}

.climate-os .services-hero-copy > p {
    max-width: 760px;
    margin-bottom: 32px;
    color: #a9bdc8;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.62;
}

.climate-os .services-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.climate-os .services-hero-link {
    display: inline-flex;
    gap: 10px;
    color: #d6e4ea;
    font-size: .84rem;
    font-weight: 760;
}

.climate-os .services-scope-panel {
    position: relative;
    padding: 22px;
    background: rgba(17, 31, 47, .84);
    border: 1px solid var(--os-line-strong);
    border-radius: 28px;
    box-shadow: 0 36px 90px rgba(0,0,0,.3);
    backdrop-filter: blur(15px);
}

.climate-os .scope-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 2px 3px 16px;
    color: #758e9f;
    border-bottom: 1px solid var(--os-line);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.climate-os .scope-panel-head strong {
    color: var(--os-aqua);
}

.climate-os .scope-radar {
    display: grid;
    place-items: center;
    min-height: 360px;
}

.climate-os .scope-radar svg {
    width: min(100%, 440px);
}

.climate-os .scope-panel-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding: 16px 4px 4px;
    color: #7891a0;
    border-top: 1px solid var(--os-line);
    font-size: .7rem;
}

.climate-os .scope-panel-foot strong {
    color: #d8e7ed;
    text-align: right;
}

.climate-os .service-matrix-section {
    padding: 116px 0 128px;
    background: var(--os-paper);
}

.climate-os .service-matrix-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .65fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 46px;
}

.climate-os .service-matrix-head h2 {
    max-width: 940px;
    margin: 18px 0 0;
    font-size: clamp(3.3rem, 5.6vw, 6.5rem);
}

.climate-os .service-matrix-head > p {
    margin: 0;
    color: #5b7079;
    line-height: 1.65;
}

.climate-os .service-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: #c9d5d1;
    border: 1px solid #c9d5d1;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(8,18,31,.09);
}

.climate-os .service-module {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 38px;
    background: #fbfcfb;
}

.climate-os .service-module-featured {
    background:
        radial-gradient(circle at 100% 0, rgba(111,228,206,.12), transparent 32%),
        #f6fbf9;
}

.climate-os .service-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 56px;
    color: #60747c;
    font-size: .68rem;
    font-weight: 820;
    letter-spacing: .12em;
}

.climate-os .service-module-top span {
    color: #167f75;
}

.climate-os .service-module h3 {
    max-width: 580px;
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 3.3vw, 3.6rem);
}

.climate-os .service-module > p {
    max-width: 640px;
    color: #5b7079;
    line-height: 1.65;
}

.climate-os .service-module ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 34px;
    padding: 0;
    color: #334a53;
    list-style: none;
}

.climate-os .service-module li {
    position: relative;
    padding-left: 22px;
}

.climate-os .service-module li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 2px;
    background: #22a692;
}

.climate-os .service-module > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 22px;
    color: #0e5f58;
    border-top: 1px solid #d6e1de;
    font-size: .82rem;
    font-weight: 820;
}

.climate-os .service-module > a span {
    font-size: 1.2rem;
    transition: transform .2s ease;
}

.climate-os .service-module > a:hover span {
    transform: translateX(5px);
}

.climate-os .service-process {
    padding: 118px 0;
    color: var(--os-text);
    background:
        radial-gradient(circle at 10% 100%, rgba(90,184,255,.13), transparent 28%),
        var(--os-bg);
}

.climate-os .service-process-grid {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 86px;
}

.climate-os .service-process-copy {
    position: sticky;
    top: calc(var(--os-top) + 38px);
}

.climate-os .service-process-copy h2 {
    margin: 18px 0 22px;
    font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.climate-os .service-process-copy p {
    margin-bottom: 30px;
    color: #9eb4c0;
}

.climate-os .service-process-track {
    border-top: 1px solid var(--os-line-strong);
}

.climate-os .service-process-track > div {
    display: grid;
    grid-template-columns: 58px minmax(150px, .55fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--os-line);
}

.climate-os .service-process-track span {
    color: var(--os-aqua);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.climate-os .service-process-track strong {
    color: #edf7fa;
    font-size: 1.35rem;
}

.climate-os .service-process-track p {
    margin: 0;
    color: #98afbb;
}

.climate-os .service-inputs {
    padding: 112px 0;
    background: var(--os-paper-2);
}

.climate-os .service-inputs-grid {
    display: grid;
    grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
    gap: 80px;
}

.climate-os .service-inputs h2 {
    margin-top: 18px;
    font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.climate-os .service-input-list {
    border-top: 1px solid #bdcbc7;
}

.climate-os .service-input-list > div {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #bdcbc7;
}

.climate-os .service-input-list span {
    color: #16877b;
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.climate-os .service-input-list p {
    margin: 0;
    color: #334b53;
    font-size: 1.03rem;
}

.climate-os .service-callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 36px;
    margin: 54px 0;
    padding: 34px;
    color: var(--os-text);
    background:
        radial-gradient(circle at 100% 0, rgba(111,228,206,.15), transparent 36%),
        var(--os-bg);
    border: 1px solid rgba(16,29,38,.22);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(8,18,31,.16);
}

.climate-os .service-callout h2 {
    margin-bottom: 12px;
    color: var(--os-text);
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.climate-os .service-callout p {
    max-width: 720px;
    margin: 0;
    color: #a1b5c0;
}

.climate-os .service-callout-actions {
    display: grid;
    gap: 14px;
    min-width: 220px;
}

.climate-os .service-callout-actions .link-arrow {
    color: var(--os-aqua);
    text-align: center;
}

@media (max-width: 1120px) {
    .climate-os .professional-services-head,
    .climate-os .service-matrix-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .climate-os .commercial-status {
        width: min(100%, 520px);
    }

    .climate-os .professional-services-console {
        grid-template-columns: 1fr;
    }

    .climate-os .professional-service-brief {
        min-height: 480px;
    }

    .climate-os .services-hero-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .climate-os .services-scope-panel {
        width: min(100%, 660px);
    }

    .climate-os .service-process-grid,
    .climate-os .service-inputs-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .climate-os .service-process-copy {
        position: static;
    }
}

@media (max-width: 800px) {
    .climate-os .professional-services,
    .climate-os .service-matrix-section,
    .climate-os .service-process,
    .climate-os .service-inputs {
        padding: 82px 0;
    }

    .climate-os .professional-service-register > a {
        grid-template-columns: 52px minmax(0, 1fr) 24px;
        min-height: 150px;
        gap: 16px;
        padding: 22px;
    }

    .climate-os .professional-service-register small {
        display: none;
    }

    .climate-os .services-hero {
        min-height: auto;
        padding: 78px 0 76px;
    }

    .climate-os .service-matrix {
        grid-template-columns: 1fr;
    }

    .climate-os .service-module {
        min-height: 470px;
    }

    .climate-os .service-callout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .climate-os .service-callout-actions {
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .climate-os .professional-services-head h2,
    .climate-os .service-matrix-head h2,
    .climate-os .service-process-copy h2,
    .climate-os .service-inputs h2 {
        font-size: clamp(2.75rem, 13vw, 4.4rem);
    }

    .climate-os .professional-services-console,
    .climate-os .service-matrix,
    .climate-os .services-scope-panel {
        border-radius: 18px;
    }

    .climate-os .professional-service-register > a {
        grid-template-columns: 1fr 22px;
        gap: 12px;
    }

    .climate-os .service-code {
        grid-column: 1 / -1;
    }

    .climate-os .professional-service-register > a > div {
        grid-column: 1;
    }

    .climate-os .professional-service-register > a > i {
        grid-column: 2;
        grid-row: 2;
    }

    .climate-os .professional-service-brief,
    .climate-os .service-module {
        padding: 26px;
    }

    .climate-os .services-hero h1 {
        font-size: clamp(3.25rem, 15vw, 5.2rem);
    }

    .climate-os .scope-radar {
        min-height: 290px;
    }

    .climate-os .service-module-top {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 38px;
    }

    .climate-os .service-process-track > div {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .climate-os .service-process-track p {
        grid-column: 2;
    }
}

@media (max-width: 980px) {
    .climate-os .primary-nav {
        width: 100%;
        height: calc(100dvh - 72px);
        flex: none;
        flex-direction: column;
    }
}

/* v4.3.0 - scroll-aware navigation, PDF report and service recommendations */
.climate-os [data-scroll-section] {
    scroll-margin-top: 76px;
}

.climate-os .primary-nav > a.is-scroll-current {
    color: var(--os-text);
    background: rgba(111, 228, 206, 0.09);
    border-color: rgba(111, 228, 206, 0.34);
}

.climate-os .primary-nav > a.is-scroll-current::before {
    height: 32px;
}

.climate-os .primary-nav > a.is-scroll-current svg {
    filter: drop-shadow(0 0 7px rgba(111, 228, 206, 0.32));
}

.climate-os .result-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.climate-os .result-services {
    margin-top: 34px;
    padding: 30px;
    color: #eaf4f6;
    background:
        radial-gradient(circle at 100% 0, rgba(111, 228, 206, 0.11), transparent 30%),
        linear-gradient(145deg, #0a1723, #102433 72%);
    border: 1px solid #294352;
    border-radius: 18px;
    box-shadow: 0 24px 52px rgba(7, 18, 31, 0.18);
}

.climate-os .result-services-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.climate-os .result-services-head h3 {
    margin: 8px 0 8px;
    color: #f3fafb;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.climate-os .result-services-head p {
    max-width: 760px;
    margin: 0;
    color: #9eb3bd;
}

.climate-os .result-service-count {
    padding: 8px 11px;
    color: #07131d;
    background: var(--os-aqua);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
}

.climate-os .result-service-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.climate-os .result-service-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.42fr) auto;
    gap: 22px;
    align-items: start;
    padding: 22px 22px 22px 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.climate-os .result-service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--os-aqua);
}

.climate-os .result-service-card.priority-high::before { background: #ff795e; }
.climate-os .result-service-card.priority-check::before { background: #eab34e; }

.climate-os .result-service-top {
    display: flex;
    grid-column: 1;
    gap: 10px;
    align-items: center;
}

.climate-os .result-service-number {
    color: #6fe4ce;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.climate-os .result-service-priority {
    padding: 5px 8px;
    color: #aee9dc;
    background: rgba(111, 228, 206, 0.09);
    border: 1px solid rgba(111, 228, 206, 0.25);
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.climate-os .result-service-priority.is-high {
    color: #ffb09f;
    background: rgba(255, 121, 94, 0.09);
    border-color: rgba(255, 121, 94, 0.28);
}

.climate-os .result-service-priority.is-check {
    color: #f3d28e;
    background: rgba(234, 179, 78, 0.09);
    border-color: rgba(234, 179, 78, 0.28);
}

.climate-os .result-service-card h4 {
    grid-column: 1;
    margin: 2px 0 0;
    color: #edf7f9;
    font-size: 1.15rem;
    line-height: 1.25;
}

.climate-os .result-service-reason {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    color: #b7c8cf;
    font-size: 0.9rem;
}

.climate-os .result-service-details {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.climate-os .result-service-details > div {
    padding: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.climate-os .result-service-details span {
    display: block;
    margin-bottom: 7px;
    color: #6fe4ce;
    font-size: 0.66rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.climate-os .result-service-details p,
.climate-os .result-service-details ul {
    margin: 0;
    color: #aabdc5;
    font-size: 0.82rem;
}

.climate-os .result-service-details ul {
    padding-left: 18px;
}

.climate-os .result-service-link {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    max-width: 180px;
    color: #6fe4ce;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: right;
}

.climate-os .result-service-link::after {
    content: "  →";
}

.climate-os .result-service-bundle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 18px;
    padding: 22px;
    background: rgba(111, 228, 206, 0.08);
    border: 1px solid rgba(111, 228, 206, 0.28);
    border-radius: 14px;
}

.climate-os .result-service-bundle span {
    display: block;
    color: #70ddc8;
    font-size: 0.66rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.climate-os .result-service-bundle strong {
    display: block;
    margin-top: 6px;
    color: #f2fafb;
    font-size: 1.3rem;
}

.climate-os .result-service-bundle p {
    margin: 6px 0 0;
    color: #a8bbc4;
}

.climate-os .report-download-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: #365b63;
    font-size: 0.82rem;
    font-weight: 700;
}

.climate-os [data-evaluation-pdf]:disabled {
    cursor: wait;
    opacity: 0.72;
}

@media (max-width: 980px) {
    .climate-os .primary-nav > a.is-scroll-current::before {
        height: 34px;
    }

    .climate-os .result-service-card {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .climate-os .result-service-reason {
        grid-column: 1;
        grid-row: auto;
    }

    .climate-os .result-service-link {
        grid-column: 2;
        grid-row: 1 / span 3;
    }
}

@media (max-width: 760px) {
    .climate-os .result-summary-grid,
    .climate-os .result-service-details {
        grid-template-columns: 1fr;
    }

    .climate-os .result-services {
        padding: 22px;
    }

    .climate-os .result-services-head,
    .climate-os .result-service-bundle {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .climate-os .result-service-count {
        justify-self: start;
    }

    .climate-os .result-service-card {
        grid-template-columns: 1fr;
    }

    .climate-os .result-service-top,
    .climate-os .result-service-card h4,
    .climate-os .result-service-reason,
    .climate-os .result-service-details,
    .climate-os .result-service-link {
        grid-column: 1;
        grid-row: auto;
    }

    .climate-os .result-service-link {
        max-width: none;
        text-align: left;
    }
}

/* v4.3.0 - decorative scan layers must never enlarge the mobile canvas */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.climate-os .page-hero,
.climate-os .technical-handoff {
    contain: paint;
}

@media (max-width: 760px) {
    .climate-os .page-hero::before {
        top: -120px;
        right: -72px;
        width: 300px;
        height: 300px;
        box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.018), 0 0 0 84px rgba(255, 255, 255, 0.01);
    }

    .climate-os .handoff-scan span:nth-child(2) {
        left: 4%;
        width: 92%;
        transform: rotate(-4deg);
        transform-origin: center;
    }
}

.climate-os .handoff-scan {
    overflow: hidden;
}

@media (max-width: 760px) {
    .climate-os .page-hero::before {
        display: none;
    }
}

@media (max-width: 760px) {
    .climate-os .handoff-scan {
        display: none;
    }
}

@media (max-width: 760px) {
    .climate-os .evaluator-sidebar::after {
        display: none;
    }
}

/* ========================================================================== */
/* V4.4.0 - MENIU LATERAL EXPLICIT, SCROLL ACTIV SI PRIMA PAGINA SIMPLIFICATA */
/* ========================================================================== */

.climate-os {
    --os-rail: 264px;
    --os-top: 64px;
}

.climate-os .site-header {
    align-items: stretch;
    padding: 16px 14px 14px;
    overflow: hidden;
    --nav-accent: #6fe4ce;
    --nav-accent-soft: rgba(111, 228, 206, .12);
    transition: border-color .35s ease, box-shadow .35s ease;
}

.climate-os .site-header[data-active-section="risks"] {
    --nav-accent: #ff806b;
    --nav-accent-soft: rgba(255, 128, 107, .13);
}

.climate-os .site-header[data-active-section="evaluator"] {
    --nav-accent: #5ab8ff;
    --nav-accent-soft: rgba(90, 184, 255, .13);
}

.climate-os .site-header[data-active-section="proofing"] {
    --nav-accent: #79e3ad;
    --nav-accent-soft: rgba(121, 227, 173, .13);
}

.climate-os .site-header[data-active-section="uat"] {
    --nav-accent: #ffbf5d;
    --nav-accent-soft: rgba(255, 191, 93, .13);
}

.climate-os .site-header[data-active-section="services"] {
    --nav-accent: #c69cff;
    --nav-accent-soft: rgba(198, 156, 255, .13);
}

.climate-os .site-header[data-active-section="resources"] {
    --nav-accent: #6fe4ce;
    --nav-accent-soft: rgba(111, 228, 206, .12);
}

.climate-os .site-header[data-active-section="contact"] {
    --nav-accent: #9af5e2;
    --nav-accent-soft: rgba(154, 245, 226, .13);
}

.climate-os .site-header::after {
    background:
        linear-gradient(180deg, var(--nav-accent-soft), transparent 18%),
        radial-gradient(circle at 18% var(--rail-glow-y, 44%), var(--nav-accent-soft), transparent 31%);
    transition: background .45s ease;
}

.climate-os .rail-brand {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 16px;
}

.climate-os .rail-brand img {
    flex: 0 0 auto;
    width: 43px;
    height: 43px;
}

.climate-os .rail-brand .brand-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.climate-os .rail-brand .brand-copy strong {
    overflow: hidden;
    color: #f1f8fa;
    font-size: .84rem;
    font-weight: 790;
    line-height: 1.05;
    letter-spacing: -.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.climate-os .rail-brand .brand-copy small {
    color: #8299a8;
    font-size: .58rem;
    font-weight: 650;
    line-height: 1.25;
}

.climate-os .primary-nav {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    min-height: 0;
    margin: 15px 0 10px;
    padding: 4px 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.climate-os .primary-nav::-webkit-scrollbar {
    display: none;
}

.climate-os .nav-active-indicator {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 52px;
    border: 1px solid color-mix(in srgb, var(--nav-accent) 38%, transparent);
    border-radius: 14px;
    background:
        linear-gradient(90deg, var(--nav-accent-soft), rgba(255,255,255,.025)),
        rgba(255,255,255,.018);
    box-shadow:
        inset 3px 0 0 var(--nav-accent),
        0 12px 30px rgba(0,0,0,.18),
        0 0 24px var(--nav-accent-soft);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition:
        transform .48s cubic-bezier(.22,.8,.22,1),
        height .3s ease,
        opacity .22s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.climate-os .primary-nav.is-indicator-ready .nav-active-indicator {
    opacity: 1;
}

.climate-os .primary-nav > a {
    z-index: 1;
    width: 100%;
    min-height: 52px;
    height: auto;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    gap: 10px;
    padding: 6px 10px;
    border: 0;
    border-radius: 14px;
    transform: none;
    transition: color .25s ease, transform .3s ease;
}

.climate-os .primary-nav > a::before {
    display: none;
}

.climate-os .primary-nav > a:hover,
.climate-os .primary-nav > a.is-active,
.climate-os .primary-nav > a.is-scroll-current {
    color: var(--os-text);
    background: transparent;
    border-color: transparent;
    transform: none;
}

.climate-os .nav-icon {
    position: relative;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(188,216,231,.13);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .35s ease, box-shadow .35s ease;
}

.climate-os .nav-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid var(--nav-accent);
    border-radius: 13px;
    opacity: 0;
    transform: scale(.8);
}

.climate-os .primary-nav svg {
    width: 19px;
    height: 19px;
}

.climate-os .nav-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    transition: transform .35s cubic-bezier(.22,.8,.22,1);
}

.climate-os .nav-label {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: .76rem;
    font-weight: 760;
    line-height: 1.05;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    transition: none;
}

.climate-os .nav-copy small {
    overflow: hidden;
    color: #708796;
    font-size: .57rem;
    font-weight: 620;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .25s ease;
}

.climate-os .primary-nav > a:hover .nav-label,
.climate-os .primary-nav > a:focus-visible .nav-label {
    opacity: 1;
    transform: none;
}

.climate-os .primary-nav > a:hover .nav-icon {
    color: var(--nav-accent);
    border-color: color-mix(in srgb, var(--nav-accent) 35%, transparent);
    background: var(--nav-accent-soft);
    transform: translateX(2px);
}

.climate-os .primary-nav > a.is-active .nav-icon,
.climate-os .primary-nav > a.is-scroll-current .nav-icon {
    color: #06121d;
    border-color: var(--nav-accent);
    background: var(--nav-accent);
    box-shadow: 0 0 22px var(--nav-accent-soft);
    transform: scale(1.04);
}

.climate-os .primary-nav > a.is-active .nav-copy,
.climate-os .primary-nav > a.is-scroll-current .nav-copy {
    transform: translateX(3px);
}

.climate-os .primary-nav > a.is-active .nav-copy small,
.climate-os .primary-nav > a.is-scroll-current .nav-copy small {
    color: color-mix(in srgb, var(--nav-accent) 68%, #9db2c0);
}

.climate-os .primary-nav > a.is-entering .nav-icon::after {
    animation: nav-focus-ring .56s ease-out;
}

.climate-os .primary-nav > a.is-entering .nav-copy {
    animation: nav-copy-enter .42s cubic-bezier(.22,.8,.22,1);
}

@keyframes nav-focus-ring {
    0% { opacity: .8; transform: scale(.78); }
    100% { opacity: 0; transform: scale(1.32); }
}

@keyframes nav-copy-enter {
    0% { opacity: .35; transform: translateX(-3px); }
    100% { opacity: 1; transform: translateX(3px); }
}

.climate-os .primary-nav .nav-cta {
    margin-top: 5px;
    color: #b8cacd;
    background: transparent;
    border: 1px solid rgba(111,228,206,.22);
}

.climate-os .primary-nav .nav-cta:hover,
.climate-os .primary-nav .nav-cta.is-active {
    color: #f4fbfb;
    background: transparent;
}

.climate-os .rail-scroll-status {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    margin-top: 2px;
    padding: 10px 11px 11px;
    border: 1px solid rgba(188,216,231,.11);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
}

.climate-os .rail-scroll-status-head,
.climate-os .rail-scroll-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.climate-os .rail-scroll-status-head span,
.climate-os .rail-scroll-current small {
    color: #6f8796;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.climate-os .rail-scroll-status-head strong {
    color: var(--nav-accent);
    font-size: .62rem;
    transition: color .3s ease;
}

.climate-os .rail-scroll-track {
    height: 3px;
    margin: 8px 0 9px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
}

.climate-os .rail-scroll-track i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--nav-accent);
    border-radius: inherit;
    box-shadow: 0 0 12px var(--nav-accent);
    transition: width .16s linear, background .3s ease;
}

.climate-os .rail-scroll-current strong {
    overflow: hidden;
    max-width: 150px;
    color: #d9e7eb;
    font-size: .64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.climate-os .rail-ogaus {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 8px 10px 0;
    border-top: 1px solid var(--os-line);
}

.climate-os .rail-ogaus strong {
    color: var(--nav-accent);
    transition: color .3s ease;
}

.climate-os .rail-ogaus span {
    display: block;
    color: #7e94a1;
    font-size: .6rem;
    font-weight: 680;
}

/* Prima pagina simplificata */
.climate-os .os-intro-v44 {
    min-height: calc(100vh - var(--os-top));
    padding: clamp(72px, 8vw, 112px) 0 48px;
    isolation: isolate;
}

.climate-os .os-intro-v44 .os-backdrop {
    background:
        radial-gradient(circle at 78% 24%, rgba(90,184,255,.16), transparent 26%),
        radial-gradient(circle at 17% 12%, rgba(111,228,206,.14), transparent 24%),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: auto, auto, 52px 52px, 52px 52px;
    mask-image: linear-gradient(to bottom, #000 0 72%, transparent);
}

.climate-os .climate-signal-field {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.climate-os .signal-line {
    position: absolute;
    right: -11vw;
    width: 58vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(111,228,206,.5), transparent);
    transform-origin: center;
}

.climate-os .signal-line::before,
.climate-os .signal-line::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 18px var(--os-aqua);
}

.climate-os .signal-line::before { left: 26%; }
.climate-os .signal-line::after { left: 72%; }
.climate-os .signal-line-a { top: 23%; transform: rotate(-12deg); }
.climate-os .signal-line-b { top: 67%; transform: rotate(9deg); opacity: .55; }

.climate-os .signal-orbit {
    position: absolute;
    right: 7vw;
    top: 11%;
    width: min(36vw, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(90,184,255,.12);
    border-radius: 50%;
}

.climate-os .signal-orbit::after {
    content: "";
    position: absolute;
    top: 16%;
    left: 10%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--os-blue);
    box-shadow: 0 0 20px var(--os-blue);
}

.climate-os .signal-orbit-b {
    right: 13vw;
    top: 22%;
    width: min(25vw, 360px);
    border-color: rgba(111,228,206,.11);
}

.climate-os .home-entry-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .82fr);
    gap: clamp(52px, 7vw, 104px);
    align-items: center;
}

.climate-os .home-entry-copy {
    max-width: 780px;
}

.climate-os .os-intro-v44 h1 {
    max-width: 820px;
    margin: 24px 0 26px;
    font-size: clamp(3.6rem, 6.7vw, 7.15rem);
    line-height: .91;
}

.climate-os .os-intro-v44 h1 span {
    display: block;
    margin-top: .08em;
    color: var(--os-aqua);
}

.climate-os .home-entry-copy > p {
    max-width: 680px;
    margin: 0;
    color: #a8bdc8;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.75;
}

.climate-os .button-ghost-light {
    color: #dbe9ed;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(188,216,231,.2);
}

.climate-os .button-ghost-light:hover {
    color: #fff;
    background: rgba(255,255,255,.075);
    border-color: rgba(111,228,206,.38);
}

.climate-os .home-result-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 42px;
    overflow: hidden;
    border: 1px solid rgba(188,216,231,.12);
    border-radius: 15px;
    background: rgba(188,216,231,.12);
}

.climate-os .home-result-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 13px;
    color: #b5c7ce;
    background: rgba(8,18,31,.88);
    font-size: .7rem;
    font-weight: 680;
}

.climate-os .home-result-list i {
    color: var(--os-aqua);
    font-size: .58rem;
    font-style: normal;
    letter-spacing: .08em;
}

.climate-os .entry-console {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(188,216,231,.18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(90,184,255,.1), transparent 30%),
        linear-gradient(155deg, rgba(20,38,54,.95), rgba(8,20,31,.96));
    box-shadow: 0 36px 80px rgba(0,0,0,.31);
    backdrop-filter: blur(18px);
}

.climate-os .entry-console::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border: 1px solid rgba(111,228,206,.08);
    border-radius: 15px;
}

.climate-os .entry-console-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 8px 17px;
    border-bottom: 1px solid rgba(188,216,231,.13);
}

.climate-os .entry-console-head span,
.climate-os .entry-console-output span {
    color: var(--os-aqua);
    font-size: .59rem;
    font-weight: 760;
    letter-spacing: .12em;
}

.climate-os .entry-console-head strong {
    color: #f0f7f8;
    font-size: .94rem;
}

.climate-os .entry-option {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    gap: 12px;
    align-items: center;
    min-height: 80px;
    margin-top: 8px;
    padding: 12px 12px;
    color: #dce9ed;
    border: 1px solid rgba(188,216,231,.1);
    border-radius: 13px;
    background: rgba(255,255,255,.018);
    transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.climate-os .entry-option:hover {
    border-color: rgba(111,228,206,.38);
    background: rgba(111,228,206,.065);
    transform: translateX(4px);
}

.climate-os .entry-option-primary {
    border-color: rgba(111,228,206,.28);
    background: rgba(111,228,206,.075);
}

.climate-os .entry-option-index {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--os-aqua);
    border: 1px solid rgba(111,228,206,.26);
    border-radius: 9px;
    font-size: .58rem;
    font-weight: 780;
}

.climate-os .entry-option-copy {
    display: grid;
    gap: 5px;
}

.climate-os .entry-option-copy strong {
    font-size: .78rem;
    line-height: 1.2;
}

.climate-os .entry-option-copy small {
    color: #839aa8;
    font-size: .63rem;
    line-height: 1.45;
}

.climate-os .entry-option > i {
    color: var(--os-aqua);
    font-style: normal;
    transition: transform .24s ease;
}

.climate-os .entry-option:hover > i {
    transform: translateX(3px);
}

.climate-os .entry-console-output {
    margin-top: 13px;
    padding: 15px 9px 5px;
    border-top: 1px solid rgba(188,216,231,.13);
}

.climate-os .entry-console-output p {
    margin: 8px 0 0;
    color: #8ea4b1;
    font-size: .66rem;
    line-height: 1.55;
}

.climate-os .home-scroll-cue {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(54px, 8vh, 94px);
    padding-top: 18px;
    color: #708896;
    border-top: 1px solid rgba(188,216,231,.1);
    font-size: .63rem;
    font-weight: 680;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.climate-os .home-scroll-cue i {
    color: var(--os-aqua);
    font-size: 1rem;
    font-style: normal;
    animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Registrul de riscuri de pe prima pagina */
.climate-os .hazard-overview {
    position: relative;
    padding: clamp(88px, 10vw, 132px) 0;
    background:
        radial-gradient(circle at 0 0, rgba(255,128,107,.09), transparent 26%),
        linear-gradient(180deg, #f3f6f4, #e8efeb);
    overflow: hidden;
}

.climate-os .hazard-overview::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(25,64,74,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(25,64,74,.025), 0 0 0 140px rgba(25,64,74,.018);
}

.climate-os .hazard-overview-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: 56px;
    align-items: end;
}

.climate-os .hazard-overview-head h2 {
    max-width: 760px;
    margin: 16px 0 0;
    color: #11212b;
    font-size: clamp(2.8rem, 5.2vw, 5.4rem);
    line-height: .96;
}

.climate-os .hazard-overview-head > p {
    margin: 0;
    color: #536c76;
    font-size: .98rem;
    line-height: 1.7;
}

.climate-os .hazard-register {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 58px;
    overflow: hidden;
    border: 1px solid rgba(19,49,60,.13);
    border-radius: 18px;
    background: rgba(19,49,60,.13);
    box-shadow: 0 26px 70px rgba(20,42,48,.08);
}

.climate-os .hazard-register > a {
    position: relative;
    min-height: 140px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 18px;
    gap: 15px;
    align-items: center;
    padding: 24px;
    color: #16303a;
    background: rgba(249,251,249,.92);
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.climate-os .hazard-register > a::before {
    content: "";
    position: absolute;
    inset: auto 20px 0;
    height: 3px;
    background: var(--hazard-accent, #6fe4ce);
    opacity: .45;
    transform: scaleX(.24);
    transform-origin: left;
    transition: transform .28s ease, opacity .28s ease;
}

.climate-os .hazard-register > a[data-hazard="heat"] { --hazard-accent: #ff806b; }
.climate-os .hazard-register > a[data-hazard="water"] { --hazard-accent: #5ab8ff; }
.climate-os .hazard-register > a[data-hazard="flood"] { --hazard-accent: #3a9bd9; }
.climate-os .hazard-register > a[data-hazard="drought"] { --hazard-accent: #d49b42; }
.climate-os .hazard-register > a[data-hazard="wind"] { --hazard-accent: #66cfc4; }
.climate-os .hazard-register > a[data-hazard="ground"] { --hazard-accent: #9a7ad1; }

.climate-os .hazard-register > a:hover {
    z-index: 2;
    color: #081821;
    background: #fff;
    transform: translateY(-3px);
}

.climate-os .hazard-register > a:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.climate-os .hazard-symbol {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--hazard-accent);
    border: 1px solid color-mix(in srgb, var(--hazard-accent) 32%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--hazard-accent) 9%, transparent);
}

.climate-os .hazard-symbol svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.climate-os .hazard-register > a > span:nth-child(2) {
    display: grid;
    gap: 7px;
}

.climate-os .hazard-register strong {
    font-size: .92rem;
}

.climate-os .hazard-register small {
    color: #647983;
    font-size: .67rem;
    line-height: 1.45;
}

.climate-os .hazard-register > a > i {
    color: var(--hazard-accent);
    font-style: normal;
}

.climate-os .hazard-overview-action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 22px;
    padding: 18px 22px;
    color: #55707a;
    border: 1px solid rgba(19,49,60,.11);
    border-radius: 13px;
    background: rgba(255,255,255,.5);
    font-size: .72rem;
}

.climate-os .hazard-overview-action a {
    flex: 0 0 auto;
    color: #153a45;
    font-weight: 760;
}

/* Scroll-ul are o schimbare vizibila si in continut */
.climate-os [data-scroll-section] {
    transition: filter .45s ease;
}

.climate-os [data-scroll-section].is-section-current {
    filter: saturate(1.02);
}

/* Desktop compact */
@media (min-width: 1101px) and (max-width: 1280px) {
    .climate-os { --os-rail: 230px; }
    .climate-os .site-header { padding-inline: 11px; }
    .climate-os .rail-brand { padding-inline: 8px; }
    .climate-os .rail-brand .brand-copy strong { font-size: .76rem; }
    .climate-os .nav-label { font-size: .7rem; }
    .climate-os .nav-copy small { font-size: .53rem; }
    .climate-os .primary-nav > a { grid-template-columns: 34px minmax(0,1fr); gap: 7px; padding-inline: 7px; }
    .climate-os .nav-icon { width: 31px; height: 31px; }
    .climate-os .home-entry-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr); gap: 50px; }
}

/* Trecere la meniul superior mai devreme pentru a evita comprimarea continutului */
@media (max-width: 1100px) {
    .climate-os {
        --os-rail: 0px;
        --os-top: 72px;
    }

    .climate-os .site-header {
        inset: 0 0 auto 0;
        width: 100%;
        height: 72px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid var(--os-line);
    }

    .climate-os .rail-brand {
        width: auto;
        height: auto;
        gap: 10px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .climate-os .rail-brand img { width: 40px; height: 40px; }
    .climate-os .rail-brand .brand-copy strong { font-size: .82rem; }
    .climate-os .rail-brand .brand-copy small { font-size: .55rem; }

    .climate-os .nav-toggle {
        position: relative;
        z-index: 1003;
        width: 45px;
        height: 45px;
        display: grid;
        place-items: center;
        color: var(--os-text);
        border: 1px solid var(--os-line);
        border-radius: 13px;
        background: rgba(255,255,255,.035);
    }

    .climate-os .nav-toggle span:not(.sr-only) {
        position: absolute;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transition: transform .2s ease;
    }

    .climate-os .nav-toggle span:nth-child(2) { transform: translateY(-4px); }
    .climate-os .nav-toggle span:nth-child(3) { transform: translateY(4px); }
    .climate-os .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
    .climate-os .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

    .climate-os .primary-nav {
        position: fixed;
        inset: 72px 0 0;
        z-index: 1001;
        width: 100%;
        height: calc(100dvh - 72px);
        display: flex;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
        margin: 0;
        padding: 24px 20px 40px;
        background: rgba(6,15,26,.988);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        overflow-y: auto;
    }

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

    .climate-os .nav-active-indicator { display: none; }

    .climate-os .primary-nav > a {
        width: 100%;
        min-height: 61px;
        grid-template-columns: 42px minmax(0,1fr);
        gap: 12px;
        padding: 9px 14px;
        border: 1px solid var(--os-line);
    }

    .climate-os .primary-nav > a.is-active,
    .climate-os .primary-nav > a.is-scroll-current {
        background: var(--nav-accent-soft);
        border-color: color-mix(in srgb, var(--nav-accent) 35%, transparent);
    }

    .climate-os .nav-icon { width: 37px; height: 37px; }
    .climate-os .nav-label { font-size: .83rem; }
    .climate-os .nav-copy small { font-size: .62rem; }
    .climate-os .rail-scroll-status,
    .climate-os .rail-ogaus,
    .climate-os .command-bar { display: none; }

    .climate-os main { padding-top: 72px; }
    .climate-os main,
    .climate-os .technical-handoff,
    .climate-os .site-footer { margin-left: 0; }

    .climate-os .home-entry-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .climate-os .home-entry-copy { max-width: 850px; }
    .climate-os .entry-console { max-width: 760px; }
    .climate-os .hazard-overview-head { grid-template-columns: 1fr; gap: 24px; }
    .climate-os .hazard-register { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
    .climate-os .os-intro-v44 {
        min-height: auto;
        padding: 64px 0 36px;
    }

    .climate-os .os-intro-v44 h1 {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .climate-os .home-result-list,
    .climate-os .hazard-register {
        grid-template-columns: 1fr;
    }

    .climate-os .entry-console { padding: 12px; border-radius: 17px; }
    .climate-os .entry-console-head { align-items: flex-start; flex-direction: column; gap: 7px; }
    .climate-os .entry-option { grid-template-columns: 31px minmax(0,1fr) 18px; padding-inline: 9px; }
    .climate-os .home-scroll-cue { align-items: flex-start; gap: 18px; }
    .climate-os .hazard-register > a { min-height: 112px; }
    .climate-os .hazard-overview-action { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .climate-os .nav-active-indicator,
    .climate-os .nav-copy,
    .climate-os .nav-icon,
    .climate-os .entry-option,
    .climate-os .hazard-register > a,
    .climate-os .home-scroll-cue i {
        transition: none !important;
        animation: none !important;
    }
}

/* ========================================================================== */
/* V4.5.0 - NAVIGARE PE PAGINI SI PRIMA PAGINA CA PUNCT DE PORNIRE          */
/* ========================================================================== */

.climate-os .rail-scroll-status {
    display: none !important;
}

.climate-os .site-header.is-scrolled {
    border-right-color: rgba(111, 228, 206, .18);
    box-shadow: 10px 0 34px rgba(2, 11, 20, .24);
}

.climate-os .primary-nav > a::after {
    content: "\2192";
    position: absolute;
    right: 11px;
    top: 50%;
    color: var(--nav-accent);
    font-size: .78rem;
    opacity: 0;
    transform: translate(-5px, -50%);
    transition: opacity .22s ease, transform .22s ease;
}

.climate-os .primary-nav > a:hover::after,
.climate-os .primary-nav > a:focus-visible::after {
    opacity: .8;
    transform: translate(0, -50%);
}

.climate-os .primary-nav > a.is-active::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nav-accent);
    box-shadow: 0 0 12px var(--nav-accent);
    opacity: 1;
    transform: translate(0, -50%);
}

.climate-os .primary-nav > a.is-active .nav-icon {
    transform: none;
}

.climate-os .primary-nav > a.is-active .nav-copy {
    transform: translateX(2px);
}

/* Prima pagina: centru de pornire, fara sectiuni oglindite din meniul lateral */
.climate-os .home-v45-hero {
    position: relative;
    min-height: calc(100vh - var(--os-top));
    display: grid;
    align-items: center;
    padding: clamp(76px, 8vw, 116px) 0 clamp(64px, 7vw, 96px);
    color: var(--os-text);
    background:
        radial-gradient(circle at 82% 18%, rgba(90, 184, 255, .16), transparent 27%),
        radial-gradient(circle at 10% 4%, rgba(111, 228, 206, .12), transparent 28%),
        linear-gradient(145deg, #07121f 0%, #091827 50%, #0a2030 100%);
    overflow: hidden;
    isolation: isolate;
}

.climate-os .home-v45-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, #000 0 78%, transparent);
}

.climate-os .home-v45-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(90, 184, 255, .12);
    border-radius: 50%;
    pointer-events: none;
}

.climate-os .home-v45-orbit::before,
.climate-os .home-v45-orbit::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 18px rgba(111,228,206,.72);
}

.climate-os .home-v45-orbit-a {
    top: 8%;
    right: -8%;
    width: min(48vw, 700px);
    aspect-ratio: 1;
}

.climate-os .home-v45-orbit-a::before { top: 24%; left: 4%; }
.climate-os .home-v45-orbit-a::after { right: 9%; bottom: 23%; background: var(--os-blue); }

.climate-os .home-v45-orbit-b {
    right: 12%;
    bottom: -31%;
    width: min(31vw, 460px);
    aspect-ratio: 1;
    border-color: rgba(111,228,206,.1);
}

.climate-os .home-v45-orbit-b::before { top: 5%; left: 38%; }
.climate-os .home-v45-orbit-b::after { display: none; }

.climate-os .home-v45-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
    gap: clamp(52px, 7vw, 104px);
    align-items: center;
}

.climate-os .home-v45-copy {
    max-width: 720px;
}

.climate-os .home-v45-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a9bec8;
    font-size: .68rem;
    font-weight: 780;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.climate-os .home-v45-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--os-aqua);
    box-shadow: 0 0 0 5px rgba(111,228,206,.09), 0 0 18px rgba(111,228,206,.7);
}

.climate-os .home-v45-copy h1 {
    max-width: 740px;
    margin: 24px 0 26px;
    color: #f3fafb;
    font-size: clamp(3.65rem, 6.1vw, 6.8rem);
    line-height: .93;
    letter-spacing: -.065em;
}

.climate-os .home-v45-copy > p {
    max-width: 670px;
    margin: 0;
    color: #a9bdc7;
    font-size: clamp(1rem, 1.35vw, 1.17rem);
    line-height: 1.75;
}

.climate-os .home-v45-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.climate-os .home-v45-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(188,216,231,.13);
}

.climate-os .home-v45-proof span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 22px;
    padding: 5px 0;
    color: #8198a5;
    font-size: .66rem;
    font-weight: 650;
}

.climate-os .home-v45-proof strong {
    color: var(--os-aqua);
    font-size: .57rem;
    letter-spacing: .08em;
}

.climate-os .home-v45-router {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(188,216,231,.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(90,184,255,.11), transparent 28%),
        linear-gradient(155deg, rgba(19,37,53,.97), rgba(7,18,29,.98));
    box-shadow: 0 40px 100px rgba(0,0,0,.34);
}

.climate-os .home-v45-router::before {
    content: "";
    position: absolute;
    inset: 11px;
    pointer-events: none;
    border: 1px solid rgba(111,228,206,.07);
    border-radius: 17px;
}

.climate-os .home-v45-router-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 8px 18px;
    border-bottom: 1px solid rgba(188,216,231,.13);
}

.climate-os .home-v45-router-head span {
    color: var(--os-aqua);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .13em;
}

.climate-os .home-v45-router-head strong {
    color: #f1f8fa;
    font-size: 1rem;
}

.climate-os .home-v45-route {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 32px 42px minmax(0, 1fr) auto 20px;
    gap: 12px;
    align-items: center;
    min-height: 96px;
    margin-top: 9px;
    padding: 13px 14px;
    color: #dce9ed;
    border: 1px solid rgba(188,216,231,.11);
    border-radius: 15px;
    background: rgba(255,255,255,.022);
    transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.climate-os .home-v45-route:hover {
    border-color: rgba(111,228,206,.4);
    background: rgba(111,228,206,.06);
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
    transform: translateX(4px);
}

.climate-os .home-v45-route-primary {
    border-color: rgba(111,228,206,.3);
    background: rgba(111,228,206,.075);
}

.climate-os .home-v45-route-number {
    color: var(--os-aqua);
    font-size: .58rem;
    font-weight: 820;
    letter-spacing: .08em;
}

.climate-os .home-v45-route-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--os-aqua);
    border: 1px solid rgba(111,228,206,.24);
    border-radius: 11px;
    background: rgba(111,228,206,.055);
}

.climate-os .home-v45-route-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.climate-os .home-v45-route-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.climate-os .home-v45-route-copy strong {
    color: #edf6f8;
    font-size: .84rem;
    line-height: 1.25;
}

.climate-os .home-v45-route-copy small {
    color: #8096a3;
    font-size: .65rem;
    line-height: 1.45;
}

.climate-os .home-v45-route-output {
    padding: 5px 8px;
    color: #8fe8d6;
    border: 1px solid rgba(111,228,206,.2);
    border-radius: 999px;
    font-size: .53rem;
    font-weight: 800;
    letter-spacing: .08em;
    white-space: nowrap;
}

.climate-os .home-v45-route > i {
    color: var(--os-aqua);
    font-style: normal;
    transition: transform .22s ease;
}

.climate-os .home-v45-route:hover > i {
    transform: translateX(3px);
}

.climate-os .home-v45-flow {
    position: relative;
    padding: clamp(86px, 9vw, 128px) 0;
    background:
        radial-gradient(circle at 100% 0, rgba(90,184,255,.08), transparent 28%),
        linear-gradient(180deg, #f3f6f4, #e8efec);
    overflow: hidden;
}

.climate-os .home-v45-flow::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(10,38,51,.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,38,51,.034) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.climate-os .home-v45-section-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr);
    gap: 70px;
    align-items: end;
}

.climate-os .home-v45-section-head h2 {
    max-width: 820px;
    margin: 13px 0 0;
    color: #0c1d27;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: .98;
}

.climate-os .home-v45-section-head > p {
    margin: 0 0 8px;
    color: #607984;
    font-size: .98rem;
    line-height: 1.7;
}

.climate-os .home-v45-process {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: 62px;
    overflow: hidden;
    border: 1px solid rgba(10,38,51,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 24px 64px rgba(13,50,62,.08);
    backdrop-filter: blur(9px);
}

.climate-os .home-v45-process article {
    position: relative;
    min-height: 295px;
    padding: 34px 31px 31px;
}

.climate-os .home-v45-process article + .home-v45-process-arrow + article {
    border-left: 1px solid rgba(10,38,51,.1);
}

.climate-os .home-v45-step {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #6b838d;
    font-size: .61rem;
    font-weight: 820;
    letter-spacing: .1em;
}

.climate-os .home-v45-process-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 50px;
    color: #0d958b;
    border: 1px solid rgba(13,149,139,.22);
    border-radius: 14px;
    background: rgba(70,214,198,.09);
}

.climate-os .home-v45-process-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.climate-os .home-v45-process h3 {
    max-width: 250px;
    margin-bottom: 12px;
    color: #10222c;
    font-size: 1.5rem;
}

.climate-os .home-v45-process p {
    margin: 0;
    color: #607984;
    font-size: .87rem;
    line-height: 1.65;
}

.climate-os .home-v45-process-arrow {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    align-self: center;
    width: 46px;
    height: 46px;
    margin-inline: -23px;
    color: #0d958b;
    background: #edf4f1;
    border: 1px solid rgba(13,149,139,.24);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(13,50,62,.09);
}

.climate-os .home-v45-scope {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 24px;
    padding: 17px 20px;
    color: #617a85;
    border: 1px solid rgba(10,38,51,.11);
    border-radius: 15px;
    background: rgba(255,255,255,.58);
}

.climate-os .home-v45-scope > span {
    font-size: .65rem;
    font-weight: 820;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.climate-os .home-v45-scope > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.climate-os .home-v45-scope a {
    padding: 6px 10px;
    color: #274550;
    border: 1px solid rgba(10,38,51,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    font-size: .68rem;
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.climate-os .home-v45-scope a:hover {
    color: #071b27;
    border-color: rgba(13,149,139,.32);
    background: rgba(70,214,198,.12);
}

.climate-os .home-v45-services {
    position: relative;
    padding: clamp(82px, 9vw, 124px) 0;
    color: var(--os-text);
    background:
        radial-gradient(circle at 78% 20%, rgba(111,228,206,.1), transparent 24%),
        linear-gradient(145deg, #07131f, #0b1d2b 60%, #0a2632);
    overflow: hidden;
}

.climate-os .home-v45-services-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
}

.climate-os .home-v45-services-scan span {
    position: absolute;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(111,228,206,.27), transparent);
    transform: rotate(-5deg);
}

.climate-os .home-v45-services-scan span:nth-child(1) { top: 24%; }
.climate-os .home-v45-services-scan span:nth-child(2) { top: 52%; transform: rotate(4deg); }
.climate-os .home-v45-services-scan span:nth-child(3) { top: 78%; transform: rotate(-2deg); }

.climate-os .home-v45-services-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(390px, 1.05fr) minmax(250px, .62fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: start;
}

.climate-os .home-v45-services h2 {
    max-width: 560px;
    margin: 14px 0 18px;
    color: #f1f8fa;
    font-size: clamp(2.7rem, 4.6vw, 5rem);
    line-height: .98;
}

.climate-os .home-v45-services-grid > div:first-child > p {
    max-width: 580px;
    margin: 0;
    color: #92a9b5;
    font-size: .94rem;
    line-height: 1.72;
}

.climate-os .home-v45-service-list {
    overflow: hidden;
    border: 1px solid rgba(188,216,231,.15);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}

.climate-os .home-v45-service-list a {
    display: grid;
    grid-template-columns: 46px minmax(0,1fr) 22px;
    gap: 13px;
    align-items: center;
    min-height: 72px;
    padding: 13px 16px;
    color: #dce9ed;
    border-bottom: 1px solid rgba(188,216,231,.11);
    transition: color .2s ease, background .2s ease, padding-left .2s ease;
}

.climate-os .home-v45-service-list a:last-child {
    border-bottom: 0;
}

.climate-os .home-v45-service-list a:hover {
    color: #fff;
    background: rgba(111,228,206,.065);
    padding-left: 20px;
}

.climate-os .home-v45-service-list span {
    color: var(--os-aqua);
    font-size: .57rem;
    font-weight: 820;
    letter-spacing: .08em;
}

.climate-os .home-v45-service-list strong {
    font-size: .8rem;
    font-weight: 720;
}

.climate-os .home-v45-service-list i {
    color: var(--os-aqua);
    font-style: normal;
}

.climate-os .home-v45-service-action {
    padding: 24px;
    color: #07141e;
    border-radius: 18px;
    background: linear-gradient(155deg, #6fe4ce, #d8ff8a);
    box-shadow: 0 24px 62px rgba(0,0,0,.2);
}

.climate-os .home-v45-service-action > span {
    display: block;
    margin-bottom: 26px;
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.climate-os .home-v45-service-action > strong {
    display: block;
    margin-bottom: 28px;
    font-size: clamp(1.45rem, 2.4vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.climate-os .home-v45-service-action .button {
    width: 100%;
    color: #f4fbfc;
    background: #07141e;
    border-color: #07141e;
}

.climate-os.page-home .site-footer {
    border-top: 1px solid rgba(188,216,231,.12);
}

@media (min-width: 1101px) and (max-width: 1320px) {
    .climate-os .home-v45-hero-grid {
        grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
        gap: 48px;
    }

    .climate-os .home-v45-copy h1 {
        font-size: clamp(3.4rem, 5.4vw, 5.5rem);
    }

    .climate-os .home-v45-route {
        grid-template-columns: 30px 38px minmax(0, 1fr) 18px;
    }

    .climate-os .home-v45-route-output {
        display: none;
    }

    .climate-os .home-v45-services-grid {
        grid-template-columns: minmax(250px, .72fr) minmax(360px, 1fr);
    }

    .climate-os .home-v45-service-action {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto minmax(0,1fr) 220px;
        gap: 24px;
        align-items: center;
    }

    .climate-os .home-v45-service-action > span,
    .climate-os .home-v45-service-action > strong {
        margin: 0;
    }
}

@media (max-width: 1100px) {
    .climate-os .site-header.is-scrolled {
        border-bottom-color: rgba(111,228,206,.18);
        box-shadow: 0 12px 30px rgba(2,11,20,.2);
    }

    .climate-os .primary-nav > a::after {
        right: 16px;
    }

    .climate-os .home-v45-hero {
        min-height: auto;
        padding: 72px 0 84px;
    }

    .climate-os .home-v45-hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .climate-os .home-v45-copy {
        max-width: 850px;
    }

    .climate-os .home-v45-router {
        max-width: 860px;
    }

    .climate-os .home-v45-section-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .climate-os .home-v45-section-head > p {
        max-width: 720px;
    }

    .climate-os .home-v45-process {
        grid-template-columns: 1fr;
    }

    .climate-os .home-v45-process article {
        min-height: 0;
        padding: 30px;
    }

    .climate-os .home-v45-process article + .home-v45-process-arrow + article {
        border-top: 1px solid rgba(10,38,51,.1);
        border-left: 0;
    }

    .climate-os .home-v45-process-icon {
        margin-bottom: 28px;
    }

    .climate-os .home-v45-process-arrow {
        justify-self: center;
        margin: -23px 0;
        transform: rotate(90deg);
    }

    .climate-os .home-v45-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .climate-os .home-v45-service-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .climate-os .home-v45-hero {
        padding: 56px 0 66px;
    }

    .climate-os .home-v45-copy h1 {
        font-size: clamp(3.05rem, 14.6vw, 4.8rem);
    }

    .climate-os .home-v45-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .climate-os .home-v45-actions .button {
        width: 100%;
    }

    .climate-os .home-v45-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .climate-os .home-v45-proof span {
        margin-right: 0;
    }

    .climate-os .home-v45-router {
        padding: 12px;
        border-radius: 18px;
    }

    .climate-os .home-v45-router-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 8px 7px 15px;
    }

    .climate-os .home-v45-route {
        grid-template-columns: 30px 36px minmax(0,1fr) 17px;
        gap: 9px;
        min-height: 96px;
        padding: 12px 9px;
    }

    .climate-os .home-v45-route-output {
        display: none;
    }

    .climate-os .home-v45-route-icon {
        width: 35px;
        height: 35px;
    }

    .climate-os .home-v45-route-copy strong {
        font-size: .78rem;
    }

    .climate-os .home-v45-route-copy small {
        font-size: .61rem;
    }

    .climate-os .home-v45-flow,
    .climate-os .home-v45-services {
        padding: 72px 0;
    }

    .climate-os .home-v45-section-head h2,
    .climate-os .home-v45-services h2 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .climate-os .home-v45-process article {
        padding: 27px 24px;
    }

    .climate-os .home-v45-scope {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .climate-os .home-v45-scope > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .climate-os .home-v45-scope a {
        border-radius: 10px;
    }

    .climate-os .home-v45-services-grid {
        grid-template-columns: 1fr;
    }

    .climate-os .home-v45-service-action {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .climate-os .home-v45-route,
    .climate-os .home-v45-route > i,
    .climate-os .home-v45-service-list a,
    .climate-os .primary-nav > a::after {
        transition: none !important;
    }
}

.climate-os .home-v45-scope > div > span {
    padding: 6px 10px;
    color: #274550;
    border: 1px solid rgba(10,38,51,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    font-size: .68rem;
    font-weight: 700;
}

@media (max-width: 720px) {
    .climate-os .home-v45-scope > div > span {
        border-radius: 10px;
    }
}

.climate-os.nav-open .cookie-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* V4.5.0 - banda compacta de aplicabilitate, distincta de paginile tematice */
.climate-os .home-v45-context {
    position: relative;
    padding: 34px 0;
    color: #17323d;
    border-bottom: 1px solid rgba(10,38,51,.1);
    background:
        linear-gradient(rgba(10,38,51,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,38,51,.025) 1px, transparent 1px),
        #eef4f1;
    background-size: 52px 52px;
}

.climate-os .home-v45-context-grid {
    display: grid;
    grid-template-columns: minmax(230px, .7fr) minmax(430px, 1.35fr) auto;
    gap: 34px;
    align-items: center;
}

.climate-os .home-v45-context-grid > div:first-child {
    display: grid;
    gap: 8px;
}

.climate-os .home-v45-context-grid > div:first-child > strong {
    max-width: 360px;
    color: #102833;
    font-size: clamp(1.25rem, 1.9vw, 1.85rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.climate-os .home-v45-context-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.climate-os .home-v45-context-tags span {
    padding: 8px 11px;
    color: #31505b;
    border: 1px solid rgba(10,38,51,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    font-size: .68rem;
    font-weight: 720;
}

.climate-os .home-v45-context-grid > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 17px;
    color: #08212c;
    border: 1px solid rgba(13,149,139,.25);
    border-radius: 12px;
    background: rgba(111,228,206,.15);
    font-size: .71rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background .18s ease, transform .18s ease;
}

.climate-os .home-v45-context-grid > a:hover {
    background: rgba(111,228,206,.28);
    transform: translateX(2px);
}

@media (max-width: 1100px) {
    .climate-os .primary-nav {
        background: #06101a;
    }

    .climate-os .home-v45-context-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .climate-os .home-v45-context-grid > a {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .climate-os .home-v45-context {
        padding: 30px 0;
    }

    .climate-os .home-v45-context-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .climate-os .home-v45-context-tags span {
        border-radius: 10px;
    }

    .climate-os .home-v45-context-grid > a {
        width: 100%;
    }
}

/* ========================================================================== */
/* V4.6.0 - INTERFATA LUMINOASA, VERDE PETROL SI ALBASTRU DISCRET             */
/* ========================================================================== */

.climate-os.ui-white-v46 {
    --v46-white: #ffffff;
    --v46-canvas: #f8fbfb;
    --v46-surface: #ffffff;
    --v46-surface-soft: #f1f8f7;
    --v46-blue-soft: #f1f7fb;
    --v46-ink: #102b3d;
    --v46-text: #405b67;
    --v46-muted: #718791;
    --v46-petrol: #0c7774;
    --v46-petrol-dark: #075c5b;
    --v46-petrol-soft: #e5f4f1;
    --v46-blue: #398fae;
    --v46-blue-dark: #276e89;
    --v46-line: #dbe7e9;
    --v46-line-strong: #c8dadc;
    --v46-warning: #d98332;
    --v46-shadow-sm: 0 7px 24px rgba(25, 70, 80, .065);
    --v46-shadow-md: 0 18px 50px rgba(25, 70, 80, .095);
    --os-rail: 286px;
    --os-top: 70px;
    color: var(--v46-text);
    background: var(--v46-white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.climate-os.ui-white-v46 *,
.climate-os.ui-white-v46 *::before,
.climate-os.ui-white-v46 *::after {
    box-sizing: border-box;
}

.climate-os.ui-white-v46 a {
    color: inherit;
}

.climate-os.ui-white-v46 svg {
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.climate-os.ui-white-v46 .container {
    width: min(calc(100% - 64px), 1240px);
    margin-inline: auto;
}

.climate-os.ui-white-v46 .narrow {
    width: min(calc(100% - 64px), 900px);
    margin-inline: auto;
}

.climate-os.ui-white-v46 .site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 auto 0 0;
    width: var(--os-rail);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 14px 14px;
    color: var(--v46-ink);
    background: #fff;
    border-right: 1px solid var(--v46-line);
    box-shadow: 7px 0 30px rgba(35, 78, 87, .035);
    overflow: hidden;
}

.climate-os.ui-white-v46 .site-header::after {
    display: none;
}

.climate-os.ui-white-v46 .rail-brand {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 9px 17px;
    color: var(--v46-ink);
    border-bottom: 1px solid var(--v46-line);
    border-radius: 0;
    background: #fff;
}

.climate-os.ui-white-v46 .rail-brand img {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
}

.climate-os.ui-white-v46 .rail-brand .brand-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.climate-os.ui-white-v46 .rail-brand .brand-copy strong {
    overflow: hidden;
    color: var(--v46-ink);
    font-size: .86rem;
    font-weight: 790;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.climate-os.ui-white-v46 .rail-brand .brand-copy small {
    color: var(--v46-muted);
    font-size: .58rem;
    font-weight: 650;
    line-height: 1.35;
}

.climate-os.ui-white-v46 .nav-toggle {
    display: none;
}

.climate-os.ui-white-v46 .primary-nav {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    min-height: 0;
    margin: 16px 0 11px;
    padding: 0 1px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d2e3e5 transparent;
}

.climate-os.ui-white-v46 .primary-nav::-webkit-scrollbar {
    width: 4px;
}

.climate-os.ui-white-v46 .primary-nav::-webkit-scrollbar-thumb {
    background: #d2e3e5;
    border-radius: 99px;
}

.climate-os.ui-white-v46 .primary-nav > a,
.climate-os.ui-white-v46 .primary-nav > .nav-cta {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    min-height: 56px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #405d68;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.climate-os.ui-white-v46 .primary-nav > a::before,
.climate-os.ui-white-v46 .primary-nav > a::after {
    display: none;
}

.climate-os.ui-white-v46 .primary-nav > a:hover,
.climate-os.ui-white-v46 .primary-nav > a:focus-visible {
    color: var(--v46-petrol-dark);
    background: #f4f9f8;
    border-color: var(--v46-line);
    transform: translateX(2px);
}

.climate-os.ui-white-v46 .primary-nav > a.is-active,
.climate-os.ui-white-v46 .primary-nav > a.is-scroll-current,
.climate-os.ui-white-v46 .primary-nav > .nav-cta.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--v46-petrol), #168986);
    border-color: transparent;
    box-shadow: 0 8px 21px rgba(12,119,116,.18);
}

.climate-os.ui-white-v46 .nav-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--v46-blue-dark);
    border: 1px solid #d5e5e8;
    border-radius: 9px;
    background: #f5fafb;
}

.climate-os.ui-white-v46 .nav-icon svg {
    width: 19px;
    height: 19px;
}

.climate-os.ui-white-v46 .primary-nav > a:hover .nav-icon {
    color: var(--v46-petrol);
    border-color: #bfd8d8;
    background: #fff;
}

.climate-os.ui-white-v46 .primary-nav > a.is-active .nav-icon,
.climate-os.ui-white-v46 .primary-nav > a.is-scroll-current .nav-icon {
    color: #fff;
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
}

.climate-os.ui-white-v46 .nav-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.climate-os.ui-white-v46 .nav-label {
    color: inherit;
    font-size: .77rem;
    font-weight: 760;
    line-height: 1.15;
}

.climate-os.ui-white-v46 .nav-copy small {
    color: #879aa2;
    font-size: .57rem;
    font-weight: 620;
    line-height: 1.15;
}

.climate-os.ui-white-v46 .primary-nav > a.is-active .nav-copy small,
.climate-os.ui-white-v46 .primary-nav > a.is-scroll-current .nav-copy small {
    color: rgba(255,255,255,.78);
}

.climate-os.ui-white-v46 .rail-support {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 10px;
    padding: 14px 12px;
    border: 1px solid #cfe1e5;
    border-radius: 12px;
    background: linear-gradient(145deg, #f7fbfb, #f2f8fb);
}

.climate-os.ui-white-v46 .rail-support-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--v46-petrol);
    border-radius: 50%;
    background: #e6f3f3;
}

.climate-os.ui-white-v46 .rail-support-icon svg {
    width: 20px;
    height: 20px;
}

.climate-os.ui-white-v46 .rail-support div {
    display: grid;
    gap: 3px;
}

.climate-os.ui-white-v46 .rail-support strong {
    color: var(--v46-ink);
    font-size: .7rem;
}

.climate-os.ui-white-v46 .rail-support small {
    color: var(--v46-muted);
    font-size: .58rem;
}

.climate-os.ui-white-v46 .rail-support a {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    color: var(--v46-petrol-dark);
    font-size: .66rem;
    font-weight: 760;
    text-decoration: none;
}

.climate-os.ui-white-v46 .rail-ogaus {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 9px 1px;
    color: #69818b;
    font-size: .58rem;
    font-weight: 720;
    text-decoration: none;
}

.climate-os.ui-white-v46 .rail-ogaus-mark {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: .52rem;
    border-radius: 50%;
    background: var(--v46-petrol);
}

.climate-os.ui-white-v46 .command-bar {
    position: fixed;
    z-index: 900;
    top: 0;
    right: 0;
    left: var(--os-rail);
    height: var(--os-top);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 30px;
    color: var(--v46-ink);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--v46-line);
    box-shadow: 0 7px 30px rgba(24,66,77,.035);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.climate-os.ui-white-v46 .command-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: #42616d;
    border: 1px solid #d6e6e9;
    border-radius: 8px;
    background: #f7fbfc;
}

.climate-os.ui-white-v46 .command-badge span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--v46-blue-dark);
}

.climate-os.ui-white-v46 .command-badge svg {
    width: 18px;
    height: 18px;
}

.climate-os.ui-white-v46 .command-badge strong {
    font-size: .7rem;
    font-weight: 720;
}

.climate-os.ui-white-v46 .command-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.climate-os.ui-white-v46 .command-current {
    color: #718791;
    font-size: .68rem;
    font-weight: 680;
}

.climate-os.ui-white-v46 .command-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 42px;
    padding: 0 17px;
    color: #fff;
    font-size: .7rem;
    font-weight: 760;
    border-radius: 8px;
    background: var(--v46-petrol-dark);
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(7,92,91,.18);
}

.climate-os.ui-white-v46 main {
    min-height: 100vh;
    margin-left: var(--os-rail);
    padding-top: var(--os-top);
    color: var(--v46-text);
    background: #fff;
}

.climate-os.ui-white-v46 h1,
.climate-os.ui-white-v46 h2,
.climate-os.ui-white-v46 h3,
.climate-os.ui-white-v46 h4,
.climate-os.ui-white-v46 strong {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 20px;
    color: #fff;
    border: 1px solid var(--v46-petrol);
    border-radius: 8px;
    background: var(--v46-petrol);
    box-shadow: none;
    font-size: .76rem;
    font-weight: 760;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.climate-os.ui-white-v46 .button:hover,
.climate-os.ui-white-v46 .button:focus-visible {
    color: #fff;
    border-color: var(--v46-petrol-dark);
    background: var(--v46-petrol-dark);
    box-shadow: 0 10px 24px rgba(7,92,91,.16);
    transform: translateY(-1px);
}

.climate-os.ui-white-v46 .button-secondary,
.climate-os.ui-white-v46 .button-light,
.climate-os.ui-white-v46 .button-dark,
.climate-os.ui-white-v46 .button-ghost-light,
.climate-os.ui-white-v46 .button-outline-petrol {
    color: var(--v46-petrol-dark);
    border-color: var(--v46-line-strong);
    background: #fff;
}

.climate-os.ui-white-v46 .button-secondary:hover,
.climate-os.ui-white-v46 .button-light:hover,
.climate-os.ui-white-v46 .button-dark:hover,
.climate-os.ui-white-v46 .button-ghost-light:hover,
.climate-os.ui-white-v46 .button-outline-petrol:hover {
    color: var(--v46-petrol-dark);
    border-color: #a9cccc;
    background: #f4faf9;
}

/* Prima pagina */
.climate-os.ui-white-v46 .home-white-hero {
    position: relative;
    padding: clamp(58px, 6.5vw, 92px) 0 44px;
    background:
        radial-gradient(circle at 78% 25%, rgba(70,157,184,.08), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fff 72%, #f8fbfb 100%);
    border-bottom: 1px solid var(--v46-line);
    overflow: hidden;
}

.climate-os.ui-white-v46 .home-white-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(#c7dde0 .8px, transparent .8px);
    background-size: 30px 30px;
    opacity: .2;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 46%, #000 100%);
}

.climate-os.ui-white-v46 .home-white-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(430px,.97fr);
    align-items: center;
    gap: clamp(38px, 5vw, 76px);
}

.climate-os.ui-white-v46 .home-white-copy {
    max-width: 750px;
}

.climate-os.ui-white-v46 .home-white-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 11px;
    color: var(--v46-blue-dark);
    border: 1px solid #d1e4eb;
    border-radius: 7px;
    background: #f6fafc;
    font-size: .68rem;
    font-weight: 740;
}

.climate-os.ui-white-v46 .home-white-badge svg {
    width: 18px;
    height: 18px;
}

.climate-os.ui-white-v46 .home-white-copy h1 {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--v46-ink);
    font-size: clamp(3.15rem, 5.35vw, 5.7rem);
    font-weight: 790;
    line-height: .98;
    letter-spacing: -.06em;
}

.climate-os.ui-white-v46 .home-white-copy > p {
    max-width: 680px;
    margin: 0 0 30px;
    color: #566f7a;
    font-size: clamp(1rem, 1.18vw, 1.13rem);
    line-height: 1.68;
}

.climate-os.ui-white-v46 .home-white-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.climate-os.ui-white-v46 .home-white-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #6b818b;
    font-size: .68rem;
    font-weight: 700;
}

.climate-os.ui-white-v46 .home-white-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.climate-os.ui-white-v46 .home-white-trust i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v46-petrol);
    box-shadow: 0 0 0 4px rgba(12,119,116,.09);
}

.climate-os.ui-white-v46 .home-white-visual {
    position: relative;
    min-height: 435px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 60px;
}

.climate-os.ui-white-v46 .home-white-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 22px 28px rgba(35,83,92,.08));
}

.climate-os.ui-white-v46 .home-white-signals {
    position: absolute;
    z-index: 2;
    top: 2px;
    right: 2%;
    left: 2%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 5px;
}

.climate-os.ui-white-v46 .home-white-signals > span {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 6px;
    color: #456875;
    font-size: .56rem;
    text-align: center;
}

.climate-os.ui-white-v46 .home-white-signals > span::after {
    content: "";
    width: 1px;
    height: 38px;
    background: linear-gradient(#8ab8c3, transparent);
}

.climate-os.ui-white-v46 .home-white-signals i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #cee1e5;
    border-radius: 50%;
    background: #fff;
}

.climate-os.ui-white-v46 .home-white-signals i::before {
    color: var(--v46-petrol);
    font-style: normal;
    font-size: .9rem;
}

.climate-os.ui-white-v46 .home-white-signals .signal-rain::before { content: "☂"; }
.climate-os.ui-white-v46 .home-white-signals .signal-leaf::before { content: "◇"; }
.climate-os.ui-white-v46 .home-white-signals .signal-doc::before { content: "✓"; }
.climate-os.ui-white-v46 .home-white-signals .signal-euro::before { content: "€"; }

.climate-os.ui-white-v46 .home-white-routes {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 40px;
}

.climate-os.ui-white-v46 .home-white-route {
    min-height: 132px;
    display: grid;
    grid-template-columns: 52px minmax(0,1fr) 24px;
    align-items: center;
    gap: 15px;
    padding: 21px;
    color: var(--v46-text);
    border: 1px solid var(--v46-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--v46-shadow-sm);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.climate-os.ui-white-v46 .home-white-route:hover {
    border-color: #b9d6d7;
    box-shadow: var(--v46-shadow-md);
    transform: translateY(-3px);
}

.climate-os.ui-white-v46 .home-white-route-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--v46-petrol-dark);
    border-radius: 50%;
    background: linear-gradient(145deg, #eff7f7, #e7f1f6);
}

.climate-os.ui-white-v46 .home-white-route-icon svg {
    width: 25px;
    height: 25px;
}

.climate-os.ui-white-v46 .home-white-route > span:nth-child(2) {
    display: grid;
    gap: 7px;
}

.climate-os.ui-white-v46 .home-white-route strong {
    color: var(--v46-ink);
    font-size: .88rem;
    line-height: 1.2;
}

.climate-os.ui-white-v46 .home-white-route small {
    color: #6c818a;
    font-size: .67rem;
    line-height: 1.48;
}

.climate-os.ui-white-v46 .home-white-route > i {
    color: var(--v46-petrol);
    font-style: normal;
    font-size: 1.3rem;
}

.climate-os.ui-white-v46 .home-white-services {
    padding: clamp(72px, 7vw, 108px) 0;
    background: #fff;
}

.climate-os.ui-white-v46 .home-white-section-head {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(320px,.65fr);
    align-items: end;
    gap: 58px;
    margin-bottom: 36px;
}

.climate-os.ui-white-v46 .home-white-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--v46-petrol);
    font-size: .62rem;
    font-weight: 820;
    letter-spacing: .16em;
}

.climate-os.ui-white-v46 .home-white-section-head h2,
.climate-os.ui-white-v46 .home-white-output-head h2 {
    max-width: 820px;
    margin: 0;
    color: var(--v46-ink);
    font-size: clamp(2.5rem, 4.6vw, 4.65rem);
    font-weight: 780;
    line-height: 1.01;
    letter-spacing: -.05em;
}

.climate-os.ui-white-v46 .home-white-section-head > p {
    margin: 0;
    color: #647a84;
    font-size: .92rem;
    line-height: 1.68;
}

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

.climate-os.ui-white-v46 .home-white-service-card {
    min-height: 154px;
    display: grid;
    grid-template-columns: 49px minmax(0,1fr) 18px;
    align-items: start;
    gap: 15px;
    padding: 22px;
    color: var(--v46-text);
    border: 1px solid var(--v46-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(25,70,80,.045);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.climate-os.ui-white-v46 .home-white-service-card:hover {
    border-color: #b8d4d6;
    box-shadow: var(--v46-shadow-md);
    transform: translateY(-2px);
}

.climate-os.ui-white-v46 .service-card-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: var(--v46-petrol-dark);
    border-radius: 50%;
    background: var(--v46-blue-soft);
}

.climate-os.ui-white-v46 .service-card-icon svg {
    width: 24px;
    height: 24px;
}

.climate-os.ui-white-v46 .home-white-service-card > span:nth-child(2) {
    display: grid;
    gap: 8px;
}

.climate-os.ui-white-v46 .home-white-service-card strong {
    font-size: .85rem;
    line-height: 1.22;
}

.climate-os.ui-white-v46 .home-white-service-card small {
    color: #667c86;
    font-size: .66rem;
    line-height: 1.5;
}

.climate-os.ui-white-v46 .home-white-service-card > i {
    align-self: center;
    color: var(--v46-petrol);
    font-style: normal;
    font-size: 1.15rem;
}

.climate-os.ui-white-v46 .home-white-output {
    padding: clamp(64px, 6vw, 92px) 0;
    background: linear-gradient(180deg, #f7fbfb, #f3f8fb);
    border-top: 1px solid var(--v46-line);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .home-white-output-head {
    margin-bottom: 30px;
}

.climate-os.ui-white-v46 .home-white-output-head h2 {
    max-width: 880px;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

.climate-os.ui-white-v46 .home-white-output-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
}

.climate-os.ui-white-v46 .home-white-output-grid article {
    min-height: 142px;
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--v46-line);
    border-radius: 11px;
    background: rgba(255,255,255,.9);
}

.climate-os.ui-white-v46 .home-white-output-grid article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--v46-blue-dark);
    border-radius: 10px;
    background: #e9f3f7;
}

.climate-os.ui-white-v46 .home-white-output-grid svg {
    width: 22px;
    height: 22px;
}

.climate-os.ui-white-v46 .home-white-output-grid strong {
    display: block;
    margin-bottom: 7px;
    font-size: .78rem;
}

.climate-os.ui-white-v46 .home-white-output-grid p {
    margin: 0;
    color: #687d86;
    font-size: .64rem;
    line-height: 1.5;
}

.climate-os.ui-white-v46 .home-white-ogaus {
    padding: 48px 0;
    background: #fff;
}

.climate-os.ui-white-v46 .home-white-ogaus-grid {
    display: grid;
    grid-template-columns: 70px minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 30px;
    border: 1px solid #cfe1e4;
    border-radius: 15px;
    background: linear-gradient(135deg, #f2f9f8, #f3f8fb);
}

.climate-os.ui-white-v46 .home-white-ogaus-mark {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--v46-petrol), var(--v46-blue));
    font-size: 1rem;
    font-weight: 820;
}

.climate-os.ui-white-v46 .home-white-ogaus-grid > div:nth-child(2) > span {
    color: var(--v46-petrol);
    font-size: .62rem;
    font-weight: 820;
    letter-spacing: .14em;
}

.climate-os.ui-white-v46 .home-white-ogaus-grid h2 {
    max-width: 820px;
    margin: 7px 0 9px;
    font-size: clamp(1.5rem, 2.5vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.climate-os.ui-white-v46 .home-white-ogaus-grid p {
    max-width: 820px;
    margin: 0;
    color: #647983;
    font-size: .76rem;
    line-height: 1.55;
}

/* Pagini interioare */
.climate-os.ui-white-v46 .page-hero {
    position: relative;
    padding: clamp(64px, 7vw, 104px) 0 clamp(54px, 6vw, 86px);
    color: var(--v46-text);
    background:
        radial-gradient(circle at 85% 18%, rgba(58,143,174,.1), transparent 28%),
        linear-gradient(180deg, #fff, #f7fbfb);
    border-bottom: 1px solid var(--v46-line);
    overflow: hidden;
}

.climate-os.ui-white-v46 .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#c9dde0 .8px, transparent .8px);
    background-size: 28px 28px;
    opacity: .2;
    mask-image: linear-gradient(90deg, transparent 25%, #000 100%);
    pointer-events: none;
}

.climate-os.ui-white-v46 .page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(300px,.55fr);
    align-items: center;
    gap: 52px;
}

.climate-os.ui-white-v46 .page-hero h1 {
    max-width: 900px;
    margin-top: 15px;
    color: var(--v46-ink);
    font-size: clamp(3rem, 5.8vw, 6rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.climate-os.ui-white-v46 .page-hero .lead,
.climate-os.ui-white-v46 .page-hero p {
    color: #5e7580;
}

.climate-os.ui-white-v46 .breadcrumbs,
.climate-os.ui-white-v46 .breadcrumbs a,
.climate-os.ui-white-v46 .breadcrumbs-dark,
.climate-os.ui-white-v46 .breadcrumbs-dark a {
    color: #758b94;
}

.climate-os.ui-white-v46 .eyebrow,
.climate-os.ui-white-v46 .eyebrow-light,
.climate-os.ui-white-v46 .system-index,
.climate-os.ui-white-v46 .system-index-light {
    color: var(--v46-petrol);
}

.climate-os.ui-white-v46 .page-hero-aside,
.climate-os.ui-white-v46 .aside-card,
.climate-os.ui-white-v46 .contact-aside-card,
.climate-os.ui-white-v46 .evaluator-sidebar,
.climate-os.ui-white-v46 .evaluator-card,
.climate-os.ui-white-v46 .contact-card {
    color: var(--v46-text);
    background: #fff;
    border: 1px solid var(--v46-line);
    border-radius: 14px;
    box-shadow: var(--v46-shadow-sm);
}

.climate-os.ui-white-v46 .page-hero-aside h2,
.climate-os.ui-white-v46 .page-hero-aside h3,
.climate-os.ui-white-v46 .aside-card h2,
.climate-os.ui-white-v46 .aside-card h3,
.climate-os.ui-white-v46 .contact-aside-card h2,
.climate-os.ui-white-v46 .contact-aside-card h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .page-hero-aside p,
.climate-os.ui-white-v46 .page-hero-aside li,
.climate-os.ui-white-v46 .aside-card p,
.climate-os.ui-white-v46 .aside-card li,
.climate-os.ui-white-v46 .contact-aside-card p {
    color: #607681;
}

.climate-os.ui-white-v46 .section {
    color: var(--v46-text);
    background: #fff;
}

.climate-os.ui-white-v46 .section-surface {
    background: #f7fbfb;
    border-top: 1px solid var(--v46-line);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .section-dark {
    color: var(--v46-text);
    background: linear-gradient(135deg, #eef8f6, #f2f8fb);
    border-top: 1px solid var(--v46-line);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .section-dark h2,
.climate-os.ui-white-v46 .section-dark h3,
.climate-os.ui-white-v46 .section-dark strong,
.climate-os.ui-white-v46 .evaluator-promo h2,
.climate-os.ui-white-v46 .evaluator-promo h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .section-dark p,
.climate-os.ui-white-v46 .section-dark li,
.climate-os.ui-white-v46 .evaluator-promo p {
    color: #607681;
}

.climate-os.ui-white-v46 .info-card,
.climate-os.ui-white-v46 .feature-card,
.climate-os.ui-white-v46 .metric-card,
.climate-os.ui-white-v46 .resource-card,
.climate-os.ui-white-v46 .process-step,
.climate-os.ui-white-v46 .glossary-item,
.climate-os.ui-white-v46 .timeline-content,
.climate-os.ui-white-v46 .service-callout,
.climate-os.ui-white-v46 .evaluator-promo {
    color: var(--v46-text);
    background: #fff;
    border: 1px solid var(--v46-line);
    border-radius: 13px;
    box-shadow: var(--v46-shadow-sm);
}

.climate-os.ui-white-v46 .info-card h3,
.climate-os.ui-white-v46 .feature-card h3,
.climate-os.ui-white-v46 .metric-card h3,
.climate-os.ui-white-v46 .resource-card h3,
.climate-os.ui-white-v46 .process-step h3,
.climate-os.ui-white-v46 .glossary-item h2,
.climate-os.ui-white-v46 .glossary-item h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .info-card p,
.climate-os.ui-white-v46 .feature-card p,
.climate-os.ui-white-v46 .metric-card p,
.climate-os.ui-white-v46 .resource-card p,
.climate-os.ui-white-v46 .process-step p,
.climate-os.ui-white-v46 .glossary-item p {
    color: #617782;
}

.climate-os.ui-white-v46 .info-index,
.climate-os.ui-white-v46 .card-number,
.climate-os.ui-white-v46 .process-number,
.climate-os.ui-white-v46 .timeline-number {
    color: var(--v46-petrol);
    border-color: #bcd8d8;
    background: var(--v46-petrol-soft);
}

.climate-os.ui-white-v46 .notice,
.climate-os.ui-white-v46 .notice-info {
    color: #365965;
    border-color: #c8dfe4;
    background: #f0f7fa;
}

.climate-os.ui-white-v46 .notice-error {
    color: #7e4335;
    border-color: #efc8bc;
    background: #fff5f1;
}

.climate-os.ui-white-v46 .notice-success {
    color: #356a58;
    border-color: #bfdfd2;
    background: #f0faf5;
}

.climate-os.ui-white-v46 .check-list li::before,
.climate-os.ui-white-v46 .service-module li::before {
    color: var(--v46-petrol);
    background: var(--v46-petrol);
}

.climate-os.ui-white-v46 .data-table,
.climate-os.ui-white-v46 .result-table {
    color: var(--v46-text);
    background: #fff;
}

.climate-os.ui-white-v46 .table-wrap,
.climate-os.ui-white-v46 .result-table-wrap {
    border: 1px solid var(--v46-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--v46-shadow-sm);
}

.climate-os.ui-white-v46 .data-table th,
.climate-os.ui-white-v46 .result-table th {
    color: var(--v46-ink);
    background: #f2f8f8;
    border-color: var(--v46-line);
}

.climate-os.ui-white-v46 .data-table td,
.climate-os.ui-white-v46 .result-table td {
    color: #536c77;
    border-color: var(--v46-line);
}

/* Evaluator si formulare */
.climate-os.ui-white-v46 .evaluator-section,
.climate-os.ui-white-v46 .contact-layout,
.climate-os.ui-white-v46 .content-grid {
    color: var(--v46-text);
}

.climate-os.ui-white-v46 .evaluator-shell {
    align-items: start;
}

.climate-os.ui-white-v46 .evaluator-sidebar {
    overflow: hidden;
}

.climate-os.ui-white-v46 .evaluator-sidebar::after {
    display: none;
}

.climate-os.ui-white-v46 .step-nav-item {
    color: #647b85;
    border-color: var(--v46-line);
    background: transparent;
}

.climate-os.ui-white-v46 .step-nav-item.is-active {
    color: var(--v46-petrol-dark);
    border-color: #b8d6d5;
    background: var(--v46-petrol-soft);
}

.climate-os.ui-white-v46 .progress-track,
.climate-os.ui-white-v46 .risk-track {
    background: #e6eff0;
}

.climate-os.ui-white-v46 .progress-fill,
.climate-os.ui-white-v46 .risk-fill {
    background: linear-gradient(90deg, var(--v46-petrol), var(--v46-blue));
}

.climate-os.ui-white-v46 .form-step-header,
.climate-os.ui-white-v46 .result-header,
.climate-os.ui-white-v46 .result-services-head {
    border-color: var(--v46-line);
}

.climate-os.ui-white-v46 .input,
.climate-os.ui-white-v46 .select,
.climate-os.ui-white-v46 .textarea,
.climate-os.ui-white-v46 input[type="text"],
.climate-os.ui-white-v46 input[type="email"],
.climate-os.ui-white-v46 input[type="tel"],
.climate-os.ui-white-v46 input[type="number"],
.climate-os.ui-white-v46 select,
.climate-os.ui-white-v46 textarea {
    color: var(--v46-ink);
    border: 1px solid #cadde0;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(25,70,80,.025);
}

.climate-os.ui-white-v46 .input:focus,
.climate-os.ui-white-v46 .select:focus,
.climate-os.ui-white-v46 .textarea:focus,
.climate-os.ui-white-v46 input:focus,
.climate-os.ui-white-v46 select:focus,
.climate-os.ui-white-v46 textarea:focus {
    border-color: #6aaead;
    outline: 3px solid rgba(12,119,116,.09);
}

.climate-os.ui-white-v46 .form-label,
.climate-os.ui-white-v46 .form-step-header h2,
.climate-os.ui-white-v46 .form-step-header h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .form-hint {
    color: var(--v46-muted);
}

.climate-os.ui-white-v46 .option-card,
.climate-os.ui-white-v46 .check-option {
    color: var(--v46-text);
    border-color: var(--v46-line);
    background: #fff;
}

.climate-os.ui-white-v46 .option-card:hover,
.climate-os.ui-white-v46 .check-option:hover {
    border-color: #afd0d0;
    background: #f8fbfb;
}

.climate-os.ui-white-v46 .option-card:has(input:checked),
.climate-os.ui-white-v46 .check-option:has(input:checked) {
    border-color: #6eafad;
    background: var(--v46-petrol-soft);
    box-shadow: inset 3px 0 0 var(--v46-petrol);
}

.climate-os.ui-white-v46 .result-summary-card,
.climate-os.ui-white-v46 .result-recommendations,
.climate-os.ui-white-v46 .result-services,
.climate-os.ui-white-v46 .result-service-bundle,
.climate-os.ui-white-v46 .result-service-list > * {
    color: var(--v46-text);
    border-color: var(--v46-line);
    background: #fff;
    box-shadow: var(--v46-shadow-sm);
}

.climate-os.ui-white-v46 .result-status,
.climate-os.ui-white-v46 .status-pill {
    color: var(--v46-petrol-dark);
    border-color: #b8d7d5;
    background: var(--v46-petrol-soft);
}

/* Pagina Servicii si documentatii */
.climate-os.ui-white-v46 .services-hero {
    position: relative;
    color: var(--v46-text);
    background:
        radial-gradient(circle at 82% 20%, rgba(58,143,174,.1), transparent 29%),
        linear-gradient(180deg, #fff, #f7fbfb);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .services-hero-grid {
    background-image: radial-gradient(#bdd8db 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .15;
    mask-image: linear-gradient(90deg, transparent 42%, #000 100%);
}

.climate-os.ui-white-v46 .services-hero::after {
    display: none;
}

.climate-os.ui-white-v46 .services-hero-layout {
    grid-template-columns: minmax(0,1.1fr) minmax(350px,.58fr);
    gap: 54px;
}

.climate-os.ui-white-v46 .services-live {
    color: var(--v46-petrol);
}

.climate-os.ui-white-v46 .services-live i {
    background: #f2b766;
    box-shadow: 0 0 0 6px rgba(242,183,102,.12);
}

.climate-os.ui-white-v46 .services-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: var(--v46-ink);
    font-size: clamp(2.8rem, 4.8vw, 5.35rem);
    line-height: .99;
}

.climate-os.ui-white-v46 .services-hero-copy > p {
    max-width: 760px;
    margin-bottom: 30px;
    color: #5d7480;
    font-size: clamp(.98rem, 1.2vw, 1.1rem);
    line-height: 1.7;
}

.climate-os.ui-white-v46 .services-hero-link {
    color: var(--v46-petrol-dark);
}

.climate-os.ui-white-v46 .services-scope-panel {
    padding: 21px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--v46-line);
    border-radius: 16px;
    box-shadow: var(--v46-shadow-sm);
    backdrop-filter: none;
}

.climate-os.ui-white-v46 .scope-panel-head {
    color: #738993;
    border-bottom-color: var(--v46-line);
}

.climate-os.ui-white-v46 .scope-panel-head strong,
.climate-os.ui-white-v46 .scope-panel-foot strong {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .scope-radar circle,
.climate-os.ui-white-v46 .scope-radar g[stroke] {
    stroke: rgba(49,100,112,.22);
}

.climate-os.ui-white-v46 .scope-radar text {
    fill: #315766;
}

.climate-os.ui-white-v46 .scope-panel-foot {
    color: #748b95;
    border-top-color: var(--v46-line);
}

.climate-os.ui-white-v46 .service-matrix-section,
.climate-os.ui-white-v46 .service-inputs {
    background: #fff;
}

.climate-os.ui-white-v46 .service-matrix-head h2,
.climate-os.ui-white-v46 .service-process-copy h2,
.climate-os.ui-white-v46 .service-inputs h2 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .service-matrix-head > p,
.climate-os.ui-white-v46 .service-process-copy p,
.climate-os.ui-white-v46 .service-process-track p {
    color: #617782;
}

.climate-os.ui-white-v46 .service-matrix {
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.climate-os.ui-white-v46 .service-module,
.climate-os.ui-white-v46 .service-module-featured {
    padding: 30px;
    color: var(--v46-text);
    background: #fff;
    border: 1px solid var(--v46-line);
    border-radius: 14px;
    box-shadow: var(--v46-shadow-sm);
}

.climate-os.ui-white-v46 .service-module-featured {
    background: linear-gradient(145deg, #f7fbfa, #fff);
    border-color: #bfdad7;
}

.climate-os.ui-white-v46 .service-module-top {
    color: #718690;
}

.climate-os.ui-white-v46 .service-module-top span,
.climate-os.ui-white-v46 .service-module > a {
    color: var(--v46-petrol);
}

.climate-os.ui-white-v46 .service-module h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .service-module > p,
.climate-os.ui-white-v46 .service-module ul {
    color: #566d78;
}

.climate-os.ui-white-v46 .service-process {
    color: var(--v46-text);
    background: linear-gradient(135deg, #f1f8f7, #f3f8fb);
    border-top: 1px solid var(--v46-line);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .service-process-track,
.climate-os.ui-white-v46 .service-input-list {
    border-top-color: var(--v46-line-strong);
}

.climate-os.ui-white-v46 .service-process-track > div,
.climate-os.ui-white-v46 .service-input-list > div {
    border-bottom-color: var(--v46-line);
}

.climate-os.ui-white-v46 .service-process-track span,
.climate-os.ui-white-v46 .service-input-list span {
    color: var(--v46-petrol);
}

.climate-os.ui-white-v46 .service-process-track strong,
.climate-os.ui-white-v46 .service-input-list p {
    color: var(--v46-ink);
}

/* Handoff si subsol */
.climate-os.ui-white-v46 .technical-handoff {
    margin-left: var(--os-rail);
    padding: 42px 0;
    color: var(--v46-text);
    background: linear-gradient(135deg, #edf7f5, #eef6fa);
    border-top: 1px solid var(--v46-line);
    border-bottom: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .handoff-grid {
    display: grid;
    grid-template-columns: 58px minmax(0,1fr) auto;
    align-items: center;
    gap: 24px;
}

.climate-os.ui-white-v46 .handoff-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--v46-petrol);
    border: 1px solid #bdd8d7;
    border-radius: 50%;
    background: #fff;
}

.climate-os.ui-white-v46 .handoff-icon svg {
    width: 27px;
    height: 27px;
}

.climate-os.ui-white-v46 .handoff-code {
    color: var(--v46-petrol);
    font-size: .58rem;
    font-weight: 820;
    letter-spacing: .14em;
}

.climate-os.ui-white-v46 .handoff-grid h2 {
    max-width: 820px;
    margin: 7px 0 8px;
    color: var(--v46-ink);
    font-size: clamp(1.45rem, 2.3vw, 2.2rem);
    line-height: 1.12;
}

.climate-os.ui-white-v46 .handoff-grid p {
    max-width: 840px;
    margin: 0;
    color: #617782;
    font-size: .74rem;
    line-height: 1.55;
}

.climate-os.ui-white-v46 .handoff-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.climate-os.ui-white-v46 .handoff-link {
    color: var(--v46-petrol-dark);
    font-size: .69rem;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
}

.climate-os.ui-white-v46 .site-footer {
    margin-left: var(--os-rail);
    color: #5e747e;
    background: #fff;
    border-top: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .footer-system {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 24px;
}

.climate-os.ui-white-v46 .footer-identity {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.climate-os.ui-white-v46 .footer-identity span {
    display: grid;
    gap: 2px;
}

.climate-os.ui-white-v46 .footer-identity strong {
    font-size: .72rem;
}

.climate-os.ui-white-v46 .footer-identity small {
    color: #82969f;
    font-size: .58rem;
}

.climate-os.ui-white-v46 .footer-system nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.climate-os.ui-white-v46 .footer-system nav a,
.climate-os.ui-white-v46 .footer-ogaus-link,
.climate-os.ui-white-v46 .footer-legal a {
    color: #687e88;
    font-size: .63rem;
    font-weight: 670;
    text-decoration: none;
}

.climate-os.ui-white-v46 .footer-ogaus-link {
    color: var(--v46-petrol);
    font-weight: 760;
}

.climate-os.ui-white-v46 .footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 20px;
    border-top: 1px solid var(--v46-line);
}

.climate-os.ui-white-v46 .footer-legal p {
    margin: 0;
    color: #899aa1;
    font-size: .58rem;
}

.climate-os.ui-white-v46 .footer-legal div {
    display: flex;
    gap: 16px;
}

.climate-os.ui-white-v46 .cookie-panel {
    color: var(--v46-text);
    background: #fff;
    border: 1px solid var(--v46-line);
    box-shadow: var(--v46-shadow-md);
}

/* Adaptare */
@media (max-width: 1320px) {
    .climate-os.ui-white-v46 {
        --os-rail: 252px;
    }

    .climate-os.ui-white-v46 .container {
        width: min(calc(100% - 48px), 1160px);
    }

    .climate-os.ui-white-v46 .home-white-hero-grid {
        grid-template-columns: minmax(0,1fr) minmax(390px,.9fr);
        gap: 38px;
    }

    .climate-os.ui-white-v46 .home-white-copy h1 {
        font-size: clamp(2.8rem, 4.8vw, 4.75rem);
    }

    .climate-os.ui-white-v46 .home-white-output-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 1100px) {
    .climate-os.ui-white-v46 {
        --os-rail: 0px;
        --os-top: 72px;
    }

    .climate-os.ui-white-v46 .container,
    .climate-os.ui-white-v46 .narrow {
        width: min(calc(100% - 40px), 960px);
    }

    .climate-os.ui-white-v46 .site-header {
        inset: 0 0 auto 0;
        width: 100%;
        height: 72px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 9px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--v46-line);
        box-shadow: 0 8px 28px rgba(28,72,83,.06);
        overflow: visible;
    }

    .climate-os.ui-white-v46 .rail-brand {
        width: auto;
        min-height: 0;
        padding: 0;
        border-bottom: 0;
    }

    .climate-os.ui-white-v46 .rail-brand img {
        width: 42px;
        height: 42px;
    }

    .climate-os.ui-white-v46 .rail-brand .brand-copy strong {
        font-size: .8rem;
    }

    .climate-os.ui-white-v46 .rail-brand .brand-copy small {
        display: none;
    }

    .climate-os.ui-white-v46 .nav-toggle {
        position: relative;
        z-index: 1004;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        padding: 0;
        color: var(--v46-ink);
        border: 1px solid var(--v46-line);
        border-radius: 10px;
        background: #fff;
    }

    .climate-os.ui-white-v46 .nav-toggle span:not(.sr-only) {
        position: absolute;
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform .2s ease;
    }

    .climate-os.ui-white-v46 .nav-toggle span:nth-child(2) { transform: translateY(-4px); }
    .climate-os.ui-white-v46 .nav-toggle span:nth-child(3) { transform: translateY(4px); }
    .climate-os.ui-white-v46 .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
    .climate-os.ui-white-v46 .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

    .climate-os.ui-white-v46 .primary-nav {
        position: fixed;
        z-index: 1003;
        top: 72px;
        right: 0;
        bottom: 0;
        width: min(390px, 100%);
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin: 0;
        padding: 18px;
        background-color: #fff !important;
        background-image: none !important;
        border-left: 1px solid var(--v46-line);
        box-shadow: -24px 20px 70px rgba(24,66,77,.15);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity .2s ease, visibility .2s ease, transform .25s ease;
        overflow-y: auto;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        isolation: isolate;
    }

    .climate-os.ui-white-v46 .primary-nav.is-open,
    .climate-os.ui-white-v46.nav-open .primary-nav {
        opacity: 1 !important;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .climate-os.ui-white-v46 .primary-nav > a {
        flex: 0 0 auto;
        min-height: 58px;
    }

    .climate-os.ui-white-v46 .rail-support,
    .climate-os.ui-white-v46 .rail-ogaus,
    .climate-os.ui-white-v46 .command-bar {
        display: none;
    }

    .climate-os.ui-white-v46 main,
    .climate-os.ui-white-v46 .technical-handoff,
    .climate-os.ui-white-v46 .site-footer {
        margin-left: 0;
    }

    .climate-os.ui-white-v46 main {
        padding-top: 72px;
    }

    .climate-os.ui-white-v46 .home-white-hero {
        padding-top: 52px;
    }

    .climate-os.ui-white-v46 .home-white-hero-grid,
    .climate-os.ui-white-v46 .page-hero-grid,
    .climate-os.ui-white-v46 .services-hero-layout {
        grid-template-columns: 1fr;
    }

    .climate-os.ui-white-v46 .home-white-copy {
        max-width: 850px;
    }

    .climate-os.ui-white-v46 .home-white-visual {
        min-height: 390px;
        max-width: 760px;
    }

    .climate-os.ui-white-v46 .home-white-routes {
        grid-template-columns: 1fr;
    }

    .climate-os.ui-white-v46 .home-white-route {
        min-height: 108px;
    }

    .climate-os.ui-white-v46 .home-white-section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .climate-os.ui-white-v46 .home-white-section-head > p {
        max-width: 760px;
    }

    .climate-os.ui-white-v46 .home-white-service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .climate-os.ui-white-v46 .home-white-ogaus-grid,
    .climate-os.ui-white-v46 .handoff-grid {
        grid-template-columns: 58px minmax(0,1fr);
    }

    .climate-os.ui-white-v46 .home-white-ogaus-grid .button,
    .climate-os.ui-white-v46 .handoff-actions {
        grid-column: 2;
        justify-self: start;
    }

    .climate-os.ui-white-v46 .footer-system {
        grid-template-columns: 1fr auto;
    }

    .climate-os.ui-white-v46 .footer-system nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .climate-os.ui-white-v46 .container,
    .climate-os.ui-white-v46 .narrow {
        width: min(calc(100% - 28px), 680px);
    }

    .climate-os.ui-white-v46 .site-header {
        padding-inline: 14px;
    }

    .climate-os.ui-white-v46 .rail-brand .brand-copy strong {
        font-size: .73rem;
    }

    .climate-os.ui-white-v46 .home-white-hero {
        padding: 44px 0 28px;
    }

    .climate-os.ui-white-v46 .home-white-badge {
        align-items: flex-start;
        font-size: .59rem;
        line-height: 1.35;
    }

    .climate-os.ui-white-v46 .home-white-copy h1 {
        font-size: clamp(2.5rem, 12.4vw, 4rem);
        letter-spacing: -.055em;
    }

    .climate-os.ui-white-v46 .home-white-copy > p {
        font-size: .92rem;
    }

    .climate-os.ui-white-v46 .home-white-actions {
        display: grid;
    }

    .climate-os.ui-white-v46 .home-white-actions .button {
        width: 100%;
    }

    .climate-os.ui-white-v46 .home-white-trust {
        display: grid;
        gap: 10px;
    }

    .climate-os.ui-white-v46 .home-white-visual {
        min-height: 300px;
        padding-top: 55px;
    }

    .climate-os.ui-white-v46 .home-white-signals {
        gap: 2px;
    }

    .climate-os.ui-white-v46 .home-white-signals i {
        width: 30px;
        height: 30px;
    }

    .climate-os.ui-white-v46 .home-white-signals strong {
        font-size: .48rem;
    }

    .climate-os.ui-white-v46 .home-white-route {
        grid-template-columns: 46px minmax(0,1fr) 18px;
        min-height: 0;
        padding: 17px;
    }

    .climate-os.ui-white-v46 .home-white-route-icon {
        width: 46px;
        height: 46px;
    }

    .climate-os.ui-white-v46 .home-white-section-head h2,
    .climate-os.ui-white-v46 .home-white-output-head h2 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }

    .climate-os.ui-white-v46 .home-white-service-grid,
    .climate-os.ui-white-v46 .home-white-output-grid {
        grid-template-columns: 1fr;
    }

    .climate-os.ui-white-v46 .home-white-service-card {
        min-height: 0;
        padding: 18px;
    }

    .climate-os.ui-white-v46 .home-white-output-grid article {
        min-height: 0;
    }

    .climate-os.ui-white-v46 .home-white-ogaus-grid,
    .climate-os.ui-white-v46 .handoff-grid {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .climate-os.ui-white-v46 .home-white-ogaus-grid .button,
    .climate-os.ui-white-v46 .handoff-actions {
        grid-column: 1;
    }

    .climate-os.ui-white-v46 .handoff-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .climate-os.ui-white-v46 .page-hero {
        padding: 48px 0 54px;
    }

    .climate-os.ui-white-v46 .page-hero h1 {
        font-size: clamp(2.45rem, 11vw, 4.2rem);
    }

    .climate-os.ui-white-v46 .services-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
    }

    .climate-os.ui-white-v46 .service-module {
        min-height: 0;
        padding: 24px 20px;
    }

    .climate-os.ui-white-v46 .footer-system {
        grid-template-columns: 1fr;
    }

    .climate-os.ui-white-v46 .footer-system nav {
        grid-column: 1;
        grid-row: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 10px;
    }

    .climate-os.ui-white-v46 .footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .climate-os.ui-white-v46 .primary-nav {
        left: calc(50% - 50vw);
        right: auto;
        width: 100vw;
        max-width: none;
        border-left: 0;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .climate-os.ui-white-v46 .primary-nav > a,
    .climate-os.ui-white-v46 .home-white-route,
    .climate-os.ui-white-v46 .home-white-service-card,
    .climate-os.ui-white-v46 .button {
        transition: none;
    }
}

/* Prioritate finala pentru butoanele V4.6.0 */
.climate-os.ui-white-v46 .button.button-petrol,
.climate-os.ui-white-v46 .button:not(.button-secondary):not(.button-light):not(.button-dark):not(.button-ghost-light):not(.button-outline-petrol) {
    color: #ffffff !important;
    border-color: var(--v46-petrol) !important;
    background: var(--v46-petrol) !important;
}

.climate-os.ui-white-v46 .button.button-petrol:hover,
.climate-os.ui-white-v46 .button:not(.button-secondary):not(.button-light):not(.button-dark):not(.button-ghost-light):not(.button-outline-petrol):hover {
    color: #ffffff !important;
    border-color: var(--v46-petrol-dark) !important;
    background: var(--v46-petrol-dark) !important;
}

.climate-os.ui-white-v46 .button.button-outline-petrol,
.climate-os.ui-white-v46 .button.button-secondary,
.climate-os.ui-white-v46 .button.button-light,
.climate-os.ui-white-v46 .button.button-dark,
.climate-os.ui-white-v46 .button.button-ghost-light {
    color: var(--v46-petrol-dark) !important;
    border-color: var(--v46-line-strong) !important;
    background: #ffffff !important;
}

/* ========================================================================== */
/* V4.6.1 - CORECTII CONTACT SI COMPACTARE PAGINI INTERIOARE                  */
/* ========================================================================== */

/* Elimina spatierea mostenita din versiunile vechi ale hero-urilor. */
.climate-os.ui-white-v46 .page-hero {
    padding: clamp(40px, 4.1vw, 58px) 0 clamp(44px, 4.5vw, 64px);
}

.climate-os.ui-white-v46 .page-hero-grid {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    gap: clamp(34px, 4vw, 52px);
}

.climate-os.ui-white-v46 .page-hero h1 {
    max-width: 920px;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 4.55vw, 4.85rem);
    line-height: 1;
}

.climate-os.ui-white-v46 .page-hero .breadcrumbs {
    margin-bottom: 1.05rem;
}

.climate-os.ui-white-v46 .page-hero .eyebrow {
    margin-bottom: .85rem;
}

.climate-os.ui-white-v46 .page-hero-aside {
    padding: 22px;
}

/* Pagina dedicata serviciilor avea min-height si padding ramase din tema veche. */
.climate-os.ui-white-v46 .services-hero {
    min-height: 0;
    padding: clamp(42px, 4.6vw, 66px) 0 clamp(46px, 5vw, 70px);
}

.climate-os.ui-white-v46 .services-hero-layout {
    align-items: center;
    gap: clamp(36px, 4.2vw, 56px);
}

.climate-os.ui-white-v46 .services-hero h1 {
    font-size: clamp(2.7rem, 4.25vw, 4.7rem);
    line-height: 1;
}

.climate-os.ui-white-v46 .services-live {
    margin: 14px 0 16px;
}

/* Prima pagina ramane aerisita, dar incepe mai aproape de bara superioara. */
.climate-os.ui-white-v46 .home-white-hero {
    padding: clamp(44px, 4.8vw, 68px) 0 36px;
}

/* Corectie contrast pentru primul card din coloana paginii Contact. */
.climate-os.ui-white-v46 .contact-aside-card:first-child {
    color: var(--v46-text);
    background: #ffffff;
    border-color: var(--v46-line);
}

.climate-os.ui-white-v46 .contact-aside-card:first-child h3 {
    color: var(--v46-ink);
}

.climate-os.ui-white-v46 .contact-aside-card:first-child p,
.climate-os.ui-white-v46 .contact-aside-card:first-child li {
    color: #607681;
}

.climate-os.ui-white-v46 .contact-aside-card:first-child li::marker {
    color: var(--v46-petrol);
}

.climate-os.ui-white-v46 .contact-aside-card:first-child .link-arrow {
    color: var(--v46-petrol-dark);
}

@media (max-width: 960px) {
    .climate-os.ui-white-v46 .page-hero {
        padding: 38px 0 44px;
    }

    .climate-os.ui-white-v46 .page-hero-grid {
        gap: 26px;
    }

    .climate-os.ui-white-v46 .services-hero {
        padding: 38px 0 46px;
    }
}

@media (max-width: 720px) {
    .climate-os.ui-white-v46 .page-hero {
        padding: 30px 0 36px;
    }

    .climate-os.ui-white-v46 .page-hero h1 {
        margin-top: 8px;
        font-size: clamp(2.25rem, 10vw, 3.35rem);
        line-height: 1.02;
    }

    .climate-os.ui-white-v46 .page-hero-aside {
        padding: 19px;
    }

    .climate-os.ui-white-v46 .services-hero {
        padding: 30px 0 38px;
    }

    .climate-os.ui-white-v46 .services-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
        line-height: 1.02;
    }

    .climate-os.ui-white-v46 .home-white-hero {
        padding: 34px 0 26px;
    }
}
